From 837af1cfcc6a7681eeaf74080b8b2ed49d6c2374 Mon Sep 17 00:00:00 2001 From: Hildana Shiferaw Date: Sun, 24 Mar 2024 17:06:02 -0400 Subject: [PATCH 1/2] word pair for mice dataset --- WordPairHS.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 WordPairHS.py diff --git a/WordPairHS.py b/WordPairHS.py new file mode 100644 index 0000000..b8dac69 --- /dev/null +++ b/WordPairHS.py @@ -0,0 +1,36 @@ +import matplotlib.pyplot as plt +import string +import json +from itertools import combinations + +def remove_punctuation(text): + translator = str.maketrans('', '', string.punctuation) + return text.translate(translator).split() # Split the text into a list of words after removing punctuation + +# Load data from JSON file +with open('/Users/hildanashiferaw/Documents/ResearchVBIL/Metadata-main/data/test_characteristics_human.json', 'r') as json_file: + data = json.load(json_file) + #print(data) + +# Count word pairs within each row +word_pair_counts = {} +for value in data.values(): # Iterate over the values of the outer dictionary + if isinstance(value, dict): # Check if the value is a dictionary + keys = list(value.keys()) + keys = remove_punctuation(" ".join(keys)) # Convert keys to a list of words + for pair in combinations(keys, 2): # Generate all possible combinations of word pairs + word_pair_counts[pair] = word_pair_counts.get(pair, 0) + 1 + +# Visualize the result +if word_pair_counts: + pairs, counts = zip(*word_pair_counts.items()) + x = range(len(pairs)) + plt.bar(x, counts) + plt.xlabel('Word Pairs') + plt.ylabel('Count') + plt.title('Word Pair Counts within Each Row') + plt.xticks(x, pairs, rotation=45, ha='right') + plt.show() + #print(word_pair_counts) +else: + print("No word pairs found in the data.") \ No newline at end of file From 7952e632e0480ba35147f9167d1797d3be641e87 Mon Sep 17 00:00:00 2001 From: HM Rando Date: Tue, 23 Apr 2024 11:05:43 -0400 Subject: [PATCH 2/2] add base for brown clustering --- brownClustering.ipynb | 196 ++++++++++++++++++++++++++++++++++++++++++ jason-to-tabular.py | 12 +++ json-to-tabular.ipynb | 37 ++++++++ 3 files changed, 245 insertions(+) create mode 100644 brownClustering.ipynb create mode 100644 jason-to-tabular.py create mode 100644 json-to-tabular.ipynb diff --git a/brownClustering.ipynb b/brownClustering.ipynb new file mode 100644 index 0000000..6e7cfe3 --- /dev/null +++ b/brownClustering.ipynb @@ -0,0 +1,196 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 17, + "id": "initial_id", + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-23T14:14:46.247329Z", + "start_time": "2024-04-23T14:14:43.606913Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting en-core-web-lg==3.7.1\n", + " Downloading https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.7.1/en_core_web_lg-3.7.1-py3-none-any.whl (587.7 MB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m587.7/587.7 MB\u001b[0m \u001b[31m3.9 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m00:01\u001b[0m00:02\u001b[0m\n", + "\u001b[?25hRequirement already satisfied: spacy<3.8.0,>=3.7.2 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from en-core-web-lg==3.7.1) (3.7.2)\n", + "Requirement already satisfied: spacy-legacy<3.1.0,>=3.0.11 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (3.0.12)\n", + "Requirement already satisfied: spacy-loggers<2.0.0,>=1.0.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (1.0.4)\n", + "Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (1.0.7)\n", + "Requirement already satisfied: cymem<2.1.0,>=2.0.2 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (2.0.6)\n", + "Requirement already satisfied: preshed<3.1.0,>=3.0.2 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (3.0.6)\n", + "Requirement already satisfied: thinc<8.3.0,>=8.1.8 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (8.2.2)\n", + "Requirement already satisfied: wasabi<1.2.0,>=0.9.1 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (0.9.1)\n", + "Requirement already satisfied: srsly<3.0.0,>=2.4.3 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (2.4.8)\n", + "Requirement already satisfied: catalogue<2.1.0,>=2.0.6 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (2.0.10)\n", + "Requirement already satisfied: weasel<0.4.0,>=0.1.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (0.3.4)\n", + "Requirement already satisfied: typer<0.10.0,>=0.3.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (0.9.0)\n", + "Requirement already satisfied: smart-open<7.0.0,>=5.2.1 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (5.2.1)\n", + "Requirement already satisfied: tqdm<5.0.0,>=4.38.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (4.65.0)\n", + "Requirement already satisfied: requests<3.0.0,>=2.13.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (2.31.0)\n", + "Requirement already satisfied: pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (1.10.8)\n", + "Requirement already satisfied: jinja2 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (3.1.2)\n", + "Requirement already satisfied: setuptools in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (68.0.0)\n", + "Requirement already satisfied: packaging>=20.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (23.1)\n", + "Requirement already satisfied: langcodes<4.0.0,>=3.2.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (3.3.0)\n", + "Requirement already satisfied: numpy>=1.19.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (1.24.4)\n", + "Requirement already satisfied: typing-extensions>=4.2.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (4.9.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from requests<3.0.0,>=2.13.0->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (2.0.4)\n", + "Requirement already satisfied: idna<4,>=2.5 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from requests<3.0.0,>=2.13.0->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (3.4)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from requests<3.0.0,>=2.13.0->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (1.26.16)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from requests<3.0.0,>=2.13.0->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (2024.2.2)\n", + "Requirement already satisfied: blis<0.8.0,>=0.7.8 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from thinc<8.3.0,>=8.1.8->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (0.7.9)\n", + "Requirement already satisfied: confection<1.0.0,>=0.0.1 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from thinc<8.3.0,>=8.1.8->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (0.1.4)\n", + "Requirement already satisfied: click<9.0.0,>=7.1.1 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from typer<0.10.0,>=0.3.0->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (8.0.4)\n", + "Requirement already satisfied: cloudpathlib<0.17.0,>=0.7.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from weasel<0.4.0,>=0.1.0->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (0.16.0)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in /Users/hrando/anaconda3/lib/python3.11/site-packages (from jinja2->spacy<3.8.0,>=3.7.2->en-core-web-lg==3.7.1) (2.1.1)\n", + "\u001b[38;5;2m✔ Download and installation successful\u001b[0m\n", + "You can now load the package via spacy.load('en_core_web_lg')\n" + ] + } + ], + "source": [ + "# You only need to run these the first time you try to do this on a computer\n", + "# To see more spacy language models available, look at https://spacy.io/usage/models\n", + "#! pip install brown-clustering spacy spacy-transformers\n", + "! python -m spacy download en_core_web_lg" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "3ff17e57fcf0c20b", + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-23T14:16:01.772026Z", + "start_time": "2024-04-23T14:16:01.754204Z" + } + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/hrando/anaconda3/lib/python3.11/site-packages/transformers/utils/generic.py:260: UserWarning: torch.utils._pytree._register_pytree_node is deprecated. Please use torch.utils._pytree.register_pytree_node instead.\n", + " torch.utils._pytree._register_pytree_node(\n" + ] + } + ], + "source": [ + "from brown_clustering import BigramCorpus, BrownClustering\n", + "import json\n", + "import spacy\n", + "import spacy_transformers" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "449a2f80aeacd437", + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-23T14:16:02.235717Z", + "start_time": "2024-04-23T14:16:02.230504Z" + } + }, + "outputs": [], + "source": [ + "def importData(infile):\n", + " readfile = open(infile, \"r\")\n", + " data = json.load(readfile)\n", + " return data" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "7aff9249", + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "[E002] Can't find factory for 'curated_transformer' for language English (en). This usually happens when spaCy calls `nlp.create_pipe` with a custom component name that's not registered on the current language class. If you're using a Transformer, make sure to install 'spacy-transformers'. If you're using a custom component, make sure you've added the decorator `@Language.component` (for function components) or `@Language.factory` (for class components).\n\nAvailable factories: attribute_ruler, tok2vec, merge_noun_chunks, merge_entities, merge_subtokens, token_splitter, doc_cleaner, parser, beam_parser, lemmatizer, trainable_lemmatizer, entity_linker, entity_ruler, tagger, morphologizer, ner, beam_ner, senter, sentencizer, spancat, spancat_singlelabel, span_finder, future_entity_ruler, span_ruler, textcat, textcat_multilabel, en.lemmatizer", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[16], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# Load spacy model\u001b[39;00m\n\u001b[0;32m----> 2\u001b[0m nlp \u001b[38;5;241m=\u001b[39m spacy\u001b[38;5;241m.\u001b[39mload(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124men_core_web_trf\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/__init__.py:51\u001b[0m, in \u001b[0;36mload\u001b[0;34m(name, vocab, disable, enable, exclude, config)\u001b[0m\n\u001b[1;32m 27\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mload\u001b[39m(\n\u001b[1;32m 28\u001b[0m name: Union[\u001b[38;5;28mstr\u001b[39m, Path],\n\u001b[1;32m 29\u001b[0m \u001b[38;5;241m*\u001b[39m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 34\u001b[0m config: Union[Dict[\u001b[38;5;28mstr\u001b[39m, Any], Config] \u001b[38;5;241m=\u001b[39m util\u001b[38;5;241m.\u001b[39mSimpleFrozenDict(),\n\u001b[1;32m 35\u001b[0m ) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m Language:\n\u001b[1;32m 36\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124;03m\"\"\"Load a spaCy model from an installed package or a local path.\u001b[39;00m\n\u001b[1;32m 37\u001b[0m \n\u001b[1;32m 38\u001b[0m \u001b[38;5;124;03m name (str): Package name or model path.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 49\u001b[0m \u001b[38;5;124;03m RETURNS (Language): The loaded nlp object.\u001b[39;00m\n\u001b[1;32m 50\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m---> 51\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m util\u001b[38;5;241m.\u001b[39mload_model(\n\u001b[1;32m 52\u001b[0m name,\n\u001b[1;32m 53\u001b[0m vocab\u001b[38;5;241m=\u001b[39mvocab,\n\u001b[1;32m 54\u001b[0m disable\u001b[38;5;241m=\u001b[39mdisable,\n\u001b[1;32m 55\u001b[0m enable\u001b[38;5;241m=\u001b[39menable,\n\u001b[1;32m 56\u001b[0m exclude\u001b[38;5;241m=\u001b[39mexclude,\n\u001b[1;32m 57\u001b[0m config\u001b[38;5;241m=\u001b[39mconfig,\n\u001b[1;32m 58\u001b[0m )\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/util.py:465\u001b[0m, in \u001b[0;36mload_model\u001b[0;34m(name, vocab, disable, enable, exclude, config)\u001b[0m\n\u001b[1;32m 463\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m get_lang_class(name\u001b[38;5;241m.\u001b[39mreplace(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mblank:\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m\"\u001b[39m))()\n\u001b[1;32m 464\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_package(name): \u001b[38;5;66;03m# installed as package\u001b[39;00m\n\u001b[0;32m--> 465\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m load_model_from_package(name, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs) \u001b[38;5;66;03m# type: ignore[arg-type]\u001b[39;00m\n\u001b[1;32m 466\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m Path(name)\u001b[38;5;241m.\u001b[39mexists(): \u001b[38;5;66;03m# path to model data directory\u001b[39;00m\n\u001b[1;32m 467\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m load_model_from_path(Path(name), \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs) \u001b[38;5;66;03m# type: ignore[arg-type]\u001b[39;00m\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/util.py:501\u001b[0m, in \u001b[0;36mload_model_from_package\u001b[0;34m(name, vocab, disable, enable, exclude, config)\u001b[0m\n\u001b[1;32m 484\u001b[0m \u001b[38;5;250m\u001b[39m\u001b[38;5;124;03m\"\"\"Load a model from an installed package.\u001b[39;00m\n\u001b[1;32m 485\u001b[0m \n\u001b[1;32m 486\u001b[0m \u001b[38;5;124;03mname (str): The package name.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 498\u001b[0m \u001b[38;5;124;03mRETURNS (Language): The loaded nlp object.\u001b[39;00m\n\u001b[1;32m 499\u001b[0m \u001b[38;5;124;03m\"\"\"\u001b[39;00m\n\u001b[1;32m 500\u001b[0m \u001b[38;5;28mcls\u001b[39m \u001b[38;5;241m=\u001b[39m importlib\u001b[38;5;241m.\u001b[39mimport_module(name)\n\u001b[0;32m--> 501\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mcls\u001b[39m\u001b[38;5;241m.\u001b[39mload(vocab\u001b[38;5;241m=\u001b[39mvocab, disable\u001b[38;5;241m=\u001b[39mdisable, enable\u001b[38;5;241m=\u001b[39menable, exclude\u001b[38;5;241m=\u001b[39mexclude, config\u001b[38;5;241m=\u001b[39mconfig)\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/en_core_web_trf/__init__.py:10\u001b[0m, in \u001b[0;36mload\u001b[0;34m(**overrides)\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mload\u001b[39m(\u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39moverrides):\n\u001b[0;32m---> 10\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m load_model_from_init_py(\u001b[38;5;18m__file__\u001b[39m, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39moverrides)\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/util.py:682\u001b[0m, in \u001b[0;36mload_model_from_init_py\u001b[0;34m(init_file, vocab, disable, enable, exclude, config)\u001b[0m\n\u001b[1;32m 680\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m model_path\u001b[38;5;241m.\u001b[39mexists():\n\u001b[1;32m 681\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mIOError\u001b[39;00m(Errors\u001b[38;5;241m.\u001b[39mE052\u001b[38;5;241m.\u001b[39mformat(path\u001b[38;5;241m=\u001b[39mdata_path))\n\u001b[0;32m--> 682\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m load_model_from_path(\n\u001b[1;32m 683\u001b[0m data_path,\n\u001b[1;32m 684\u001b[0m vocab\u001b[38;5;241m=\u001b[39mvocab,\n\u001b[1;32m 685\u001b[0m meta\u001b[38;5;241m=\u001b[39mmeta,\n\u001b[1;32m 686\u001b[0m disable\u001b[38;5;241m=\u001b[39mdisable,\n\u001b[1;32m 687\u001b[0m enable\u001b[38;5;241m=\u001b[39menable,\n\u001b[1;32m 688\u001b[0m exclude\u001b[38;5;241m=\u001b[39mexclude,\n\u001b[1;32m 689\u001b[0m config\u001b[38;5;241m=\u001b[39mconfig,\n\u001b[1;32m 690\u001b[0m )\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/util.py:539\u001b[0m, in \u001b[0;36mload_model_from_path\u001b[0;34m(model_path, meta, vocab, disable, enable, exclude, config)\u001b[0m\n\u001b[1;32m 537\u001b[0m overrides \u001b[38;5;241m=\u001b[39m dict_to_dot(config, for_overrides\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m)\n\u001b[1;32m 538\u001b[0m config \u001b[38;5;241m=\u001b[39m load_config(config_path, overrides\u001b[38;5;241m=\u001b[39moverrides)\n\u001b[0;32m--> 539\u001b[0m nlp \u001b[38;5;241m=\u001b[39m load_model_from_config(\n\u001b[1;32m 540\u001b[0m config,\n\u001b[1;32m 541\u001b[0m vocab\u001b[38;5;241m=\u001b[39mvocab,\n\u001b[1;32m 542\u001b[0m disable\u001b[38;5;241m=\u001b[39mdisable,\n\u001b[1;32m 543\u001b[0m enable\u001b[38;5;241m=\u001b[39menable,\n\u001b[1;32m 544\u001b[0m exclude\u001b[38;5;241m=\u001b[39mexclude,\n\u001b[1;32m 545\u001b[0m meta\u001b[38;5;241m=\u001b[39mmeta,\n\u001b[1;32m 546\u001b[0m )\n\u001b[1;32m 547\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m nlp\u001b[38;5;241m.\u001b[39mfrom_disk(model_path, exclude\u001b[38;5;241m=\u001b[39mexclude, overrides\u001b[38;5;241m=\u001b[39moverrides)\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/util.py:587\u001b[0m, in \u001b[0;36mload_model_from_config\u001b[0;34m(config, meta, vocab, disable, enable, exclude, auto_fill, validate)\u001b[0m\n\u001b[1;32m 584\u001b[0m \u001b[38;5;66;03m# This will automatically handle all codes registered via the languages\u001b[39;00m\n\u001b[1;32m 585\u001b[0m \u001b[38;5;66;03m# registry, including custom subclasses provided via entry points\u001b[39;00m\n\u001b[1;32m 586\u001b[0m lang_cls \u001b[38;5;241m=\u001b[39m get_lang_class(nlp_config[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mlang\u001b[39m\u001b[38;5;124m\"\u001b[39m])\n\u001b[0;32m--> 587\u001b[0m nlp \u001b[38;5;241m=\u001b[39m lang_cls\u001b[38;5;241m.\u001b[39mfrom_config(\n\u001b[1;32m 588\u001b[0m config,\n\u001b[1;32m 589\u001b[0m vocab\u001b[38;5;241m=\u001b[39mvocab,\n\u001b[1;32m 590\u001b[0m disable\u001b[38;5;241m=\u001b[39mdisable,\n\u001b[1;32m 591\u001b[0m enable\u001b[38;5;241m=\u001b[39menable,\n\u001b[1;32m 592\u001b[0m exclude\u001b[38;5;241m=\u001b[39mexclude,\n\u001b[1;32m 593\u001b[0m auto_fill\u001b[38;5;241m=\u001b[39mauto_fill,\n\u001b[1;32m 594\u001b[0m validate\u001b[38;5;241m=\u001b[39mvalidate,\n\u001b[1;32m 595\u001b[0m meta\u001b[38;5;241m=\u001b[39mmeta,\n\u001b[1;32m 596\u001b[0m )\n\u001b[1;32m 597\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m nlp\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/language.py:1864\u001b[0m, in \u001b[0;36mLanguage.from_config\u001b[0;34m(cls, config, vocab, disable, enable, exclude, meta, auto_fill, validate)\u001b[0m\n\u001b[1;32m 1861\u001b[0m factory \u001b[38;5;241m=\u001b[39m pipe_cfg\u001b[38;5;241m.\u001b[39mpop(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mfactory\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 1862\u001b[0m \u001b[38;5;66;03m# The pipe name (key in the config) here is the unique name\u001b[39;00m\n\u001b[1;32m 1863\u001b[0m \u001b[38;5;66;03m# of the component, not necessarily the factory\u001b[39;00m\n\u001b[0;32m-> 1864\u001b[0m nlp\u001b[38;5;241m.\u001b[39madd_pipe(\n\u001b[1;32m 1865\u001b[0m factory,\n\u001b[1;32m 1866\u001b[0m name\u001b[38;5;241m=\u001b[39mpipe_name,\n\u001b[1;32m 1867\u001b[0m config\u001b[38;5;241m=\u001b[39mpipe_cfg,\n\u001b[1;32m 1868\u001b[0m validate\u001b[38;5;241m=\u001b[39mvalidate,\n\u001b[1;32m 1869\u001b[0m raw_config\u001b[38;5;241m=\u001b[39mraw_config,\n\u001b[1;32m 1870\u001b[0m )\n\u001b[1;32m 1871\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 1872\u001b[0m \u001b[38;5;28;01massert\u001b[39;00m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msource\u001b[39m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;129;01min\u001b[39;00m pipe_cfg\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/language.py:821\u001b[0m, in \u001b[0;36mLanguage.add_pipe\u001b[0;34m(self, factory_name, name, before, after, first, last, source, config, raw_config, validate)\u001b[0m\n\u001b[1;32m 817\u001b[0m pipe_component, factory_name \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcreate_pipe_from_source(\n\u001b[1;32m 818\u001b[0m factory_name, source, name\u001b[38;5;241m=\u001b[39mname\n\u001b[1;32m 819\u001b[0m )\n\u001b[1;32m 820\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 821\u001b[0m pipe_component \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcreate_pipe(\n\u001b[1;32m 822\u001b[0m factory_name,\n\u001b[1;32m 823\u001b[0m name\u001b[38;5;241m=\u001b[39mname,\n\u001b[1;32m 824\u001b[0m config\u001b[38;5;241m=\u001b[39mconfig,\n\u001b[1;32m 825\u001b[0m raw_config\u001b[38;5;241m=\u001b[39mraw_config,\n\u001b[1;32m 826\u001b[0m validate\u001b[38;5;241m=\u001b[39mvalidate,\n\u001b[1;32m 827\u001b[0m )\n\u001b[1;32m 828\u001b[0m pipe_index \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_get_pipe_index(before, after, first, last)\n\u001b[1;32m 829\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_pipe_meta[name] \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_factory_meta(factory_name)\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/spacy/language.py:690\u001b[0m, in \u001b[0;36mLanguage.create_pipe\u001b[0;34m(self, factory_name, name, config, raw_config, validate)\u001b[0m\n\u001b[1;32m 682\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhas_factory(factory_name):\n\u001b[1;32m 683\u001b[0m err \u001b[38;5;241m=\u001b[39m Errors\u001b[38;5;241m.\u001b[39mE002\u001b[38;5;241m.\u001b[39mformat(\n\u001b[1;32m 684\u001b[0m name\u001b[38;5;241m=\u001b[39mfactory_name,\n\u001b[1;32m 685\u001b[0m opts\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m, \u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m.\u001b[39mjoin(\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mfactory_names),\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 688\u001b[0m lang_code\u001b[38;5;241m=\u001b[39m\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mlang,\n\u001b[1;32m 689\u001b[0m )\n\u001b[0;32m--> 690\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(err)\n\u001b[1;32m 691\u001b[0m pipe_meta \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mget_factory_meta(factory_name)\n\u001b[1;32m 692\u001b[0m \u001b[38;5;66;03m# This is unideal, but the alternative would mean you always need to\u001b[39;00m\n\u001b[1;32m 693\u001b[0m \u001b[38;5;66;03m# specify the full config settings, which is not really viable.\u001b[39;00m\n", + "\u001b[0;31mValueError\u001b[0m: [E002] Can't find factory for 'curated_transformer' for language English (en). This usually happens when spaCy calls `nlp.create_pipe` with a custom component name that's not registered on the current language class. If you're using a Transformer, make sure to install 'spacy-transformers'. If you're using a custom component, make sure you've added the decorator `@Language.component` (for function components) or `@Language.factory` (for class components).\n\nAvailable factories: attribute_ruler, tok2vec, merge_noun_chunks, merge_entities, merge_subtokens, token_splitter, doc_cleaner, parser, beam_parser, lemmatizer, trainable_lemmatizer, entity_linker, entity_ruler, tagger, morphologizer, ner, beam_ner, senter, sentencizer, spancat, spancat_singlelabel, span_finder, future_entity_ruler, span_ruler, textcat, textcat_multilabel, en.lemmatizer" + ] + } + ], + "source": [ + "# Load spacy model\n", + "nlp = spacy.load('en_core_web_lg')" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "78e37497686c4f59", + "metadata": { + "ExecuteTime": { + "end_time": "2024-04-23T14:16:26.240619Z", + "start_time": "2024-04-23T14:16:26.034657Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'GSM2219676': {'line': 'HCT116', 'genotype': 'siTTLL12'}, 'GSM2219677': {'line': 'HCT116', 'genotype': 'siTTLL12'}, 'GSM2219674': {'line': 'HCT116', 'genotype': 'wildtype'}, 'GSM2219675': {'line': 'HCT116', 'genotype': 'wildtype'}, 'GSM2374238': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374239': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374234': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374235': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374236': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374237': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374230': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374231': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2035731': {'with': 'lentiviral FUGW vector encoding HOXA7 protein (FUGW-GFP-HOXA7)', 'type': 'EB CD34+CD38-CD90+CD45+'}, 'GSM2035730': {'with': 'empty lentiviral FUGW vector (FUGW-GFP)', 'type': 'EB CD34+CD38-CD90+CD45+'}, 'GSM1853572': {'line': 'HeLa', 'treatment': '20nM Ctrl siRNA - Dharmacon'}, 'GSM1853573': {'line': 'HeLa', 'treatment': '20nM Ctrl siRNA - Dharmacon'}, 'GSM1853570': {'line': 'HeLa', 'treatment': '20nM Ctrl siRNA - Dharmacon'}, 'GSM1422459': {'patient': 'yes', 'treated': 'yes', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1422458': {'patient': 'yes', 'treated': 'yes', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1853575': {'line': 'HeLa', 'treatment': '20nM RRP6 siRNA - Dharmacon'}, 'GSM1422455': {'patient': 'yes', 'treated': 'yes', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1422454': {'patient': 'yes', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1422457': {'patient': 'yes', 'treated': 'yes', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1422456': {'patient': 'yes', 'treated': 'yes', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1422451': {'patient': 'yes', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1422450': {'patient': 'yes', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1422453': {'patient': 'yes', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1422452': {'patient': 'yes', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1617974': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '62', 'Sex': 'M'}, 'GSM2306260': {'subtype': 'ribo-depleted total RNA', 'concentration': 'n/a', 'type': 'HUVEC cells', 'compound': 'none (DMSO)'}, 'GSM2551325': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2093547': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2374232': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2265818': {'line': 'HeLa', 'sirna': 'TUT3', 'timepoint': '30'}, 'GSM2374233': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1617971': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '58', 'Sex': 'M'}, 'GSM2551324': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM1444191': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 5-6 h p.i.'}, 'GSM1617973': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '62', 'Sex': 'M'}, 'GSM2823147': {'group': 'r848', 'number': '85'}, 'GSM1622039': {'type': 'Derived from cSCC tumors'}, 'GSM1622038': {'type': 'Derived from non-UV exposed epidermis'}, 'GSM1065917': {'method': 'PureSperm cushion'}, 'GSM1065919': {'method': 'PureSperm cushion'}, 'GSM1065918': {'method': 'Somatic Cell Lysis Buffer'}, 'GSM1622037': {'type': 'Derived from non-UV exposed epidermis'}, 'GSM1622036': {'type': 'Derived from non-UV exposed epidermis'}, 'GSM2551326': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM1406348': {'type': 'Primary Monocytes(BC10)'}, 'GSM1858939': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'LTR362'}, 'GSM1817059': {'line': 'H1', 'type': 'Hepatoblast', 'day': '9', 'treatment': 'HGF+KGF'}, 'GSM1817058': {'line': 'H1', 'type': 'Hepatoblast', 'day': '7', 'treatment': 'FGF4+BMP2'}, 'GSM1817055': {'line': 'H1', 'type': 'Definitive endoderm', 'day': '2', 'treatment': 'Activin A'}, 'GSM1817054': {'line': 'H1', 'type': 'Early definitive endoderm', 'day': '1', 'treatment': 'Activin A'}, 'GSM1817057': {'line': 'H1', 'type': 'Early hepatoblast', 'day': '5', 'treatment': 'FGF4+BMP2'}, 'GSM1817056': {'line': 'H1', 'type': 'Definitive endoderm', 'day': '3', 'treatment': 'Activin A'}, 'GSM1817053': {'line': 'H1', 'type': 'hESCs', 'day': '0', 'treatment': 'None'}, 'GSM2251707': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 0 mM for 5 days and back to Glucose 25 mM for 5 days'}, 'GSM1406346': {'type': 'Macrophages(BC9)'}, 'GSM2194674': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194675': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1917119': {'transduction': 'cotransduced with pWZL-Hygro and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917118': {'transduction': 'cotransduced with pWZL HRASV12 and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM2194670': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194671': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194672': {'type': 'mesenchyme', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194673': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1917113': {'transduction': 'cotransduced with pWZL-Hygro and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917112': {'transduction': 'cotransduced with pWZL-Hygro and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917111': {'transduction': 'cotransduced with pWZL-Hygro and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917110': {'transduction': 'cotransduced with pWZL-Hygro and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917117': {'transduction': 'cotransduced with pWZL HRASV12 and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917116': {'transduction': 'cotransduced with pWZL HRASV12 and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917115': {'transduction': 'cotransduced with pWZL-Hygro and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917114': {'transduction': 'cotransduced with pWZL-Hygro and shBrd4', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1663110': {'antibody': 'H3K27me3 (Active Motif 61017)', 'treatment': '5day DOX', 'integration': 'chr8'}, 'GSM3564382': {'transfection': 'plasmid mixtures of Cas9-puro and U7-sgRNAs encoding each member of sgRNAs', 'line': 'K562'}, 'GSM3564380': {'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs', 'line': 'K562'}, 'GSM3564381': {'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs', 'line': 'K562'}, 'GSM1406344': {'type': 'Macrophages(BC9)'}, 'GSM2114018': {'with': 'miR-9 LNA probes (miR-9 KD)', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM01835', 'diagnosis': 'Schizophrenia (SZ)'}, 'GSM2114019': {'with': 'RV GFP', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM01835', 'diagnosis': 'Schizophrenia (SZ)'}, 'GSM2114014': {'with': 'RV-miR-9', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'AG09319', 'diagnosis': 'Control'}, 'GSM2114015': {'with': 'scrambled control', 'gender': 'male', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM02038', 'diagnosis': 'Schizophrenia (SZ)'}, 'GSM2114016': {'with': 'miR-9 LNA probes (miR-9 KD)', 'gender': 'male', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM02038', 'diagnosis': 'Schizophrenia (SZ)'}, 'GSM2114017': {'with': 'scrambled control', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM01835', 'diagnosis': 'Schizophrenia (SZ)'}, 'GSM2114010': {'with': 'miR-9 LNA probes (miR-9 KD)', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'AG09319', 'diagnosis': 'Control'}, 'GSM2114011': {'with': 'RV GFP', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'AG09319', 'diagnosis': 'Control'}, 'GSM2114012': {'with': 'RV GFP', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'AG09319', 'diagnosis': 'Control'}, 'GSM2114013': {'with': 'RV-miR-9', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'AG09319', 'diagnosis': 'Control'}, 'GSM1566751': {'type': 'SGBS adipocyte D10'}, 'GSM1566750': {'type': 'SGBS adipocyte D10'}, 'GSM1566753': {'type': 'SGBS preadipocyte D0'}, 'GSM1566752': {'type': 'SGBS preadipocyte D0'}, 'GSM1853577': {'line': 'HeLa', 'treatment': '20nM RRP6 siRNA - Dharmacon'}, 'GSM2687184': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM1150615': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5670', 'number': '20'}, 'GSM1150614': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5669', 'number': '20'}, 'GSM1150617': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5747', 'number': '21'}, 'GSM1150616': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5706', 'number': '25'}, 'GSM1150611': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5620', 'number': '18'}, 'GSM1150610': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5619', 'number': '18'}, 'GSM1150613': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5668', 'number': '20'}, 'GSM1150612': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5667', 'number': '20'}, 'GSM1150619': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5750', 'number': '21'}, 'GSM1150618': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5749', 'number': '21'}, 'GSM2476398': {'line': 'SKmel2', 'passage': 'N/A'}, 'GSM2476399': {'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM2307136': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2476390': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476391': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476392': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476393': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476394': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476395': {'line': 'SKmel239', 'passage': 'N/A'}, 'GSM2476396': {'line': 'SKmel239', 'passage': 'N/A'}, 'GSM2476397': {'line': 'SKmel2', 'passage': 'N/A'}, 'GSM1946469': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'stage': 'asynchronization'}, 'GSM1946468': {'media': 'DMEM', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'stage': 'asynchronization'}, 'GSM1946465': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'stage': 'asynchronization'}, 'GSM1946464': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'stage': 'asynchronization'}, 'GSM1946467': {'media': 'DMEM', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'stage': 'asynchronization'}, 'GSM1946466': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'stage': 'asynchronization'}, 'GSM1946461': {'media': 'DMEM', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'stage': 'asynchronization'}, 'GSM1946460': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM1946463': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'stage': 'asynchronization'}, 'GSM1946462': {'media': 'DMEM', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'stage': 'asynchronization'}, 'GSM1580878': {'death': '66', 'rin': '7.1', 'reads': '118327116', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '19'}, 'GSM1580879': {'death': '69', 'rin': '7.8', 'reads': '89478160', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '15'}, 'GSM1580870': {'death': '91', 'rin': '7.9', 'reads': '38420004', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM1580871': {'death': '82', 'rin': '8.6', 'reads': '75850406', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM1580872': {'death': '97', 'rin': '9.1', 'reads': '150661916', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM1580873': {'death': '86', 'rin': '8.6', 'reads': '63607838', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '5'}, 'GSM1580874': {'death': '91', 'rin': '8.7', 'reads': '66131458', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM1580875': {'death': '81', 'rin': '6', 'reads': '69284092', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '3'}, 'GSM1580876': {'death': '79', 'rin': '8.4', 'reads': '60542776', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM1580877': {'death': '63', 'rin': '6.5', 'reads': '93702684', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM2054549': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054548': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054545': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054544': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054547': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054546': {'type': 'hES/hiPS-derived neuron'}, 'GSM2153268': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153269': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153262': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153263': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153260': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153261': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153266': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153267': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153264': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153265': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2445378': {'growth': 'grown on PLL/Laminin in SC media'}, 'GSM2445379': {'growth': 'grown on PLL/Laminin in SC media'}, 'GSM2445371': {'growth': 'Samples were fresh frozen. Not grown.'}, 'GSM2445372': {'growth': 'Samples were fresh frozen. Not grown.'}, 'GSM2445373': {'growth': 'Samples were fresh frozen. Not grown.'}, 'GSM2445374': {'growth': 'Samples were kept in MEMa medium for 8 days. Not grown.'}, 'GSM2445375': {'growth': 'Samples were kept in MEMa medium for 8 days. Not grown.'}, 'GSM2445376': {'growth': 'Samples were kept in MEMa medium for 8 days. Not grown.'}, 'GSM2445377': {'growth': 'grown on PLL/Laminin in SC media'}, 'GSM2211807': {'doxycycline': '-', '2': 'shNT', 'dht': '-'}, 'GSM2211809': {'doxycycline': '-', '2': 'shNT', 'dht': '-'}, 'GSM2211808': {'doxycycline': '-', '2': 'shNT', 'dht': '-'}, 'GSM2471863': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471862': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'precipitated DNA'}, 'GSM2471861': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'precipitated DNA'}, 'GSM2471860': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'antibody': 'Active Motif #39133', 'subtype': 'immunoprecipitated DNA'}, 'GSM2471867': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'precipitated DNA'}, 'GSM2471866': {'with': '1% DMSO for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'antibody': 'Active Motif #39133', 'subtype': 'immunoprecipitated DNA'}, 'GSM2471865': {'with': '1% DMSO', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'antibody': 'Active Motif #39133', 'subtype': 'immunoprecipitated DNA'}, 'GSM2471864': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471869': {'with': '1% DMSO for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471868': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'precipitated DNA'}, 'GSM2361621': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361620': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361623': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361622': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361625': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361624': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361627': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361626': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361629': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361628': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1623148': {'line': 'HEK293', 'fraction': 'chromatin RNA'}, 'GSM1623149': {'line': 'HEK293', 'fraction': 'chromatin RNA'}, 'GSM1623142': {'line': 'HEK293', 'fraction': 'nuclear RNA'}, 'GSM1623143': {'line': 'HEK293', 'fraction': 'chromatin RNA'}, 'GSM1623140': {'line': 'HEK293', 'fraction': 'nuclear RNA'}, 'GSM1623141': {'line': 'HEK293', 'fraction': 'nuclear RNA'}, 'GSM1623146': {'line': 'HEK293', 'fraction': 'chromatin RNA'}, 'GSM1623147': {'line': 'HEK293', 'fraction': 'chromatin RNA'}, 'GSM1623144': {'line': 'HEK293', 'fraction': 'chromatin RNA'}, 'GSM1623145': {'line': 'HEK293', 'fraction': 'chromatin RNA'}, 'GSM2182710': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'AD with SB431542 and LDN193189', 'genotype': 'wild type'}, 'GSM2182711': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'AD with SB431542 and LDN193189', 'genotype': 'wild type'}, 'GSM1955933': {'a': '59674', 'cd38': '-258', 'cd49f': '743', 'w': '63353', 'h': '61730', 'lin': '1228', 'cd34': '11975', 'cd90': '7071', 'cd7': '585', 'cd10': '970', 'time': '10995', 'cd135': '1217', 'cd45ra': '196'}, 'GSM1955932': {'a': '58731', 'cd38': '161', 'cd49f': '233', 'w': '66290', 'h': '58063', 'lin': '-364', 'cd34': '5864', 'cd90': '925', 'cd7': '279', 'cd10': '388', 'time': '11199', 'cd135': '2358', 'cd45ra': '272'}, 'GSM1955931': {'a': '64386', 'cd38': '984', 'cd49f': '446', 'w': '71368', 'h': '59124', 'lin': '-68', 'cd34': '5282', 'cd90': '368', 'cd7': '172', 'cd10': '42', 'time': '11418', 'cd135': '1593', 'cd45ra': '369'}, 'GSM1955930': {'a': '71836', 'cd38': '956', 'cd49f': '592', 'w': '65195', 'h': '72212', 'lin': '52', 'cd34': '10575', 'cd90': '2553', 'cd7': '73', 'cd10': '1000', 'time': '11714', 'cd135': '520', 'cd45ra': '272'}, 'GSM1955937': {'a': '45576', 'cd38': '699', 'cd49f': '343', 'w': '66474', 'h': '44933', 'lin': '120', 'cd34': '9551', 'cd90': '4869', 'cd7': '23', 'cd10': '963', 'time': '10075', 'cd135': '3365', 'cd45ra': '257'}, 'GSM1955936': {'a': '57402', 'cd38': '-83', 'cd49f': '731', 'w': '69010', 'h': '54512', 'lin': '306', 'cd34': '7907', 'cd90': '755', 'cd7': '531', 'cd10': '710', 'time': '10317', 'cd135': '2968', 'cd45ra': '302'}, 'GSM1955935': {'a': '49364', 'cd38': '472', 'cd49f': '708', 'w': '68113', 'h': '47496', 'lin': '320', 'cd34': '12316', 'cd90': '4098', 'cd7': '43', 'cd10': '917', 'time': '10546', 'cd135': '3398', 'cd45ra': '116'}, 'GSM1955934': {'a': '61344', 'cd38': '709', 'cd49f': '405', 'w': '68432', 'h': '58748', 'lin': '227', 'cd34': '8545', 'cd90': '2249', 'cd7': '309', 'cd10': '473', 'time': '10781', 'cd135': '2749', 'cd45ra': '137'}, 'GSM1955939': {'a': '52212', 'cd38': '1078', 'cd49f': '564', 'w': '68666', 'h': '49832', 'lin': '-31', 'cd34': '9190', 'cd90': '-151', 'cd7': '289', 'cd10': '784', 'time': '9613', 'cd135': '7620', 'cd45ra': '4086'}, 'GSM1955938': {'a': '51133', 'cd38': '815', 'cd49f': '361', 'w': '67786', 'h': '49436', 'lin': '-127', 'cd34': '7489', 'cd90': '9243', 'cd7': '-278', 'cd10': '880', 'time': '9833', 'cd135': '670', 'cd45ra': '35'}, 'GSM2807439': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2042108': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2042109': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM3190790': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.876717'}, 'GSM2042102': {'cohort': 'Sporadic', 'tissue': 'Colon adenocarcinoma'}, 'GSM2042103': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2042100': {'cohort': 'Sporadic', 'tissue': 'Colon adenocarcinoma'}, 'GSM2042101': {'cohort': 'Sporadic', 'tissue': 'Colon adenocarcinoma'}, 'GSM2042106': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2042107': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2042104': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2042105': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2265814': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '30'}, 'GSM1816593': {'transfection': 'dCas9-VPR and a gRNA of length 14nt targeting HBG1/2', 'line': 'HEK293T'}, 'GSM1816592': {'transfection': 'dCas9-VPR and a gRNA of length 14nt targeting HBG1/2', 'line': 'HEK293T'}, 'GSM2599709': {'line': 'THP-1', 'exposure': '72 hr PMA exposure'}, 'GSM2599708': {'line': 'THP-1', 'exposure': '( - PMA )'}, 'GSM3190798': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1.2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.609272'}, 'GSM1816595': {'transfection': 'none', 'line': 'HEK293T'}, 'GSM1816594': {'transfection': 'none', 'line': 'HEK293T'}, 'GSM2630156': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405840'}, 'GSM2630157': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405841'}, 'GSM2630154': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405838'}, 'GSM2630155': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405839'}, 'GSM2599707': {'line': 'THP-1', 'exposure': '( - PMA )'}, 'GSM2630153': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630150': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630151': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM1577748': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577749': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM2172324': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172325': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172322': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172323': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172320': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172321': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1577740': {'state': 'Anergic 3h'}, 'GSM1577741': {'state': 'Effector 7h'}, 'GSM1577742': {'state': 'Anergic 7h'}, 'GSM1577743': {'state': 'Effector 14h'}, 'GSM1577744': {'state': 'Anergic 14h'}, 'GSM1577745': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577746': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577747': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM2303616': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2451094': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451095': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451096': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451097': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1440657': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1440656': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1440655': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM2451093': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1634454': {'type': 'U2OS', 'treatment': 'Myc activation (5 hr)'}, 'GSM1440659': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1440658': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM2451098': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451099': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2047688': {'well': 'G03', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047689': {'well': 'G04', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047686': {'well': 'G01', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047687': {'well': 'G02', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047684': {'well': 'F11', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047685': {'well': 'F12', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047682': {'well': 'F09', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047683': {'well': 'F10', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047680': {'well': 'F07', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047681': {'well': 'F08', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM3594640': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594641': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594642': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594643': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594644': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594645': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594646': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594647': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594648': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594649': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2411838': {'line': '1649B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411839': {'line': '1660E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411836': {'line': '1441G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411837': {'line': '1649A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411834': {'line': '1293B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411835': {'line': '1441F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411832': {'line': '12569B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411833': {'line': '1293A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411830': {'line': '4105D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411831': {'line': '12569A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM1980373': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2311010': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Adjacent normal lung tissues', 'tissue': 'lung', 'id': 'Case1'}, 'GSM1980371': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1405085': {'source': 'IP with non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'treatment': 'AFF4 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405084': {'source': 'IP with non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'treatment': 'AFF4 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405087': {'source': 'IP with non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'treatment': 'ELL2 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405086': {'source': 'IP with non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'treatment': 'ELL2 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405081': {'source': 'IP with non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'treatment': 'AFF4 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405080': {'source': 'IP with non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'treatment': 'AFF4 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405083': {'source': 'IP with non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'treatment': 'AFF4 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405082': {'source': 'IP with non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'treatment': 'AFF4 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1980377': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1405089': {'source': 'IP with non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'treatment': 'ELL2 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405088': {'source': 'IP with non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'treatment': 'ELL2 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1980376': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1622035': {'type': 'Derived from non-UV exposed epidermis'}, 'GSM1538079': {'resection': '23.4', 'id': '5', 'sex': 'F'}, 'GSM2445672': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'Idela 1uM'}, 'GSM1234186': {'replicate': '2', 'line': '2610', 'antibody': 'H3K27me3'}, 'GSM1234187': {'replicate': '1', 'line': '2610', 'antibody': 'H3K36me3'}, 'GSM1234184': {'replicate': '2', 'line': '2610', 'antibody': 'H3K27Ac'}, 'GSM1234185': {'replicate': '1', 'line': '2610', 'antibody': 'H3K27me3'}, 'GSM1234182': {'replicate': '2', 'line': '2610', 'antibody': 'CTCF'}, 'GSM1341687': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1234180': {'replicate': '1', 'line': '2610', 'antibody': 'CTCF'}, 'GSM1234181': {'replicate': '2.2', 'line': '2610', 'antibody': 'CTCF'}, 'GSM1915043': {'type': 'epithelial', 'line': 'MCF7', 'molecule': 'total RNA'}, 'GSM1915042': {'type': 'epithelial', 'line': 'MCF7', 'molecule': 'total RNA'}, 'GSM1341688': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341689': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1915047': {'type': 'epithelial', 'line': 'MCF7', 'molecule': 'polysomal RNA'}, 'GSM1915046': {'type': 'epithelial', 'line': 'MCF10A', 'molecule': 'total RNA'}, 'GSM1234188': {'replicate': '2', 'line': '2610', 'antibody': 'H3K36me3'}, 'GSM1234189': {'replicate': '1', 'line': '2610', 'antibody': 'H3K4me1'}, 'GSM2243855': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243854': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F4', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243857': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243856': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B5', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243851': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B7', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243850': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243853': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D12', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243852': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E5', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243859': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F11', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243858': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A12', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1564289': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '50', 'replicate': '1', 'hcc827': '50'}, 'GSM1564288': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '25', 'replicate': '1', 'hcc827': '75'}, 'GSM2627060': {'origin': 'small intestine', 'patient_id': '7', 'type': 'liver metastasis', 'tumor_id': '7'}, 'GSM2627061': {'origin': 'small intestine', 'patient_id': '96', 'type': 'liver metastasis', 'tumor_id': '70'}, 'GSM2627066': {'origin': 'small intestine', 'patient_id': '108', 'type': 'liver metastasis', 'tumor_id': '82'}, 'GSM2627067': {'origin': 'small intestine', 'patient_id': '110', 'type': 'liver metastasis', 'tumor_id': '84'}, 'GSM2627064': {'origin': 'small intestine', 'patient_id': '106', 'type': 'liver metastasis', 'tumor_id': '80'}, 'GSM2627065': {'origin': 'small intestine', 'patient_id': '107', 'type': 'liver metastasis', 'tumor_id': '81'}, 'GSM2627068': {'origin': 'small intestine', 'patient_id': '191', 'type': 'lymph node metastasis', 'tumor_id': '145'}, 'GSM2627069': {'origin': 'small intestine', 'patient_id': '206', 'type': 'lymph node metastasis', 'tumor_id': '151'}, 'GSM1564287': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '0', 'replicate': '1', 'hcc827': '100'}, 'GSM1410991': {'ercc_mix': '1', 'donor': 'AS021111-F44', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Baseline'}, 'GSM1410990': {'ercc_mix': '1', 'donor': 'AS012811-M9', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Baseline'}, 'GSM984379': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'AR siRNA', 'manufacturer': 'none'}, 'GSM984378': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'AR siRNA', 'manufacturer': 'none'}, 'GSM1410995': {'ercc_mix': '1', 'donor': 'AS091511-F19', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Baseline'}, 'GSM1410994': {'ercc_mix': '1', 'donor': 'N061311-M23', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1410997': {'ercc_mix': '1', 'donor': 'N100811-M21', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1410996': {'ercc_mix': '1', 'donor': 'N092611-M26', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM984373': {'line': 'LNCaP', 'antibody': 'none', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'none'}, 'GSM984372': {'line': 'LNCaP', 'antibody': 'none', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'none'}, 'GSM984371': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'DHT treated (16h)', 'manufacturer': 'none'}, 'GSM984370': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'DHT treated (16h)', 'manufacturer': 'none'}, 'GSM984377': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'non-specific siRNA', 'manufacturer': 'none'}, 'GSM984376': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'non-specific siRNA', 'manufacturer': 'none'}, 'GSM984375': {'line': 'LNCaP', 'antibody': 'none', 'treatment': 'DHT treated (16hh)', 'manufacturer': 'none'}, 'GSM984374': {'line': 'LNCaP', 'antibody': 'none', 'treatment': 'DHT treated (16hh)', 'manufacturer': 'none'}, 'GSM2125382': {'line': 'H157', 'type': 'Lung carcinoma cells', 'variation': 'expressing YAP-RBM4'}, 'GSM1409654': {'vector': 'pRetroX-Tight-Pur Flag WT RBM47', 'line': 'MDA-MB-231 derivative', 'tissue': 'breast cancer cell line'}, 'GSM1599146': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM1409650': {'vector': 'pRetroX-Tight-Pur', 'line': 'MDA-MB-231 derivative', 'tissue': 'breast cancer cell line'}, 'GSM1409651': {'vector': 'pRetroX-Tight-Pur', 'line': 'MDA-MB-231 derivative', 'tissue': 'breast cancer cell line'}, 'GSM1409652': {'vector': 'pRetroX-Tight-Pur Flag WT RBM47', 'line': 'MDA-MB-231 derivative', 'tissue': 'breast cancer cell line'}, 'GSM1409653': {'vector': 'pRetroX-Tight-Pur Flag WT RBM47', 'line': 'MDA-MB-231 derivative', 'tissue': 'breast cancer cell line'}, 'GSM2779655': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779654': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779657': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779656': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779653': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM1921977': {'donor': '1', 'tissue': 'macrophage', 'agent': 'untreated'}, 'GSM1921978': {'donor': '2', 'tissue': 'macrophage', 'agent': 'untreated'}, 'GSM1921979': {'donor': '3', 'tissue': 'macrophage', 'agent': 'untreated'}, 'GSM2779659': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779658': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2754632': {'bin': '4', 'group': 'Not a PP case', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_1178', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754633': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0360', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754630': {'bin': '4', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_1178', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754631': {'bin': '4', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_1178', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM2754636': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0259', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754637': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0259', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754634': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0360', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754635': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0360', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1940661': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940660': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2754638': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0259', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754639': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_1003', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1940665': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940664': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940667': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940666': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1088318': {'line': 'HFF-1', 'type': 'foreskin fibroblast'}, 'GSM1088319': {'passages': '10', 'clone': '7', 'tissue': 'hiPSC-derived embryoid bodies'}, 'GSM2752676': {'with': 'non-targeting control siRNA', 'line': 'DAOY', 'type': 'medulloblastoma cell line', 'timepoint': 'transient - 48 hours'}, 'GSM2752677': {'with': 'non-targeting control siRNA', 'line': 'DAOY', 'type': 'medulloblastoma cell line', 'timepoint': 'transient - 48 hours'}, 'GSM1371580': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'human embryonic stem cells'}, 'GSM2752678': {'with': 'siRNA targeting p73 (ID: 2671-AMBION)', 'line': 'DAOY', 'type': 'medulloblastoma cell line', 'timepoint': 'transient - 48 hours'}, 'GSM2752679': {'with': 'siRNA targeting p73 (ID: 2671-AMBION)', 'line': 'DAOY', 'type': 'medulloblastoma cell line', 'timepoint': 'transient - 48 hours'}, 'GSM2616620': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616621': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616622': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616623': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616624': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616625': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616626': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2616627': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM2616628': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616629': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM1975085': {'knockdown': 'hnRNP A2/B1', 'line': 'A549'}, 'GSM1975084': {'knockdown': 'control', 'line': 'A549'}, 'GSM1975087': {'knockdown': 'control', 'line': 'A549'}, 'GSM1975086': {'knockdown': 'hnRNP A1', 'line': 'A549'}, 'GSM1975081': {'knockdown': 'control', 'line': 'A549'}, 'GSM1975083': {'knockdown': 'hnRNP A1', 'line': 'A549'}, 'GSM1975082': {'knockdown': 'hnRNP A2/B1', 'line': 'A549'}, 'GSM1233869': {'replicate': '1', 'line': '10847', 'antibody': 'CTCF'}, 'GSM1975089': {'knockdown': 'control', 'line': 'A549'}, 'GSM1975088': {'knockdown': 'hnRNP A2/B1+A1', 'line': 'A549'}, 'GSM2695328': {'type': 'primed human ESC'}, 'GSM2932937': {'pucai': '30', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM1129239': {'input': '1 ng', 'state': 'intact'}, 'GSM2339239': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, '.': {'code': '200'}, 'GSM1424523': {'line': 'DU145', 'condition': 'U0126 treated'}, 'GSM1424522': {'line': 'DU145', 'condition': 'U0126 treated'}, 'GSM1424521': {'line': 'DU145', 'condition': 'U0126 treated'}, 'GSM1424520': {'line': 'DU145', 'condition': 'ETS1 shRNA'}, 'GSM2275076': {'area_under_the_curve': '0.154897656', 'siteandparticipantcode': '475166', 'baseline_area_under_the_curve': '0.591352188', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '26.19380794', 'auc_percent_of_baseline': '26.19380794', 'trunkbarcode': '905616', 'sampleID': 'S12613', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1493', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_475166', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1493', 'studysiteshort': 'UCSF'}, 'GSM2275077': {'area_under_the_curve': '0.647156719', 'siteandparticipantcode': '122083', 'baseline_area_under_the_curve': '0.775936406', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '83.40331934', 'auc_percent_of_baseline': '83.40331934', 'trunkbarcode': '905617', 'sampleID': 'S12614', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1494', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_122083', 'gender': 'Male', 'age': '14', 'race': 'Black or African American; White', 'libraryid': 'lib1494', 'studysiteshort': 'UCSF'}, 'GSM2275074': {'area_under_the_curve': '0.837171406', 'siteandparticipantcode': '397935', 'baseline_area_under_the_curve': '0.65910375', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '127.0166353', 'auc_percent_of_baseline': '127.0166353', 'trunkbarcode': '905615', 'sampleID': 'S12611', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1491', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_397935', 'gender': 'Male', 'age': '12', 'race': 'White; Other', 'libraryid': 'lib1491', 'studysiteshort': 'UCSF'}, 'GSM2275075': {'area_under_the_curve': '0.409095313', 'siteandparticipantcode': '333398', 'baseline_area_under_the_curve': '0.552821719', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '74.00130976', 'auc_percent_of_baseline': '74.00130976', 'trunkbarcode': '905618', 'sampleID': 'S12612', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1492', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_333398', 'gender': 'Female', 'age': '27', 'race': 'White', 'libraryid': 'lib1492', 'studysiteshort': 'UCSF'}, 'GSM2275072': {'area_under_the_curve': '0.877822344', 'siteandparticipantcode': '326726', 'baseline_area_under_the_curve': '0.797192813', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '110.1141819', 'auc_percent_of_baseline': '110.1141819', 'trunkbarcode': '905612', 'sampleID': 'S12609', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1489', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_326726', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1489', 'studysiteshort': 'COLUMBIA'}, 'GSM2275073': {'area_under_the_curve': '0.073130313', 'siteandparticipantcode': '242972', 'baseline_area_under_the_curve': '0.642812344', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '11.3766192', 'auc_percent_of_baseline': '11.3766192', 'trunkbarcode': '905614', 'sampleID': 'S12610', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1490', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_242972', 'gender': 'Male', 'age': '8', 'race': 'White', 'libraryid': 'lib1490', 'studysiteshort': 'UCSF'}, 'GSM2275070': {'area_under_the_curve': '0.667275313', 'siteandparticipantcode': '406442', 'baseline_area_under_the_curve': '0.648708281', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '102.8621542', 'auc_percent_of_baseline': '102.8621542', 'trunkbarcode': '905611', 'sampleID': 'S12607', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1487', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_406442', 'gender': 'Female', 'age': '13', 'race': 'White', 'libraryid': 'lib1487', 'studysiteshort': 'COLUMBIA'}, 'GSM2275071': {'area_under_the_curve': '0.392597031', 'siteandparticipantcode': '853089', 'baseline_area_under_the_curve': '0.32107', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '122.2777062', 'auc_percent_of_baseline': '122.2777062', 'trunkbarcode': '905613', 'sampleID': 'S12608', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1488', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'Control', 'name': 'AbATE_853089', 'gender': 'Male', 'age': '14', 'race': 'White', 'libraryid': 'lib1488', 'studysiteshort': 'COLUMBIA'}, 'GSM2275078': {'area_under_the_curve': '0.272454375', 'siteandparticipantcode': '537789', 'baseline_area_under_the_curve': '0.533892656', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '51.03167684', 'auc_percent_of_baseline': '51.03167684', 'trunkbarcode': '905619', 'sampleID': 'S12615', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1495', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_537789', 'gender': 'Female', 'age': '9', 'race': 'White', 'libraryid': 'lib1495', 'studysiteshort': 'UCSF'}, 'GSM2275079': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'trunkbarcode': '927496', 'sampleID': 'S12616', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1496', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'race': 'American Indian or Alaska Native; White', 'libraryid': 'lib1496', 'studysiteshort': 'UCSF'}, 'GSM3586801': {'origin': 'ABC', 'pfstt': '870', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '879', 'cycles': '6', 'oscs': '0'}, 'GSM3586800': {'origin': 'GCB', 'pfstt': '376', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '905', 'cycles': '6', 'oscs': '0'}, 'GSM3586803': {'origin': 'GCB', 'pfstt': '81', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '118', 'cycles': '6', 'oscs': '1'}, 'GSM3586802': {'origin': 'UNCLASSIFIED', 'pfstt': '862', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '872', 'cycles': '6', 'oscs': '0'}, 'GSM3586805': {'origin': 'GCB', 'pfstt': '253', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '355', 'cycles': '6', 'oscs': '0'}, 'GSM3586804': {'origin': 'GCB', 'pfstt': '519', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '925', 'cycles': '6', 'oscs': '0'}, 'GSM3586807': {'origin': 'ABC', 'pfstt': '168', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '184', 'cycles': '8', 'oscs': '1'}, 'GSM3586806': {'origin': 'ABC', 'pfstt': '381', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1005', 'cycles': '8', 'oscs': '0'}, 'GSM3586809': {'origin': 'GCB', 'pfstt': '735', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '821', 'cycles': '8', 'oscs': '0'}, 'GSM3586808': {'origin': 'ABC', 'pfstt': '930', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '930', 'cycles': '8', 'oscs': '0'}, 'GSM2932936': {'pucai': '60', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM1585206': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM1585207': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM2731729': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2731728': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2392438': {'status': 'CREBBP+/-'}, 'GSM2392439': {'status': 'CREBBP+/-'}, 'GSM2731725': {'tissue': 'glioblastoma', 'type': 'non-stem tumor cell'}, 'GSM2731724': {'tissue': 'glioblastoma', 'type': 'glioblastoma stem cell'}, 'GSM2731727': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2392435': {'status': 'CREBBP+/+'}, 'GSM2731721': {'tissue': 'glioblastoma', 'type': 'non-stem tumor cell'}, 'GSM2731720': {'tissue': 'glioblastoma', 'type': 'glioblastoma stem cell'}, 'GSM2731723': {'tissue': 'glioblastoma', 'type': 'non-stem tumor cell'}, 'GSM2731722': {'tissue': 'glioblastoma', 'type': 'glioblastoma stem cell'}, 'GSM3019910': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11c- IgD- CD38- Memory B cells', 'collection': 'RA-3', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019911': {'marker': 'CD19+ CD11c- IgD- CD27+CD38int', 'type': 'CD19+ CD11c- IgD- CD38int Memory B cells', 'collection': 'RA-3', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019912': {'marker': 'CD19+ CD11c- IgD+ CD27-CD38int', 'type': 'CD19+ CD11c- IgD+ CD38int Naive B cells', 'collection': 'RA-3', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019913': {'marker': 'CD19+ CD11chi IgD- CD27-CD38-', 'type': 'CD19+ CD11chi IgD- CD38- B cells', 'collection': 'RA-4', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019914': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11c- IgD- CD38- Memory B cells', 'collection': 'RA-4', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019915': {'marker': 'CD19+ CD11c- IgD- CD27+CD38int', 'type': 'CD19+ CD11c- IgD- CD38int Memory B cells', 'collection': 'RA-4', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019916': {'marker': 'CD19+ CD11c- IgD+ CD27-CD38int', 'type': 'CD19+ CD11c- IgD+ CD38int Naive B cells', 'collection': 'RA-4', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019917': {'marker': 'CD19+ CD11chi IgD- CD27-CD38-', 'type': 'CD19+ CD11chi IgD- CD38- B cells', 'collection': 'HC-2', 'diagnosis': 'Healthy subject'}, 'GSM3019918': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11c- IgD- CD38- Memory B cells', 'collection': 'HC-2', 'diagnosis': 'Healthy subject'}, 'GSM3019919': {'marker': 'CD19+ CD11c- IgD- CD27+CD38int', 'type': 'CD19+ CD11c- IgD- CD38int Memory B cells', 'collection': 'HC-2', 'diagnosis': 'Healthy subject'}, 'GSM1536046': {'pulldown': 'input control', 'line': \"Barrett's esophagus cell line, CPA\"}, 'GSM2332519': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2332518': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332517': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2332516': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332515': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM1536041': {'line': \"Barrett's esophagus cell line, CPA\", 'variation': 'control'}, 'GSM2194677': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2802944': {'line': 'hMSC-TERT4', 'stage': 'D7'}, 'GSM2595213': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '23'}, 'GSM2616680': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2123971': {}, 'GSM2123970': {}, 'GSM2194678': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2123973': {}, 'GSM2194679': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2048566': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048567': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048564': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048565': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048562': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048563': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048560': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048561': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2123975': {}, 'GSM2048568': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048569': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2058071': {'line': 'V206', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058070': {'line': 'V1106', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2481901': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481900': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2058075': {'line': 'V429', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058074': {'line': 'V411', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058077': {'line': 'V456', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058076': {'line': 'V432', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058079': {'line': 'V481', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058078': {'line': 'V457', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2481909': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481908': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2372319': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2746543': {'antibody': 'anti-RNA Pol II (N20, sc899)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746542': {'antibody': 'anti-p65 (sc372x)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746541': {'antibody': 'anti-p65 (sc372x)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746540': {'antibody': 'anti-p53 (FL393, sc6243)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746547': {'antibody': '12.5 ng ml-1 TNF-α for 16 hr', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746546': {'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746545': {'antibody': '12.5 ng ml-1 TNF-α for 16 hr', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746544': {'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746549': {'antibody': '12.5 ng ml-1 TNF-α for 16 hr', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746548': {'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2153054': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2815759': {'line': 'H9'}, 'GSM1964533': {'lines': 'WA09', 'method': 'Single cell', 'size': '500'}, 'GSM1964532': {'lines': 'WA09', 'method': 'Single cell', 'size': '500'}, 'GSM1964531': {'lines': 'WA09', 'method': '2D', 'size': '500'}, 'GSM1964530': {'lines': 'WA09', 'method': '2D', 'size': '500'}, 'GSM1964537': {'lines': 'H3.3.1', 'method': '2D', 'size': '200'}, 'GSM1964536': {'lines': 'H3.3.1', 'method': '2D', 'size': '200'}, 'GSM1964535': {'lines': 'F3.5.2', 'method': '2D', 'size': '200'}, 'GSM1964534': {'lines': 'F3.5.2', 'method': '2D', 'size': '200'}, 'GSM2157967': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2392002': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2157966': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157969': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2815752': {'line': 'H9'}, 'GSM2815751': {'line': 'H9'}, 'GSM2172291': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM923424': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL316', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923425': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL331', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923426': {'lineage': 'endoderm', 'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labversion': 'cufflinks_v_0.9', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labexpid': 'SL991'}, 'GSM923427': {'lineage': 'endoderm', 'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labversion': 'cufflinks_v_0.9', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labexpid': 'SL990'}, 'GSM923420': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL330', 'biomaterial_type': 'immortalized cell line', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9', 'line': 'A549', 'readtype': '1x36'}, 'GSM923421': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL528', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923422': {'lineage': 'endoderm', 'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labversion': 'cufflinks_v_0.9', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labexpid': 'SL1552'}, 'GSM923423': {'lineage': 'endoderm', 'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labversion': 'cufflinks_v_0.9', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labexpid': 'SL989'}, 'GSM2815757': {'line': 'H9'}, 'GSM923428': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL1244', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923429': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL1550', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM2301462': {'gender': 'male', 'type': 'LuCaP 96 PDX tumor', 'group': 'YK-4-279'}, 'GSM1093060': {'type': 'renal'}, 'GSM1093061': {'type': 'renal'}, 'GSM1556706': {'pairs': 'rs10030238-CTTGAAATGAGTCATAGATC;rs11263841-CCTCCTAGTCATTGGAGATC;rs12505666-CCCTTTAAAAGCATCAGATC;rs12613503-CTCAAATGCTCCTCACGATC;rs1743292-GTCCTGCCCCACTCTGGATC;rs1772203-TGAGTTTGCTCCTGTAGATC;rs17779853-AAAACATTTTGAAGTAGATC;rs1886512-GACACATTAGGATTTGAGAT;rs3734637-GTTAGTGATTGCATTTGATC;rs3783382-CAAGTTCTCTACTTGTGATC;rs6565060-TGTAGGAATCCAGTGAGATC;', 'type': 'Human iPSC-derived cardiomyocytes (iCMs) (Cellular Dynamics, Catalog #: CMc-100-010-001)'}, 'GSM1398734': {'conditions': 'Perfusion 3D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398735': {'conditions': 'Perfusion 3D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398736': {'conditions': 'Perfusion 3D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398737': {'conditions': 'Static 3D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398731': {'conditions': '2D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398732': {'conditions': '2D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398733': {'conditions': '2D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398738': {'conditions': 'Static 3D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398739': {'conditions': 'Static 3D', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM2036325': {'gender': 'Male', 'age': '66', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2036324': {'gender': 'Male', 'age': '67', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2036327': {'gender': 'Male', 'age': '61', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2036326': {'gender': 'Male', 'age': '64', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2036321': {'gender': 'Male', 'age': '67', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2036323': {'gender': 'Male', 'age': '68', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2036322': {'gender': 'Male', 'age': '57', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2153050': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2036329': {'gender': 'Male', 'age': '60', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2036328': {'gender': 'Male', 'age': '56', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2861714': {'tissue': 'Cord Blood', 'type': 'CD34+ hematopoietic stem cells (HSPCs)', 'variation': 'control'}, 'GSM2861715': {'tissue': 'Cord Blood', 'type': 'CD34+ hematopoietic stem cells (HSPCs)', 'variation': 'control'}, 'GSM2861716': {'tissue': 'Cord Blood', 'type': 'CD34+ hematopoietic stem cells (HSPCs)', 'variation': 'Canyon_deletion'}, 'GSM2861717': {'tissue': 'Cord Blood', 'type': 'CD34+ hematopoietic stem cells (HSPCs)', 'variation': 'Canyon_deletion'}, 'GSM2861712': {'tissue': 'Cord Blood', 'type': 'CD34+ hematopoietic stem cells (HSPCs)', 'variation': 'control'}, 'GSM2861713': {'tissue': 'Cord Blood', 'type': 'CD34+ hematopoietic stem cells (HSPCs)', 'variation': 'control'}, 'GSM2348592': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348593': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348590': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348591': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2861718': {'tissue': 'Cord Blood', 'type': 'CD34+ hematopoietic stem cells (HSPCs)', 'variation': 'Canyon_deletion'}, 'GSM2861719': {'tissue': 'Cord Blood', 'type': 'CD34+ hematopoietic stem cells (HSPCs)', 'variation': 'Canyon_deletion'}, 'GSM2348594': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348595': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1308249': {'with': 'ZNF804A KD vector', 'type': 'Neural progenitor cells (NPCs) developed from iPSCs'}, 'GSM1308248': {'with': 'Scrambled vector (control)', 'type': 'day 10 neurons'}, 'GSM2565294': {'construction': 'PLATE-Seq', 'drug': 'GW 843682X'}, 'GSM2565295': {'construction': 'PLATE-Seq', 'drug': 'P276-00'}, 'GSM936509': {'line': 'HEK293', 'medium': 'DMEM', 'antibody': 'FLAG', 'expressing': 'HIS/FLAG/HA-tagged CAPRIN1'}, 'GSM936508': {'line': 'HEK293', 'medium': 'DMEM', 'antibody': 'FLAG', 'expressing': 'HIS/FLAG/HA-tagged C22orf28'}, 'GSM2565290': {'construction': 'PLATE-Seq', 'drug': 'ACRIFLAVINIUM HYDROCHLORIDE'}, 'GSM2565291': {'construction': 'PLATE-Seq', 'drug': 'DIALLYL TRISULFIDE'}, 'GSM1245898': {'down': 'MOV10', 'vendor': 'Bethyl Laboratories Inc.', 'line': 'HEK293F', 'code': 'NNNTGGANNâ\\x80¦cDNA', 'type': 'Human Embryonic Kidney cells'}, 'GSM1245899': {'down': 'irrelevant (ir)', 'line': 'HEK293F', 'code': 'NNNGTTANNâ\\x80¦..cDNA', 'type': 'Human Embryonic Kidney cells'}, 'GSM936507': {'line': 'HEK293', 'medium': 'DMEM', 'antibody': 'FLAG', 'expressing': 'HIS/FLAG/HA-tagged C17orf85'}, 'GSM936506': {'line': 'HEK293', 'medium': 'DMEM', 'antibody': 'FLAG', 'expressing': 'HIS/FLAG/HA-tagged ALKBH5'}, 'GSM1308245': {'with': 'Scrambled vector (control)', 'type': 'Neural progenitor cells (NPCs) developed from iPSCs'}, 'GSM1308247': {'with': 'Scrambled vector (control)', 'type': 'Neural progenitor cells (NPCs) developed from iPSCs'}, 'GSM1308246': {'with': 'Scrambled vector (control)', 'type': 'Neural progenitor cells (NPCs) developed from iPSCs'}, 'GSM1369186': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Neural Differentation'}, 'GSM1678864': {'treated': 'Treated with Montelukast Sodium', 'line': 'A549 cells', 'infected': 'Infected with Influenza virus'}, 'GSM1678861': {'treated': 'Treated with Montelukast Sodium', 'line': 'A549 cells', 'infected': 'Not infected'}, 'GSM1678860': {'treated': 'Not treated', 'line': 'A549 cells', 'infected': 'Infected with Influenza virus'}, 'GSM1678863': {'treated': 'Treated with Montelukast Sodium', 'line': 'A549 cells', 'infected': 'Infected with Influenza virus'}, 'GSM1678862': {'treated': 'Treated with Montelukast Sodium', 'line': 'A549 cells', 'infected': 'Not infected'}, 'GSM2535998': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6806', 'samplename': '1_T1D#4_RO+_C89', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30170', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6806', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C89'}, 'GSM2535999': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6807', 'samplename': '1_T1D#4_RO+_C60', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30171', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6807', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C60'}, 'GSM2535990': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6798', 'samplename': '1*_T1D#4_RO+_C47', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30162', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6798', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C47'}, 'GSM2535991': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6799', 'samplename': '1_T1D#4_RO+_C30', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30163', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6799', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C30'}, 'GSM2535992': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6800', 'samplename': '1*_T1D#4_RO+_C70', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30164', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6800', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C70'}, 'GSM2535993': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6801', 'samplename': '1_T1D#4_RO+_C78', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30165', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6801', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C78'}, 'GSM2535994': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6802', 'samplename': '1*_T1D#4_RO+_C90', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30166', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6802', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C90'}, 'GSM2535995': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6803', 'samplename': '1_T1D#4_RO+_C96', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30167', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6803', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C96'}, 'GSM2535996': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6804', 'samplename': '1_T1D#4_RO+_C53', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30168', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6804', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C53'}, 'GSM2535997': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6805', 'samplename': '1_T1D#4_RO+_C59', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30169', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6805', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C59'}, 'GSM1111660': {'protocol': 'Hard spin, Washed once', 'id': '174', 'stage': 'Mature'}, 'GSM1620519': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1505860': {'gender': 'male', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '1123-01'}, 'GSM1505861': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '1123-01'}, 'GSM1505862': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '1123-03'}, 'GSM1505863': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '1123-03'}, 'GSM2141513': {'individual': 'AF185', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141512': {'individual': 'AF183', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141511': {'individual': 'AF183', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141510': {'individual': 'AF183', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141517': {'individual': 'AF187', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141516': {'individual': 'AF187', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141515': {'individual': 'AF185', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141514': {'individual': 'AF185', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141519': {'individual': 'AF189', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141518': {'individual': 'AF187', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM554112': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM2356902': {'type': '3-dimensional sphere', 'mutations': 'KECST'}, 'GSM554110': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM1620517': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM554116': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM2391142': {'disease': 'NSCLC'}, 'GSM554114': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 6'}, 'GSM2391140': {'disease': 'NSCLC'}, 'GSM554118': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM2356900': {'type': '3-dimensional sphere', 'mutations': 'No'}, 'GSM2391149': {'disease': 'NSCLC'}, 'GSM2391148': {'disease': 'NSCLC'}, 'GSM424331': {'identifier': 'GM11831'}, 'GSM424336': {'identifier': 'GM11992'}, 'GSM2685258': {'acd27': 'no aCD27', 'type': 'CD8+ naive T cells', 'number': '1', 'subtype': 'AbBs from single cell', 'donor': 'Donor 1', 'protein': 'protein', 'with': 'aCD3 and aCD28', 'condition': 'AbBs and Blocking buffer'}, 'GSM424334': {'identifier': 'GM11881'}, 'GSM2790825': {'status': 'Healthy', 'point': '1 month', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'donor': '29', 'type': 'Monocyte'}, 'GSM2790824': {'status': 'Healthy', 'point': 'Baseline', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'None', 'donor': '29', 'type': 'Monocyte'}, 'GSM2790823': {'status': 'Healthy', 'point': '1 month', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'donor': '28', 'type': 'Monocyte'}, 'GSM2790822': {'status': 'Healthy', 'point': 'Baseline', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'None', 'donor': '28', 'type': 'Monocyte'}, 'GSM2790821': {'status': 'Healthy', 'point': '1 month', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'donor': '20', 'type': 'Monocyte'}, 'GSM2790820': {'status': 'Healthy', 'point': 'Baseline', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'None', 'donor': '20', 'type': 'Monocyte'}, 'GSM1545659': {'serum': 'starved', 'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'TPL for 1 hour'}, 'GSM1545658': {'serum': 'starved', 'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'DMSO for 1 hour'}, 'GSM1545657': {'serum': 'starved', 'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'DMSO for 1 hour'}, 'GSM424338': {'identifier': 'GM11994'}, 'GSM424339': {'identifier': 'GM12003'}, 'GSM1401742': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401743': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401740': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401741': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401746': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401747': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401744': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401745': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401748': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401749': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1917098': {'transduction': 'cotransduced with pWZL HRASV12 and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917099': {'transduction': 'cotransduced with pWZL HRASV12 and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM897345': {'knockdown': 'H1TetO-shRNA-Con', 'line': 'A549', 'type': 'lung adenocarcinoma cell line'}, 'GSM897344': {'knockdown': 'H1TetO-shRNA-SOX2', 'line': 'A549', 'type': 'lung adenocarcinoma cell line'}, 'GSM1706744': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM1706745': {'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM1706742': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM1706743': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM1706740': {'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM1706741': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM2011591': {'tissue': 'triple negative breast cancer', 'variation': 'knock down'}, 'GSM2011590': {'tissue': 'triple negative breast cancer', 'variation': 'wild type'}, 'GSM2011593': {'tissue': 'triple negative breast cancer', 'variation': 'knock down'}, 'GSM2011592': {'tissue': 'triple negative breast cancer', 'variation': 'knock down'}, 'GSM1540975': {'type': 'HeLa', 'condition': 'UPF1 siRNA'}, 'GSM1540974': {'type': 'HeLa', 'condition': 'UPF1 siRNA'}, 'GSM1540971': {'type': 'HeLa', 'condition': 'Y14 siRNA'}, 'GSM1540970': {'type': 'HeLa', 'condition': 'Y14 siRNA'}, 'GSM1540973': {'type': 'HeLa', 'condition': 'MLN51 siRNA'}, 'GSM1540972': {'type': 'HeLa', 'condition': 'MLN51 siRNA'}, 'GSM1151049': {'line': 'IMR90', 'with': '20 μM 5azadC for 72 hrs', 'variation': 'wild type'}, 'GSM1151048': {'line': 'IMR90', 'variation': 'wild type'}, 'GSM2581265': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2257539': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2581264': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM1269360': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'Huh7 cells'}, 'GSM2448986': {'line': 'HMEC-1', 'construct': 'Non-targeting control'}, 'GSM1269361': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'Huh7 cells'}, 'GSM2448987': {'line': 'HMEC-1', 'construct': 'Non-targeting control'}, 'GSM2287642': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1269363': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'Huh7 cells'}, 'GSM2581263': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581262': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM1949046': {'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM2581269': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161130B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2581268': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161130B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM1833888': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM1833889': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM2471120': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM2471121': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2471126': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM2471127': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM2471124': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM2471125': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2742015': {'disease': 'atopic dermatitis (AD)', 'mutation': 'FLG mutation'}, 'GSM2742014': {'disease': 'atopic dermatitis (AD)', 'mutation': 'FLG mutation'}, 'GSM1833882': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 17'}, 'GSM1833883': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 17'}, 'GSM2742011': {'disease': 'ichthyosis vulgaris (IV)', 'mutation': 'FLG mutation'}, 'GSM2742010': {'disease': 'ichthyosis vulgaris (IV)', 'mutation': 'FLG mutation'}, 'GSM2742013': {'disease': 'ichthyosis vulgaris (IV)', 'mutation': 'FLG mutation'}, 'GSM2742012': {'disease': 'atopic dermatitis (AD)', 'mutation': 'FLG mutation'}, 'GSM2891093': {'line': 'SW480', 'experiment': 'Mono', 'variation': 'control (siNT)'}, 'GSM2665707': {'age': 'Day 100', 'well': 'G10', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2308963': {'line': 'HeLa', 'variation': 'SETDB1 KO'}, 'GSM2308962': {'line': 'HeLa', 'variation': 'SETDB1 KO'}, 'GSM2308961': {'line': 'HeLa', 'variation': 'SETDB1 KO'}, 'GSM2308960': {'line': 'HeLa', 'variation': 'ATF7IP KO'}, 'GSM2044607': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCR+'}, 'GSM2044609': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCR-'}, 'GSM2044608': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCR+'}, 'GSM2326044': {'type': 'Human embryonic stem cell'}, 'GSM2326045': {'type': 'Human embryonic stem cell'}, 'GSM2326046': {'type': 'Human embryonic stem cell'}, 'GSM2326047': {'type': 'Human embryonic stem cell'}, 'GSM2326040': {'type': 'Human embryonic stem cell'}, 'GSM2326041': {'type': 'Human embryonic stem cell'}, 'GSM2326042': {'type': 'Human embryonic stem cell'}, 'GSM2326043': {'type': 'Human embryonic stem cell'}, 'GSM2326048': {'type': 'Human embryonic stem cell'}, 'GSM2326049': {'type': 'Human embryonic stem cell'}, 'GSM2391994': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391995': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391996': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391997': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391990': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391991': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391992': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391993': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2082519': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2-/-'}, 'GSM2082518': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2+/-'}, 'GSM2391998': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391999': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM763958': {'line': 'HCT-116', 'passages': 'passage 4-15', 'treatment': 'none'}, 'GSM763959': {'line': 'HCT-116', 'passages': 'passage 4-15', 'treatment': 'serum-induced'}, 'GSM763957': {'line': 'HCT-116', 'passages': 'passage 4-15', 'treatment': 'none'}, 'GSM1558057': {'gender': 'Male', 'age': '81', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558056': {'gender': 'Male', 'age': '59', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM2186482': {'line': 'LNCaP', 'treatment': 'control'}, 'GSM2186483': {'line': 'LNCaP', 'treatment': 'control'}, 'GSM2186484': {'line': 'LNCaP', 'treatment': 'control'}, 'GSM2186485': {'line': 'LNCaP', 'treatment': 'TSA 24h @ 100 ng/ml'}, 'GSM2186486': {'line': 'LNCaP', 'treatment': 'TSA 24h @ 100 ng/ml'}, 'GSM2186487': {'line': 'LNCaP', 'treatment': 'TSA 24h @ 100 ng/ml'}, 'GSM2186488': {'line': 'LNCaP', 'treatment': 'DMSO 24h'}, 'GSM2186489': {'line': 'LNCaP', 'treatment': 'DMSO 24h'}, 'GSM2304510': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2304511': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2304516': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2304517': {'tissue': 'Endometrial stromal cells', 'point': 'TP1 (naïve)'}, 'GSM1558059': {'gender': 'Male', 'age': '74', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558058': {'gender': 'Male', 'age': '70', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1708779': {'gender': 'male', 'age': '63', 'tissue': 'Ossified Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM1708778': {'gender': 'male', 'age': '59', 'tissue': 'Ossified Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM1708775': {'gender': 'male', 'age': '57', 'tissue': 'Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM1708774': {'gender': 'male', 'age': '63', 'tissue': 'Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM1708777': {'gender': 'male', 'age': '54', 'tissue': 'Ossified Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM1708776': {'gender': 'male', 'age': '66', 'tissue': 'Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM1241218': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241219': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241212': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241213': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241210': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241211': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241216': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241217': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241214': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241215': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1671941': {'type': 'Antigen presenting cells'}, 'GSM1671940': {'type': 'Antigen presenting cells'}, 'GSM1671943': {'type': 'Antigen presenting cells'}, 'GSM1671942': {'type': 'Antigen presenting cells'}, 'GSM1671945': {'type': 'Antigen presenting cells'}, 'GSM1671944': {'type': 'Antigen presenting cells'}, 'GSM1671947': {'type': 'Antigen presenting cells'}, 'GSM1671946': {'type': 'Antigen presenting cells'}, 'GSM1671949': {'type': 'Antigen presenting cells'}, 'GSM1671948': {'type': 'Antigen presenting cells'}, 'GSM2649815': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649814': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2055515': {'individual': 'Patient 85', 'tissue': 'Adenoma'}, 'GSM2055514': {'individual': 'Patient 85', 'tissue': 'Normal rectal mucosa'}, 'GSM2055517': {'individual': 'Patient 1', 'tissue': 'Adenoma'}, 'GSM2055516': {'individual': 'Patient 1', 'tissue': 'Normal rectal mucosa'}, 'GSM2055511': {'individual': 'Patient 81', 'tissue': 'Adenoma'}, 'GSM2055510': {'individual': 'Patient 81', 'tissue': 'Normal rectal mucosa'}, 'GSM2055513': {'individual': 'Patient 82', 'tissue': 'Adenoma'}, 'GSM2055512': {'individual': 'Patient 82', 'tissue': 'Normal rectal mucosa'}, 'GSM2055519': {'individual': 'Patient 2', 'tissue': 'Adenoma'}, 'GSM2055518': {'individual': 'Patient 2', 'tissue': 'Normal rectal mucosa'}, 'GSM2689286': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689287': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689284': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689285': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689282': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689283': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689280': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689281': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689288': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689289': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2047725': {'well': 'B03', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047724': {'well': 'B02', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047727': {'well': 'B05', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047726': {'well': 'B04', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047721': {'well': 'A11', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047720': {'well': 'A10', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047723': {'well': 'B01', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047722': {'well': 'A12', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047729': {'well': 'B07', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1358000': {'tissue': 'cortical ischemic stroke tissue'}, 'GSM1358001': {'tissue': 'cortical ischemic stroke tissue'}, 'GSM956433': {'with': 'lentivirus harboring shRNA of both GATA6 and HOPX', 'line': 'PC9', 'type': 'human lung Adenocarcinoma'}, 'GSM956432': {'with': 'lentivirus harboring shRNA of both GATA6 and HOPX', 'line': 'PC9', 'type': 'human lung Adenocarcinoma'}, 'GSM956431': {'with': 'lentivirus harboring shRNA of both GATA6 and HOPX', 'line': 'PC9', 'type': 'human lung Adenocarcinoma'}, 'GSM956430': {'with': 'lentivirus harboring shRNA of control (Arab1)', 'line': 'PC9', 'type': 'human lung Adenocarcinoma'}, 'GSM2649818': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1326573': {'group': 'Polysome Control', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326572': {'group': 'Polysome Control', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326571': {'group': 'Polysome Control', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326570': {'group': 'Polysome Control', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326577': {'group': 'Polysome Pactamycin', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326576': {'group': 'Polysome Pactamycin', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326575': {'group': 'Polysome Pactamycin', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326574': {'group': 'Polysome Control', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM2176238': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176239': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1326579': {'group': 'Polysome Pactamycin', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326578': {'group': 'Polysome Pactamycin', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1683247': {'type': 'U87 human glioma cells'}, 'GSM1683246': {'type': 'U87 human glioma cells'}, 'GSM1683245': {'type': 'U87 human glioma cells'}, 'GSM1683244': {'type': 'U87 human glioma cells'}, 'GSM1683243': {'type': 'U87 human glioma cells'}, 'GSM1683242': {'type': 'U87 human glioma cells'}, 'GSM1683241': {'type': 'U87 human glioma cells'}, 'GSM1683240': {'type': 'U87 human glioma cells'}, 'GSM1683249': {'type': 'U87 human glioma cells'}, 'GSM1683248': {'type': 'U87 human glioma cells'}, 'GSM2451353': {'compartment': 'Stroma', 'id': 'CUMC_054', 'library': 'NuGEN'}, 'GSM2451352': {'compartment': 'Epithelium', 'id': 'CUMC_054', 'library': 'NuGEN'}, 'GSM1602268': {'line': 'P1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient NDUFS2)', 'agent': 'DMSO'}, 'GSM1602269': {'line': 'P1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient NDUFS2)', 'agent': 'resveratrol'}, 'GSM2451357': {'compartment': 'Stroma', 'id': 'CUMC_056', 'library': 'NuGEN'}, 'GSM2451356': {'compartment': 'Epithelium', 'id': 'CUMC_056', 'library': 'NuGEN'}, 'GSM2451355': {'compartment': 'Stroma', 'id': 'CUMC_055', 'library': 'NuGEN'}, 'GSM2451354': {'compartment': 'Epithelium', 'id': 'CUMC_055', 'library': 'NuGEN'}, 'GSM1602262': {'line': 'C2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'resveratrol'}, 'GSM1602263': {'line': 'P1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient NDUFS2)', 'agent': 'AICAR'}, 'GSM1602260': {'line': 'C2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'DMSO'}, 'GSM1602261': {'line': 'C2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'resveratrol'}, 'GSM1602266': {'line': 'P1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient NDUFS2)', 'agent': 'chloramphenicol'}, 'GSM1602267': {'line': 'P1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient NDUFS2)', 'agent': 'DMSO'}, 'GSM1602264': {'line': 'P1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient NDUFS2)', 'agent': 'AICAR'}, 'GSM1602265': {'line': 'P1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient NDUFS2)', 'agent': 'chloramphenicol'}, 'GSM2572314': {'antibody': 'H3K27ac HistonePathâ\\x84¢ Kit (Active Motif)', 'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'UVR'}, 'GSM1425780': {'grade': 'Rhabdoid', 'pretreatment': 'None', 'type': 'R', 'Stage': 'IV'}, 'GSM1425781': {'grade': 'Epithelioid', 'pretreatment': 'None', 'type': 'E', 'Stage': 'IV'}, 'GSM1304777': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'proerythroblast', 'methods': 'GPA low, Band3 negative and alpha 4 integrin high'}, 'GSM2947889': {'line': 'NBL-WN', 'treatment': 'Treatment: 48 hours Normoxia'}, 'GSM1304779': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'proerythroblast', 'methods': 'GPA low, Band3 negative and alpha 4 integrin high'}, 'GSM1304778': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'proerythroblast', 'methods': 'GPA low, Band3 negative and alpha 4 integrin high'}, 'GSM2041392': {'treatment': '10 uM 1C8'}, 'GSM2041393': {'treatment': '1 uM 1C8'}, 'GSM2041390': {'treatment': '10 uM 1C8'}, 'GSM2041391': {'treatment': '10 uM 1C8'}, 'GSM2041396': {'treatment': '1 uM 1C8'}, 'GSM2041397': {'treatment': '20 uM 1C8'}, 'GSM2041394': {'treatment': '1 uM 1C8'}, 'GSM2041395': {'treatment': '1 uM 1C8'}, 'GSM2041398': {'treatment': '20 uM 1C8'}, 'GSM2041399': {'treatment': '20 uM 1C8'}, 'GSM1202575': {'line': 'MDA-LM2', 'rep': '3', 'point': '2'}, 'GSM2616485': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2898817': {'line': 'NA19128', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1400968': {'line': 'MCF7'}, 'GSM1920908': {'tissue': 'human fetal kidney', 'time': 'Growth week 17 and 5 days'}, 'GSM1920909': {'tissue': 'human fetal kidney', 'time': 'Growth week 17 and 5 days'}, 'GSM1920906': {'tissue': 'human fetal kidney', 'time': 'Growth week 17 and 2 days'}, 'GSM1920907': {'tissue': 'human fetal kidney', 'time': 'Growth week 17 and 2 days'}, 'GSM1920904': {'tissue': 'human fetal kidney', 'time': 'Growth week 17 and 0 days'}, 'GSM1920905': {'tissue': 'human fetal kidney', 'time': 'Growth week 17 and 0 days'}, 'GSM1568713': {'variant': 'DIS3D487N'}, 'GSM1568712': {'variant': 'DIS3D146N D487N + shRNA'}, 'GSM1568711': {'variant': 'DIS3D487N + shRNA'}, 'GSM1568710': {'variant': 'DIS3D146N + shRNA'}, 'GSM1341729': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341728': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1930378': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1930379': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1341721': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341720': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341723': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341722': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341725': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341724': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341727': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341726': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM2898818': {'line': 'NA19130', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2049149': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049148': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049147': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049146': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049145': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049144': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049143': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049142': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049141': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049140': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM909575': {'with': 'pre-miR-125b', 'line': 'NB4', 'type': 'promyelocytic leukemia'}, 'GSM2870923': {'line': 'HMLE', 'type': 'Immortalized breast epithelial cells', 'treatment': 'Non-specific shRNA treated'}, 'GSM2870925': {'line': 'HMLE', 'type': 'Immortalized breast epithelial cells', 'treatment': 'hnRNPF shRNA treated'}, 'GSM2870924': {'line': 'HMLE', 'type': 'Immortalized breast epithelial cells', 'treatment': 'Non-specific shRNA treated'}, 'GSM2870926': {'line': 'HMLE', 'type': 'Immortalized breast epithelial cells', 'treatment': 'hnRNPF shRNA treated'}, 'GSM1228226': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM2632459': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632458': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1228227': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM2632455': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM3189189': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C48', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.752359', 'percentaligned': '0.893439819', 'Sex': 'M', 'nl63': 'No', 'libcounts': '0.920041'}, 'GSM2632457': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632456': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632451': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1228224': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM2632453': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632452': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2536195': {'age': '67', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle4 treatment', 'Sex': 'female'}, 'GSM2536194': {'age': '67', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle3 treatment', 'Sex': 'female'}, 'GSM1228225': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM2536191': {'age': '71', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle4 treatment', 'Sex': 'female'}, 'GSM2536190': {'age': '71', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle3 treatment', 'Sex': 'female'}, 'GSM2536193': {'age': '67', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle1 treatment', 'Sex': 'female'}, 'GSM2536192': {'age': '67', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Pre-treatment', 'Sex': 'female'}, 'GSM1228222': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228223': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM2492514': {'status': 'Negative', 'tissue': 'lung', 'type': 'CD8'}, 'GSM2492515': {'status': 'Positive', 'tissue': 'lung', 'type': 'CD8'}, 'GSM2492516': {'status': 'Negative', 'tissue': 'spleen', 'type': 'CD4'}, 'GSM2492517': {'status': 'Positive', 'tissue': 'spleen', 'type': 'CD4'}, 'GSM3208701': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208700': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208703': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208702': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1228221': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM2492518': {'status': 'Negative', 'tissue': 'spleen', 'type': 'CD8'}, 'GSM2492519': {'status': 'Positive', 'tissue': 'spleen', 'type': 'CD8'}, 'GSM3189186': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B69', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.647382', 'percentaligned': '0.959342884', 'Sex': 'M', 'nl63': 'No', 'libcounts': '16.331373', 'original': 'Control'}, 'GSM1915582': {'donorid': '2596', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915583': {'donorid': '2596', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915580': {'donorid': '1022', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915581': {'donorid': '1022', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915586': {'donorid': '2596', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915587': {'donorid': '2596', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915584': {'donorid': '2596', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915585': {'donorid': '2596', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915588': {'donorid': '5483', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915589': {'donorid': '5483', 'type': 'primary human blood cell from fresh sample'}, 'GSM2629507': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 14 of differentiation'}, 'GSM2629506': {'type': 'H9 cells', 'treatment': 'untreated', 'time': 'day 14 of differentiation'}, 'GSM2186819': {'stimulation': 'interferon gamma', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2665706': {'age': 'Day 100', 'well': 'D9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665701': {'age': 'Day 100', 'well': 'E3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665700': {'age': 'Day 100', 'well': 'H3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665703': {'age': 'Day 100', 'well': 'G4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665702': {'age': 'Day 100', 'well': 'C10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2186813': {'stimulation': 'interferon gamma', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186812': {'stimulation': 'TLR2/1 ligand', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186811': {'stimulation': 'media alone', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186810': {'stimulation': 'interferon gamma', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186817': {'stimulation': 'media alone', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186816': {'stimulation': 'interferon gamma', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186815': {'stimulation': 'TLR2/1 ligand', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186814': {'stimulation': 'media alone', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2241325': {'subtype': 'Chromatin RNA', 'line': 'HeLa', 'variation': 'siLUC control for EXOC3 KD, Chromatin'}, 'GSM2241324': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa', 'variation': 'EXOC3 KD, Nucleoplasm'}, 'GSM2143669': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143668': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM991168': {'line': 'Normal'}, 'GSM991169': {'line': '0.5% malignant'}, 'GSM2241323': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa', 'variation': 'siLUC control for EXOC3 KD, Nucleoplasm'}, 'GSM2241322': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'EXOC3 KD'}, 'GSM2143663': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143662': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143661': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143660': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143667': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143666': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143665': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143664': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2085707': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM1273491': {'type': 'human aortic endothelial cells'}, 'GSM1273490': {'type': 'human aortic endothelial cells'}, 'GSM2141289': {'individual': 'AF59', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1273492': {'line': 'BT-474', 'state': 'breast cancer'}, 'GSM1273495': {'line': 'MCF7', 'state': 'breast cancer'}, 'GSM1273494': {'line': 'BT-20', 'state': 'breast cancer'}, 'GSM1273497': {'line': 'MDA-MB-468', 'state': 'breast cancer'}, 'GSM1273496': {'line': 'MDA-MB-231', 'state': 'breast cancer'}, 'GSM1273499': {'line': 'ZR-75-1', 'state': 'breast cancer'}, 'GSM1273498': {'line': 'T47D', 'state': 'breast cancer'}, 'GSM2141281': {'individual': 'AF53', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141280': {'individual': 'AF47', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141287': {'individual': 'AF59', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141286': {'individual': 'AF57', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141285': {'individual': 'AF57', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141284': {'individual': 'AF57', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2309460': {'number': 'Exp 3', 'time': '18 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2105123': {'gender': 'Female', 'age': '20 Year old', 'batch': '1L', 'condition': 'Trisomic'}, 'GSM2105120': {'gender': 'Female', 'age': '20 Year old', 'batch': '1L', 'condition': 'Trisomic'}, 'GSM2287590': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287591': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287592': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287593': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287594': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287595': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287596': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287597': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287598': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287599': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2303371': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303370': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303377': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303376': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303375': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303374': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2409693': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409692': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409691': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409690': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409697': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409696': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409695': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409694': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409699': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409698': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM1880778': {'preparation': '5.14.2014', 'gender': 'female', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM1880779': {'preparation': '5.14.2014', 'gender': 'female', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM2519390': {'with': 'none (non-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2458811': {'line': 'HT-29-MTX', 'tissue': 'Intestinal epithelium', 'disease': 'Colorectal carcinoma', 'treatment': 'untreated'}, 'GSM2458810': {'line': 'HT-29-MTX', 'tissue': 'Intestinal epithelium', 'disease': 'Colorectal carcinoma', 'treatment': 'untreated'}, 'GSM1880774': {'preparation': '5.14.2014', 'gender': 'female', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM1880775': {'preparation': '5.14.2014', 'gender': 'female', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM1880776': {'preparation': '5.14.2014', 'gender': 'female', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM1880777': {'preparation': '5.14.2014', 'gender': 'female', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM1122306': {'target': 'RUNX1', 'company': 'Abcam', 'number': 'ab23980', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122307': {'target': 'RNAPII', 'company': 'Diagenode', 'number': '8WG16', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM2028924': {'concentration': '10nM', 'treatment': 'TCDD'}, 'GSM4008566': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM2028925': {'concentration': '10nM', 'treatment': 'TCDD'}, 'GSM1122305': {'target': 'MYH11', 'company': 'Diagenode', 'number': 'A1379', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122303': {'target': 'CBFB', 'company': 'Diagenode', 'number': 'A1329', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1896179': {'individual': 'EU20', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896178': {'individual': 'EU20', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896171': {'individual': 'EU16', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896170': {'individual': 'EU14', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896173': {'individual': 'EU16', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896172': {'individual': 'EU16', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896175': {'individual': 'EU186', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896174': {'individual': 'EU186', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896177': {'individual': 'EU20', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896176': {'individual': 'EU186', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM4008569': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM1896124': {'individual': 'AF45', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2277221': {'type': 'human coronary artery smooth muscle cells (HCASMC)', 'variation': 'control'}, 'GSM2309582': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Rectus femoris muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309583': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309580': {'source': 'biopsy', 'identifier': 'D', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309581': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Quadriceps muscle', 'classification': 'Duchenne muscular dystrophy'}, 'GSM2309586': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM2309587': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM2309584': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Soleus muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309585': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM2479816': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479817': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2309588': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM2309589': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM2479812': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479813': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479810': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479811': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2153419': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153418': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153415': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153414': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153417': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153416': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153411': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153410': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153413': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153412': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1896123': {'individual': 'AF45', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2533804': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533805': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533806': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533807': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1856009': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856008': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM2533802': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533803': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1856005': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (vector control)'}, 'GSM1856004': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (vector control)'}, 'GSM1856007': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1856006': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1856001': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856000': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1856003': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (vector control)'}, 'GSM1856002': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM2392191': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392190': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392193': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392192': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392195': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392194': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392197': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392196': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2229990': {'type': 'hTert-immortalized microvascular endothelial cells', 'infection': 'mock', 'passage': '60 to 70'}, 'GSM2229991': {'type': 'hTert-immortalized microvascular endothelial cells', 'infection': 'mock', 'passage': '60 to 70'}, 'GSM2229992': {'type': 'hTert-immortalized microvascular endothelial cells', 'infection': 'mock', 'passage': '60 to 70'}, 'GSM2229993': {'type': 'hTert-immortalized microvascular endothelial cells', 'infection': 'KSHV', 'passage': '60 to 70'}, 'GSM2229994': {'type': 'hTert-immortalized microvascular endothelial cells', 'infection': 'KSHV', 'passage': '60 to 70'}, 'GSM2229995': {'type': 'hTert-immortalized microvascular endothelial cells', 'infection': 'KSHV', 'passage': '60 to 70'}, 'GSM2390820': {'disease': 'Healthy Control'}, 'GSM1957091': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957097': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM597207': {'subtype': 'Adjacent normal prostate', 'sampleID': 'HF-23732', 'organ': 'Prostate'}, 'GSM597206': {'subtype': 'Prostate adenocarcinoma', 'sampleID': 'HF-24126-(1)', 'organ': 'Prostate'}, 'GSM2720357': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM1620482': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620483': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620480': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620481': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620486': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620487': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620484': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620485': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2210565': {'line': 'A375', 'treatment': 'vemurafenib'}, 'GSM2210564': {'line': 'A375', 'treatment': 'vemurafenib'}, 'GSM1620488': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620489': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2575107': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '06h'}, 'GSM2575106': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2210563': {'line': 'A375', 'treatment': 'vemurafenib'}, 'GSM2575104': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '03h'}, 'GSM2324172': {'group': 'BCG', 'type': 'PBMC', 'day': '14', 'subjectid': '6822'}, 'GSM2324173': {'group': 'BCG', 'type': 'PBMC', 'day': '28', 'subjectid': '6822'}, 'GSM2324170': {'group': 'BCG', 'type': 'PBMC', 'day': '84', 'subjectid': '6017'}, 'GSM2324171': {'group': 'BCG', 'type': 'PBMC', 'day': '0', 'subjectid': '6822'}, 'GSM2324176': {'group': 'BCG', 'type': 'PBMC', 'day': '0', 'subjectid': '7221'}, 'GSM2324177': {'group': 'BCG', 'type': 'PBMC', 'day': '14', 'subjectid': '7221'}, 'GSM2324174': {'group': 'BCG', 'type': 'PBMC', 'day': '56', 'subjectid': '6822'}, 'GSM2324175': {'group': 'BCG', 'type': 'PBMC', 'day': '84', 'subjectid': '6822'}, 'GSM2324178': {'group': 'BCG', 'type': 'PBMC', 'day': '28', 'subjectid': '7221'}, 'GSM2324179': {'group': 'BCG', 'type': 'PBMC', 'day': '56', 'subjectid': '7221'}, 'GSM1648882': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CLUE_4_12', 'biopsy': 'n/a', 'years': '3.41', 'volume': '1206', 'type': 'iPSCs', 'id': 'CLUE'}, 'GSM2233283': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2099968': {'rin': '10', 'Sex': 'Female', 'sspg': '147', 'age': '61', 'bmi': '25.8', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': 'L2110088', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '54', 'method': 'Life-Tech GITC'}, 'GSM2099969': {'rin': '10', 'Sex': 'Female', 'sspg': '147', 'age': '61', 'bmi': '25.8', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': 'L2110088', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '54', 'method': 'Life-Tech GITC'}, 'GSM1648883': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'COVE_3_6', 'biopsy': 'n/a', 'years': '2.43', 'volume': '1225', 'type': 'iPSCs', 'id': 'COVE'}, 'GSM2150339': {'treatment': 'DACSB'}, 'GSM2150338': {'treatment': 'SAHA'}, 'GSM2099960': {'rin': '9.6', 'Sex': 'Male', 'sspg': '180', 'age': '62', 'bmi': '31.7', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '18', 'method': 'Life-Tech GITC'}, 'GSM2099961': {'rin': '9.5', 'Sex': 'Male', 'sspg': '180', 'age': '62', 'bmi': '31.7', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '18', 'method': 'Life-Tech GITC'}, 'GSM2099962': {'rin': '9.6', 'Sex': 'Male', 'sspg': '142', 'age': '53', 'bmi': '32', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '23', 'method': 'Life-Tech GITC'}, 'GSM2099963': {'rin': '10', 'Sex': 'Male', 'sspg': '142', 'age': '53', 'bmi': '32', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '23', 'method': 'Life-Tech GITC'}, 'GSM2099964': {'rin': '10', 'Sex': 'Male', 'sspg': '142', 'age': '53', 'bmi': '32', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '23', 'method': 'Life-Tech GITC'}, 'GSM2099965': {'rin': '10', 'Sex': 'Male', 'sspg': '153', 'age': '54', 'bmi': '26.6', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '24', 'method': 'Life-Tech GITC'}, 'GSM2099966': {'rin': '10', 'Sex': 'Male', 'sspg': '153', 'age': '54', 'bmi': '26.6', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '24', 'method': 'Life-Tech GITC'}, 'GSM2099967': {'rin': '10', 'Sex': 'Male', 'sspg': '153', 'age': '54', 'bmi': '26.6', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '24', 'method': 'Life-Tech GITC'}, 'GSM2233282': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1357458': {'line': 'U2932', 'plasmid': 'pLKO-puro-scramble shRNA (Addgene 1864)'}, 'GSM1357453': {'line': 'U2932', 'plasmid': 'TRCN0000358536/NM_020229.2-844s21c1'}, 'GSM1357454': {'line': 'U2932', 'plasmid': 'TRCN0000358536/NM_020229.2-844s21c1'}, 'GSM1357455': {'line': 'U2932', 'plasmid': 'TRCN0000358536/NM_020229.2-844s21c1'}, 'GSM1357456': {'line': 'U2932', 'plasmid': 'pLKO-puro-scramble shRNA (Addgene 1864)'}, 'GSM1357457': {'line': 'U2932', 'plasmid': 'pLKO-puro-scramble shRNA (Addgene 1864)'}, 'GSM1896128': {'individual': 'AF47', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2233281': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1896129': {'individual': 'AF49', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2233280': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1678798': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM2233287': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2258970': {'status': 'SINV', 'line': 'NoDice 293T'}, 'GSM554098': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 6'}, 'GSM2720359': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM554096': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM554094': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM554092': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 6'}, 'GSM554090': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 6'}, 'GSM1864237': {'with': 'siSMARCA4', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM2802942': {'line': 'hMSC-TERT4', 'stage': 'D3'}, 'GSM1864234': {'with': 'siRAD21', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM2233286': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1864232': {'with': 'siPCAT1', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM2802943': {'line': 'hMSC-TERT4', 'stage': 'D7'}, 'GSM1625968': {'with': 'none (unstimulated)', 'donor': '2', 'type': 'human monocyte derived macrophages'}, 'GSM1856272': {'line': 'HeLa', 'treatment': 'MeOH'}, 'GSM2802941': {'line': 'hMSC-TERT4', 'stage': 'D3'}, 'GSM1856273': {'line': 'HeLa', 'treatment': 'SSA'}, 'GSM2802946': {'line': 'hMSC-TERT4', 'stage': 'D14'}, 'GSM1856270': {'line': 'HeLa', 'treatment': 'MeOH'}, 'GSM2802947': {'line': 'hMSC-TERT4', 'stage': 'D14'}, 'GSM2309915': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '43.01'}, 'GSM2309914': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '43.01'}, 'GSM2309917': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '71.63'}, 'GSM1856271': {'line': 'HeLa', 'treatment': 'SSA'}, 'GSM2309911': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Black or African American', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '65.05'}, 'GSM2309910': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Glom-sclerosis,chr&unspecified', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '55.96'}, 'GSM2309913': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Black or African American', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '65.05'}, 'GSM2309912': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Black or African American', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '65.05'}, 'GSM2802945': {'line': 'hMSC-TERT4', 'stage': 'D7'}, 'GSM2309919': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '71.63'}, 'GSM2309918': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '71.63'}, 'GSM1470030': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'siGATA3, 1hr treatment with 100nM E2'}, 'GSM1470031': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shCTL, 1hr treatment with vehicle control'}, 'GSM1470032': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shCTL, 1hr treatment with 1μM RA'}, 'GSM1470033': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shCTL, 1hr treatment with 100nM E2'}, 'GSM1470034': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shRARs, 1hr treatment with vehicle control'}, 'GSM1470035': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shRARs, 1hr treatment with 1μM RA'}, 'GSM1470036': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shRARs, 1hr treatment with 100nM E2'}, 'GSM1470037': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shCTL, 1hr treatment with vehicle control'}, 'GSM1470038': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shCTL, 1hr treatment with 100nM E2'}, 'GSM1470039': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shAP2g, 1hr treatment with vehicle control'}, 'GSM2802948': {'line': 'hMSC-TERT4', 'stage': 'D14'}, 'GSM2802949': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D0'}, 'GSM1625966': {'type': 'human bone marrow sample'}, 'GSM1625967': {'with': 'none (unstimulated)', 'donor': '1', 'type': 'human monocyte derived macrophages'}, 'GSM1957108': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957324': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1625964': {'type': 'mixed sample of both (1:16)'}, 'GSM1836571': {'expression_construct': 'FLAG-TOE1V173G', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'V173 addback- siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1957100': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957101': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957102': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957103': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957104': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957105': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957106': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957107': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2436743': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2436742': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2436741': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2740955': {'with': 'shBrg1', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM2740952': {'with': 'shBrrm', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1957321': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2740950': {'with': 'shNS', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1535694': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535695': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM2740951': {'with': 'shBrg1', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1535690': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535691': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535692': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535693': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1901960': {'line': 'U2OS', 'antibody': 'none'}, 'GSM1701327': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HOM SNP13 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701329': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HET SNP13/HET SNP8 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701328': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HET SNP13/HET SNP12 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM3377955': {'treatment': 'PBDE'}, 'GSM3377954': {'treatment': 'PBDE'}, 'GSM3377951': {'treatment': 'Control'}, 'GSM3377950': {'treatment': 'Control'}, 'GSM3377953': {'treatment': 'PBDE'}, 'GSM3377952': {'treatment': 'Control'}, 'GSM1363539': {'grade': '0', 'alb': '22.3', 'tb': '35.8', 'individual': 'HCC-C2', 'alt': '78', 'pt': '17', 'hbvdna': '1040000', 'ca199': '72.6', 'hgb': '113', 'method': '0', 'ggt': '64.2', 'cea': '4.79', 'ast': '134', 'rna': 'Yes', 'db': '14.1', 'cirrhosis': '0', 'afp': '5.2', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '55', 'ltx': 'D', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.55'}, 'GSM2194218': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2687359': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1', 'passage': '7'}, 'GSM2194212': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2687353': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': 'Vehicle Control', 'passage': '7'}, 'GSM2194210': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194211': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2687356': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': 'Vehicle Control', 'passage': '7'}, 'GSM2687357': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1', 'passage': '7'}, 'GSM2194214': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2687355': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': 'Vehicle Control', 'passage': '7'}, 'GSM3189084': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C38', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.658685', 'percentaligned': '0.945568', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.642061', 'original': 'Control'}, 'GSM3189085': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '13', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.634355', 'percentaligned': '0.940681', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.19299'}, 'GSM485490': {'line': 'NA19159'}, 'GSM3189087': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C8', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.631774', 'percentaligned': '0.900214', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.847598', 'original': 'Case'}, 'GSM3189080': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.610625', 'percentaligned': '0.952276', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.115723'}, 'GSM485497': {'line': 'NA18852'}, 'GSM3189082': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '32', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.683577', 'percentaligned': '0.894077', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.730932'}, 'GSM3189083': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '31', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.855718', 'percentaligned': '0.896058', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.535324', 'original': 'Control'}, 'GSM485498': {'line': 'NA18855'}, 'GSM485499': {'line': 'NA18870'}, 'GSM3189088': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C8', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.778799', 'percentaligned': '0.956941', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.01087', 'original': 'Case'}, 'GSM3189089': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.873143', 'percentaligned': '0.942427', 'Sex': 'M', 'nl63': 'No', 'libcounts': '2.172476', 'original': 'Control'}, 'GSM2303548': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM2088082': {'status': 'NA', 'ratio': '1.26939509340055', 'age': '59', 'years': '51', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'Sex': 'Female', 'alignments': '76042176', 'alignment': '47025360'}, 'GSM2303549': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACEK420A'}, 'GSM2026056': {'vendor': 'Santa cruz', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'LYL'}, 'GSM2026057': {'vendor': 'Upstate', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'H3K9K14ac'}, 'GSM2026054': {'vendor': 'Santa cruz', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'GATA2'}, 'GSM2026055': {'vendor': 'Santa cruz', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'TAL1'}, 'GSM2026052': {'vendor': 'Santa cruz', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'ERG'}, 'GSM2026053': {'vendor': 'Santa cruz', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'AML1_ETO'}, 'GSM2026051': {'vendor': 'Santa cruz', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'FLI1'}, 'GSM2026058': {'vendor': 'millipore', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'H4K5k8k12k16ac'}, 'GSM2026059': {'vendor': 'Santa cruz', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'P300'}, 'GSM1980166': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980167': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980164': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980165': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980162': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980163': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980160': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980161': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2573749': {'antibody': 'H3K27me3', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573748': {'antibody': 'H3K27ac', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1980168': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980169': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2430378': {'type': 'MS-NAIVE'}, 'GSM2430379': {'type': 'MS-EST'}, 'GSM2776897': {'line': 'SKMEL28', 'type': 'none', 'treatment': 'none'}, 'GSM1581105': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM2430372': {'type': 'Ulcerative colitis'}, 'GSM2430373': {'type': \"Crohn's disease\"}, 'GSM2430374': {'type': 'Irritable bowel syndrome'}, 'GSM2430375': {'type': 'Celiac disease'}, 'GSM2430376': {'type': 'Fibromyalgia syndrome'}, 'GSM2430377': {'type': 'CIS-MS'}, 'GSM2689138': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689139': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689130': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689131': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689132': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689133': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689134': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689135': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689136': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689137': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1833446': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '4 hours'}, 'GSM1833447': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': 'Unactivated'}, 'GSM2578870': {'line': 'HEK 293T', 'type': 'Human epithelial HEK 293T cells'}, 'GSM2578871': {'line': 'HEK 293T', 'type': 'Human epithelial HEK 293T cells'}, 'GSM2578872': {'line': 'HEK 293T', 'type': 'Human epithelial HEK 293T cells'}, 'GSM2486199': {'line': 'U266', 'type': 'Multiple Myeloma cell line', 'condition': 'DMSO-treated'}, 'GSM2328329': {'followup': '8.01', 'grade': 'III', 'age': '55', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328328': {'followup': '8.01', 'grade': 'III', 'age': '55', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328323': {'followup': '8.03', 'grade': 'III', 'age': '54', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328322': {'followup': '8.03', 'grade': 'III', 'age': '54', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328321': {'followup': '0.36', 'grade': 'II', 'age': '64', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328320': {'followup': '0.36', 'grade': 'II', 'age': '64', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IA'}, 'GSM2328327': {'followup': '8.08', 'grade': 'II', 'age': '64', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328326': {'followup': '8.08', 'grade': 'II', 'age': '64', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IA'}, 'GSM2328325': {'followup': '8.08', 'grade': 'II', 'age': '74', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328324': {'followup': '8.08', 'grade': 'II', 'age': '74', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IB'}, 'GSM2486198': {'line': 'OPM2', 'type': 'Multiple Myeloma cell line', 'condition': 'CMLD010509-treated 50nM 6 hours'}, 'GSM2595286': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'B12', 'unit': '5', '280': '1.76', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '2', 'condition': 'Vehicle Control'}, 'GSM2595287': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'C9', 'unit': '6', '280': '1.78', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM1901147': {'type': 'normal liver', 'id': '9128'}, 'GSM1901149': {'type': 'normal liver', 'id': '9194'}, 'GSM1901148': {'type': 'hepatocellular cancer', 'id': '9128'}, 'GSM2595288': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'C10', 'unit': '6', '280': '1.73', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '2', 'condition': 'Vehicle Control'}, 'GSM2456016': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1971012': {'line': 'HCT116', 'type': 'colon cancer cells', 'agent': 'Control'}, 'GSM1971013': {'line': 'HCT116', 'type': 'colon cancer cells', 'agent': 'H2O2'}, 'GSM1830018': {'line': 'DU145', 'passages': 'five to six', 'type': 'prostate cancer'}, 'GSM1830019': {'line': 'DU145', 'passages': 'five to six', 'type': 'prostate cancer'}, 'GSM1830016': {'line': 'DU145', 'passages': 'five to six', 'type': 'prostate cancer'}, 'GSM1830017': {'line': 'DU145', 'passages': 'five to six', 'type': 'prostate cancer'}, 'GSM1155155': {'tnm': 'T2N0M0', 'gender': 'M', 'age': '62', 'tissue': 'renal pelvis'}, 'GSM1316405': {'line': 'Kasumi-1', 'genotype': 'siRE', 'treatment': 'transfection with RUNX1-ETO siRNA'}, 'GSM1155154': {'tnm': 'T1N0M0', 'gender': 'M', 'age': '51', 'tissue': 'renal pelvis'}, 'GSM2243657': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'B7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243656': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F12', 'cluster': '1', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243655': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243654': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243653': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243652': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243651': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243650': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243659': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243658': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1273655': {'antibody': 'H3K27ac (abcam, ab4729)', 'type': 'hESC derived definitive endoderm cells'}, 'GSM2666159': {'age': 'Day 130', 'well': 'C2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666158': {'age': 'Day 130', 'well': 'C9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666155': {'age': 'Day 130', 'well': 'D5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666154': {'age': 'Day 130', 'well': 'B9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666157': {'age': 'Day 130', 'well': 'H9', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666156': {'age': 'Day 130', 'well': 'B1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666151': {'age': 'Day 130', 'well': 'G11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666150': {'age': 'Day 130', 'well': 'A9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000288'}, 'GSM2666153': {'age': 'Day 130', 'well': 'C6', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666152': {'age': 'Day 130', 'well': 'A2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2371233': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371232': {'media': 'Neurobasal-A plus EGE, FGF, 2mM L-glutamine, B27, and N2'}, 'GSM2371231': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371230': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371237': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371236': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371235': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371234': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2486196': {'line': 'MM1S', 'type': 'Multiple Myeloma cell line', 'condition': 'CMLD010509-treated 50nM 6 hours'}, 'GSM2371239': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371238': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM1816591': {'transfection': 'dCas9-VPR and a gRNA of length 16nt targeting HBG1/2', 'line': 'HEK293T'}, 'GSM2108051': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM1816590': {'transfection': 'dCas9-VPR and a gRNA of length 16nt targeting HBG1/2', 'line': 'HEK293T'}, 'GSM2108050': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2108053': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2040728': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM2040729': {'line': 'GM18505', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM1576425': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human myeloid DC', 'time': '3 d'}, 'GSM2630158': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405842'}, 'GSM2040720': {'line': 'ID00015', 'type': 'lymphoblastoid cell', 'age': '57', 'genotype': 'wild type'}, 'GSM2108055': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2040722': {'line': 'GM06990', 'type': 'lymphoblastoid cell', 'age': '41', 'genotype': 'wild type'}, 'GSM2040723': {'line': 'GM07939', 'type': 'lymphoblastoid cell', 'age': '3', 'genotype': '22q11del'}, 'GSM2040724': {'line': 'GM10847', 'type': 'lymphoblastoid cell', 'age': '38', 'genotype': 'wild type'}, 'GSM2040725': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040726': {'line': 'GM12892', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040727': {'line': 'GM17938', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': '22q11del'}, 'GSM1576420': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human B cells', 'time': '1 d'}, 'GSM2108056': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2630152': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM1155153': {'tnm': 'T1N0M0', 'gender': 'M', 'age': '51', 'tissue': 'renal pelvis'}, 'GSM2170504': {'stage': 'Definitive endoderm 1'}, 'GSM2170505': {'stage': 'Definitive endoderm 1'}, 'GSM2170506': {'stage': 'Definitive endoderm 1'}, 'GSM2170507': {'stage': 'Definitive endoderm 1'}, 'GSM2170500': {'stage': 'Definitive endoderm 1'}, 'GSM2170501': {'stage': 'Definitive endoderm 1'}, 'GSM2170502': {'stage': 'Definitive endoderm 1'}, 'GSM2170503': {'stage': 'Definitive endoderm 1'}, 'GSM2348325': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348324': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348327': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348326': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2170508': {'stage': 'Definitive endoderm 1'}, 'GSM2170509': {'stage': 'Endothelial cells'}, 'GSM1919388': {'status': 'Treatment-naïve', 'patient': 'Patient 20', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1119581': {'region': 'Hippocampus', 'tissue': 'Brain', 'stage': 'Adult'}, 'GSM1974536': {'fetus': '91 days', 'stage': 'progeniotor cells'}, 'GSM1974537': {'fetus': '103 days', 'stage': 'progeniotor cells'}, 'GSM1974538': {'fetus': '110 days', 'stage': 'progeniotor cells'}, 'GSM1974539': {'fetus': '114 days', 'stage': 'progeniotor cells'}, 'GSM2172328': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172329': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2047575': {'well': 'E11', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1542164': {'subpopulation': 'CD62L+CX3CR1+', 'type': 'CD8+ T cells'}, 'GSM1542165': {'subpopulation': 'CD62L+CX3CR1-', 'type': 'CD8+ T cells'}, 'GSM1542166': {'subpopulation': 'CD62L-CX3CR1+', 'type': 'CD8+ T cells'}, 'GSM1542167': {'subpopulation': 'CD62L-CX3CR1-', 'type': 'CD8+ T cells'}, 'GSM2840478': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840479': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM1542162': {'subpopulation': 'CD62L-CX3CR1-', 'type': 'CD8+ T cells'}, 'GSM1542163': {'subpopulation': 'Naive', 'type': 'CD8+ T cells'}, 'GSM2840474': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840475': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840476': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840477': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840470': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840471': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840472': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840473': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2391882': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391883': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391880': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM1082309': {'line': 'Kasumi-1 cells', 'tissue': 'Hematopoietic', 'antibody': 'anti-E2A (Santa Cruz; sc-763)', 'stage': 'Acute myeloid leukemia'}, 'GSM1082308': {'line': 'Kasumi-1 cells', 'tissue': 'Hematopoietic', 'antibody': 'anti-HEB (Santa Cruz; sc-357)', 'stage': 'Acute myeloid leukemia'}, 'GSM2453978': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2649776': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1082307': {'line': 'Kasumi-1 cells', 'tissue': 'Hematopoietic', 'antibody': 'none', 'stage': 'Acute myeloid leukemia'}, 'GSM1082306': {'line': 'Kasumi-1 cells', 'tissue': 'Hematopoietic', 'antibody': 'anti-ETO (home made, antigen-purified)', 'stage': 'Acute myeloid leukemia'}, 'GSM2391887': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391884': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2747366': {'line': 'NHDF Line 3', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM2391885': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2047579': {'well': 'F03', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2361994': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2391888': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2316494': {'culture': 'D12'}, 'GSM2316495': {'culture': 'D19'}, 'GSM2316496': {'culture': 'D26'}, 'GSM2649779': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2316490': {'culture': 'D6'}, 'GSM2316491': {'culture': 'D6'}, 'GSM2316492': {'culture': 'D9'}, 'GSM2316493': {'culture': 'D9'}, 'GSM2809213': {'status': 'Autoimmune hepatitis', 'tissue': 'Liver'}, 'GSM2809212': {'status': 'Progressive familial intrahepatic cholestasis type 2, PFIC2', 'tissue': 'Liver'}, 'GSM2809211': {'status': 'Autoimmune hepatitis', 'tissue': 'Liver'}, 'GSM2809210': {'status': 'patient with gallbladder cancer', 'tissue': 'Liver'}, 'GSM2316498': {'culture': 'D54'}, 'GSM2316499': {'culture': 'D54'}, 'GSM2809214': {'status': 'Autoimmune hepatitis with sclerosing cholangitis', 'tissue': 'Liver'}, 'GSM3190882': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.354655'}, 'GSM3190883': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.651202'}, 'GSM3190880': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A51', '1': 'Yes', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.523312'}, 'GSM3190881': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.30281'}, 'GSM3190886': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.400323'}, 'GSM3190887': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.22812'}, 'GSM3190884': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.323039'}, 'GSM3190885': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.65195'}, 'GSM1648831': {'group': 'ASD', 'gender': 'Male', 'clone': 'ACAI_3_2', 'biopsy': '13 (Fluent Speech - Child/Adolescent)', 'years': '4.5', 'volume': '1458', 'type': 'iPSC-derived neural progenitors', 'id': 'ACAI'}, 'GSM3190888': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.598219'}, 'GSM3190889': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.51455'}, 'GSM1716729': {'subpopulation': 'CA125 positive', 'storage': 'cryopreserved primary cells', 'state': 'ascites'}, 'GSM1716728': {'subpopulation': 'CA125 negative', 'storage': 'cryopreserved primary cells', 'state': 'ascites'}, 'GSM2373497': {'line': 'BC3'}, 'GSM1648830': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_8', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSC-derived neural progenitors', 'id': 'ABLE'}, 'GSM2747368': {'line': 'NHDF Line 3', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM2462898': {'line': 'U-87 MG', 'treatment': 'EPZ015666', 'concentration': '10 uM', 'time': '72h'}, 'GSM2462899': {'line': 'U-87 MG', 'treatment': 'EPZ015666', 'concentration': '10 uM', 'time': '72h'}, 'GSM2462896': {'line': 'U-87 MG', 'treatment': 'DMSO', 'concentration': '10 ul per 10 ml media', 'time': '72h'}, 'GSM2462897': {'line': 'U-87 MG', 'treatment': 'DMSO', 'concentration': '10 ul per 10 ml media', 'time': '72h'}, 'GSM2747369': {'line': 'NHDF Line 4', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM485500': {'line': 'NA18510'}, 'GSM2462895': {'line': 'U-87 MG', 'treatment': 'DMSO', 'concentration': '10 ul per 10 ml media', 'time': '72h'}, 'GSM485501': {'line': 'NA19200'}, 'GSM1648839': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_19', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSC-derived neural progenitors', 'id': 'AHOY'}, 'GSM3189114': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.63799', 'percentaligned': '0.960379954', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.930535', 'original': 'Control'}, 'GSM1648838': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_13', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSC-derived neural progenitors', 'id': 'AHOY'}, 'GSM3189115': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C6, RV-C17', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.9066', 'percentaligned': '0.932198066', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.286306', 'original': 'Case'}, 'GSM485504': {'line': 'NA18856'}, 'GSM3189113': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '13', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.639155', 'percentaligned': '0.923834307', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.124668', 'original': 'Control'}, 'GSM485506': {'line': 'NA18502'}, 'GSM485507': {'line': 'NA18855'}, 'GSM2859872': {'type': 'Endothelial cells', 'treatment': 'Normoxia 20% O2, 5% CO2 humidified atmosphere', 'passage': 'Passage 2'}, 'GSM2091091': {'line': 'LNCaP'}, 'GSM2091092': {'line': 'LNCaP'}, 'GSM2859873': {'type': 'Endothelial cells', 'treatment': 'Normoxia 20% O2, 5% CO2 humidified atmosphere', 'passage': 'Passage 2'}, 'GSM1234117': {'replicate': '1', 'line': '19239', 'antibody': 'RNA-seq'}, 'GSM2311914': {'culture': '12', 'line': 'DCX+'}, 'GSM2311915': {'culture': '12', 'line': 'DCX+'}, 'GSM2311916': {'culture': '12', 'line': 'DCX+'}, 'GSM2311917': {'culture': '12', 'line': 'DCX+'}, 'GSM2311910': {'culture': '12', 'line': 'DCX+'}, 'GSM2311911': {'culture': '12', 'line': 'DCX+'}, 'GSM2311912': {'culture': '12', 'line': 'DCX+'}, 'GSM2311913': {'culture': '12', 'line': 'DCX+'}, 'GSM2287529': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1234111': {'replicate': '2', 'line': '19239', 'antibody': 'H3K4me1'}, 'GSM2311918': {'culture': '12', 'line': 'DCX+'}, 'GSM2311919': {'culture': '12', 'line': 'DCX+'}, 'GSM1234110': {'replicate': '1.1', 'line': '19239', 'antibody': 'H3K4me1'}, 'GSM1234113': {'replicate': '1.1', 'line': '19239', 'antibody': 'H3K4me3'}, 'GSM2172034': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2759020': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'N/A', 'transfection': 'U1'}, 'GSM3189119': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.621287', 'percentaligned': '0.948966439', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.734107', 'original': 'Control'}, 'GSM2759021': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'Pol II N-terminus (Santa Cruz Biotechnology sc-899x)', 'transfection': 'Control'}, 'GSM2563692': {'gender': 'female', 'line': 'H9', 'type': 'human embryonic stem cells', 'days': 'before differentiation, day 0'}, 'GSM2563693': {'gender': 'female', 'line': 'H9', 'type': 'human embryonic stem cells', 'days': 'before differentiation, day 0'}, 'GSM2563694': {'gender': 'female', 'line': 'H9', 'type': 'ES-derived spontaneous differentiation', 'days': 'after differentiation, day 11'}, 'GSM2759022': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'Pol II N-terminus (Santa Cruz Biotechnology sc-899x)', 'transfection': 'U1'}, 'GSM2563696': {'gender': 'female', 'line': 'HSF6', 'type': 'ES-derived human follicle-like cells', 'days': 'after differentiation, day 11'}, 'GSM2563697': {'gender': 'female', 'line': 'H9', 'type': 'ES-derived human follicle-like cells', 'days': 'after differentiation, day 11'}, 'GSM2759023': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'Normal mouse IgG (Santa Cruz Biotechnology sc-2025)', 'transfection': 'Control'}, 'GSM952576': {'line': 'HCCLM3', 'type': 'Hepatocellular Carcinoma', 'tropism': 'higher metastasis ability specific to lung'}, 'GSM952577': {'line': 'HCCLM3', 'type': 'Hepatocellular Carcinoma', 'tropism': 'dual metastasis ability to lung and celiac lymph node'}, 'GSM952575': {'line': 'HCCLM3', 'type': 'Hepatocellular Carcinoma', 'tropism': 'low metastasis ability'}, 'GSM2458996': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '15.00'}, 'GSM2458997': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '16.75'}, 'GSM2458994': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.17'}, 'GSM2458995': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.08'}, 'GSM2458992': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.42'}, 'GSM2458993': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '6.58'}, 'GSM2458990': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.25'}, 'GSM2458991': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '6.25'}, 'GSM2458998': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.92'}, 'GSM2458999': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.00'}, 'GSM2085651': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1480368': {'vendor': 'Diagenode', 'with': '10ng/ml TNFα for 90min', 'type': 'SGBS adipocyte D10', 'antibody': 'RNAPII'}, 'GSM2671300': {'line': 'MCF7', 'antibody': 'Abcam ab4729', 'passage': 'between 4-14 for all experiments'}, 'GSM2176285': {'replicate': '1', 'area': 'periphery'}, 'GSM2100943': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '32'}, 'GSM2100942': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3021'}, 'GSM2100941': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'after bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3020'}, 'GSM1663101': {'antibody': 'N/A', 'treatment': 'No DOX', 'integration': 'chr8'}, 'GSM1663106': {'antibody': 'none', 'treatment': '5day DOX', 'integration': 'chr8'}, 'GSM1663107': {'antibody': 'H3K27ac (Active Motif 39133)', 'treatment': 'No DOX', 'integration': 'chr8'}, 'GSM2100945': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '35'}, 'GSM2100944': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '35'}, 'GSM1663108': {'antibody': 'H3K27ac (Active Motif 39133)', 'treatment': '5day DOX', 'integration': 'chr8'}, 'GSM2100948': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch4', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '5/8/2014', 'id': '5a'}, 'GSM2306958': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306959': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306950': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306951': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306952': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306953': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306954': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306955': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306956': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306957': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM1892062': {'adaptor': 'AGATCGGAAGAGCGGTTCAGCAGGAATGCCGAGACCGATCTCGTATGCCGTCTTCTGCTTG', 'antibody': 'anti-FLAG M2 magnetic beads (Sigma Aldrich, catalog# M8823)', 'line': 'HEK293T', 'barcode': 'NNNCCGGNN', 'protocol': 'transiently transfected with FLAG-hRRP6 (wild type)'}, 'GSM1892061': {'adaptor': 'AGATCGGAAGAGCGGTTCAGCAGGAATGCCGAGACCGATCTCGTATGCCGTCTTCTGCTTG', 'antibody': 'anti-FLAG M2 magnetic beads (Sigma Aldrich, catalog# M8823)', 'line': 'HEK293T', 'barcode': 'NNNCCGGNN', 'protocol': 'transiently transfected with FLAG-hRRP6 (wild type)'}, 'GSM1150569': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5441', 'number': '4'}, 'GSM1150568': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5440', 'number': '3'}, 'GSM1150563': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5427', 'number': '23'}, 'GSM1150562': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5426', 'number': '23'}, 'GSM1150561': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5425', 'number': '1'}, 'GSM1150560': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5424', 'number': '1'}, 'GSM1150567': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5439', 'number': '3'}, 'GSM1150566': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5437', 'number': '3'}, 'GSM1150565': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5431', 'number': '2'}, 'GSM1150564': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5430', 'number': '2'}, 'GSM2626963': {'origin': 'pancreas', 'patient_id': '162', 'type': 'primary', 'tumor_id': '136'}, 'GSM2395547': {'expression': 'PCDH7', 'type': 'Immortalised Human Bronchial Epithelial Cells (HBEC-shp53)'}, 'GSM2395546': {'expression': 'PCDH7', 'type': 'Immortalised Human Bronchial Epithelial Cells (HBEC-shp53)'}, 'GSM2395545': {'expression': 'PCDH7', 'type': 'Immortalised Human Bronchial Epithelial Cells (HBEC-shp53)'}, 'GSM2395544': {'expression': 'GPF', 'type': 'Immortalised Human Bronchial Epithelial Cells (HBEC-shp53)'}, 'GSM2395543': {'expression': 'GPF', 'type': 'Immortalised Human Bronchial Epithelial Cells (HBEC-shp53)'}, 'GSM2395542': {'expression': 'GPF', 'type': 'Immortalised Human Bronchial Epithelial Cells (HBEC-shp53)'}, 'GSM2472208': {'type': 'primary tissue'}, 'GSM2472209': {'type': 'primary tissue'}, 'GSM2445668': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'Idela 1uM'}, 'GSM2445669': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'Idela 1uM'}, 'GSM2445666': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'Idela 1uM'}, 'GSM2445667': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'Idela 1uM'}, 'GSM2445664': {'type': 'Macrophage'}, 'GSM2445665': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'Idela 1uM'}, 'GSM2445662': {'type': 'Macrophage'}, 'GSM2472207': {'type': 'primary tissue'}, 'GSM2445660': {'type': 'Macrophage'}, 'GSM2445661': {'type': 'Macrophage'}, 'GSM2720266': {'status': 'differentiated', 'tissue': 'foreskin', 'type': 'keratinocytes'}, 'GSM2720267': {'status': 'differentiated', 'tissue': 'foreskin', 'type': 'keratinocytes'}, 'GSM2720264': {'status': 'differentiated', 'tissue': 'foreskin', 'type': 'keratinocytes'}, 'GSM2720265': {'status': 'differentiated', 'tissue': 'foreskin', 'type': 'keratinocytes'}, 'GSM2720262': {'status': 'differentiated', 'tissue': 'foreskin', 'type': 'keratinocytes'}, 'GSM2720263': {'status': 'differentiated', 'tissue': 'foreskin', 'type': 'keratinocytes'}, 'GSM2362600': {'line': 'HEK293'}, 'GSM2362601': {'line': 'HEK293'}, 'GSM2111062': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 5', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111063': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 5', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111060': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 4', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111061': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 4', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111066': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 5', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111067': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 5', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111064': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 5', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111065': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 5', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111068': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 5', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111069': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 5', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM1620389': {'type': 'U87 human glioma cells'}, 'GSM1620388': {'type': 'U87 human glioma cells'}, 'GSM1620385': {'type': 'U87 human glioma cells'}, 'GSM1620384': {'type': 'U87 human glioma cells'}, 'GSM1620387': {'type': 'U87 human glioma cells'}, 'GSM1620386': {'type': 'U87 human glioma cells'}, 'GSM1620381': {'type': 'U87 human glioma cells'}, 'GSM1620380': {'type': 'U87 human glioma cells'}, 'GSM1620383': {'type': 'U87 human glioma cells'}, 'GSM1620382': {'type': 'U87 human glioma cells'}, 'GSM2309429': {'shRNA': 'shSET1B-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'H3K4me3 (homemade)'}, 'GSM2309428': {'shRNA': 'shCtrl-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'H3K4me3 (homemade)'}, 'GSM2309423': {'shRNA': 'shSET1B-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'H3K4me3 (homemade)'}, 'GSM2309422': {'shRNA': 'shCtrl-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'H3K4me3 (homemade)'}, 'GSM2309425': {'shRNA': 'shSET1B-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'H3K4me1 (homemade)'}, 'GSM2309424': {'shRNA': 'shCtrl-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'H3K4me1 (homemade)'}, 'GSM2309427': {'shRNA': 'shSET1B-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'Input'}, 'GSM2309426': {'shRNA': 'shCtrl-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'Input'}, 'GSM1281759': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '61', 'tissue': 'Serum', 'disease': 'Dilated Cardiomyopathy', 'onset': '2010', 'race': 'African American', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '205'}, 'GSM1281758': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '61', 'tissue': 'Serum', 'disease': 'Dilated Cardiomyopathy', 'onset': '2010', 'race': 'African American', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '205'}, 'GSM1281753': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '61', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2010', 'race': 'African American', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '205'}, 'GSM1281752': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '61', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2010', 'race': 'African American', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '205'}, 'GSM1281751': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '13', 'gender': 'Male', 'age': '44', 'tissue': 'Skeletal Muscle', 'disease': 'None', 'onset': '2008', 'race': 'African American', 'nyha': 'III-IV', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281750': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '13', 'gender': 'Male', 'age': '44', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'African American', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281757': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2010', 'race': 'African American', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '205'}, 'GSM1281756': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2010', 'race': 'African American', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '205'}, 'GSM1281755': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2010', 'race': 'African American', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '205'}, 'GSM1281754': {'status': '3 months LVAD support', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2010', 'race': 'African American', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '205'}, 'GSM2175101': {'line': 'K562'}, 'GSM2175100': {'line': 'K562'}, 'GSM2123962': {}, 'GSM2195012': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2123960': {}, 'GSM2123961': {}, 'GSM2123966': {}, 'GSM2123967': {}, 'GSM2123964': {}, 'GSM2123965': {}, 'GSM2123968': {}, 'GSM2123969': {}, 'GSM2392018': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392019': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2316809': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316808': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316807': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2392015': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2316805': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2392017': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392010': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392011': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392012': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392013': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM1620529': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620528': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620521': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620520': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620523': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620522': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620525': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620524': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620527': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620526': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2172102': {'donor_age': '21', 'inferred_cell_type': 'beta', 'gender': 'male'}, 'GSM2417034': {'status': 'Control', 'gender': 'Female', 'age': '71', 'treatment': 'Nicotinamide', 'origin': 'Cornea'}, 'GSM2417030': {'status': 'Control', 'gender': 'Female', 'age': '91', 'treatment': 'Nicotinamide', 'origin': 'Cornea'}, 'GSM2417031': {'status': 'Control', 'gender': 'Female', 'age': '79', 'treatment': 'Vehicle', 'origin': 'RPE'}, 'GSM2417032': {'status': 'Control', 'gender': 'Female', 'age': '79', 'treatment': 'Nicotinamide', 'origin': 'RPE'}, 'GSM2417033': {'status': 'Control', 'gender': 'Female', 'age': '71', 'treatment': 'Vehicle', 'origin': 'Cornea'}, 'GSM1624231': {'lineage': 'Trophectoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM1920678': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT00'}, 'GSM1920679': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT04'}, 'GSM1920670': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT16'}, 'GSM1920671': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT20'}, 'GSM1920672': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT24'}, 'GSM1920673': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT28'}, 'GSM1920674': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT32'}, 'GSM1920675': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT36'}, 'GSM1920676': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT40'}, 'GSM1920677': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT44'}, 'GSM880644': {'line': 'HEK293', 'passages': '5-15', 'plasmid': 'pGL4-SV40'}, 'GSM880645': {'line': 'HEK293', 'passages': '5-15', 'plasmid': 'pBluescript + pEGFP-C1'}, 'GSM880643': {'line': 'HEK293', 'passages': '5-15', 'plasmid': 'phRL-SV40'}, 'GSM2392622': {'treatment': 'Estrogen', 'genotype': 'Y537S'}, 'GSM2807431': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM763529': {'type': '143B cells', 'subcellular': 'Mitochondria'}, 'GSM1665193': {'gender': 'male', 'age': '39-40 weeks', 'feeding': 'FALSE', 'assistance': 'FALSE'}, 'GSM1665192': {'gender': 'male', 'age': '35.6 weeks', 'feeding': 'FALSE', 'assistance': 'FALSE'}, 'GSM1665191': {'gender': 'male', 'age': '36.6 weeks', 'feeding': 'TRUE', 'assistance': 'FALSE'}, 'GSM1665190': {'gender': 'female', 'age': '34 weeks', 'feeding': 'TRUE', 'assistance': 'TRUE'}, 'GSM1665197': {'gender': 'male', 'age': '39-40 weeks', 'feeding': 'FALSE', 'assistance': 'FALSE'}, 'GSM1665196': {'gender': 'female', 'age': '39-40 weeks', 'feeding': 'FALSE', 'assistance': 'FALSE'}, 'GSM1665195': {'gender': 'female', 'age': '39-40 weeks', 'feeding': 'FALSE', 'assistance': 'FALSE'}, 'GSM1665194': {'gender': 'male', 'age': '39-40 weeks', 'feeding': 'FALSE', 'assistance': 'FALSE'}, 'GSM1665198': {'gender': 'male', 'age': '39-40 weeks', 'feeding': 'FALSE', 'assistance': 'FALSE'}, 'GSM2688993': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2304949': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '24h'}, 'GSM2304948': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Untreated with Dox', 'time': '0h'}, 'GSM2758950': {'line': 'MCF-7', 'transfection': 'pLenti-HA-EZH2', 'treatment': 'Tamoxifen'}, 'GSM2304941': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Untreated with Dox', 'time': '0h'}, 'GSM2304940': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '48h'}, 'GSM2304943': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '48h'}, 'GSM2304942': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '24h'}, 'GSM2304945': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Untreated with Dox', 'time': '0h'}, 'GSM2304944': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '24h'}, 'GSM2304947': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '48h'}, 'GSM2304946': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '24h'}, 'GSM2688996': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2807433': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2670987': {'line': 'HCT116', 'antibody': 'rat monoclonal anti-Ser2-P 3E10 (Chromotek)', 'genotype': 'Cdk7as mutant'}, 'GSM2670986': {'line': 'HCT116', 'antibody': 'rat monoclonal anti-Ser2-P 3E10 (Chromotek)', 'genotype': 'Cdk7as mutant'}, 'GSM1576422': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human B cells', 'time': '7 d'}, 'GSM2807432': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM3189064': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '73', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.812858', 'percentaligned': '0.886964', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.978142'}, 'GSM1260148': {'transfection': 'LIN-41 siRNA #2', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1260143': {'transfection': 'LIN-41 siRNA #1', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1260142': {'transfection': 'control', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1260141': {'transfection': 'control', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1260140': {'transfection': 'control', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1260147': {'transfection': 'LIN-41 siRNA #2', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1260146': {'transfection': 'LIN-41 siRNA #2', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1260145': {'transfection': 'LIN-41 siRNA #1', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1260144': {'transfection': 'LIN-41 siRNA #1', 'type': 'pluripotent human embryonic stem cells (hESCs)'}, 'GSM1944711': {'coating': 'no', 'medium': 'DMEM + Pen/Strep + 10% FBS', 'type': 'BM-MSC', 'confluency': '85%', 'time': 'control'}, 'GSM2670989': {'line': 'HCT116', 'antibody': 'rabbit anti-HCE (Glover-Cutter et al NSMB. 15:71, 2008)', 'genotype': 'wildtype'}, 'GSM1944713': {'coating': 'Type 1 collagen-coated dishes', 'medium': 'IMDM + Pen/Strep + differentiation cytokines', 'type': 'BM-MSC', 'confluency': '95%', 'time': 'Day 3'}, 'GSM1944712': {'coating': 'Type 1 collagen-coated dishes', 'medium': 'DMEM + Pen/Strep + 10% FBS', 'type': 'BM-MSC', 'confluency': '95%', 'time': 'Day 0'}, 'GSM1944715': {'coating': 'Type 1 collagen-coated dishes', 'medium': 'IMDM + Pen/Strep + differentiation cytokines', 'type': 'BM-MSC', 'confluency': '95%', 'time': 'Day 5'}, 'GSM1944714': {'coating': 'Type 1 collagen-coated dishes', 'medium': 'IMDM + Pen/Strep + 1% FBS', 'type': 'BM-MSC', 'confluency': '95%', 'time': 'Day 3'}, 'GSM1944716': {'coating': 'Type 1 collagen-coated dishes', 'medium': 'IMDM + Pen/Strep + 1% FBS', 'type': 'BM-MSC', 'confluency': '95%', 'time': 'Day 5'}, 'GSM2877925': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM1395377': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 DMSO', 'timepoint': '4hr'}, 'GSM1581608': {'stage': 'NSLN positive'}, 'GSM1581609': {'stage': 'NSLN positive'}, 'GSM1395376': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '12hr'}, 'GSM1581605': {'stage': 'NSLN negative'}, 'GSM1581606': {'stage': 'NSLN negative'}, 'GSM1581607': {'stage': 'NSLN negative'}, 'GSM1395890': {'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395891': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395897': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1220859': {'melanoma': 'right axillary', 'i': 'NA', 'gender': 'female', 'age': '53 yrs', 'ii': '4 months', 'diagnosis': '2009-07-31', 'type': 'tumor biopsy (FFPE) before treatment'}, 'GSM1220858': {'with': 'shSOX10', 'line': 'A375', 'type': 'Human malignant melanoma cells'}, 'GSM2806575': {'line': 'A549', 'replicate': '1', 'treatment': '5 hr'}, 'GSM1220857': {'with': 'shSOX10', 'line': 'A375', 'type': 'Human malignant melanoma cells'}, 'GSM1220856': {'with': 'non-target shRNA control plasmid DNA', 'line': 'A375', 'type': 'Human malignant melanoma cells'}, 'GSM1528620': {'with': '0.5% dimethyl sulfoxide (DMSO) for 24hrs', 'line': 'GM03813', 'type': 'SMA type I fibroblasts'}, 'GSM2389818': {'tissue': 'SJSA - osteosarcoma'}, 'GSM1066120': {'tissue': 'bone marrow', 'genotype': 'SF3B1 somatic heterozygote, K700E', 'disease': 'RARS, 50% ring sideroblasts'}, 'GSM2389819': {'tissue': 'SJSA - osteosarcoma'}, 'GSM1395898': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1631680': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer positive'}, 'GSM1832999': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832998': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832995': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832994': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832997': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832996': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832991': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832990': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832993': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832992': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM2455951': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455950': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455953': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455952': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455955': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455954': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455957': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455956': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455959': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455958': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1521758': {'antibody': 'Abcam,ab8580,GR68224-1', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521759': {'antibody': 'none (Input)', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2361905': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1521750': {'antibody': 'Millipore,07-449,2039786', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521751': {'antibody': 'Abcam,ab4729,GR52206-1', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521752': {'antibody': 'Abcam,ab8895,659352', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521753': {'antibody': 'Millipore,07-473,JBC1888194', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521754': {'antibody': 'none (Input)', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521755': {'antibody': 'Millipore,07-449,2064519', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521756': {'antibody': 'Active Motif,39133,31610003', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521757': {'antibody': 'Abcam,ab8895,659352', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM3189163': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '28', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.88994', 'percentaligned': '0.870241427', 'Sex': 'F', 'nl63': 'No', 'libcounts': '0.50217'}, 'GSM3189162': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.654424', 'percentaligned': '0.95409821', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.40727', 'original': 'Control'}, 'GSM3189161': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.614931', 'percentaligned': '0.957741474', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.038008', 'original': 'Control'}, 'GSM3189160': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A66', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.648142', 'percentaligned': '0.956323146', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.451642'}, 'GSM3189167': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '21', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.677983', 'percentaligned': '0.947044723', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.540581', 'original': 'Case'}, 'GSM3189166': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '53', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.812048', 'percentaligned': '0.875704659', 'Sex': 'F', 'nl63': 'No', 'libcounts': '0.634306', 'original': 'Case'}, 'GSM3189165': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '30', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.64726', 'percentaligned': '0.946321124', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.460054', 'original': 'Case'}, 'GSM3189164': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.81566', 'percentaligned': '0.857440989', 'Sex': 'F', 'nl63': 'No', 'libcounts': '0.508899', 'original': 'Case'}, 'GSM485517': {'line': 'NA18505'}, 'GSM485516': {'line': 'NA18856'}, 'GSM3189169': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.670354', 'percentaligned': '0.960098193', 'Sex': 'F', 'nl63': 'No', 'libcounts': '14.700998', 'original': 'Control'}, 'GSM3189168': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'Yes', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.560559', 'percentaligned': '0.953581603', 'Sex': 'M', 'nl63': 'No', 'libcounts': '15.652708'}, 'GSM485513': {'line': 'NA19137'}, 'GSM485512': {'line': 'NA18523'}, 'GSM485511': {'line': 'NA19137'}, 'GSM485510': {'line': 'NA19171'}, 'GSM2093023': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093022': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093021': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093020': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093027': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093026': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093025': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093024': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093029': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093028': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM1846888': {'antibody': 'KMT2D (Sigma, HPA035977)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1846889': {'antibody': 'H3K27ac (Abcam, ab4729)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM2516084': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'hi'}, 'GSM1846882': {'antibody': 'H3K27ac (Abcam, ab4729)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1846883': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1846884': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1846885': {'antibody': 'H3K27ac (Abcam, ab4729)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1846886': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1846887': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1630768': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630769': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM3586848': {'origin': 'GCB', 'pfstt': '903', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '903', 'cycles': '8', 'oscs': '0'}, 'GSM1588901': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM2358131': {'line': 'MS1', 'type': 'treated', 'timepoint': '5'}, 'GSM2358130': {'line': 'MS1', 'type': 'treated', 'timepoint': '4'}, 'GSM2358133': {'line': 'MS1', 'type': 'treated', 'timepoint': '7'}, 'GSM2358132': {'line': 'MS1', 'type': 'treated', 'timepoint': '6'}, 'GSM2358135': {'line': 'MS1', 'type': 'treated', 'timepoint': '9'}, 'GSM2358134': {'line': 'MS1', 'type': 'treated', 'timepoint': '8'}, 'GSM2358137': {'line': 'MS1', 'type': 'treated', 'timepoint': '11'}, 'GSM2358136': {'line': 'MS1', 'type': 'treated', 'timepoint': '10'}, 'GSM2358139': {'line': 'MS1', 'type': 'treated', 'timepoint': '13'}, 'GSM2358138': {'line': 'MS1', 'type': 'treated', 'timepoint': '12'}, 'GSM2390883': {'disease': 'Healthy Control'}, 'GSM2390882': {'disease': 'Healthy Control'}, 'GSM2390885': {'disease': 'Healthy Control'}, 'GSM2390884': {'disease': 'Healthy Control'}, 'GSM2390887': {'disease': 'Healthy Control'}, 'GSM2390886': {'disease': 'Healthy Control'}, 'GSM1341682': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341683': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341680': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1915048': {'type': 'epithelial', 'line': 'MCF7', 'molecule': 'polysomal RNA'}, 'GSM2579288': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579289': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579285': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579286': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579287': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM1234183': {'replicate': '1', 'line': '2610', 'antibody': 'H3K27Ac'}, 'GSM2887509': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1341684': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341685': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1946142': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19130', 'for': '30min'}, 'GSM2197728': {'passages': '25-30'}, 'GSM1946143': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19130', 'for': '60min'}, 'GSM1915041': {'type': 'epithelial', 'line': 'MCF7', 'molecule': 'total RNA'}, 'GSM2887508': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1946141': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19128', 'for': '60min'}, 'GSM1576421': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human B cells', 'time': '3 d'}, 'GSM2204828': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2298949': {'type': 'Primary GBM'}, 'GSM2545232': {'line': 'MCF-7', 'type': 'Luminal A Breast Cancer Cell line'}, 'GSM2053455': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '46', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#3'}, 'GSM1915045': {'type': 'epithelial', 'line': 'MCF10A', 'molecule': 'total RNA'}, 'GSM2545233': {'line': 'ZR751', 'type': 'Luminal A Breast Cancer Cell line'}, 'GSM1915044': {'type': 'epithelial', 'line': 'MCF10A', 'molecule': 'total RNA'}, 'GSM2545230': {'line': 'MCF-7', 'type': 'Luminal A Breast Cancer Cell line'}, 'GSM2053453': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '48', 'infection': 'Yes', 'cirrhosis': 'No', 'tissue': 'adjacent normal', 'id': '#25'}, 'GSM2204838': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2545231': {'line': 'MCF-7', 'type': 'Luminal A Breast Cancer Cell line'}, 'GSM1633868': {'gender': 'male', 'age': 'adult', 'type': 'Neutrophil', 'condition': 'healthy'}, 'GSM2204832': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2545236': {'line': 'ZR751', 'type': 'Luminal A Breast Cancer Cell line'}, 'GSM1633866': {'gender': 'male', 'age': 'adult', 'type': 'Neutrophil', 'condition': 'healthy'}, 'GSM1633867': {'gender': 'male', 'age': 'adult', 'type': 'Neutrophil', 'condition': 'healthy'}, 'GSM2204836': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204837': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204834': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204835': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2510252': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM1949055': {'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949054': {'type': 'none', 'treatment': 'none'}, 'GSM1949057': {'type': 'BRAFi+MEKi', 'treatment': 'on-treatment'}, 'GSM1949056': {'type': 'BRAFi+MEKi', 'treatment': 'on-treatment'}, 'GSM1949051': {'type': 'none', 'treatment': 'none'}, 'GSM1949050': {'type': 'BRAFi+MEKi', 'treatment': 'on-treatment'}, 'GSM1949053': {'type': 'BRAFi+MEKi', 'treatment': 'on-treatment'}, 'GSM1949052': {'type': 'BRAFi+MEKi', 'treatment': 'on-treatment'}, 'GSM1949059': {'type': 'MEKi', 'treatment': 'on-treatment'}, 'GSM1949058': {'type': 'none', 'treatment': 'none'}, 'GSM2287149': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287148': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2166269': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2053458': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '61', 'infection': 'No', 'cirrhosis': 'No', 'tissue': 'primary tumor', 'id': '#8'}, 'GSM2053459': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '66', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#10'}, 'GSM1647127': {'line': 'HEK293A', 'expression': 'WT-MEF2B-V5', 'treatment': 'DMSO (1.07uL/mL)'}, 'GSM2466459': {'line': 'A549', 'passages': '15-18', 'type': 'lung epithelial cells'}, 'GSM1647128': {'line': 'HEK293A', 'expression': 'K4E-MEF2B-V5', 'treatment': 'DMSO (1.07uL/mL)'}, 'GSM1647129': {'line': 'HEK293A', 'expression': 'Y69H-MEF2B-V5', 'treatment': 'DMSO (1.07uL/mL)'}, 'GSM2355458': {'type': 'Human embryonic stem cells'}, 'GSM2355450': {'type': 'Human embryonic stem cells'}, 'GSM2355452': {'type': 'Human embryonic stem cells'}, 'GSM2355454': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM2355456': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM5065649': {'replicate': 'Replicate2', 'line': 'MCF-7', 'type': 'human Estrogen receptor alpha+ breast cancer cells', 'genotype': 'PARP-1KD', 'treatment': '100 nM E2'}, 'GSM2166267': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2393518': {'replicate': '2', 'line': 'HUVEC', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393519': {'replicate': '1', 'line': 'IMR90', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM1166029': {'rna': 'FirstChoice® Human Brain Reference Total RNA, Lot #105P055201A, Cat #6050', 'tissue': 'Brain'}, 'GSM1166028': {'rna': 'FirstChoice® Human Brain Reference Total RNA, Lot #105P055201A, Cat #6050', 'tissue': 'Brain'}, 'GSM1166027': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor Tisue'}, 'GSM1166026': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor Tisue'}, 'GSM2393510': {'replicate': '2', 'line': 'A549', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393511': {'replicate': '1', 'line': 'BJ', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393516': {'replicate': '2', 'line': 'HMEC', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393517': {'replicate': '1', 'line': 'HUVEC', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393514': {'replicate': '2', 'line': 'HELA', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393515': {'replicate': '1', 'line': 'HMEC', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM1132417': {'tissue': 'Bone Marrow, Iliac Crest', 'type': 'early promyelocytes'}, 'GSM1132419': {'tissue': 'Bone Marrow, Iliac Crest', 'type': 'leukemic blasts'}, 'GSM1132418': {'tissue': 'Bone Marrow, Iliac Crest', 'type': 'early promyelocytes'}, 'GSM2147887': {'patient': 'P603', 'age': 'missing', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '>12mo', 'ethnicity': 'Caucasian'}, 'GSM2147886': {'patient': 'P603', 'age': 'missing', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '>12mo', 'ethnicity': 'Caucasian'}, 'GSM2147885': {'patient': 'P602', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '>12mo', 'ethnicity': 'Caucasian'}, 'GSM2147884': {'patient': 'P602', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '>12mo', 'ethnicity': 'Caucasian'}, 'GSM2147883': {'patient': 'P502', 'age': '39', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147882': {'patient': 'P502', 'age': '39', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147881': {'patient': 'P502', 'age': '39', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147880': {'patient': 'P502', 'age': '39', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147889': {'patient': 'P501', 'age': '25', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147888': {'patient': 'P501', 'age': '25', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM1691051': {'with': 'none', 'source': \"Duke's type B adenocarcinoma of the colon\", 'line': 'LS174T', 'type': 'Derivatives of Ls174 colon cancer cells', 'variation': 'inducible shRNAs against the ASCL2'}, 'GSM1691050': {'with': '1ug/ml doxycycline', 'source': \"Duke's type B adenocarcinoma of the colon\", 'line': 'LS174T', 'type': 'Derivatives of Ls174 colon cancer cells', 'variation': 'inducible shRNAs against the WNTRLINC1'}, 'GSM1691053': {'with': '1ug/ml doxycycline', 'source': \"Duke's type B adenocarcinoma of the colon\", 'line': 'LS174T', 'type': 'Derivatives of Ls174 colon cancer cells', 'variation': 'inducible shRNAs against the ASCL2'}, 'GSM1691052': {'with': 'none', 'source': \"Duke's type B adenocarcinoma of the colon\", 'line': 'LS174T', 'type': 'Derivatives of Ls174 colon cancer cells', 'variation': 'inducible shRNAs against the ASCL2'}, 'GSM1691054': {'with': '1ug/ml doxycycline', 'source': \"Duke's type B adenocarcinoma of the colon\", 'line': 'LS174T', 'type': 'Derivatives of Ls174 colon cancer cells', 'variation': 'inducible shRNAs against the ASCL2'}, 'GSM2243752': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243753': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243750': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243751': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243756': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E4', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1420625': {'line': 'HeLa', 'prep': 'chromatin-associated RNA fraction', 'variation': 'si cntrl'}, 'GSM1420626': {'line': 'HeLa', 'prep': 'chromatin-associated RNA fraction', 'variation': 'si Drosha'}, 'GSM1420627': {'line': 'HeLa', 'prep': 'chromatin-associated RNA fraction', 'variation': 'si DGCR8'}, 'GSM1420628': {'line': 'Huh7', 'prep': 'chromatin-associated RNA fraction', 'variation': 'si cntrl'}, 'GSM1420629': {'line': 'Huh7', 'prep': 'chromatin-associated RNA fraction', 'variation': 'si DGCR8'}, 'GSM2243758': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D8', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243759': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1550647': {'with': 'Control shRNA', 'line': 'Kasumi-1', 'type': 'myeloblast', 'disease': 'acute myeloblastic leukemia'}, 'GSM1550648': {'with': 'Control shRNA', 'line': 'Kasumi-1', 'type': 'myeloblast', 'disease': 'acute myeloblastic leukemia'}, 'GSM1550649': {'with': 'JMJD1C shRNA63', 'line': 'Kasumi-1', 'type': 'myeloblast', 'disease': 'acute myeloblastic leukemia'}, 'GSM1919220': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'control empty vector (pcDNA)'}, 'GSM2705388': {'Sex': 'Male', 'rin': '6.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.5', 'pmi': '16'}, 'GSM2705389': {'Sex': 'Male', 'rin': '4.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.22', 'pmi': '24'}, 'GSM2705384': {'Sex': 'Female', 'rin': '6.5', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.33', 'pmi': 'NA'}, 'GSM2705385': {'Sex': 'Male', 'rin': '7.1', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.2', 'pmi': '10'}, 'GSM2705386': {'Sex': 'Female', 'rin': '6.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.26', 'pmi': '24'}, 'GSM2705387': {'Sex': 'Female', 'rin': '6.7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.55', 'pmi': '5'}, 'GSM2705380': {'Sex': 'Male', 'rin': '6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.43', 'pmi': '18'}, 'GSM2705381': {'Sex': 'Male', 'rin': '7.5', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.77', 'pmi': '17.5'}, 'GSM2705382': {'Sex': 'Male', 'rin': '7.7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.72', 'pmi': '14'}, 'GSM2705383': {'Sex': 'Male', 'rin': '7.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.85', 'pmi': '24'}, 'GSM2627062': {'origin': 'small intestine', 'patient_id': '99', 'type': 'liver metastasis', 'tumor_id': '73'}, 'GSM2627063': {'origin': 'small intestine', 'patient_id': '100', 'type': 'liver metastasis', 'tumor_id': '74'}, 'GSM942209': {'line': 'MCF7', 'sirna': 'ON-TARGETplus Non-Targeting siRNA Control (Dharmacon, D-001810-01)', 'treatment': 'control', 'passage': '7'}, 'GSM1645719': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes', 'antibody': 'p300 (Active Motif, cat#61402. lot#01813001) (Active Motif)'}, 'GSM1645718': {'knockdown': 'Brg1/Brm', 'type': 'primary human neonatal keratinocytes', 'antibody': 'p300 (Active Motif, cat#61402. lot#01813001) (Active Motif)'}, 'GSM1645713': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes', 'antibody': 'J1 (gift from the Crabtree Lab (Khavari et al. Nature 1993))'}, 'GSM1645712': {'knockdown': 'p63', 'type': 'primary human neonatal keratinocytes', 'antibody': 'J1 (gift from the Crabtree Lab (Khavari et al. Nature 1993))'}, 'GSM1645711': {'antibody': 'J1 (gift from the Crabtree Lab (Khavari et al. Nature 1993))', 'type': 'primary human neonatal keratinocytes'}, 'GSM1645710': {'antibody': 'none (input)', 'type': 'primary human neonatal keratinocytes'}, 'GSM1645717': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes', 'antibody': 'Pol II (millipore, cat#05-623, lot#1776417) (millipore)'}, 'GSM1645716': {'knockdown': 'Brg1/Brm', 'type': 'primary human neonatal keratinocytes', 'antibody': 'Pol II (millipore, cat#05-623, lot#1776417) (millipore)'}, 'GSM1645715': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes', 'antibody': 'H137 (Santa Cruz, cat#sc-8343, lot#A0614)'}, 'GSM1645714': {'knockdown': 'Brg1/Brm', 'type': 'primary human neonatal keratinocytes', 'antibody': 'H137 (Santa Cruz, cat#sc-8343, lot#A0614)'}, 'GSM2828566': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2692', 'type': 'CD8 T cells'}, 'GSM2828567': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3027', 'type': 'CD8 T cells'}, 'GSM2828568': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3028', 'type': 'CD8 T cells'}, 'GSM2828569': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3031', 'type': 'CD8 T cells'}, 'GSM2061705': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2316789': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM1410993': {'ercc_mix': '1', 'donor': 'N051911-F24', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1410992': {'ercc_mix': '1', 'donor': 'N022211-F22', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1919227': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'ROR2 overexpression construct'}, 'GSM2665910': {'age': 'Day 130', 'well': 'F6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665911': {'age': 'Day 130', 'well': 'F10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM3586531': {'origin': 'UNCLASSIFIED', 'pfstt': '1405', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1405', 'cycles': '8', 'oscs': '0'}, 'GSM1196955': {'type': 'β-catenin knockdown'}, 'GSM1196956': {'type': 'control'}, 'GSM3586532': {'origin': 'GCB', 'pfstt': '454', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '624', 'cycles': '8', 'oscs': '1'}, 'GSM1196950': {'type': 'Wnt inhibitor (C3) treated'}, 'GSM1196951': {'type': 'Wnt inhibitor (C3) treated'}, 'GSM3586537': {'origin': 'GCB', 'pfstt': '1210', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1210', 'cycles': '8', 'oscs': '0'}, 'GSM3586536': {'origin': 'UNCLASSIFIED', 'pfstt': '728', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1267', 'cycles': '8', 'oscs': '0'}, 'GSM3586539': {'origin': 'GCB', 'pfstt': '1004', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1166', 'cycles': '8', 'oscs': '0'}, 'GSM3586538': {'origin': 'GCB', 'pfstt': '1116', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1278', 'cycles': '8', 'oscs': '0'}, 'GSM1196958': {'type': 'vehicle control'}, 'GSM1196959': {'type': 'vehicle control'}, 'GSM1410999': {'ercc_mix': '1', 'donor': 'N120511-F52', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM2247360': {'line': 'H1 (WA-01)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2338036': {'line': 'U2OS', 'type': 'asynchronous cells'}, 'GSM2338037': {'line': 'U2OS', 'type': 'asynchronous cells'}, 'GSM2338034': {'line': 'U2OS', 'type': 'asynchronous cells'}, 'GSM1410998': {'ercc_mix': '1', 'donor': 'AS113011-F25', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Baseline'}, 'GSM2247367': {'line': 'H1 (WA-01) + WTC10 Phox2B het (+/Y14X)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2338038': {'line': 'U2OS', 'type': 'asynchronous cells'}, 'GSM2338039': {'line': 'U2OS', 'type': 'asynchronous cells'}, 'GSM2247366': {'line': 'H1 (WA-01) + WTC10 Phox2B het (+/Y14X)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM3594369': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2247364': {'line': 'H1 (WA-01)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2691360': {'type': 'Encapsulated HLC'}, 'GSM3594365': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594364': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2210918': {'status': 'adjacent normal tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '53'}, 'GSM2210919': {'status': 'adjacent normal tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '53'}, 'GSM3594361': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2199528': {'age': '56', 'tissue': 'Subcutaneous fat', 'bmi': '44.8'}, 'GSM2098480': {'sirna': 'si-RNA Ctr transfected', 'line': 'FT-194', 'type': 'Immortalized Fallopian tube secretory epithelial cell'}, 'GSM2098481': {'sirna': 'si-RNA Pax8 transfected', 'line': 'FT-194', 'type': 'Immortalized Fallopian tube secretory epithelial cell'}, 'GSM2091359': {'genotype': 'pluripotent'}, 'GSM2091358': {'genotype': 'pluripotent'}, 'GSM2316753': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316752': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316751': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316750': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316757': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316756': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316755': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316754': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316759': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316758': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2451023': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100184': {'rin': '10', 'Sex': 'Male', 'sspg': '200', 'age': '37', 'bmi': '33.2', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '668', 'method': 'Life-Tech GITC'}, 'GSM2100183': {'rin': '9.9', 'Sex': 'Male', 'sspg': '200', 'age': '37', 'bmi': '33.2', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '668', 'method': 'Life-Tech GITC'}, 'GSM2451024': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2070758': {'type': 'PASMC vascular smooth muscle cells', 'variation': 'ENG-/-', 'sequence': 'TGCCGACGACGCCATGACCC; HGLibA_15125'}, 'GSM2070759': {'type': 'PASMC vascular smooth muscle cells', 'variation': 'ENG-/-', 'sequence': 'TGCCGACGACGCCATGACCC; HGLibA_15125'}, 'GSM2899128': {'expression': 'NKX2.5 and endothelial markers', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2899129': {'expression': 'NKX2.5 and endothelial markers', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2899125': {'expression': 'NKX2.5 alone', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2899126': {'expression': 'NKX2.5 alone', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2899127': {'expression': 'NKX2.5 alone', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2070756': {'type': 'PASMC vascular smooth muscle cells', 'variation': 'WT', 'sequence': 'Non target control (NTC)'}, 'GSM2070757': {'type': 'PASMC vascular smooth muscle cells', 'variation': 'ENG-/-', 'sequence': 'TGCCGACGACGCCATGACCC; HGLibA_15125'}, 'GSM2070754': {'type': 'PASMC vascular smooth muscle cells', 'variation': 'WT', 'sequence': 'Non target control (NTC)'}, 'GSM2070755': {'type': 'PASMC vascular smooth muscle cells', 'variation': 'WT', 'sequence': 'Non target control (NTC)'}, 'GSM2815861': {'line': 'H9'}, 'GSM2815860': {'line': 'H9'}, 'GSM2815863': {'line': 'H9'}, 'GSM2815862': {'line': 'H9'}, 'GSM2815865': {'line': 'H9'}, 'GSM2815864': {'line': 'H9'}, 'GSM2815867': {'line': 'H9'}, 'GSM2815866': {'line': 'H9'}, 'GSM2815869': {'line': 'H9'}, 'GSM2815868': {'line': 'H9'}, 'GSM1126661': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126660': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126663': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126662': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126665': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126664': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126667': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126666': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126669': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126668': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM955139': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955138': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955137': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955136': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955135': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955134': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955133': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955132': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955131': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955130': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM2144770': {'with': 'Control siLuc', 'line': 'H9', 'type': 'hESCs'}, 'GSM2144771': {'with': 'siUpf1', 'line': 'H9', 'type': 'hESCs'}, 'GSM2144772': {'with': 'siUpf1', 'line': 'H9', 'type': 'hESCs'}, 'GSM1919225': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'control empty vector (pcDNA) with stimulation with recombinant WNT5A'}, 'GSM2932933': {'pucai': '45', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '11'}, 'GSM2932932': {'pucai': '45', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '12'}, 'GSM1940669': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940668': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1540603': {'state': 'Healthy controls', 'individual': 'control 02-83', 'type': 'PBMC', 'time': 'control'}, 'GSM1540602': {'state': 'Healthy controls', 'individual': 'control 02-61', 'type': 'PBMC', 'time': 'control'}, 'GSM1540601': {'state': 'Healthy controls', 'individual': 'control 02-60', 'type': 'PBMC', 'time': 'control'}, 'GSM1540600': {'state': 'Healthy controls', 'individual': 'control 02-59', 'type': 'PBMC', 'time': 'control'}, 'GSM1910295': {'grade': '2', 'gender': 'M', 'age': '69', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910294': {'grade': '1', 'gender': 'F', 'age': '64', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910297': {'grade': '3A', 'gender': 'M', 'age': '59', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910296': {'grade': '1', 'gender': 'M', 'age': '59', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910291': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910290': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910293': {'grade': '2', 'gender': 'F', 'age': '48', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910292': {'grade': '1', 'gender': 'M', 'age': '56', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM2306033': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '19 week gestation'}, 'GSM2306032': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '19 week gestation'}, 'GSM2306031': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '19 week gestation'}, 'GSM2306030': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '19 week gestation'}, 'GSM1910299': {'grade': '1', 'gender': 'M', 'age': '57', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910298': {'grade': '1', 'gender': 'M', 'age': '53', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM2306035': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '21 week gestation'}, 'GSM2306034': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '20 week gestation'}, 'GSM2212189': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212188': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212183': {'company': 'cat #): Not applicable', 'tissue': 'hESC-derived cardiomyocytes, H7 line', 'treatment': 'Untreated'}, 'GSM2212185': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM1940663': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2212187': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212186': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM1528397': {'line': 'M406', 'type': 'Melanoma'}, 'GSM1528396': {'line': 'M403', 'type': 'Melanoma'}, 'GSM1528395': {'line': 'M399', 'type': 'Melanoma'}, 'GSM1528394': {'line': 'M397', 'type': 'Melanoma'}, 'GSM1528393': {'line': 'M397AR', 'type': 'Melanoma'}, 'GSM1528392': {'line': 'M395', 'type': 'Melanoma'}, 'GSM1528391': {'line': 'M395AR', 'type': 'Melanoma'}, 'GSM1528390': {'line': 'M381', 'type': 'Melanoma'}, 'GSM2394539': {'id': 'IonXpress_050', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'media_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2394538': {'id': 'IonXpress_049', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'MB', 'point': 'after 12h of compound treatment'}, 'GSM1528399': {'line': 'M409AR', 'type': 'Melanoma'}, 'GSM1528398': {'line': 'M407', 'type': 'Melanoma'}, 'GSM2086454': {'line': 'HEK293'}, 'GSM2086455': {'line': 'HEK293'}, 'GSM2086456': {'line': 'HEK293'}, 'GSM2086457': {'strain': 'primary cell', 'type': 'urine derived epithelium'}, 'GSM2086458': {'strain': 'induced pluripotent stem cell', 'type': 'induced pluripotent stem cell'}, 'GSM2086459': {'strain': 'induced pluripotent stem cell', 'type': 'induced pluripotent stem cell'}, 'GSM1414494': {'tissue': 'Human ovarian PDX tumor'}, 'GSM1949063': {'type': 'BRAFi+MEKi', 'treatment': 'on-treatment'}, 'GSM1980535': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980534': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980537': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980536': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980531': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980530': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980533': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980532': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980539': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980538': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1703752': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703753': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM1703750': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703751': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703756': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM1703757': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703754': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703755': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703758': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703759': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM2760240': {'transfection': 'FGFR1(SP-/NLS+)(TK-)', 'type': 'NCC'}, 'GSM2775090': {'line': 'M249', 'type': 'BRAFi+MEKi', 'treatment': 'resistant'}, 'GSM2108459': {'stages': 'myoblast nucleus'}, 'GSM2108458': {'stages': 'myoblast nucleus'}, 'GSM1363310': {'person': 'child', 'trio': 'P006'}, 'GSM1363311': {'person': 'child', 'trio': 'P007'}, 'GSM1363312': {'person': 'child', 'trio': 'P008'}, 'GSM1363313': {'person': 'child', 'trio': 'P009'}, 'GSM1363314': {'person': 'child', 'trio': 'P012'}, 'GSM1363315': {'person': 'child', 'trio': 'P013'}, 'GSM1363316': {'person': 'child', 'trio': 'P014'}, 'GSM2108452': {'stages': 'myoblast nucleus'}, 'GSM1194145': {'status': 'knock-down', 'line': 'HEK293T-rex', 'clone': '15', 'treatment': 'Doxycycline 25 min'}, 'GSM2153033': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153032': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153031': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153030': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153037': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153036': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM1624879': {'type': 'lung carcinoma cell line'}, 'GSM1624878': {'type': 'lung carcinoma cell line'}, 'GSM1624877': {'type': 'lung carcinoma cell line'}, 'GSM1624876': {'type': 'lung carcinoma cell line'}, 'GSM1624875': {'type': 'lung carcinoma cell line'}, 'GSM2153038': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2735208': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '31', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735209': {'cohort': 'N/A', 'tils': '10', 'subtype': 'I', 'burden': 'Not evaluated', 'morphology': 'differentiated', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735206': {'cohort': 'Unpaired', 'tils': '2', 'subtype': 'I', 'burden': '287', 'morphology': 'differentiated', 'event': 'Last follow-up', 'stage': 'II'}, 'GSM2735207': {'cohort': 'Paired', 'tils': '10', 'subtype': 'III', 'burden': '24', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735204': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '50', 'morphology': 'mixed (round & spindle)', 'event': 'Disease progression', 'stage': 'III'}, 'GSM2735205': {'cohort': 'Paired', 'tils': '20', 'subtype': 'II', 'burden': '33', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735202': {'cohort': 'Unpaired', 'tils': '35', 'subtype': 'I', 'burden': '256', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735203': {'cohort': 'Unpaired', 'tils': 'Not evaluated', 'subtype': 'II', 'burden': '269', 'morphology': 'N/A', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2654099': {'differentiation': '112', 'id': 'CTRL 2', 'genotype': 'Control'}, 'GSM2654098': {'differentiation': '112', 'id': 'CTRL 1', 'genotype': 'Control'}, 'GSM2654097': {'differentiation': '112', 'id': 'CTRL 2', 'genotype': 'Control'}, 'GSM2654096': {'differentiation': '112', 'id': 'CTRL 1', 'genotype': 'Control'}, 'GSM1399184': {'type': 'human primary T-ALL'}, 'GSM1399185': {'type': 'human primary T-ALL'}, 'GSM1399186': {'type': 'human primary T-ALL'}, 'GSM1399187': {'type': 'human primary T-ALL'}, 'GSM1399180': {'tissue': 'thymus'}, 'GSM1399181': {'tissue': 'thymus'}, 'GSM1399182': {'type': 'human primary T-ALL'}, 'GSM1399183': {'type': 'human primary T-ALL'}, 'GSM1432895': {'type': 'colon cancer', 'line': 'HT29', 'passages': 'Passages 12 -13', 'treated': 'High miR23b'}, 'GSM1432896': {'type': 'colon cancer', 'line': 'HT29', 'passages': 'Passages 12 -13', 'treated': 'High mIR23b Control'}, 'GSM1432897': {'type': 'colon cancer', 'line': 'HT29', 'passages': 'Passages 12 -13', 'treated': 'Low miR23b'}, 'GSM1399188': {'type': 'human primary T-ALL'}, 'GSM1399189': {'type': 'human primary T-ALL'}, 'GSM2526848': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526849': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1944030': {'line': 'MCF-7 is a human breast adenocarcinoma cell line', 'treatment': 'Expressing shRNA targeting Nudt3'}, 'GSM1944031': {'type': 'glioblastoma', 'lentivirus': ': control'}, 'GSM1944032': {'type': 'glioblastoma', 'lentivirus': ': pGIPZ', 'seq': 'ATAATATGAGACTAGTGGG'}, 'GSM1944033': {'type': 'neural stem cells', 'lentivirus': ': control'}, 'GSM1944034': {'type': 'neural stem cells', 'lentivirus': ': pGIPZ', 'seq': 'AGTGTTAAACAAGTAAATG'}, 'GSM1944035': {'type': 'glioblastoma', 'lentivirus': ': control'}, 'GSM1944036': {'type': 'glioblastoma', 'lentivirus': ': pGIPZ', 'seq': 'AGTGTTAAACAAGTAAATG'}, 'GSM1944037': {'type': 'glioblastoma', 'lentivirus': ': pGIPZ', 'seq': 'ATAATATGAGACTAGTGGG'}, 'GSM1826499': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'BRD4-KDM6B'}, 'GSM1826498': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'KDM4C'}, 'GSM2151891': {'status': 'Undifferentiated', 'karyotype': 'Trisomy 12'}, 'GSM2151890': {'status': 'Undifferentiated', 'karyotype': 'Diploid'}, 'GSM2151897': {'status': 'Undifferentiated', 'karyotype': 'Parthenogenetic'}, 'GSM2151896': {'status': 'Undifferentiated', 'karyotype': 'Parthenogenetic'}, 'GSM2151895': {'status': 'Undifferentiated', 'karyotype': 'Parthenogenetic'}, 'GSM2151894': {'status': 'Undifferentiated', 'karyotype': 'Parthenogenetic'}, 'GSM1826491': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'Awp12'}, 'GSM1826493': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'BRD4'}, 'GSM1826492': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'Awp12'}, 'GSM1826495': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'KDM6B'}, 'GSM1826494': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'BRD4'}, 'GSM1826497': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'KDM4C'}, 'GSM1826496': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'KDM6B'}, 'GSM1194144': {'status': 'knock-down', 'line': 'HEK293T-rex', 'clone': '15', 'treatment': 'Doxycycline 10 min'}, 'GSM2138526': {'line': 'M421', 'state': 'Melanoma'}, 'GSM2138527': {'line': 'M368', 'state': 'Melanoma'}, 'GSM2138524': {'line': 'M417', 'state': 'Melanoma'}, 'GSM2138525': {'line': 'M416', 'state': 'Melanoma'}, 'GSM2138522': {'line': 'M285', 'state': 'Melanoma'}, 'GSM2138523': {'line': 'M311', 'state': 'Melanoma'}, 'GSM2138520': {'line': 'M249', 'state': 'Melanoma'}, 'GSM2138521': {'line': 'M262_2', 'state': 'Melanoma'}, 'GSM2138528': {'line': 'M403', 'state': 'Melanoma'}, 'GSM2138529': {'line': 'M408', 'state': 'Melanoma'}, 'GSM1420633': {'line': 'HeLa', 'prep': 'polyA+ nuclear fraction', 'variation': 'si DGCR8'}, 'GSM1420632': {'line': 'HeLa', 'prep': 'polyA- nuclear fraction', 'variation': 'si DGCR8'}, 'GSM1420631': {'line': 'HeLa', 'prep': 'polyA+ nuclear fraction', 'variation': 'si cntrl'}, 'GSM1420630': {'line': 'HeLa', 'prep': 'polyA- nuclear fraction', 'variation': 'si cntrl'}, 'GSM2170858': {'stage': 'Liver bud 1'}, 'GSM2361898': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361899': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361896': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361897': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361894': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361895': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361892': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361893': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361890': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361891': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2462754': {'treatment': 'Treatment'}, 'GSM2462751': {'treatment': 'Control'}, 'GSM2462753': {'treatment': 'Treatment'}, 'GSM2462752': {'treatment': 'Control'}, 'GSM2172179': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172178': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172177': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172176': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172175': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172174': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172173': {'donor_age': '21', 'inferred_cell_type': 'beta', 'gender': 'male'}, 'GSM2172172': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172171': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172170': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2367490': {'with': 'mock', 'line': 'MCF-7', 'barcode': 'ATGTCA', 'type': 'breast carcinoma epithelial cell line', 'point': '1h post irradiation'}, 'GSM2367491': {'with': 'mock', 'line': 'MCF-7', 'barcode': 'CCGTCC', 'type': 'breast carcinoma epithelial cell line', 'point': '1h post irradiation'}, 'GSM2367492': {'with': 'mock', 'line': 'MCF-7', 'barcode': 'AGTTCC', 'type': 'breast carcinoma epithelial cell line', 'point': '2h post irradiation'}, 'GSM2367493': {'with': 'mock', 'line': 'MCF-7', 'barcode': 'GTCCGC', 'type': 'breast carcinoma epithelial cell line', 'point': '2h post irradiation'}, 'GSM2367494': {'with': 'mock', 'line': 'MCF-7', 'barcode': 'GTGAAA', 'type': 'breast carcinoma epithelial cell line', 'point': '2h post irradiation'}, 'GSM2367495': {'with': 'siDDX54', 'line': 'MCF-7', 'barcode': 'CGATGT', 'type': 'breast carcinoma epithelial cell line', 'point': '1h post irradiation'}, 'GSM2367496': {'with': 'siDDX54', 'line': 'MCF-7', 'barcode': 'ACAGTG', 'type': 'breast carcinoma epithelial cell line', 'point': '1h post irradiation'}, 'GSM2367497': {'with': 'siDDX54', 'line': 'MCF-7', 'barcode': 'CAGATC', 'type': 'breast carcinoma epithelial cell line', 'point': '1h post irradiation'}, 'GSM2367498': {'with': 'siDDX54', 'line': 'MCF-7', 'barcode': 'TGACCA', 'type': 'breast carcinoma epithelial cell line', 'point': '2h post irradiation'}, 'GSM2367499': {'with': 'siDDX54', 'line': 'MCF-7', 'barcode': 'GCCAAT', 'type': 'breast carcinoma epithelial cell line', 'point': '2h post irradiation'}, 'GSM2231441': {'type': 'Adipose-derived Mesenchymal Stromal Cell'}, 'GSM2231440': {'type': 'Adipose-derived Mesenchymal Stromal Cell'}, 'GSM2166334': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM937176': {'line': 'ECC-1', 'replicate': '2', 'treatment': '8 hour 100 nM bisphenol A'}, 'GSM937175': {'line': 'ECC-1', 'replicate': '1', 'treatment': '8 hour 100 nM genistein'}, 'GSM937174': {'line': 'ECC-1', 'replicate': '1', 'treatment': '8 hour 10 nM 17β-estradiol'}, 'GSM2166330': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM937172': {'line': 'ECC-1', 'replicate': '1', 'treatment': '8 hour 0.02% DMSO'}, 'GSM937171': {'line': 'ECC-1', 'replicate': '1', 'treatment': '8 hour 100 nM bisphenol A'}, 'GSM937170': {'line': 'T-47D', 'replicate': '2', 'treatment': '8 hour 100 nM genistein'}, 'GSM2166338': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166339': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM937179': {'line': 'ECC-1', 'replicate': '2', 'treatment': '8 hour 10 nM 17β-estradiol'}, 'GSM937178': {'line': 'ECC-1', 'replicate': '2', 'treatment': '8 hour 0.02% DMSO'}, 'GSM1395548': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395549': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1863100': {'line': 'C4-2B prostate cancer cell line', 'type': 'Bone metastatic LNCaP-derivative', 'agent': 'control'}, 'GSM1863101': {'line': 'C4-2B prostate cancer cell line', 'type': 'Bone metastatic LNCaP-derivative', 'agent': 'XY011'}, 'GSM1395540': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395541': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395542': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395543': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395544': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395545': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395546': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395547': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1071280': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'line': 'LNCaP', 'tissue': 'Prostate adenocarcinoma', 'type': 'Androgen-sensitive', 'agent': '10 nm DHT'}, 'GSM1071281': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'line': 'LNCaP', 'tissue': 'Prostate adenocarcinoma', 'type': 'Androgen-sensitive', 'agent': '10 nm DHT'}, 'GSM1071282': {'antibody': 'none', 'line': 'LNCaP', 'tissue': 'Prostate adenocarcinoma', 'type': 'Androgen-sensitive', 'agent': '10 nm DHT'}, 'GSM1071283': {'antibody': 'none', 'line': 'LNCaP', 'tissue': 'Prostate adenocarcinoma', 'type': 'Androgen-sensitive', 'agent': '10 nm DHT'}, 'GSM1071284': {'tissue': 'non-malignant adjacent tissues', 'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)'}, 'GSM1071285': {'tissue': 'non-malignant adjacent tissues', 'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)'}, 'GSM1071286': {'tissue': 'non-malignant adjacent tissues', 'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)'}, 'GSM1071287': {'tissue': 'non-malignant adjacent tissues', 'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)'}, 'GSM1071288': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'tisssue': 'malignant prostate tumors'}, 'GSM1071289': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'tisssue': 'malignant prostate tumors'}, 'GSM2705414': {'Sex': 'Female', 'rin': '5.3', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6', 'pmi': '13'}, 'GSM2705415': {'Sex': 'Male', 'rin': '6.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.3', 'pmi': '9'}, 'GSM2705416': {'Sex': 'Male', 'rin': '8.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.7', 'pmi': '16'}, 'GSM2705417': {'Sex': 'Female', 'rin': '5.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.8', 'pmi': '17'}, 'GSM2705410': {'Sex': 'Male', 'rin': '7.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.7', 'pmi': '16'}, 'GSM2705411': {'Sex': 'Male', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6', 'pmi': '13'}, 'GSM2705412': {'Sex': 'Male', 'rin': '5.7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.2', 'pmi': '10'}, 'GSM2705413': {'Sex': 'Female', 'rin': '7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.3', 'pmi': '7'}, 'GSM2705418': {'Sex': 'Female', 'rin': '8.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.4', 'pmi': '9'}, 'GSM2705419': {'Sex': 'Female', 'rin': '6.3', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '5.5', 'pmi': '6'}, 'GSM2252330': {'gender': 'female', 'tissue': 'normal lung', 'time': '9 months'}, 'GSM2252331': {'grade': 'Intermediate grade', 'gender': 'female', 'tissue': 'adenocarcinoma', 'stage': 'T2BN0M0', 'time': '9 months'}, 'GSM1342900': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'liver tumor', 'patient': '1304203'}, 'GSM1342901': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'non-tumor liver', 'patient': '1304203'}, 'GSM1342902': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'F', 'tissue': 'liver tumor', 'patient': '1303277'}, 'GSM1342903': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'F', 'tissue': 'non-tumor liver', 'patient': '1303277'}, 'GSM2839751': {'cohort': 'Replication', 'age': '47', 'id': 'A15', 'Sex': 'Male'}, 'GSM1342905': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'non-tumor liver', 'patient': '1306706'}, 'GSM1613626': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2839752': {'cohort': 'Replication', 'age': '57', 'id': 'A16', 'Sex': 'Female'}, 'GSM1613628': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613629': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1440468': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440469': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440460': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440461': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440462': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440463': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440464': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440465': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440466': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440467': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1946069': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '60min'}, 'GSM1946068': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '60min'}, 'GSM2486469': {'line': 'NOMO-1'}, 'GSM2486468': {'line': 'NOMO-1'}, 'GSM1946061': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '30min'}, 'GSM1946060': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '30min'}, 'GSM1946063': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '30min'}, 'GSM1946062': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '30min'}, 'GSM1946065': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '30min'}, 'GSM1946064': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '30min'}, 'GSM1946067': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '60min'}, 'GSM1946066': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '60min'}, 'GSM2247679': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247678': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1575579': {'line': 'HeLa', 'construct': 'miR-494'}, 'GSM1575578': {'line': 'HeLa', 'construct': 'miR-494'}, 'GSM1575575': {'line': 'HeLa', 'construct': 'miR-103'}, 'GSM1575574': {'line': 'HeLa', 'construct': 'miR-503'}, 'GSM1575577': {'line': 'HeLa', 'construct': 'miR-103'}, 'GSM1575576': {'line': 'HeLa', 'construct': 'miR-103'}, 'GSM1575571': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'none (mock)'}, 'GSM1575570': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'none (mock)'}, 'GSM1575573': {'line': 'HeLa', 'construct': 'miR-503'}, 'GSM1575572': {'line': 'HeLa', 'construct': 'miR-503'}, 'GSM1631721': {'line': 'GENEA020', 'type': 'human embryonic stem cells (hESCs)'}, 'GSM1631720': {'line': 'GENEA019', 'type': 'human embryonic stem cells (hESCs)'}, 'GSM1414733': {'line': 'H157', 'variation': 'RBM4 overexpression'}, 'GSM1414732': {'line': 'H157', 'variation': 'Wild type'}, 'GSM2677878': {'cells': 'tumor in the head of the pancreas of a 56 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12D, p53-R273H/C, p16-HD, SMAD4-WT'}, 'GSM2677879': {'cells': 'liver metastasis', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R175H, p16-WT, SMAD4-WT'}, 'GSM2677874': {'cells': 'tumor in the head of the pancreas of a 56 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12D, p53-R273H/C, p16-HD, SMAD4-WT'}, 'GSM2677875': {'cells': 'tumor in the head of the pancreas of a 56 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12D, p53-R273H/C, p16-HD, SMAD4-WT'}, 'GSM2677876': {'cells': 'tumor in the head of the pancreas of a 56 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12D, p53-R273H/C, p16-HD, SMAD4-WT'}, 'GSM2677877': {'cells': 'tumor in the head of the pancreas of a 56 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12D, p53-R273H/C, p16-HD, SMAD4-WT'}, 'GSM2677870': {'cells': 'tumor in the body and tail of the pancreas of a 65 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12C, p53-R248W, p16-HD, SMAD4-WT'}, 'GSM2677871': {'cells': 'tumor in the body and tail of the pancreas of a 65 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12C, p53-R248W, p16-HD, SMAD4-WT'}, 'GSM2677872': {'cells': 'tumor in the body and tail of the pancreas of a 65 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12C, p53-R248W, p16-HD, SMAD4-WT'}, 'GSM2677873': {'cells': 'tumor in the head of the pancreas of a 56 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12D, p53-R273H/C, p16-HD, SMAD4-WT'}, 'GSM2256109': {'infected': 'common:TSS11541_+_102133421.23-P1P2', 'type': 'K562'}, 'GSM2256108': {'infected': 'common:TSS11541_-_102133399.23-P1P2', 'type': 'K562'}, 'GSM2256101': {'infected': 'common:TSS39739_-_33895581.23-ENST00000592381', 'type': 'HeLa'}, 'GSM2256100': {'infected': 'common:TSS39739_-_33895303.23-ENST00000592381', 'type': 'HeLa'}, 'GSM2256103': {'infected': 'hela_unique:TSS89257_+_64282224.23-P1P2', 'type': 'HeLa'}, 'GSM2256102': {'infected': 'hela_unique:TSS89257_-_64281967.23-P1P2', 'type': 'HeLa'}, 'GSM2256105': {'infected': 'k562_hela_mcf7:TSS34793_-_85640769.23-CUFF.16540.1', 'type': 'HeLa'}, 'GSM2256104': {'infected': 'k562_hela_mcf7:TSS34793_-_85640780.23-CUFF.16540.1', 'type': 'HeLa'}, 'GSM2256107': {'infected': 'common:TSS80057_+_111496631.23-P1P2', 'type': 'K562'}, 'GSM2256106': {'infected': 'common:TSS80057_-_111496740.23-P1P2', 'type': 'K562'}, 'GSM2374371': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374370': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374373': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374372': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374375': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374374': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374377': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374376': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374379': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374378': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2054149': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2054148': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2054141': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054140': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054143': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2054142': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054145': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2054144': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2054147': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2054146': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2666111': {'age': 'Day 130', 'well': 'E2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1387932': {'line': 'MRC5'}, 'GSM1387933': {'line': 'MRC5'}, 'GSM1387930': {'line': 'MRC5'}, 'GSM1387931': {'line': 'MRC5'}, 'GSM1387936': {'line': 'MRC5'}, 'GSM1387937': {'line': 'MRC5'}, 'GSM1387934': {'line': 'MRC5'}, 'GSM1387935': {'line': 'MRC5'}, 'GSM1387938': {'line': 'MRC5'}, 'GSM1387939': {'line': 'MRC5'}, 'GSM2413467': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1919089': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'Mock', 'point': '24 hours'}, 'GSM1919088': {'line': 'MCF10A', 'treatment': 'without treatment', 'variation': 'Mock'}, 'GSM1890676': {'line': 'HCT116', 'treatment': 'NTC'}, 'GSM1890677': {'line': 'HCT116', 'treatment': 'NTC'}, 'GSM1890678': {'line': 'HCT116', 'treatment': 'NTC'}, 'GSM1890679': {'line': 'HCT116', 'treatment': 'shRNA BRD4 (7)'}, 'GSM1133249': {'line': 'LCL-BACD1'}, 'GSM1133248': {'line': 'LCL-BACD1'}, 'GSM2413465': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2632677': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142559': {'gender': 'male', 'age': '63', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM1133247': {'line': 'LCL-BAC'}, 'GSM2632679': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632678': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2413464': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2090436': {'stimulus': 'CPG', 'donor': '7', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'male'}, 'GSM1102638': {'line': 'Colo320', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM1102639': {'line': 'SW480', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM1102634': {'line': 'HT29', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM1102635': {'line': 'RKO', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM1102636': {'line': 'LS513', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM1102637': {'line': 'Colo205', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM1102630': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '11h'}, 'GSM1102631': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '-'}, 'GSM1338770': {'start': 'NA', 'type': 'K562', 'dna': 'NA', 'group': 'Control', 'time': '10 minutes'}, 'GSM1102633': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '-'}, 'GSM2722291': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS III; pH 8.0; 6mM MnCl2'}, 'GSM2722290': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS III; pH 7.0; 6mM MnCl2'}, 'GSM2722293': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS II; pH 8.0; 6mM MnCl2'}, 'GSM2722292': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS II; pH 7.0; 6mM MnCl2'}, 'GSM2722295': {'subtype': 'poly-A RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'TGIRT; pH 8.3; 3mM MgCl2'}, 'GSM2722294': {'subtype': 'poly-A RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'TGIRT; pH 8.3; 3mM MgCl2'}, 'GSM2722297': {'subtype': 'poly-A RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'Immunoprecipation with anti-m1A antibody (MBL; D345-3 lot 002)', 'condition': 'TGIRT; pH 8.3; 3mM MgCl2'}, 'GSM2722296': {'subtype': 'poly-A RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'Immunoprecipation with anti-m1A antibody (MBL; D345-3 lot 002)', 'condition': 'TGIRT; pH 8.3; 3mM MgCl2'}, 'GSM2722299': {'subtype': 'poly-A RNA', 'treatment': 'Demethylation using purified AlkB', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'Immunoprecipation with anti-m1A antibody (MBL; D345-3 lot 002) followed by demethylase treatment', 'condition': 'TGIRT; pH 8.3; 3mM MgCl2'}, 'GSM2722298': {'subtype': 'poly-A RNA', 'treatment': 'Demethylation using purified AlkB', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'Immunoprecipation with anti-m1A antibody (MBL; D345-3 lot 002) followed by demethylase treatment', 'condition': 'TGIRT; pH 8.3; 3mM MgCl2'}, 'GSM2413463': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2653849': {'gender': 'F', 'passages': 'p7', 'type': 'Human liver tumoral cell'}, 'GSM2653848': {'gender': 'F', 'passages': 'p6', 'type': 'Human liver tumoral cell'}, 'GSM2653843': {'gender': 'F', 'passages': 'p13', 'type': 'Human liver tumoral cell'}, 'GSM2653842': {'gender': 'F', 'passages': 'p13', 'type': 'Human liver tumoral cell'}, 'GSM2653841': {'gender': 'F', 'passages': 'p3', 'type': 'Human liver tumoral cell'}, 'GSM2653840': {'gender': 'M', 'passages': 'p4', 'type': 'Human liver tumoral cell'}, 'GSM2653847': {'gender': 'F', 'passages': 'p6', 'type': 'Human liver tumoral cell'}, 'GSM2653846': {'gender': 'F', 'passages': 'p5', 'type': 'Human liver tumoral cell'}, 'GSM2653845': {'gender': 'F', 'passages': 'p7', 'type': 'Human liver tumoral cell'}, 'GSM2653844': {'gender': 'F', 'passages': 'p8', 'type': 'Human liver tumoral cell'}, 'GSM1533423': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '1280 min'}, 'GSM2170908': {'stage': 'Liver bud 2'}, 'GSM2170909': {'stage': 'Liver bud 2'}, 'GSM2170900': {'stage': 'Liver bud 2'}, 'GSM2170901': {'stage': 'Liver bud 2'}, 'GSM2170902': {'stage': 'Liver bud 2'}, 'GSM2170903': {'stage': 'Liver bud 2'}, 'GSM2170904': {'stage': 'Liver bud 2'}, 'GSM2170905': {'stage': 'Liver bud 2'}, 'GSM2170906': {'stage': 'Liver bud 2'}, 'GSM2170907': {'stage': 'Liver bud 2'}, 'GSM1533422': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '640 min'}, 'GSM2413460': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1553416': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM1553417': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM1553414': {'tissue': 'normal thymus'}, 'GSM1553415': {'tissue': 'normal thymus'}, 'GSM1553412': {'tissue': 'normal thymus'}, 'GSM1553413': {'tissue': 'normal thymus'}, 'GSM1553418': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM1553419': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM2144895': {'replicate': '1', 'line': 'ALL leukemia cell line Nalm6', 'antibody': 'Pol2 Ser2P (Abcam, catalog# ab5095)'}, 'GSM2144894': {'replicate': '1', 'line': 'ALL leukemia cell line Nalm6', 'antibody': 'none'}, 'GSM2144897': {'replicate': '2', 'line': 'ALL leukemia cell line Nalm6', 'antibody': 'none'}, 'GSM2144896': {'replicate': '1', 'line': 'ALL leukemia cell line Nalm6', 'antibody': 'Pol2 Ser5P (Abcam, catalog# ab5131)'}, 'GSM2392263': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392262': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392261': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392260': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2144899': {'replicate': '2', 'line': 'ALL leukemia cell line Nalm6', 'antibody': 'Pol2 Ser5P (Abcam, catalog# ab5131)'}, 'GSM2144898': {'replicate': '2', 'line': 'ALL leukemia cell line Nalm6', 'antibody': 'Pol2 Ser2P (Abcam, catalog# ab5095)'}, 'GSM2392269': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392268': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2948486': {'differentiation': 'iPSC-derived Neural Crest Stem Cells', 'harvested': '11 to 14 days to NSCS', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2948487': {'differentiation': 'iPSC-derived Neural Crest Stem Cells', 'harvested': '11 to 14 days to NSCS', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2948485': {'differentiation': 'iPSC-derived Neural Crest Stem Cells', 'harvested': '11 to 14 days to NSCS', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2948488': {'differentiation': 'NCSC treated with MesenPRO with Heregulin', 'harvested': '11 to 14 days to NCSC, then 40 days in MesenPRO with Heregulin media', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2948489': {'differentiation': 'NCSC treated with MesenPRO with Heregulin', 'harvested': '11 to 14 days to NCSC, then 40 days in MesenPRO with Heregulin media', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2596469': {'state': 'Blau syndrome', 'type': 'iPSC-derived macrophage', 'treatment': 'No'}, 'GSM2711248': {'tissue': 'Meningioma tumor'}, 'GSM2711249': {'tissue': 'Meningioma tumor'}, 'GSM2711240': {'tissue': 'Meningioma tumor'}, 'GSM2711241': {'tissue': 'Meningioma tumor'}, 'GSM2711242': {'tissue': 'Meningioma tumor'}, 'GSM2711243': {'tissue': 'Meningioma tumor'}, 'GSM2711244': {'tissue': 'Meningioma tumor'}, 'GSM2711245': {'tissue': 'Meningioma tumor'}, 'GSM2711246': {'tissue': 'Meningioma tumor'}, 'GSM2711247': {'tissue': 'Meningioma tumor'}, 'GSM2190568': {'line': 'A1847'}, 'GSM2190569': {'line': 'OVCAR5'}, 'GSM2712769': {'line': 'HCT116', 'antibody': 'H3K4me2 (Abcam, ab7766)', 'treatment': 'largazole 300nM', 'disease': 'colorectal carcinoma'}, 'GSM2190560': {'line': 'A1847'}, 'GSM2190561': {'line': 'A1847'}, 'GSM2190562': {'line': 'A2780'}, 'GSM2190563': {'line': 'A2780'}, 'GSM2190564': {'line': 'A2780'}, 'GSM2190565': {'line': 'A1847'}, 'GSM2190566': {'line': 'A1847'}, 'GSM2190567': {'line': 'A1847'}, 'GSM1658382': {'ssea4': '-', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': '+', 'cd13': '-'}, 'GSM1658383': {'ssea4': '-', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': '+', 'cd13': '+'}, 'GSM1617468': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617469': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1658386': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': '-', 'cd13': '-'}, 'GSM1658387': {'ssea4': '-', 'line': 'Detroit 551', 'tra160': '-', 'gfp': '+', 'cd13': 'NA'}, 'GSM1658384': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': '+', 'cd13': '+'}, 'GSM1658385': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': '+', 'cd13': '-'}, 'GSM1617462': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617463': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617460': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617461': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617466': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617467': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617464': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617465': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1647041': {'illumina_index': '2', 'point': '4', 'batch': '8', 'agent': 'Rv', 'rin': '9', 'individual': 'M377'}, 'GSM2033072': {'line': 'MCF7', 'treatment': 'none', 'variation': 'stable knockdown of p53'}, 'GSM2033073': {'line': 'MCF7', 'treatment': 'none', 'variation': 'stable knockdown of p53'}, 'GSM2455623': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455622': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1055824': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'PolII (Santa Cruz sc-899)', 'treatment': 'flavopiridol (1μM, 1hr)'}, 'GSM1055825': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'CTCF (Millipore 07-729)', 'treatment': 'no treat'}, 'GSM2455627': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1055823': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'PolII (Santa Cruz sc-899)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM2455625': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1055821': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K36me3 (Abcam ab9050)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM2455629': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455628': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2221668': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'small RNA'}, 'GSM2221669': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'polyA+ RNA'}, 'GSM2221662': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'small RNA'}, 'GSM2221663': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'small RNA'}, 'GSM2221660': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'small RNA'}, 'GSM2221661': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'small RNA'}, 'GSM2221666': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'small RNA'}, 'GSM2221667': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'small RNA'}, 'GSM2221664': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'small RNA'}, 'GSM2221665': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'small RNA'}, 'GSM1659033': {'patient': 'Brx-11'}, 'GSM1659032': {'patient': 'Brx-11'}, 'GSM1659031': {'patient': 'Brx-11'}, 'GSM1659030': {'patient': 'Brx-11'}, 'GSM2348707': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1659036': {'patient': 'Brx-11'}, 'GSM1659035': {'patient': 'Brx-11'}, 'GSM1659034': {'patient': 'Brx-11'}, 'GSM2565007': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2565006': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565005': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2565004': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2565003': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM2565002': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2565001': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2565000': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2350351': {'tissue': 'Blood', 'type': 'BDCA-3hiDCs'}, 'GSM2350350': {'tissue': 'Blood', 'type': 'BDCA-3hiDCs'}, 'GSM2350353': {'tissue': 'Blood', 'type': 'BDCA-3hiDCs'}, 'GSM2350352': {'tissue': 'Blood', 'type': 'BDCA-3hiDCs'}, 'GSM2350355': {'tissue': 'Cord Blood', 'type': 'preDCs-CD172a-'}, 'GSM2350354': {'tissue': 'Cord Blood', 'type': 'preDCs-CD172a-'}, 'GSM2350357': {'tissue': 'Cord Blood', 'type': 'preDCs-CD172a-'}, 'GSM2350356': {'tissue': 'Cord Blood', 'type': 'preDCs-CD172a-'}, 'GSM2350359': {'tissue': 'Cord Blood', 'type': 'preDCs-CD172a+'}, 'GSM2350358': {'tissue': 'Cord Blood', 'type': 'preDCs-CD172a+'}, 'GSM2307221': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307220': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307223': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307222': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307225': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307224': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307227': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307226': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307229': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307228': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2937088': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2937089': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2937084': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2937085': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM2937086': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM2937087': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2937080': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM2937081': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM2937082': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM2937083': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2666124': {'age': 'Day 130', 'well': 'G7', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2526738': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526739': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2046838': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K27ac (2ug Abcam, AB4729)', 'agasga': 'SGA'}, 'GSM2046839': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K27ac (2ug Abcam, AB4729)', 'agasga': 'SGA'}, 'GSM2046836': {'type': 'Mesenchymal stem cells', 'cells': '8 million', 'antibody': 'E2F1 (10ug Santa Cruz, sc-193X)', 'agasga': 'AGA'}, 'GSM2046837': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K27ac (2ug Abcam, AB4729)', 'agasga': 'SGA'}, 'GSM2046834': {'type': 'Mesenchymal stem cells', 'cells': '8 million', 'antibody': 'E2F1 (10ug Santa Cruz, sc-193X)', 'agasga': 'AGA'}, 'GSM2046835': {'type': 'Mesenchymal stem cells', 'cells': '8 million', 'antibody': 'E2F1 (10ug Santa Cruz, sc-193X)', 'agasga': 'AGA'}, 'GSM2046832': {'type': 'Mesenchymal stem cells', 'cells': '8 million', 'antibody': 'E2F1 (10ug Santa Cruz, sc-193X)', 'agasga': 'SGA'}, 'GSM2046833': {'type': 'Mesenchymal stem cells', 'cells': '8 million', 'antibody': 'E2F1 (10ug Santa Cruz, sc-193X)', 'agasga': 'SGA'}, 'GSM2046831': {'type': 'Mesenchymal stem cells', 'cells': '8 million', 'antibody': 'E2F1 (10ug Santa Cruz, sc-193X)', 'agasga': 'SGA'}, 'GSM2112782': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 hours'}, 'GSM2112783': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '12 hours'}, 'GSM2112780': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM Estradiol', 'time': '12 hours'}, 'GSM2112781': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM R5020', 'time': '12 hours'}, 'GSM2112786': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 hours'}, 'GSM2112787': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': 'Vehicle', 'time': '12 hours'}, 'GSM2112784': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM Estradiol', 'time': '12 hours'}, 'GSM2112785': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM R5020', 'time': '12 hours'}, 'GSM2112788': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10 nM Estradiol', 'time': '12 hours'}, 'GSM1006902': {'description': 'Paired 36 nt reads', 'localization': 'cell', 'datatype': 'RnaPet', 'labexpid': 'RHA009,RHA010', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'clone-free', 'biorep': '087WC,088WC'}, 'GSM2241565': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2666126': {'age': 'Day 130', 'well': 'G3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666110': {'age': 'Day 130', 'well': 'E6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666127': {'age': 'Day 130', 'well': 'E1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000288'}, 'GSM1290723': {'type': 'primary fibroblasts', 'description': 'healthy parent T1'}, 'GSM1290724': {'type': 'primary fibroblasts', 'description': 'healthy parent T2'}, 'GSM1290725': {'type': 'primary fibroblasts', 'description': 'child patient T3 (microcephaly)'}, 'GSM1290726': {'type': 'primary fibroblasts', 'description': 'child patient T4 (microcephaly)'}, 'GSM2193213': {'donor': 'Human (donor E)', 'type': 'Placenta'}, 'GSM2193212': {'donor': 'Human (donor E)', 'type': 'Ovary'}, 'GSM2193211': {'donor': 'Human (donor E)', 'type': 'Liver'}, 'GSM2193210': {'donor': 'Human (donor E)', 'type': 'Heart'}, 'GSM2666120': {'age': 'Day 130', 'well': 'B10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2170722': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2486699': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2666121': {'age': 'Day 130', 'well': 'B6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM749466': {'length': '35 bp', 'vendor': '6050', 'composition': 'Several brain regions from 23 adult donors'}, 'GSM749467': {'length': '100 bp', 'vendor': '740000', 'composition': '10 human cell lines of various origins (B lymphocyte, brain, breast, cervix, liposarcoma, liver, macrophage, skin, testis, and T lymphocyte)'}, 'GSM2113431': {'line': 'LNT-229', 'tissue': 'Brain tumor cell line', 'treatment': 'Cells following treatment with Decitabine'}, 'GSM749465': {'length': '35 bp', 'vendor': '740000', 'composition': '10 human cell lines of various origins (B lymphocyte, brain, breast, cervix, liposarcoma, liver, macrophage, skin, testis, and T lymphocyte)'}, 'GSM2113437': {'line': 'U-87', 'tissue': 'Brain tumor cell line', 'treatment': 'Not treated'}, 'GSM2113436': {'line': 'U-87', 'tissue': 'Brain tumor cell line', 'treatment': 'Not treated'}, 'GSM2113435': {'line': 'T98G', 'tissue': 'Brain tumor cell line', 'treatment': 'Cells following treatment with Decitabine'}, 'GSM2113434': {'line': 'T98G', 'tissue': 'Brain tumor cell line', 'treatment': 'Cells following treatment with Decitabine'}, 'GSM1063290': {'region': 'temporal cortex', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '4'}, 'GSM1063291': {'region': 'frontal cortex', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '4'}, 'GSM1063292': {'region': 'Hippocampus', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '4'}, 'GSM1063293': {'region': 'Putamen', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '4'}, 'GSM1063294': {'region': 'frontal cortex', 'death': '91 years', 'tissue': 'Post morten brain', 'id': '1'}, 'GSM1063295': {'region': 'temporal cortex', 'death': '91 years', 'tissue': 'Post morten brain', 'id': '1'}, 'GSM749468': {'length': '100 bp', 'vendor': '6050', 'composition': 'Several brain regions from 23 adult donors'}, 'GSM1063297': {'region': 'Caudate', 'death': '91 years', 'tissue': 'Post morten brain', 'id': '1'}, 'GSM2348502': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565209': {'construction': 'PLATE-Seq', 'drug': 'Letrozole'}, 'GSM2348504': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348507': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2666123': {'age': 'Day 130', 'well': 'A7', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2348506': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348509': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2643619': {'antibody': 'HA (ab9110)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9(B)_HA'}, 'GSM2643618': {'antibody': 'V5 (ab9116)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'ChimpPRDM9(W11a)_V5'}, 'GSM2643617': {'antibody': 'HA (ab9110)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'ChimpPRDM9(W11a)_HA'}, 'GSM2643616': {'antibody': 'None', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9(B)_HA'}, 'GSM2643615': {'antibody': 'None', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM2643614': {'antibody': 'H3K4me3 (Abcam ab8580)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'YFP_HumanPRDM9'}, 'GSM2643613': {'antibody': 'None', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'YFP_HumanPRDM9(B)'}, 'GSM2643612': {'antibody': 'GFP (Abcam ab290)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'YFP_HumanPRDM9(B)'}, 'GSM2643611': {'antibody': 'GFP (Abcam ab290)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'YFP_HumanPRDM9(B)'}, 'GSM2243469': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1273635': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2718928': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718929': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM1530029': {'line': 'MCF-7 breast adenocarcinoma cell line', 'description': 'Parental cell line', 'agent': 'vehicle control'}, 'GSM1273634': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2718922': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718923': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718920': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718921': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718926': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718927': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718924': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718925': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM1528212': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528213': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528210': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528211': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM2565203': {'construction': 'PLATE-Seq', 'drug': 'Doxorubicin'}, 'GSM1464303': {'status': 'small cell lung cancer'}, 'GSM2392437': {'status': 'CREBBP+/-'}, 'GSM2233315': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2565202': {'construction': 'PLATE-Seq', 'drug': 'Afatinib'}, 'GSM2535637': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1097', 'samplename': '1_413UNST_C21', 'seqsite': 'BRI', 'sampleID': 'S13233', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1097', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C21'}, 'GSM2233314': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1430908': {'line': 'Ls174T'}, 'GSM1430909': {'line': 'Ls174T'}, 'GSM2243467': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2233317': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2891094': {'line': 'SW480', 'experiment': 'Mono', 'variation': 'case (siSF3B1)'}, 'GSM2243460': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2891096': {'line': 'SW480', 'experiment': 'Mono', 'variation': 'case (siSF3B1)'}, 'GSM2233316': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2891090': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'case (siSRSF1)'}, 'GSM2891091': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'control (siNT)'}, 'GSM2891092': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'case (siSRSF1)'}, 'GSM2392433': {'status': 'CREBBP+/+'}, 'GSM2243462': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243463': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2667985': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM1431059': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'wildtype', 'agent': 'none'}, 'GSM1431058': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'wildtype', 'agent': 'none'}, 'GSM2667984': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM1431057': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'wildtype', 'agent': 'none'}, 'GSM1431056': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'wildtype', 'agent': 'none'}, 'GSM2667987': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2'}, 'GSM1276856': {'score': '8.6', 'sequence': 'ACAGTG', 'targeted': 'SRSF3', 'number': '5', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2449219': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'overexpressing LIN28A'}, 'GSM2449218': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'overexpressing LIN28A'}, 'GSM1276857': {'score': '9.3', 'sequence': 'ATCACG', 'targeted': 'SRSF3', 'number': '1', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2449213': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'control'}, 'GSM2449212': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'control'}, 'GSM2449211': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'control'}, 'GSM2449210': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'control'}, 'GSM2449217': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'overexpressing LIN28A'}, 'GSM2449216': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'overexpressing LIN28A'}, 'GSM2449215': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'control'}, 'GSM1588875': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM2718777': {'with': 'CB-5083', 'line': 'RPMI-8226', 'type': 'multiple myeloma cell line'}, 'GSM1276855': {'score': '9.3', 'sequence': 'ACTGAT', 'targeted': 'SRSF3', 'number': '25', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2771769': {'aspiration': '2nd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_16', 'structure': 'neurite'}, 'GSM2771768': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_16', 'structure': 'neurite'}, 'GSM2718776': {'with': 'DMSO', 'line': 'RPMI-8226', 'type': 'multiple myeloma cell line'}, 'GSM2771765': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_14', 'structure': 'cell body'}, 'GSM2771764': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_13', 'structure': 'neurite'}, 'GSM2771767': {'aspiration': '3rd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_15', 'structure': 'cell body'}, 'GSM2771766': {'aspiration': '2nd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_15', 'structure': 'neurite'}, 'GSM2771761': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_11', 'structure': 'neurite'}, 'GSM2771760': {'aspiration': '2nd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_10', 'structure': 'neurite'}, 'GSM2771763': {'aspiration': '2nd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_12', 'structure': 'neurite'}, 'GSM2771762': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_12', 'structure': 'neurite'}, 'GSM2816213': {'line': 'H9'}, 'GSM1012776': {'phase': 'S0', 'cells': 'none', 'antibody': 'IgG', 'line': 'HeLa Cells'}, 'GSM786007': {'line': 'DG75', 'type': 'untagged RNA', 'plasmid': 'eGFP'}, 'GSM2816210': {'line': 'H9'}, 'GSM786001': {'line': 'DG75', 'type': 'nascent RNA', 'plasmid': 'eGFP'}, 'GSM2816216': {'line': 'H9'}, 'GSM786003': {'line': 'DG75', 'type': 'nascent RNA', 'plasmid': 'eGFP'}, 'GSM2816214': {'line': 'H9'}, 'GSM2303405': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2816219': {'line': 'H9'}, 'GSM2816218': {'line': 'H9'}, 'GSM2303404': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2718771': {'with': 'Bortezomib', 'line': 'AMO-1', 'type': 'multiple myeloma cell line'}, 'GSM2718770': {'with': 'CB-5083', 'line': 'AMO-1', 'type': 'multiple myeloma cell line'}, 'GSM2029255': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029254': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029257': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029256': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029251': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029250': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029253': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029252': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029259': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029258': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM1722611': {'antibody': 'none', 'variation': 'KO'}, 'GSM2510258': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510259': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510256': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510257': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510254': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510255': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM1974236': {'type': 'fetal hepatocytes'}, 'GSM2510253': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510250': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2098999': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'wild type control from community', 'passage': 'P6'}, 'GSM2550240': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2501173': {'status': 'pediatric brain tumor patient', 'tissue': 'normal brain', 'variation': 'H3.3WT; Low pdgfra'}, 'GSM2501175': {'status': 'pediatric brain tumor patient', 'tissue': 'normal brain', 'variation': 'H3.3WT; Low pdgfra'}, 'GSM2501174': {'status': 'pediatric brain tumor patient', 'tissue': 'normal brain', 'variation': 'H3.3WT; Low pdgfra'}, 'GSM2501177': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3WT; Low pdgfra'}, 'GSM2501176': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3WT; Low pdgfra'}, 'GSM2501179': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3WT; Low pdgfra'}, 'GSM2501178': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3WT; Low pdgfra'}, 'GSM1464305': {'status': 'small cell lung cancer'}, 'GSM1832740': {'status': 'Transduction with lentiviral particles for expression of the AR-V7', 'line': 'LNCaP', 'type': 'Prostate cancer cell line', 'fluorescence': 'EGFP'}, 'GSM1832741': {'status': 'Transduction with lentiviral particles for expression of the AR-V7', 'line': 'LNCaP', 'type': 'Prostate cancer cell line', 'fluorescence': 'EGFP'}, 'GSM2759024': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'Normal mouse IgG (Santa Cruz Biotechnology sc-2025)', 'transfection': 'U1'}, 'GSM2312218': {'culture': '12', 'line': 'DCX-'}, 'GSM2312219': {'culture': '12', 'line': 'DCX-'}, 'GSM2312212': {'culture': '12', 'line': 'DCX-'}, 'GSM2312213': {'culture': '12', 'line': 'DCX-'}, 'GSM2312210': {'culture': '12', 'line': 'DCX-'}, 'GSM2312211': {'culture': '12', 'line': 'DCX-'}, 'GSM2312216': {'culture': '12', 'line': 'DCX-'}, 'GSM2312217': {'culture': '12', 'line': 'DCX-'}, 'GSM2312214': {'culture': '12', 'line': 'DCX-'}, 'GSM2312215': {'culture': '12', 'line': 'DCX-'}, 'GSM2056831': {'knockdown': 'TAF15', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '4hr'}, 'GSM2056830': {'knockdown': 'FUS', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '4hr'}, 'GSM1297651': {'differentiation': 'Differentiation 2, full confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM1297650': {'differentiation': 'Differentiation 2, full confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM2084153': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM2084152': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'IL-13R Antagonist', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084151': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'IL-13R Antagonist', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084150': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'IL-13R Antagonist', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM1297653': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 0'}, 'GSM2084155': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM2084154': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM1297652': {'differentiation': 'Differentiation 2, full confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM2575420': {'line': 'WM983B', 'subclone': 'E10', 'condition': 'Drug'}, 'GSM2575421': {'line': 'WM983B', 'subclone': 'B3', 'condition': 'NoDrug'}, 'GSM2575422': {'line': 'WM983B', 'subclone': 'B3', 'condition': 'Drug'}, 'GSM2575423': {'line': 'WM983B', 'subclone': 'G6', 'condition': 'NoDrug'}, 'GSM2575424': {'line': 'WM983B', 'subclone': 'G6', 'condition': 'Drug'}, 'GSM2575425': {'line': 'WM983B', 'subclone': 'B4', 'condition': 'NoDrug'}, 'GSM2575426': {'line': 'WM983B', 'subclone': 'B4', 'condition': 'Drug'}, 'GSM1297654': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 0'}, 'GSM2158256': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM1297657': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 3'}, 'GSM1297656': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 3'}, 'GSM2550458': {'state': 'control', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 0'}, 'GSM2550459': {'state': 'control', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 0'}, 'GSM2550450': {'donor': 'A', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM1846629': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM2550456': {'state': 'Idiopathic Pulmonary Fibrosis (IPF)', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 0'}, 'GSM2550457': {'state': 'Idiopathic Pulmonary Fibrosis (IPF)', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 0'}, 'GSM2616695': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2360268': {'type': 'CD14+/CD16-', 'treatment': 'None'}, 'GSM2360269': {'type': 'CD14+/CD16-', 'treatment': 'None'}, 'GSM2360266': {'type': 'CD14+/CD16-', 'treatment': 'None'}, 'GSM2360267': {'type': 'CD14+/CD16-', 'treatment': 'None'}, 'GSM2360264': {'type': 'iPS', 'treatment': 'None'}, 'GSM2360265': {'type': 'CD14+/CD16-', 'treatment': 'None'}, 'GSM2360262': {'type': 'iPS', 'treatment': 'None'}, 'GSM2360263': {'type': 'iPS', 'treatment': 'None'}, 'GSM2360260': {'type': 'iHPC', 'treatment': 'None'}, 'GSM2360261': {'type': 'iPS', 'treatment': 'None'}, 'GSM2141392': {'individual': 'EU76', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2616691': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2141394': {'individual': 'EU78', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1520021': {'to': '2.5 µM GNF-2', 'line': 'CML cell line KCL-22', 'treatment': 'ClonTracer-barcoded KCL-22 cell population was treated with 2.5 µM GNF-2 for 21 days to acquire GNF-2-resistant cell population.'}, 'GSM1520020': {'to': '0.3 µM nilotinib', 'line': 'CML cell line KCL-22', 'treatment': 'ClonTracer-barcoded KCL-22 cell population was treated with 0.3 µM nilotinib for 27 days to acquire nilotinib-resistant cell population.'}, 'GSM1520023': {'to': '2.5 µM imatinib/0.3 µM nilotinib/2.5 µM GNF-2', 'line': 'CML cell line KCL-22', 'treatment': 'Single clone was isolated from 2.5 µM GNF-2-resistant ClonTracer-barcoded KCL-22 subpopulation and expanded. This clone is never exposed to catalytic BCR-ABL inhibitors.'}, 'GSM1520022': {'to': '2.5 µM GNF-2', 'line': 'CML cell line KCL-22', 'treatment': 'Single clone was isolated from 2.5 µM GNF-2-resistant ClonTracer-barcoded KCL-22 subpopulation and expanded. This clone is never exposed to catalytic BCR-ABL inhibitors.'}, 'GSM1520025': {'to': '2.5 µM imatinib/0.3 µM nilotinib', 'line': 'CML cell line KCL-22', 'treatment': 'Single clone was isolated from 2.5 µM imatinib-resistant ClonTracer-barcoded KCL-22 subpopulation and expanded. This clone is never exposed to allosteric BCR-ABL inhibitors.'}, 'GSM1520024': {'to': '2.5 µM GNF-2', 'line': 'CML cell line KCL-22', 'treatment': 'Single clone was isolated from 2.5 µM GNF-2-resistant ClonTracer-barcoded KCL-22 subpopulation and expanded. This clone is never exposed to catalytic BCR-ABL inhibitors.'}, 'GSM2616692': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2523085': {'type': 'cell line', 'genotype': 'DNMT3BV699G/R54X'}, 'GSM2523084': {'type': 'cell line', 'genotype': 'DNMT3BA603T/STP807ins'}, 'GSM2732878': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732879': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732874': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732875': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732876': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732877': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732870': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732871': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732872': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732873': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2334829': {'donor': 'male', 'line': 'U266', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334828': {'donor': 'male', 'line': 'RPMI-8226', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334825': {'donor': 'male', 'line': 'U266', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334824': {'donor': 'male', 'line': 'RPMI-8226', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334827': {'donor': 'male', 'line': 'RPMI-8226', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334826': {'donor': 'male', 'line': 'RPMI-8226', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2551329': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551328': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2172038': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172039': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048643': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2172033': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172030': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172031': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172036': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2048646': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2551327': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2172035': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2451168': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451169': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2464650': {'with': 'scrambled control shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '2', 'populatione': 'CD45+GFP+CD7+CD1a- T-cell precursors'}, 'GSM2464651': {'with': 'scrambled control shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '2', 'populatione': 'CD45+GFP+CD7+CD1a+ T-cell precursors'}, 'GSM2464656': {'with': 'BCL11B knockdown shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '3', 'populatione': 'CD45+GFP+CD7+CD1a- T-cell precursors'}, 'GSM2464657': {'with': 'BCL11B knockdown shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '3', 'populatione': 'CD45+GFP+CD7+CD1a+ T-cell precursors'}, 'GSM2100008': {'rin': '10', 'Sex': 'Female', 'sspg': '203', 'age': '63', 'bmi': '31.7', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '178', 'method': 'Life-Tech GITC'}, 'GSM2100009': {'rin': '9', 'Sex': 'Female', 'sspg': '203', 'age': '63', 'bmi': '31.7', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '178', 'method': 'Life-Tech GITC'}, 'GSM2100006': {'rin': '10', 'Sex': 'Female', 'sspg': '98', 'age': '54', 'bmi': '28', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '135', 'method': 'Life-Tech GITC'}, 'GSM2100007': {'rin': '10', 'Sex': 'Female', 'sspg': '98', 'age': '54', 'bmi': '28', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '135', 'method': 'Life-Tech GITC'}, 'GSM2100004': {'rin': '9.4', 'Sex': 'Female', 'sspg': '80', 'age': '57', 'bmi': '27.7', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '211', 'method': 'Qiagen:trizol'}, 'GSM2100005': {'rin': '10', 'Sex': 'Female', 'sspg': '98', 'age': '54', 'bmi': '28', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '135', 'method': 'Life-Tech GITC'}, 'GSM2100002': {'rin': '9.3', 'Sex': 'Male', 'sspg': '216', 'age': '53', 'bmi': '25.9', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '134', 'method': 'Qiagen:trizol'}, 'GSM2100003': {'rin': '8.7', 'Sex': 'Male', 'sspg': '216', 'age': '53', 'bmi': '25.9', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '134', 'method': 'Qiagen:trizol'}, 'GSM2100000': {'rin': '10', 'Sex': 'Female', 'sspg': '174', 'age': '63', 'bmi': '28.1', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '123', 'method': 'Life-Tech GITC'}, 'GSM2451167': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2544008': {'library_id': 'lib8316', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544009': {'library_id': 'lib8317', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544002': {'library_id': 'lib8308', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544003': {'library_id': 'lib8309', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544000': {'library_id': 'lib8306', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544001': {'library_id': 'lib8307', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544006': {'library_id': 'lib8314', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544007': {'library_id': 'lib8315', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544004': {'library_id': 'lib8310', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544005': {'library_id': 'lib8311', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1552217': {'line': 'HeLa'}, 'GSM1552216': {'line': 'HeLa'}, 'GSM1552215': {'line': 'HeLa'}, 'GSM1552214': {'line': 'HeLa'}, 'GSM1552213': {'line': 'HeLa'}, 'GSM1552212': {'line': 'HeLa'}, 'GSM1552211': {'line': 'HeLa', 'antibody': 'AGO2 (ab57113, Abcam)'}, 'GSM1552210': {'line': 'HeLa', 'antibody': 'AGO2 (ab57113, Abcam)'}, 'GSM2786550': {'line': 'OCILY18'}, 'GSM2786551': {'line': 'OCILY19'}, 'GSM2786552': {'line': 'OCILY7'}, 'GSM2786553': {'line': 'OCILY8'}, 'GSM2786554': {'line': 'RCK8'}, 'GSM2786555': {'line': 'REC1'}, 'GSM2411944': {'line': '13352A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2786557': {'line': 'SP49'}, 'GSM2786558': {'line': 'SP53'}, 'GSM2786559': {'line': 'SSK41'}, 'GSM2411948': {'line': '14685A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411949': {'line': '14685B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2171938': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2204674': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204675': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204676': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2171939': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2204670': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204671': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1836588': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836589': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836586': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836587': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U6'}, 'GSM1836584': {'expression_construct': 'TOE1WT/A103T', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U5'}, 'GSM1836585': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U5'}, 'GSM1836582': {'expression_construct': 'TOE1F148Y/F148Y', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U5'}, 'GSM1836583': {'expression_construct': 'TOE1A103T/A103T', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U5'}, 'GSM1836580': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U5'}, 'GSM1836581': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U5'}, 'GSM2316726': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM1047588': {'line': 'BJ cells', 'protocol': 'BJ cells expressing hTERT and tamoxifen-inducible RASG12V were cultured in the presence of 10-7M 4-OHT-Tamoxifen for 5 days', 'condition': 'pre-senescence; 5 dys after RASG12V induction'}, 'GSM1047589': {'line': 'BJ cells', 'condition': 'Proliferation, normal conditions'}, 'GSM2284018': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284019': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2316727': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2284014': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2171936': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2284016': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284017': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM1047586': {'line': 'BJ cells', 'condition': 'Quiescence induced by serum depletion'}, 'GSM1047587': {'line': 'BJ cells', 'condition': 'Quiescence induced by serum depletion'}, 'GSM1047584': {'line': 'BJ cells', 'condition': 'Proliferation, normal conditions'}, 'GSM1047585': {'line': 'BJ cells', 'condition': 'Proliferation, normal conditions'}, 'GSM2481903': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481902': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM3381395': {'gender': 'male', 'tissue': 'adenocarcinoma', 'time': 'living'}, 'GSM2058073': {'line': 'V410', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058072': {'line': 'V389', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2481907': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481906': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481905': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481904': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM1492937': {'age': '20 years old', 'tissue': 'primary bone marrow derived mesenchymal progenitor cells'}, 'GSM2175958': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175959': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175954': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175955': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175956': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175957': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1492939': {'age': '16 years old', 'tissue': 'primary bone marrow derived mesenchymal progenitor cells'}, 'GSM1492938': {'age': '20 years old', 'tissue': 'primary bone marrow derived mesenchymal progenitor cells'}, 'GSM2175952': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175953': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1891805': {'type': 'Fibroblast cells'}, 'GSM1891806': {'type': 'somatic cell nuclear transfer embryos at 8-cell stages'}, 'GSM2233129': {'line': 'TOV21G', 'experiment': 'control', 'type': 'shRNA', 'treatment': 'shControl'}, 'GSM1891808': {'type': '8-cell IVF embryos'}, 'GSM1891809': {'type': 'Control human ES cells'}, 'GSM2141654': {'individual': 'EU248', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141655': {'individual': 'EU248', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141656': {'individual': 'EU252', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141657': {'individual': 'EU252', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141650': {'individual': 'EU242', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141651': {'individual': 'EU246', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141652': {'individual': 'EU246', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141653': {'individual': 'EU248', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141658': {'individual': 'EU254', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141659': {'individual': 'EU254', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2199361': {'status': 'Head and neck squamous cell carcinoma (HNSCC) patient', 'type': 'normal fibroblasts (NF) from unaffected skin', 'id': 'patient 2'}, 'GSM2199360': {'status': 'Head and neck squamous cell carcinoma (HNSCC) patient', 'type': 'cancer associated fibroblasts (CAF)', 'id': 'patient 2'}, 'GSM2199363': {'status': 'Head and neck squamous cell carcinoma (HNSCC) patient', 'type': 'normal fibroblasts (NF) from unaffected skin', 'id': 'patient 3'}, 'GSM2199362': {'status': 'Head and neck squamous cell carcinoma (HNSCC) patient', 'type': 'cancer associated fibroblasts (CAF)', 'id': 'patient 3'}, 'GSM2565292': {'construction': 'PLATE-Seq', 'drug': 'Tetrindole mesylate'}, 'GSM2543658': {'library_id': 'lib5787', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2842542': {'source': 'brain', 'line': 'U-251MG', 'type': 'human glioblastoma cell line', 'variation': 'wild type'}, 'GSM2842543': {'source': 'brain', 'line': 'U-251MG', 'type': 'human glioblastoma cell line', 'variation': 'AXL-/-'}, 'GSM2842540': {'source': 'brain', 'line': 'U-251MG', 'type': 'human glioblastoma cell line', 'variation': 'wild type'}, 'GSM2842541': {'source': 'brain', 'line': 'U-251MG', 'type': 'human glioblastoma cell line', 'variation': 'wild type'}, 'GSM2842544': {'source': 'brain', 'line': 'U-251MG', 'type': 'human glioblastoma cell line', 'variation': 'AXL-/-'}, 'GSM2842545': {'source': 'brain', 'line': 'U-251MG', 'type': 'human glioblastoma cell line', 'variation': 'AXL-/-'}, 'GSM2543656': {'library_id': 'lib5785', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543657': {'library_id': 'lib5786', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543654': {'library_id': 'lib5775', 'stim': 'DM', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511564': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543652': {'library_id': 'lib5773', 'stim': 'CR', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1446212': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK and EGFR'}, 'GSM2543653': {'library_id': 'lib5774', 'stim': 'TT', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543650': {'library_id': 'lib5771', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543651': {'library_id': 'lib5772', 'stim': 'NS', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2730061': {'with': 'Control siRNA', 'line': 'H460', 'type': 'Non-small cell lung cancer cell line (NSCLC)'}, 'GSM2158348': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158349': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2730060': {'with': 'Control siRNA', 'line': 'H460', 'type': 'Non-small cell lung cancer cell line (NSCLC)'}, 'GSM2158344': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158345': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158346': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158347': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158340': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158341': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158342': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158343': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2730062': {'with': 'FGF13 siRNAs', 'line': 'H460', 'type': 'Non-small cell lung cancer cell line (NSCLC)'}, 'GSM1704521': {'protocol': '40 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2494163': {'with': '13nM H3B-8800 for 6hrs', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM2494162': {'with': '13nM H3B-8800 for 6hrs', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM2494161': {'with': '15nM E7107 for 6hrs', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM2494160': {'with': '15nM E7107 for 6hrs', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM2494164': {'with': '13nM H3B-8800 for 6hrs', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM2693348': {'gender': 'Male', 'age': '16 weeks', 'type': 'CD3+,CD45 + T-cells'}, 'GSM2693349': {'gender': 'Male', 'age': '20 weeks', 'type': 'CD3+,CD45 + T-cells'}, 'GSM2693346': {'gender': 'Male', 'age': 'Mature reference (adult human)', 'type': 'CD3+,CD45 + T-cells'}, 'GSM2693347': {'gender': 'Male', 'age': '8 weeks', 'type': 'CD3+,CD45 + T-cells'}, 'GSM2124800': {'type': 'non-tumor CD11b+ microglia samples'}, 'GSM898966': {'cells': 'RPE isolated from 16 weeks gestation human fetus', 'resistance': '600 ± 30 ohm*cm^2'}, 'GSM898967': {'cells': 'RPE isolated from 16 weeks gestation human fetus', 'resistance': '740 ± 55 ohm*cm^2'}, 'GSM898968': {'cells': 'hESC H1 line - derived RPE', 'resistance': '150 ± 20 ohm*cm^2'}, 'GSM898969': {'cells': 'hESC H1 line - derived RPE', 'resistance': '155 ± 20 ohm*cm^2'}, 'GSM2212710': {'gender': 'female', 'condition': 'control'}, 'GSM2212711': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212712': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212713': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212714': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212715': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2212716': {'gender': 'male', 'condition': 'control'}, 'GSM2212717': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212718': {'gender': 'female', 'condition': 'control'}, 'GSM2212719': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2730123': {'type': 'Flash frozen liver tissue'}, 'GSM2730124': {'type': 'Flash frozen liver tissue'}, 'GSM2730125': {'type': 'Flash frozen liver tissue'}, 'GSM2730126': {'type': 'Flash frozen liver tissue'}, 'GSM2730127': {'type': 'Flash frozen liver tissue'}, 'GSM2730128': {'type': 'Flash frozen liver tissue'}, 'GSM2730129': {'type': 'Flash frozen liver tissue'}, 'GSM2072174': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROhighCCR7lowCXCR5high'}, 'GSM2443369': {'gender': 'male', 'age': '47', 'type': 'A'}, 'GSM2443368': {'gender': 'female', 'age': '55', 'type': 'O'}, 'GSM1652627': {'induction': 'Day 90', 'type': 'GFP negative neural retina cells'}, 'GSM1652626': {'induction': 'Day 90', 'type': 'GFP negative neural retina cells'}, 'GSM1652625': {'induction': 'Day 67', 'type': 'GFP negative neural retina cells'}, 'GSM1652624': {'induction': 'Day 67', 'type': 'GFP negative neural retina cells'}, 'GSM1652623': {'induction': 'Day 47', 'type': 'GFP negative neural retina cells'}, 'GSM1652622': {'induction': 'Day 47', 'type': 'GFP negative neural retina cells'}, 'GSM2443363': {'gender': 'female', 'age': '51', 'type': 'B'}, 'GSM1652620': {'induction': 'Day 37', 'type': 'GFP negative neural retina cells'}, 'GSM1656054': {'patient': '2', 'group': 'PP', 'gender': 'male'}, 'GSM1656055': {'patient': '2', 'group': 'PN', 'gender': 'male'}, 'GSM1656056': {'patient': '3', 'group': 'PP', 'gender': 'male'}, 'GSM2815851': {'line': 'H9'}, 'GSM1155628': {'antibody': 'CenH3 (Enzo life science, ADI-KAM-CC006-E)', 'line': 'eCenH3 HeLa S3', 'type': 'Cervical cancer', 'variation': 'CenH3 over-expression'}, 'GSM2275108': {'area_under_the_curve': '1.274608594', 'siteandparticipantcode': '229085', 'baseline_area_under_the_curve': '1.054079844', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '120.9214465', 'auc_percent_of_baseline': '120.9214465', 'trunkbarcode': '931673', 'sampleID': 'S12645', 'flowcellid': 'D27JJACXX', 'status': 'NR', 'samplelabel': 'lib1525', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_229085', 'gender': 'Male', 'age': '15', 'race': 'White', 'libraryid': 'lib1525', 'studysiteshort': 'YALE'}, 'GSM2275109': {'area_under_the_curve': '0.637330156', 'siteandparticipantcode': '678610', 'baseline_area_under_the_curve': '0.704254219', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '90.49717265', 'auc_percent_of_baseline': '90.49717265', 'trunkbarcode': '905674', 'sampleID': 'S12646', 'flowcellid': 'D27JJACXX', 'status': 'NR', 'samplelabel': 'lib1526', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_678610', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib1526', 'studysiteshort': 'YALE'}, 'GSM2871735': {'extraction': 'light polysome mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'non-silencing'}, 'GSM1656052': {'patient': '1', 'group': 'PP', 'gender': 'male'}, 'GSM2275102': {'area_under_the_curve': '0.358979844', 'siteandparticipantcode': '604690', 'baseline_area_under_the_curve': '0.477415781', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '75.19228686', 'auc_percent_of_baseline': '75.19228686', 'trunkbarcode': '905662', 'sampleID': 'S12639', 'flowcellid': 'D27JJACXX', 'status': 'C', 'samplelabel': 'lib1519', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'Control', 'name': 'AbATE_604690', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1519', 'studysiteshort': 'MC GEORGIA'}, 'GSM2275103': {'area_under_the_curve': '0.531772188', 'siteandparticipantcode': '595950', 'baseline_area_under_the_curve': '0.691479688', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '76.90351533', 'auc_percent_of_baseline': '76.90351533', 'trunkbarcode': '926623', 'sampleID': 'S12640', 'flowcellid': 'D27JJACXX', 'status': 'NR', 'samplelabel': 'lib1520', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_595950', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1520', 'studysiteshort': 'YALE'}, 'GSM2275100': {'area_under_the_curve': '0.590472969', 'siteandparticipantcode': '689968', 'baseline_area_under_the_curve': '0.873943438', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '67.56420878', 'auc_percent_of_baseline': '67.56420878', 'trunkbarcode': '923969', 'sampleID': 'S12637', 'flowcellid': 'D27JJACXX', 'status': 'C', 'samplelabel': 'lib1517', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'Control', 'name': 'AbATE_689968', 'gender': 'Female', 'age': '25', 'race': 'White', 'libraryid': 'lib1517', 'studysiteshort': 'PNRI'}, 'GSM1656053': {'patient': '1', 'group': 'PN', 'gender': 'male'}, 'GSM2275106': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'trunkbarcode': '928616', 'sampleID': 'S12643', 'flowcellid': 'D27JJACXX', 'status': 'R', 'samplelabel': 'lib1523', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'race': 'White; White', 'libraryid': 'lib1523', 'studysiteshort': 'YALE'}, 'GSM2275107': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'trunkbarcode': '930954', 'sampleID': 'S12644', 'flowcellid': 'D27JJACXX', 'status': 'R', 'samplelabel': 'lib1524', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'race': 'White', 'libraryid': 'lib1524', 'studysiteshort': 'YALE'}, 'GSM2275104': {'area_under_the_curve': '0.129452031', 'siteandparticipantcode': '161201', 'baseline_area_under_the_curve': '0.402733906', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '32.14331578', 'auc_percent_of_baseline': '32.14331578', 'trunkbarcode': '926622', 'sampleID': 'S12641', 'flowcellid': 'D27JJACXX', 'status': 'C', 'samplelabel': 'lib1521', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'Control', 'name': 'AbATE_161201', 'gender': 'Male', 'age': '10', 'race': 'White; White', 'libraryid': 'lib1521', 'studysiteshort': 'YALE'}, 'GSM2275105': {'area_under_the_curve': '0.642191719', 'siteandparticipantcode': '781179', 'baseline_area_under_the_curve': '0.547132656', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '117.3740429', 'auc_percent_of_baseline': '117.3740429', 'trunkbarcode': '905668', 'sampleID': 'S12642', 'flowcellid': 'D27JJACXX', 'status': 'C', 'samplelabel': 'lib1522', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'Control', 'name': 'AbATE_781179', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib1522', 'studysiteshort': 'YALE'}, 'GSM3383896': {'tissue': 'normal pancreas', 'id': 'patient6', 'diagnosis': 'pancreatic cancer'}, 'GSM3586935': {'origin': 'GCB', 'pfstt': '1308', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1345', 'cycles': '8', 'oscs': '1'}, 'GSM3586934': {'origin': 'UNCLASSIFIED', 'pfstt': '1', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '392', 'cycles': '8', 'oscs': '0'}, 'GSM3586931': {'origin': 'ABC', 'pfstt': '858', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1068', 'cycles': '6', 'oscs': '0'}, 'GSM3586930': {'origin': 'GCB', 'pfstt': '198', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '198', 'cycles': '6', 'oscs': '0'}, 'GSM3586933': {'origin': 'UNCLASSIFIED', 'pfstt': '403', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '677', 'cycles': '6', 'oscs': '0'}, 'GSM3586932': {'origin': 'GCB', 'pfstt': '917', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1087', 'cycles': '6', 'oscs': '0'}, 'GSM2048660': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2680461': {'line': 'Breast cancer cell line MDAMB231', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM2680460': {'line': 'Breast cancer cell line MDAMB231', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM2680463': {'regimen': '2hr then heatshock for 0.5hr, the recover 1hr, all under drug treatment', 'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '3.5 hr'}, 'GSM2680462': {'regimen': '2hr then heatshock for 0.5hr, the recover 1hr, all under drug treatment', 'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '3.5 hr'}, 'GSM2680465': {'regimen': '2hr then heatshock for 0.5hr, the recover 1hr, all under drug treatment', 'line': 'colorectal cancer cell line HCT116', 'time': '3.5 hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680464': {'regimen': '2hr then heatshock for 0.5hr, the recover 1hr, all under drug treatment', 'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '3.5 hr'}, 'GSM2680467': {'regimen': '2hr then heatshock for 0.5hr, the recover 1hr, all under drug treatment', 'line': 'colorectal cancer cell line HCT116', 'time': '3.5 hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680466': {'regimen': '2hr then heatshock for 0.5hr, the recover 1hr, all under drug treatment', 'line': 'colorectal cancer cell line HCT116', 'time': '3.5 hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680469': {'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '3.5 hr'}, 'GSM2680468': {'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '3.5 hr'}, 'GSM2212208': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM1969336': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Trunk wall'}, 'GSM1916425': {'type': 'EBV-immortalized LCL'}, 'GSM2305324': {'subtype': 'Tamoxifen Resistance', 'type': 'MCF7'}, 'GSM1916427': {'type': 'EBV-immortalized LCL'}, 'GSM1916420': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1916421': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1916422': {'type': 'EBV-immortalized LCL'}, 'GSM1916423': {'type': 'EBV-immortalized LCL'}, 'GSM1376271': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376270': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376273': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376272': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376275': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376274': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM2305328': {'subtype': 'RUNX2 DOX inducible model', 'type': 'MCF7', 'condition': 'Full Medium'}, 'GSM1969339': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM3190769': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A58', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.228181'}, 'GSM3190768': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B97', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.535803'}, 'GSM3190582': {'boca': 'Yes', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C17', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.107144'}, 'GSM3190763': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.131729'}, 'GSM3190762': {'boca': 'No', 'years': '17', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.157552'}, 'GSM3190761': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A29', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.050914'}, 'GSM3190760': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A29', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.892999'}, 'GSM3190767': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B97', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.23066'}, 'GSM3190766': {'boca': 'No', 'years': '17', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.357741'}, 'GSM3190765': {'boca': 'No', 'years': '17', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.481017'}, 'GSM3190764': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1.1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.519607'}, 'GSM2332609': {'type': 'rhabdomyosarcoma', 'treatment': '-Doxycycline', 'number': '14'}, 'GSM2332608': {'type': 'rhabdomyosarcoma', 'treatment': '+Doxycycline', 'number': '11'}, 'GSM2332607': {'type': 'rhabdomyosarcoma', 'treatment': '-Doxycycline', 'number': '11'}, 'GSM1479464': {'index': '20', 'diagnosis': '3', 'cellcount': '1786114', 'gender': 'F', 'age': '27', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '37', 'collectiondate': 'June 6 2012', 'samplename': '37_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479465': {'index': '1', 'diagnosis': '--', 'cellcount': '45900000', 'gender': 'M', 'age': '80', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '43', 'collectiondate': 'June 22 2012', 'samplename': '43_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Sepsis'}, 'GSM1323710': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '5.6', 'reads': '172,308,510', 'tissue': 'prostate', 'u': '64', 'mapped': '58.4%', 'id': 'UTPC029', 'bcr': '1'}, 'GSM1323711': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '9', 'reads': '43,876,620', 'tissue': 'prostate', 'u': '50', 'mapped': '41.3%', 'id': 'UTPC034', 'bcr': '1'}, 'GSM1323712': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '9', 'reads': '179,885,276', 'tissue': 'prostate', 'u': '49', 'mapped': '62.1%', 'id': 'UTPC034', 'bcr': '1'}, 'GSM1323713': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '8.5', 'reads': '150,202,416', 'tissue': 'prostate', 'u': '54', 'mapped': '63.5%', 'id': 'UTPC041', 'bcr': '1'}, 'GSM1323714': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '6.5', 'reads': '40,212,246', 'tissue': 'prostate', 'u': '128', 'mapped': '43.6%', 'id': 'UTPC058', 'bcr': '1'}, 'GSM1323715': {'tgleason': '6', 'race': 'NA', 'score': '336', 'sms': 'Negative', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '7.3', 'reads': '42,437,224', 'tissue': 'prostate', 'u': '116', 'mapped': '60.8%', 'id': 'UTPC088', 'bcr': '1'}, 'GSM1323716': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '5.3', 'reads': '29,347,406', 'tissue': 'prostate', 'u': '102', 'mapped': '56.9%', 'id': 'UTPC093', 'bcr': '1'}, 'GSM1323717': {'tgleason': '9', 'race': 'NA', 'score': '459', 'sms': 'Positive', 'pstage': 'pT2B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '4.07', 'reads': '24,788,064', 'tissue': 'prostate', 'u': '26', 'mapped': '55.5%', 'id': 'UTPC099', 'bcr': '1'}, 'GSM1323718': {'tgleason': '8', 'race': 'NA', 'score': '448', 'sms': 'Positive', 'pstage': 'pT3B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '14.43', 'reads': '137,742,040', 'tissue': 'prostate', 'u': '35', 'mapped': '55.1%', 'id': 'UTPC101', 'bcr': '1'}, 'GSM1323719': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '3.86', 'reads': '128,654,064', 'tissue': 'prostate', 'u': '88', 'mapped': '58.9%', 'id': 'UTPC104', 'bcr': '1'}, 'GSM1427144': {'shRNA': 'shSUZ12', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1427145': {'shRNA': 'shSUZ12', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1427146': {'shRNA': 'shSUZ12', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1427140': {'shRNA': 'shEZH2', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1373736': {'line': 'BJ (ATCC CRL-2522)', 'barcode': 'ATCACG', 'type': 'foreskin fibroblast cell line', 'transfection': 'scramble siRNA', 'number': '7'}, 'GSM1427142': {'shRNA': 'shEED', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1427143': {'shRNA': 'shEED', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM2048664': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1843223': {'subtype': 'CD34pos', 'type': 'normal cord blood cell'}, 'GSM1843222': {'subtype': 'CD34pos', 'type': 'normal cord blood cell'}, 'GSM1513913': {'type': 'Neural stem cell', 'genotype': 'KO'}, 'GSM1513912': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM1513911': {'type': 'Mesenchymal stem cell', 'genotype': 'KO'}, 'GSM1513910': {'type': 'Mesenchymal stem cell', 'genotype': 'KO'}, 'GSM1513917': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM1513916': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM1513915': {'type': 'Neural stem cell', 'genotype': 'KO'}, 'GSM1513914': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM1609436': {'line': 'GM19238', 'type': 'polyA RNA'}, 'GSM1609437': {'line': 'GM19238', 'type': 'polyA RNA'}, 'GSM1513919': {'type': 'Neural stem cell', 'genotype': 'KO'}, 'GSM1513918': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM1609432': {'line': 'GM12891', 'type': 'polyA RNA'}, 'GSM1609433': {'line': 'GM12892', 'type': 'polyA RNA'}, 'GSM1609430': {'line': 'GM12891', 'type': 'polyA RNA'}, 'GSM1609431': {'line': 'GM12891', 'type': 'polyA RNA'}, 'GSM1843225': {'subtype': 'Monocyte', 'type': 'normal cord blood cell'}, 'GSM2719990': {'type': 'CD19+ B cells', 'by': 'EBV strain B95-8', 'treatment': 'None'}, 'GSM2719991': {'type': 'CD19+ B cells', 'by': 'EBV strain M81', 'treatment': 'None'}, 'GSM2719992': {'type': 'CD19+ B cells', 'by': 'EBV strain M81', 'treatment': 'None'}, 'GSM1843224': {'subtype': 'Monocyte', 'type': 'normal cord blood cell'}, 'GSM2473521': {'library_name': 'Control Replicate2', 'age': '36', 'Sex': 'Female', 'tissue': 'Cell Line HL-60', 'treatment': 'None', 'type': 'acute promyelocytic leukemia'}, 'GSM2304499': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2304498': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2304497': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2301461': {'gender': 'male', 'type': 'LuCaP 96 PDX tumor', 'group': 'YK-4-279'}, 'GSM2304495': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2304494': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2304493': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2304492': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2304491': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2301460': {'gender': 'male', 'type': 'LuCaP 96 PDX tumor', 'group': 'control'}, 'GSM2251365': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2218671': {'line': 'WIBR3', 'medium': '4i/L/A (P4)', 'state': 'naive'}, 'GSM2218670': {'line': 'WIBR2', 'medium': '4i/L/A (P4)', 'state': 'naive'}, 'GSM2141300': {'individual': 'AF67', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2850543': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850542': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Serum', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850545': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Serum', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850544': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850547': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850546': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850549': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850548': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM1922980': {'line': 'HeLa', 'barcode': 'CCGTCC', 'treatment': 'sihRRP6 knockdown'}, 'GSM1922981': {'line': 'HeLa', 'barcode': 'GTCCGC', 'treatment': 'sihRRP6 knockdown'}, 'GSM1922982': {'line': 'HeLa', 'barcode': 'GTGAAA', 'treatment': 'sihRRP6 knockdown'}, 'GSM1821703': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9527+oil'}, 'GSM2696545': {'status': '2+', 'grade': '2', 'age': '60', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '3.7'}, 'GSM2696544': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2219005': {'tissue': 'blood', 'type': 'CD8+ memory T cells', 'diagnosis': 'healthy'}, 'GSM1980225': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2219007': {'tissue': 'blood', 'type': 'CD4+ memory T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219006': {'tissue': 'blood', 'type': 'CD8+ naive T cells', 'diagnosis': 'healthy'}, 'GSM2219001': {'tissue': 'blood', 'type': 'CD8+ memory T cells', 'diagnosis': 'healthy'}, 'GSM2219000': {'tissue': 'blood', 'type': 'CD4+ naive T cells', 'diagnosis': 'healthy'}, 'GSM2219003': {'tissue': 'blood', 'type': 'CD4+ memory T cells', 'diagnosis': 'healthy'}, 'GSM1980224': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2219009': {'tissue': 'blood', 'type': 'CD8+ memory T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219008': {'tissue': 'blood', 'type': 'CD4+ naive T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2468942': {'with': '500 nM BI00923802', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2143919': {'type': 'bladder cancer cells', 'overexpression': 'none'}, 'GSM2468940': {'with': '500 nM BI00923802', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468941': {'with': '500 nM BI00923802', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468946': {'with': '500 nM BI00923812', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468947': {'with': '500 nM BI00923812', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468944': {'with': '500 nM BI00923802', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2143918': {'type': 'bladder cancer cells', 'overexpression': 'none'}, 'GSM2468948': {'with': '500 nM BI00923812', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468949': {'with': '500 nM BI00923812', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM636919': {'marker': 'CD24+', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM2109399': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109398': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM1530729': {'genotype': 'GBA +/N370S', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': 'Healthy'}, 'GSM1530728': {'genotype': 'GBA +/N370S', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': 'Healthy'}, 'GSM1282330': {'line': 'Parental', 'type': 'Fibroblast'}, 'GSM1530726': {'genotype': 'Wild Type GBA', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': \"Parkinson's Disease\"}, 'GSM1530725': {'genotype': 'Wild Type GBA', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': 'Healthy'}, 'GSM1530724': {'genotype': 'Wild Type GBA', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': 'Healthy'}, 'GSM1530723': {'genotype': 'Wild Type GBA', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': 'Healthy'}, 'GSM1530722': {'genotype': 'Wild Type GBA', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': 'Healthy'}, 'GSM2109393': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109392': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM1241160': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241161': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241162': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241163': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241164': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241165': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241166': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241167': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241168': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241169': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2226538': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 7', 'type': 'Primary Tumor'}, 'GSM1663005': {'line': 'HL-60', 'type': 'Promyelocytic cell line'}, 'GSM1663004': {'line': 'GM12878', 'type': 'Lymphoblastoid cell line'}, 'GSM2391039': {'disease': 'Epilepsy'}, 'GSM2391038': {'disease': 'Epilepsy'}, 'GSM1406350': {'type': 'Macrophages(BC11)'}, 'GSM1406351': {'type': 'Macrophages(BC11)'}, 'GSM1406352': {'type': 'Macrophages(BC11)'}, 'GSM1406353': {'type': 'Primary Monocytes(BC12)'}, 'GSM1406354': {'type': 'Primary Monocytes(BC12)'}, 'GSM1406355': {'type': 'Macrophages(BC12)'}, 'GSM1406356': {'type': 'Macrophages(BC12)'}, 'GSM1406357': {'type': 'Macrophages(BC12)'}, 'GSM1287867': {'transfection': 'miR137', 'line': 'U343'}, 'GSM1287866': {'transfection': 'control', 'line': 'U343'}, 'GSM1287865': {'transfection': 'control', 'line': 'U343'}, 'GSM1287864': {'transfection': 'miR137', 'line': 'U251'}, 'GSM1287863': {'transfection': 'miR137', 'line': 'U251'}, 'GSM1287862': {'transfection': 'control', 'line': 'U251'}, 'GSM1287861': {'transfection': 'control', 'line': 'U251'}, 'GSM1287860': {'transfection': 'miR137', 'line': 'U251'}, 'GSM1287869': {'transfection': 'control', 'line': 'U343'}, 'GSM1287868': {'transfection': 'miR137', 'line': 'U343'}, 'GSM1015510': {'line': 'HeLa', 'replicate': '2', 'agent': 'EGF'}, 'GSM1015511': {'line': 'HeLa', 'replicate': '3', 'agent': 'EGF'}, 'GSM2516335': {'status': 'naïve', 'with': 'shNANOG shRNA lentiviruses', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516334': {'status': 'naïve', 'with': 'shNANOG shRNA lentiviruses', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516333': {'status': 'naïve', 'with': 'shNANOG shRNA lentiviruses', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516332': {'status': 'naïve', 'with': 'shNANOG shRNA lentiviruses', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516331': {'status': 'naïve', 'with': 'shPOU5F1 shRNA lentiviruses', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516330': {'status': 'naïve', 'with': 'shPOU5F1 shRNA lentiviruses', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2348598': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1955731': {'a': '65050', 'cd38': '593', 'cd49f': '689', 'w': '64914', 'h': '65673', 'lin': '489', 'cd34': '5679', 'cd90': '-517', 'cd7': '555', 'cd10': '235', 'time': '8180', 'cd135': '7936', 'cd45ra': '6583'}, 'GSM1955730': {'a': '70123', 'cd38': '556', 'cd49f': '486', 'w': '68127', 'h': '67456', 'lin': '277', 'cd34': '6794', 'cd90': '6053', 'cd7': '306', 'cd10': '970', 'time': '7982', 'cd135': '2966', 'cd45ra': '225'}, 'GSM1955733': {'a': '49513', 'cd38': '-87', 'cd49f': '2205', 'w': '65473', 'h': '49561', 'lin': '885', 'cd34': '9701', 'cd90': '6967', 'cd7': '64', 'cd10': '689', 'time': '8609', 'cd135': '2433', 'cd45ra': '424'}, 'GSM1955732': {'a': '49083', 'cd38': '521', 'cd49f': '149', 'w': '66422', 'h': '48428', 'lin': '185', 'cd34': '3190', 'cd90': '5851', 'cd7': '-304', 'cd10': '695', 'time': '8405', 'cd135': '2396', 'cd45ra': '270'}, 'GSM1955735': {'a': '47222', 'cd38': '1157', 'cd49f': '858', 'w': '65493', 'h': '47253', 'lin': '233', 'cd34': '5367', 'cd90': '2647', 'cd7': '-115', 'cd10': '652', 'time': '9018', 'cd135': '1629', 'cd45ra': '78'}, 'GSM1955734': {'a': '57485', 'cd38': '732', 'cd49f': '918', 'w': '69771', 'h': '53996', 'lin': '911', 'cd34': '9012', 'cd90': '7115', 'cd7': '4', 'cd10': '1191', 'time': '8803', 'cd135': '1621', 'cd45ra': '424'}, 'GSM1955737': {'a': '62084', 'cd38': '950', 'cd49f': '3410', 'w': '67482', 'h': '60293', 'lin': '502', 'cd34': '4304', 'cd90': '29', 'cd7': '400', 'cd10': '760', 'time': '11760', 'cd135': '3472', 'cd45ra': '4663'}, 'GSM1955736': {'a': '62397', 'cd38': '31', 'cd49f': '599', 'w': '68276', 'h': '59893', 'lin': '169', 'cd34': '10654', 'cd90': '3896', 'cd7': '300', 'cd10': '532', 'time': '9247', 'cd135': '1148', 'cd45ra': '1328'}, 'GSM1955739': {'a': '56133', 'cd38': '165', 'cd49f': '8', 'w': '63216', 'h': '58193', 'lin': '232', 'cd34': '16395', 'cd90': '389', 'cd7': '192', 'cd10': '700', 'time': '11328', 'cd135': '4411', 'cd45ra': '383'}, 'GSM1955738': {'a': '58037', 'cd38': '721', 'cd49f': '380', 'w': '65222', 'h': '58317', 'lin': '770', 'cd34': '7948', 'cd90': '9543', 'cd7': '-132', 'cd10': '1366', 'time': '11556', 'cd135': '2352', 'cd45ra': '232'}, 'GSM1946230': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19201', 'for': '30min'}, 'GSM1946231': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19201', 'for': '30min'}, 'GSM1946232': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19201', 'for': '60min'}, 'GSM1946233': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19201', 'for': '60min'}, 'GSM2093535': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2093534': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM1946236': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '30min'}, 'GSM1946237': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '30min'}, 'GSM1946238': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '30min'}, 'GSM1946239': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '30min'}, 'GSM1957391': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957390': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957393': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957392': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957395': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957394': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957397': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957396': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957399': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957398': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2898833': {'line': 'NA19209', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898832': {'line': 'NA19206', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898835': {'line': 'NA19225', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898834': {'line': 'NA19210', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898837': {'line': 'NA19257', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898836': {'line': 'NA19239', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1956046': {'a': '73221', 'cd38': '1059', 'cd49f': '549', 'w': '66774', 'h': '71864', 'lin': '618', 'cd34': '3181', 'cd90': '213', 'cd7': '-261', 'cd10': '905', 'time': '13693', 'cd135': '953', 'cd45ra': '146'}, 'GSM1956047': {'a': '55381', 'cd38': '162', 'cd49f': '330', 'w': '67819', 'h': '53517', 'lin': '-255', 'cd34': '8526', 'cd90': '3514', 'cd7': '447', 'cd10': '777', 'time': '13925', 'cd135': '2926', 'cd45ra': '66'}, 'GSM1956044': {'a': '62589', 'cd38': '397', 'cd49f': '226', 'w': '67399', 'h': '60859', 'lin': '106', 'cd34': '11707', 'cd90': '2323', 'cd7': '41', 'cd10': '1205', 'time': '13203', 'cd135': '5918', 'cd45ra': '297'}, 'GSM1956045': {'a': '62632', 'cd38': '464', 'cd49f': '1348', 'w': '66789', 'h': '61457', 'lin': '155', 'cd34': '9158', 'cd90': '3567', 'cd7': '355', 'cd10': '938', 'time': '13418', 'cd135': '4462', 'cd45ra': '354'}, 'GSM1956042': {'a': '53209', 'cd38': '111', 'cd49f': '417', 'w': '67135', 'h': '51942', 'lin': '400', 'cd34': '6637', 'cd90': '2466', 'cd7': '-145', 'cd10': '1000', 'time': '12796', 'cd135': '2380', 'cd45ra': '264'}, 'GSM1956043': {'a': '59067', 'cd38': '531', 'cd49f': '455', 'w': '68573', 'h': '56451', 'lin': '-8', 'cd34': '6016', 'cd90': '789', 'cd7': '477', 'cd10': '795', 'time': '12996', 'cd135': '10970', 'cd45ra': '414'}, 'GSM1956040': {'a': '51603', 'cd38': '870', 'cd49f': '956', 'w': '66534', 'h': '50829', 'lin': '328', 'cd34': '3347', 'cd90': '-5', 'cd7': '300', 'cd10': '464', 'time': '12388', 'cd135': '2195', 'cd45ra': '99'}, 'GSM1956041': {'a': '56651', 'cd38': '644', 'cd49f': '1098', 'w': '65448', 'h': '56728', 'lin': '3', 'cd34': '14045', 'cd90': '8309', 'cd7': '-236', 'cd10': '1042', 'time': '12601', 'cd135': '2274', 'cd45ra': '-70'}, 'GSM2348596': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1956048': {'a': '58401', 'cd38': '380', 'cd49f': '632', 'w': '66978', 'h': '57144', 'lin': '336', 'cd34': '8282', 'cd90': '3325', 'cd7': '299', 'cd10': '987', 'time': '14136', 'cd135': '3543', 'cd45ra': '308'}, 'GSM2348597': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2449399': {'gene': 'n/a', 'type': 'Cultured Fibroblast cells'}, 'GSM1541792': {'protocol': '100% (A38-Per) 10% FBS'}, 'GSM1541793': {'protocol': '100% (A38-Per) 10% FBS'}, 'GSM2432781': {'line': 'LNCap-C4-2', 'type': 'human prostate cancer cell line', 'treatment': 'dihydrotestosterone (DHT)'}, 'GSM1541796': {'protocol': '70% (A38-Lg) 10% FBS'}, 'GSM1541797': {'protocol': '70% (A38-Lg) 10% FBS'}, 'GSM1541794': {'protocol': '100% (A38-Per) serum free media'}, 'GSM1541795': {'protocol': '100% (A38-Per) serum free media'}, 'GSM1541798': {'protocol': '70% (A38-Lg) serum free media'}, 'GSM1541799': {'protocol': '70% (A38-Lg) serum free media'}, 'GSM2194532': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2492288': {'line': '293FT'}, 'GSM2492289': {'line': '293FT'}, 'GSM1946498': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3.3M36 (RevMAb Biosciences, catalog# 31-1085-00, lot# O-08-00294)', 'mutation': 'WT', 'stage': 'asynchronization'}, 'GSM1946499': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3.3M36 (RevMAb Biosciences, catalog# 31-1085-00, lot# O-08-00294)', 'mutation': 'WT', 'stage': 'asynchronization'}, 'GSM1946494': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946495': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946496': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946497': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946490': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946491': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946492': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'mutation': 'WT', 'stage': 'asynchronization'}, 'GSM1946493': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'mutation': 'WT', 'stage': 'asynchronization'}, 'GSM2287472': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287471': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610838': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2565298': {'construction': 'PLATE-Seq', 'drug': 'Savolitinib (Volitinib; AZD6094; HMPL-504)'}, 'GSM2362529': {'line': 'HEK293'}, 'GSM2362528': {'line': 'HEK293'}, 'GSM2362527': {'line': 'HEK293'}, 'GSM2362526': {'line': 'HEK293'}, 'GSM2362525': {'line': 'HEK293'}, 'GSM2362524': {'line': 'HEK293'}, 'GSM2362523': {'line': 'HEK293'}, 'GSM2362522': {'line': 'HEK293'}, 'GSM2362521': {'line': 'HEK293'}, 'GSM2362520': {'line': 'HEK293'}, 'GSM2303492': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2325809': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325808': {'type': 'Differentiated embryonic stem cell'}, 'GSM2303493': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2325805': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325804': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325807': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325806': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325801': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325800': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325803': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325802': {'type': 'Differentiated embryonic stem cell'}, 'GSM2610830': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2420371': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420370': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420373': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420372': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420375': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420374': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420376': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM1545048': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Distal'}, 'GSM1533409': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '80 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM1533408': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '40 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM1415615': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '9 h'}, 'GSM1415614': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '6 h'}, 'GSM1415617': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '9 h'}, 'GSM1415616': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '9 h'}, 'GSM1415611': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '3 h'}, 'GSM1415610': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '3 h'}, 'GSM1415613': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '6 h'}, 'GSM1415612': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '6 h'}, 'GSM2131634': {'line': 'HEK293T'}, 'GSM2131631': {'line': 'HEK293T'}, 'GSM2131630': {'line': 'HEK293T'}, 'GSM2131633': {'line': 'HEK293T'}, 'GSM2131632': {'line': 'HEK293T'}, 'GSM1861906': {'group': 'N1ICD_Tam', 'factor': 'No'}, 'GSM1861907': {'group': 'Vec', 'factor': 'Yes'}, 'GSM1861904': {'group': 'N1ICD_Tam', 'factor': 'No'}, 'GSM1861905': {'group': 'N1ICD_Tam', 'factor': 'No'}, 'GSM1861902': {'group': 'N1ICD_Tam', 'factor': 'No'}, 'GSM1861903': {'group': 'N1ICD_Tam', 'factor': 'No'}, 'GSM1861900': {'group': 'N1ICD', 'factor': 'No'}, 'GSM1861901': {'group': 'N1ICD_Tam', 'factor': 'No'}, 'GSM1888820': {'activated': 'TRUE', 'activation': '5', 'type': 'Naive', 'id': '5291', 'batch': '1'}, 'GSM1888821': {'activated': 'TRUE', 'activation': '14', 'type': 'Naive', 'id': '4659', 'batch': '2'}, 'GSM1888822': {'activated': 'TRUE', 'activation': '14', 'type': 'Naive', 'id': '5053', 'batch': '2'}, 'GSM1888823': {'activated': 'TRUE', 'activation': '14', 'type': 'Naive', 'id': '5131', 'batch': '2'}, 'GSM1888824': {'activated': 'TRUE', 'activation': '14', 'type': 'Naive', 'id': '5291', 'batch': '2'}, 'GSM1888825': {'activated': 'FALSE', 'activation': '0', 'type': 'Memory', 'id': '4659', 'batch': '1'}, 'GSM1861908': {'group': 'Vec', 'factor': 'Yes'}, 'GSM1861909': {'group': 'Vec', 'factor': 'Yes'}, 'GSM1217946': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'XK2367'}, 'GSM1397741': {'line': 'MCF-10A', 'tissue': 'Breast', 'type': 'Epithelial cell', 'overexpression': 'AURKA'}, 'GSM1397742': {'line': 'MCF-10A', 'tissue': 'Breast', 'type': 'Epithelial cell', 'overexpression': 'none'}, 'GSM1640156': {'duration': '12h', 'strain': 'MFB', 'type': 'Monocyte-derived dendritic cells (MoDCs)', 'genotype': 'Pg mfa1-/fimA-'}, 'GSM1640154': {'duration': '12h', 'strain': 'DPG3', 'type': 'Monocyte-derived dendritic cells (MoDCs)', 'genotype': 'Mfa1+/fimA-'}, 'GSM1640155': {'duration': '12h', 'strain': 'MFI', 'type': 'Monocyte-derived dendritic cells (MoDCs)', 'genotype': 'Mfa1-/fimA+'}, 'GSM1640152': {'duration': '12h', 'strain': 'Control_ No P.g. strain', 'type': 'Monocyte-derived dendritic cells (MoDCs)', 'genotype': 'Control_no P. gingivalis'}, 'GSM1640153': {'duration': '12h', 'strain': 'Porphyromonas gingivalis strain 381', 'type': 'Monocyte-derived dendritic cells (MoDCs)', 'genotype': 'Pg.WT_Mfa1+/fimA+'}, 'GSM1320481': {'attribute': 'Precursor ALL containing the t(4;11) abnormality', 'line': 'SEM'}, 'GSM1320480': {'attribute': 'Precursor ALL containing the t(4;11) abnormality', 'line': 'RS4;11'}, 'GSM1320483': {'attribute': 'Precursor ALL lacking the t(4;11) abnormality', 'line': 'REH'}, 'GSM1320482': {'attribute': 'Precursor ALL lacking the t(4;11) abnormality', 'line': 'NALM6'}, 'GSM2391868': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391869': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391860': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391861': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391862': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391863': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391864': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391865': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391866': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2649797': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2870640': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870641': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2870642': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870643': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870644': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2870645': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870646': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870647': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2870648': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM1009649': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h', 'antibody': 'ETS1', 'manufactuer': 'Santa Cruz'}, 'GSM1009648': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '1h', 'antibody': 'ETS1', 'manufactuer': 'Santa Cruz'}, 'GSM1009647': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '0h', 'antibody': 'ETS1', 'manufactuer': 'Santa Cruz'}, 'GSM1009646': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '12h'}, 'GSM1009645': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h'}, 'GSM1009644': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '1h'}, 'GSM1009643': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '0h'}, 'GSM1009642': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '12h'}, 'GSM1009641': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h'}, 'GSM1009640': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '1h'}, 'GSM2194530': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3189426': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'Yes', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '85', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.541916', 'percentaligned': '0.941717107', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.468159', 'original': 'Control'}, 'GSM3189427': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'Yes', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '24', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.606877', 'percentaligned': '0.935917021', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.545655', 'original': 'Control'}, 'GSM3189424': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '14', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.59904', 'percentaligned': '0.957427634', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.29042'}, 'GSM3189425': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-Cpat19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.532021', 'percentaligned': '0.903748263', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.117469'}, 'GSM3189422': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '50', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.633232', 'percentaligned': '0.889994711', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.042471'}, 'GSM3189423': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '40', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.588323', 'percentaligned': '0.920469293', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.276831', 'original': 'Control'}, 'GSM3189420': {'boca': 'No', 'years': '17', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '25', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.64353', 'percentaligned': '0.895669394', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.023073', 'original': 'Control'}, 'GSM3189421': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '14', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.56265', 'percentaligned': '0.947266112', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.179101'}, 'GSM2348626': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM3189428': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '29', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.530517', 'percentaligned': '0.957742531', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.362402', 'original': 'Control'}, 'GSM3189429': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.556159', 'percentaligned': '0.959747238', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.122649', 'original': 'Control'}, 'GSM3182748': {'passages': '28-34', 'type': 'ES-derived cardiac mesoderm cells'}, 'GSM3182749': {'passages': '28-34', 'type': 'ES-derived cardiac mesoderm cells'}, 'GSM3182742': {'passages': '28-34', 'type': 'ES-derived early mesoderm cells'}, 'GSM3182743': {'passages': '28-34', 'type': 'ES-derived early mesoderm cells'}, 'GSM3182740': {'passages': '28-34', 'type': 'embryonic stem cells'}, 'GSM3182741': {'passages': '28-34', 'type': 'embryonic stem cells'}, 'GSM3182746': {'passages': '28-34', 'type': 'ES-derived late mesoderm cells'}, 'GSM3182747': {'passages': '28-34', 'type': 'ES-derived late mesoderm cells'}, 'GSM3182744': {'passages': '28-34', 'type': 'ES-derived early mesoderm cells'}, 'GSM3182745': {'passages': '28-34', 'type': 'ES-derived late mesoderm cells'}, 'GSM2592203': {'line': '201B7', 'type': 'iMeLC'}, 'GSM2186795': {'stimulation': 'interferon gamma', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186796': {'stimulation': 'media alone', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186797': {'stimulation': 'TLR2/1 ligand', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186790': {'stimulation': 'media alone', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186791': {'stimulation': 'TLR2/1 ligand', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2592205': {'line': '585B1-868', 'type': 'hiPSC'}, 'GSM2186793': {'stimulation': 'media alone', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2592209': {'line': '585A1', 'type': 'hiPSC'}, 'GSM2565127': {'construction': 'PLATE-Seq', 'drug': 'Ibrutinib'}, 'GSM2186798': {'stimulation': 'interferon gamma', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186799': {'stimulation': 'media alone', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2607520': {'line': 'WA26'}, 'GSM2305895': {'tissue': 'colon'}, 'GSM1909462': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'wild type'}, 'GSM2632330': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632331': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632332': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632333': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632334': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632335': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632336': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632337': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632338': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632339': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM1841067': {'type': 'iPSC-derived neurons', 'genotype': 'CHD8+/-'}, 'GSM1841066': {'type': 'iPSC-derived neurons', 'genotype': 'CHD8+/-'}, 'GSM1841065': {'type': 'iPSC-derived neurons', 'genotype': 'wild-type'}, 'GSM1841064': {'type': 'iPSC-derived neurons', 'genotype': 'wild-type'}, 'GSM1841063': {'type': 'iPSC-derived neural progenitor cells', 'genotype': 'CHD8+/-'}, 'GSM1841062': {'type': 'iPSC-derived neural progenitor cells', 'genotype': 'CHD8+/-'}, 'GSM1841061': {'type': 'iPSC-derived neural progenitor cells', 'genotype': 'wild-type'}, 'GSM1841060': {'type': 'iPSC-derived neural progenitor cells', 'genotype': 'wild-type'}, 'GSM1033539': {'genotype': 'wild type'}, 'GSM1841069': {'tissue': 'Peripheral Blood', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(+)', 'diagnosis': 'Healthy control'}, 'GSM1841068': {'tissue': 'Peripheral Blood', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(-)', 'diagnosis': 'Healthy control'}, 'GSM2047659': {'well': 'D10', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047658': {'well': 'D09', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047651': {'well': 'D02', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047650': {'well': 'D01', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047653': {'well': 'D04', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047652': {'well': 'D03', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047655': {'well': 'D06', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2307300': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2047657': {'well': 'D08', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047656': {'well': 'D07', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM3594693': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594692': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594691': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM2307301': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM3594697': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594696': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594695': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594694': {'cluster': '1', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594699': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594698': {'cluster': '4', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM2597189': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '1', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597188': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '1', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2630189': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405840'}, 'GSM2630188': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405839'}, 'GSM2630181': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630180': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630183': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630182': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630185': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630184': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630187': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405838'}, 'GSM2630186': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM1101972': {'tissue': 'liver'}, 'GSM1101973': {'tissue': 'lung'}, 'GSM1101970': {'tissue': 'heart'}, 'GSM1101971': {'tissue': 'kidney'}, 'GSM1101976': {'tissue': 'prostate'}, 'GSM1101977': {'tissue': 'skin'}, 'GSM1101974': {'tissue': 'muscle'}, 'GSM1101975': {'tissue': 'ovary'}, 'GSM1619679': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC14'}, 'GSM1619678': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC14'}, 'GSM2086442': {'line': 'HEK293'}, 'GSM1619671': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human cerebral aneurysm tissue', 'id': 'KB6'}, 'GSM1619670': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human cerebral aneurysm tissue', 'id': 'KB5'}, 'GSM1619673': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human cerebral aneurysm tissue', 'id': 'KB8'}, 'GSM1619672': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human cerebral aneurysm tissue', 'id': 'KB7'}, 'GSM1619675': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC11'}, 'GSM1619674': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC10'}, 'GSM1619677': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC13'}, 'GSM1619676': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC12'}, 'GSM2333024': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Parous'}, 'GSM1464364': {'status': 'small cell lung cancer'}, 'GSM1464367': {'status': 'small cell lung cancer'}, 'GSM1464366': {'status': 'small cell lung cancer'}, 'GSM1464361': {'status': 'small cell lung cancer'}, 'GSM1464360': {'status': 'small cell lung cancer'}, 'GSM1464363': {'status': 'small cell lung cancer'}, 'GSM1464362': {'status': 'small cell lung cancer'}, 'GSM2029282': {'type': 'Heterologous pronuclear transfer embryo 8'}, 'GSM2333028': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Nulliparous'}, 'GSM2333029': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Nulliparous'}, 'GSM714640': {'line': 'HEK293', 'digestion': 'mild MNase digestion', 'variant': 'PAR-CLIP', 'protein': 'HuR'}, 'GSM714641': {'line': 'HEK293', 'digestion': 'mild T1 digestion', 'variant': 'PAR-CLIP', 'protein': 'HuR'}, 'GSM714642': {'line': 'HEK293', 'digestion': 'complete T1 digestion', 'variant': 'CLIP', 'protein': 'Ago2'}, 'GSM714643': {'line': 'HEK293', 'digestion': 'complete T1 digestion', 'variant': 'CLIP', 'protein': 'Ago2'}, 'GSM714644': {'line': 'HEK293', 'digestion': 'complete T1 digestion', 'variant': 'PAR-CLIP', 'protein': 'Ago2'}, 'GSM714645': {'line': 'HEK293', 'digestion': 'complete T1 digestion', 'variant': 'PAR-CLIP', 'protein': 'Ago2'}, 'GSM714646': {'line': 'HEK293', 'digestion': 'mild MNase digestion', 'variant': 'PAR-CLIP', 'protein': 'Ago2'}, 'GSM714647': {'line': 'HEK293', 'digestion': 'mild MNase digestion', 'variant': 'PAR-CLIP', 'protein': 'Ago2'}, 'GSM1844547': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844546': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844545': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844544': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM2407512': {'line': 'HCT116', 'transfection': 'siControl'}, 'GSM2068666': {'line': 'MCF7', 'with': '10nM E2 for 3hr', 'passage': 'p10'}, 'GSM2068665': {'line': 'MCF7', 'with': '10nM E2 for 2hr', 'passage': 'p10'}, 'GSM2068664': {'line': 'MCF7', 'with': '10nM E2 for 1hr', 'passage': 'p10'}, 'GSM2068669': {'line': 'MCF7', 'with': '10nM E2 for 6hr', 'passage': 'p10'}, 'GSM2068668': {'line': 'MCF7', 'with': '10nM E2 for 5hr', 'passage': 'p10'}, 'GSM1844549': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844548': {'gender': 'Female', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1048950': {'line': 'SK-Mel-28', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1048951': {'line': 'UACC-62', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM1048952': {'line': 'UACC-62', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM1048953': {'line': 'UACC-62', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM1048954': {'line': 'UACC-62', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1048955': {'line': 'UACC-62', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1048956': {'line': 'UACC-62', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1048957': {'line': 'HCT-116', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM1048958': {'line': 'HCT-116', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM1048959': {'line': 'HCT-116', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM2170799': {'stage': 'iPSC line'}, 'GSM2170798': {'stage': 'iPSC line'}, 'GSM2170795': {'stage': 'iPSC line'}, 'GSM2170794': {'stage': 'iPSC line'}, 'GSM2170797': {'stage': 'iPSC line'}, 'GSM2170796': {'stage': 'iPSC line'}, 'GSM2170791': {'stage': 'iPSC line'}, 'GSM2170790': {'stage': 'iPSC line'}, 'GSM2170793': {'stage': 'iPSC line'}, 'GSM2170792': {'stage': 'iPSC line'}, 'GSM2366279': {'line': 'WSUDLCL2', 'type': 'B cell lymphoma', 'treatment': 'CUDC-907 50nM 6hr'}, 'GSM2420273': {'tissue': 'melanoma', 'response': 'UNK'}, 'GSM1366920': {'with': '2µM GSKJ4 for 72hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366921': {'with': 'none (untreated control)', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366922': {'with': 'none (untreated control)', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366923': {'with': 'none (untreated control)', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM2536681': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 5', 'treatment': 'pre-treatment'}, 'GSM2536680': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 4', 'treatment': 'on-treatment'}, 'GSM2536682': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 5', 'treatment': 'on-treatment'}, 'GSM2226542': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 11', 'type': 'Primary Tumor'}, 'GSM2226543': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 12', 'type': 'Primary Tumor'}, 'GSM2226540': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 9', 'type': 'Primary Tumor'}, 'GSM2226541': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 10', 'type': 'Primary Tumor'}, 'GSM2226546': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 3', 'type': 'Sphere'}, 'GSM2226547': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 4', 'type': 'Sphere'}, 'GSM2226544': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 1', 'type': 'Sphere'}, 'GSM2226545': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 2', 'type': 'Sphere'}, 'GSM2226548': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 5', 'type': 'Sphere'}, 'GSM2226549': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 6', 'type': 'Sphere'}, 'GSM2391147': {'disease': 'NSCLC'}, 'GSM2391146': {'disease': 'NSCLC'}, 'GSM2391145': {'disease': 'NSCLC'}, 'GSM2391144': {'disease': 'NSCLC'}, 'GSM1412522': {'line': 'MDA-MB231'}, 'GSM1412523': {'line': 'MDA-MB231'}, 'GSM1412521': {'line': 'MDA-MB231'}, 'GSM1412526': {'line': 'MDA-MB231'}, 'GSM1412524': {'line': 'MDA-MB231'}, 'GSM1412525': {'line': 'MDA-MB231'}, 'GSM3489085': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'variation': 'knock down of Thymidylate Synthase'}, 'GSM3489084': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'variation': 'knock down of Thymidylate Synthase'}, 'GSM3489083': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'variation': 'scrambled pLKO control'}, 'GSM3489082': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'variation': 'scrambled pLKO control'}, 'GSM2665631': {'strain': 'MSC', 'genotype': 'DM1'}, 'GSM2665630': {'strain': 'MSC', 'genotype': 'DM1'}, 'GSM2665633': {'strain': 'MSC', 'genotype': 'DM1'}, 'GSM2665632': {'strain': 'MSC', 'genotype': 'DM1'}, 'GSM2665635': {'strain': 'MSC', 'genotype': 'DM1'}, 'GSM2665634': {'strain': 'MSC', 'genotype': 'DM1'}, 'GSM922153': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922152': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922151': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922150': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922157': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922156': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922155': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922154': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922159': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922158': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2109327': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM1960339': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'NORAD-/-'}, 'GSM1960338': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'wild-type'}, 'GSM1960337': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'wild-type'}, 'GSM1960336': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'wild-type'}, 'GSM1636070': {'day': 'day 12'}, 'GSM1636071': {'day': 'day 12'}, 'GSM1636072': {'day': 'day 12'}, 'GSM1611660': {'with': '5µM AGE-BSA with BMP2', 'type': 'Primary human posterior longitudinal ligament cells', 'passage': '3'}, 'GSM2141379': {'individual': 'EU68', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141378': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141377': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141376': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141375': {'individual': 'EU64', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141374': {'individual': 'EU64', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141373': {'individual': 'EU64', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141372': {'individual': 'EU62', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141371': {'individual': 'EU62', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141370': {'individual': 'EU62', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1565963': {'condition': 'MTB-infected'}, 'GSM1565962': {'condition': 'Non-infected'}, 'GSM1565961': {'condition': 'MTB-infected'}, 'GSM1565960': {'condition': 'Non-infected'}, 'GSM2589409': {'point': '24hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM1565966': {'condition': 'Non-infected'}, 'GSM1565965': {'condition': 'MTB-infected'}, 'GSM1565964': {'condition': 'Non-infected'}, 'GSM2589405': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589404': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589407': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589406': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589401': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2042089': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM2589403': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589402': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM1498829': {'cytogenetics': '46XX', 'gender': 'female', 'age': '73', 'leukemia': 'CMML-2', 'mutation': 'mutant', 'decitabine': 'non-responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498828': {'cytogenetics': '46,XX', 'gender': 'female', 'age': '73', 'leukemia': 'CMML-2', 'mutation': 'mutant', 'decitabine': 'non-responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM2042088': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM2473275': {'genotype': 'rWT'}, 'GSM2310252': {'shRNA': 'shNT', 'type': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM2310253': {'shRNA': 'shNT', 'type': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM1498825': {'cytogenetics': '46,XY', 'gender': 'male', 'age': '71', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM2473276': {'genotype': 'rWT'}, 'GSM2310256': {'shRNA': 'shPHB2', 'type': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM1498826': {'cytogenetics': '47xx +8; 46 x, tr(x;2)(p23;q34); 46xx', 'gender': 'female', 'age': '71', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'non-responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1245061': {'line': 'OKF6-TERT1R', 'type': 'immortalized oral keratinocytes', 'treatment': 'vehicle: 0.1% ethanol'}, 'GSM1245063': {'line': 'SCC-9', 'type': 'tongue squamous cell carcinoma', 'treatment': 'vehicle: 0.1% ethanol'}, 'GSM1245062': {'line': 'OKF6-TERT1R', 'type': 'immortalized oral keratinocytes', 'treatment': '1 µM retinoic acid (RA)'}, 'GSM1245064': {'line': 'SCC-9', 'type': 'tongue squamous cell carcinoma', 'treatment': '1 µM retinoic acid (RA)'}, 'GSM2473270': {'genotype': 'YFFF'}, 'GSM2473271': {'genotype': 'rWT'}, 'GSM2042083': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM2311789': {'culture': '0'}, 'GSM2311788': {'culture': '0'}, 'GSM2042082': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM2311785': {'culture': '0'}, 'GSM2311784': {'culture': '0'}, 'GSM2311787': {'culture': '0'}, 'GSM2311786': {'culture': '0'}, 'GSM2311781': {'culture': '0'}, 'GSM2311780': {'culture': '0'}, 'GSM2311783': {'culture': '0'}, 'GSM2311782': {'culture': '0'}, 'GSM2194399': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194398': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194397': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194396': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194395': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194394': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194393': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194392': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194391': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194390': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1704503': {'protocol': '6 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704506': {'protocol': '12 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704507': {'protocol': '24 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704504': {'protocol': '6 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704505': {'protocol': '12 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704508': {'protocol': '24 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704509': {'protocol': '40 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2339286': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305820': {'tissue': 'colon'}, 'GSM1334198': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM1334199': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM2305825': {'tissue': 'colon'}, 'GSM2305824': {'tissue': 'colon'}, 'GSM2305827': {'tissue': 'colon'}, 'GSM2305826': {'tissue': 'colon'}, 'GSM1334192': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM2305828': {'tissue': 'colon'}, 'GSM1334190': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1334191': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1334196': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM1334197': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM1334194': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM1334195': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM4486820': {'type': 'HeLa Kyoto'}, 'GSM1354854': {'donor': 'donor No.7', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1980249': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980248': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1354857': {'donor': 'donor No.9', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM2348905': {'type': 'primary patient-derived GBM cells'}, 'GSM2348904': {'type': 'primary patient-derived GBM cells'}, 'GSM1980241': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980240': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2348901': {'type': 'primary patient-derived GBM cells'}, 'GSM1980246': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2348903': {'type': 'primary patient-derived GBM cells'}, 'GSM2348902': {'type': 'primary patient-derived GBM cells'}, 'GSM2311946': {'culture': '12', 'line': 'DCX+'}, 'GSM2125800': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM1508944': {'antibody': 'EZH2', 'type': 'SF7761 cell line', 'stage': 'asynchronization'}, 'GSM1508945': {'antibody': 'H3K4me3', 'type': 'SF7761 cell line', 'stage': 'asynchronization'}, 'GSM1508946': {'antibody': 'igg', 'type': 'SF7761 cell line', 'stage': 'asynchronization'}, 'GSM1508947': {'antibody': 'H3K27me3', 'type': 'SF7761 cell line', 'stage': 'asynchronization'}, 'GSM1508940': {'antibody': 'input', 'type': 'neural stem cell (NSC)', 'stage': 'asynchronization'}, 'GSM1508941': {'antibody': 'EZH2', 'type': 'neural stem cell (NSC)', 'stage': 'asynchronization'}, 'GSM1508942': {'antibody': 'H3K27me3', 'type': 'neural stem cell (NSC)', 'stage': 'asynchronization'}, 'GSM1508943': {'antibody': 'input', 'type': 'SF7761 cell line', 'stage': 'asynchronization'}, 'GSM1508948': {'type': 'SF7761 cell line', 'stage': 'asynchronization'}, 'GSM1508949': {'type': 'SF8628 cell line', 'stage': 'asynchronization'}, 'GSM2279920': {'passages': '20-30', 'type': 'induced pluripotent stem cell', 'stage': 'undifferentiated'}, 'GSM2279921': {'passages': '20-30', 'type': 'induced pluripotent stem cell', 'stage': 'undifferentiated'}, 'GSM1506120': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'GFP (TRCN0000072181)', 'batch': '1'}, 'GSM1506121': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'GFP (TRCN0000072181)', 'batch': '1'}, 'GSM1506122': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'GFP (TRCN0000072181)', 'batch': '2'}, 'GSM1506123': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'GFP (TRCN0000072181)', 'batch': '2'}, 'GSM1506124': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'LacZ (TRCN0000072236)', 'batch': '1'}, 'GSM1506125': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'LacZ (TRCN0000072236)', 'batch': '1'}, 'GSM1506126': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'LacZ (TRCN0000072236)', 'batch': '2'}, 'GSM1506127': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'LacZ (TRCN0000072236)', 'batch': '2'}, 'GSM2279923': {'passages': '40-60', 'type': 'ES-derived mesoderm', 'stage': 'Differentiation D3'}, 'GSM2651063': {'donor': '3', 'treg': 'TH2'}, 'GSM2651062': {'donor': '2', 'treg': 'TH1-17'}, 'GSM2651061': {'donor': '2', 'treg': 'TH1'}, 'GSM2651060': {'donor': '2', 'treg': 'TH17'}, 'GSM2651066': {'donor': '3', 'treg': 'TH1-17'}, 'GSM2651065': {'donor': '3', 'treg': 'TH1'}, 'GSM2651064': {'donor': '3', 'treg': 'TH17'}, 'GSM2895238': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'vehicle'}, 'GSM2895239': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'estradiol (10 nM)'}, 'GSM2895237': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'vehicle'}, 'GSM1981198': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM2153300': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153303': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153302': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153305': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153304': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153307': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153306': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153309': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153308': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1981192': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM1981193': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM1981194': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM1981195': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM1981196': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM1981197': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM2311941': {'culture': '12', 'line': 'DCX+'}, 'GSM2255535': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'untreated'}, 'GSM2255534': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'Nutlin-3'}, 'GSM2255537': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'Nutlin-3'}, 'GSM2255536': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'IR'}, 'GSM2154821': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-P436A'}, 'GSM2154820': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-P436A'}, 'GSM2255533': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'IR'}, 'GSM2255532': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'untreated'}, 'GSM2255539': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'IR'}, 'GSM2255538': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'untreated'}, 'GSM1917096': {'transduction': 'cotransduced with pWZL-Hygro and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM2300547': {'type': 'CL1-0', 'variation': 'control vector'}, 'GSM1917097': {'transduction': 'cotransduced with pWZL-Hygro and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM2300549': {'type': 'CL1-0', 'variation': 'S100A7A knock-in'}, 'GSM2300548': {'type': 'CL1-5', 'variation': 'non-silensing shRNA'}, 'GSM1917094': {'transduction': 'cotransduced with pWZL-Hygro and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM2830488': {'gender': 'male', 'age': 'Donor: 30 years old', 'tissue': 'Human pancreatic islets', 'type': 'FACS-purified alpha cells', 'state': 'Type I diabetes'}, 'GSM2830489': {'gender': 'male', 'age': 'Donor: 23 years old', 'tissue': 'Human pancreatic islets', 'type': 'FACS-purified alpha cells', 'state': 'Type I diabetes'}, 'GSM2574348': {'line': 'breast cancer cell line MCF7', 'protocol': 'grown in high glucose'}, 'GSM2830482': {'gender': 'female', 'age': 'Donor: 35 years old', 'tissue': 'Human pancreatic islets', 'type': 'FACS-purified alpha cells', 'state': 'non-diabetic control'}, 'GSM2830483': {'gender': 'male', 'age': 'Donor: 55 years old', 'tissue': 'Human pancreatic islets', 'type': 'FACS-purified alpha cells', 'state': 'non-diabetic control'}, 'GSM2830486': {'gender': 'female', 'age': 'Donor: 49 years old', 'tissue': 'Human pancreatic islets', 'type': 'FACS-purified alpha cells', 'state': 'non-diabetic control'}, 'GSM2830487': {'gender': 'female', 'age': 'Donor: 14 years old', 'tissue': 'Human pancreatic islets', 'type': 'FACS-purified alpha cells', 'state': 'Type I diabetes'}, 'GSM2830484': {'gender': 'female', 'age': 'Donor: 26 years old', 'tissue': 'Human pancreatic islets', 'type': 'FACS-purified alpha cells', 'state': 'non-diabetic control'}, 'GSM2830485': {'gender': 'male', 'age': 'Donor: 50 years old', 'tissue': 'Human pancreatic islets', 'type': 'FACS-purified alpha cells', 'state': 'non-diabetic control'}, 'GSM1917090': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917091': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM2157550': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM2157551': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM2157552': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM2157553': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM2157554': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM1661531': {'line': 'MCF10A', 'phenotype': '8p Wild-type'}, 'GSM1661530': {'line': 'MCF10A', 'phenotype': '8p Wild-type'}, 'GSM2350191': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350190': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350197': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350196': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350195': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350194': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM1580988': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580989': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580980': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580981': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580982': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580983': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580984': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580985': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580986': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580987': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM869038': {'line': 'PC3', 'type': 'polyA RNA', 'treatment': 'rapamycin'}, 'GSM869039': {'line': 'PC3', 'type': 'ribosome protected RNA', 'treatment': 'rapamycin'}, 'GSM869033': {'differentiation': 'd0', 'type': 'primary keratinocytes'}, 'GSM869036': {'line': 'PC3', 'type': 'polyA RNA', 'treatment': 'vehicle'}, 'GSM869037': {'line': 'PC3', 'type': 'ribosome protected RNA', 'treatment': 'vehicle'}, 'GSM869034': {'differentiation': 'd3', 'type': 'primary keratinocytes'}, 'GSM869035': {'differentiation': 'd6', 'type': 'primary keratinocytes'}, 'GSM2476831': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476830': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476833': {'infection': 'PR ZIKV infected cells for 12h'}, 'GSM2476832': {'infection': 'Mock infected control cells'}, 'GSM2172249': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172248': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172245': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172244': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172247': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172246': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172241': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172240': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172243': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172242': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2213999': {'gender': 'M', 'tissue': 'lung'}, 'GSM2213998': {'gender': 'F', 'tissue': 'lung'}, 'GSM2213995': {'gender': 'F', 'tissue': 'lung'}, 'GSM2213994': {'gender': 'F', 'tissue': 'lung'}, 'GSM2213997': {'gender': 'F', 'tissue': 'lung'}, 'GSM2213996': {'gender': 'F', 'tissue': 'lung'}, 'GSM3711278': {'mediancvcoverage': '0.588474', 'percentaligned': '0.95012735', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '7'}, 'GSM3711279': {'mediancvcoverage': '0.54003', 'percentaligned': '0.942479277', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '7'}, 'GSM2777329': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM2777328': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM3711270': {'mediancvcoverage': '0.723329', 'percentaligned': '0.841135329', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '6'}, 'GSM3711271': {'mediancvcoverage': '0.703262', 'percentaligned': '0.940289465', 'visit': 'Visit 2a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711272': {'mediancvcoverage': '0.750332', 'percentaligned': '0.701222809', 'visit': 'Visit 2b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711273': {'mediancvcoverage': '0.587087', 'percentaligned': '0.941086007', 'visit': 'Visit 2b', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '10'}, 'GSM3711274': {'mediancvcoverage': '0.601209', 'percentaligned': '0.904747194', 'visit': 'Visit 1b', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711275': {'mediancvcoverage': '0.770833', 'percentaligned': '0.914827218', 'visit': 'Visit 2b', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '14'}, 'GSM3711276': {'mediancvcoverage': '0.774495', 'percentaligned': '0.913573306', 'visit': 'Visit 2a', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '14'}, 'GSM3711277': {'mediancvcoverage': '0.692767', 'percentaligned': '0.943405827', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '7'}, 'GSM2248015': {'line': 'YAPC', 'grnas': 'FOS'}, 'GSM2026908': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q13118'}, 'GSM2026909': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9Y4X4'}, 'GSM2026902': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P49711'}, 'GSM2026903': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P11161'}, 'GSM2026904': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q06889'}, 'GSM2026905': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'A0PJY2'}, 'GSM2026906': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q8NBF1'}, 'GSM2026907': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q13118'}, 'GSM2360630': {'sirna': 'ZEB1, ZEB2 siRNAs (HSS110548 and HSS114854, Thermo Fisher Scientific)', 'line': 'MDA-231-D', 'type': 'basal type breast cancer cell line', 'treatment': '1 ng/ml for 24 h'}, 'GSM2248017': {'line': 'YAPC', 'grnas': 'JUN'}, 'GSM1925964': {'type': 'iPSC derived macrophage (IPSDM)'}, 'GSM1294145': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'WT (Luciferase knockdown control)'}, 'GSM1294146': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'WT (Luciferase knockdown control)'}, 'GSM1294147': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'WT (Luciferase knockdown control)'}, 'GSM1294148': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'c-Jun knockdown'}, 'GSM1294149': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'c-Jun knockdown'}, 'GSM2194425': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1957218': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957219': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM2194424': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1957214': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957215': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957216': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957217': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957210': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957211': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957212': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957213': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1363307': {'person': 'child', 'trio': 'P001'}, 'GSM2248011': {'line': 'YAPC', 'grnas': 'E2F1'}, 'GSM2194421': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194420': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194423': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194422': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM485689': {'line': 'GM18951', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM485688': {'line': 'GM18526', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM2194429': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194428': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2248013': {'line': 'YAPC', 'grnas': 'FOSL1'}, 'GSM2516278': {'line': 'Parental HCC827 cells'}, 'GSM2516279': {'line': 'Resistance HCC827 ZDR3 Cells'}, 'GSM1866961': {'status': 'oral moderate dysplasia', 'tissue': 'oral mucosa', 'type': 'tissue samples obtained from patients undergoing surgical treatment for oral moderated dysplasia', 'id': '039636'}, 'GSM1866960': {'status': 'oral moderate dysplasia', 'tissue': 'oral mucosa', 'type': 'tissue samples obtained from patients undergoing surgical treatment for oral moderated dysplasia', 'id': '038038'}, 'GSM3711297': {'mediancvcoverage': '0.60612', 'percentaligned': '0.742825227', 'visit': 'Visit 0', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '17'}, 'GSM1275866': {'ercc_mix': '-', 'line': 'N052611', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Untreated'}, 'GSM1234029': {'replicate': '1', 'line': '18951', 'antibody': 'H3K27Ac'}, 'GSM1234028': {'replicate': '2', 'line': '18951', 'antibody': 'CTCF'}, 'GSM1275867': {'ercc_mix': '1', 'line': 'N052611', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Dexamethasone'}, 'GSM1234025': {'replicate': '1', 'line': '18526', 'antibody': 'SA1'}, 'GSM1234024': {'replicate': '2', 'line': '18526', 'antibody': 'RNA-seq'}, 'GSM1234027': {'replicate': '1', 'line': '18951', 'antibody': 'CTCF'}, 'GSM1234026': {'replicate': '2', 'line': '18526', 'antibody': 'SA1'}, 'GSM1234021': {'replicate': '2', 'line': '18526', 'antibody': 'H3K4me3'}, 'GSM1234020': {'replicate': '1', 'line': '18526', 'antibody': 'H3K4me3'}, 'GSM1234023': {'replicate': '1', 'line': '18526', 'antibody': 'RNA-seq'}, 'GSM1234022': {'replicate': '1', 'line': '18526', 'antibody': 'Input'}, 'GSM1634300': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM3711298': {'mediancvcoverage': '1.332585', 'percentaligned': '0.932384774', 'visit': 'Visit 2b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '9'}, 'GSM1369074': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siRGS18'}, 'GSM2041048': {'type': 'REH B-ALL cells', 'disease': 'acute lymphocytic leukemia (non-T; non-B)'}, 'GSM1275868': {'ercc_mix': '1', 'line': 'N052611', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Albuterol'}, 'GSM1275869': {'ercc_mix': '1', 'line': 'N052611', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Albuterol_Dexamethasone'}, 'GSM1624882': {'type': 'lung carcinoma cell line'}, 'GSM1624883': {'type': 'lung carcinoma cell line'}, 'GSM2153044': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM1624881': {'type': 'lung carcinoma cell line'}, 'GSM1624886': {'type': 'lung carcinoma cell line'}, 'GSM1624887': {'type': 'lung carcinoma cell line'}, 'GSM2153040': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153041': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2883003': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject9', 'drug': 'Metformin'}, 'GSM2330094': {'individual': 'patient T35', 'type': 'Eomes negative NK cells'}, 'GSM2722166': {'line': 'HCT116', 'antibody': 'rabbit anti H3K36me3 (Kim et al PNAS 108:13564, 2011 )', 'genotype': 'wildtype'}, 'GSM2330096': {'individual': 'patient T36', 'type': 'Eomes negative NK cells'}, 'GSM2330097': {'individual': 'patient T36', 'type': 'Eomes positive NK cells'}, 'GSM2330092': {'individual': 'patient T34', 'type': 'Eomes negative NK cells'}, 'GSM2330093': {'individual': 'patient T34', 'type': 'Eomes positive NK cells'}, 'GSM2330098': {'individual': 'patient T38', 'type': 'Eomes negative NK cells'}, 'GSM2330099': {'individual': 'patient T38', 'type': 'Eomes positive NK cells'}, 'GSM2722169': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'No treatment', 'timepoint': 'PID 0'}, 'GSM2722168': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'No treatment', 'timepoint': 'PID 0'}, 'GSM2843828': {'line': 'MDA-MB-231 cells', 'agent': 'inhibitor'}, 'GSM2843829': {'line': 'MDA-MB-231 cells', 'agent': 'inhibitor'}, 'GSM2944172': {'gender': 'Male', 'age': '27', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944173': {'gender': 'Male', 'age': '40', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944170': {'gender': 'Male', 'age': '21', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944171': {'gender': 'Female', 'age': '23', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944176': {'gender': 'Male', 'age': '41', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944177': {'gender': 'Female', 'age': '56', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944174': {'gender': 'Female', 'age': '34', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944175': {'gender': 'Female', 'age': '44', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2689004': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689005': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2944178': {'gender': 'Male', 'age': '27', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944179': {'gender': 'Male', 'age': '25', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2689000': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689001': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689002': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689003': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1955797': {'a': '43396', 'cd38': '623', 'cd49f': '819', 'w': '66845', 'h': '42546', 'lin': '-455', 'cd34': '6238', 'cd90': '437', 'cd7': '444', 'cd10': '1082', 'time': '2338', 'cd135': '8655', 'cd45ra': '2600'}, ' ': {'code': '200'}, 'GSM2295919': {'time': '24 hours', 'line': 'UT-7', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295918': {'time': '24 hours', 'line': 'UT-7', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295917': {'time': '24 hours', 'line': 'UT-7', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295916': {'time': '24 hours', 'line': 'TF-1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295915': {'time': '24 hours', 'line': 'TF-1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295914': {'time': '24 hours', 'line': 'TF-1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295913': {'time': '24 hours', 'line': 'TF-1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM1816432': {'type': 'Cord blood stem cells', 'treatment': 'control'}, 'GSM2295911': {'time': '24 hours', 'line': 'TF-1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295910': {'time': '24 hours', 'line': 'TF-1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2165980': {'subtype': 'Chromatin RNA', 'line': 'HeLa cells', 'variation': 'EXOC3 KD, Chromatin'}, 'GSM1816433': {'type': 'Cord blood stem cells', 'treatment': 'MSI2 knockdown'}, 'GSM2359038': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'WT aSyn-IRES-GFP (Set:E)'}, 'GSM2359037': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'WT aSyn-IRES-GFP (Set:E)'}, 'GSM2359036': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'WT aSyn-IRES-GFP (Set:E)'}, 'GSM2359035': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'IRES-GFP (Set:C)'}, 'GSM2359034': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'IRES-GFP (Set:C)'}, 'GSM2359033': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'IRES-GFP (Set:C)'}, 'GSM2359032': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'A30P aSyn-IRES-GFP (Set:A)'}, 'GSM2359031': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'A30P aSyn-IRES-GFP (Set:A)'}, 'GSM2359030': {'type': 'Lund Human Mesencephalic (LUHMES) cells', 'condition': 'A30P aSyn-IRES-GFP (Set:A)'}, 'GSM2565307': {'construction': 'PLATE-Seq', 'drug': 'Pacritinib (SB1518)'}, 'GSM2374849': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374848': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374847': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374846': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374845': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374844': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2752393': {'tnm': 'T1cN0M0', 'subtype': 'B', 'bloom': '3', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752392': {'tnm': 'T1cN1aM0', 'subtype': 'A', 'bloom': '1', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752391': {'tnm': 'T1cN0M0', 'subtype': 'A', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752390': {'tnm': 'T1cN0M0', 'subtype': 'B', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2584709': {'tissue': 'ex vivo derived cells', 'type': 'Myofibroblast', 'passage': '30+4+2'}, 'GSM2584708': {'tissue': 'ex vivo derived cells', 'type': 'Neuron-like cells', 'passage': '30+5+1'}, 'GSM2584701': {'tissue': 'ex vivo derived cells', 'type': 'Neural stem cell', 'passage': '30+5'}, 'GSM2584700': {'tissue': 'ex vivo derived cells', 'type': 'Neural stem cell', 'passage': '30+5'}, 'GSM2584703': {'tissue': 'ex vivo derived cells', 'type': 'Pancreatic stem cells', 'passage': '30+2'}, 'GSM2584702': {'tissue': 'ex vivo derived cells', 'type': 'Neural stem cell', 'passage': '30+5'}, 'GSM2584705': {'tissue': 'ex vivo derived cells', 'type': 'Pancreatic stem cells', 'passage': '30+2'}, 'GSM2584704': {'tissue': 'ex vivo derived cells', 'type': 'Pancreatic stem cells', 'passage': '30+2'}, 'GSM2584707': {'tissue': 'ex vivo derived cells', 'type': 'Neuron-like cells', 'passage': '30+5+1'}, 'GSM2584706': {'tissue': 'ex vivo derived cells', 'type': 'Neuron-like cells', 'passage': '30+5+1'}, 'GSM1046853': {'individual': 'donor_4', 'group': 'cmc', 'treatment': 'candida'}, 'GSM1046852': {'individual': 'donor_4', 'group': 'cmc', 'treatment': 'rpmi'}, 'GSM1046851': {'individual': 'donor_3', 'group': 'control', 'treatment': 'candida'}, 'GSM1046850': {'individual': 'donor_3', 'group': 'control', 'treatment': 'rpmi'}, 'GSM1046855': {'individual': 'donor_5', 'group': 'cmc', 'treatment': 'candida'}, 'GSM1046854': {'individual': 'donor_5', 'group': 'cmc', 'treatment': 'rpmi'}, 'GSM1482941': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '1T2'}, 'GSM1482940': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '1T1'}, 'GSM1482943': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '21T2'}, 'GSM1482942': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '20T2'}, 'GSM1482945': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '22T2'}, 'GSM1482944': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '22T1'}, 'GSM1482947': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '23T2'}, 'GSM1482946': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '23T1'}, 'GSM1131156': {'subjects': 'about 60 years', 'tissue': 'skin (epidermal suction blister samples)'}, 'GSM1131155': {'subjects': 'about 25 years', 'tissue': 'skin (epidermal suction blister samples)'}, 'GSM2288285': {'dox': 'N/A', 'type': 'glioma tumorsphere', 'variation': 'IDH1 R132H', 'passage': 'N/A'}, 'GSM2288284': {'dox': 'N/A', 'type': 'glioma tumorsphere', 'variation': 'IDH1 R132H wild-type', 'passage': 'N/A'}, 'GSM2288286': {'dox': 'N/A', 'type': 'glioma tumorsphere', 'variation': 'IDH1 R132H wild-type', 'passage': 'N/A'}, 'GSM2288281': {'dox': 'minus', 'type': 'immortalized human astrocytes', 'variation': 'empty vector', 'passage': '40 passages from baseline (passage 30)'}, 'GSM2288280': {'dox': 'plus', 'type': 'immortalized human astrocytes', 'variation': 'empty vector', 'passage': 'baseline (passage 30)'}, 'GSM2288283': {'dox': 'plus', 'type': 'immortalized human astrocytes', 'variation': 'empty vector', 'passage': '40 passages from baseline (passage 30)'}, 'GSM2288282': {'dox': 'withdrawn', 'type': 'immortalized human astrocytes', 'variation': 'empty vector', 'passage': 'off 40 passages from baseline (P30)'}, 'GSM1607119': {'gender': 'M', 'age': '42', 'tissue': 'lesional skin'}, 'GSM1607118': {'gender': 'F', 'age': '36', 'tissue': 'non-lesional skin'}, 'GSM2048489': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048488': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1607113': {'gender': 'F', 'age': '59', 'tissue': 'lesional skin'}, 'GSM1607112': {'gender': 'F', 'age': '40', 'tissue': 'non-lesional skin'}, 'GSM1607111': {'gender': 'F', 'age': '40', 'tissue': 'lesional skin'}, 'GSM1607110': {'gender': 'F', 'age': '67', 'tissue': 'non-lesional skin'}, 'GSM1607117': {'gender': 'F', 'age': '36', 'tissue': 'lesional skin'}, 'GSM1607116': {'gender': 'M', 'age': '69', 'tissue': 'non-lesional skin'}, 'GSM1607115': {'gender': 'M', 'age': '69', 'tissue': 'lesional skin'}, 'GSM2048482': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1617398': {'population': 'LeX+ Glast+ Prominin-high'}, 'GSM1617399': {'population': 'LeX+ Glast+ Prominin-low'}, 'GSM1617390': {'patient': '10', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'none (input)'}, 'GSM1617391': {'line': 'HCT116', 'antibody': 'CNOT3 (Novus Biologicals, catalog# H00004849_M01, lot# A1171-4B8)'}, 'GSM1617392': {'line': 'HCT116', 'variation': 'Control'}, 'GSM1617393': {'line': 'HCT116', 'variation': 'Control'}, 'GSM1617394': {'line': 'HCT116', 'variation': 'Control'}, 'GSM1617395': {'line': 'HCT116', 'variation': 'CNOT3 depleted'}, 'GSM1617396': {'line': 'HCT116', 'variation': 'CNOT3 depleted'}, 'GSM1617397': {'line': 'HCT116', 'variation': 'CNOT3 depleted'}, 'GSM2101779': {'1': 'Nontargeting shRNA', 'model': '4121', '2': '5uM DAPT'}, 'GSM2101778': {'1': 'shRNA #2 against RBPJ', 'model': '4121', '2': 'DMSO'}, 'GSM2711792': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2711793': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2711790': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2711791': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2711796': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2101772': {'1': 'shRNA #2 against RBPJ', 'model': '3691'}, 'GSM2711794': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2711795': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2043740': {'status': 'HIV+', 'individual': '0387-272', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'Untreated', 'infection': '49'}, 'GSM3580331': {'phase': 'Immune Tolerant', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580330': {'phase': 'Immune Tolerant', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580333': {'phase': 'Immune Tolerant', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580332': {'phase': 'Immune Tolerant', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580335': {'phase': 'Immune Tolerant', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580334': {'phase': 'Immune Tolerant', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580337': {'phase': 'Immune Tolerant', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580336': {'phase': 'Immune Tolerant', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM2559761': {'line': 'PANC-1', 'treatment': 'chaetocin (30nM)', 'passage': '<p30'}, 'GSM2559760': {'line': 'PANC-1', 'treatment': 'chaetocin (30nM)', 'passage': '<p30'}, 'GSM2559763': {'line': 'PANC-1', 'treatment': 'vehicle (DMSO)', 'passage': '<p30'}, 'GSM2559762': {'line': 'PANC-1', 'treatment': 'vehicle (DMSO)', 'passage': '<p30'}, 'GSM2559765': {'line': 'PANC-1', 'treatment': 'MLN8237 (90nM)', 'passage': '<p30'}, 'GSM2559764': {'line': 'PANC-1', 'treatment': 'vehicle (DMSO)', 'passage': '<p30'}, 'GSM2559767': {'line': 'PANC-1', 'treatment': 'MLN8237 (90nM)', 'passage': '<p30'}, 'GSM2559766': {'line': 'PANC-1', 'treatment': 'MLN8237 (90nM)', 'passage': '<p30'}, 'GSM2170618': {'stage': 'Hepatic endoderm 1'}, 'GSM2471122': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM2124749': {'rin': '2.5', 'Sex': 'male'}, 'GSM2124748': {'rin': '2.3', 'Sex': 'male'}, 'GSM2471123': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM2124743': {'rin': '5.2', 'Sex': 'female'}, 'GSM2124742': {'rin': '4.2', 'Sex': 'male'}, 'GSM2124741': {'rin': '2.2', 'Sex': 'female'}, 'GSM2124740': {'rin': '3', 'Sex': 'male'}, 'GSM2124747': {'rin': '3.3', 'Sex': 'female'}, 'GSM2170615': {'stage': 'Hepatic endoderm 1'}, 'GSM2124745': {'rin': '7.4', 'Sex': 'female'}, 'GSM2124744': {'rin': '6.5', 'Sex': 'female'}, 'GSM1965349': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965348': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965347': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965346': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965345': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965344': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965343': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965342': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965341': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965340': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1833880': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'wild-type', 'time': 'Embryoid body, day 17'}, 'GSM1833881': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'wild-type', 'time': 'Embryoid body, day 17'}, 'GSM2471128': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM1921062': {'line': 'MBD-MDA-231', 'passages': 'passage number 21-31', 'conditions': '2.5 x105 231 cells in 6-well plates 100 nM control siRNA Non-targeting Control Pool (Dharmacon, cat# D-001810-10) for 72 h', 'provider': 'ATCC, cat# HTB-26'}, 'GSM1921063': {'line': 'MBD-MDA-231', 'passages': 'passage number 21-31', 'conditions': '2.5 x105 231 cells in 6-well plates 100 nM control siRNA Non-targeting Control Pool (Dharmacon, cat# D-001810-10) for 72 h', 'provider': 'ATCC, cat# HTB-26'}, 'GSM1921060': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM human SRA1 Smartpool (Dharmacon, cat# LQ-027192-00)for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1921061': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM human SRA1 Smartpool (Dharmacon, cat# LQ-027192-00)for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1921066': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM control siRNA Non-targeting Control Pool (Dharmacon, cat# D-001810-10) for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1921067': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM human SRA1 Smartpool (Dharmacon, cat# LQ-027192-00) for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1921064': {'line': 'MBD-MDA-231', 'passages': 'passage number 21-31', 'conditions': '2.5 x105 cells in 6-well plates r 100 nM RNAi for 72 h', 'provider': 'ATCC, cat# HTB-26'}, 'GSM1921065': {'line': 'MBD-MDA-231', 'passages': 'passage number 21-31', 'conditions': '2.5 x105 cells in 6-well plates r 100 nM RNAi for 72 h', 'provider': 'ATCC, cat# HTB-26'}, 'GSM2204212': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM1833884': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 17'}, 'GSM1921068': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM human SRA1 siRNA1 (Dharmacon, cat#J-027192-09-0002 for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1921069': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM human SRA1 siRNA2 (Dharmacon, cat#J-027192-10-0002 ) for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM2204216': {'status': 'ex vivo; unstimulated', 'type': 'LN_CMPD1lo57lo', 'phenotype': 'CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1-CD57-'}, 'GSM2204217': {'status': 'ex vivo; unstimulated', 'type': 'LN_nGC', 'phenotype': 'nonGCTfh(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1+CD57-)'}, 'GSM2204214': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM1833885': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM1833886': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM2712218': {'status': 'Eralpha positive wt', 'line': 'LCC9 Tam resistant', 'tissue': 'Breast Lumen'}, 'GSM2712216': {'status': 'Eralpha positive wt', 'line': 'LCC9 Tam resistant', 'tissue': 'Breast Lumen'}, 'GSM2712217': {'status': 'Eralpha positive wt', 'line': 'LCC9 Tam resistant', 'tissue': 'Breast Lumen'}, 'GSM2712215': {'status': 'Eralpha positive wt', 'line': 'LCC9 Tam resistant', 'tissue': 'Breast Lumen'}, 'GSM2616505': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616504': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2552858': {'gender': 'male', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'MFN2(R707W)'}, 'GSM2552859': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2616501': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616500': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616503': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616502': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2552853': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'MFN2(R707W)'}, 'GSM2552856': {'gender': 'male', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'MFN2(R707W)'}, 'GSM2616508': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2552854': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'MFN2(R707W)'}, 'GSM2552855': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'MFN2(R707W)'}, 'GSM2141930': {'line': 'MOLM-14', 'shRNAi': 'shMTHFD2'}, 'GSM2141498': {'individual': 'AF175', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141499': {'individual': 'AF175', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141496': {'individual': 'AF173', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141497': {'individual': 'AF173', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141494': {'individual': 'AF171', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141495': {'individual': 'AF173', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1164649': {'line': 'HepG2', 'with': 'scrambled siRNA (control)'}, 'GSM2141493': {'individual': 'AF171', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141490': {'individual': 'AF169', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141491': {'individual': 'AF169', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2058047': {'line': 'V852', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM1641254': {'type': 'PBMC'}, 'GSM3586788': {'origin': 'UNCLASSIFIED', 'pfstt': '797', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '864', 'cycles': '6', 'oscs': '0'}, 'GSM3586789': {'origin': 'GCB', 'pfstt': '784', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '795', 'cycles': '6', 'oscs': '0'}, 'GSM3586786': {'origin': 'GCB', 'pfstt': '173', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '469', 'cycles': '6', 'oscs': '1'}, 'GSM3586787': {'origin': 'UNCLASSIFIED', 'pfstt': '724', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '865', 'cycles': '6', 'oscs': '0'}, 'GSM3586784': {'origin': 'GCB', 'pfstt': '277', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '918', 'cycles': '6', 'oscs': '0'}, 'GSM3586785': {'origin': 'GCB', 'pfstt': '868', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '868', 'cycles': '6', 'oscs': '0'}, 'GSM3586782': {'origin': 'UNCLASSIFIED', 'pfstt': '1', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '22', 'cycles': '8', 'oscs': '0'}, 'GSM3586783': {'pfstt': '801', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1085', 'cycles': '6', 'oscs': '0'}, 'GSM3586780': {'origin': 'ABC', 'pfstt': '1027', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1027', 'cycles': '8', 'oscs': '0'}, 'GSM3586781': {'origin': 'GCB', 'pfstt': '357', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '651', 'cycles': '8', 'oscs': '1'}, 'GSM2316568': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316569': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316560': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316561': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316562': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316563': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316564': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316565': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316566': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316567': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1364038': {'type': 'induced pluripotent stem cells 7 days after 2nd passage'}, 'GSM1364039': {'type': 'induced pluripotent stem cells 7 days after 3rd passage'}, 'GSM2130418': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM1914465': {'group': 'C116_iPSC', 'region': 'C116', 'type': 'iPSC'}, 'GSM1914462': {'group': 'C116_NSC', 'region': 'C116', 'type': 'NSC'}, 'GSM1914463': {'group': 'C116_NSC', 'region': 'C116', 'type': 'NSC'}, 'GSM1914460': {'group': 'C116_NSC', 'region': 'C116', 'type': 'NSC'}, 'GSM1914461': {'group': 'C116_NSC', 'region': 'C116', 'type': 'NSC'}, 'GSM1364030': {'type': 'Human dermal fibroblast'}, 'GSM1364031': {'type': 'SOX2-EGFP (+) cells on day 3'}, 'GSM1364032': {'type': 'TRA-1-60(+) cells on day 7'}, 'GSM1364033': {'type': 'TRA-1-60(+) cells on day 11'}, 'GSM2130416': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM1364035': {'type': 'TRA-1-60(+) cells on day 20'}, 'GSM1364036': {'type': 'TRA-1-60(+) cells on day 28'}, 'GSM1364037': {'type': 'induced pluripotent stem cells 7 days after TRA-1-60(+) cell sorting on day 28'}, 'GSM1479558': {'index': '9', 'diagnosis': '--', 'cellcount': '310438', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '56', 'collectiondate': 'August 24 2012', 'samplename': '56_NK', 'celltype': 'NK', 'diseasestatus': 'MS posttreatment'}, 'GSM1479559': {'index': '19', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '56', 'collectiondate': 'August 24 2012', 'samplename': '56_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'MS posttreatment'}, 'GSM2055801': {'tissue': 'Gastric cancer'}, 'GSM999528': {'input': '1000 ng', 'line': 'K-562', 'type': 'CML', 'state': 'fragmented'}, 'GSM999529': {'input': '1000 ng', 'line': 'K-562', 'type': 'CML', 'state': 'fragmented'}, 'GSM1366889': {'with': 'retroviruses expressing short haiprin against JMJD3', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366888': {'with': 'retroviruses expressing short haiprin against JMJD3', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366887': {'with': 'retroviruses expressing short haiprin against JMJD3', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1479551': {'index': '15', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '55', 'collectiondate': 'August 23 2012', 'samplename': '55_CD8T', 'celltype': 'CD8', 'diseasestatus': 'MS pretreatment'}, 'GSM1479552': {'index': '6', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '55', 'collectiondate': 'August 23 2012', 'samplename': '55_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'MS pretreatment'}, 'GSM999527': {'input': '1000 ng', 'line': 'K-562', 'type': 'CML', 'state': 'fragmented'}, 'GSM1479554': {'index': '15', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '56', 'collectiondate': 'August 24 2012', 'samplename': '56_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'MS posttreatment'}, 'GSM1479555': {'index': '10', 'diagnosis': '--', 'cellcount': '640619', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '56', 'collectiondate': 'August 24 2012', 'samplename': '56_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'MS posttreatment'}, 'GSM1479556': {'index': '21', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '56', 'collectiondate': 'August 24 2012', 'samplename': '56_CD4T', 'celltype': 'CD4', 'diseasestatus': 'MS posttreatment'}, 'GSM1479557': {'index': '23', 'diagnosis': '--', 'cellcount': '1352936', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '56', 'collectiondate': 'August 24 2012', 'samplename': '56_CD8T', 'celltype': 'CD8', 'diseasestatus': 'MS posttreatment'}, 'GSM2193065': {'sirna': 'PAX8 siRNA 405', 'line': 'FT194', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15405, Ambion'}, 'GSM2141238': {'individual': 'AF11', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141239': {'individual': 'AF17', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141236': {'individual': 'AF11', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141237': {'individual': 'AF11', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1536429': {'type': 'capture long'}, 'GSM2058043': {'line': 'V5', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2304829': {'used': 'GCAT, CTAG', 'type': 'T lymphocyte', 'treatment': 'PHA', 'analysis': '29'}, 'GSM2047589': {'well': 'G01', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2123957': {}, 'GSM2287543': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287542': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287541': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287540': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287547': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287546': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287545': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287544': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610903': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610902': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2287549': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287548': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610907': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610906': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610905': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610904': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM979643': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10057', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '071WC'}, 'GSM979642': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10104ATC', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '073WC'}, 'GSM979641': {'lineage': 'ectoderm', 'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10105GAT', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '063WC'}, 'GSM979640': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10036', 'readtype': '1x50', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '053WC'}, 'GSM979647': {'description': 'Single 50 nt reads', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'CThi10045', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '3', 'biorep': '085N'}, 'GSM979646': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10043', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '3', 'biorep': '085WC'}, 'GSM979645': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10102ACA', 'readtype': '1x50', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '093WC'}, 'GSM979644': {'lineage': 'mesoderm', 'description': 'Single 36 nt reads', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'CTig10027', 'readtype': '1x36', 'sex': 'U', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'biorep': 'gen0162N'}, 'GSM979649': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10056', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '083WC'}, 'GSM979648': {'description': 'Single 50 nt reads', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'CThi10044', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '3', 'biorep': '085C'}, 'GSM2575082': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2575083': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 2', 'point': '18h'}, 'GSM2689217': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689216': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689211': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689210': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2417927': {'type': 'human colorectal cancer cells', 'agent': 'F. nucleatum'}, 'GSM2689213': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689212': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2417928': {'type': 'human colorectal cancer cells', 'agent': 'F. nucleatum'}, 'GSM2417929': {'type': 'human colorectal cancer cells', 'agent': 'F. nucleatum'}, 'GSM1631883': {'type': 'Day 8 differentiated cells with TSA treatment during days 4-8'}, 'GSM2533691': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533690': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533693': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533692': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533695': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533694': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533697': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533696': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533699': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533698': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2093144': {'bin': '16', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093145': {'bin': '5', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093146': {'bin': '9', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093147': {'bin': '21', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093140': {'bin': '14', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093141': {'bin': '21', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093142': {'bin': '16', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093143': {'bin': '16', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2027532': {'line': 'H7 derived'}, 'GSM2093148': {'bin': '5', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093149': {'bin': '14', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2027533': {'line': 'H7 derived'}, 'GSM2258358': {'status': 'Borrellia burgdorferi infected', 'type': 'astrocytes', 'point': '24h'}, 'GSM2258359': {'status': 'Borrellia burgdorferi infected', 'type': 'astrocytes', 'point': '48h'}, 'GSM2877934': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2304581': {'type': 'HUVEC', 'treatment': 'miR-93-5p mimic control'}, 'GSM2306828': {'protocol': 'NoDice polyIC'}, 'GSM2306829': {'protocol': 'RNaseIII null Mock'}, 'GSM2304580': {'type': 'HUVEC', 'treatment': 'miR-93-5p mimic control'}, 'GSM2306825': {'protocol': 'NoDice Mock'}, 'GSM2306826': {'protocol': 'NoDice Mock'}, 'GSM2306827': {'protocol': 'NoDice polyIC'}, 'GSM2361559': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361558': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2350162': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM1534561': {'type': 'Endometrial stromal cells', 'patient': '1', 'phenotype': 'PER2 knockdown (PER2 siRNA)'}, 'GSM1534560': {'type': 'Endometrial stromal cells', 'patient': '3', 'phenotype': 'Wild type (Non targeting siRNA)'}, 'GSM1534563': {'type': 'Endometrial stromal cells', 'patient': '3', 'phenotype': 'PER2 knockdown (PER2 siRNA)'}, 'GSM1534562': {'type': 'Endometrial stromal cells', 'patient': '2', 'phenotype': 'PER2 knockdown (PER2 siRNA)'}, 'GSM2304587': {'type': 'HUVEC', 'treatment': 'miR-93-5p inhibitor'}, 'GSM2304586': {'type': 'HUVEC', 'treatment': 'miR-93-5p inhibitor control'}, 'GSM2304589': {'type': 'HUVEC', 'treatment': 'miR-93-5p inhibitor'}, 'GSM2361552': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1280530': {'with': 'Twist', 'type': 'monolayer'}, 'GSM1280531': {'with': 'Twist', 'type': 'sphere'}, 'GSM2361550': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361555': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361554': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2327830': {'line': 'HCT116Â\\xa0', 'tissue': 'colon', 'phenotype': 'colorectal carcinoma'}, 'GSM1326588': {'group': 'Exosome siRNA Pm\\\\Scl-100', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326589': {'group': 'Luciferase tetra-loop construct', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM2175079': {'line': 'K562'}, 'GSM2175078': {'line': 'K562'}, 'GSM2175073': {'line': 'K562'}, 'GSM2175072': {'line': 'K562'}, 'GSM1138581': {'type': 'Primary human epidermal melanocytes (neonatal)'}, 'GSM1138580': {'type': 'Primary human epidermal melanocytes (neonatal)'}, 'GSM2175077': {'line': 'K562'}, 'GSM2175076': {'line': 'K562'}, 'GSM2175075': {'line': 'K562'}, 'GSM2175074': {'line': 'K562'}, 'GSM1326580': {'group': 'Polysome Pactamycin', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM1326581': {'group': '7mG IP - Combined', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1357229': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357228': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357227': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357226': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357225': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357224': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357223': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357222': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357221': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357220': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM2316973': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316972': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316971': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316970': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316977': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316976': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316975': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316974': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2058167': {'line': 'V703', 'tissue': 'colorectal cancer cell line'}, 'GSM2058165': {'line': 'V576', 'tissue': 'colorectal cancer cell line'}, 'GSM2316978': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2058163': {'line': 'V576', 'tissue': 'colorectal cancer cell line'}, 'GSM2058161': {'line': 'V576', 'tissue': 'colorectal cancer cell line'}, 'GSM2055497': {'individual': 'Patient 1', 'tissue': 'Adenoma'}, 'GSM2055498': {'individual': 'Patient 2', 'tissue': 'Normal rectal mucosa'}, 'GSM2055499': {'individual': 'Patient 2', 'tissue': 'Adenoma'}, 'GSM1697215': {'number': '27'}, 'GSM1697214': {'number': '44'}, 'GSM1697217': {'number': '6'}, 'GSM1697216': {'number': '48'}, 'GSM2689329': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689328': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1697213': {'number': '65'}, 'GSM1697212': {'number': '30'}, 'GSM2689325': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689324': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689327': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689326': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689321': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689320': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689323': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689322': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1084053': {'line': '293S', 'treatment': 'arsenite'}, 'GSM2589399': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589398': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2425002': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425003': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425004': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425005': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425006': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425007': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425008': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425009': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2589393': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589392': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589395': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589394': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589397': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589396': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM1345824': {'type': 'osteoblastic cell'}, 'GSM2471072': {'status': 'HIV', 'donorid': 'BC044', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM1275177': {'type': 'B CD19 Lymphocytes', 'phenotype': 'House dust mite allergic'}, 'GSM2471073': {'status': 'Healthy', 'donorid': 'BC046', 'subset': 'Naive', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM1085740': {'transfection': 'TCF21 knockdown siRNA', 'type': 'in vitro cultured primary coronary artery smooth muscle cells'}, 'GSM1085741': {'transfection': 'TCF21 knockdown siRNA', 'type': 'in vitro cultured primary coronary artery smooth muscle cells'}, 'GSM2877908': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877909': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877906': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877907': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877904': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877905': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877902': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877903': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877900': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877901': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2047440': {'well': 'B09', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047441': {'well': 'B10', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047442': {'well': 'B11', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047443': {'well': 'B12', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047444': {'well': 'C01', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047445': {'well': 'C02', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047446': {'well': 'C03', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047447': {'well': 'C04', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047448': {'well': 'C05', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047449': {'well': 'C06', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2041049': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia', 'variation': 'control'}, 'GSM2082511': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2+/-'}, 'GSM2543858': {'library_id': 'lib7986', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543859': {'library_id': 'lib7987', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2082510': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2+/+'}, 'GSM2543854': {'library_id': 'lib7980', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543855': {'library_id': 'lib7981', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543856': {'library_id': 'lib7982', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '1.552', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543857': {'library_id': 'lib7983', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '1.552', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543850': {'library_id': 'lib7972', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2082513': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2-/-'}, 'GSM2543852': {'library_id': 'lib7976', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.083', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543853': {'library_id': 'lib7977', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.083', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2082512': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2+/-'}, 'GSM2082515': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2+/+'}, 'GSM2082514': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2-/-'}, 'GSM2644616': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2082517': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2+/-'}, 'GSM2357391': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Control: Empigen untreated Ser2 phospho'}, 'GSM2082516': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2+/+'}, 'GSM2357392': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Empigen treated Ser2 phospho'}, 'GSM2357393': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Control: Empigen untreated Tyr1 phospho'}, 'GSM2451258': {'compartment': 'Stroma', 'id': 'CUMC_010', 'library': 'NuGEN'}, 'GSM2451259': {'compartment': 'Epithelium', 'id': 'CUMC_011', 'library': 'NuGEN'}, 'GSM2451256': {'compartment': 'Epithelium', 'id': 'CUMC_010', 'library': 'NuGEN'}, 'GSM2451257': {'compartment': 'Stroma', 'id': 'CUMC_001', 'library': 'NuGEN'}, 'GSM2451254': {'compartment': 'Epithelium', 'id': 'CUMC_009', 'library': 'NuGEN'}, 'GSM2451255': {'compartment': 'Stroma', 'id': 'CUMC_009', 'library': 'NuGEN'}, 'GSM2451252': {'compartment': 'Epithelium', 'id': 'CUMC_008', 'library': 'NuGEN'}, 'GSM2451253': {'compartment': 'Stroma', 'id': 'CUMC_008', 'library': 'NuGEN'}, 'GSM2451250': {'compartment': 'Epithelium', 'id': 'CUMC_007', 'library': 'NuGEN'}, 'GSM3454798': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '5 days'}, 'GSM2644610': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-PolII serum (Wade lab)'}, 'GSM2644611': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-PolII serum (Wade lab)'}, 'GSM3454795': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '3 days'}, 'GSM699737': {'stimulation': 'none', 'line': 'HCT116', 'program': 'ELAND', 'antibody': 'none', 'variation': 'Wild type'}, 'GSM2544718': {'line': 'K562'}, 'GSM3454794': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '2 days'}, 'GSM2125139': {'status': 'ER+/PRA-/PRB+', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2544719': {'line': 'K562'}, 'GSM2467451': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467450': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467453': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467452': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467455': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467454': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467457': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467456': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2535639': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1100', 'samplename': '1_413UNST_C43', 'seqsite': 'BRI', 'sampleID': 'S13214', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1100', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C43'}, 'GSM2644618': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644619': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM1207878': {'line': 'MCF7', 'purification': 'oligo(dT) beads'}, 'GSM1207879': {'line': 'MCF7', 'purification': 'oligo(dT) beads'}, 'GSM2535638': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1099', 'samplename': '1_413UNST_C37', 'seqsite': 'BRI', 'sampleID': 'S13239', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1099', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C37'}, 'GSM2536010': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8453', 'samplename': '1_T1D#5_C55', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31773', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8453', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C55'}, 'GSM2536011': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8456', 'samplename': '1*_T1D#5_C62', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31776', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8456', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C62'}, 'GSM2536012': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8459', 'samplename': '1*_T1D#5_C86', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31779', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8459', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C86'}, 'GSM2536013': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8461', 'samplename': '1_T1D#5_C51', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31781', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8461', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C51'}, 'GSM2536014': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8462', 'samplename': '1_T1D#5_C57', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31782', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8462', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C57'}, 'GSM2536015': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8464', 'samplename': '1*_T1D#5_C69', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31784', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8464', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C69'}, 'GSM2807428': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807429': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807426': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807427': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807424': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807425': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807422': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807423': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807420': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807421': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2575346': {'line': 'WM983B', 'subclone': 'F4', 'condition': 'NoDrug'}, 'GSM2575341': {'line': 'WM983B', 'subclone': 'E9', 'condition': 'Drug'}, 'GSM2575340': {'line': 'WM989', 'subclone': 'H1', 'condition': 'Drug'}, 'GSM1931522': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM2575343': {'line': 'WM983B', 'subclone': 'E9', 'condition': 'Drug'}, 'GSM1931520': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM1931521': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM2575342': {'line': 'WM983B', 'subclone': 'E9', 'condition': 'NoDrug'}, 'GSM1564319': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '50', 'replicate': '2', 'hcc827': '50'}, 'GSM2665860': {'age': 'Day 175', 'well': 'F3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665861': {'age': 'Day 175', 'well': 'C12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665862': {'age': 'Day 175', 'well': 'A12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665863': {'age': 'Day 175', 'well': 'G10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665864': {'age': 'Day 175', 'well': 'H7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665865': {'age': 'Day 175', 'well': 'D11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665866': {'age': 'Day 175', 'well': 'E11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665867': {'age': 'Day 175', 'well': 'G4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665868': {'age': 'Day 175', 'well': 'A3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665869': {'age': 'Day 175', 'well': 'C7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2166329': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2575348': {'line': 'WM983B', 'subclone': 'F4', 'condition': 'Drug'}, 'GSM1564318': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '25', 'replicate': '2', 'hcc827': '75'}, 'GSM2047796': {'well': 'H02', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1521624': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1957428': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1521620': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521621': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521622': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521623': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2840258': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840259': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM1957426': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2840250': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840251': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840252': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840253': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840254': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840255': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840256': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840257': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM937163': {'line': 'T-47D', 'replicate': '1', 'treatment': '8 hour 10 nM 17β-estradiol'}, 'GSM2671269': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671268': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671267': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671266': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671265': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671264': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671263': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671262': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671261': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671260': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2166325': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM721699': {'tissue': 'sperm', 'type': 'proven fertile'}, 'GSM721698': {'tissue': 'sperm', 'type': 'proven fertile'}, 'GSM721697': {'tissue': 'sperm', 'type': 'proven fertile'}, 'GSM721696': {'tissue': 'sperm', 'type': 'proven fertile'}, 'GSM2166324': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2640638': {'line': 'A549', 'agent': 'hRSV NS1 1-118', 'infection': '96'}, 'GSM2640639': {'line': 'A549', 'agent': 'hRSV NS1 1-118', 'infection': '96'}, 'GSM2640634': {'line': 'A549', 'agent': 'hRSV WT', 'infection': '96'}, 'GSM2640635': {'line': 'A549', 'agent': 'hRSV WT', 'infection': '96'}, 'GSM2359170': {'strain': 'CCD-18Co', 'treatment': 'Recombinant Wnt3A (human)'}, 'GSM2359171': {'strain': 'CCD-18Co', 'treatment': 'Recombinant Wnt3A (human)'}, 'GSM2640632': {'line': 'A549', 'agent': 'mock', 'infection': '0'}, 'GSM2640633': {'line': 'A549', 'agent': 'mock', 'infection': '0'}, 'GSM2088041': {'status': 'Dysplasia', 'ratio': '1.10645767161424', 'age': '51', 'years': '63.43', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '72657946', 'alignment': '45098050'}, 'GSM2088040': {'status': 'Dysplasia', 'ratio': '1.27572567969614', 'age': '69', 'years': '108', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '56475902', 'alignment': '34399222'}, 'GSM2088043': {'status': 'Dysplasia', 'ratio': '1.24704680857147', 'age': '71', 'years': '49.5', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '59419018', 'alignment': '37353801'}, 'GSM2088042': {'status': 'Dysplasia', 'ratio': '1.12208633475347', 'age': '49', 'years': '32', 'content': '48.48', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '87055542', 'alignment': '54549309'}, 'GSM2088045': {'status': 'Normal', 'ratio': '1.16566669177828', 'age': '58', 'years': '77', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '62732144', 'alignment': '38813364'}, 'GSM2088044': {'status': 'Normal', 'ratio': '1.41879906697689', 'age': '61', 'years': '35', 'content': '47.47', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Male', 'alignments': '91728390', 'alignment': '56500461'}, 'GSM2088047': {'status': 'Dysplasia', 'ratio': '1.32509703486473', 'age': '64', 'years': '50', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Female', 'alignments': '72783634', 'alignment': '44485819'}, 'GSM2088046': {'status': 'Dysplasia', 'ratio': '1.50109335680816', 'age': '54', 'years': '32.5', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '78315768', 'alignment': '48127094'}, 'GSM2088049': {'status': 'Normal', 'ratio': '1.24940726479646', 'age': '68', 'years': '47', 'content': '47.47', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Female', 'alignments': '83092742', 'alignment': '50905353'}, 'GSM2088048': {'status': 'Normal', 'ratio': '1.41307978214588', 'age': '60', 'years': '42', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Male', 'alignments': '56982472', 'alignment': '35281018'}, 'GSM2374144': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374145': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374142': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374143': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374140': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374141': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2459069': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.75'}, 'GSM2459068': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.50'}, 'GSM1646729': {'status': 'Tumor', 'gender': 'F', 'age': '67', 'tissue': 'liver'}, 'GSM1646728': {'status': 'Tumor', 'gender': 'F', 'age': '55', 'tissue': 'liver'}, 'GSM2459065': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '5.42'}, 'GSM2459064': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.67'}, 'GSM1646725': {'status': 'Tumor', 'gender': 'M', 'age': '56', 'tissue': 'liver'}, 'GSM1646724': {'status': 'Tumor', 'gender': 'M', 'age': '52', 'tissue': 'liver'}, 'GSM1646723': {'status': 'Tumor', 'gender': 'M', 'age': '60', 'tissue': 'liver'}, 'GSM1646722': {'status': 'Tumor', 'gender': 'M', 'age': '62', 'tissue': 'liver'}, 'GSM1646721': {'status': 'Tumor', 'gender': 'M', 'age': '39', 'tissue': 'liver'}, 'GSM2459062': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.50'}, 'GSM1888669': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1334729': {'with': 'control vector (pcDNA4)', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1334728': {'with': 'control vector (pcDNA4)', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1334725': {'with': 'ADAR1 RNA binding mutant (EAA)', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1334724': {'with': 'ADAR1 RNA binding mutant (EAA)', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1334727': {'with': 'ADAR1 overexpression vector', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1334726': {'with': 'ADAR1 overexpression vector', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1345820': {'type': 'osteoblastic cell'}, 'GSM1334723': {'vendor': 'Santa Cruz Biotechnologies', 'pasaages': '6', 'line': 'U87MG', 'type': 'Glioblastoma (Astrocytoma) cells', 'antibody': 'ADAR1 mouse monoclonal'}, 'GSM1334722': {'vendor': 'Santa Cruz Biotechnologies', 'pasaages': '6', 'line': 'U87MG', 'type': 'Glioblastoma (Astrocytoma) cells', 'antibody': 'ADAR1 mouse monoclonal'}, 'GSM2543964': {'library_id': 'lib8252', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1823309': {'line': '553.C2', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM2543965': {'library_id': 'lib8253', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2295892': {'type': 'HeLa cells', 'rescue': 'SMG7', 'kd': 'SMG6, SMG7'}, 'GSM2295893': {'type': 'HeLa cells', 'rescue': 'SMG7', 'kd': 'SMG6, SMG7'}, 'GSM2295890': {'type': 'HeLa cells', 'rescue': 'SMG6', 'kd': 'SMG6, SMG7'}, 'GSM2295891': {'type': 'HeLa cells', 'rescue': 'SMG7', 'kd': 'SMG6, SMG7'}, 'GSM2543966': {'library_id': 'lib8254', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.129', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2287039': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2543967': {'library_id': 'lib8255', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.129', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2287033': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2133523': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2287031': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287030': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287037': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287036': {'gender': 'male', 'type': 'Pooled'}, 'GSM2287035': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287034': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1968738': {'line': 'HSB-2', 'variation': 'expressing LDB1 I322A'}, 'GSM1303934': {'tissue': 'islets of Langerhans', 'treatment': 'control'}, 'GSM1303935': {'tissue': 'islets of Langerhans', 'treatment': 'palmitate'}, 'GSM1303932': {'tissue': 'islets of Langerhans', 'treatment': 'control'}, 'GSM1303933': {'tissue': 'islets of Langerhans', 'treatment': 'palmitate'}, 'GSM1303930': {'tissue': 'islets of Langerhans', 'treatment': 'control'}, 'GSM1303931': {'tissue': 'islets of Langerhans', 'treatment': 'palmitate'}, 'GSM1087876': {'labexpid': '12819', 'line': 'GM12878'}, 'GSM1087877': {'labexpid': '12820', 'line': 'GM12878'}, 'GSM1968733': {'line': 'HSB-2', 'variation': 'expressing LDB1 RLIT>AAAA'}, 'GSM1968732': {'line': 'HSB-2', 'variation': 'expressing LDB1 {delta}LID'}, 'GSM1968735': {'line': 'HSB-2', 'variation': 'expressing LDB1 {delta}LCCD'}, 'GSM1087873': {'labexpid': '12542', 'line': 'GM12878'}, 'GSM1087870': {'labexpid': '12539', 'line': 'GM12878'}, 'GSM1087871': {'labexpid': '12540', 'line': 'GM12878'}, 'GSM2409716': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409717': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409714': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409715': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409712': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409713': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409710': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409711': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2302107': {'timepoint': 'Post', 'id': '44', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302106': {'timepoint': 'Pre', 'id': '44', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302105': {'timepoint': 'Post', 'id': '43', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302104': {'timepoint': 'Pre', 'id': '43', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302103': {'timepoint': 'Post', 'id': '42', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302102': {'timepoint': 'Pre', 'id': '42', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302101': {'timepoint': 'Post', 'id': '41', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302100': {'timepoint': 'Pre', 'id': '41', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302109': {'timepoint': 'Post', 'id': '45', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302108': {'timepoint': 'Pre', 'id': '45', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2747474': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': 'DMSO'}, 'GSM2747475': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': 'DMSO'}, 'GSM2747476': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': '5uM GW4064'}, 'GSM2747477': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': '5uM GW4065'}, 'GSM2747470': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': '5uM GW4064'}, 'GSM2747471': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': '5uM GW4065'}, 'GSM2747472': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': '5uM GW4066'}, 'GSM2747473': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': 'DMSO'}, 'GSM2747478': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': '5uM GW4066'}, 'GSM2747479': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': 'DMSO'}, 'GSM2304519': {'tissue': 'Endometrial stromal cells', 'point': 'TP1 (naïve)'}, 'GSM1974770': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Mitochondrial deficient senescent', 'treatment': 'CCCP'}, 'GSM1974771': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Mitochondrial deficient senescent', 'treatment': 'CCCP'}, 'GSM1974772': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Mitochondrial deficient senescent', 'treatment': 'CCCP'}, 'GSM1166113': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166112': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166111': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166110': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166117': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166116': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166115': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166114': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166119': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166118': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2304512': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2304513': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM1708993': {'line': 'H1', 'type': 'Embryonic stem cells', 'genotype': 'wildtype'}, 'GSM2455838': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455839': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1071295': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'tisssue': 'malignant prostate tumors'}, 'GSM1071294': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'tisssue': 'malignant prostate tumors'}, 'GSM2304514': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2304515': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM1607096': {'gender': 'M', 'age': '45', 'tissue': 'non-lesional skin'}, 'GSM1607097': {'gender': 'F', 'age': '47', 'tissue': 'lesional skin'}, 'GSM1607094': {'gender': 'M', 'age': '34', 'tissue': 'non-lesional skin'}, 'GSM1607095': {'gender': 'M', 'age': '45', 'tissue': 'lesional skin'}, 'GSM1607092': {'gender': 'M', 'age': '32', 'tissue': 'non-lesional skin'}, 'GSM1607093': {'gender': 'M', 'age': '34', 'tissue': 'lesional skin'}, 'GSM1607090': {'gender': 'M', 'age': '59', 'tissue': 'non-lesional skin'}, 'GSM1607091': {'gender': 'M', 'age': '32', 'tissue': 'lesional skin'}, 'GSM2101094': {'line': 'HEK293 cells', 'stress': 'heat shock'}, 'GSM2101095': {'line': 'HEK293 cells', 'stress': 'heat shock'}, 'GSM2101092': {'line': 'HEK293 cells', 'stress': 'control'}, 'GSM2101093': {'line': 'HEK293 cells', 'stress': 'heat shock'}, 'GSM1607098': {'gender': 'F', 'age': '47', 'tissue': 'non-lesional skin'}, 'GSM1607099': {'gender': 'F', 'age': '49', 'tissue': 'lesional skin'}, 'GSM1866055': {'tissue': 'hippocampus'}, 'GSM1533257': {}, 'GSM2772506': {'group': 'exvivo', 'disease': 'H', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'H-394', 'cdna': 'cDNA2035'}, 'GSM1163060': {'patient': 'Healthy_N253', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163061': {'patient': 'Healthy_N253', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Antagonist', 'id': '4'}, 'GSM1163062': {'patient': 'Healthy_N254', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Untreated', 'id': '1'}, 'GSM2772507': {'group': 'exvivo', 'disease': 'H', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'H-396', 'cdna': 'cDNA2056'}, 'GSM1163064': {'patient': 'Healthy_N254', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163065': {'patient': 'Healthy_N254', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Antagonist', 'id': '4'}, 'GSM2772500': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'SYS-205', 'cdna': 'cDNA2064'}, 'GSM1533253': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-20'}, 'GSM1533250': {}, 'GSM1866052': {'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1892647': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892646': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892645': {'tissue': 'FFPE'}, 'GSM1892644': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892643': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892642': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892641': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892640': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892649': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892648': {'tissue': 'FFPE'}, 'GSM1866059': {'line': 'Gliobmastoma cell line'}, 'GSM1866058': {'line': 'Gliobmastoma cell line'}, 'GSM2413469': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1533259': {}, 'GSM2072048': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gCIC-2', 'treatment': '50 nM Trametinib'}, 'GSM2072049': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gGFP-1', 'treatment': 'DMSO'}, 'GSM2072040': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gGFP-1', 'treatment': '50 nM Trametinib'}, 'GSM2072041': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gCIC-1', 'treatment': 'DMSO'}, 'GSM2072042': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gCIC-1', 'treatment': 'DMSO'}, 'GSM2072043': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gCIC-1', 'treatment': '50 nM Trametinib'}, 'GSM2072044': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gCIC-1', 'treatment': '50 nM Trametinib'}, 'GSM2072045': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gCIC-2', 'treatment': 'DMSO'}, 'GSM2072046': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gCIC-2', 'treatment': 'DMSO'}, 'GSM2072047': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gCIC-2', 'treatment': '50 nM Trametinib'}, 'GSM2049898': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM2460278': {'type': 'embryonic stem cells'}, 'GSM2049892': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM2049894': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM2049896': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM2440768': {'line': 'HeLa', 'treatment': 'control'}, 'GSM2440769': {'line': 'HeLa', 'treatment': 'hnRNP A1-knockdown'}, 'GSM1216739': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3'}, 'GSM1216738': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3K4me3'}, 'GSM1216735': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3'}, 'GSM1216737': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3K4me1'}, 'GSM1216736': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3K27ac'}, 'GSM1863665': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863664': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM2460276': {'type': 'embryonic stem cells'}, 'GSM2460277': {'type': 'embryonic stem cells'}, 'GSM2312050': {'culture': '12', 'line': 'DCX+'}, 'GSM2312051': {'culture': '12', 'line': 'DCX+'}, 'GSM1965068': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965069': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2312054': {'culture': '12', 'line': 'DCX+'}, 'GSM2312055': {'culture': '12', 'line': 'DCX+'}, 'GSM2312056': {'culture': '12', 'line': 'DCX+'}, 'GSM2312057': {'culture': '12', 'line': 'DCX+'}, 'GSM1965062': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965063': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965060': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965061': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965066': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965067': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965064': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965065': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM3586625': {'origin': 'GCB', 'pfstt': '317', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '880', 'cycles': '6', 'oscs': '0'}, 'GSM3586624': {'origin': 'GCB', 'pfstt': '133', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '200', 'cycles': '6', 'oscs': '1'}, 'GSM3586627': {'origin': 'ABC', 'pfstt': '732', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '732', 'cycles': '6', 'oscs': '0'}, 'GSM3586626': {'origin': 'GCB', 'pfstt': '812', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '812', 'cycles': '6', 'oscs': '0'}, 'GSM3586621': {'origin': 'ABC', 'pfstt': '1335', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1352', 'cycles': '6', 'oscs': '0'}, 'GSM3586620': {'origin': 'ABC', 'pfstt': '736', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1359', 'cycles': '6', 'oscs': '0'}, 'GSM3586623': {'origin': 'GCB', 'pfstt': '946', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '947', 'cycles': '6', 'oscs': '0'}, 'GSM3586622': {'origin': 'GCB', 'pfstt': '273', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '289', 'cycles': '6', 'oscs': '1'}, 'GSM3586629': {'origin': 'GCB', 'pfstt': '1507', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1507', 'cycles': '6', 'oscs': '0'}, 'GSM3586628': {'origin': 'GCB', 'pfstt': '186', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '249', 'cycles': '6', 'oscs': '0'}, 'GSM2652425': {'with': 'DMSO for 12 hours followed by DMSO for 4 hours', 'line': 'HCT-116', 'type': 'Colorectal cancer cell line'}, 'GSM2220783': {'tissue': 'fetal lung'}, 'GSM2220786': {'tissue': 'fetal lung'}, 'GSM2220787': {'tissue': 'fetal lung'}, 'GSM2220784': {'tissue': 'fetal lung'}, 'GSM2220785': {'tissue': 'fetal lung'}, 'GSM2220788': {'tissue': 'fetal lung'}, 'GSM2220789': {'tissue': 'fetal lung'}, 'GSM1963033': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963032': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963031': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963030': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963037': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963036': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963035': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963034': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963039': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963038': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM2157907': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157906': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157905': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157904': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157903': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157902': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157901': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157900': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157909': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157908': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM436128': {'line': 'HeLa'}, 'GSM436129': {'line': 'HeLa'}, 'GSM1467816': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467817': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467814': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467815': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467812': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467813': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467810': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467811': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467818': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467819': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM424354': {'identifier': 'GM12762'}, 'GSM424355': {'identifier': 'GM12813'}, 'GSM424356': {'identifier': 'GM12814'}, 'GSM424357': {'identifier': 'GM12815'}, 'GSM424350': {'identifier': 'GM12264'}, 'GSM424351': {'identifier': 'GM12716'}, 'GSM424352': {'identifier': 'GM12717'}, 'GSM424353': {'identifier': 'GM12750'}, 'GSM424358': {'identifier': 'GM12872'}, 'GSM424359': {'identifier': 'GM12874'}, 'GSM2108330': {'stages': 'myoblast'}, 'GSM2108331': {'stages': 'myoblast'}, 'GSM2108332': {'stages': 'myoblast'}, 'GSM2108333': {'stages': 'myoblast'}, 'GSM2108334': {'stages': 'myoblast'}, 'GSM2108335': {'stages': 'myoblast'}, 'GSM2108336': {'stages': 'myoblast'}, 'GSM2108337': {'stages': 'myoblast'}, 'GSM2108338': {'stages': 'myoblast'}, 'GSM2108339': {'stages': 'myoblast'}, 'GSM1908526': {'gender': 'female', 'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM1908527': {'gender': 'female', 'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM1908528': {'gender': 'female', 'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM1908529': {'gender': 'female', 'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM2815995': {'line': 'H9'}, 'GSM2815994': {'line': 'H9'}, 'GSM2815997': {'line': 'H9'}, 'GSM2815996': {'line': 'H9'}, 'GSM2815991': {'line': 'H9'}, 'GSM2815990': {'line': 'H9'}, 'GSM2815993': {'line': 'H9'}, 'GSM2815992': {'line': 'H9'}, 'GSM2815999': {'line': 'H9'}, 'GSM2815998': {'line': 'H9'}, 'GSM1957069': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957068': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM2361818': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361819': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2549755': {'sequence': 'AGATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'GCCAATA', 'infection': 'Infected 15h before harvesting', 'treatment': 'none', 'line': 'WI-38'}, 'GSM2549754': {'sequence': 'AGATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'ACTTGAA', 'infection': 'Infected 9h before harvesting', 'treatment': 'none', 'line': 'WI-38'}, 'GSM2549757': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CGATGTA', 'infection': 'Uninfected', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549756': {'sequence': 'AGATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'GATCAGA', 'infection': 'Infected 15h before harvesting', 'treatment': 'none', 'line': 'WI-38'}, 'GSM2549751': {'sequence': 'AGATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'TGACCAA', 'infection': 'Infected 4h before harvesting', 'treatment': 'none', 'line': 'WI-38'}, 'GSM2549750': {'sequence': 'AGATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CAGATCA', 'infection': 'Uninfected', 'treatment': 'none', 'line': 'WI-38'}, 'GSM2549753': {'sequence': 'AGATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'ACAGTGA', 'infection': 'Infected 9h before harvesting', 'treatment': 'none', 'line': 'WI-38'}, 'GSM2549752': {'sequence': 'AGATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CTTGTAA', 'infection': 'Infected 4h before harvesting', 'treatment': 'none', 'line': 'WI-38'}, 'GSM2549759': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'TGACCAA', 'infection': 'Infected 4h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549758': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CAGATCA', 'infection': 'Uninfected', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2309890': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Black or African American', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '38.66'}, 'GSM2309891': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Unknown', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '34.68'}, 'GSM2309892': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Unknown', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '34.68'}, 'GSM2309893': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Unknown', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '34.68'}, 'GSM2257739': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '45 minutes labeling'}, 'GSM2309895': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '59.26'}, 'GSM2309896': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '59.26'}, 'GSM2309897': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '59.26'}, 'GSM2257735': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '30 minutes labeling'}, 'GSM2309899': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': \"Alport's/Famil Hered neph\", 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '57.01'}, 'GSM2257737': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '45 minutes labeling'}, 'GSM2257736': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '30 minutes labeling'}, 'GSM2257731': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '15 minutes labeling'}, 'GSM2257730': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '7.5 minutes labeling'}, 'GSM2257733': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '15 minutes labeling'}, 'GSM2257732': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '15 minutes labeling'}, 'GSM1412746': {'line': 'HCT116', 'passages': '8-10passeges', 'damage': '5-fluorouracil for 4h'}, 'GSM2084408': {'induction': 'DMSO/ATRA', 'time': '12 hr'}, 'GSM1383542': {'line': 'TKO', 'type': 'Multiple myeloma', 'phenotype': 'Low levels of MMSET', 'passage': '15-20'}, 'GSM2287182': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1412748': {'line': 'HCT116', 'passages': '8-10passeges', 'damage': '5-fluorouracil for 12h'}, 'GSM1898053': {'tissue': 'Peripheral whole blood', 'diagnosis': 'healthy'}, 'GSM1946059': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '60min'}, 'GSM1412749': {'type': 'human umbilical vein endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '9'}, 'GSM2436468': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM2436469': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM2436466': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM2436467': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM2436464': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM2436465': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM1707679': {'type': 'hiMEPs derived from GECs by reprogramming'}, 'GSM1707678': {'type': 'hiMEPs derived from GECs by reprogramming'}, 'GSM1946055': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '60min'}, 'GSM1581060': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581061': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581062': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581063': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1707675': {'tissue': 'liver', 'type': 'fetal hepatocytes isolated from fetal liver'}, 'GSM1707674': {'tissue': 'liver', 'type': 'fetal hepatocytes isolated from fetal liver'}, 'GSM1707677': {'tissue': 'stomach', 'type': 'gastric epthelial cells isolated from stomach'}, 'GSM1707676': {'tissue': 'stomach', 'type': 'gastric epthelial cells isolated from stomach'}, 'GSM2689066': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689067': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689064': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2944157': {'type': 'hTERT-immortalized mesenchymal stem cell', 'background': 'hTERT-hMSC'}, 'GSM1980089': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980088': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980085': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2689062': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1980087': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980086': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980081': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980080': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980083': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2689063': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689060': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689061': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2533718': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533719': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533714': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533715': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533716': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533717': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533710': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533711': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533712': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533713': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM1631710': {'type': 'U937', 'treatment': 'DMSO'}, 'GSM2581218': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581219': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581214': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581215': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581216': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581217': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581210': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581211': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581213': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2589023': {'line': 'MDA-MB-231', 'group': 'CIN-low', 'variation': 'Overexpression of MCAK which leads to suppressed chromosome segregation errors during anaphase', 'strategy': '75bp paired end RNAseq'}, 'GSM2589022': {'line': 'MDA-MB-231', 'group': 'CIN-low', 'variation': 'Overexpression of Kif2b, which leads to suppressed chromosome segregation errors during anaphase', 'strategy': '75bp paired end RNAseq'}, 'GSM2589021': {'line': 'MDA-MB-231', 'group': 'CIN-medium', 'variation': 'Overexpression of Kif2a, which does not affect the number of chromosome segregation errors during anaphase and serves as an additional control. Part of the CIN-medium group.', 'strategy': '75bp paired end RNAseq'}, 'GSM2589020': {'line': 'MDA-MB-231', 'group': 'CIN-medium', 'variation': 'Control', 'strategy': '75bp paired end RNAseq'}, 'GSM2589027': {'line': 'MDA-MB-231', 'group': 'CIN-low', 'variation': 'Overexpression of Kif2b, which leads to suppressed chromosome segregation errors during anaphase', 'strategy': '101bp single end RNAseq'}, 'GSM2589026': {'line': 'MDA-MB-231', 'group': 'CIN-medium', 'variation': 'Overexpression of Kif2a, which does not affect the number of chromosome segregation errors during anaphase and serves as an additional control. Part of the CIN-medium group.', 'strategy': '101bp single end RNAseq'}, 'GSM2589025': {'line': 'MDA-MB-231', 'group': 'CIN-medium', 'variation': 'Control', 'strategy': '101bp single end RNAseq'}, 'GSM2589024': {'line': 'MDA-MB-231', 'group': 'CIN-high', 'variation': 'Overexpression of dominant-negative form of MCAK, leading to increased number of chromosome segregation errors during anaphase', 'strategy': '75bp paired end RNAseq'}, 'GSM2589029': {'line': 'MDA-MB-231', 'group': 'CIN-high', 'variation': 'Overexpression of dominant-negative form of MCAK, leading to increased number of chromosome segregation errors during anaphase', 'strategy': '101bp single end RNAseq'}, 'GSM2589028': {'line': 'MDA-MB-231', 'group': 'CIN-low', 'variation': 'Overexpression of MCAK which leads to suppressed chromosome segregation errors during anaphase', 'strategy': '101bp single end RNAseq'}, 'GSM2471148': {'lineage': 'granulomonocytic', 'transduction': 'U2AF1 wild-type', 'type': 'CFU-M'}, 'GSM1940159': {'with': '0.5 μM SAHA', 'line': 'GM12878', 'type': 'lymphoblasts', 'treatment': '72 hours'}, 'GSM1940158': {'with': '0.5 μM SAHA', 'line': 'GM12878', 'type': 'lymphoblasts', 'treatment': '72 hours'}, 'GSM1940153': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'vector control (for PU.1 depletion)'}, 'GSM1940152': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'vector control (for PU.1 depletion)'}, 'GSM1067414': {'line': 'MCF7', 'treatment': 'treated for 40 minutes with E2', 'time': '40'}, 'GSM1067415': {'line': 'MCF7', 'treatment': 'treated for 40 minutes with E2', 'time': '40'}, 'GSM1067412': {'line': 'MCF7', 'treatment': 'treated for 10 minutes with E2', 'time': '10'}, 'GSM1067413': {'line': 'MCF7', 'treatment': 'treated for 10 minutes with E2', 'time': '10'}, 'GSM1067410': {'line': 'MCF7', 'treatment': 'untreated', 'time': '0'}, 'GSM1067411': {'line': 'MCF7', 'treatment': 'untreated', 'time': '0'}, 'GSM1289414': {'line': 'IMR90', 'protocol': 'RS_Proliferating', 'doubling': 'PD38'}, 'GSM1289415': {'line': 'IMR90', 'protocol': 'RS_Senescent', 'doubling': 'PD79'}, 'GSM1443829': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells', 'transfection': 'Mature hMADS adipocytes (day 10) were incubated with lentivirus expressing shRNA against Scramble for 24 hours.'}, 'GSM1443828': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells', 'transfection': 'Mature hMADS adipocytes (day 10) were incubated with lentivirus expressing shRNA against KLF11 for 24 hours.'}, 'GSM1443825': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443824': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443827': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells', 'transfection': 'Mature hMADS adipocytes (day 10) were incubated with lentivirus expressing shRNA against Scramble for 24 hours.'}, 'GSM1443826': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443821': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443820': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443823': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443822': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM3189354': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C38', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.633639', 'percentaligned': '0.952206267', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.660234', 'original': 'Control'}, 'GSM3189355': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '21', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.628848', 'percentaligned': '0.913934427', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.87177'}, 'GSM3189356': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '10', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.547856', 'percentaligned': '0.955925708', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.910185', 'original': 'Case'}, 'GSM3189357': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '41', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.588822', 'percentaligned': '0.939454429', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.911271', 'original': 'Case'}, 'GSM3189350': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '28', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.565211', 'percentaligned': '0.951425428', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.868539', 'original': 'Control'}, 'GSM3189351': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '11', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.788136', 'percentaligned': '0.949696402', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.610204', 'original': 'Control'}, 'GSM3189352': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-Cpat28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.513174', 'percentaligned': '0.932457754', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.951106', 'original': 'Control'}, 'GSM3189353': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.566503', 'percentaligned': '0.952384517', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.35559'}, 'GSM3189358': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '77', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.577046', 'percentaligned': '0.933907189', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.443428'}, 'GSM3189359': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C42', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '45', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.540878', 'percentaligned': '0.929046656', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.681748'}, 'GSM1620378': {'type': 'U87 human glioma cells'}, 'GSM1620379': {'type': 'U87 human glioma cells'}, 'GSM1620374': {'type': 'U87 human glioma cells'}, 'GSM1620375': {'type': 'U87 human glioma cells'}, 'GSM1620376': {'type': 'U87 human glioma cells'}, 'GSM1620377': {'type': 'U87 human glioma cells'}, 'GSM1620370': {'type': 'U87 human glioma cells'}, 'GSM1620371': {'type': 'U87 human glioma cells'}, 'GSM1620372': {'type': 'U87 human glioma cells'}, 'GSM1620373': {'type': 'U87 human glioma cells'}, 'GSM2359402': {'with': 'Foxo1-3A mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '3076', 'treatment': '8'}, 'GSM2176230': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2359400': {'with': 'Control eGFP mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '3076', 'treatment': '8'}, 'GSM2359401': {'with': 'Foxo1-3A mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '3023', 'treatment': '8'}, 'GSM2359406': {'with': 'Foxo1-3A mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '882', 'treatment': '3'}, 'GSM2359407': {'with': 'Foxo1-3A mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '3023', 'treatment': '3'}, 'GSM2359404': {'with': 'Control eGFP mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '3023', 'treatment': '3'}, 'GSM2176231': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2359408': {'with': 'Foxo1-3A mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '3076', 'treatment': '3'}, 'GSM2176232': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176233': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176234': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176235': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176236': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176237': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1093238': {'type': 'human pancreatic beta cells'}, 'GSM1093231': {'type': 'definitive endoderm cells'}, 'GSM1093230': {'type': 'definitive endoderm cells'}, 'GSM1093233': {'type': 'pancreatic progenitors cells'}, 'GSM1093232': {'type': 'pancreatic progenitors cells'}, 'GSM1093235': {'type': 'human pancreatic alpha cells'}, 'GSM1093234': {'type': 'pancreatic progenitors cells'}, 'GSM1093237': {'type': 'human pancreatic beta cells'}, 'GSM1093236': {'type': 'human pancreatic alpha cells'}, 'GSM2320011': {'induction': 'Vitamin D3', 'treatment': 'siRNA PU.1', 'time': '24 hr'}, 'GSM2320010': {'induction': 'Vitamin D3', 'treatment': 'siRNA PU.1', 'time': '24 hr'}, 'GSM2320013': {'induction': 'DMSO/ATRA', 'treatment': 'siRNA Control', 'time': '24 hr'}, 'GSM2320012': {'induction': 'DMSO/ATRA', 'treatment': 'siRNA Control', 'time': '24 hr'}, 'GSM2320015': {'induction': 'DMSO/ATRA', 'treatment': 'siRNA PU.1', 'time': '24 hr'}, 'GSM2320014': {'induction': 'DMSO/ATRA', 'treatment': 'siRNA PU.1', 'time': '24 hr'}, 'GSM2456062': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2456063': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2595259': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595258': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2665769': {'age': 'Day 100', 'well': 'D11', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM1177217': {'tissue': 'Prostate Tumour', 'point': 'Post-Treatment'}, 'GSM2665768': {'age': 'Day 100', 'well': 'F1', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2056024': {'line': 'HFF', 'doublings': '16', 'agent': 'irradiation 20GY'}, 'GSM1613621': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2666117': {'age': 'Day 130', 'well': 'H2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2056020': {'line': 'MRC-5', 'doublings': '32', 'agent': 'irradiation 20GY'}, 'GSM2056021': {'line': 'MRC-5', 'doublings': '32', 'agent': 'irradiation 20GY'}, 'GSM2056022': {'line': 'HFF', 'doublings': '16', 'agent': 'irradiation 20GY'}, 'GSM2056023': {'line': 'HFF', 'doublings': '16', 'agent': 'irradiation 20GY'}, 'GSM1698478': {'line': 'HEK293T', 'fraction': 'Eight+ ribosomes'}, 'GSM1698479': {'line': 'HEK293T', 'fraction': 'Cytoplasm'}, 'GSM1708998': {'line': 'H1', 'type': 'ES derived Hemogenic endothelium', 'genotype': 'GATA2-/-'}, 'GSM1698470': {'line': 'HEK293T', 'fraction': 'Cytoplasm'}, 'GSM1698471': {'line': 'HEK293T', 'fraction': 'Monosome (80S)'}, 'GSM1698472': {'line': 'HEK293T', 'fraction': 'Two ribosomes'}, 'GSM1698473': {'line': 'HEK293T', 'fraction': 'Three ribosomes'}, 'GSM1698474': {'line': 'HEK293T', 'fraction': 'Four ribosomes'}, 'GSM1698475': {'line': 'HEK293T', 'fraction': 'Five ribosomes'}, 'GSM1698476': {'line': 'HEK293T', 'fraction': 'Six ribosomes'}, 'GSM1698477': {'line': 'HEK293T', 'fraction': 'Seven ribosomes'}, 'GSM1564296': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '100', 'replicate': '2', 'hcc827': '0'}, 'GSM3189206': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A82', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.68896', 'percentaligned': '0.957373334', 'Sex': 'F', 'nl63': 'No', 'libcounts': '19.628199', 'original': 'Case'}, 'GSM1564297': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '0', 'replicate': '2', 'hcc827': '100'}, 'GSM1901488': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901489': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1888329': {'gender': 'male', 'age': '51', 'tissue': 'idiopathic pulmonary fibrosis'}, 'GSM1888328': {'gender': 'female', 'age': '65', 'tissue': 'idiopathic pulmonary fibrosis'}, 'GSM1888327': {'gender': 'male', 'age': '53', 'tissue': 'idiopathic pulmonary fibrosis'}, 'GSM1901483': {'count': '1', 'ercc_mix': 'mix2', 'type': 'duct', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901480': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901481': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901486': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901487': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901484': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901485': {'count': '1', 'ercc_mix': 'mix2', 'type': 'undefined', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2324248': {'group': 'HighA422', 'type': 'PBMC', 'day': '56', 'subjectid': '6620'}, 'GSM2324249': {'group': 'HighA422', 'type': 'PBMC', 'day': '84', 'subjectid': '6620'}, 'GSM2324240': {'group': 'HighA422', 'type': 'PBMC', 'day': '0', 'subjectid': '6119'}, 'GSM2324241': {'group': 'HighA422', 'type': 'PBMC', 'day': '14', 'subjectid': '6119'}, 'GSM2324242': {'group': 'HighA422', 'type': 'PBMC', 'day': '28', 'subjectid': '6119'}, 'GSM2324243': {'group': 'HighA422', 'type': 'PBMC', 'day': '56', 'subjectid': '6119'}, 'GSM2324244': {'group': 'HighA422', 'type': 'PBMC', 'day': '84', 'subjectid': '6119'}, 'GSM2324245': {'group': 'HighA422', 'type': 'PBMC', 'day': '0', 'subjectid': '6620'}, 'GSM2324246': {'group': 'HighA422', 'type': 'PBMC', 'day': '14', 'subjectid': '6620'}, 'GSM2324247': {'group': 'HighA422', 'type': 'PBMC', 'day': '28', 'subjectid': '6620'}, 'GSM1648848': {'group': 'ASD', 'gender': 'Male', 'clone': 'AVID_5_20', 'biopsy': '16 (Fluent Speech - Child/Adolescent)', 'years': '4.21', 'volume': '1361', 'type': 'iPSC-derived neural progenitors', 'id': 'AVID'}, 'GSM1648849': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CAPE_1_8', 'biopsy': 'n/a', 'years': 'n/a', 'volume': 'n/a', 'type': 'iPSC-derived neural progenitors', 'id': 'CAPE'}, 'GSM1648844': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_2', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSC-derived neural progenitors', 'id': 'ARCH'}, 'GSM1648845': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_1', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSC-derived neural progenitors', 'id': 'ARCH'}, 'GSM1648846': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_2', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSC-derived neural progenitors', 'id': 'ARCH'}, 'GSM2734264': {'experiment': '20170322B', 'area': 'BA10', 'age': '35 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Frontal Cortex', 'id': '0008-CR'}, 'GSM1648840': {'group': 'ASD', 'gender': 'Male', 'clone': 'APEX_5_4', 'biopsy': '18 (Fluent Speech - Adolescent/Adult)', 'years': '3.62', 'volume': '1515', 'type': 'iPSC-derived neural progenitors', 'id': 'APEX'}, 'GSM1648841': {'group': 'ASD', 'gender': 'Male', 'clone': 'AQUA_3_3', 'biopsy': '13 (Fluent Speech -Chld/Adolescent)', 'years': '4.05', 'volume': '1409', 'type': 'iPSC-derived neural progenitors', 'id': 'AQUA'}, 'GSM1648842': {'group': 'ASD', 'gender': 'Male', 'clone': 'AQUA_3_9', 'biopsy': '13 (Fluent Speech -Chld/Adolescent)', 'years': '4.05', 'volume': '1409', 'type': 'iPSC-derived neural progenitors', 'id': 'AQUA'}, 'GSM1648843': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_6', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSC-derived neural progenitors', 'id': 'ARCH'}, 'GSM2933008': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM1564295': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '75', 'replicate': '2', 'hcc827': '25'}, 'GSM2933009': {'pucai': '65', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '14'}, 'GSM2391923': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1571056': {'stage': 'undifferentiated'}, 'GSM2451351': {'compartment': 'Stroma', 'id': 'CUMC_053', 'library': 'NuGEN'}, 'GSM1519975': {'to': '2 µM erlotinib', 'line': 'NSCLC cell line HCC827', 'treatment': 'ClonTracer-barcoded HCC827 cell population was treated with 2 µM erlotinib for 47 days to generate the erlotinib-resistant cell population.'}, 'GSM1519974': {'to': 'Vehicle control - Treated with 0.1% DMSO', 'line': 'NSCLC cell line HCC827', 'treatment': 'ClonTracer-barcoded HCC827 cell population was treated with 0.1% DMSO for 4 days.'}, 'GSM2166208': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166209': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2451350': {'compartment': 'Epithelium', 'id': 'CUMC_053', 'library': 'NuGEN'}, 'GSM2166200': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166201': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166202': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166203': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166204': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166205': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166206': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166207': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2677868': {'cells': 'tumor in the body and tail of the pancreas of a 65 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12C, p53-R248W, p16-HD, SMAD4-WT'}, 'GSM1632601': {'stimulation': 'TLR2 stimulated'}, 'GSM1576391': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human B cells', 'time': '0 d'}, 'GSM1576392': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human B cells', 'time': '1 d'}, 'GSM1576393': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human B cells', 'time': '3 d'}, 'GSM485364': {'line': 'NA19210'}, 'GSM485365': {'line': 'NA19209'}, 'GSM485366': {'line': 'NA19098'}, 'GSM485367': {'line': 'NA19201'}, 'GSM485368': {'line': 'NA19153'}, 'GSM485369': {'line': 'NA19144'}, 'GSM2451359': {'compartment': 'Stroma', 'id': 'CUMC_057', 'library': 'NuGEN'}, 'GSM2451358': {'compartment': 'Epithelium', 'id': 'CUMC_057', 'library': 'NuGEN'}, 'GSM1632600': {'stimulation': 'TLR2 stimulated'}, 'GSM2597671': {'antibody': 'Input', 'treatment': 'DMSO'}, 'GSM2597670': {'antibody': 'H2BK5ac', 'treatment': 'DMSO'}, 'GSM2175742': {'type': 'CD19+ B cells', 'by': 'EBV strain M81', 'treatment': 'pretreated for 2 minutes with harringtonine'}, 'GSM2462052': {'strain': 'V. parahaemolyticus POR4', 'time': '45 minutes'}, 'GSM2840383': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2825123': {'line': 'HeLa (sh FBL integrated)', 'treatment': '+ doxycycline'}, 'GSM2455744': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455745': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455746': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455747': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455740': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455741': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455742': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455743': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455748': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455749': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2373510': {'differentiation': 'differentiated, squamous cells', 'type': 'Derived from H9 line'}, 'GSM2373511': {'differentiation': 'differentiated, squamous cells', 'type': 'Derived from H9 line'}, 'GSM2373512': {'differentiation': 'differentiated, squamous cells', 'type': 'Derived from H9 line'}, 'GSM2632617': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632616': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632615': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632614': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632613': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632612': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632611': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632610': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632619': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632618': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM938909': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'RNAIP-ADAR1', 'type': 'B-cells', 'treatment': 'RNA-IP using ADAR1 antibody'}, 'GSM938908': {'rnaseq': 'Non-directional', 'line': 'GM12004', 'experiment': 'RNAIP-IgG', 'type': 'B-cells', 'treatment': 'RNA-IP using control IgG'}, 'GSM938907': {'rnaseq': 'Non-directional', 'line': 'GM12004', 'experiment': 'RNAIP-ADAR1', 'type': 'B-cells', 'treatment': 'RNA-IP using ADAR1 antibody'}, 'GSM938906': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'NTC- D-Time', 'type': 'B-cells', 'treatment': 'non-targeting control siRNA, 96 hour time point'}, 'GSM938905': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'Adar1-KD-D-Time-96h', 'type': 'B-cells', 'treatment': 'siRNA knockdown of ADAR1, 96 hour time point'}, 'GSM938904': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'Adar1-KD-C-Time72h', 'type': 'B-cells', 'treatment': 'siRNA knockdown of ADAR1, 72 hour time point'}, 'GSM938903': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'Adar1-KD-B-Time48h', 'type': 'B-cells', 'treatment': 'siRNA knockdown of ADAR1, 48 hour time point'}, 'GSM938902': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'Adar1-KD-A Time24h', 'type': 'B-cells', 'treatment': 'siRNA knockdown of ADAR1, 24 hour time point'}, 'GSM938901': {'rnaseq': 'Non-directional', 'line': 'GM12004', 'experiment': 'cDNA-ADAR2-siRNA', 'type': 'B-cells', 'treatment': 'siRNA knockdown of ADAR2'}, 'GSM938900': {'rnaseq': 'Non-directional', 'line': 'GM12004', 'experiment': 'cDNA-ADAR1-siRNA', 'type': 'B-cells', 'treatment': 'siRNA knockdown of ADAR1'}, 'GSM1246806': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM2285750': {'status': 'healthy volunteer', 'gender': 'female', 'age': '81', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285751': {'status': 'healthy volunteer', 'gender': 'female', 'age': '72', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285752': {'status': 'healthy volunteer', 'gender': 'female', 'age': '22', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285753': {'status': 'healthy volunteer', 'gender': 'female', 'age': '83', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285754': {'status': 'healthy volunteer', 'gender': 'female', 'age': '86', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285755': {'status': 'healthy volunteer', 'gender': 'female', 'age': '72', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285756': {'status': 'healthy volunteer', 'gender': 'female', 'age': '53', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285757': {'status': 'healthy volunteer', 'gender': 'female', 'age': '89', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285758': {'status': 'healthy volunteer', 'gender': 'female', 'age': '47', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285759': {'status': 'healthy volunteer', 'gender': 'female', 'age': '67', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1246807': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM1608268': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM2565232': {'construction': 'PLATE-Seq', 'drug': 'Carmustine'}, 'GSM1172884': {'subtype': 'Non-malignant', 'line': 'MCF12A', 'type': 'breast cancer'}, 'GSM1172885': {'subtype': 'Luminal', 'line': 'MCF7', 'type': 'breast cancer'}, 'GSM1172886': {'subtype': 'Luminal', 'line': 'MDAMB134VI', 'type': 'breast cancer'}, 'GSM1172881': {'subtype': 'unknown', 'line': 'MB157', 'type': 'breast cancer'}, 'GSM1172882': {'subtype': 'Non-malignant', 'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM1172883': {'subtype': 'Non-malignant', 'line': 'MCF10F', 'type': 'breast cancer'}, 'GSM1172888': {'subtype': 'Luminal', 'line': 'MDAMB175', 'type': 'breast cancer'}, 'GSM1172889': {'subtype': 'Claudin-low', 'line': 'MDAMB231', 'type': 'breast cancer'}, 'GSM1624312': {'gender': 'F', 'age': '42', 'tissue': 'skin', 'disease': 'C', 'subject': '21'}, 'GSM1624313': {'gender': 'F', 'age': '48', 'tissue': 'skin', 'disease': 'C', 'subject': '22'}, 'GSM1624310': {'gender': 'M', 'age': '55', 'tissue': 'skin', 'disease': 'C', 'subject': '19'}, 'GSM1624311': {'gender': 'F', 'age': '19', 'tissue': 'skin', 'disease': 'C', 'subject': '20'}, 'GSM1624314': {'gender': 'F', 'age': '50', 'tissue': 'skin', 'disease': 'C', 'subject': '23'}, 'GSM1624315': {'gender': 'F', 'age': '60', 'tissue': 'skin', 'disease': 'C', 'subject': '24'}, 'GSM907535': {'gender': 'F', 'age': '67', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM1564103': {'line': 'PC-3M androgen-independent prostate cancer cell line', 'treatment': 'RNAi Control'}, 'GSM1564106': {'line': 'PC-3M androgen-independent prostate cancer cell line', 'treatment': 'RNAi PRK11'}, 'GSM1564104': {'line': 'PC-3M androgen-independent prostate cancer cell line', 'treatment': 'RNAi Control'}, 'GSM1564105': {'line': 'PC-3M androgen-independent prostate cancer cell line', 'treatment': 'RNAi PRK11'}, 'GSM1608262': {'line': 'MCF10A-ER-Src', 'type': 'Total RNA'}, 'GSM1608263': {'line': 'MCF10A-ER-Src', 'type': 'Total RNA'}, 'GSM1266733': {'line': 'HCT116', 'type': 'colon cancer'}, 'GSM1266734': {'line': 'HCT116', 'type': 'colon cancer'}, 'GSM1266739': {'type': 'iPSC-derived midbrain dopamine (mDA) neurons', 'construct': 'Nuclear GFP'}, 'GSM2047728': {'well': 'B06', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2048892': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2048893': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'APC-R1450'}, 'GSM2048890': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2048891': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'APC-R876'}, 'GSM2048896': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'KRAS-G12V'}, 'GSM2048897': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2754959': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': '19', 'type': 'Tcells'}, 'GSM2754958': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_0414', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754957': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0414', 'previousdiagnosisoftb': 'No', 'tst': '17', 'type': 'Tcells'}, 'GSM2754956': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0414', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754955': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0293', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754954': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1112', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754953': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0293', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754952': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0293', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754951': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754950': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2360158': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing empty pMSCV Puro vector'}, 'GSM2136449': {'line': 'human colorectal cancer cell line RKO', 'variation': 'parental control'}, 'GSM2136448': {'line': 'human colorectal cancer cell line RKO', 'variation': 'parental control'}, 'GSM2360159': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing G-actin binding deficient MRTFB mutant'}, 'GSM2158155': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158154': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158157': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158156': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158151': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158150': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158153': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158152': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158159': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158158': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM1105828': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105829': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105824': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105825': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105826': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105827': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105820': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105821': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105822': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105823': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM3319629': {'region': 'Visual cortex', 'age': '61', 'id': 'C'}, 'GSM3319628': {'region': 'Caudate', 'age': '61', 'id': 'C'}, 'GSM3319627': {'region': 'Visual cortex', 'age': '64', 'id': 'B'}, 'GSM1249133': {'type': 'RTT4 fibroblast', 'mutation': 'R306C', 'treatment': 'no', 'passage': '15'}, 'GSM1249132': {'type': 'RTT3 fibroblast', 'mutation': 'E235fs', 'treatment': 'no', 'passage': '8'}, 'GSM1249131': {'type': 'RTT5 fibroblast', 'mutation': 'X487W', 'treatment': 'no', 'passage': '4'}, 'GSM1249130': {'type': 'RTT4 fibroblast', 'mutation': 'R306C', 'treatment': 'no', 'passage': '5'}, 'GSM1249137': {'type': 'RTT5 fibroblast', 'mutation': 'X487W', 'treatment': 'no', 'passage': '16'}, 'GSM1249136': {'type': 'RTT5 fibroblast', 'mutation': 'X487W', 'treatment': 'no', 'passage': '4'}, 'GSM1249135': {'type': 'RTT1 fibroblast', 'mutation': 'T158M', 'treatment': 'no', 'passage': '7'}, 'GSM1249134': {'type': 'RTT2 fibroblast', 'mutation': 'Q244X', 'treatment': 'no', 'passage': '9'}, 'GSM1249138': {'type': 'Detroit551', 'mutation': 'no', 'treatment': 'shMeCP2', 'passage': '17'}, 'GSM2840365': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2515770': {'transgene': 'DUX4CA', 'type': 'human induced pluripotent stem cells', 'condition': '24hr dox-induction'}, 'GSM2144568': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144565': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144564': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144567': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144566': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144561': {'markers': 'not sorted'}, 'GSM2144560': {'markers': 'not sorted'}, 'GSM2144563': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144562': {'markers': 'not sorted'}, 'GSM2511574': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2816154': {'line': 'H9'}, 'GSM2816155': {'line': 'H9'}, 'GSM2816156': {'line': 'H9'}, 'GSM2816157': {'line': 'H9'}, 'GSM2535640': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1102', 'samplename': '1_413UNST_C08', 'seqsite': 'BRI', 'sampleID': 'S13210', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1102', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C08'}, 'GSM2816151': {'line': 'H9'}, 'GSM2535642': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1104', 'samplename': '1_413UNST_C26', 'seqsite': 'BRI', 'sampleID': 'S13235', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1104', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C26'}, 'GSM2535643': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1105', 'samplename': '1_413UNST_C01', 'seqsite': 'BRI', 'sampleID': 'S13228', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1105', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C01'}, 'GSM2816158': {'line': 'H9'}, 'GSM2816159': {'line': 'H9'}, 'GSM1828400': {'origin': 'breast epithelial', 'line': 'MCF7-derived LY2', 'sirna': 'siRNA-HOXC11'}, 'GSM1828401': {'origin': 'breast epithelial', 'line': 'MCF7-derived LY2', 'sirna': 'siRNA-HOXC11'}, 'GSM1828402': {'origin': 'breast epithelial', 'line': 'MCF7-derived LY2', 'sirna': 'siRNA-HOXC11'}, 'GSM2411321': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411326': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411327': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411324': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411325': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411328': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411329': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1376046': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376047': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376044': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376045': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376042': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376043': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376040': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376041': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376048': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376049': {'state': 'Normal', 'tissue': 'lung'}, 'GSM3190590': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.812425'}, 'GSM3190591': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-Cpat19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.474508'}, 'GSM3190592': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.20114'}, 'GSM3190593': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.842567'}, 'GSM3190594': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.889201'}, 'GSM3190595': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'Yes', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.846814'}, 'GSM3190596': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '8.582608'}, 'GSM3190597': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A66', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.934391'}, 'GSM3190598': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '6.309965'}, 'GSM3190599': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.878263'}, 'GSM2649970': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM1281872': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '12.5', 'gender': 'Male', 'age': '72', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2001', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartWare', 'lvad': '312'}, 'GSM1281873': {'status': '3 months LVAD support', 'pacemaker': 'N/A', 'fraction': '12.5', 'gender': 'Male', 'age': '75', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '299'}, 'GSM1281870': {'status': 'No LVAD', 'pacemaker': 'NA', 'fraction': '22', 'gender': 'Male', 'age': '69', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1982', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '167'}, 'GSM1281871': {'status': '3 months LVAD support', 'pacemaker': 'NA', 'fraction': '12.5', 'gender': 'Male', 'age': '72', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2001', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartWare', 'lvad': '312'}, 'GSM1281876': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '22.5', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '221'}, 'GSM1281877': {'status': '3 months LVAD support', 'pacemaker': 'N/A', 'fraction': '17.5', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2002', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '148'}, 'GSM1281874': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '12.5', 'gender': 'Male', 'age': '75', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '299'}, 'GSM1281875': {'status': '6 months LVAD support', 'pacemaker': 'Yes', 'fraction': '22.5', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '221'}, 'GSM1939603': {'type': 'CD14+ cells from peripheral blood', 'genotype': 'QKI+/+', 'treatment': 'none'}, 'GSM1939602': {'type': 'CD14+ cells from peripheral blood', 'genotype': 'QKI+/-', 'treatment': 'none'}, 'GSM1281878': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '17.5', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2002', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '148'}, 'GSM1281879': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '62', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'African American', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1939605': {'type': 'differentiated CD14+ cells', 'genotype': 'QKI+/+', 'treatment': '3 days with GM-CSF'}, 'GSM1939604': {'type': 'differentiated CD14+ cells', 'genotype': 'QKI+/-', 'treatment': '3 days with GM-CSF'}, 'GSM1427355': {'line': 'HEK293T', 'type': 'Neuronal', 'construct': 'cells transfected with control siRNA for 48 hr'}, 'GSM1427354': {'parameter': 'sorted by flow cytometry for GFP+ population', 'line': 'HEK293T', 'type': 'Neuronal', 'product': 'GFP-DDX3X G302V', 'construct': 'cells transiently transfected with GFP DDX3X G302V expressing plasmid'}, 'GSM1427356': {'line': 'HEK293T', 'type': 'Neuronal', 'construct': 'cells transfected with DDX3X siRNA for 48 hr'}, 'GSM1427351': {'parameter': 'sorted by flow cytometry for GFP+ population', 'line': 'HEK293T', 'type': 'Neuronal', 'product': 'GFP', 'construct': 'cells transiently transfected with GFP expressing plasmid'}, 'GSM1427353': {'parameter': 'sorted by flow cytometry for GFP+ population', 'line': 'HEK293T', 'type': 'Neuronal', 'product': 'GFP-DDX3X T275M', 'construct': 'cells transiently transfected with GFP DDX3X T275M expressing plasmid'}, 'GSM1427352': {'parameter': 'sorted by flow cytometry for GFP+ population', 'line': 'HEK293T', 'type': 'Neuronal', 'product': 'GFP-WT DDX3X', 'construct': 'cells transiently transfected with GFP WT DDX3X expressing plasmid'}, 'GSM1366494': {'source': 'SBU patients', 'tissue': 'colorectal cancer tumor'}, 'GSM1366491': {'source': 'SBU patients', 'tissue': 'colorectal cancer tumor'}, 'GSM1366492': {'source': 'SBU patients', 'tissue': 'colorectal cancer tumor'}, 'GSM1366493': {'source': 'SBU patients', 'tissue': 'colorectal cancer tumor'}, 'GSM1207923': {'line': 'HeLa-S3', 'barcode': 'ATGCAGCAG', 'variation': 'Egfp knock out (control)'}, 'GSM2274848': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33327', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9729', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C22', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9729', 'studysiteshort': 'YALE'}, 'GSM2274849': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33328', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9730', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C30', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9730', 'studysiteshort': 'YALE'}, 'GSM1897281': {'line': 'BT483', 'type': 'breast cancer cell line'}, 'GSM2274840': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33316', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9718', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C91', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9718', 'studysiteshort': 'YALE'}, 'GSM2274841': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33317', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9719', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C18', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9719', 'studysiteshort': 'YALE'}, 'GSM2274842': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33318', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9720', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C28', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9720', 'studysiteshort': 'YALE'}, 'GSM2274843': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33319', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9721', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C34', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9721', 'studysiteshort': 'YALE'}, 'GSM1964952': {'sorting': 'FACS sorted by mCherry+', 'passage': 'passage 30-35'}, 'GSM2274845': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33322', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9724', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C46', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9724', 'studysiteshort': 'YALE'}, 'GSM2274846': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33323', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9725', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C35', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9725', 'studysiteshort': 'YALE'}, 'GSM2274847': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33324', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9726', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C47', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9726', 'studysiteshort': 'YALE'}, 'GSM957474': {'gender': 'female', 'tissue': 'skin', 'group': '<=30 years'}, 'GSM1897283': {'line': 'CAL120', 'type': 'breast cancer cell line'}, 'GSM957475': {'gender': 'female', 'tissue': 'skin', 'group': '<=30 years'}, 'GSM2653500': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2176283': {'replicate': '1', 'area': 'core'}, 'GSM2698457': {'line': 'HeLa', 'tissue': 'uterine cervix', 'fraction': 'rRNA-depleted nuclear RNA', 'variation': 'ALYREF overexpression'}, 'GSM2698456': {'line': 'HeLa', 'tissue': 'uterine cervix', 'fraction': 'rRNA-depleted nuclear RNA', 'variation': 'control'}, 'GSM2698459': {'line': 'HeLa', 'tissue': 'uterine cervix', 'fraction': 'rRNA-depleted nuclear RNA', 'variation': 'ALYREF overexpression'}, 'GSM2698458': {'line': 'HeLa', 'tissue': 'uterine cervix', 'fraction': 'rRNA-depleted nuclear RNA', 'variation': 'control'}, 'GSM1897287': {'line': 'CAMA1', 'type': 'breast cancer cell line'}, 'GSM2029320': {'type': 'Control embryo e'}, 'GSM957472': {'gender': 'female', 'tissue': 'skin', 'group': '<=30 years'}, 'GSM957473': {'gender': 'female', 'tissue': 'skin', 'group': '<=30 years'}, 'GSM2039122': {'line': 'TE7', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2039123': {'line': 'TE7', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2039120': {'line': 'TE7', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': 'None', 'drug': 'DMSO'}, 'GSM2039121': {'line': 'TE7', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2039124': {'line': 'TE7', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2039125': {'line': 'TE7', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '200nM', 'drug': 'THZ1'}, 'GSM2722938': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.219', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.327', 'age': '78', 'tcga_subtype_dif': '0.004', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Fallopian Tube Ca', 'race': 'OTHER', 'tcga_subtype_imr': '-0.165', 'outcome': 'Suboptimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2816061': {'line': 'H9'}, 'GSM2722934': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.096', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.458', 'age': '70', 'tcga_subtype_dif': '0.097', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.342', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722936': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '-0.222', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.295', 'age': '63', 'tcga_subtype_dif': '0.137', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.248', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722930': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.035', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.176', 'age': '50', 'tcga_subtype_dif': '-0.137', 'stic': 'No', 'recurrence': 'Y', 'record': 'Peritoneum Ca NOS', 'race': 'WHITE', 'tcga_subtype_imr': '-0.11', 'outcome': 'Optimal', 'review': 'Peritoneum Ca NOS', 'stage': 'IV'}, 'GSM2722932': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '-0.147', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.504', 'age': '64', 'tcga_subtype_dif': '-0.255', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.198', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM1536189': {'type': 'H7 hESC cell line', 'point': '30 days'}, 'GSM1536188': {'type': 'IMR90 iPS cell line', 'point': '1 year'}, 'GSM2170840': {'stage': 'iPSC line'}, 'GSM1536181': {'type': 'H7 hESC cell line', 'point': '20 days'}, 'GSM1536180': {'type': 'H7 hESC cell line', 'point': '20 days'}, 'GSM1536183': {'type': 'H7 hESC cell line', 'point': '30 days'}, 'GSM1536182': {'type': 'H7 hESC cell line', 'point': '30 days'}, 'GSM1536185': {'type': 'Fetal atrium', 'point': '90 days (approx)'}, 'GSM1536184': {'type': 'Fetal atrium', 'point': '90 days (approx)'}, 'GSM1536187': {'type': 'Fetal ventricle', 'point': '90 days (approx)'}, 'GSM1536186': {'type': 'Fetal ventricle', 'point': '90 days (approx)'}, 'GSM2565173': {'construction': 'PLATE-Seq', 'drug': 'Sonidegib / Erismodegib'}, 'GSM2565172': {'construction': 'PLATE-Seq', 'drug': 'Fludarabine'}, 'GSM2565171': {'construction': 'PLATE-Seq', 'drug': 'Osimertinib (AZD9291)'}, 'GSM2565170': {'construction': 'PLATE-Seq', 'drug': 'Cytarabine'}, 'GSM2565177': {'construction': 'PLATE-Seq', 'drug': 'Azacitidine'}, 'GSM2565176': {'construction': 'PLATE-Seq', 'drug': 'Ixazomib (MLN2238)'}, 'GSM2565175': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib'}, 'GSM2565174': {'construction': 'PLATE-Seq', 'drug': 'Pazopanib'}, 'GSM2565179': {'construction': 'PLATE-Seq', 'drug': 'Cobimetinib (GDC-0973, RG7420)'}, 'GSM2565178': {'construction': 'PLATE-Seq', 'drug': 'Ixabepilone'}, 'GSM2170842': {'stage': 'iPSC line'}, 'GSM1293567': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293566': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293565': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293564': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293563': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293562': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293561': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293560': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293569': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1293568': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM2029326': {'type': 'Control embryo b'}, 'GSM2139697': {'line': 'BPH-1', 'shrna': 'scrambled control', 'type': 'BPH patient derived prostate epithelial cell'}, 'GSM2151816': {'status': 'healthy control', 'subtype': 'cuadate nucleus', 'tissue': 'Brain'}, 'GSM2194562': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2139699': {'line': 'BPH-1', 'shrna': 'scrambled control', 'type': 'BPH patient derived prostate epithelial cell'}, 'GSM2139698': {'line': 'BPH-1', 'shrna': 'scrambled control', 'type': 'BPH patient derived prostate epithelial cell'}, 'GSM1920902': {'tissue': 'human fetal kidney', 'time': 'Growth week 17 and 0 days'}, 'GSM1920903': {'tissue': 'human fetal kidney', 'time': 'Growth week 17 and 0 days'}, 'GSM1323579': {'shRNA': 'none', 'type': 'erythroid cells', 'point': 'day 11 of differentiation'}, 'GSM2170846': {'stage': 'iPSC line'}, 'GSM1950246': {'line': 'COLO357', 'treatment': 'KMT2C siRNA1'}, 'GSM1950247': {'line': 'COLO357', 'treatment': 'KMT2C siRNA2'}, 'GSM1950244': {'line': 'COLO357', 'treatment': 'KMT2D siRNA2'}, 'GSM1950242': {'line': 'COLO357', 'treatment': 'KMT2D siRNA1'}, 'GSM1950241': {'line': 'COLO357', 'treatment': 'Control siRNA'}, 'GSM2656062': {'type': 'Human prostate cancer cell line'}, 'GSM2656063': {'type': 'Human prostate cancer cell line'}, 'GSM2656060': {'type': 'Human prostate cancer cell line'}, 'GSM2656061': {'type': 'Human prostate cancer cell line'}, 'GSM2723004': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '0.201', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.56', 'age': '69', 'tcga_subtype_dif': '-0.262', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.599', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2194458': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194459': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194454': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194455': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194456': {'type': 'mesenchyme', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194457': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194450': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194451': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194452': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194453': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1930374': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM2719727': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719726': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719725': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719724': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719729': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719728': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM1930376': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1930377': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1930370': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1930371': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM752707': {'rin': '7.3', 'gender': 'Male', 'source': 'Commercial / AMS biotechnology'}, 'GSM752706': {'rin': '8.6', 'gender': 'Male', 'source': 'National Disease Research Interchange, USA (NDRI)'}, 'GSM752705': {'rin': '7.5', 'gender': 'Male', 'source': 'Commercial / AMS biotechnology'}, 'GSM1930372': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1930373': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM752708': {'rin': '7.9', 'gender': 'Male', 'source': 'National Disease Research Interchange, USA (NDRI)'}, 'GSM2200928': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200929': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM1376150': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1133332': {'status': 'MSS', 'age': '49', 'Sex': 'female', 'state': 'tumor', 'tissue': 'colorectal biopsy, rectum/sigma', 'subject': 'P4'}, 'GSM1395719': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395718': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395715': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395714': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395717': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395716': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395711': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395710': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395713': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395712': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2643503': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM PQ1+JQ1', 'time': '24 h'}, 'GSM2643502': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM PA1+JQ1', 'time': '24 h'}, 'GSM2643501': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM PQ1+JQ1', 'time': '24 h'}, 'GSM2643500': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM PA1+JQ1', 'time': '24 h'}, 'GSM2643507': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM PQ1+JQ1', 'time': '24 h'}, 'GSM2643506': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM PA1+JQ1', 'time': '24 h'}, 'GSM1821979': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM1821978': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM1821977': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM1821976': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM1821975': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM2643508': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM Syn-TEF1', 'time': '24 h'}, 'GSM1821973': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM1821972': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM1821971': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM1821970': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM2200920': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200921': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2784499': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '24h'}, 'GSM2784498': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '24h'}, 'GSM1376152': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2784493': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '24h'}, 'GSM2784492': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '24h'}, 'GSM2784491': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '24h'}, 'GSM2784490': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '24h'}, 'GSM2784497': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '24h'}, 'GSM2784496': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '24h'}, 'GSM2784495': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '24h'}, 'GSM2784494': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '24h'}, 'GSM1338769': {'start': 'Immediately after washout', 'type': 'Fibroblast (TM)', 'dna': 'empty vector', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM1102626': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '7h'}, 'GSM2448858': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '8h'}, 'GSM2448852': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '0h'}, 'GSM2448853': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '3h'}, 'GSM2448850': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '0h'}, 'GSM2448851': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '0h'}, 'GSM2448856': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '8h'}, 'GSM2448857': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '8h'}, 'GSM2448854': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '3h'}, 'GSM2448855': {'line': 'HFF-1', 'tissue': 'Skin', 'age': 'Newborn', 'agent': 'ORFV', 'point': '3h'}, 'GSM1338767': {'start': '10 minutes after washout', 'type': 'Cockayne syndrome group B fibroblasts', 'dna': 'NA', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM1412720': {'gender': 'Female', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412721': {'gender': 'Male', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412722': {'gender': 'Female', 'tissue': 'Control myotubes'}, 'GSM1412723': {'gender': 'Male', 'tissue': 'Control myoblasts'}, 'GSM1412724': {'gender': 'Male', 'tissue': 'Control myotubes'}, 'GSM1412725': {'gender': 'Female', 'tissue': 'Control myoblasts'}, 'GSM1412726': {'gender': 'Female', 'tissue': 'Control myotubes'}, 'GSM1412727': {'gender': 'Male', 'tissue': 'FSHD2 myotubes'}, 'GSM1412728': {'gender': 'Female', 'tissue': 'FSHD2 myoblasts'}, 'GSM1412729': {'gender': 'Female', 'tissue': 'FSHD2 myotubes'}, 'GSM2771611': {'line': \"LREX' tumor\", 'treatment': 'JQ1'}, 'GSM2771610': {'line': \"LREX' tumor\", 'treatment': 'JQ1'}, 'GSM2771613': {'line': \"LREX' tumor\", 'treatment': 'JQ1'}, 'GSM2771612': {'line': \"LREX' tumor\", 'treatment': 'JQ1'}, 'GSM2027565': {'line': 'hCMEC/D3', 'type': 'Blood Brain Barrier cell line'}, 'GSM2027564': {'line': 'hCMEC/D3', 'type': 'Blood Brain Barrier cell line'}, 'GSM2027567': {'line': 'hCMEC/D3', 'type': 'Blood Brain Barrier cell line'}, 'GSM2027566': {'line': 'hCMEC/D3', 'type': 'Blood Brain Barrier cell line'}, 'GSM2858945': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 10 ng/mL doxycycline', 'type': 'mature endothelial progeny of eAEP line MS42, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858944': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS42, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858947': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS64, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858946': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature endothelial progeny of eAEP line MS42, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858941': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS15, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858940': {'origin': 'coronary artery', 'medium': 'EGM-MV (Lonza)', 'type': 'human coronary artery endothelial cells'}, 'GSM2858943': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature endothelial progeny of eAEP line MS15, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858942': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 10 ng/mL doxycycline', 'type': 'mature endothelial progeny of eAEP line MS15, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858949': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature endothelial progeny of eAEP line MS64, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858948': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 10 ng/mL doxycycline', 'type': 'mature endothelial progeny of eAEP line MS64, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM1405892': {'type': 'A549 (human lung epithelial cells)'}, 'GSM1405890': {'type': 'A549 (human lung epithelial cells)'}, 'GSM1405891': {'type': 'A549 (human lung epithelial cells)'}, 'GSM2585788': {'line': 'LC/2-AD cells'}, 'GSM2585789': {'line': 'PR1 cells'}, 'GSM2932919': {'pucai': '55', 'score': '9', 'remission': 'Yes', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '9'}, 'GSM1647048': {'illumina_index': '14', 'point': '48', 'batch': '8', 'agent': 'Smeg', 'rin': '9.2', 'individual': 'M376'}, 'GSM2932915': {'pucai': '30', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM2932914': {'pucai': '40', 'score': '1', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '7'}, 'GSM2932917': {'pucai': '65', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2932916': {'pucai': '35', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '17'}, 'GSM2932911': {'pucai': '70', 'score': '4', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM1647040': {'illumina_index': '19', 'point': '48', 'batch': '7', 'agent': 'BCG', 'rin': '8.4', 'individual': 'M375'}, 'GSM1647043': {'illumina_index': '5', 'point': '4', 'batch': '8', 'agent': 'Rv', 'rin': '9.7', 'individual': 'M372'}, 'GSM1647042': {'illumina_index': '4', 'point': '48', 'batch': '8', 'agent': 'Smeg', 'rin': '7.3', 'individual': 'M373'}, 'GSM1376157': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1977480': {'line': 'AIRE-Tet, Tet-On Advanced HEK293 (Clontech) with inducible AIRE expression', 'expression': 'Uninduced', 'treatment': 'Treated'}, 'GSM1060655': {'gender': 'female', 'state': 'normal', 'tissue': 'brain (dorsolateral prefrontal cortex)'}, 'GSM1060654': {'gender': 'female', 'state': 'normal', 'tissue': 'brain (dorsolateral prefrontal cortex)'}, 'GSM1060657': {'gender': 'female', 'state': 'normal', 'tissue': 'brain (dorsolateral prefrontal cortex)'}, 'GSM1060656': {'gender': 'female', 'state': 'normal', 'tissue': 'brain (dorsolateral prefrontal cortex)'}, 'GSM2052385': {'differentiation': '0', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052384': {'differentiation': '0', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052387': {'differentiation': '4', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052386': {'differentiation': '4', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052383': {'differentiation': '0', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2544741': {'line': 'K562'}, 'GSM2544740': {'line': 'K562'}, 'GSM2544742': {'line': 'K562'}, 'GSM2052389': {'differentiation': '8', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052388': {'differentiation': '4', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2575338': {'line': 'WM989', 'subclone': 'H1', 'condition': '48hrholiday'}, 'GSM2575339': {'line': 'WM989', 'subclone': 'H1', 'condition': '7dayholiday'}, 'GSM1945954': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '30min'}, 'GSM2575335': {'line': 'WM989', 'subclone': 'H1', 'condition': 'Drug'}, 'GSM2575336': {'line': 'WM989', 'subclone': 'H1', 'condition': 'Drug'}, 'GSM2575337': {'line': 'WM989', 'subclone': 'H1', 'condition': 'Drug'}, 'GSM1945950': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '30min'}, 'GSM1945951': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '30min'}, 'GSM1945952': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '30min'}, 'GSM2575333': {'line': 'WM989', 'subclone': 'H1', 'condition': '48hrholiday'}, 'GSM2085730': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085731': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085732': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085733': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085734': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085735': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085736': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085737': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085738': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085739': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2803826': {'line': '201B7', 'type': 'hiPSC', 'state': 'Naïve-like'}, 'GSM2803827': {'line': '201B7', 'type': 'hiPSC', 'state': 'Naïve-like'}, 'GSM2803824': {'line': '201B7', 'type': 'hiPSC', 'state': 'Primed'}, 'GSM2803825': {'line': '201B7', 'type': 'hiPSC', 'state': 'Naïve-like'}, 'GSM2803822': {'line': '201B7', 'type': 'hiPSC', 'state': 'Primed'}, 'GSM2803823': {'line': '201B7', 'type': 'hiPSC', 'state': 'Primed'}, 'GSM1482490': {'with': '1 uM MG132', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM2100124': {'rin': '10', 'Sex': 'Female', 'sspg': '145', 'age': '49', 'bmi': '30.8', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '448', 'method': 'Life-Tech GITC'}, 'GSM2183623': {'line': 'HeLa', 'treatment': 'TG003', 'cycle': 'G2'}, 'GSM2183622': {'line': 'HeLa', 'treatment': 'KHCB', 'cycle': 'G2'}, 'GSM2183621': {'line': 'HeLa', 'treatment': 'KHCB', 'cycle': 'G2'}, 'GSM2183620': {'line': 'HeLa', 'treatment': 'DMSO', 'cycle': 'G2'}, 'GSM2183624': {'line': 'HeLa', 'treatment': 'TG003', 'cycle': 'G2'}, 'GSM2632454': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2723031': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.1', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.149', 'age': '55', 'tcga_subtype_dif': '0.304', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.55', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2632450': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2259892': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259893': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259890': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259891': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259896': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259897': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259894': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259895': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259898': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259899': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2361849': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361848': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390704': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 2', 'infection': 'shSIN3a_pGIPZ (V3LHS_343545)'}, 'GSM2390702': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 2', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2390703': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 2', 'infection': 'shSIN3a_pGIPZ (V3LHS_343545)'}, 'GSM2390700': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 1', 'infection': 'shSIN3a_pGIPZ (V3LHS_343545)'}, 'GSM2390701': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 2', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2361841': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361840': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361843': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361842': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361845': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361844': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361847': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390709': {'disease': 'Healthy Control'}, 'GSM2816062': {'line': 'H9'}, 'GSM2455890': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2100123': {'rin': '10', 'Sex': 'Female', 'sspg': '145', 'age': '49', 'bmi': '30.8', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '448', 'method': 'Life-Tech GITC'}, 'GSM3594442': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594443': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM1553216': {'line': 'HEK293', 'treatment': 'DRB (100 mM) 3hr'}, 'GSM3594441': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594446': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2100122': {'rin': '10', 'Sex': 'Female', 'sspg': '145', 'age': '49', 'bmi': '30.8', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '448', 'method': 'Life-Tech GITC'}, 'GSM3594447': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594444': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2492510': {'status': 'Negative', 'tissue': 'spleen', 'type': 'CD8'}, 'GSM3594445': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2492511': {'status': 'Positive', 'tissue': 'spleen', 'type': 'CD8'}, 'GSM3594428': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594429': {'cluster': '6', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2248159': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2492512': {'status': 'Negative', 'tissue': 'lung', 'type': 'CD4'}, 'GSM3594420': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594421': {'cluster': '6', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594422': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594423': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594424': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594425': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594426': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594427': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2840224': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2176199': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176198': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176195': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176194': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176197': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176196': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176191': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176190': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176193': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176192': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2427820': {'type': 'iPSC-derived neurons'}, 'GSM2427821': {'type': 'iPSC-derived neurons'}, 'GSM2387235': {'tissue': 'heart'}, 'GSM2344509': {'enteritis': 'no', 'tissue': 'sigmoid colon', 'infected': 'no'}, 'GSM2344508': {'enteritis': 'yes', 'tissue': 'sigmoid colon', 'infected': 'yes'}, 'GSM2344507': {'enteritis': 'yes', 'tissue': 'sigmoid colon', 'infected': 'yes'}, 'GSM2041693': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 11 passages during and after reversion, 5 passages after sorting'}, 'GSM2041692': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 33'}, 'GSM2041691': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 32'}, 'GSM2041690': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 31'}, 'GSM2041697': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 5 passages after initial sorting'}, 'GSM2041696': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 4 passages after initial sorting'}, 'GSM2041695': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 11 passages during and after reversion, 6 passages after initial sorting'}, 'GSM2041694': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 11 passages during and after reversion, 6 passages after initial sorting'}, 'GSM2041699': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 21'}, 'GSM2041698': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 20'}, 'GSM2559742': {'differentiation': 'Poorly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P17', 'stage': 'A3(BCLC)'}, 'GSM2107840': {'passages': '15-20', 'type': 'Hepatocellular carcinoma', 'treatment': 'Cells were treated for 24 hrs with 10μM 4β-Hydroxywithanolide E'}, 'GSM1641205': {'passages': '15-30', 'tissue': 'peripheral blood mononuclear cells', 'type': 'EBV-infected human B lymphoblastoid cell line', 'sex': 'female'}, 'GSM1641204': {'passages': '15-30', 'tissue': 'peripheral blood mononuclear cells', 'type': 'EBV-infected human B lymphoblastoid cell line', 'sex': 'female'}, 'GSM1641207': {'passages': '15-30', 'tissue': 'peripheral blood mononuclear cells', 'type': 'EBV-infected human B lymphoblastoid cell line', 'sex': 'male'}, 'GSM1641206': {'passages': '15-30', 'tissue': 'peripheral blood mononuclear cells', 'type': 'EBV-infected human B lymphoblastoid cell line', 'sex': 'male'}, 'GSM2496682': {'line': 'INA-6'}, 'GSM2176138': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2649923': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649922': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649921': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649920': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649927': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649926': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649925': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649924': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649929': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649928': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM957445': {'sample': 'GM12006', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1420'}, 'GSM957444': {'sample': 'GM12005', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1420'}, 'GSM957446': {'sample': 'GM12007', 'protocol': 'non-directional', 'relation': 'son', 'family': '1420'}, 'GSM957441': {'sample': 'GM12002', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1420'}, 'GSM957440': {'sample': 'GM12001', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1420'}, 'GSM957443': {'sample': 'GM12004', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1420'}, 'GSM957442': {'sample': 'GM12003', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1420'}, 'GSM2496688': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496689': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2374832': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374833': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374830': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374831': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374836': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374837': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM1898007': {'phase': 'M phase', 'subtype': 'Total mRNA (RNA-seq)', 'type': 'HeLa S3 cells'}, 'GSM2409660': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM1898006': {'phase': 'M phase', 'subtype': 'Total mRNA (RNA-seq)', 'type': 'HeLa S3 cells'}, 'GSM2374835': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2136968': {'subtype': '3', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '2'}, 'GSM2136969': {'subtype': '4', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '2'}, 'GSM2302036': {'timepoint': 'Pre', 'id': '9', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2136960': {'subtype': '3', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '1'}, 'GSM2136961': {'subtype': '4', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '1'}, 'GSM2136962': {'subtype': '4', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '1'}, 'GSM2136963': {'subtype': '1', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '2'}, 'GSM2136964': {'subtype': '1', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '2'}, 'GSM2136965': {'subtype': '2', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '2'}, 'GSM2136966': {'subtype': '2', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '2'}, 'GSM2136967': {'subtype': '3', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '2'}, 'GSM1575584': {'line': 'HeLa', 'construct': 'none (mock)'}, 'GSM1575585': {'line': 'HeLa', 'construct': 'none (mock)'}, 'GSM1575586': {'line': 'HeLa', 'construct': 'none (mock)'}, 'GSM1575580': {'line': 'HeLa', 'construct': 'miR-494'}, 'GSM1575581': {'line': 'HeLa', 'construct': 'siGFP'}, 'GSM1575582': {'line': 'HeLa', 'construct': 'siGFP'}, 'GSM1575583': {'line': 'HeLa', 'construct': 'siGFP'}, 'GSM2665705': {'age': 'Day 100', 'well': 'G1', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665704': {'age': 'Day 100', 'well': 'G7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM1615201': {'line': 'HEK293', 'replicate': '1', 'rna': 'si-luciferase'}, 'GSM1615202': {'line': 'HEK293', 'replicate': '1', 'rna': 'si-LARP4B'}, 'GSM1615203': {'line': 'HEK293', 'replicate': '2', 'rna': 'si-luciferase'}, 'GSM1615204': {'line': 'HEK293', 'replicate': '2', 'rna': 'si-LARP4B'}, 'GSM1615205': {'line': 'HEK293', 'replicate': '3', 'rna': 'si-luciferase'}, 'GSM1615206': {'line': 'HEK293', 'replicate': '3', 'rna': 'si-LARP4B'}, 'GSM1846956': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846957': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846954': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM2186818': {'stimulation': 'TLR2/1 ligand', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM1846952': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846953': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846950': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846951': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM2474466': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM1846958': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846959': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM2316658': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316659': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316656': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316657': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316654': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316655': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316652': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316653': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316650': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316651': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2665709': {'age': 'Day 100', 'well': 'A7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665708': {'age': 'Day 100', 'well': 'H1', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2243535': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2629509': {'type': 'H9 cells', 'treatment': 'untreated', 'time': 'day 14 of differentiation'}, 'GSM2474460': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM1873354': {'line': 'LNCaP'}, 'GSM1873355': {'line': 'LNCaP'}, 'GSM2629508': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 14 of differentiation'}, 'GSM1873350': {'line': 'LNCaP'}, 'GSM1873351': {'line': 'LNCaP'}, 'GSM1873352': {'line': 'LNCaP'}, 'GSM1873353': {'line': 'LNCaP'}, 'GSM2233232': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233233': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233230': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233231': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233236': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM1529269': {'tissue': 'primary cell mechanically dissociated from patient brain tumor', 'type': 'SU-pcGBM2 primary tumor cells'}, 'GSM1964988': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2233235': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM1964986': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964987': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964984': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964985': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964982': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964983': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964980': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964981': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2717602': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '6h'}, 'GSM2717603': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '12h'}, 'GSM2717600': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '12h'}, 'GSM2717601': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '6h'}, 'GSM2717606': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM2232186': {'status': 'HCV', 'patient_identifier': 'A748', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2717604': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '12h'}, 'GSM2717605': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM2717608': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM2717609': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '6h'}, 'GSM2754858': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0811', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754859': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0811', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754852': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_1132', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754853': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0428', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754850': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_0910', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754851': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1132', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754856': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_0511', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754857': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0438', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754854': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_1132', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754855': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0511', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2592823': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'treatment': 'IFN-γ'}, 'GSM2592822': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'treatment': 'IFN-γ'}, 'GSM2592821': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'adenovirus': 'AdMAF', 'treatment': 'none'}, 'GSM2592820': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'adenovirus': 'AdMAF', 'treatment': 'none'}, 'GSM2592827': {'sirna': 'siCtrl', 'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages'}, 'GSM2592826': {'sirna': 'siCtrl', 'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages'}, 'GSM2452509': {'with': 'shRNA against luciferase', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2592824': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'treatment': 'none'}, 'GSM2452507': {'with': 'shRNA against luciferase', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2592829': {'sirna': 'siMAF', 'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages'}, 'GSM2592828': {'sirna': 'siMAF', 'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages'}, 'GSM2212664': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2212665': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212666': {'gender': 'male', 'condition': 'control'}, 'GSM2394473': {'id': 'IonXpress_054', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'RO0460254-000-001', 'point': 'after 12h of compound treatment'}, 'GSM2394474': {'id': 'IonXpress_055', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'RO0062687-000-005', 'point': 'after 12h of compound treatment'}, 'GSM2394475': {'id': 'IonXpress_056', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'RO0483007-000-001', 'point': 'after 12h of compound treatment'}, 'GSM2212662': {'gender': 'male', 'condition': 'control'}, 'GSM2212663': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2394478': {'id': 'IonXpress_059', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2394479': {'id': 'IonXpress_060', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'media_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2212668': {'gender': 'male', 'condition': 'control'}, 'GSM2212669': {'gender': 'male', 'condition': 'control'}, 'GSM2241326': {'subtype': 'Chromatin RNA', 'line': 'HeLa', 'variation': 'EXOC3 KD, Chromatin'}, 'GSM2241321': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'siLuc control for EXOC3 KD'}, 'GSM1396722': {'lane': '3', 'librarybatch': 'A', 'replicate': '2', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'WAT', 'multiplex': '2'}, 'GSM1664617': {'tissue': 'matched normal from the same patient', 'id': 'LP9'}, 'GSM1664616': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP12'}, 'GSM1664615': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP4'}, 'GSM1664614': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP13'}, 'GSM1664613': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP2'}, 'GSM1664612': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP5'}, 'GSM1664611': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP11'}, 'GSM1664610': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP3'}, 'GSM1664619': {'tissue': 'matched normal from the same patient', 'id': 'LP7'}, 'GSM1664618': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP9'}, 'GSM2543179': {'line': 'U2OS', 'variation': 'WT'}, 'GSM2543178': {'line': 'U2OS', 'variation': 'WT'}, 'GSM2543173': {'line': 'HeLa', 'variation': 'ZBTB48 KO'}, 'GSM2543172': {'line': 'HeLa', 'variation': 'ZBTB48 KO'}, 'GSM2543171': {'line': 'HeLa', 'variation': 'WT'}, 'GSM2543170': {'line': 'HeLa', 'variation': 'WT'}, 'GSM2543177': {'line': 'U2OS', 'variation': 'WT'}, 'GSM2543176': {'line': 'HeLa', 'variation': 'ZBTB48 KO'}, 'GSM2543175': {'line': 'HeLa', 'variation': 'ZBTB48 KO'}, 'GSM2543174': {'line': 'HeLa', 'variation': 'ZBTB48 KO'}, 'GSM2170690': {'stage': 'Hepatic endoderm 2'}, 'GSM2565347': {'construction': 'PLATE-Seq', 'drug': 'Tasisulam'}, 'GSM949334': {'line': 'HeLa', 'treatment': 'H2A.Z KD', 'construct': 'TRC72585'}, 'GSM2632702': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM949335': {'line': 'HeLa', 'treatment': 'H2A.Z KD', 'construct': 'TRC72585'}, 'GSM3191562': {'individual': 'T3', 'type': 'peripheral T lymphocytes', 'treatment': 'PBS treated (Ctrl-T)'}, 'GSM3191560': {'individual': 'T1', 'type': 'peripheral T lymphocytes', 'treatment': 'PBS treated (Ctrl-T)'}, 'GSM3191561': {'individual': 'T2', 'type': 'peripheral T lymphocytes', 'treatment': 'PBS treated (Ctrl-T)'}, 'GSM2580330': {'with': 'Zika', 'type': 'Human cerebral organoids', 'timepoint': '5 days of post infection'}, 'GSM1273493': {'line': 'MCF10A', 'state': 'Normal breast'}, 'GSM2141288': {'individual': 'AF59', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1980470': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980471': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980472': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980473': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980474': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980475': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980476': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980477': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980478': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980479': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2266825': {'line': 'Kelly', 'replicate': '2', 'treatment': 'GSK126 [2uM]', 'time': '5 days'}, 'GSM2141283': {'individual': 'AF53', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2266827': {'line': 'LAN-1', 'replicate': '2', 'treatment': 'DMSO', 'time': '2 days'}, 'GSM2266826': {'line': 'LAN-1', 'replicate': '1', 'treatment': 'DMSO', 'time': '2 days'}, 'GSM2266821': {'line': 'Kelly', 'replicate': '2', 'treatment': 'DMSO', 'time': '5 days'}, 'GSM2266820': {'line': 'Kelly', 'replicate': '1', 'treatment': 'DMSO', 'time': '5 days'}, 'GSM2266823': {'line': 'Kelly', 'replicate': '2', 'treatment': 'GSK126 [2uM]', 'time': '2 days'}, 'GSM2141282': {'individual': 'AF53', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2266829': {'line': 'LAN-1', 'replicate': '2', 'treatment': 'DMSO', 'time': '5 days'}, 'GSM2266828': {'line': 'LAN-1', 'replicate': '1', 'treatment': 'DMSO', 'time': '5 days'}, 'GSM2616784': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616783': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM1808260': {'line': 'NCC24', 'type': 'EBV-positive gastric carcinoma'}, 'GSM1808261': {'line': 'YCCEL1', 'type': 'EBV-positive gastric carcinoma'}, 'GSM2650190': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type'}, 'GSM2616781': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2650191': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type +LDN'}, 'GSM2616780': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2699689': {'type': 'hESCs-derived hepatic lineage cells'}, 'GSM2699688': {'type': 'hESCs-derived hepatic lineage cells'}, 'GSM2699687': {'type': 'hESCs-derived hepatic lineage cells'}, 'GSM2699686': {'type': 'hESCs-derived hepatic lineage cells'}, 'GSM2699685': {'type': 'hESCs-derived hepatic lineage cells'}, 'GSM2068667': {'line': 'MCF7', 'with': '10nM E2 for 4hr', 'passage': 'p10'}, 'GSM1922704': {'status': 'WT', 'tissue': 'breast', 'treatment': 'vehicle', 'line': 'MCF7', 'type': 'breast cancer', 'stage': 'N/A'}, 'GSM2214070': {'line': 'RH4', 'type': 'rhabdomyosarcoma', 'treatment': 'doxycyclin inducible scramble control shRNA', 'time': '48 hours'}, 'GSM1323664': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.42', 'reads': '90,030,558', 'tissue': 'prostate', 'u': '67.9', 'mapped': '66.1%', 'id': 'VA-PC-00-95', 'bcr': '0'}, 'GSM1323665': {'tgleason': '6', 'race': 'W', 'score': '336', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.74', 'reads': '105,378,444', 'tissue': 'prostate', 'u': '64.2', 'mapped': '77.0%', 'id': 'VA-PC-00-97', 'bcr': '0'}, 'GSM1323666': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '8.19', 'reads': '41,886,224', 'tissue': 'prostate', 'u': '63.6', 'mapped': '72.0%', 'id': 'VA-PC-00-98', 'bcr': '0'}, 'GSM1323667': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '3.7', 'reads': '79,197,750', 'tissue': 'prostate', 'u': '2.3', 'mapped': '49.7%', 'id': 'VA-PC-91-61', 'bcr': '0'}, 'GSM1323660': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '5.72', 'reads': '43,731,408', 'tissue': 'prostate', 'u': '62.4', 'mapped': '66.4%', 'id': 'VA-PC-00-91', 'bcr': '0'}, 'GSM1323661': {'tgleason': '8', 'race': 'B', 'score': '538', 'sms': 'Positive', 'pstage': 'pT3A', 'site': 'Atlanta VA Medical Center', 'prepsa': '13.92', 'reads': '76,364,672', 'tissue': 'prostate', 'u': '59.5', 'mapped': '70.5%', 'id': 'VA-PC-00-92', 'bcr': '0'}, 'GSM1323662': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.54', 'reads': '119,594,960', 'tissue': 'prostate', 'u': '50.4', 'mapped': '80.0%', 'id': 'VA-PC-00-93', 'bcr': '0'}, 'GSM1323663': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'unknown', 'pstage': 'pT3A', 'site': 'Atlanta VA Medical Center', 'prepsa': '7.14', 'reads': '72,127,946', 'tissue': 'prostate', 'u': '61.5', 'mapped': '69.1%', 'id': 'VA-PC-00-94', 'bcr': '0'}, 'GSM1323668': {'tgleason': '8', 'race': 'W', 'score': '448', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '2.9', 'reads': '93,107,360', 'tissue': 'prostate', 'u': '171.1', 'mapped': '62.9%', 'id': 'VA-PC-91-62', 'bcr': '0'}, 'GSM1323669': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.9', 'reads': '63,710,732', 'tissue': 'prostate', 'u': '48.6', 'mapped': '79.9%', 'id': 'VA-PC-91-64', 'bcr': '0'}, 'GSM2552871': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2092907': {'bin': '21', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': '15.5', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092906': {'bin': '2', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '12', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092905': {'bin': '2', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '12', 'tissue': 'blood', 'tst': '18.1', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092909': {'bin': '16', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': '0', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092908': {'bin': '21', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2584547': {'duration': '4h', 'with': '4OHT', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584546': {'duration': '4h', 'with': '4OHT', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584545': {'duration': '1h', 'with': '4OHT', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584544': {'duration': '1h', 'with': '4OHT', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2679948': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2679949': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2679946': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2679947': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2679944': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2679945': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2679942': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2679943': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2584549': {'duration': '1h', 'with': 'BSA', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2679941': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM1963899': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963898': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963891': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963890': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963893': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963892': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963895': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963894': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963897': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963896': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM3711685': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '16'}, 'GSM3711684': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '16'}, 'GSM1174035': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'post-deep brain stimulation (DBS) off electrical stimulation 1 hr', 'number': 'PD1'}, 'GSM1174034': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'post-deep brain stimulation (DBS) on electrical stimulation', 'number': 'PD1'}, 'GSM1174033': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'pre-deep brain stimulation (DBS)', 'number': 'PD1'}, 'GSM1174032': {'status': 'healthy', 'gender': 'male', 'type': 'blood leukocytes', 'number': 'HC3'}, 'GSM3711683': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '14'}, 'GSM3711682': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '14'}, 'GSM3711689': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '8'}, 'GSM3711688': {'Sex': 'F', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '16'}, 'GSM1174039': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'pre-deep brain stimulation (DBS)', 'number': 'PD3'}, 'GSM1174038': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'post-deep brain stimulation (DBS) off electrical stimulation 1 hr', 'number': 'PD2'}, 'GSM2840527': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM3576170': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM3576171': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM2158029': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158028': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158025': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2666134': {'age': 'Day 130', 'well': 'B2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2158024': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158027': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158026': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2100259': {'rin': '10', 'Sex': 'Female', 'sspg': '82', 'age': '65', 'bmi': '24.3', 'batch': '1-90', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '952', 'method': 'Life-Tech GITC'}, 'GSM2100258': {'rin': '9.6', 'Sex': 'Female', 'sspg': '201', 'age': '60', 'bmi': '31.8', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '928', 'method': 'Qiagen:trizol'}, 'GSM2303379': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303378': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2653609': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2653608': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2247736': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2247737': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM1868758': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868759': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868754': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868755': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868756': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868757': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868750': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868751': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868752': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868753': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2303373': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2829999': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2100251': {'rin': '10', 'Sex': 'Female', 'sspg': '76', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '27', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '68', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '909', 'method': 'Life-Tech GITC'}, 'GSM2303372': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2229908': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS22'}, 'GSM1358448': {'type': 'BJ foreskin fibroblasts', 'treatment': '48 hours with p38-MAPK inhibitor SB203580 (Millipore)', 'stage': 'senescent'}, 'GSM1358449': {'type': 'BJ foreskin fibroblasts', 'treatment': 'none', 'stage': 'young'}, 'GSM2476022': {'line': 'Huh7', 'type': 'polyA-seq', 'time': '60 min'}, 'GSM2476020': {'line': 'Huh7', 'type': 'polyA-seq', 'time': '60 min'}, 'GSM2476021': {'line': 'Huh7', 'type': 'mRNA-seq', 'time': '60 min'}, 'GSM1358447': {'type': 'BJ foreskin fibroblasts', 'treatment': 'none', 'stage': 'senescent'}, 'GSM2829990': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2454199': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2357079': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM1470398': {'line': 'A-431', 'type': 'total RNA'}, 'GSM1470395': {'line': 'A-431', 'type': 'total RNA'}, 'GSM1470394': {'line': 'U-251MG', 'type': 'total RNA'}, 'GSM1470397': {'line': 'A-431', 'type': 'total RNA'}, 'GSM2357076': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 5', 'point': '12h'}, 'GSM1470391': {'line': 'U-251MG', 'type': 'total RNA'}, 'GSM1470390': {'line': 'U-2 OS', 'type': 'total RNA'}, 'GSM1470393': {'line': 'U-251MG', 'type': 'total RNA'}, 'GSM1470392': {'line': 'U-251MG', 'type': 'total RNA'}, 'GSM1294975': {'line': 'MCF7', 'sequences': '\"CCCTCTTTGGCCAATATGAG\", \"GGGAACTCAGACCTTCCTTC\", \"GATCTTCCCTGTGACTTTCC\", \"GTTTTCAGTCCCAGGAACTG\", \"TGTCACTCTTGTCCCATAGA\", \"TGACACCAGGGTTTGAAAGG\", \"CGCAACTTTATCCCAGTAGG\", \"ACCGCCTAGAAAACAGACTG\", \"ACACAGTGAATCACACACAG\", \"ACAAGAAGACGTGACAACAC\", \"CTCTGAACAGGAAACACGGT\", \"CGCCAGACTCTAAAAAGGAA\", \"CTGTGTCGAGTCTGTTTCAG\", \"GATTCTGCAGTAACCTTGCT\", \"TCTGATGGGACAGAATTTGC\", \"CATTAGCACCAGTGCGTTTG\", \"GGGGATAAAGAGGACCATCT\", \"TTTTCCTCTGTAGCAGGGAT\", \"CGTATTCACTGCTTACAAGC\", \"CACTGGTAGCTCAGGAAAAG\", \"GGATTTCTTCTGGACCTCAC\", \"AAGACAGGTAGACCCATCTC\", \"ATGTATTTGCTCTAGTGCCC\", \"GCGGAATCAGATTTCAAAGT\"'}, 'GSM1294974': {'line': 'MCF7', 'sequences': '\"GTAGTTTCTGGAGCCCGATG\", \"CAAATGCCAATGCCTTTCTG\", \"CAAGGAAAGCGACATTCCTA\", \"AGCATTGTACACCAGTTAGC\", \"CAGCTTCATTCAGGACCTGA\", \"ATCTGTGCATCAGACACAAG\", \"CTCAGCAAAGAGCTTTCCTC\", \"GACTTCCGTGACCCTCTTAT\", \"GTATGTCATTCCGGTCAGTG\", \"AAACAAGAACAGCTCTCTGG\", \"GCCTCCAGTTGGGATTTTAG\", \"CAGGTCAAGTCGGTTCTCAG\", \"CCCTCAGGATTCTACTGACT\", \"GAGAGGAGTCTCAGTGCTAC\", \"GCCAGGTCCTTTATCTTCTC\", \"CTCCTTGTCAGGATGCTCTG\", \"CAAGGACTGGGGTCCATTTC\", \"ATCTTGCTTTGCCAAGTCAT\", \"TAAAAACTCCAGGTTGTGCA\", \"TTCTTCTTGGGGCTCTGTTT\", \"GGTCATCTTCCATCTTTGCT\", \"CATTTGGAGAAGGCTCTCAG\", \"GAAACTTCCCACTTAGCTGC\", \"GGTGCACACAAAGTGAAAAT\"'}, 'GSM1294971': {'line': 'MCF7'}, 'GSM1294970': {'line': 'MCF7'}, 'GSM1294973': {'line': 'MCF7'}, 'GSM1294972': {'line': 'MCF7'}, 'GSM1295088': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'AB-21873 from ABCAM'}, 'GSM1295089': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'A300-882a from BETHYL'}, 'GSM1295086': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': 'none'}, 'GSM1295087': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'MRO19 - in house rabbit polyclonal'}, 'GSM1295084': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': '07-449 from Millipore'}, 'GSM1295085': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': '07-449 from Millipore'}, 'GSM1295082': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': 'none'}, 'GSM1295083': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': 'none'}, 'GSM1295080': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': '2820 from Cell Signalling Lab, LRI'}, 'GSM1295081': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': 'Mouse Mab from H. Koseki'}, 'GSM2577215': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '10h'}, 'GSM2577214': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '10h'}, 'GSM2577217': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '12h'}, 'GSM2577216': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '12h'}, 'GSM2577211': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '6h'}, 'GSM2577210': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '6h'}, 'GSM2577213': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '8h'}, 'GSM2577212': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '8h'}, 'GSM2577219': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '14h'}, 'GSM2577218': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '14h'}, 'GSM1865641': {'status': 'POLA1 deficient', 'model': 'siRNA silencing', 'type': 'dermal fibroblast'}, 'GSM1865640': {'status': 'POLA1 deficient', 'model': 'siRNA silencing', 'type': 'dermal fibroblast'}, 'GSM3148629': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148628': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148623': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148622': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148621': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148620': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM3148627': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148626': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148625': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148624': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM741691': {'type': 'non-tumor', 'id': '18N'}, 'GSM741690': {'type': 'non-tumor', 'id': '16N'}, 'GSM741693': {'type': 'tumor', 'id': '16T'}, 'GSM741692': {'type': 'non-tumor', 'id': '19N'}, 'GSM741695': {'type': 'tumor', 'id': '19T'}, 'GSM741694': {'type': 'tumor', 'id': '18T'}, 'GSM1395690': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395691': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395692': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395693': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395694': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395695': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395696': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395697': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM922272': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2373949': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373948': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM922273': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2373943': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373942': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373941': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373940': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373947': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2316580': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2373945': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373944': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2316581': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1831809': {'line': 'KBM7', 'passages': '2', 'type': 'Chronic myelogenous leukemia cell line'}, 'GSM2479786': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479787': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2784516': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '48h'}, 'GSM2784517': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '48h'}, 'GSM2784514': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '48h'}, 'GSM2784515': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '48h'}, 'GSM2784512': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '48h'}, 'GSM2784513': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '48h'}, 'GSM2784510': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '48h'}, 'GSM2784511': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '48h'}, 'GSM922275': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2784518': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '48h'}, 'GSM2784519': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '48h'}, 'GSM2092578': {'repertoire': 'TCR-alpha', 'individual': 'subject 15 (healthy)', 'tissue': 'peripheral blood'}, 'GSM2092579': {'repertoire': 'TCR-beta', 'individual': 'subject 15 (healthy)', 'tissue': 'peripheral blood'}, 'GSM719449': {'type': 'RNA Capture sequencing'}, 'GSM719448': {'type': 'RNA Capture sequencing'}, 'GSM719445': {'type': 'DNA Capture sequencing'}, 'GSM719444': {'type': 'DNA Capture sequencing'}, 'GSM719447': {'type': 'DNA Capture sequencing'}, 'GSM719446': {'type': 'DNA Capture sequencing'}, 'GSM2092576': {'repertoire': 'TCR-alpha', 'individual': 'subject 15 (healthy)', 'tissue': 'peripheral blood'}, 'GSM2479788': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2092574': {'repertoire': 'TCR-beta', 'individual': 'patient 14 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2092575': {'individual': 'patient 14 (glioblastoma)', 'tissue': 'brain'}, 'GSM2479789': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2325931': {'type': 'Human embryonic stem cell'}, 'GSM2325930': {'type': 'Human embryonic stem cell'}, 'GSM2325933': {'type': 'Human embryonic stem cell'}, 'GSM2325932': {'type': 'Human embryonic stem cell'}, 'GSM2325935': {'type': 'Human embryonic stem cell'}, 'GSM2325934': {'type': 'Human embryonic stem cell'}, 'GSM2325937': {'type': 'Human embryonic stem cell'}, 'GSM2325936': {'type': 'Human embryonic stem cell'}, 'GSM2325939': {'type': 'Human embryonic stem cell'}, 'GSM2325938': {'type': 'Human embryonic stem cell'}, 'GSM2672088': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2672089': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2745948': {'status': 'Autism spectrum disorder (ASD)', 'race': 'CAUC', 'totalnumreads': '166,148,632', 'totalnummappedreads': '71,962,883', 'age': '7.228123', 'percentexonicmapping': '14.898205', 'Sex': 'Male', 'rin': '8.1', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.27', 'brainid': '2254'}, 'GSM2745949': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '174,354,434', 'totalnummappedreads': '142,595,148', 'age': '16.638374', 'percentexonicmapping': '23.309457', 'Sex': 'Female', 'rin': '8.1', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.28', 'brainid': '1874'}, 'GSM2745946': {'status': 'Autism spectrum disorder (ASD)', 'race': 'AA', 'totalnumreads': '116,110,142', 'totalnummappedreads': '85,437,909', 'age': '67.328332', 'percentexonicmapping': '20.520498', 'Sex': 'Male', 'rin': '9.3', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.14', 'brainid': '899'}, 'GSM2745947': {'status': 'Autism spectrum disorder (ASD)', 'race': 'CAUC', 'totalnumreads': '140,901,852', 'totalnummappedreads': '122,638,570', 'age': '45.819187', 'percentexonicmapping': '22.10222', 'Sex': 'Male', 'rin': '9', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.51', 'brainid': '2248'}, 'GSM2745944': {'status': 'Autism spectrum disorder (ASD)', 'race': 'CAUC', 'totalnumreads': '86,829,282', 'totalnummappedreads': '82,692,319', 'age': '15.912824', 'percentexonicmapping': '24.353857', 'Sex': 'Female', 'rin': '9.2', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.39', 'brainid': '2256'}, 'GSM2745945': {'status': 'Autism spectrum disorder (ASD)', 'race': 'CAUC', 'totalnumreads': '113,818,540', 'totalnummappedreads': '108,825,844', 'age': '14.34673', 'percentexonicmapping': '23.57233', 'Sex': 'Male', 'rin': '9.4', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.34', 'brainid': '2258'}, 'GSM2745942': {'status': 'Autism spectrum disorder (ASD)', 'race': 'CAUC', 'totalnumreads': '132,609,426', 'totalnummappedreads': '117,427,851', 'age': '20.78907', 'percentexonicmapping': '24.950044', 'Sex': 'Male', 'rin': '8.1', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.31', 'brainid': '2253'}, 'GSM2745943': {'status': 'Autism spectrum disorder (ASD)', 'race': 'AA', 'totalnumreads': '146,610,908', 'totalnummappedreads': '123,140,012', 'age': '22.563246', 'percentexonicmapping': '23.713531', 'Sex': 'Male', 'rin': '6.6', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.42', 'brainid': '2255'}, 'GSM2745940': {'status': 'Autism spectrum disorder (ASD)', 'race': 'AA', 'totalnumreads': '116,087,102', 'totalnummappedreads': '103,111,970', 'age': '8.89552', 'percentexonicmapping': '21.978961', 'Sex': 'Male', 'rin': '7.7', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.46', 'brainid': '2251'}, 'GSM3537280': {'tissue': 'trophoblast', 'type': 'HTR-8/SVneo trophoblast cell line (SV40 T antigen immortalized)'}, 'GSM1945918': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18489', 'for': '30min'}, 'GSM2871681': {'line': 'U251', 'vector': 'Lentivirus', 'treatment': 'comparative vector only control', 'passage': '5-10'}, 'GSM2871680': {'line': 'U251', 'vector': 'Lentivirus', 'treatment': 'comparative vector only control', 'passage': '5-10'}, 'GSM2550227': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550226': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550225': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550224': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550223': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550222': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550221': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550220': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2932898': {'pucai': '60', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM2932899': {'pucai': '30', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '7'}, 'GSM2932890': {'pucai': '45', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2932891': {'pucai': '80', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '8'}, 'GSM2932892': {'pucai': '65', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932893': {'pucai': '15', 'score': '4', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '17'}, 'GSM2932894': {'pucai': '60', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '6'}, 'GSM2932895': {'pucai': '85', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2932896': {'pucai': '75', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '13'}, 'GSM2932897': {'pucai': '45', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '8'}, 'GSM2510288': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510281': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510280': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510283': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510282': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510285': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510284': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510287': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510286': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2355693': {'line': 'hiPSC-CM line 202', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': '72 hour 1uM Sorafenib Treatment'}, 'GSM2355692': {'line': 'hiPSC-CM line 116', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': '72 hour 1uM Sorafenib Treatment'}, 'GSM2355691': {'line': 'hiPSC-CM line 113', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': '72 hour 1uM Sorafenib Treatment'}, 'GSM2355690': {'line': 'hiPSC-CM line 112', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': '72 hour 1uM Sorafenib Treatment'}, 'GSM2355697': {'status': 'patients with Familial Adenomatous Polyposis', 'tissue': 'tubular adenoma', 'size': '< 10mm'}, 'GSM2355696': {'status': 'patients with Familial Adenomatous Polyposis', 'tissue': 'tubular adenoma', 'size': '< 10mm'}, 'GSM2355695': {'status': 'patients with Familial Adenomatous Polyposis', 'tissue': 'tubular adenoma', 'size': '< 10mm'}, 'GSM2355694': {'line': 'hiPSC-CM line 78', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': '72 hour 1uM Sorafenib Treatment'}, 'GSM2355699': {'line': 'H9'}, 'GSM2355698': {'line': 'H9'}, 'GSM2691239': {'tissue': 'control', 'patient': 'p32'}, 'GSM2746362': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver tumoral cell'}, 'GSM2170867': {'stage': 'Liver bud 1'}, 'GSM2170866': {'stage': 'Liver bud 1'}, 'GSM2170865': {'stage': 'Liver bud 1'}, 'GSM2170864': {'stage': 'Liver bud 1'}, 'GSM2170863': {'stage': 'Liver bud 1'}, 'GSM2170862': {'stage': 'Liver bud 1'}, 'GSM2170861': {'stage': 'Liver bud 1'}, 'GSM2170860': {'stage': 'Liver bud 1'}, 'GSM2811251': {'line': 'H9', 'point': '16 hours'}, 'GSM2170869': {'stage': 'Liver bud 1'}, 'GSM2170868': {'stage': 'Liver bud 1'}, 'GSM1847142': {'subject_id': 'Q3', 'type': 'Induced pluripotent stem cells (iPSC)', 'subline_id': 'SC', 'passage': 'P20'}, 'GSM3096652': {'donor': 'D', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1lo'}, 'GSM1847140': {'subject_id': 'Q3', 'type': 'Induced pluripotent stem cells (iPSC)', 'subline_id': 'SA', 'passage': 'P19'}, 'GSM1847141': {'subject_id': 'Q3', 'type': 'Induced pluripotent stem cells (iPSC)', 'subline_id': 'SA', 'passage': 'P19'}, 'GSM1963859': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM907581': {'gender': 'M', 'age': 'unknown', 'histologics': 'unknown', 'Stage': 'IV'}, 'GSM907580': {'gender': 'M', 'age': '72', 'histologics': 'Diffuse', 'Stage': 'III'}, 'GSM907582': {'gender': 'M', 'age': 'unknown', 'histologics': 'unknown', 'Stage': 'II'}, 'GSM2878307': {'type': 'ESA+CD24lowCD44+ cells', 'variation': 'shCTRL', 'background': 'MCF7'}, 'GSM2878306': {'type': 'ESA+CD24lowCD44+ cells', 'variation': 'shCTRL', 'background': 'MCF7'}, 'GSM2878309': {'type': 'ESA+CD24lowCD44+ cells', 'variation': 'shPRMT5', 'background': 'MCF7'}, 'GSM2878308': {'type': 'ESA+CD24lowCD44+ cells', 'variation': 'shCTRL', 'background': 'MCF7'}, 'GSM1658399': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM1658398': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM2515509': {'line': 'Co100', 'location': 'centre'}, 'GSM2515508': {'line': 'CC09', 'location': 'edge'}, 'GSM2515505': {'line': 'CC09', 'location': 'centre'}, 'GSM2515504': {'line': 'HCT-15', 'location': 'edge'}, 'GSM2515507': {'line': 'CC09', 'location': 'edge'}, 'GSM2515506': {'line': 'CC09', 'location': 'centre'}, 'GSM2515501': {'line': 'HCT-15', 'location': 'centre'}, 'GSM2515503': {'line': 'HCT-15', 'location': 'edge'}, 'GSM2515502': {'line': 'HCT-15', 'location': 'centre'}, 'GSM1829812': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'Doxycycline was added day 11-14'}, 'GSM434649': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 6 additional hours'}, 'GSM434648': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 6 additional hours'}, 'GSM1703766': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM2937062': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM2631748': {'type': 'Ovarian serous cystadenocarcinoma', 'treatment': 'Lipofectamine 2000 treated, empty pcDNA3 vector transfected'}, 'GSM2631744': {'type': 'Ovarian serous cystadenocarcinoma', 'treatment': 'none'}, 'GSM2631745': {'type': 'Ovarian serous cystadenocarcinoma', 'treatment': 'Lipofectamine 2000 treated'}, 'GSM2631746': {'type': 'Ovarian serous cystadenocarcinoma', 'treatment': 'Lipofectamine 2000 treated'}, 'GSM2631747': {'type': 'Ovarian serous cystadenocarcinoma', 'treatment': 'Lipofectamine 2000 treated'}, 'GSM2631741': {'type': 'Ovarian serous cystadenocarcinoma', 'treatment': 'none'}, 'GSM2631742': {'type': 'Ovarian serous cystadenocarcinoma', 'treatment': 'none'}, 'GSM2631743': {'type': 'Ovarian serous cystadenocarcinoma', 'treatment': 'none'}, 'GSM2411771': {'line': '1660E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411770': {'line': '1649B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411773': {'line': '1673B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411772': {'line': '1660F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411775': {'line': '18719B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411774': {'line': '1673F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411777': {'line': '18961A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411776': {'line': '18719D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411779': {'line': '2098A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411778': {'line': '18961C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2458954': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '7.75'}, 'GSM1726458': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726459': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726450': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726451': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726452': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726453': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726454': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726455': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726456': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726457': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM2516852': {'death': '89', 'score': 'II', 'post_mortem_interval': '2.5', 'caseid': '03-41', 'Sex': 'M', 'rin_score': '6.6', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655501'}, 'GSM2516853': {'death': '81', 'score': 'III', 'post_mortem_interval': '2.25', 'caseid': '08-90', 'Sex': 'M', 'rin_score': '7.2', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655487'}, 'GSM2516850': {'death': '60', 'score': 'VI', 'post_mortem_interval': '3.33', 'caseid': '08-46', 'Sex': 'F', 'rin_score': '6.1', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655468'}, 'GSM2516851': {'death': '88', 'score': 'IV', 'post_mortem_interval': '2.66', 'caseid': '09-32', 'Sex': 'F', 'rin_score': '6.7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655409'}, 'GSM2516856': {'death': '85', 'score': 'IV', 'post_mortem_interval': '2.25', 'caseid': '99-48', 'Sex': 'F', 'rin_score': '6.6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655405'}, 'GSM2516857': {'death': '81', 'score': 'V', 'post_mortem_interval': '3', 'caseid': '00-37', 'Sex': 'M', 'rin_score': '7.6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655438'}, 'GSM2516854': {'death': '87', 'score': 'IV', 'post_mortem_interval': '2.75', 'caseid': '11-87', 'Sex': 'F', 'rin_score': '6.6', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655489'}, 'GSM2516855': {'death': '86', 'score': 'V', 'post_mortem_interval': '1.83', 'caseid': '03-37', 'Sex': 'F', 'rin_score': '7.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655446'}, 'GSM2516858': {'death': '96', 'score': 'IV', 'post_mortem_interval': '4', 'caseid': '06-60', 'Sex': 'F', 'rin_score': '5.9', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655403'}, 'GSM2516859': {'death': '86', 'score': 'IV', 'post_mortem_interval': '2', 'caseid': '11-15', 'Sex': 'M', 'rin_score': '7.7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655485'}, 'GSM1552802': {'status': 'N/A', 'subtype': 'N/A', 'type': 'bone marrow CD34+ cells'}, 'GSM1552803': {'status': 'N/A', 'subtype': 'N/A', 'type': 'bone marrow CD34+ cells'}, 'GSM1552800': {'status': 'wildtype', 'subtype': 'RCMD', 'type': 'bone marrow CD34+ cells'}, 'GSM1552801': {'status': 'N/A', 'subtype': 'N/A', 'type': 'bone marrow CD34+ cells'}, 'GSM1552806': {'type': 'NCCIT cells, hECC', 'Sex': 'male'}, 'GSM1552807': {'type': 'NCCIT cells, hECC', 'Sex': 'male'}, 'GSM1552804': {'status': 'N/A', 'subtype': 'N/A', 'type': 'bone marrow CD34+ cells'}, 'GSM1552805': {'status': 'N/A', 'subtype': 'N/A', 'type': 'bone marrow CD34+ cells'}, 'GSM2176010': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176011': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1552808': {'type': 'NCCIT cells, hECC', 'Sex': 'male'}, 'GSM1552809': {'type': 'NCCIT cells, hECC', 'Sex': 'male'}, 'GSM2176014': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176015': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176016': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176017': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1540559': {'state': 'Lyme disease', 'individual': 'patient 01-42', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1836559': {'expression_construct': 'FLAG-TOE1V173G', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'V173 addback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836558': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836551': {'expression_construct': 'TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U1'}, 'GSM1836550': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836553': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U1'}, 'GSM1836552': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U1'}, 'GSM1836555': {'expression_construct': 'TOE1A103T/A103T', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U1'}, 'GSM1836554': {'expression_construct': 'TOE1F148Y/F148Y', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U1'}, 'GSM1836557': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siLuc', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836556': {'expression_construct': 'TOE1WT/A103T', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U1'}, 'GSM1540558': {'state': 'Lyme disease', 'individual': 'patient 01-40', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1715535': {'replicates': '1', 'treatment': 'MG', 'construct': 'pInducer21-MYC-Swap-HA'}, 'GSM1715534': {'replicates': '1', 'treatment': 'MG', 'construct': 'pInducer21-MYC-Swap-HA'}, 'GSM1715537': {'replicates': '1', 'treatment': 'MG', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715536': {'replicates': '1', 'treatment': 'MG', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715531': {'replicates': '1', 'sirna': 'siSKP2', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715530': {'replicates': '1', 'sirna': 'siSKP2', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715533': {'replicates': '1', 'treatment': 'MG', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM1715532': {'replicates': '1', 'treatment': 'MG', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM1715539': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM1715538': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM2434149': {'status': 'nonsmoker', 'type': 'small airway epithelium brushing'}, 'GSM1859770': {'line': 'Jurkat', 'treatment': 'GSK-J4, 2µM'}, 'GSM2590528': {'differentiation': '0', 'type': 'iPSC cell', 'id': 'CTRL 1', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2590529': {'differentiation': '0', 'type': 'iPSC cell', 'id': 'CTRL 2', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2845460': {'line': 'RUES2', 'type': 'mesodermal cells (MES)', 'point': 'Day 2 of differentiation'}, 'GSM2590520': {'differentiation': '0', 'type': 'iPSC cell', 'id': 'MUT 3', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R191Q'}, 'GSM2590521': {'differentiation': '21', 'type': 'electrically immature motor neurons', 'id': 'MUT 2', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R155C'}, 'GSM2590522': {'differentiation': '21', 'type': 'electrically immature motor neurons', 'id': 'MUT 2', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R155C'}, 'GSM2590523': {'differentiation': '21', 'type': 'electrically immature motor neurons', 'id': 'MUT 3', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R191Q'}, 'GSM2590524': {'differentiation': '35', 'type': 'electrically mature motor neurons', 'id': 'MUT 1', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R155C'}, 'GSM2590525': {'differentiation': '35', 'type': 'electrically mature motor neurons', 'id': 'MUT 1', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R155C'}, 'GSM2590526': {'differentiation': '35', 'type': 'electrically mature motor neurons', 'id': 'MUT 3', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R191Q'}, 'GSM2590527': {'differentiation': '0', 'type': 'iPSC cell', 'id': 'CTRL 2', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2829981': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829980': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2277360': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277361': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277362': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277363': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277364': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277365': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2493829': {'tissue': 'Dental pulp', 'treatment': 'recombinant human Jagged1/Fc immobilization'}, 'GSM2277367': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277368': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2493826': {'tissue': 'Dental pulp', 'treatment': 'human Fc immobilization'}, 'GSM2493825': {'tissue': 'Dental pulp', 'treatment': 'human Fc immobilization'}, 'GSM2829982': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2845464': {'line': 'RUES2', 'type': 'cardiomyocyte (CM)', 'point': 'Day 14 of differentiation'}, 'GSM2074750': {'type': 'Differentiated Keratinocytes'}, 'GSM2074751': {'type': 'Differentiated Keratinocytes'}, 'GSM1938986': {'status': 'Undifferentiated', 'line': 'HuES64', 'passage': '<20'}, 'GSM1938985': {'status': 'Undifferentiated', 'line': 'HuES53', 'passage': '<20'}, 'GSM2680457': {'line': 'Breast cancer cell line MDAMB231', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM1965338': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965339': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2035788': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035789': {'line': 'HACAT', 'treatment': 'Control'}, 'GSM2035786': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035787': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2374265': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2035785': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035782': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035783': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035780': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2374260': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1940724': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1216810': {'gender': 'Female', 'age': '68', 'bmi': '23.9', 'hba1c': '5.3', 'tissue': 'pancreatic islets', 'birth': '1943'}, 'GSM1216811': {'gender': 'Male', 'age': '52', 'bmi': '24.9', 'hba1c': '5.4', 'tissue': 'pancreatic islets', 'birth': '1959'}, 'GSM1216812': {'gender': 'Male', 'age': '35', 'bmi': '26.3', 'hba1c': '5.3', 'tissue': 'pancreatic islets', 'birth': '1976'}, 'GSM1216813': {'gender': 'Female', 'age': '54', 'bmi': '23.2', 'hba1c': '6', 'tissue': 'pancreatic islets', 'birth': '1957'}, 'GSM1216814': {'gender': 'Female', 'age': '70', 'bmi': '22.5', 'hba1c': '5.8', 'tissue': 'pancreatic islets', 'birth': '1941'}, 'GSM1216815': {'gender': 'Male', 'age': '41', 'bmi': '24.2', 'hba1c': '5.4', 'tissue': 'pancreatic islets', 'birth': '1970'}, 'GSM1216816': {'gender': 'Male', 'age': '64', 'bmi': '30.5', 'hba1c': '5.7', 'tissue': 'pancreatic islets', 'birth': '1947'}, 'GSM1216817': {'gender': 'Male', 'age': '68', 'bmi': '24.5', 'hba1c': '6.2', 'tissue': 'pancreatic islets', 'birth': '1943'}, 'GSM1216818': {'gender': 'Male', 'age': '61', 'bmi': '24.2', 'hba1c': '5.2', 'tissue': 'pancreatic islets', 'birth': '1950'}, 'GSM1216819': {'gender': 'Male', 'age': '40', 'bmi': '31.1', 'hba1c': '5.7', 'tissue': 'pancreatic islets', 'birth': '1971'}, 'GSM2367489': {'with': 'mock', 'line': 'MCF-7', 'barcode': 'AGTCAA', 'type': 'breast carcinoma epithelial cell line', 'point': '1h post irradiation'}, 'GSM1550094': {'line': 'MCF-10A-H1047R', 'time': '24hr'}, 'GSM1423530': {'line': 'HeLa', 'barcode': 'ATGCAGCAG', 'treatment': 'Mtr4 knock down (exosome)'}, 'GSM2192669': {'type': 'Human mammary epithelial cells'}, 'GSM2306238': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HeLa cells', 'compound': 'AX15836'}, 'GSM2192665': {'type': 'Human mammary epithelial cells'}, 'GSM2610969': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM1004075': {'technique': 'MethylCap-sequencing', 'tissue': 'normal colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM1004074': {'technique': 'MethylCap-sequencing', 'tissue': 'normal colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM1004073': {'technique': 'MethylCap-sequencing', 'tissue': 'normal colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM1004072': {'technique': 'MethylCap-sequencing', 'tissue': 'normal colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM1004071': {'technique': 'MethylCap-sequencing', 'tissue': 'normal colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM1004070': {'technique': 'MethylCap-sequencing', 'tissue': 'tumor colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM1540554': {'state': 'Lyme disease', 'individual': 'patient 01-34', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM2303553': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACEK420A'}, 'GSM2303552': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2303551': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACEK420A'}, 'GSM2303550': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM2303557': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACEK420A'}, 'GSM2303556': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2303555': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACEK420A'}, 'GSM2303554': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2680453': {'line': 'colorectal cancer cell line COLO205', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM2303559': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2303558': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM2194627': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194626': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194625': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194624': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194623': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194622': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194621': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194620': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1616762': {'gender': 'male', 'tissue': 'Human glioblastoma'}, 'GSM2194629': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194628': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2443398': {'culture': 'co-culture', 'line': 'MRC5 and 1833'}, 'GSM2443399': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': 'no treatment', 'fraction': 'cellular RNA'}, 'GSM2443394': {'gender': 'male', 'age': '18', 'type': 'B'}, 'GSM2443395': {'culture': 'mono-culture', 'line': 'MRC5'}, 'GSM2443396': {'culture': 'mono-culture', 'line': 'MRC5'}, 'GSM2443397': {'culture': 'co-culture', 'line': 'MRC5 and 1833'}, 'GSM2443390': {'gender': 'male', 'age': '31', 'type': 'O'}, 'GSM2443391': {'gender': 'male', 'age': '64', 'type': 'O'}, 'GSM2443392': {'gender': 'female', 'age': '57', 'type': 'A'}, 'GSM2443393': {'gender': 'female', 'age': '24', 'type': 'O'}, 'GSM1566728': {'antibody': 'MED1 (M-255, sc-8998, Santa Cruz)', 'type': 'SGBS adipocyte D10'}, 'GSM1566729': {'antibody': 'MED1 (M-255, sc-8998, Santa Cruz)', 'type': 'SGBS adipocyte D10'}, 'GSM2151495': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151494': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151493': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151492': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151491': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151490': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1901298': {'treatment': 'VP55+IFN'}, 'GSM2151499': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151498': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2611249': {'tissue': 'Placenta', 'stage': 'Third trimester'}, 'GSM2611248': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2611247': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2611246': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2611245': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2611244': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2611243': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2476349': {'line': 'SKmel147', 'antibodies': 'H3K27ac (Abcam, ab177178)', 'passage': 'N/A'}, 'GSM2476348': {'antibodies': 'H3K27ac (Abcam, ab177178)', 'type': 'foreskin, NHM2', 'passage': '8'}, 'GSM2476343': {'line': 'SKmel147', 'antibodies': 'H3K4me1 (Abcam, ab8895)', 'passage': 'N/A'}, 'GSM2476342': {'antibodies': 'H3K4me1 (Abcam, ab8895)', 'type': 'foreskin, NHM2', 'passage': '8'}, 'GSM2476341': {'antibodies': 'H3K4me1 (Abcam, ab8895)', 'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM2476340': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476347': {'antibodies': 'H3K27ac (Abcam, ab177178)', 'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM2476346': {'line': 'SKmel2', 'antibodies': 'H3K4me1 (Abcam, ab8895)', 'passage': 'N/A'}, 'GSM2476345': {'line': 'SKmel239', 'antibodies': 'H3K4me1 (Abcam, ab8895)', 'passage': 'N/A'}, 'GSM2476344': {'line': '501MEL', 'antibodies': 'H3K4me1 (Abcam, ab8895)', 'passage': 'N/A'}, 'GSM976989': {'sorting': 'None', 'type': 'H1 hESCs undifferentiated'}, 'GSM976988': {'sorting': 'None', 'type': 'H1 derived endothelial cells'}, 'GSM976985': {'sorting': 'CD31 (BD Biosciences 555445), CD43 (BD Biosciences 555475), CD41a (BD Biosciences 555467), CD73(BD Biosciences 550257), CD144(BD Biosciences 560411), CD235a (BD Biosciences 555570)', 'type': 'Hemogenic endothelial progenitors'}, 'GSM976984': {'sorting': 'Anti-human KDR-PE (R&D Systems, cat#FAB357P); Anti-human CD31-FITC (BD Biosciences; cat#555445) CD144-FITC (BD bioscience; cat#560411)', 'type': 'Pan-endothelial progenitors'}, 'GSM976987': {'sorting': 'CD31 (BD Biosciences 555445), CD43 (BD Biosciences 555475), CD41a (BD Biosciences 555467), CD73(BD Biosciences 550257), CD144(BD Biosciences 560411), CD235a (BD Biosciences 555570)', 'type': 'Non-hemogenic endothelial progenitors'}, 'GSM976986': {'sorting': 'CD31 (BD Biosciences 555445), CD43 (BD Biosciences 555475), CD41a (BD Biosciences 555467), CD73(BD Biosciences 550257), CD144(BD Biosciences 560411), CD235a (BD Biosciences 555570)', 'type': 'Angiogenic hematopoietic progenitors'}, 'GSM976981': {'sorting': 'None', 'type': 'Human umbelical vein endothelial cells'}, 'GSM976980': {'sorting': 'CD43 (BD Biosciences 555475), CD45(BD Biosciences 555485), CD41a (BD Biosciences 555467), CD235a (BD Biosciences 555570)', 'type': 'lin-CD34+CD43+CD45+CD38- multipotent hematopoietic progeniotrs'}, 'GSM976983': {'sorting': 'Anti-human KDR-PE (R&D Systems, cat#FAB357P); Anti-human CD31-FITC (BD Biosciences; cat#555445) CD144-FITC (BD bioscience; cat#560411)', 'type': 'Hematovascular Mesodermal Precursors/Direct Precursors of Hemogenic Endothelium'}, 'GSM976982': {'sorting': 'Anti-human APJ-APC (R&D Systems; cat#FAB856A)', 'type': 'Primitive posterior mesoderm'}, 'GSM1659044': {'patient': 'Healthy donor'}, 'GSM2108617': {'replicate': '3', 'treatment': 'Mock', 'point': '72H'}, 'GSM2108616': {'replicate': '2', 'treatment': 'Mock', 'point': '72H'}, 'GSM2108615': {'replicate': '1', 'treatment': 'Mock', 'point': '72H'}, 'GSM2108614': {'replicate': '3', 'treatment': '100 nM LNA30bcd', 'point': '72H'}, 'GSM2108613': {'replicate': '2', 'treatment': '100 nM LNA30bcd', 'point': '72H'}, 'GSM2108612': {'replicate': '1', 'treatment': '100 nM LNA30bcd', 'point': '72H'}, 'GSM2108611': {'replicate': '3', 'treatment': 'Mock', 'point': '48H'}, 'GSM2108610': {'replicate': '2', 'treatment': 'Mock', 'point': '48H'}, 'GSM1659042': {'patient': 'Brx-11'}, 'GSM2348773': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1659040': {'patient': 'Brx-11'}, 'GSM1659041': {'patient': 'Brx-11'}, 'GSM2050635': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050634': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2171888': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2153235': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153234': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1113339': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 5 post-vaccine'}, 'GSM1113338': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 4 post-vaccine'}, 'GSM2153231': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153230': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153233': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153232': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1113333': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 10 post-vaccine'}, 'GSM1113332': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 9 post-vaccine'}, 'GSM1113331': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 8 post-vaccine'}, 'GSM1113330': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 7 post-vaccine'}, 'GSM1113337': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 3 post-vaccine'}, 'GSM1113336': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 2 post-vaccine'}, 'GSM1113335': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 1 post-vaccine'}, 'GSM1113334': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 0 (pre-vaccine)'}, 'GSM2385641': {'line': 'G144', 'type': 'glioblastoma stem cell'}, 'GSM2385640': {'line': 'G144', 'type': 'glioblastoma stem cell'}, 'GSM2385643': {'line': 'G166', 'type': 'glioblastoma stem cell'}, 'GSM2653501': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2385645': {'line': 'G179', 'type': 'glioblastoma stem cell'}, 'GSM2385644': {'line': 'G166', 'type': 'glioblastoma stem cell'}, 'GSM2385647': {'line': 'G179', 'type': 'glioblastoma stem cell'}, 'GSM2385646': {'line': 'G179', 'type': 'glioblastoma stem cell'}, 'GSM2385649': {'line': 'G19', 'type': 'glioblastoma stem cell'}, 'GSM2682874': {'gender': 'male', 'age': '24 years', 'diagnosis': 'metastatic alveolar rhabdomyosarcoma'}, 'GSM2479814': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2653507': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2479815': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2653504': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653505': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM1574306': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'MiaPaca2'}, 'GSM1415919': {'cohort': 'active EoE'}, 'GSM2050639': {'line': 'U2OS', 'antibody': 'c-MYC N262 (Santa Cruz, sc764)'}, 'GSM2350360': {'tissue': 'Cord Blood', 'type': 'preDCs-CD172a+'}, 'GSM2050638': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2304742': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2739468': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739469': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739466': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739467': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739464': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739465': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739462': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739463': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739460': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739461': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2212686': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2212687': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2212684': {'gender': 'male', 'condition': 'control'}, 'GSM1423122': {'dysplasia': 'Low Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423123': {'dysplasia': 'Low Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423120': {'dysplasia': 'Low Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423121': {'dysplasia': 'Low Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423126': {'dysplasia': 'Simple intestinal metaplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM920993': {'barcode': 'TAAGGG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd7'}, 'GSM2706138': {'antibody': 'H3K4me3(ABclonal, A2357)', 'variation': 'KDM5C overexpression'}, 'GSM2706139': {'antibody': 'H3K27Ac(Cell Signaling Technology, 8173)', 'variation': 'KDM5C overexpression'}, 'GSM2706137': {'antibody': 'H3K4me1(ABclonal, A2355)', 'variation': 'KDM5C overexpression'}, 'GSM1423128': {'dysplasia': 'Simple intestinal metaplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM2304748': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2212683': {'gender': 'male', 'condition': 'control'}, 'GSM2212680': {'gender': 'female', 'condition': 'control'}, 'GSM2212681': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2451006': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2332728': {'point': 'day 0', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM981260': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47097', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '065WC', 'spikeinpool': 'Nist13'}, 'GSM2458887': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.17'}, 'GSM2332729': {'point': 'day 1', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 's': {'code': '200'}, 'GSM2666041': {'age': 'Day 130', 'well': 'F10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2584662': {'tissue': 'fetal liver', 'type': 'Pro-erythrocyte', 'passage': '18 weeks'}, 'GSM2584663': {'tissue': 'fetal liver', 'type': 'Early basophilic-erythrocyte', 'passage': '18 weeks'}, 'GSM2584661': {'tissue': 'fetal liver', 'type': 'Hematopoietic stem cells', 'passage': '18 weeks'}, 'GSM2584666': {'tissue': 'fetal liver', 'type': 'Orthochromatic normoblast', 'passage': '18 weeks'}, 'GSM2584667': {'tissue': 'fetal liver', 'type': 'Hematopoietic stem cells', 'passage': '17 weeks'}, 'GSM2584664': {'tissue': 'fetal liver', 'type': 'Late basophilic-erythrocyte', 'passage': '18 weeks'}, 'GSM2584665': {'tissue': 'fetal liver', 'type': 'Polychromatic normoblast', 'passage': '18 weeks'}, 'GSM2584668': {'tissue': 'fetal liver', 'type': 'Pro-erythrocyte', 'passage': '17 weeks'}, 'GSM2584669': {'tissue': 'fetal liver', 'type': 'Early basophilic-erythrocyte', 'passage': '17 weeks'}, 'GSM2253667': {'origin': 'breast', 'line': 'BT474', 'cells': '2 million'}, 'GSM2253666': {'origin': 'breast', 'line': 'BT474', 'cells': '2 million'}, 'GSM2253665': {'origin': 'breast', 'line': 'BT474', 'cells': '2 million'}, 'GSM2253664': {'origin': 'breast', 'line': 'BT474', 'cells': '2 million'}, 'GSM2253669': {'line': 'GES1', 'tissue': 'stomach', 'variation': 'TET2 overexpressed'}, 'GSM2253668': {'origin': 'breast', 'line': 'BT474', 'cells': '2 million'}, 'GSM2042151': {'type': 'adult HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM2042150': {'type': 'adult HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM2042153': {'type': 'adult HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM2042152': {'type': 'adult HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM2361650': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361651': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361652': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361653': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361654': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361655': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361656': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361657': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361658': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361659': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2333459': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'type': 'epithelial', 'disease': 'adenocarcinoma', 'stage': 'grade IV'}, 'GSM2607600': {'line': 'WA26'}, 'GSM2607601': {'line': 'WA26'}, 'GSM1253389': {'cluster': 'SC', 'as': 'Brx11_SC_020413', 'patient': 'Patient#9'}, 'GSM1253388': {'cluster': 'CL', 'as': 'Brx11_CL_020413', 'patient': 'Patient#9'}, 'GSM2607604': {'line': 'WA26'}, 'GSM2607605': {'line': 'WA26'}, 'GSM2607606': {'line': 'WA26'}, 'GSM2607607': {'line': 'WA26'}, 'GSM2607608': {'line': 'WA26'}, 'GSM1253382': {'cluster': 'SC', 'as': 'Brx17_SC2_020713', 'patient': 'Patient#5'}, 'GSM1253381': {'cluster': 'CL', 'as': 'BrTr08_1_CL2_012913', 'patient': 'Patient#2'}, 'GSM1253380': {'cluster': 'SC', 'as': 'Brx17_SC1_020713', 'patient': 'Patient#5'}, 'GSM1253387': {'cluster': 'SC', 'as': 'Brx61_1_SC1_032012', 'patient': 'Patient#8'}, 'GSM1253386': {'cluster': 'SC', 'as': 'Brx66_2_SC2_012913', 'patient': 'Patient#7'}, 'GSM1253385': {'cluster': 'CL', 'as': 'Brx66_2_CL2_012913', 'patient': 'Patient#7'}, 'GSM2533801': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1955982': {'a': '61113', 'cd38': '0', 'cd49f': '513', 'w': '65177', 'h': '61449', 'lin': '719', 'cd34': '9493', 'cd90': '5969', 'cd7': '-32', 'cd10': '994', 'time': '21100', 'cd135': '1958', 'cd45ra': '124'}, 'GSM1955983': {'a': '50048', 'cd38': '-106', 'cd49f': '190', 'w': '66191', 'h': '49553', 'lin': '280', 'cd34': '12098', 'cd90': '879', 'cd7': '619', 'cd10': '716', 'time': '20901', 'cd135': '4638', 'cd45ra': '174'}, 'GSM1955980': {'a': '64559', 'cd38': '424', 'cd49f': '762', 'w': '66828', 'h': '63311', 'lin': '901', 'cd34': '7615', 'cd90': '3597', 'cd7': '125', 'cd10': '888', 'time': '21527', 'cd135': '2505', 'cd45ra': '196'}, 'GSM1955981': {'a': '51595', 'cd38': '217', 'cd49f': '1031', 'w': '67417', 'h': '50156', 'lin': '201', 'cd34': '8507', 'cd90': '388', 'cd7': '160', 'cd10': '680', 'time': '21299', 'cd135': '3986', 'cd45ra': '132'}, 'GSM1955986': {'a': '55016', 'cd38': '-71', 'cd49f': '442', 'w': '64557', 'h': '55850', 'lin': '165', 'cd34': '10433', 'cd90': '2693', 'cd7': '356', 'cd10': '297', 'time': '20236', 'cd135': '3926', 'cd45ra': '47'}, 'GSM1955987': {'a': '48835', 'cd38': '605', 'cd49f': '432', 'w': '65828', 'h': '48618', 'lin': '331', 'cd34': '17403', 'cd90': '14821', 'cd7': '196', 'cd10': '649', 'time': '20038', 'cd135': '3203', 'cd45ra': '179'}, 'GSM1955984': {'a': '54068', 'cd38': '720', 'cd49f': '1475', 'w': '67735', 'h': '52313', 'lin': '419', 'cd34': '12113', 'cd90': '3696', 'cd7': '162', 'cd10': '844', 'time': '20645', 'cd135': '2040', 'cd45ra': '339'}, 'GSM1955985': {'a': '51033', 'cd38': '847', 'cd49f': '416', 'w': '67597', 'h': '49477', 'lin': '-80', 'cd34': '4023', 'cd90': '3987', 'cd7': '-38', 'cd10': '552', 'time': '20437', 'cd135': '1036', 'cd45ra': '78'}, 'GSM1955988': {'a': '67707', 'cd38': '960', 'cd49f': '560', 'w': '68838', 'h': '64459', 'lin': '71', 'cd34': '5050', 'cd90': '200', 'cd7': '278', 'cd10': '706', 'time': '19825', 'cd135': '1833', 'cd45ra': '911'}, 'GSM1955989': {'a': '64866', 'cd38': '944', 'cd49f': '770', 'w': '66472', 'h': '63952', 'lin': '135', 'cd34': '8424', 'cd90': '8125', 'cd7': '17', 'cd10': '554', 'time': '1597', 'cd135': '3591', 'cd45ra': '215'}, 'GSM2533808': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533809': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1406528': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM1406527': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM1406526': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM1406525': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM1406524': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM1406523': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2126109': {'line': 'PATU', 'tissue': 'PDAC xenograft tumor'}, 'GSM2126108': {'line': 'PATU', 'tissue': 'PDAC xenograft tumor'}, 'GSM2392199': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2967470': {'type': 'Pancreatic Beta cells', 'day': 'Adult', 'vivo': 'In vivo'}, 'GSM2392198': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2109368': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109369': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109364': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109365': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109366': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109367': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109363': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM1819233': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'sodium arsenite', 'protein': 'DDX3 WT'}, 'GSM1819232': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'sodium arsenite', 'protein': 'Rluc control'}, 'GSM1819231': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'control', 'protein': 'DDX3 R534H'}, 'GSM1819230': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'control', 'protein': 'DDX3 WT'}, 'GSM1819237': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'control', 'protein': 'DDX3 R534H'}, 'GSM1819236': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'control', 'protein': 'DDX3 WT'}, 'GSM1819235': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'control', 'protein': 'Rluc control'}, 'GSM1819234': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'sodium arsenite', 'protein': 'DDX3 R534H'}, 'GSM2664343': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1819239': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'sodium arsenite', 'protein': 'DDX3 WT'}, 'GSM1819238': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'sodium arsenite', 'protein': 'Rluc control'}, 'GSM2141403': {'individual': 'AF105', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141402': {'individual': 'AF101', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1708829': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708828': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708821': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708820': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708823': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708822': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708825': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708824': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708827': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708826': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM2391088': {'disease': 'NSCLC'}, 'GSM2391089': {'disease': 'NSCLC'}, 'GSM2391082': {'disease': 'NSCLC'}, 'GSM2391083': {'disease': 'NSCLC'}, 'GSM2391080': {'disease': 'NSCLC'}, 'GSM2391081': {'disease': 'NSCLC'}, 'GSM2391086': {'disease': 'NSCLC'}, 'GSM2391087': {'disease': 'NSCLC'}, 'GSM2391084': {'disease': 'NSCLC'}, 'GSM2391085': {'disease': 'NSCLC'}, 'GSM2204396': {'treatment': 'treated with Dox to induce knockdown'}, 'GSM2204395': {'treatment': 'treated with Dox to induce knockdown'}, 'GSM2204394': {'treatment': 'treated with Dox to induce knockdown'}, 'GSM1480820': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1480821': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1480822': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1480823': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM2085616': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2071737': {'line': 'HCT116', 'agent': 'DMSO'}, 'GSM2071736': {'line': 'HCT116', 'agent': 'DMSO'}, 'GSM2071739': {'line': 'HCT116', 'agent': '100nM CA'}, 'GSM2071738': {'line': 'HCT116', 'agent': 'DMSO'}, 'GSM1539023': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-339', 'type': 'unstranded 100bp PE reads'}, 'GSM1539022': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-339', 'type': 'unstranded 100bp PE reads'}, 'GSM1539021': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-339', 'type': 'unstranded 100bp PE reads'}, 'GSM1539020': {'genotype': 'Control', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'Bu1', 'type': 'unstranded 100bp PE reads'}, 'GSM1539027': {'genotype': 'Control', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'ERCC ExFold mix 1', 'donor': 'Miff', 'type': 'unstranded 100bp PE reads'}, 'GSM1539026': {'genotype': '7dupASD', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-Cf', 'type': 'unstranded 100bp PE reads'}, 'GSM1539025': {'genotype': '7dupASD', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-Cf', 'type': 'unstranded 100bp PE reads'}, 'GSM1539024': {'genotype': '7dupASD', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-Cf', 'type': 'unstranded 100bp PE reads'}, 'GSM2676363': {'line': 'HepG2', 'sirna': 'scrambled'}, 'GSM2676362': {'line': 'HepG2', 'sirna': 'siADAR1'}, 'GSM2676361': {'line': 'HepG2', 'sirna': 'scrambled'}, 'GSM2676360': {'line': 'HepG2', 'sirna': 'siADAR1'}, 'GSM1405078': {'source': 'IP with non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'treatment': 'AFF4 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405079': {'source': 'IP with non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-AFF4 Ref PMID 20159561', 'treatment': 'AFF4 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM2676364': {'line': 'HepG2', 'sirna': 'siADAR1'}, 'GSM2086266': {'line': 'HEK293', 'batch': 'B'}, 'GSM2086264': {'line': 'HEK293', 'batch': 'B'}, 'GSM2086263': {'line': 'HEK293', 'batch': 'A'}, 'GSM2649516': {'set': 'Type 2 (SE)', 'assay': 'Activation induced marker (AIM)'}, 'GSM2649517': {'set': 'Type 2 (SE)', 'assay': 'IFNg capture'}, 'GSM2649514': {'set': 'Type 2 (SE)', 'assay': 'Activation induced marker (AIM)'}, 'GSM2649515': {'set': 'Type 1 (ML)', 'assay': 'Activation induced marker (AIM)'}, 'GSM2649513': {'set': 'Type 1 (ML)', 'assay': 'Activation induced marker (AIM)'}, 'GSM2649518': {'set': 'Type 1 (ML)', 'assay': 'Activation induced marker (AIM)'}, 'GSM2649519': {'set': 'Type 2 (SE)', 'assay': 'Activation induced marker (AIM)'}, 'GSM1234151': {'replicate': '1', 'line': '2255', 'antibody': 'H3K36me3'}, 'GSM1234150': {'replicate': '2', 'line': '2255', 'antibody': 'H3K27me3'}, 'GSM1234153': {'replicate': '1', 'line': '2255', 'antibody': 'H3K4me1'}, 'GSM1234152': {'replicate': '2', 'line': '2255', 'antibody': 'H3K36me3'}, 'GSM1234155': {'replicate': '1', 'line': '2255', 'antibody': 'H3K4me3'}, 'GSM1234154': {'replicate': '2', 'line': '2255', 'antibody': 'H3K4me1'}, 'GSM1234157': {'replicate': '1', 'line': '2255', 'antibody': 'Input'}, 'GSM1234156': {'replicate': '2', 'line': '2255', 'antibody': 'H3K4me3'}, 'GSM1234159': {'replicate': '2', 'line': '2255', 'antibody': 'RNA-seq'}, 'GSM1234158': {'replicate': '1', 'line': '2255', 'antibody': 'RNA-seq'}, 'GSM2093124': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093125': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2754669': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0218', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754668': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1112', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754665': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0177', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754664': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0177', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754667': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0859', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754666': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0177', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754661': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0152', 'previousdiagnosisoftb': 'No', 'tst': '11', 'type': 'Tcells'}, 'GSM2754660': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0692', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM2754663': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_1119', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754662': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_0152', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM3579322': {'type': 'Immortalized human mammary epithelial cells', 'treatment': 'plus 4OH-tamoxifen', 'construct': 'ER'}, 'GSM990765': {'type': 'rAC-VEC'}, 'GSM2093120': {'bin': '4', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM990767': {'type': 'rAC-VEC'}, 'GSM990766': {'type': 'rAC-VEC'}, 'GSM990769': {'type': 'HUVEC'}, 'GSM990768': {'type': 'rAC-VEC'}, 'GSM2093121': {'bin': '4', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2816005': {'line': 'H9'}, 'GSM1492877': {'type': 'MRC-5 fibroblasts', 'doublings': '32', 'treatment': 'control'}, 'GSM1492878': {'type': 'MRC-5 fibroblasts', 'doublings': '32', 'treatment': 'control'}, 'GSM1492879': {'type': 'MRC-5 fibroblasts', 'doublings': '32', 'treatment': 'control'}, 'GSM2627039': {'origin': 'rectum', 'patient_id': '192', 'type': 'primary', 'tumor_id': '146'}, 'GSM2627038': {'origin': 'rectum', 'patient_id': '185', 'type': 'primary', 'tumor_id': '144'}, 'GSM2627035': {'origin': 'rectum', 'patient_id': '210', 'type': 'lymph node metastasis', 'tumor_id': '155'}, 'GSM2627034': {'origin': 'rectum', 'patient_id': '194', 'type': 'lymph node metastasis', 'tumor_id': '148'}, 'GSM2627037': {'origin': 'rectum', 'patient_id': '184', 'type': 'primary', 'tumor_id': '143'}, 'GSM2627036': {'origin': 'rectum', 'patient_id': '0', 'type': 'lymph node metastasis', 'tumor_id': 'YC52'}, 'GSM2627031': {'origin': 'rectum', 'patient_id': '69', 'type': 'liver metastasis', 'tumor_id': '43'}, 'GSM2627030': {'origin': 'rectum', 'patient_id': '67', 'type': 'liver metastasis', 'tumor_id': '41'}, 'GSM2627033': {'origin': 'rectum', 'patient_id': '193', 'type': 'lymph node metastasis', 'tumor_id': '147'}, 'GSM2627032': {'origin': 'rectum', 'patient_id': '0', 'type': 'liver metastasis', 'tumor_id': 'YC132'}, 'GSM2158229': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158228': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158223': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158222': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158221': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158220': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158227': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158226': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158225': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158224': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM1930428': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic basal cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1930429': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic basal cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1930424': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic luminal cells cultured in PrEGM', 'id': 'HPCa167N'}, 'GSM1930425': {'tissue': 'Prostate', 'type': 'HPCa167N benign prostatic bulk cells cultured in PrEGM', 'id': 'HPCa167N'}, 'GSM1930426': {'tissue': 'Prostate', 'type': 'HPCa167N benign prostatic bulk cells cultured in PrEGM', 'id': 'HPCa167N'}, 'GSM1930427': {'tissue': 'Prostate', 'type': 'HPCa167N benign prostatic bulk cells cultured in PrEGM', 'id': 'HPCa167N'}, 'GSM1930420': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic basal cells cultured in PrEGM', 'id': 'HPCa167N'}, 'GSM1930421': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic basal cells cultured in PrEGM', 'id': 'HPCa167N'}, 'GSM1930422': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic luminal cells cultured in PrEGM', 'id': 'HPCa167N'}, 'GSM1930423': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic luminal cells cultured in PrEGM', 'id': 'HPCa167N'}, 'u': {'code': '200'}, 'GSM2672121': {'type': 'Single cell', 'number': 'CRISPR 9', 'stage': 'Blastocyst'}, 'GSM2672120': {'type': 'Single cell', 'number': 'CRISPR 9', 'stage': 'Blastocyst'}, 'GSM2672123': {'type': 'Single cell', 'number': 'CRISPR 9', 'stage': 'Blastocyst'}, 'GSM2672122': {'type': 'Single cell', 'number': 'CRISPR 9', 'stage': 'Blastocyst'}, 'GSM2672125': {'type': 'Single cell', 'number': 'CRISPR 9', 'stage': 'Blastocyst'}, 'GSM2672124': {'type': 'Single cell', 'number': 'CRISPR 9', 'stage': 'Blastocyst'}, 'GSM2330168': {'subset': 'CXCR5 high', 'type': 'T cell', 'individual': 'U149', 'group': 'Allergic'}, 'GSM2948749': {'tumor': 'C1-4', 'tissue': 'VCaP xenograft', 'condition': 'Androgen sensitivity (Pre-Cx)'}, 'GSM2948748': {'tumor': 'C2-17', 'tissue': 'VCaP xenograft', 'condition': 'Abi/Enza resistant'}, 'GSM2330166': {'subset': 'CXCR5 high', 'type': 'T cell', 'individual': 'U161', 'group': 'Allergic'}, 'GSM2330167': {'subset': 'CXCR5 high', 'type': 'T cell', 'individual': 'D90', 'group': 'Allergic'}, 'GSM1941569': {'line': 'BCPAP', 'type': 'Thyroid cancer'}, 'GSM1941568': {'line': 'BCPAP', 'type': 'Thyroid cancer'}, 'GSM2788088': {'line': 'Prostate Cancer Cell line LNCaP', 'agent': 'iBET', 'dose': '2uM'}, 'GSM2788089': {'line': 'Prostate Cancer Cell line LNCaP', 'agent': 'iBET', 'dose': '2uM'}, 'GSM1587303': {'losses': '0', 'age': '32', 'bmi': '21', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+8'}, 'GSM3383917': {'tissue': 'normal pancreas', 'id': 'patient7', 'diagnosis': 'pancreatic cancer'}, 'GSM1958420': {'line': 'HAP1', 'mutation': 'SMARCB1 Null (CRISPR-1) SMARCA4 Null (CRISPR-2)', 'passage': 'P15'}, 'GSM1958421': {'line': 'HAP1', 'mutation': 'SMARCB1 Null (CRISPR-1) SMARCA4 Null (CRISPR-2)', 'passage': 'P18'}, 'GSM2298989': {'age': '64', 'type': 'Fibroblasts'}, 'GSM2298988': {'age': '53', 'type': 'Fibroblasts'}, 'GSM2298987': {'age': '59', 'type': 'Fibroblasts'}, 'GSM3383912': {'tissue': 'normal pancreas', 'id': 'patient2', 'diagnosis': 'pancreatic cancer'}, 'GSM2298985': {'age': '27', 'type': 'Fibroblasts'}, 'GSM2298984': {'age': '58', 'type': 'Fibroblasts'}, 'GSM1513199': {'gender': 'Female', 'line': 'GM18517', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM3383913': {'tissue': 'normal pancreas', 'id': 'patient3', 'diagnosis': 'pancreatic cancer'}, 'GSM1513198': {'gender': 'Male', 'line': 'GM18516', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM3383910': {'tissue': 'pancreas tumor', 'id': 'patient10', 'diagnosis': 'pancreatic cancer'}, 'GSM2948745': {'tumor': 'C3-1', 'tissue': 'VCaP xenograft', 'condition': 'Androgen sensitivity (Pre-Cx)'}, 'GSM2453961': {'code': '404'}, 'GSM2948747': {'tumor': 'C1-3', 'tissue': 'VCaP xenograft', 'condition': 'Castration resistance (CRPC)'}, 'GSM2948746': {'tumor': 'C3-1', 'tissue': 'VCaP xenograft', 'condition': 'Castration resistance (CRPC)'}, 'GSM1466929': {'origin': 'female caucasian with ductal carcinoma', 'with': 'negative control siRNAs', 'line': 'BT-474', 'type': 'breast cancer cell line'}, 'GSM1466928': {'origin': 'female caucasian with ductal carcinoma', 'with': 'negative control siRNAs', 'line': 'BT-474', 'type': 'breast cancer cell line'}, 'GSM2453967': {'code': '404'}, 'GSM3586870': {'origin': 'GCB', 'pfstt': '727', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '822', 'cycles': '6', 'oscs': '0'}, 'GSM3586871': {'origin': 'UNCLASSIFIED', 'pfstt': '803', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '803', 'cycles': '6', 'oscs': '0'}, 'GSM3586872': {'origin': 'GCB', 'pfstt': '774', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '774', 'cycles': '6', 'oscs': '0'}, 'GSM3586873': {'origin': 'GCB', 'pfstt': '901', 'pfscs': '0', 'region': 'North America', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1038', 'cycles': '6', 'oscs': '0'}, 'GSM3586874': {'origin': 'ABC', 'pfstt': '755', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '793', 'cycles': '6', 'oscs': '0'}, 'GSM3586875': {'origin': 'ABC', 'pfstt': '433', 'pfscs': '1', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '793', 'cycles': '6', 'oscs': '0'}, 'GSM3586876': {'origin': 'ABC', 'pfstt': '619', 'pfscs': '1', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '757', 'cycles': '6', 'oscs': '0'}, 'GSM3586877': {'origin': 'GCB', 'pfstt': '1310', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1314', 'cycles': '8', 'oscs': '0'}, 'GSM3586878': {'origin': 'ABC', 'pfstt': '1254', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1408', 'cycles': '6', 'oscs': '0'}, 'GSM3586879': {'origin': 'GCB', 'pfstt': '15', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '15', 'cycles': '8', 'oscs': '1'}, 'GSM2242788': {'line': 'A375', 'replicate': '4'}, 'GSM2242789': {'line': 'A375', 'replicate': '4'}, 'GSM2242786': {'line': 'A375', 'replicate': '4'}, 'GSM2242787': {'line': 'A375', 'replicate': '4'}, 'GSM2242784': {'line': 'A375', 'replicate': '4'}, 'GSM2242785': {'line': 'A375', 'replicate': '4'}, 'GSM2242782': {'line': 'A375', 'replicate': '4'}, 'GSM2242783': {'line': 'A375', 'replicate': '4'}, 'GSM2242780': {'line': 'A375', 'replicate': '4'}, 'GSM2242781': {'line': 'A375', 'replicate': '4'}, 'GSM1842500': {'duration': '12h', 'line': 'SUM149', 'treatment': 'JQ1'}, 'GSM1558379': {'conditions': 'AKT-HUVEC', 'line': 'HUES8', 'type': 'sorted Pdx1-EGFP+ pancreatic progenitors derived from Pdx1-EGFP HUES8'}, 'GSM785403': {'type': 'testicular germ', 'normal': 'cancer'}, 'GSM2170519': {'stage': 'Endothelial cells'}, 'GSM1173125': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Transformed to Mesenchymal Phenotype'}, 'GSM785404': {'type': 'testicular germ', 'normal': 'normal'}, 'GSM2170518': {'stage': 'Endothelial cells'}, 'GSM2359808': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM2359809': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM2243439': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2538272': {'stage': 'Glioblastoma EGFR amplification/EGFR vIII mutation'}, 'GSM2359804': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM2538270': {'stage': 'Glioblastoma EGFR amplification/EGFR vIII mutation'}, 'GSM2538271': {'stage': 'Glioblastoma EGFR amplification/EGFR vIII mutation'}, 'GSM1380869': {'type': 'Primary fibroblast', 'mutation': 'TREX1'}, 'GSM1380868': {'type': 'Primary fibroblast'}, 'GSM2359805': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM785406': {'type': 'testicular germ', 'normal': 'normal'}, 'GSM2125108': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-PR (inhouse KD68)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM1706659': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1380861': {'type': 'Primary fibroblast'}, 'GSM1380860': {'type': 'Primary fibroblast', 'mutation': 'SAMHD1'}, 'GSM1380863': {'type': 'Primary fibroblast', 'mutation': 'TREX1'}, 'GSM1380862': {'type': 'Primary fibroblast'}, 'GSM1380865': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2A'}, 'GSM1380864': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2B'}, 'GSM1380867': {'type': 'Primary fibroblast'}, 'GSM1380866': {'type': 'Primary fibroblast', 'mutation': 'SAMHD1'}, 'GSM2942648': {'bmi': '23.73355263', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'Yes', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942649': {'bmi': '29.84163265', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'Yes', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942646': {'bmi': '18.39807163', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942647': {'bmi': '27.02142407', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942644': {'bmi': '24.40972222', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942645': {'bmi': '20.80306122', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942642': {'bmi': '18.30295858', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942643': {'bmi': '25.8398307', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942641': {'bmi': '22.14033762', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM785407': {'type': 'testicular germ', 'normal': 'cancer'}, 'GSM1464530': {'origin': 'BM9', 'type': 'lin-CD34+CD45+', 'treatment': '5 uM imatinib'}, 'GSM1464531': {'origin': 'CML15', 'type': 'lin-CD34+CD45+', 'treatment': '5 uM imatinib'}, 'GSM1464532': {'origin': 'CML17', 'type': 'lin-CD34+CD45+', 'treatment': '5 uM imatinib'}, 'GSM1533992': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2149957': {'line': 'SU-DHL-1', 'treatment': 'DEMSO', 'translocation': 't(2;5)(p23;q35)Â\\xa0'}, 'GSM1533995': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2149959': {'line': 'Karpas-299', 'treatment': 'DEMSO', 'translocation': 't(2;5)(p23;q35)'}, 'GSM2149958': {'line': 'SU-DHL-1', 'treatment': 'Crizotinib', 'translocation': 't(2;5)(p23;q35)Â\\xa0'}, 'GSM1533994': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533997': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533996': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533999': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1706656': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1533998': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1706657': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM2745941': {'status': 'Autism spectrum disorder (ASD)', 'race': 'AA', 'totalnumreads': '133,136,246', 'totalnummappedreads': '117,852,393', 'age': '7.512868', 'percentexonicmapping': '25.264877', 'Sex': 'Male', 'rin': '9', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.44', 'brainid': '2252'}, 'GSM2538898': {'donor': '1', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (72-144h)] cell'}, 'GSM2538899': {'donor': '2', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (72-144h)] cell'}, 'GSM2538892': {'donor': '1', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (24-144h)] cell'}, 'GSM2538893': {'donor': '2', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (24-144h)] cell'}, 'GSM2538890': {'donor': '2', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (12-144h)] cell'}, 'GSM2538891': {'donor': '3', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (12-144h)] cell'}, 'GSM2538896': {'donor': '2', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (48-144h)] cell'}, 'GSM2538897': {'donor': '3', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (48-144h)] cell'}, 'GSM2538894': {'donor': '3', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (24-144h)] cell'}, 'GSM2538895': {'donor': '1', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (48-144h)] cell'}, 'GSM2274778': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33223', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9640', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C31', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9640', 'studysiteshort': 'YALE'}, 'GSM2274779': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33224', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9641', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C37', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9641', 'studysiteshort': 'YALE'}, 'GSM2274776': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33221', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9638', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C03', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9638', 'studysiteshort': 'YALE'}, 'GSM2274777': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33222', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9639', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C21', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9639', 'studysiteshort': 'YALE'}, 'GSM2274774': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33219', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9636', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C83', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9636', 'studysiteshort': 'YALE'}, 'GSM2274775': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33220', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9637', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C94', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9637', 'studysiteshort': 'YALE'}, 'GSM2274772': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33217', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9634', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C91', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9634', 'studysiteshort': 'YALE'}, 'GSM2274773': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33218', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9635', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C41', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9635', 'studysiteshort': 'YALE'}, 'GSM2274770': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32847', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9437', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C87', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9437', 'studysiteshort': 'UCSF'}, 'GSM2274771': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32848', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9438', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C85', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9438', 'studysiteshort': 'UCSF'}, 'GSM2170768': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170769': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170764': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170765': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170766': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170767': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170760': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170761': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170762': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170763': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2565241': {'construction': 'PLATE-Seq', 'drug': 'Leuprolide (Leuprorelin; Lupron)'}, 'GSM2565240': {'construction': 'PLATE-Seq', 'drug': 'Teniposide'}, 'GSM2565243': {'construction': 'PLATE-Seq', 'drug': 'Mechlorethamine'}, 'GSM2565242': {'construction': 'PLATE-Seq', 'drug': 'Tamoxifen'}, 'GSM2565245': {'construction': 'PLATE-Seq', 'drug': 'Vemurafenib (PLX4032)'}, 'GSM2565244': {'construction': 'PLATE-Seq', 'drug': 'Oxaliplatin'}, 'GSM2565247': {'construction': 'PLATE-Seq', 'drug': 'Mithramycin A'}, 'GSM2817769': {'type': 'PANC-1', 'treatment': 'gemcitabine 30nM 24h'}, 'GSM2565249': {'construction': 'PLATE-Seq', 'drug': 'Axitinib'}, 'GSM2565248': {'construction': 'PLATE-Seq', 'drug': 'Busulfan'}, 'GSM2667020': {'type': 'Macrophage'}, 'GSM2756199': {'status': 'intraductal papillary mucinous neoplasm (IPMN), high-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2667026': {'type': 'Macrophage'}, 'GSM2667027': {'type': 'Macrophage'}, 'GSM2667024': {'type': 'Macrophage'}, 'GSM2667025': {'type': 'Macrophage'}, 'GSM1965233': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965232': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965231': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965230': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965237': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965236': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965235': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965234': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965239': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965238': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2170510': {'stage': 'Endothelial cells'}, 'GSM2535949': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6750', 'samplename': '1*_Ctl_RO+_C87', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30113', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6750', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C87'}, 'GSM2535948': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6749', 'samplename': '1_Ctl_RO+_C55', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30112', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6749', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C55'}, 'GSM2535943': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6744', 'samplename': '1_Ctl_RO+_C19', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30107', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6744', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C19'}, 'GSM2535942': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6743', 'samplename': '1*_Ctl_RO+_C01', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30106', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6743', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C01'}, 'GSM2535941': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6742', 'samplename': '1*_Ctl_RO+_C38', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30105', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6742', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C38'}, 'GSM2535940': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6741', 'samplename': '1*_Ctl_RO+_C26', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30104', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6741', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C26'}, 'GSM2535947': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6748', 'samplename': '1_Ctl_RO+_C49', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30111', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6748', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C49'}, 'GSM2535946': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6747', 'samplename': '1_Ctl_RO+_C45', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30110', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6747', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C45'}, 'GSM2535945': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6746', 'samplename': '1*_Ctl_RO+_C33', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30109', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6746', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C33'}, 'GSM2535944': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6745', 'samplename': '1*_Ctl_RO+_C27', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30108', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6745', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C27'}, 'GSM2616439': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616438': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616431': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2616430': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616433': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616432': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2616435': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2575109': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2616437': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616436': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2575108': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '06h'}, 'GSM2210569': {'line': 'A375', 'treatment': 'JQ1'}, 'GSM2679511': {'line': 'BLCL (165)'}, 'GSM2679510': {'line': 'BLCL (165)'}, 'GSM2210568': {'line': 'A375', 'treatment': 'JQ1'}, 'GSM2142619': {'gender': 'male', 'age': '69', 'who': '1', 'dead': '1', 'date': '2013-04-05', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM2142618': {'gender': 'female', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2339430': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2142611': {'gender': 'female', 'age': '69', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '3', 'tnm': '1', 'smoking': '2'}, 'GSM2142610': {'gender': 'female', 'age': '65', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142613': {'gender': 'female', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2142612': {'gender': 'female', 'age': '71', 'who': '1', 'dead': '1', 'date': '2012-06-04', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142615': {'gender': 'male', 'age': '77', 'who': '1', 'dead': '1', 'date': '2012-01-27', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2142614': {'gender': 'female', 'age': '60', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '3', 'tnm': '1', 'smoking': '1'}, 'GSM2142617': {'gender': 'male', 'age': '64', 'who': '0', 'dead': '1', 'date': '2011-08-25', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2142616': {'gender': 'male', 'age': '70', 'who': '1', 'dead': '1', 'date': '2013-04-22', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2575103': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '03h'}, 'GSM1505839': {'gender': 'male', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '03-04'}, 'GSM1505838': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '0', 'type': 'iPSC-derived neural progenitors', 'id': '03-03'}, 'GSM1505837': {'gender': 'male', 'state': 'unaffected', 'conditions': '0', 'type': 'iPSC-derived neural progenitors', 'id': '03-04'}, 'GSM1505836': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '1123-03'}, 'GSM1505835': {'gender': 'female', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '1123-02'}, 'GSM1505834': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '1123-01'}, 'GSM1505833': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '07-03'}, 'GSM1505832': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '07-03'}, 'GSM1505831': {'gender': 'female', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '07-02'}, 'GSM1505830': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '07-03'}, 'GSM2210566': {'line': 'A375', 'treatment': 'vemurafenib'}, 'GSM2575105': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2310429': {'tissue': 'vastus lateralis muscle', 'treatment': 'cycling session (70 min, 70% Vâ\\x80\\x99о 2max )', 'point': '8 hours after exercise'}, 'GSM2310428': {'tissue': 'vastus lateralis muscle', 'treatment': 'cycling session (70 min, 70% Vâ\\x80\\x99о 2max )', 'point': '8 hours after exercise'}, 'GSM2310427': {'tissue': 'vastus lateralis muscle', 'treatment': 'cycling session (70 min, 70% Vâ\\x80\\x99о 2max )', 'point': '4 hours after exercise'}, 'GSM2310426': {'tissue': 'vastus lateralis muscle', 'treatment': 'cycling session (70 min, 70% Vâ\\x80\\x99о 2max )', 'point': '4 hours after exercise'}, 'GSM2310425': {'tissue': 'vastus lateralis muscle', 'treatment': 'none', 'point': 'before'}, 'GSM2310424': {'tissue': 'vastus lateralis muscle', 'treatment': 'none', 'point': 'before'}, 'GSM2286706': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2286707': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM922182': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922183': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922184': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922185': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922186': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922187': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922188': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922189': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2286708': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2286709': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM1285924': {'line': 'Caco-2', 'type': 'colon cancer line'}, 'GSM1869430': {'gender': 'female', 'tissue': 'blood', 'type': 'peripheral blood mononuclear cells', 'diagnosis': 'healthy'}, 'GSM1665987': {'type': 'non tumorigenic (Melanocytes)', 'variation': 'wild type'}, 'GSM1401719': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401718': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1285923': {'line': 'Caco-2', 'type': 'colon cancer line'}, 'GSM1401715': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401714': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401717': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401716': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401711': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401710': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401713': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401712': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM2433133': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433132': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433131': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433130': {'state': 'Control', 'tissue': 'lung'}, 'GSM1063289': {'region': 'Hippocampus', 'death': '97 years', 'tissue': 'Post morten brain', 'id': '7'}, 'GSM2433135': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433134': {'state': 'Control', 'tissue': 'lung'}, 'GSM1063288': {'region': 'frontal cortex', 'death': '97 years', 'tissue': 'Post morten brain', 'id': '7'}, 'GSM1115216': {'line': 'BJ cells', 'condition': 'Nutlin-3a, 19h'}, 'GSM1330718': {'line': 'BJ', 'tissue': 'skin', 'type': 'fibroblast cells', 'treatment': '0.2mM H2O2', 'tiime': '33 minutes'}, 'GSM1330719': {'line': 'BJ', 'tissue': 'skin', 'type': 'fibroblast cells', 'treatment': '0.2mM H2O2', 'tiime': '5 hours'}, 'GSM1330714': {'line': 'BJ', 'tissue': 'skin', 'type': 'fibroblast cells', 'treatment': 'none', 'tiime': 'Untreated'}, 'GSM1330715': {'line': 'BJ', 'tissue': 'skin', 'type': 'fibroblast cells', 'treatment': '0.2mM H2O2', 'tiime': '32 minutes'}, 'GSM1330716': {'line': 'BJ', 'tissue': 'skin', 'type': 'fibroblast cells', 'treatment': '0.2mM H2O2', 'tiime': '4 hours'}, 'GSM1330717': {'line': 'BJ', 'tissue': 'skin', 'type': 'fibroblast cells', 'treatment': 'none', 'tiime': 'Untreated'}, 'GSM1330710': {'line': 'MRC5', 'tissue': 'lung', 'type': 'fibroblast cells', 'treatment': '0.2mM H2O2', 'tiime': '2 hours'}, 'GSM1330711': {'line': 'MRC5', 'tissue': 'lung', 'type': 'fibroblast cells', 'treatment': 'none', 'tiime': 'Untreated'}, 'GSM1330712': {'line': 'MRC5', 'tissue': 'lung', 'type': 'fibroblast cells', 'treatment': '0.2mM H2O2', 'tiime': '31 minutes'}, 'GSM1115213': {'line': 'BJ cells', 'condition': 'Nutlin-3a, 6h'}, 'GSM2311778': {'culture': '0'}, 'GSM1115210': {'line': 'BJ cells', 'condition': 'Nutlin-3a, 4h'}, 'GSM678065': {'type': 'CD8+ T-cells'}, 'GSM678064': {'type': 'CD4+ T-cells'}, 'GSM678066': {'type': 'Granulocytes'}, 'GSM678061': {'type': 'Granulocytes'}, 'GSM2150337': {'treatment': 'SB939'}, 'GSM678063': {'type': 'Granulocytes'}, 'GSM678062': {'type': 'Granulocytes'}, 'GSM2067396': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067397': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067394': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2150336': {'treatment': 'DMSO'}, 'GSM2067392': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067393': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067390': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067391': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067398': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067399': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2265723': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'Cells lentiviral infected with SUZ12 specific shRNA vector'}, 'GSM2265722': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'Cells lentiviral infected with SUZ12 specific shRNA vector'}, 'GSM2265721': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'Cells lentiviral infected with control vector'}, 'GSM2265720': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'Cells lentiviral infected with control vector'}, 'GSM2114360': {'state': 'control'}, 'GSM2151512': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1910777': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910774': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910775': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910772': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910773': {'stability': 'Stable', 'type': 'ileum'}, 'GSM2151514': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151515': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151518': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151519': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1910778': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910779': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1289122': {'variation': 'control'}, 'GSM1289123': {'variation': 'reduced PTEN'}, 'GSM2212202': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212203': {'company': 'cat #): Tocris Bioscience: #3631', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Tacrolimus'}, 'GSM2212200': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212201': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212206': {'company': 'cat #): Tocris Bioscience: #3631', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Tacrolimus'}, 'GSM2212207': {'company': 'cat #): Tocris Bioscience: #5325', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Rosiglitazone'}, 'GSM2212204': {'company': 'cat #): Tocris Bioscience: #5325', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Rosiglitazone'}, 'GSM2225661': {'disease': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2357400': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'DICER1 KD, Ser5 phospho'}, 'GSM2644587': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-PR (Santa Cruz, H-190)'}, 'GSM2357402': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa', 'variation': 'polyA- fraction, Nucleoplasm'}, 'GSM2357403': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa', 'variation': 'polyA+ fraction, Nucleoplasm'}, 'GSM2357404': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa', 'variation': 'polyA- fraction, Nucleoplasm'}, 'GSM2357405': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa', 'variation': 'Nucleoplasm fraction'}, 'GSM2357406': {'subtype': 'Chromatin RNA', 'line': 'HeLa', 'variation': 'Chromatin fraction'}, 'GSM2644581': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-GATA3 C-terminus (ThermoFisher, PA5-20892)'}, 'GSM2644588': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-PR (Santa Cruz, H-190)'}, 'GSM2644589': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-PR (Santa Cruz, H-190)'}, 'GSM3486129': {'line': 'MIA PaCa-2', 'sampling': '65Y', 'type': 'Pancreatic ductal adenocarcinoma', 'Sex': 'Male'}, 'GSM2671301': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671302': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671303': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2445402': {'growth': 'Samples were not cultivated'}, 'GSM2445400': {'growth': 'Samples were not cultivated'}, 'GSM3486125': {'line': 'Capan-2', 'sampling': '56Y', 'type': 'Pancreatic ductal adenocarcinoma', 'Sex': 'Male'}, 'GSM1187395': {'age': '41', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T3N1aM0', 'Sex': 'female'}, 'GSM1187396': {'age': '57', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T1bN0M0', 'Sex': 'female'}, 'GSM3486126': {'line': 'CFPAC-1', 'sampling': '26Y', 'type': 'Pancreatic ductal adenocarcinoma', 'disease': 'Derived from metastatic site: Liver', 'Sex': 'Male'}, 'GSM1537999': {'type': 'ES-derived neural progenitor cells', 'number': '48', 'treatment': 'Fgf2'}, 'GSM1537998': {'type': 'ES-derived neural progenitor cells', 'number': '48', 'treatment': 'control'}, 'GSM1537997': {'type': 'ES-derived neural progenitor cells', 'number': '48', 'treatment': 'control'}, 'GSM1537996': {'type': 'ES-derived neural progenitor cells', 'number': '48', 'treatment': 'control'}, 'GSM2326017': {'type': 'Human embryonic stem cell'}, 'GSM2326016': {'type': 'Human embryonic stem cell'}, 'GSM2326015': {'type': 'Human embryonic stem cell'}, 'GSM2326014': {'type': 'Human embryonic stem cell'}, 'GSM2326013': {'type': 'Human embryonic stem cell'}, 'GSM2326012': {'type': 'Human embryonic stem cell'}, 'GSM2326011': {'type': 'Human embryonic stem cell'}, 'GSM2326010': {'type': 'Human embryonic stem cell'}, 'GSM2326019': {'type': 'Human embryonic stem cell'}, 'GSM2326018': {'type': 'Human embryonic stem cell'}, 'GSM2507548': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12+/+'}, 'GSM2507549': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12-/-'}, 'GSM2507546': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12+/+'}, 'GSM2507544': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12+/+'}, 'GSM2470222': {'type': 'adult HSC myofibroblasts', 'treatment': 'with ceramide (25 uM) for 48 hours', 'passage': 'passage 7-8'}, 'GSM2470223': {'type': 'adult HSC myofibroblasts', 'treatment': 'with ceramide (25 uM) for 48 hours', 'passage': 'passage 7-8'}, 'GSM2470220': {'type': 'adult HSC myofibroblasts', 'treatment': 'with ethanol vehicle for 48 hours', 'passage': 'passage 7-8'}, 'GSM2470221': {'type': 'adult HSC myofibroblasts', 'treatment': 'with ethanol vehicle for 48 hours', 'passage': 'passage 7-8'}, 'GSM2470224': {'tissue': 'U2OS osteosarcoma cell line', 'variation': 'control'}, 'GSM2470225': {'tissue': 'U2OS osteosarcoma cell line', 'variation': 'PML silencing'}, 'GSM2082560': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082561': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082562': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082563': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082564': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082565': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082566': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082567': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082568': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM2082569': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM1435248': {'line': 'MDA-MB-231'}, 'GSM1435249': {'line': 'MDA-MB-231'}, 'GSM1435246': {'line': 'MDA-MB-231'}, 'GSM1435247': {'line': 'MDA-MB-231'}, 'GSM2718938': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM1835868': {'source': 'primary kidney rhabdoid tumor tissue', 'id': 'RT242'}, 'GSM1835869': {'source': 'primary kidney rhabdoid tumor tissue', 'id': 'RT262'}, 'GSM2361599': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361598': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361597': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361596': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361595': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361594': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361593': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361592': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361591': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361590': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2170834': {'stage': 'iPSC line'}, 'GSM1968479': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1241245': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241244': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241247': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241246': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241241': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241240': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241243': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241242': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1671938': {'type': 'Antigen presenting cells'}, 'GSM1671939': {'type': 'Antigen presenting cells'}, 'GSM3486124': {'line': 'AsPC-1', 'sampling': '62Y', 'type': 'Pancreatic ductal adenocarcinoma', 'disease': 'Derived from metastatic site: Ascites', 'Sex': 'Female'}, 'GSM1241249': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241248': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM802399': {'passages': '6 to 10', 'target': 'H3K18ac', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'Custom 814 H3K18ac'}, 'GSM1955829': {'a': '58757', 'cd38': '416', 'cd49f': '651', 'w': '67599', 'h': '56964', 'lin': '920', 'cd34': '9452', 'cd90': '6259', 'cd7': '-79', 'cd10': '943', 'time': '9264', 'cd135': '5103', 'cd45ra': '98'}, 'GSM1955828': {'a': '43746', 'cd38': '579', 'cd49f': '572', 'w': '66475', 'h': '43128', 'lin': '-120', 'cd34': '3397', 'cd90': '763', 'cd7': '473', 'cd10': '391', 'time': '9064', 'cd135': '5144', 'cd45ra': '140'}, 'GSM1955821': {'a': '61021', 'cd38': '884', 'cd49f': '112', 'w': '66306', 'h': '60312', 'lin': '-408', 'cd34': '3716', 'cd90': '425', 'cd7': '430', 'cd10': '292', 'time': '7447', 'cd135': '2582', 'cd45ra': '-62'}, 'GSM1955820': {'a': '72471', 'cd38': '136', 'cd49f': '716', 'w': '67354', 'h': '70515', 'lin': '1013', 'cd34': '5929', 'cd90': '4754', 'cd7': '58', 'cd10': '894', 'time': '4999', 'cd135': '2778', 'cd45ra': '58'}, 'GSM1955823': {'a': '49272', 'cd38': '583', 'cd49f': '289', 'w': '69074', 'h': '46748', 'lin': '620', 'cd34': '5469', 'cd90': '3633', 'cd7': '397', 'cd10': '715', 'time': '7934', 'cd135': '2192', 'cd45ra': '155'}, 'GSM1955822': {'a': '74525', 'cd38': '745', 'cd49f': '1032', 'w': '70550', 'h': '69228', 'lin': '14', 'cd34': '4388', 'cd90': '1068', 'cd7': '380', 'cd10': '1070', 'time': '7705', 'cd135': '7380', 'cd45ra': '5905'}, 'GSM1955825': {'a': '60624', 'cd38': '645', 'cd49f': '435', 'w': '66846', 'h': '59436', 'lin': '-40', 'cd34': '5631', 'cd90': '1883', 'cd7': '292', 'cd10': '469', 'time': '8419', 'cd135': '1698', 'cd45ra': '81'}, 'GSM1955824': {'a': '53247', 'cd38': '-478', 'cd49f': '393', 'w': '64741', 'h': '53901', 'lin': '441', 'cd34': '10389', 'cd90': '5067', 'cd7': '397', 'cd10': '967', 'time': '8198', 'cd135': '2383', 'cd45ra': '242'}, 'GSM1955827': {'a': '50094', 'cd38': '-22', 'cd49f': '211', 'w': '63501', 'h': '51699', 'lin': '-952', 'cd34': '7186', 'cd90': '6821', 'cd7': '141', 'cd10': '1065', 'time': '8833', 'cd135': '1984', 'cd45ra': '8'}, 'GSM1955826': {'a': '38723', 'cd38': '857', 'cd49f': '-1386', 'w': '66938', 'h': '37912', 'lin': '-2485', 'cd34': '3743', 'cd90': '143687', 'cd7': '-2643', 'cd10': '2130', 'time': '8615', 'cd135': '-2468', 'cd45ra': '139'}, 'GSM1697509': {'with': 'B. pseudomallei for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697508': {'with': 'B. pseudomallei for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697505': {'with': 'B. pseudomallei for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697507': {'with': 'B. pseudomallei for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697506': {'with': 'B. pseudomallei for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM2689251': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689250': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689253': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689252': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689255': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689254': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689257': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689256': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689259': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689258': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2350128': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350129': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350122': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350123': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350120': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350121': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350126': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350127': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350124': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350125': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2307018': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307019': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307012': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307013': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307010': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM1436138': {'donor': 'G', 'type': 'DC 14'}, 'GSM2307016': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307017': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307014': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307015': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2627010': {'origin': 'pancreas', 'patient_id': '47', 'type': 'primary', 'tumor_id': 'YC82'}, 'GSM2630665': {'line': 'HCC1143', 'treatment': '1uM BEZ235'}, 'GSM2782549': {'genotype': 'WT', 'treatment_time': 'GSK3i for 24h, Wnt inhibitor for 48h', 'treatment': 'GSK3i+Wnt/β-catenin inhibitor'}, 'GSM1838921': {'replicate': 'Replicate 2', 'line': 'U2OS', 'with': 'HAT mutant BRD4'}, 'GSM1916404': {'type': 'EBV-immortalized LCL'}, 'GSM2891085': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'control (siNT)'}, 'GSM2891084': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'case (siSF3B1)'}, 'GSM2630668': {'line': 'HCC1143', 'treatment': '1uM BEZ235 + 1uM JQ1'}, 'GSM2630669': {'line': 'HCC1143', 'treatment': '1uM BEZ235 + 1uM JQ1'}, 'GSM2891089': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'control (siNT)'}, 'GSM2891088': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'case (siSRSF1)'}, 'GSM2750939': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750938': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750935': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750934': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750937': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750936': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750931': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750930': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750933': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750932': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM1626510': {'tissue': 'placental villus parenchyma'}, 'GSM1957463': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957462': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957461': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957460': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957467': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957466': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM3594718': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594719': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594716': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594717': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM1957469': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957468': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2544240': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2544241': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM3594710': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594711': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM2496330': {'type': 'patient dervied GBM stem cells', 'passage': '2-5'}, 'GSM1304784': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'late basophilic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin high'}, 'GSM1304785': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'late basophilic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin high'}, 'GSM1304786': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'polychromatic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin medium'}, 'GSM1304787': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'polychromatic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin medium'}, 'GSM1304780': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'early basophilic erythroblast', 'methods': 'GPA positive, Band3 medium and alpha 4 integrin high'}, 'GSM1304781': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'early basophilic erythroblast', 'methods': 'GPA positive, Band3 medium and alpha 4 integrin high'}, 'GSM1304782': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'early basophilic erythroblast', 'methods': 'GPA positive, Band3 medium and alpha 4 integrin high'}, 'GSM1304783': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'late basophilic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin high'}, 'GSM1304788': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'polychromatic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin medium'}, 'GSM1304789': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'orthochromatic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin negative'}, 'GSM1323686': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.85', 'reads': '71,463,718', 'tissue': 'prostate', 'u': '70.4', 'mapped': '69.8%', 'id': 'VA-PC-99-54', 'bcr': '0'}, 'GSM2153159': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2547149': {'tissue': 'right atrial appendage biopsies', 'treatment': 'TGFB1', 'hour': 'cultured for 24 hours'}, 'GSM2166091': {'line': 'HeLa', 'passages': '5-7', 'antibody': 'anti-Flag, Sigma F-1804'}, 'GSM2166090': {'line': 'HeLa', 'passages': '5-7', 'antibody': 'anti-Flag, Sigma F-1804'}, 'GSM2166093': {'line': 'HeLa', 'passages': '5-7', 'antibody': 'N/A'}, 'GSM2166092': {'line': 'HeLa', 'passages': '5-7', 'antibody': 'anti-Flag, Sigma F-1804'}, 'GSM2166095': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166094': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'normal'}, 'GSM2166097': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166096': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'normal'}, 'GSM2166099': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'normal'}, 'GSM2166098': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2316910': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316912': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM860028': {'length': '70', 'line': '293T', 'treatment': 'Control siRNA'}, 'GSM860029': {'length': '70', 'line': '293T', 'treatment': 'Control siRNA'}, 'GSM860022': {'length': '50', 'line': '293T', 'treatment': 'hnRNPU siRNAs'}, 'GSM860023': {'length': '76', 'line': '293T', 'treatment': 'hnRNPU siRNAs'}, 'GSM860020': {'length': '36', 'line': '293T', 'treatment': 'hnRNPM siRNAs'}, 'GSM860021': {'length': '76', 'line': '293T', 'treatment': 'hnRNPM siRNAs'}, 'GSM860026': {'length': '50', 'line': '293T', 'treatment': 'Control siRNA'}, 'GSM860027': {'length': '50', 'line': '293T', 'treatment': 'Control siRNA'}, 'GSM860024': {'length': '50', 'line': '293T', 'treatment': 'hnRNPU siRNAs'}, 'GSM860025': {'length': '50', 'line': '293T', 'treatment': 'hnRNPU siRNAs'}, 'GSM1323688': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '8.69', 'reads': '187,807,960', 'tissue': 'prostate', 'u': '64.3', 'mapped': '48.7%', 'id': 'VA-PC-99-75', 'bcr': '0'}, 'GSM1323689': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '7.22', 'reads': '82,363,536', 'tissue': 'prostate', 'u': '82.3', 'mapped': '55.0%', 'id': 'VA-PC-99-76', 'bcr': '0'}, 'GSM2573764': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1556310': {'gender': 'female', 'id': 'GM01835 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1295098': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'A300-882a from BETHYL'}, 'GSM2243903': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B4', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243902': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243901': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F7', 'cluster': '8', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243900': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243907': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D6', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243906': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A5', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243905': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D4', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243904': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G4', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243909': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C11', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243908': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C6', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1579289': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'FGF2'}, 'GSM1579288': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'FGF2'}, 'GSM1866998': {'line': 'HCT116', 'clone': 'E7 Deletion Clone', 'point': 'RNA extracted on day A'}, 'GSM1866999': {'line': 'HCT116', 'clone': 'E7 Deletion Clone', 'point': 'RNA extracted on day B'}, 'GSM1866994': {'line': 'HCT116', 'clone': 'Control Cone 3', 'point': 'RNA extracted on day C'}, 'GSM1866995': {'line': 'HCT116', 'clone': 'Control Clone 4', 'point': 'RNA extracted on day A'}, 'GSM1866996': {'line': 'HCT116', 'clone': 'Control Clone 4', 'point': 'RNA extracted on day B'}, 'GSM1866997': {'line': 'HCT116', 'clone': 'Control Clone 4', 'point': 'RNA extracted on day C'}, 'GSM1866990': {'line': 'HCT116', 'clone': 'Control Clone 2', 'point': 'RNA extracted on day B'}, 'GSM1866991': {'line': 'HCT116', 'clone': 'Control Clone 2', 'point': 'RNA extracted on day C'}, 'GSM1866992': {'line': 'HCT116', 'clone': 'Control Cone 3', 'point': 'RNA extracted on day A'}, 'GSM1866993': {'line': 'HCT116', 'clone': 'Control Cone 3', 'point': 'RNA extracted on day B'}, 'GSM2840328': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840329': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840324': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840325': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840326': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840327': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840320': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840321': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840322': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840323': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2689307': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM984401': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'none', 'manufacturer': 'none'}, 'GSM984400': {'line': 'LNCaP', 'antibody': 'H3K4Me3', 'treatment': 'DHT treated (4h)', 'manufacturer': 'Millipore'}, 'GSM984403': {'line': '22RV1', 'antibody': 'none', 'treatment': 'none', 'manufacturer': 'none'}, 'GSM984402': {'line': 'LNCaP', 'antibody': 'none', 'treatment': 'none', 'manufacturer': 'none'}, 'GSM2689305': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1396729': {'lane': '3', 'librarybatch': 'A', 'replicate': '3', 'treatment': 'SYKi', 'time': '24 hours', 'type': 'WAT', 'multiplex': '3'}, 'GSM1396728': {'lane': '4', 'librarybatch': 'A', 'replicate': '2', 'treatment': 'SYKi', 'time': '24 hours', 'type': 'WAT', 'multiplex': '2'}, 'GSM2424952': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1615538': {'line': 'MCF-7', 'type': 'breast cancer'}, 'GSM1615536': {'line': 'MCF-7', 'type': 'breast cancer'}, 'GSM1615537': {'line': 'MCF-7', 'type': 'breast cancer'}, 'GSM1615534': {'line': 'MCF-7', 'type': 'breast cancer'}, 'GSM1615535': {'line': 'MCF-7', 'type': 'breast cancer'}, 'GSM1396725': {'lane': '2', 'librarybatch': 'A', 'replicate': '2', 'treatment': 'JAK3i', 'time': '24 hours', 'type': 'WAT', 'multiplex': '3'}, 'GSM1615533': {'line': 'MCF-7', 'type': 'breast cancer'}, 'GSM1396727': {'lane': '1', 'librarybatch': 'A', 'replicate': '1', 'treatment': 'SYKi', 'time': '24 hours', 'type': 'WAT', 'multiplex': '1'}, 'GSM1396726': {'lane': '1', 'librarybatch': 'A', 'replicate': '3', 'treatment': 'JAK3i', 'time': '24 hours', 'type': 'WAT', 'multiplex': '4'}, 'GSM2771750': {'aspiration': '4th', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_3', 'structure': 'cell body'}, 'GSM2424957': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2771751': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_4', 'structure': 'neurite'}, 'GSM2424956': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2771752': {'aspiration': '2nd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_4', 'structure': 'neurite'}, 'GSM2754588': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0811', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754589': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_0811', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2771753': {'aspiration': '3rd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_4', 'structure': 'cell body'}, 'GSM2754580': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_0910', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754581': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1132', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754582': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_1132', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754583': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_1132', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754584': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0511', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754585': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_0511', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754586': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0438', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754587': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0811', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2068368': {'time': '6hrs', 'dose': '250 ng/ml doxycycline'}, 'GSM2068369': {'time': '6hrs', 'dose': '250 ng/ml doxycycline'}, 'GSM2251304': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2068362': {'time': '6hrs', 'antibody': 'none', 'dose': '250 ng/ml doxycycline'}, 'GSM2068363': {'time': '6hrs', 'antibody': 'Flag (Sigma, F1804)', 'dose': '250 ng/ml doxycycline'}, 'GSM2068360': {'time': '6hrs', 'dose': '0 ng/ml doxycycline'}, 'GSM2068361': {'time': '6hrs', 'dose': '0 ng/ml doxycycline'}, 'GSM2068366': {'time': '6hrs', 'antibody': 'H3K4me3 (abcam, ab8580)', 'dose': '250 ng/ml doxycycline'}, 'GSM2068367': {'time': '6hrs', 'dose': '250 ng/ml doxycycline'}, 'GSM2068364': {'time': '6hrs', 'antibody': 'H3K27Ac (abcam, ab4729)', 'dose': '250 ng/ml doxycycline'}, 'GSM2068365': {'time': '6hrs', 'antibody': 'Histone H3 (abcam, ab1791)', 'dose': '250 ng/ml doxycycline'}, 'GSM2454202': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454203': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454200': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454201': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454206': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454207': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454204': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454205': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454208': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2616738': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616739': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616736': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616737': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616734': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616735': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616732': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616733': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616730': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616731': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2535756': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1238', 'samplename': '1gr_413tetr_C79', 'seqsite': 'BRI', 'sampleID': 'S13406', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1238', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C79'}, 'GSM1233978': {'replicate': '1', 'line': '18486', 'antibody': 'CTCF'}, 'GSM1233979': {'replicate': '2', 'line': '18486', 'antibody': 'CTCF'}, 'GSM1233976': {'replicate': '2', 'line': '12892', 'antibody': 'SA1'}, 'GSM1233977': {'replicate': '1.2', 'line': '18486', 'antibody': 'CTCF'}, 'GSM1233974': {'replicate': '2', 'line': '12892', 'antibody': 'RNA-seq'}, 'GSM1233975': {'replicate': '1', 'line': '12892', 'antibody': 'SA1'}, 'GSM1233972': {'replicate': '1', 'line': '12892', 'antibody': 'Input'}, 'GSM1233973': {'replicate': '1', 'line': '12892', 'antibody': 'RNA-seq'}, 'GSM1233970': {'replicate': '2', 'line': '12892', 'antibody': 'H3K4me3'}, 'GSM1233971': {'replicate': '3', 'line': '12892', 'antibody': 'H3K4me3'}, 'GSM2535755': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1237', 'samplename': '1gr_413tetr_C73', 'seqsite': 'BRI', 'sampleID': 'S13405', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1237', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C73'}, 'GSM1868725': {'type': 'memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868724': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868727': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868726': {'type': 'central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868723': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868722': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1626517': {'tissue': 'placental villus parenchyma'}, 'GSM2412298': {'passages': 'P5-P7', 'type': 'Human prostate cancer-associated fibroblasts'}, 'GSM2412293': {'antibody': 'AR (Santa Cruz, H280, sc-13062, Lot D0414)', 'passages': 'P5-P7', 'type': 'Human prostate cancer-associated fibroblasts'}, 'GSM2412292': {'antibody': 'AR (Santa Cruz, H280, sc-13062, Lot D0414)', 'passages': 'P5-P7', 'type': 'Human fetal prostate fibroblasts'}, 'GSM2412297': {'passages': 'P5-P7', 'type': 'Human fetal prostate fibroblasts'}, 'GSM2412296': {'antibody': 'none', 'passages': 'P5-P7', 'type': 'Human prostate cancer-associated fibroblasts'}, 'GSM2412295': {'antibody': 'none', 'passages': 'P5-P7', 'type': 'Human fetal prostate fibroblasts'}, 'GSM2412294': {'antibody': 'AR (Santa Cruz, H280, sc-13062, Lot D0414)', 'passages': 'P5-P7', 'type': 'Myofibroblast cell line that overexpresses AR'}, 'GSM1868729': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868728': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2459111': {'line': 'LALB (ALL-B patient-derived cell line)', 'type': 'B-Cell'}, 'GSM2459110': {'line': 'LALB (ALL-B patient-derived cell line)', 'type': 'B-Cell'}, 'GSM2459113': {'line': 'LALB (ALL-B patient-derived cell line)', 'type': 'B-Cell'}, 'GSM2459112': {'line': 'LALB (ALL-B patient-derived cell line)', 'type': 'B-Cell'}, 'GSM2339329': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339328': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2459117': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2459116': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2459119': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2339324': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339327': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339326': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339321': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339320': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339323': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339322': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM1548049': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548048': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548041': {'reagent': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1548040': {'reagent': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1548043': {'reagent': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1548042': {'reagent': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1548045': {'reagent': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1548044': {'reagent': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1548047': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548046': {'reagent': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM2389437': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389438': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389439': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM1896108': {'individual': 'AF35', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896109': {'individual': 'AF35', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1545671': {'strain': 'HCT116', 'by': 'shNELF-A', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'serum': 'starved'}, 'GSM1896100': {'individual': 'AF27', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896101': {'individual': 'AF27', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896102': {'individual': 'AF29', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896103': {'individual': 'AF29', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896104': {'individual': 'AF29', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896105': {'individual': 'AF31', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896106': {'individual': 'AF31', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896107': {'individual': 'AF31', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2302079': {'timepoint': 'Post', 'id': '30', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302078': {'timepoint': 'Pre', 'id': '30', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302073': {'timepoint': 'Post', 'id': '27', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302072': {'timepoint': 'Pre', 'id': '27', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302071': {'timepoint': 'Post', 'id': '26', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302070': {'timepoint': 'Pre', 'id': '26', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302077': {'timepoint': 'Post', 'id': '29', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302076': {'timepoint': 'Pre', 'id': '29', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302075': {'timepoint': 'Post', 'id': '28', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302074': {'timepoint': 'Pre', 'id': '28', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2243578': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243579': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1626514': {'tissue': 'placental villus parenchyma'}, 'GSM2243572': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243573': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243570': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243571': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243576': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243577': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243574': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243575': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM835258': {'line': 'MCF10A-Myc', 'type': 'normal breast epithlial', 'phenotype': 'GFP-expressing'}, 'GSM1136098': {'genotype': 'WTAP knocked down'}, 'GSM1136097': {'genotype': 'WTAP knocked down'}, 'GSM1136096': {'genotype': 'control'}, 'GSM1136095': {'genotype': 'control'}, 'GSM1724087': {'type': 'Human Umbilical Vein Endothelial Cells (HUVECs)', 'condition': 'normoxia'}, 'GSM1724089': {'type': 'Human Umbilical Vein Endothelial Cells (HUVECs)', 'condition': 'normoxia'}, 'GSM1724088': {'type': 'Human Umbilical Vein Endothelial Cells (HUVECs)', 'condition': 'normoxia'}, 'GSM2332447': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2332446': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2332449': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2332448': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2348652': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2170832': {'stage': 'iPSC line'}, 'GSM2648416': {'with': 'SIRT7-targeted siRNAs', 'line': 'BT549', 'type': 'breast cancer cells'}, 'GSM1897279': {'line': 'BT20', 'type': 'breast cancer cell line'}, 'GSM1897278': {'line': 'AU565', 'type': 'breast cancer cell line'}, 'GSM2288278': {'dox': 'minus', 'type': 'immortalized human astrocytes', 'variation': 'empty vector', 'passage': 'baseline (passage 30)'}, 'GSM2288279': {'dox': 'withdrawn', 'type': 'immortalized human astrocytes', 'variation': 'empty vector', 'passage': 'off 1 passage from baseline (P30)'}, 'GSM1957109': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2288274': {'dox': 'plus', 'type': 'immortalized human astrocytes', 'variation': 'IDH1 R132H (induced)', 'passage': 'baseline (passage 30)'}, 'GSM2288275': {'dox': 'minus', 'type': 'immortalized human astrocytes', 'variation': 'IDH1 R132H (not induced)', 'passage': '40 passages from baseline (passage 30)'}, 'GSM2288276': {'dox': 'withdrawn', 'type': 'immortalized human astrocytes', 'variation': 'IDH1 R132H (induced)', 'passage': 'off 40 passages from baseline (P30)'}, 'GSM2288277': {'dox': 'plus', 'type': 'immortalized human astrocytes', 'variation': 'IDH1 R132H (off)', 'passage': '40 passages from baseline (passage 30)'}, 'GSM1897275': {'line': '184A1', 'type': 'breast cancer cell line'}, 'GSM2288272': {'dox': 'minus', 'type': 'immortalized human astrocytes', 'variation': 'IDH1 R132H (not induced)', 'passage': 'baseline (passage 30)'}, 'GSM2288273': {'dox': 'withdrawn', 'type': 'immortalized human astrocytes', 'variation': 'IDH1 R132H (off)', 'passage': 'off 1 passage from baseline (P30)'}, 'GSM2048478': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048479': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048474': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048475': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048476': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048477': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048470': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048471': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048472': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048473': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2229949': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS22'}, 'GSM2229948': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS22'}, 'GSM2229943': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS15'}, 'GSM2229942': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS15'}, 'GSM2229941': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS20'}, 'GSM2229940': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS20'}, 'GSM2229947': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS22'}, 'GSM2229946': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS22'}, 'GSM2229945': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS15'}, 'GSM2229944': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS15'}, 'GSM2100213': {'rin': '10', 'Sex': 'Female', 'sspg': '82', 'age': '62', 'bmi': '22.2', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '780', 'method': 'Life-Tech GITC'}, 'GSM2100212': {'rin': '10', 'Sex': 'Female', 'sspg': '82', 'age': '62', 'bmi': '22.2', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '780', 'method': 'Life-Tech GITC'}, 'GSM2100211': {'rin': '7.5', 'Sex': 'Female', 'sspg': '82', 'age': '62', 'bmi': '22.2', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '780', 'method': 'Life-Tech GITC'}, 'GSM2100210': {'rin': '9.1', 'Sex': 'Female', 'sspg': '173', 'age': '57', 'bmi': '24.4', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '11', 'indiv': '771', 'method': 'Life-Tech GITC'}, 'GSM2100217': {'rin': '9.7', 'Sex': 'Female', 'sspg': '66', 'age': '60', 'bmi': '27.4', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '698', 'method': 'Qiagen:trizol'}, 'GSM2100216': {'rin': '9.4', 'Sex': 'Female', 'sspg': '158', 'age': '69', 'bmi': '27.3', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '432', 'method': 'Life-Tech GITC'}, 'GSM2100215': {'rin': '9.5', 'Sex': 'Female', 'sspg': '158', 'age': '69', 'bmi': '27.3', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '432', 'method': 'Life-Tech GITC'}, 'GSM2047254': {'buffer': 'KPDS', 'line': 'HeLa'}, 'GSM2100219': {'rin': '9.2', 'Sex': 'Female', 'sspg': '66', 'age': '60', 'bmi': '27.4', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '698', 'method': 'Qiagen:trizol'}, 'GSM2100218': {'rin': '9.7', 'Sex': 'Female', 'sspg': '66', 'age': '60', 'bmi': '27.4', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '698', 'method': 'Qiagen:trizol'}, 'GSM2047251': {'buffer': 'KPDS', 'line': 'HeLa'}, 'GSM2047250': {'buffer': 'K', 'line': 'HeLa'}, 'GSM2047253': {'buffer': 'KPDS', 'line': 'HeLa'}, 'GSM2648411': {'with': 'control siRNAs', 'line': 'BT549', 'type': 'breast cancer cells'}, 'GSM2047252': {'buffer': 'KPDS', 'line': 'HeLa'}, 'GSM2312124': {'culture': '12', 'line': 'DCX-'}, 'GSM2312125': {'culture': '12', 'line': 'DCX-'}, 'GSM2312126': {'culture': '12', 'line': 'DCX-'}, 'GSM2312127': {'culture': '12', 'line': 'DCX-'}, 'GSM2312120': {'culture': '12', 'line': 'DCX-'}, 'GSM2312121': {'culture': '12', 'line': 'DCX-'}, 'GSM2312122': {'culture': '12', 'line': 'DCX-'}, 'GSM2312123': {'culture': '12', 'line': 'DCX-'}, 'GSM2312128': {'culture': '12', 'line': 'DCX-'}, 'GSM2312129': {'culture': '12', 'line': 'DCX-'}, 'GSM2436740': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2081442': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081443': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2648413': {'with': 'control siRNAs', 'line': 'BT549', 'type': 'breast cancer cells'}, 'GSM2679498': {'line': 'BLCL (165)'}, 'GSM2679499': {'line': 'BLCL (165)'}, 'GSM3067235': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'serum starvation', 'fraction': 'mP beads'}, 'GSM2679490': {'line': 'BLCL (165)'}, 'GSM2679491': {'line': 'BLCL (165)'}, 'GSM2679492': {'line': 'BLCL (165)'}, 'GSM2679493': {'line': 'BLCL (165)'}, 'GSM2679494': {'line': 'BLCL (165)'}, 'GSM2679495': {'line': 'BLCL (165)'}, 'GSM2679496': {'line': 'BLCL (165)'}, 'GSM2679497': {'line': 'BLCL (165)'}, 'GSM2081448': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2060167': {'line': 'LNCaP'}, 'GSM2060168': {'line': 'LNCaP'}, 'GSM2060169': {'line': 'LNCaP'}, 'GSM2081449': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2459947': {'antibodies': 'H3K27m3:cat 39155, Active Motif', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2459948': {'antibodies': 'O-GlcNAc: RL2, ab2739,Abcam', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2459949': {'antibodies': 'N/A', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2026973': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q5HYK9'}, 'GSM971690': {'line': 'THP-1', 'treatment': 'cycloheximide 100µg/ml'}, 'GSM971691': {'line': 'THP-1', 'treatment': 'puromycin 100µg/ml'}, 'GSM971692': {'line': 'THP-1', 'treatment': 'puromycin 100µg/ml'}, 'GSM971693': {'line': 'THP-1', 'treatment': 'puromycin 100µg/ml'}, 'GSM2551389': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM3586759': {'origin': 'UNCLASSIFIED', 'pfstt': '740', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '760', 'cycles': '8', 'oscs': '0'}, 'GSM3586758': {'origin': 'GCB', 'pfstt': '911', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '918', 'cycles': '8', 'oscs': '0'}, 'GSM2551388': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM3586751': {'origin': 'ABC', 'pfstt': '160', 'pfscs': '1', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '291', 'cycles': '6', 'oscs': '1'}, 'GSM3586750': {'origin': 'ABC', 'pfstt': '985', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '985', 'cycles': '6', 'oscs': '0'}, 'GSM3586753': {'origin': 'ABC', 'pfstt': '1101', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1101', 'cycles': '6', 'oscs': '0'}, 'GSM3586752': {'origin': 'GCB', 'pfstt': '196', 'pfscs': '1', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '326', 'cycles': '6', 'oscs': '1'}, 'GSM3586755': {'origin': 'GCB', 'pfstt': '845', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '904', 'cycles': '6', 'oscs': '0'}, 'GSM3586754': {'origin': 'GCB', 'pfstt': '1137', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1144', 'cycles': '6', 'oscs': '0'}, 'GSM3586757': {'origin': 'UNCLASSIFIED', 'pfstt': '760', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '760', 'cycles': '6', 'oscs': '0'}, 'GSM3586756': {'origin': 'GCB', 'pfstt': '750', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '806', 'cycles': '6', 'oscs': '0'}, 'GSM802408': {'passages': '6 to 10', 'target': 'none', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'none'}, 'GSM802409': {'passages': '6 to 10', 'target': 'none', 'type': 'contact-inhibited IMR90', 'infection': 'e1a-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'none'}, 'GSM802400': {'passages': '6 to 10', 'target': 'H3K18ac', 'type': 'contact-inhibited IMR90', 'infection': 'dl1500-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'Custom 814 H3K18ac'}, 'GSM802401': {'passages': '6 to 10', 'target': 'H3K9ac', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'Upstate H3K9ac'}, 'GSM802402': {'passages': '6 to 10', 'target': 'H3K9ac', 'type': 'contact-inhibited IMR90', 'infection': 'dl1500-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'Upstate H3K9ac (07-352)'}, 'GSM802403': {'passages': '6 to 10', 'target': 'RB1', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'Cell signalling 4H1'}, 'GSM802404': {'passages': '6 to 10', 'target': 'p107', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'sc-C18'}, 'GSM802405': {'passages': '6 to 10', 'target': 'p130', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'sc-C20'}, 'GSM802406': {'passages': '6 to 10', 'target': 'none', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'none'}, 'GSM802407': {'passages': '6 to 10', 'target': 'none', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'none'}, 'GSM1163048': {'patient': 'Healthy_N248', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Agonist', 'id': '3'}, 'GSM1365958': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'LBH.589', 'timepoint': '4hr'}, 'GSM1365959': {'source': 'peripheral blood', 'line': 'U266', 'treatment': '5.AZA', 'timepoint': '4hr'}, 'GSM1365954': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': '5.AZA', 'timepoint': '4hr'}, 'GSM1365955': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Combo', 'timepoint': '4hr'}, 'GSM1365956': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'NMP', 'timepoint': '4hr'}, 'GSM1365957': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Control', 'timepoint': '4hr'}, 'GSM1365950': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Combo', 'timepoint': '24hr'}, 'GSM1365951': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'NMP', 'timepoint': '24hr'}, 'GSM1365952': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Control', 'timepoint': '4hr'}, 'GSM1365953': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'LBH.589', 'timepoint': '4hr'}, 'GSM2877920': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2607546': {'line': 'WA26'}, 'GSM2877922': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2141449': {'individual': 'AF141', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141448': {'individual': 'AF141', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2877923': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2141441': {'individual': 'AF137', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141440': {'individual': 'AF133', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141443': {'individual': 'AF137', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141442': {'individual': 'AF137', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141445': {'individual': 'AF139', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141444': {'individual': 'AF139', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141447': {'individual': 'AF141', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2172091': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2877926': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2172093': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1835909': {'line': 'G401', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM2098668': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2877928': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM1816173': {'line': 'IMR90'}, 'GSM1816172': {'line': 'IMR90'}, 'GSM1816175': {'line': 'IMR90'}, 'GSM1816174': {'line': 'IMR90'}, 'GSM1816177': {'line': 'IMR90'}, 'GSM2877929': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2098660': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098661': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098662': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098663': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098664': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098665': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098666': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098667': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM1401698': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401699': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401690': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401691': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401692': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401693': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401694': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401695': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401696': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401697': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM3073002': {'tissue': 'Glial Progenitor Cells', 'diet': 'Cuprizone'}, 'GSM3073003': {'tissue': 'Glial Progenitor Cells', 'diet': 'Cuprizone'}, 'GSM2166415': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1706618': {'line': 'K562', 'genotype': 'FLT3 haplo-insufficiency'}, 'GSM1706619': {'line': 'K562', 'genotype': 'FLT3 haplo-insufficiency'}, 'GSM2166414': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1706615': {'line': 'K562', 'genotype': 'FLT3 wild type'}, 'GSM1706616': {'line': 'K562', 'genotype': 'FLT3 wild type'}, 'GSM1706617': {'line': 'K562', 'genotype': 'FLT3 wild type'}, 'GSM2687358': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1', 'passage': '7'}, 'GSM2194219': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2666129': {'age': 'Day 130', 'well': 'G5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2532930': {'condition': 'Preterm Delivery'}, 'GSM2194213': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194245': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194244': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194247': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194246': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194241': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194240': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194243': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194242': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194216': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194249': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194248': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194217': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2047808': {'well': 'A01', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047809': {'well': 'A02', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2687354': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': 'Vehicle Control', 'passage': '7'}, 'GSM2395260': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'PWS microdeletion'}, 'GSM2395261': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'PWS microdeletion'}, 'GSM2047800': {'well': 'H06', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047801': {'well': 'H07', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047802': {'well': 'H08', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047803': {'well': 'H09', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047804': {'well': 'H10', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047805': {'well': 'H11', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047806': {'well': 'H12', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047807': {'well': 'bulk', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM485492': {'line': 'NA19171'}, 'GSM485493': {'line': 'NA18912'}, 'GSM2682880': {'gender': 'female', 'age': '14 years', 'diagnosis': 'embryonal rhabdomyosarcoma'}, 'GSM3189086': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.649373', 'percentaligned': '0.947994', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.321145', 'original': 'Control'}, 'GSM485491': {'line': 'NA18486'}, 'GSM1956200': {'a': '72784', 'cd38': '1716', 'cd49f': '1258', 'w': '68146', 'h': '69996', 'lin': '194', 'cd34': '6007', 'cd90': '-166', 'cd7': '323', 'cd10': '563', 'time': '5866', 'cd135': '3386', 'cd45ra': '845'}, 'GSM1616200': {'origin': 'derived from parental OVCAR-3 ovarian carcinoma cells', 'status': 'wild-type', 'shrna': 'scrambled pRS shRNA HuSH-29 plasmid (OriGene)'}, 'GSM1616203': {'origin': 'derived from parental OVCAR-3 ovarian carcinoma cells', 'status': 'COX-1 knockdown', 'shrna': 'COX-1 pRS shRNA HuSH-29 plasmid (OriGene)'}, 'GSM1616202': {'origin': 'derived from parental OVCAR-3 ovarian carcinoma cells', 'status': 'wild-type', 'shrna': 'scrambled pRS shRNA HuSH-29 plasmid (OriGene)'}, 'GSM1616205': {'origin': 'derived from parental OVCAR-3 ovarian carcinoma cells', 'status': 'COX-1 knockdown', 'shrna': 'COX-1 pRS shRNA HuSH-29 plasmid (OriGene)'}, 'GSM1616204': {'origin': 'derived from parental OVCAR-3 ovarian carcinoma cells', 'status': 'COX-1 knockdown', 'shrna': 'COX-1 pRS shRNA HuSH-29 plasmid (OriGene)'}, 'GSM3189081': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '43', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.693148', 'percentaligned': '0.919192', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.619981', 'original': 'Control'}, 'GSM485494': {'line': 'NA18523'}, 'GSM3189268': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.808652', 'percentaligned': '0.944027986', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.042864', 'original': 'Control'}, 'GSM485495': {'line': 'NA19193'}, 'GSM1363531': {'grade': '0', 'alb': '45.6', 'tb': '33.3', 'individual': 'HCC-C15', 'alt': '34', 'pt': '11.5', 'hbvdna': '<500', 'ca199': 'NA', 'hgb': '146', 'method': '0', 'ggt': '171.6', 'cea': 'NA', 'ast': '24', 'rna': 'Yes', 'db': '10.5', 'cirrhosis': '0', 'afp': 'NA', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '49', 'ltx': 'B', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '8.64'}, 'GSM1572246': {'tissue': 'coronary artery', 'disease': 'Control'}, 'GSM1572247': {'tissue': 'coronary artery', 'disease': 'Control'}, 'GSM1572244': {'tissue': 'coronary artery', 'disease': 'Control'}, 'GSM1572245': {'tissue': 'coronary artery', 'disease': 'Control'}, 'GSM1572242': {'tissue': 'coronary artery', 'disease': 'Control'}, 'GSM1572243': {'tissue': 'coronary artery', 'disease': 'Control'}, 'GSM1572240': {'tissue': 'coronary artery', 'disease': 'treated Kawasaki Disease'}, 'GSM1572241': {'tissue': 'coronary artery', 'disease': 'Control'}, 'GSM1679648': {'death': '73', 'gender': 'male', 'study': 'C_2', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.22833302', 'sv3': '0.140254512', 'sv1': '-0.1521250874'}, 'GSM1679649': {'death': '91', 'gender': 'male', 'study': 'C_3', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.33964929', 'sv3': '-0.123660469', 'sv1': '0.2017295736'}, 'GSM2225785': {'tissue': 'pancreas'}, 'GSM2225784': {'tissue': 'pancreas'}, 'GSM2225787': {'tissue': 'pancreas'}, 'GSM2225786': {'tissue': 'pancreas'}, 'GSM2225781': {'tissue': 'pancreas'}, 'GSM1299384': {'labexpid': '13269', 'line': 'GM12878'}, 'GSM1624299': {'gender': 'F', 'age': '54', 'tissue': 'skin', 'disease': 'NLP', 'subject': '10'}, 'GSM1624298': {'gender': 'F', 'age': '54', 'tissue': 'skin', 'disease': 'LP', 'subject': '10'}, 'GSM1624297': {'gender': 'F', 'age': '37', 'tissue': 'skin', 'disease': 'NLP', 'subject': '9'}, 'GSM1624296': {'gender': 'F', 'age': '37', 'tissue': 'skin', 'disease': 'LP', 'subject': '9'}, 'GSM1624295': {'gender': 'F', 'age': '28', 'tissue': 'skin', 'disease': 'NLP', 'subject': '8'}, 'GSM1624294': {'gender': 'F', 'age': '28', 'tissue': 'skin', 'disease': 'LP', 'subject': '8'}, 'GSM1624293': {'gender': 'M', 'age': '60', 'tissue': 'skin', 'disease': 'NLP', 'subject': '7'}, 'GSM2225788': {'tissue': 'pancreas'}, 'GSM1624291': {'gender': 'M', 'age': '52', 'tissue': 'skin', 'disease': 'NLP', 'subject': '6'}, 'GSM1624290': {'gender': 'M', 'age': '52', 'tissue': 'skin', 'disease': 'LP', 'subject': '6'}, 'GSM765402': {'lineage': 'ectoderm', 'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID16633', 'biomaterial_type': 'immortalized cell line', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'line': 'HeLa-S3', 'readtype': '2x76D', 'biorep': '011WC', 'spikeinpool': 'Nist14'}, 'GSM765403': {'lineage': 'ectoderm', 'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8559', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '011N', 'spikeinpool': 'Nist14'}, 'GSM765400': {'description': 'tier 3', 'datatype': 'RnaSeq', 'labexpid': 'LID8795', 'readtype': '2x76D', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '027C', 'spikeinpool': 'Nist14'}, 'GSM765401': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID16631', 'readtype': '2x76D', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '007WC', 'spikeinpool': 'Nist14'}, 'GSM765404': {'lineage': 'ectoderm', 'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8469', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '011C', 'spikeinpool': 'Nist14'}, 'GSM765405': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID16627', 'biomaterial_type': 'immortalized cell line', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'line': 'K562', 'readtype': '2x76D', 'biorep': '001WC', 'spikeinpool': 'Nist14'}, 'GSM1409236': {'line': 'OCI-LY1', 'type': 'DLBCL', 'genotype': 'siBCL6;etopic expression of WT BCL6'}, 'GSM1409237': {'line': 'OCI-LY1', 'type': 'DLBCL', 'genotype': 'siBCL6;etopic expression of WT BCL6'}, 'GSM1409235': {'line': 'OCI-LY1', 'type': 'DLBCL', 'genotype': 'siBCL6;etopic expression of WT BCL6'}, 'GSM1409238': {'line': 'OCI-LY1', 'type': 'DLBCL', 'genotype': 'siBCL6;etopic expression of BCL6 RD2 mutant'}, 'GSM1409239': {'line': 'OCI-LY1', 'type': 'DLBCL', 'genotype': 'siBCL6;etopic expression of BCL6 RD2 mutant'}, 'GSM900500': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900501': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900502': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900503': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900504': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM2124787': {'type': 'CD11b+ human glioblastoma-associated microglia/monocytes'}, 'GSM566259': {'gender': 'male', 'line': 'cell derived from metastatic melanoma', 'tissue': 'lymph node'}, 'GSM2124786': {'type': 'CD11b+ human glioblastoma-associated microglia/monocytes'}, 'GSM1203328': {'tissue': 'bone marrow'}, 'GSM1203329': {'tissue': 'blood'}, 'GSM1203320': {'tissue': 'blood'}, 'GSM1203321': {'tissue': 'blood'}, 'GSM1203322': {'tissue': 'bone marrow'}, 'GSM1203323': {'tissue': 'blood'}, 'GSM1203324': {'tissue': 'blood'}, 'GSM1203325': {'tissue': 'bone marrow'}, 'GSM1203326': {'tissue': 'blood'}, 'GSM1203327': {'tissue': 'blood'}, 'GSM2205679': {'line': 'Hep293TT fetal liver cancer cell line', 'tissue': 'liver'}, 'GSM2205678': {'line': 'Hep293TT fetal liver cancer cell line', 'tissue': 'liver'}, 'GSM2205677': {'line': 'HepG2 fetal liver cancer cell line', 'tissue': 'liver'}, 'GSM2205676': {'line': 'HepG2 fetal liver cancer cell line', 'tissue': 'liver'}, 'GSM2205675': {'line': 'HLF mesenchymal liver cancer cell line', 'tissue': 'liver'}, 'GSM2205674': {'line': 'HLF mesenchymal liver cancer cell line', 'tissue': 'liver'}, 'GSM2205673': {'line': 'HLE mesenchymal liver cancer cell line', 'tissue': 'liver'}, 'GSM2205672': {'line': 'HLE mesenchymal liver cancer cell line', 'tissue': 'liver'}, 'GSM2205671': {'line': 'Hep-3B epithelial liver cancer cell line', 'tissue': 'liver'}, 'GSM2205670': {'line': 'Hep-3B epithelial liver cancer cell line', 'tissue': 'liver'}, 'GSM758634': {'status': 'Control', 'tissue': 'brain region BA09 (frontal cortex)'}, 'GSM758636': {'status': 'Control', 'tissue': 'brain region BA41 (temporal cortex)'}, 'GSM2175086': {'line': 'K562'}, 'GSM2175087': {'line': 'K562'}, 'GSM2422333': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'lapatinib', 'dose': '2uM'}, 'GSM2422332': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'lapatinib', 'dose': '2uM'}, 'GSM2422331': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'trastuzumab', 'dose': '100ug/ml'}, 'GSM2422330': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'trastuzumab', 'dose': '100ug/ml'}, 'GSM2550197': {'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2422335': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'lapatinib', 'dose': '2uM'}, 'GSM2422334': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'lapatinib', 'dose': '2uM'}, 'GSM2175085': {'line': 'K562'}, 'GSM1295113': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '48 hours'}, 'GSM2550191': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550190': {'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2175080': {'line': 'K562'}, 'GSM1581108': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM2175081': {'line': 'K562'}, 'GSM2047493': {'well': 'G02', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047492': {'well': 'G01', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047491': {'well': 'F12', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047490': {'well': 'F11', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047497': {'well': 'G06', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047496': {'well': 'G05', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047495': {'well': 'G04', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047494': {'well': 'G03', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047499': {'well': 'G08', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047498': {'well': 'G07', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1326469': {'with': 'suberoylanilide hydroxamic acid (SAHA)', 'type': 'Primary Human Aortic Endothelial Cells (HAECs)', 'passage': 'Passage 4-6'}, 'GSM1642830': {'line': 'Panc.04.03', 'type': 'Pancreatic adenocarcinoma epithelial cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1969400': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM1969401': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM1969402': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Internal trunk'}, 'GSM1969403': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969404': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1969405': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Trunk wall'}, 'GSM1969406': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM1969407': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM1969408': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1969409': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM2451289': {'compartment': 'Stroma', 'id': 'CUMC_022', 'library': 'NuGEN'}, 'GSM2451288': {'compartment': 'Epithelium', 'id': 'CUMC_022', 'library': 'NuGEN'}, 'GSM2915401': {'antibody': 'none', 'type': 'MCF-7 cells'}, 'GSM2451281': {'compartment': 'Stroma', 'id': 'CUMC_018', 'library': 'NuGEN'}, 'GSM2451280': {'compartment': 'Epithelium', 'id': 'CUMC_018', 'library': 'NuGEN'}, 'GSM2451283': {'compartment': 'Stroma', 'id': 'CUMC_019', 'library': 'NuGEN'}, 'GSM2451282': {'compartment': 'Epithelium', 'id': 'CUMC_019', 'library': 'NuGEN'}, 'GSM2451285': {'compartment': 'Stroma', 'id': 'CUMC_020', 'library': 'NuGEN'}, 'GSM2451284': {'compartment': 'Epithelium', 'id': 'CUMC_020', 'library': 'NuGEN'}, 'GSM2451287': {'compartment': 'Stroma', 'id': 'CUMC_021', 'library': 'NuGEN'}, 'GSM2451286': {'compartment': 'Epithelium', 'id': 'CUMC_021', 'library': 'NuGEN'}, 'GSM1357251': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357256': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357257': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357254': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357255': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM2390862': {'disease': 'Healthy Control'}, 'GSM2746566': {'with': 'Tfcp2l1 knockdown lentivirus', 'line': 'HES2', 'type': 'human embryonic stem cells'}, 'GSM2573747': {'antibody': 'H3K27ac', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573746': {'antibody': 'H3K27ac', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2258983': {'line': 'HEK293', 'condition': 'scrambled control'}, 'GSM2100589': {'type': 'human cervical cancer cell line'}, 'GSM2100588': {'type': 'human cervical cancer cell line'}, 'GSM2573745': {'antibody': 'H3K27ac', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2258982': {'line': 'HEK293', 'condition': 'scrambled control'}, 'GSM2390861': {'disease': 'Healthy Control'}, 'GSM2100587': {'type': 'human cervical cancer cell line'}, 'GSM1682262': {'line': 'K562', 'antibody': 'AGO2'}, 'GSM1682263': {'line': 'K562', 'antibody': 'AGO2'}, 'GSM1682261': {'line': 'K562', 'antibody': 'AGO2'}, 'GSM1682266': {'line': 'HEK293T', 'lentivirus': 'shMock'}, 'GSM1682267': {'line': 'HEK293T', 'lentivirus': 'shMock'}, 'GSM1682264': {'line': 'K562', 'antibody': 'AGO2'}, 'GSM1682265': {'line': 'K562', 'antibody': 'AGO2'}, 'GSM2390888': {'disease': 'Healthy Control'}, 'GSM1682268': {'line': 'HEK293T', 'lentivirus': 'shAGO2'}, 'GSM1682269': {'line': 'HEK293T', 'lentivirus': 'shAGO2'}, 'GSM2178725': {'ir': '2.11864406779661', 'weight': 'obese', 'gender': 'male', 'age': '60', 'bmi': '32.2', 'disease': 't2d', 'l': '0.16', 'h': '0.5', 'id': '96a'}, 'GSM2178726': {'ir': '2.11864406779661', 'weight': 'obese', 'gender': 'male', 'age': '60', 'bmi': '32.2', 'disease': 't2d', 'l': '0.16', 'h': '1', 'id': '96a'}, 'GSM2178727': {'ir': '2.11864406779661', 'weight': 'obese', 'gender': 'male', 'age': '60', 'bmi': '32.2', 'disease': 't2d', 'l': '0.16', 'h': '2', 'id': '96a'}, 'GSM2178728': {'ir': '0.504286434694907', 'weight': 'non-obese', 'gender': 'male', 'age': '55', 'bmi': '23.7', 'disease': 'ngt', 'l': '0.06', 'h': '1', 'id': '34a'}, 'GSM2178729': {'ir': '2.29885057471264', 'weight': 'obese', 'gender': 'male', 'age': '51', 'bmi': '33.9', 'disease': 't2d', 'l': '0.09', 'h': '0', 'id': '41a'}, 'GSM2840425': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840424': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840423': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840422': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840421': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840420': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2170557': {'stage': 'Endothelial cells'}, 'GSM2170556': {'stage': 'Endothelial cells'}, 'GSM2170555': {'stage': 'Endothelial cells'}, 'GSM2170554': {'stage': 'Endothelial cells'}, 'GSM2170553': {'stage': 'Endothelial cells'}, 'GSM2170552': {'stage': 'Endothelial cells'}, 'GSM2170551': {'stage': 'Endothelial cells'}, 'GSM2170550': {'stage': 'Endothelial cells'}, 'GSM2081255': {'type': 'iPS derived endothelial cells from CDI', 'condition': '3D culture of endothelial cells in 50% MMP degradable PEG-NB hydrogel, day1', 'passage': '3'}, 'GSM2170559': {'stage': 'Endothelial cells'}, 'GSM2170558': {'stage': 'Endothelial cells'}, 'GSM2550449': {'donor': 'A', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550448': {'donor': 'A', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM1409351': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Sensitive'}, 'GSM1409350': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM2632509': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632508': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632503': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632502': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632501': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632500': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632507': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632506': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632505': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2360278': {'type': 'Adult microglia', 'treatment': 'None'}, 'GSM2142480': {'gender': 'female', 'age': '65', 'who': '1', 'dead': '1', 'date': '2011-05-31', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142481': {'gender': 'female', 'age': '56', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '5', 'smoking': '3'}, 'GSM1040787': {'line': 'HeLa', 'treatment': 'control knockdown'}, 'GSM2142483': {'gender': 'female', 'age': '76', 'who': '0', 'dead': '1', 'date': '2008-03-26', 'histology': '2', 'tnm': '3', 'smoking': '1'}, 'GSM2374779': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374778': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2142486': {'gender': 'male', 'age': '66', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '3', 'smoking': '2'}, 'GSM2142487': {'gender': 'male', 'age': '65', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '3', 'tnm': '2', 'smoking': '2'}, 'GSM2374775': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374774': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374777': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374776': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374771': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374770': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374773': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374772': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM1543664': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'E2 treated'}, 'GSM1543665': {'media': 'SGBS pre-adipocytes were grown in DMEM/F12 medium supplemented with 10% fetal calf serum (FCS), 1.7 mM panthotenat, 3.3 mM biotin and 1% penicillin/streptomycin', 'line': 'SGBS', 'passages': '42-46', 'type': 'pre-adipocyte', 'days': '0'}, 'GSM1543666': {'media': 'DMEM/F12 supplemented with transferrin (0.01 mg/ml), insulin (20nM), cortisol (100nM), and triiodothyronine (T3, 0.2 nM). For the initial four days, the differentiation medium was additionally supplemented with dexamethasone (25nM), IBMX (250 μM) and rosiglitazone (2 μM).', 'line': 'SGBS', 'passages': '42-46', 'type': 'adipocyte', 'days': '14'}, 'GSM1543667': {'media': 'DMEM/F12 supplemented with transferrin (0.01 mg/ml), insulin (20nM), cortisol (100nM), and triiodothyronine (T3, 0.2 nM). For the initial four days, the differentiation medium was additionally supplemented with dexamethasone (25nM), IBMX (250 μM) and rosiglitazone (2 μM).', 'line': 'SGBS', 'passages': '42-46', 'type': 'adipocyte', 'days': '28'}, 'GSM1543660': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'E2 treated'}, 'GSM1543661': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'Untreated'}, 'GSM1543662': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'Untreated'}, 'GSM1543663': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'E2 treated'}, 'GSM1543668': {'media': 'SW872 cells were cultured in DMEM/F12 medium enriched with 8% FCS, 15mM Hepes and 1% penicillin/streptomycin', 'line': 'SW872', 'passages': '15-20', 'type': 'pre-adipocyte', 'days': '0'}, 'GSM2360277': {'type': 'Adult microglia', 'treatment': 'None'}, 'GSM2469559': {'status': 'resistant', 'gender': 'male', 'individual': 'r11', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2712771': {'line': 'HCT116', 'antibody': 'RNAPII (Santa Cruz, sc-899, lot K0111)', 'treatment': 'largazole 75nM', 'disease': 'colorectal carcinoma'}, 'GSM2712770': {'line': 'HCT116', 'antibody': 'RNAPII (Santa Cruz, sc-899, lot K0111)', 'treatment': 'DMSO', 'disease': 'colorectal carcinoma'}, 'GSM2712773': {'line': 'HCT116', 'treatment': 'DMSO', 'disease': 'colorectal carcinoma'}, 'GSM2712772': {'line': 'HCT116', 'antibody': 'RNAPII (Santa Cruz, sc-899, lot K0111)', 'treatment': 'largazole 300nM', 'disease': 'colorectal carcinoma'}, 'GSM2186945': {'sensitivity': 'sensitive', 'type': '3D culture'}, 'GSM2712774': {'line': 'HCT116', 'treatment': 'largazole 4.68nM', 'disease': 'colorectal carcinoma'}, 'GSM2712777': {'line': 'HCT116', 'treatment': 'largazole 30nM', 'disease': 'colorectal carcinoma'}, 'GSM2712776': {'line': 'HCT116', 'treatment': 'largazole 18.75nM', 'disease': 'colorectal carcinoma'}, 'GSM2712779': {'line': 'HCT116', 'treatment': 'largazole 75nM', 'disease': 'colorectal carcinoma'}, 'GSM2712778': {'line': 'HCT116', 'treatment': 'largazole 37.5nM', 'disease': 'colorectal carcinoma'}, 'GSM1914587': {'type': 'cerebral organoid'}, 'GSM1914586': {'type': 'cerebral organoid'}, 'GSM1914581': {'type': 'cerebral organoid'}, 'GSM1914580': {'type': 'cerebral organoid'}, 'GSM1914583': {'type': 'cerebral organoid'}, 'GSM1914582': {'type': 'cerebral organoid'}, 'GSM2303261': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303260': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303263': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACJV399'}, 'GSM2303262': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303265': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303264': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303267': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303266': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303269': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACJV399'}, 'GSM2303268': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2374199': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374198': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374191': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374190': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374193': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374192': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374195': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374194': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374197': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374196': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2458941': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.58'}, 'GSM2458940': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.58'}, 'GSM2458943': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.00'}, 'GSM2458942': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.00'}, 'GSM2458945': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '7.25'}, 'GSM2458944': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.17'}, 'GSM2458947': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.08'}, 'GSM2458946': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.92'}, 'GSM2458949': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.00'}, 'GSM2458948': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.33'}, 'GSM3301486': {'gender': 'unknown', 'type': 'pericyte (primary cell)', 'protocol': 'Ctrl'}, 'GSM3301487': {'gender': 'unknown', 'type': 'pericyte (primary cell)', 'protocol': 'Ctrl'}, 'GSM2311945': {'culture': '12', 'line': 'DCX+'}, 'GSM2311944': {'culture': '12', 'line': 'DCX+'}, 'GSM2311943': {'culture': '12', 'line': 'DCX+'}, 'GSM2311942': {'culture': '12', 'line': 'DCX+'}, 'GSM2287668': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287669': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287666': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287667': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287664': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287665': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287662': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287663': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2311949': {'culture': '12', 'line': 'DCX+'}, 'GSM2311948': {'culture': '12', 'line': 'DCX+'}, 'GSM2562590': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562591': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562592': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562593': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562594': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2459099': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2562596': {'gender': 'male', 'race': 'Caucasian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562597': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562598': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562599': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1133664': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM2543780': {'library_id': 'lib5924', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543781': {'library_id': 'lib5925', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2306989': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2543783': {'library_id': 'lib5927', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543784': {'library_id': 'lib5928', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.128', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543785': {'library_id': 'lib5929', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.128', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543786': {'library_id': 'lib7888', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543787': {'library_id': 'lib7889', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2306983': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306982': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306981': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306980': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306987': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306986': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306985': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306984': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2147948': {'patient': 'IL2', 'age': 'missing', 'Sex': 'missing', 'prognosis': 'Healthy', 'tissue': 'Ile', 'diagnosis': 'Normal', 'biopsytime': 'NA', 'ethnicity': 'Caucasian'}, 'GSM2147942': {'patient': 'P601', 'age': 'missing', 'Sex': 'male', 'prognosis': 'FAP', 'tissue': 'Prepouch ileum', 'diagnosis': 'FAP', 'biopsytime': '>12mo', 'ethnicity': 'Caucasian'}, 'GSM2147943': {'patient': 'P601', 'age': 'missing', 'Sex': 'male', 'prognosis': 'FAP', 'tissue': 'Ileal pouch', 'diagnosis': 'FAP', 'biopsytime': '>12mo', 'ethnicity': 'Caucasian'}, 'GSM2147940': {'patient': 'P701', 'age': 'missing', 'Sex': 'missing', 'prognosis': 'FAP', 'tissue': 'Prepouch ileum', 'diagnosis': 'FAP', 'biopsytime': '>12mo', 'ethnicity': 'Caucasian'}, 'GSM2147941': {'patient': 'P701', 'age': 'missing', 'Sex': 'missing', 'prognosis': 'FAP', 'tissue': 'Ileal pouch', 'diagnosis': 'FAP', 'biopsytime': '>12mo', 'ethnicity': 'Caucasian'}, 'GSM2147946': {'patient': 'P602', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2932981': {'pucai': '30', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '10'}, 'GSM2147944': {'patient': 'P502', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147945': {'patient': 'P602', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2287088': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287089': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287082': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287083': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287080': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287081': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287086': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287087': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287084': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287085': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2664333': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664332': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664331': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664330': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664337': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664336': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664335': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664334': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664339': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664338': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2732863': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2732862': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732861': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM1248732': {'transfection': 'miR-155 duplex', 'time': '32 hours'}, 'GSM1248733': {'transfection': 'miR-155 duplex', 'time': '32 hours'}, 'GSM1248730': {'transfection': 'miR-1 duplex', 'time': '32 hours'}, 'GSM1248731': {'transfection': 'miR-155 duplex', 'time': '32 hours'}, 'GSM1248736': {'transfection': 'mock', 'time': '32 hours'}, 'GSM1248734': {'transfection': 'mock', 'time': '32 hours'}, 'GSM1248735': {'transfection': 'mock', 'time': '32 hours'}, 'GSM3172778': {'status': 'Amyotrophic Lateral Sclerosis', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM3172779': {'status': 'Amyotrophic Lateral Sclerosis', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM2144413': {'line': 'RKO', 'type': 'Colorectal carcinoma-derived cells'}, 'GSM2144412': {'line': 'HCT116', 'type': 'Colorectal carcinoma-derived cells'}, 'GSM2144414': {'line': 'HKE3', 'type': 'Colorectal carcinoma-derived cells'}, 'GSM2732864': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2092539': {'repertoire': 'TCR-beta', 'individual': 'patient 7 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM3172777': {'status': 'Amyotrophic Lateral Sclerosis', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM1505439': {'line': 'HeLa S3', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'none'}, 'GSM1505438': {'line': 'HeLa S3', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'none'}, 'GSM2309458': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '1', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2309459': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '2', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2451071': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2309450': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309451': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309452': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '1', 'treatment': 'DRB', 'dose': '100 uM'}, 'GSM2309453': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '2', 'treatment': 'DRB', 'dose': '100 uM'}, 'GSM2309454': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '1', 'treatment': 'DRB', 'dose': '100 uM'}, 'GSM2309455': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '2', 'treatment': 'DRB', 'dose': '100 uM'}, 'GSM2309456': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '1', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2309457': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '2', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM1588919': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588918': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588917': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588916': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM1588915': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588914': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588913': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM1588912': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588911': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM1588910': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM2123939': {}, 'GSM2123938': {}, 'GSM2123935': {}, 'GSM2123934': {}, 'GSM2123937': {}, 'GSM2123936': {}, 'GSM2123931': {}, 'GSM2123930': {}, 'GSM2123933': {}, 'GSM2123932': {}, 'GSM2392049': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392048': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392047': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392046': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392045': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392044': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392043': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392042': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392041': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392040': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2328811': {'type': 'dermal juvenile lymph-vascular endothelial cells'}, 'GSM2328810': {'type': 'dermal juvenile lymph-vascular endothelial cells'}, 'GSM2420661': {'line': 'HEK293T'}, 'GSM2420660': {'line': 'HEK293T'}, 'GSM2111039': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 2', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111038': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 2', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111035': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 1', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111034': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 1', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111037': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 1', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111036': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 1', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111031': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 1', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111030': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 1', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111033': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 1', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111032': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 1', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2575273': {'line': 'WM989', 'type': 'melanoma', 'condition': 'neg', 'drug': '4 weeks'}, 'GSM2575272': {'line': 'WM989', 'type': 'melanoma', 'condition': 'mix', 'drug': '4 weeks'}, 'GSM2575275': {'line': 'WM989', 'type': 'melanoma', 'condition': 'mix', 'drug': '4 weeks'}, 'GSM1159895': {'with': 'siCTL', 'type': 'LNCaP cells'}, 'GSM1159896': {'with': '100 nM DHT', 'type': 'LNCaP cells'}, 'GSM1159897': {'with': 'siPYGO2', 'type': 'LNCaP cells'}, 'GSM2575279': {'line': 'WM989', 'type': 'melanoma', 'condition': 'mix', 'drug': 'no drug'}, 'GSM1159899': {'with': 'siCTL', 'type': 'LNCaP cells'}, 'GSM2420664': {'line': 'HEK293T'}, 'GSM2312083': {'culture': '12', 'line': 'DCX-'}, 'GSM2312082': {'culture': '12', 'line': 'DCX-'}, 'GSM2312081': {'culture': '12', 'line': 'DCX-'}, 'GSM2312080': {'culture': '12', 'line': 'DCX+'}, 'GSM2312087': {'culture': '12', 'line': 'DCX-'}, 'GSM2312086': {'culture': '12', 'line': 'DCX-'}, 'GSM2312085': {'culture': '12', 'line': 'DCX-'}, 'GSM2312084': {'culture': '12', 'line': 'DCX-'}, 'GSM2312089': {'culture': '12', 'line': 'DCX-'}, 'GSM2312088': {'culture': '12', 'line': 'DCX-'}, 'GSM1620558': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620559': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1957307': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1620550': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620551': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620552': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620553': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620554': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620555': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620556': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620557': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2815788': {'line': 'H9'}, 'GSM2815789': {'line': 'H9'}, 'GSM1369219': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1369218': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2815780': {'line': 'H9'}, 'GSM1369216': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1369215': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2815783': {'line': 'H9'}, 'GSM1369213': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2815785': {'line': 'H9'}, 'GSM1369211': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2815787': {'line': 'H9'}, 'GSM2433999': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433998': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433991': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433990': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433993': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433992': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433995': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433994': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433997': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433996': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2109052': {'variation': 'TRA-1-81 positive portion in parental line'}, 'GSM2109053': {'variation': 'TRA-1-81 negative portion in parental line'}, 'GSM2109050': {'variation': 'parental line'}, 'GSM2109051': {'variation': 'gemcitabine-resistant derivative'}, 'GSM2109054': {'variation': 'TRA-1-81 positive portion in parental line'}, 'GSM2109055': {'variation': 'TRA-1-81 negative portion in parental line'}, 'GSM1484318': {'type': 'low passage primary melanoma cultures'}, 'GSM1484319': {'type': 'low passage primary melanoma cultures'}, 'GSM2048636': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048637': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048634': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048635': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048632': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM1012164': {'donor': 'healthy human donor 10', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012162': {'donor': 'healthy human donor 9', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012163': {'donor': 'healthy human donor 10', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012160': {'donor': 'healthy human donor 8', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012161': {'donor': 'healthy human donor 9', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM2048630': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048631': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2293577': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '2n', 'RNAi': 'Random', 'sample_id': '11'}, 'GSM2293576': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '2n', 'RNAi': 'Random', 'sample_id': '10'}, 'GSM2293575': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '3', 'drug': 'ZM447439'}, 'GSM2293574': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '3', 'drug': 'ZM447439'}, 'GSM2293573': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '2', 'drug': 'ZM447439'}, 'GSM2293572': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '2', 'drug': 'ZM447439'}, 'GSM2638028': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2293570': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '1', 'drug': 'ZM447439'}, 'GSM2638026': {'with': 'IL-2 and IL-7', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638027': {'with': 'IL-12 and IL-15', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638024': {'with': 'IL-12 and IL-15', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638025': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638022': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638023': {'with': 'IL-2 and IL-7', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638020': {'with': 'IL-2 and IL-7', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2293578': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '2n', 'RNAi': 'Random', 'sample_id': '12'}, 'GSM2309843': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Nephritis,@2 other drugs', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '55.37'}, 'GSM2309842': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Lupus (SLE)', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '38.04'}, 'GSM2309841': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Lupus (SLE)', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '38.04'}, 'GSM2193070': {'sirna': 'PAX8 siRNA 405', 'line': 'FT246', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15405, Ambion'}, 'GSM2309847': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '58.16'}, 'GSM2309846': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Nephritis,@2 other drugs', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '55.37'}, 'GSM2309845': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Nephritis,@2 other drugs', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '55.37'}, 'GSM2309844': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Nephritis,@2 other drugs', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '55.37'}, 'GSM2309849': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '51.47'}, 'GSM2309848': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '58.16'}, 'GSM2997959': {'type': 'Immortalized normal ovarian fibroblast', 'treatment': 'none'}, 'GSM2889078': {'tissue': 'pancreatic islets'}, 'GSM2649844': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649845': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649846': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649847': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649840': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649841': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649842': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649843': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649848': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649849': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2464647': {'with': 'scrambled control shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '1', 'populatione': 'CD45+GFP+CD7+CD1a+ T-cell precursors'}, 'GSM2464646': {'with': 'scrambled control shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '1', 'populatione': 'CD45+GFP+CD7+CD1a- T-cell precursors'}, 'GSM2100015': {'rin': '10', 'Sex': 'Female', 'sspg': '110', 'age': '70', 'bmi': '27.5', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '31915', 'dilution': '02:40:00 AM', 'passage': '13', 'indiv': '193', 'method': 'Life-Tech GITC'}, 'GSM1872948': {'10': 'Non-remitter', 'name': 'HF-35116', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872949': {'10': 'Non-remitter', 'name': 'HF-37412', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872946': {'10': 'Non-remitter', 'name': 'HF-35105', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872947': {'10': 'Non-remitter', 'name': 'HF-35400', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872944': {'10': 'Non-remitter', 'name': 'HF-35357', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2643290': {'gender': 'male', 'line': 'LNCaP-shAR/pATK human prostate tumor cell line', 'type': 'prostate cancer', 'media': 'pheno-red free RPMI-1640 + 5% CSS (Charcoal Dextran stripped FBS) (Gemini) + 1% PenStrep'}, 'GSM1872942': {'10': 'Non-remitter', 'name': 'HF-34751', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872943': {'10': 'N/A', 'name': 'HF-37275', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872940': {'10': 'Non-remitter', 'name': 'HF-37593', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'NOS'}, 'GSM1872941': {'10': 'Remitter', 'name': 'HF-35415', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2915859': {'transfection': 'ATOH1/POU4F3/GFI1', 'type': 'dermal fibroblasts'}, 'GSM2100016': {'rin': '10', 'Sex': 'Female', 'sspg': '110', 'age': '70', 'bmi': '27.5', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '31915', 'dilution': '02:40:00 AM', 'passage': '13', 'indiv': '193', 'method': 'Life-Tech GITC'}, 'GSM1521783': {'type': 'neural precursor cell derived neuronal like cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521782': {'type': 'neural precursor cell derived neuronal like cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521781': {'type': 'neural precursor cell derived neuronal like cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521780': {'type': 'neural precursor cell derived neuronal like cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521786': {'type': 'neural precursor cell derived astrocyte like cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521785': {'type': 'neural precursor cell derived astrocyte like cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521784': {'type': 'neural precursor cell derived astrocyte like cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2100013': {'rin': '6.6', 'Sex': 'Female', 'sspg': '281', 'age': '63', 'bmi': '24.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '182', 'method': 'Qiagen:trizol'}, 'GSM2100012': {'rin': '8', 'Sex': 'Female', 'sspg': '281', 'age': '63', 'bmi': '24.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '182', 'method': 'Qiagen:trizol'}, 'GSM2915858': {'transfection': 'ATOH1/POU4F3/GFI1', 'type': 'dermal fibroblasts'}, 'GSM1401333': {'rin': '9.09', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-12-18'}, 'GSM2093093': {'bin': '30', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1401331': {'rin': '7.5', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-12-04'}, 'GSM2093091': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1401337': {'rin': '3.79', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-02-05'}, 'GSM2840192': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840191': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1401334': {'rin': '8.3', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-01-15'}, 'GSM1946195': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19152', 'for': '60min'}, 'GSM1946194': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19152', 'for': '60min'}, 'GSM1946197': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19152', 'for': '60min'}, 'GSM1946196': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19152', 'for': '60min'}, 'GSM1946191': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19152', 'for': '30min'}, 'GSM1946190': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19152', 'for': '30min'}, 'GSM1946193': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19152', 'for': '30min'}, 'GSM1946192': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19152', 'for': '30min'}, 'GSM2358140': {'line': 'MS1', 'type': 'treated', 'timepoint': '14'}, 'GSM2358141': {'line': 'MS1', 'type': 'treated', 'timepoint': '15'}, 'GSM2358142': {'line': 'MS1', 'type': 'treated', 'timepoint': '16'}, 'GSM2358143': {'line': 'MS1', 'type': 'treated', 'timepoint': '17'}, 'GSM2358144': {'line': 'MS1', 'type': 'treated', 'timepoint': '18'}, 'GSM2358145': {'line': 'MS1', 'type': 'treated', 'timepoint': '19'}, 'GSM2358146': {'line': 'MS1', 'type': 'treated', 'timepoint': '20'}, 'GSM2358147': {'line': 'MS1', 'type': 'treated', 'timepoint': '21'}, 'GSM2358148': {'line': 'MS1', 'type': 'treated', 'timepoint': '22'}, 'GSM2358149': {'line': 'MS1', 'type': 'treated', 'timepoint': '23'}, 'GSM2455920': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455921': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455922': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1937844': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1980078': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2455925': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455926': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455927': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455928': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455929': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1980077': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1937849': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1937848': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1612796': {'line': 'CUTLL1', 'type': 'leukemia'}, 'GSM2242937': {'line': 'A375', 'replicate': '4'}, 'GSM3417921': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'NT LNA', 'time': '48', 'type': 'HFF'}, 'GSM2242936': {'line': 'A375', 'replicate': '4'}, 'GSM1612793': {'line': 'CUTLL1', 'type': 'leukemia'}, 'GSM2889071': {'tissue': 'pancreatic islets'}, 'GSM1612792': {'line': 'CUTLL1', 'type': 'leukemia'}, 'GSM1612791': {'line': 'CUTLL1', 'type': 'leukemia'}, 'GSM2501579': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2501578': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2055960': {'line': 'WI-38', 'passage': 'PDL20'}, 'GSM2055961': {'line': 'WI-38', 'passage': 'PDL52'}, 'GSM2501577': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2501576': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2501571': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2501573': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2501572': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2671281': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2281045': {'tissue': 'Atypical Fibroxanthoma Tumor'}, 'GSM2281046': {'tissue': 'Atypical Fibroxanthoma Tumor'}, 'GSM1833439': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '2 hours'}, 'GSM1833438': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '2 hours'}, 'GSM2084555': {'line': 'H1299', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2281047': {'tissue': 'Atypical Fibroxanthoma Tumor'}, 'GSM1395454': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1686548': {'index': 'N10', 'tissue': 'blood', 'type': 'Normal CD34+ HSPCs'}, 'GSM1686547': {'index': 'N9', 'tissue': 'blood', 'type': 'Normal CD34+ HSPCs'}, 'GSM1686546': {'index': 'N8', 'tissue': 'blood', 'type': 'Normal CD34+ HSPCs'}, 'GSM1833433': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': 'Unactivated'}, 'GSM1686544': {'index': 'AML26', 'tissue': 'blood', 'type': 'Leukemic blasts', 'disease': 'AML', 'subtype': 'M1'}, 'GSM1686543': {'index': 'AML24', 'tissue': 'blood', 'type': 'Leukemic blasts', 'disease': 'AML', 'subtype': 'M1'}, 'GSM1686542': {'index': 'AML2', 'tissue': 'blood', 'type': 'Leukemic blasts', 'disease': 'AML', 'subtype': 'M1'}, 'GSM1833437': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '1 hour'}, 'GSM1686540': {'index': 'AML2', 'pt': '9', 'disease': 'AML', 'subtype': 'M1', 'tissue': 'blood', 'type': 'Leukemic blasts'}, 'GSM2281042': {'tissue': 'Atypical Fibroxanthoma Tumor'}, 'GSM2281043': {'tissue': 'Atypical Fibroxanthoma Tumor'}, 'GSM2359231': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2359230': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2359233': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM / 25 nM', 'drug': 'Lapatinib / THZ1'}, 'GSM2359232': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2359235': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM / 25 nM', 'drug': 'Lapatinib / THZ1'}, 'GSM2359234': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM / 25 nM', 'drug': 'Lapatinib / THZ1'}, 'GSM2359237': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2671288': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2359239': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM', 'drug': 'Lapatinib'}, 'GSM2359238': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2183719': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'GTGGCC'}, 'GSM2183718': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'ACTTGA'}, 'GSM2183717': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'TTAGGC'}, 'GSM2183716': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'ATCACG'}, 'GSM2183715': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'ATTCCT'}, 'GSM2183714': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'ACTGAT'}, 'GSM2183713': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'GAGTGG'}, 'GSM2889075': {'tissue': 'pancreatic islets'}, 'GSM3579139': {'line': 'U251', 'type': 'glioma', 'genotype': 'HOTAIR regulatory element KO'}, 'GSM3579138': {'line': 'U251', 'type': 'glioma', 'genotype': 'HOTAIR regulatory element KO'}, 'GSM2889074': {'tissue': 'pancreatic islets'}, 'GSM2200890': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1166098': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166099': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166096': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166097': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166094': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2732473': {'treatment': 'E7107 treated'}, 'GSM1166092': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM2732475': {'treatment': 'E7107 treated'}, 'GSM1166090': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166091': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM2393545': {'type': 'long RNA', 'line': 'BJ', 'replicate': '1', 'treatment': 'RNY5 2 hr'}, 'GSM2393544': {'type': 'long RNA', 'line': 'BJ', 'replicate': '2', 'treatment': 'RNY5 24 hr'}, 'GSM2393547': {'type': 'long RNA', 'line': 'BJ', 'replicate': '1', 'treatment': 'RNY5 6 hr'}, 'GSM2393546': {'type': 'long RNA', 'line': 'BJ', 'replicate': '2', 'treatment': 'RNY5 2 hr'}, 'GSM2393541': {'cell': 'exosome', 'type': 'long RNA', 'line': 'BJ', 'replicate': '1', 'treatment': 'Treatment 2 hr'}, 'GSM2393540': {'cell': 'exosome', 'type': 'long RNA', 'line': 'BJ', 'replicate': '2', 'treatment': 'Treatment 24 hr'}, 'GSM2393543': {'type': 'long RNA', 'line': 'BJ', 'replicate': '1', 'treatment': 'RNY5 24 hr'}, 'GSM2393542': {'cell': 'exosome', 'type': 'long RNA', 'line': 'BJ', 'replicate': '2', 'treatment': 'Treatment 2 hr'}, 'GSM2393549': {'cell': 'exosome', 'type': 'long RNA', 'line': 'HUVEC', 'replicate': '1', 'treatment': 'untreated'}, 'GSM2393548': {'type': 'long RNA', 'line': 'BJ', 'replicate': '2', 'treatment': 'RNY5 6 hr'}, 'GSM2085604': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085605': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085606': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085607': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085600': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085601': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1444178': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 6-7 h p.i.'}, 'GSM2085603': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1444176': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 4-5 h p.i.'}, 'GSM1444177': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 5-6 h p.i.'}, 'GSM1444174': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 2-3 h p.i.'}, 'GSM1444175': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 3-4 h p.i.'}, 'GSM2085608': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085609': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1444170': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '8 h p.i.'}, 'GSM1444171': {'reagent': 'mock', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU prior to infection'}, 'GSM2360006': {'induction': 'Osteoblast differentiation', 'antibody': 'RNA-Polymerase II (N-20, santa cruz)', 'treatment': 'siCHD1'}, 'GSM2360007': {'induction': 'Osteoblast differentiation', 'antibody': 'H2Bub1 D11 (5546, Cell Signaling)', 'treatment': 'siCon'}, 'GSM2360004': {'induction': 'Osteoblast differentiation', 'antibody': 'H3.3 (MerckMilipore, 09-838)', 'treatment': 'siCHD1'}, 'GSM2360005': {'induction': 'Osteoblast differentiation', 'antibody': 'RNA-Polymerase II (N-20, santa cruz)', 'treatment': 'siCon'}, 'GSM2360002': {'induction': 'Osteoblast differentiation', 'antibody': 'Gévry et al. 2009', 'treatment': 'siCHD1'}, 'GSM2360003': {'induction': 'Osteoblast differentiation', 'antibody': 'H3.3 (MerckMilipore, 09-838)', 'treatment': 'siCon'}, 'GSM2360000': {'induction': 'Osteoblast differentiation', 'antibody': 'H3K27ac (Diagenode , pAB-196)'}, 'GSM2360001': {'induction': 'Osteoblast differentiation', 'antibody': 'Gévry et al. 2009', 'treatment': 'siCon'}, 'GSM1971015': {'line': 'HCT116', 'type': 'colon cancer cells', 'agent': 'H2O2'}, 'GSM2360008': {'induction': 'Osteoblast differentiation', 'antibody': 'H2Bub1 D11 (5546, Cell Signaling)', 'treatment': 'siCHD1'}, 'GSM2360009': {'induction': 'Osteoblast differentiation', 'treatment': 'siCon'}, 'GSM2786547': {'line': 'MEC1'}, 'GSM2243709': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243708': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2411950': {'line': '16126C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2243705': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243704': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243707': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243706': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243701': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243700': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243703': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243702': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2786544': {'line': 'KARPAS1718'}, 'GSM2786543': {'line': 'JVM2'}, 'GSM2786542': {'line': 'JEKO1'}, 'GSM2666009': {'age': 'Day 130', 'well': 'A12', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2666008': {'age': 'Day 130', 'well': 'H1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2786541': {'line': 'HC_1'}, 'GSM2666003': {'age': 'Day 130', 'well': 'F7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666002': {'age': 'Day 130', 'well': 'C12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666001': {'age': 'Day 130', 'well': 'G9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2786540': {'line': 'HBL1'}, 'GSM2666007': {'age': 'Day 130', 'well': 'E12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666006': {'age': 'Day 130', 'well': 'F8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666005': {'age': 'Day 130', 'well': 'C6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2666004': {'age': 'Day 130', 'well': 'C1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1395823': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395822': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395821': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395820': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395827': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395826': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395825': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395824': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395829': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395828': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1647928': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1647929': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1564317': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '0', 'replicate': '2', 'hcc827': '100'}, 'GSM1564316': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '100', 'replicate': '2', 'hcc827': '0'}, 'GSM2816239': {'line': 'H9'}, 'GSM1564315': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '75', 'replicate': '2', 'hcc827': '25'}, 'GSM2049914': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM2049916': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049917': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049910': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM2049912': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM1647922': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM2049918': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM2390678': {'tissue': 'Undiff T-cell iPS', 'subject': 'SU223'}, 'GSM1564312': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '0', 'replicate': '2', 'hcc827': '100'}, 'GSM2390679': {'tissue': 'Diff normal ES line', 'subject': 'H7 cell line'}, 'GSM2170452': {'stage': 'Definitive endoderm 1'}, 'GSM2170453': {'stage': 'Definitive endoderm 1'}, 'GSM2170450': {'stage': 'Definitive endoderm 1'}, 'GSM2170451': {'stage': 'Definitive endoderm 1'}, 'GSM2170456': {'stage': 'Definitive endoderm 1'}, 'GSM2170457': {'stage': 'Definitive endoderm 1'}, 'GSM2170454': {'stage': 'Definitive endoderm 1'}, 'GSM2170455': {'stage': 'Definitive endoderm 1'}, 'GSM1659543': {'source': 'normal colon', 'subtype': 'Colon Normal Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM2170458': {'stage': 'Definitive endoderm 1'}, 'GSM2093123': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1659547': {'source': 'colon tumor', 'subtype': 'Colon Tumor Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM1659546': {'source': 'colon tumor', 'subtype': 'Colon Tumor Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM1659545': {'source': 'normal colon', 'subtype': 'Colon Normal Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM1659544': {'source': 'normal colon', 'subtype': 'Colon Normal Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM3594338': {'cluster': '5', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594339': {'cluster': '4', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594334': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594335': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594336': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594337': {'cluster': '2', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594330': {'cluster': '2', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594331': {'cluster': '1', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594332': {'cluster': '2', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594333': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM1965101': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965100': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965103': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965102': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965105': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965104': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965107': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965106': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965109': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965108': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2630208': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630209': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2390674': {'tissue': 'Undiff T-cell iPS', 'subject': 'SU042'}, 'GSM2630202': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630203': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630200': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630201': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630206': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630207': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630204': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630205': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM1276873': {'score': '8.8', 'sequence': 'ACAGTG', 'targeted': 'SYNCRIP', 'number': '5', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1836595': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM2100626': {'age': '57', 'tissue': 'brain BA4', 'diagnosis': 'HD grade 3'}, 'GSM2100627': {'age': '52', 'tissue': 'brain BA4', 'diagnosis': 'HD grade 3'}, 'GSM2100624': {'age': '56', 'tissue': 'brain BA4', 'diagnosis': 'HD grade 2'}, 'GSM2100625': {'age': '51', 'tissue': 'brain BA4', 'diagnosis': 'HD grade 4'}, 'GSM2100622': {'age': '44', 'tissue': 'brain BA4', 'diagnosis': 'HD grade 3'}, 'GSM2100623': {'age': '69', 'tissue': 'brain BA4', 'diagnosis': 'HD grade 3'}, 'GSM2100621': {'age': '65', 'tissue': 'brain BA4', 'diagnosis': 'HD grade 2'}, 'GSM2100628': {'age': '46', 'tissue': 'brain BA4', 'diagnosis': 'HD CTRL'}, 'GSM2100629': {'age': '42', 'tissue': 'brain BA4', 'diagnosis': 'HD CTRL'}, 'GSM2830958': {'selection': 'FACS sorted cells', 'type': 'Negative control vector', 'genotype': 'control', 'markers': 'Lin-CD34+CD38-'}, 'GSM2830959': {'selection': 'FACS sorted cells', 'type': 'Negative control vector', 'genotype': 'control', 'markers': 'Lin-CD34+CD38-'}, 'GSM1828397': {'origin': 'breast epithelial', 'line': 'MCF7-derived LY2', 'sirna': 'scrambled CONTROL'}, 'GSM1234216': {'replicate': '1', 'line': 'MS1', 'antibody': 'CTCF'}, 'GSM1234217': {'replicate': '2.2.2', 'line': 'MS1', 'antibody': 'CTCF'}, 'GSM1234214': {'replicate': '1', 'line': '2630', 'antibody': 'SA1'}, 'GSM3586543': {'origin': 'ABC', 'pfstt': '820', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '820', 'cycles': '8', 'oscs': '0'}, 'GSM1234212': {'replicate': '1', 'line': '2630', 'antibody': 'RNA-seq'}, 'GSM1234213': {'replicate': '2', 'line': '2630', 'antibody': 'RNA-seq'}, 'GSM3586546': {'origin': 'ABC', 'pfstt': '190', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '600', 'cycles': '8', 'oscs': '1'}, 'GSM3586547': {'origin': 'GCB', 'pfstt': '749', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '916', 'cycles': '8', 'oscs': '0'}, 'GSM3586548': {'origin': 'ABC', 'pfstt': '309', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '654', 'cycles': '8', 'oscs': '1'}, 'GSM3586549': {'origin': 'GCB', 'pfstt': '1102', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1102', 'cycles': '8', 'oscs': '0'}, 'GSM1234218': {'replicate': '2.2', 'line': 'MS1', 'antibody': 'CTCF'}, 'GSM1234219': {'replicate': '2', 'line': 'MS1', 'antibody': 'CTCF'}, 'GSM2134295': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2631732': {'tissue': 'PDX tumor', 'agent': 'Abemaciclib'}, 'GSM1131746': {'pathology': 'normal', 'tissue': 'brain', 'Sex': 'female'}, 'GSM1131747': {'pathology': 'normal', 'tissue': 'brain', 'Sex': 'male'}, 'GSM1131744': {'pathology': 'normal', 'tissue': 'brain', 'Sex': 'female'}, 'GSM1131745': {'pathology': 'normal', 'tissue': 'brain', 'Sex': 'female'}, 'GSM1131743': {'pathology': 'normal', 'tissue': 'brain', 'Sex': 'female'}, 'GSM2815810': {'line': 'H9'}, 'GSM2815811': {'line': 'H9'}, 'GSM2815812': {'line': 'H9'}, 'GSM2815813': {'line': 'H9'}, 'GSM2815814': {'line': 'H9'}, 'GSM2815815': {'line': 'H9'}, 'GSM2815816': {'line': 'H9'}, 'GSM2815817': {'line': 'H9'}, 'GSM2815818': {'line': 'H9'}, 'GSM2815819': {'line': 'H9'}, 'GSM2429932': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f9', 'treatment': 'none'}, 'GSM1654310': {'variation': 'FOXA2KD'}, 'GSM1706467': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '36h'}, 'GSM1706466': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '36h'}, 'GSM1706465': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '24h'}, 'GSM1706464': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '24h'}, 'GSM1706463': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '12h'}, 'GSM1706462': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '12h'}, 'GSM1706461': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '6h'}, 'GSM1706460': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '6h'}, 'GSM2429934': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f9', 'treatment': 'none'}, 'GSM1520904': {'line': 'THP1', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)'}, 'GSM1706469': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '48h'}, 'GSM1706468': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '48h'}, 'GSM2285783': {'status': 'healthy volunteer', 'gender': 'female', 'age': '23', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285782': {'status': 'healthy volunteer', 'gender': 'female', 'age': '27', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285781': {'status': 'healthy volunteer', 'gender': 'female', 'age': '20', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285780': {'status': 'healthy volunteer', 'gender': 'female', 'age': '60', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285787': {'status': 'healthy volunteer', 'gender': 'female', 'age': '48', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2265808': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '0'}, 'GSM2285785': {'status': 'healthy volunteer', 'gender': 'female', 'age': '65', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285784': {'status': 'healthy volunteer', 'gender': 'female', 'age': '44', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1126618': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126619': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM2285789': {'status': 'healthy volunteer', 'gender': 'female', 'age': '25', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285788': {'status': 'healthy volunteer', 'gender': 'female', 'age': '39', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2374162': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2632275': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2374163': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2348801': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2463882': {'type': 'C419', 'histology': 'Glioblastoma (GBM)'}, 'GSM2632277': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2374165': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2576201': {'tissue': 'breast cancer xenograft'}, 'GSM1118048': {'transduction': 'none', 'line': '54-1'}, 'GSM2576203': {'tissue': 'breast cancer xenograft'}, 'GSM2632276': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1375986': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375987': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2576207': {'tissue': 'breast cancer xenograft'}, 'GSM2284002': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2576209': {'tissue': 'breast cancer xenograft'}, 'GSM2265802': {'line': 'HeLa', 'sirna': 'TUT4', 'timepoint': '30'}, 'GSM1375988': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375989': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2845394': {'replicate': 'Rep2', 'treatment': 'VEH', 'time': '24hrs'}, 'GSM2265803': {'line': 'HeLa', 'sirna': 'TUT4', 'timepoint': '0'}, 'GSM2287785': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287784': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287787': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287786': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287781': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287780': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287783': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287782': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2632272': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2287789': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287788': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM1084048': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084049': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1084046': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1084047': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'arsenite', 'manufacturer': 'Abnova'}, 'GSM1084044': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1084045': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'arsenite', 'manufacturer': 'Abnova'}, 'GSM1084042': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1084043': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'arsenite', 'manufacturer': 'Abnova'}, 'GSM1084040': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1084041': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'arsenite', 'manufacturer': 'Abnova'}, 'GSM1273668': {'antibody': 'H3K4me2(abcam, ab32356)', 'type': 'hESC derived anterior foregut (MHG)'}, 'GSM1273669': {'antibody': 'H3K4me3 (abcam, ab8580)', 'type': 'hESC derived anterior foregut (MHG)'}, 'GSM1579167': {'origin': 'cells in vitro', 'line': 'Colo800', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_48h_1µM'}, 'GSM1273662': {'antibody': 'none', 'type': 'hESC derived posterior foregut (PFG)'}, 'GSM1273663': {'antibody': 'H3K4me2(abcam, ab32356)', 'type': 'hESC derived anterior foregut (PFG)'}, 'GSM1273660': {'antibody': 'H3K27ac (abcam, ab4729)', 'type': 'hESC derived anterior foregut (AFG)'}, 'GSM1273661': {'antibody': 'H3K27me3 (Millipore/upstate , 07-449 )', 'type': 'hESC derived anterior foregut (AFG)'}, 'GSM1273666': {'antibody': 'H3K27me3 (Millipore/upstate , 07-449 )', 'type': 'hESC derived anterior foregut (PFG)'}, 'GSM1273667': {'antibody': 'none', 'type': 'hESC derived posterior foregut (MHG)'}, 'GSM1273664': {'antibody': 'H3K4me3 (abcam, ab8580)', 'type': 'hESC derived anterior foregut (PFG)'}, 'GSM1273665': {'antibody': 'H3K27ac (abcam, ab4729)', 'type': 'hESC derived anterior foregut (PFG)'}, 'GSM1256829': {'marker': 'CD3+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'T-cells'}, 'GSM1256828': {'marker': 'CD3+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'T-cells'}, 'GSM1520906': {'line': 'THP1', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'PAF1 knockdown'}, 'GSM1579163': {'origin': 'xenograft tumours', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM2805318': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '56', 'timepoint': 'D2_ZT_15:30'}, 'GSM2805319': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '56', 'timepoint': 'D3_ZT_0:15'}, 'GSM1579160': {'origin': 'xenograft tumours', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM2805312': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '49', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805313': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '49', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805310': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '49', 'timepoint': 'D2_ZT_15:30'}, 'GSM2805311': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '49', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805316': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '71', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805317': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '71', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805314': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '71', 'timepoint': 'D2_ZT_15:30'}, 'GSM2805315': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '71', 'timepoint': 'D3_ZT_0:15'}, 'GSM955164': {'capture': 'anti-H3K27me3 (Millipore, 07-449)', 'technique': 'ChIP-sequencing', 'molecule': 'chromatin'}, 'GSM955165': {'capture': 'anti-H3K27me3 (Millipore, 07-449)', 'technique': 'ChIP-sequencing', 'molecule': 'chromatin'}, 'GSM955160': {'capture': 'poly(A) selection (Oligotex mRNA Mini Kit, QIAGEN)', 'technique': 'ds-cDNA-sequencing', 'molecule': 'RNA'}, 'GSM955161': {'capture': 'poly(A) selection (Oligotex mRNA Mini Kit, QIAGEN)', 'technique': 'ds-cDNA-sequencing', 'molecule': 'RNA'}, 'GSM955162': {'capture': 'anti-H3K4me3 (Diagenode)', 'technique': 'ChIP-sequencing', 'molecule': 'chromatin'}, 'GSM955163': {'capture': 'anti-H3K4me3 (Diagenode)', 'technique': 'ChIP-sequencing', 'molecule': 'chromatin'}, 'GSM1256827': {'marker': 'CD34+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'peripheral blood CD34+ cells'}, 'GSM1256826': {'marker': 'CD14+ within monocyte gate', 'tissue': 'peripheral blood', 'type': 'Monocytes'}, 'GSM2086407': {'line': 'HEK293'}, 'GSM2664070': {'status': 'p53+/+', 'identifier': 'P4902_1009', 'type': 'polysome-associated RNA', 'method': 'Optimized non-linear gradient', 'background': 'HCT116'}, 'GSM2086405': {'line': 'HEK293'}, 'GSM2086404': {'line': 'HEK293'}, 'GSM2086403': {'line': 'HEK293'}, 'GSM2086402': {'line': 'HEK293'}, 'GSM2086401': {'line': 'HEK293'}, 'GSM2664071': {'status': 'p53-/-', 'identifier': 'P4902_1010', 'type': 'polysome-associated RNA', 'method': 'Optimized non-linear gradient', 'background': 'HCT116'}, 'GSM2086409': {'line': 'HEK293'}, 'GSM2086408': {'line': 'HEK293'}, 'GSM2516863': {'death': '86', 'score': 'III', 'post_mortem_interval': '1.5', 'caseid': '00-31', 'Sex': 'F', 'rin_score': '7.5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655386'}, 'GSM2516862': {'death': '64', 'score': 'VI', 'post_mortem_interval': '2.33', 'caseid': '11-38', 'Sex': 'M', 'rin_score': '6.9', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655477'}, 'GSM2516861': {'death': '76', 'score': 'V', 'post_mortem_interval': '3.33', 'caseid': '08-20', 'Sex': 'M', 'rin_score': '7.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655464'}, 'GSM2516860': {'death': '86', 'score': 'IV', 'post_mortem_interval': '2.5', 'caseid': '07-34', 'Sex': 'F', 'rin_score': '5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655391'}, 'GSM2359146': {'stage': 'Kidney-Grade IV'}, 'GSM2516867': {'death': '91', 'score': 'IV', 'post_mortem_interval': '1.83', 'caseid': '04-29', 'Sex': 'F', 'rin_score': '7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655387'}, 'GSM2516866': {'death': '91', 'score': 'IV', 'post_mortem_interval': '4.66', 'caseid': '06-54', 'Sex': 'F', 'rin_score': '6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655407'}, 'GSM2550241': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2516865': {'death': '92', 'score': 'VI', 'post_mortem_interval': '3.12', 'caseid': '09-17', 'Sex': 'F', 'rin_score': '5.6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655466'}, 'GSM1217958': {'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH070'}, 'GSM1217959': {'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH070'}, 'GSM1217956': {'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH068'}, 'GSM1217957': {'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH068'}, 'GSM1217954': {'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH053'}, 'GSM2516864': {'death': '80', 'score': 'V', 'post_mortem_interval': '2.77', 'caseid': '10-18', 'Sex': 'M', 'rin_score': '6.9', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655467'}, 'GSM1217952': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'CITH068'}, 'GSM1217953': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'CITH068'}, 'GSM1217950': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'CITH053'}, 'GSM1217951': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'CITH068'}, 'GSM2212706': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM1703709': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703708': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703705': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703704': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703707': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703706': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703701': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703700': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703703': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703702': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM2319604': {'age': 'fetal week 17'}, 'GSM2319605': {'age': 'fetal week 18'}, 'GSM2319606': {'age': 'fetal week 19'}, 'GSM2319607': {'age': 'fetal week 20'}, 'GSM2319600': {'state': 'retinoblastoma xenograft'}, 'GSM2319601': {'state': 'retinoblastoma xenograft'}, 'GSM2319602': {'age': 'fetal week 10'}, 'GSM2319603': {'age': 'fetal week 14'}, 'GSM2319608': {'age': 'fetal week 21'}, 'GSM2319609': {'age': 'fetal week 23'}, 'GSM2632544': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM3190543': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.87093'}, 'GSM3190542': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.350278'}, 'GSM3190541': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.096039'}, 'GSM3190540': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.110597'}, 'GSM3190547': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B69', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.9', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.06449'}, 'GSM3190546': {'boca': 'Yes', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.195081'}, 'GSM3190545': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'Yes', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.939018'}, 'GSM3190544': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1.2', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.23103'}, 'GSM3190549': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B69', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.711781'}, 'GSM3190548': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B69', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.276318'}, 'GSM3586642': {'origin': 'GCB', 'pfstt': '1', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1402', 'cycles': '6', 'oscs': '0'}, 'GSM1588898': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM1588899': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM2536081': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10674', 'samplename': '1_T1D2-REDRAW _C12', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34774', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10674', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C12'}, 'GSM2040721': {'line': 'ID00016', 'type': 'lymphoblastoid cell', 'age': '11', 'genotype': '22q11del'}, 'GSM1588892': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588893': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588890': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588891': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588896': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM1588897': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588894': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588895': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM2195149': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195148': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195141': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195140': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195143': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195142': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195145': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195144': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195147': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195146': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2526891': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2475000': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'PEO1L', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2475003': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'PEO6', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2475002': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'PEO4', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2526895': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526894': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2475007': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'TOV-1946', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2475006': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'TOV-1369TR', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2475009': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'TOV-2223G', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2475008': {'subtype': 'clear cell', 'line': 'TOV-21G', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2248023': {'line': 'YAPC', 'grnas': 'RG'}, 'GSM2248022': {'line': 'YAPC', 'grnas': 'RG'}, 'GSM873694': {'passages': '6 to 10', 'type': 'contact-inhibited IMR90', 'number': 'ab8895', 'infection': 'dl1500', 'line': 'IMR90', 'antibody': 'anti-histone H3', 'manufacturer': 'Abcam'}, 'GSM2151822': {'status': 'Bipolar Disorder individual', 'subtype': 'cuadate nucleus', 'tissue': 'Brain'}, 'GSM2151823': {'status': 'Bipolar Disorder individual', 'subtype': 'cuadate nucleus', 'tissue': 'Brain'}, 'GSM2151820': {'status': 'Bipolar Disorder individual', 'subtype': 'cuadate nucleus', 'tissue': 'Brain'}, 'GSM2151821': {'status': 'Bipolar Disorder individual', 'subtype': 'cuadate nucleus', 'tissue': 'Brain'}, 'GSM2151826': {'status': 'healthy control', 'subtype': 'putamen', 'tissue': 'Brain'}, 'GSM2151827': {'status': 'healthy control', 'subtype': 'putamen', 'tissue': 'Brain'}, 'GSM2151824': {'status': 'healthy control', 'subtype': 'putamen', 'tissue': 'Brain'}, 'GSM2151825': {'status': 'healthy control', 'subtype': 'putamen', 'tissue': 'Brain'}, 'GSM2151828': {'status': 'Bipolar Disorder individual', 'subtype': 'putamen', 'tissue': 'Brain'}, 'GSM2151829': {'status': 'Bipolar Disorder individual', 'subtype': 'putamen', 'tissue': 'Brain'}, 'GSM1695879': {'age': '28', 'tissue': 'normal breast epithelial organoid', 'race': 'White'}, 'GSM1695878': {'age': '34', 'tissue': 'normal breast epithelial organoid', 'race': 'White'}, 'GSM1695877': {'age': '38', 'tissue': 'normal breast epithelial organoid', 'race': 'White'}, 'GSM1695876': {'age': '20', 'tissue': 'normal breast epithelial organoid', 'race': 'Black'}, 'GSM1695875': {'age': '43', 'tissue': 'normal breast epithelial organoid', 'race': 'Black'}, 'GSM1695874': {'age': '37', 'tissue': 'normal breast epithelial organoid', 'race': 'White'}, 'GSM1695873': {'age': '44', 'tissue': 'normal breast epithelial organoid', 'race': 'White'}, 'GSM1695872': {'age': '35', 'tissue': 'normal breast epithelial organoid', 'race': 'White'}, 'GSM1369970': {'transfection': 'siAGO1', 'type': 'MCF7'}, 'GSM1695870': {'age': '44', 'tissue': 'normal breast epithelial organoid', 'race': 'White'}, 'GSM2153082': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153083': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153080': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153081': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153086': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153087': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153084': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153085': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153088': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153089': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM1980489': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980488': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1375519': {'line': 'HeLa', 'treatment': 'untreated', 'time': 'control'}, 'GSM1375518': {'line': 'HeLa', 'treatment': 'untreated', 'time': 'control'}, 'GSM1901521': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901520': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901523': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901522': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901525': {'count': '500', 'ercc_mix': 'mix2', 'type': 'islet', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901524': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901526': {'count': '500', 'ercc_mix': 'mix2', 'type': 'islet', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1369390': {'line': 'HeLa', 'treatment': 'CFIm25 knockdown'}, 'GSM1369391': {'line': 'HeLa', 'treatment': 'CFIm25 knockdown'}, 'GSM2047585': {'well': 'F09', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2283990': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM2283991': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM2170803': {'stage': 'iPSC line'}, 'GSM2170802': {'stage': 'iPSC line'}, 'GSM2348599': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2170805': {'stage': 'iPSC line'}, 'GSM2047584': {'well': 'F08', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2170804': {'stage': 'iPSC line'}, 'GSM2166367': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2686853': {'individual': '51', 'group': 'Fulani', 'ID': '202', 'population': 'CD14+ monocyte'}, 'GSM2166365': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166364': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2686856': {'individual': '60', 'group': 'Fulani', 'ID': '110', 'population': 'CD14+ monocyte'}, 'GSM2166362': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166361': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2686855': {'individual': '59', 'group': 'Fulani', 'ID': '106', 'population': 'CD14+ monocyte'}, 'GSM2686858': {'individual': '54', 'group': 'Fulani', 'ID': '102', 'population': 'CD14+ monocyte'}, 'GSM2686859': {'individual': '43', 'group': 'Fulani', 'ID': '119', 'population': 'CD14- lymphocytes'}, 'GSM2166369': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166368': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2453944': {'code': '404'}, 'GSM2283999': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2047587': {'well': 'F11', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1888626': {'set': 'isogenic', 'type': 'iPSC'}, 'GSM1888627': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1395599': {'subtype': 'Cla+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395598': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1888622': {'set': 'isogenic', 'type': 'iPSC'}, 'GSM1888623': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888620': {'set': 'isogenic', 'type': 'iPSC'}, 'GSM1863150': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'highDBZ_R1984A', 'passage': '<20'}, 'GSM1395593': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395592': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395591': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395590': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395597': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395596': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395595': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395594': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2348329': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348328': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2705447': {'Sex': 'Female', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.4', 'pmi': '19'}, 'GSM2705446': {'Sex': 'Female', 'rin': '6.3', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '5.5', 'pmi': '6'}, 'GSM2705445': {'Sex': 'Female', 'rin': '8.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.4', 'pmi': '9'}, 'GSM2705444': {'Sex': 'Female', 'rin': '5.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.8', 'pmi': '17'}, 'GSM2705443': {'Sex': 'Male', 'rin': '8.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.7', 'pmi': '16'}, 'GSM2705442': {'Sex': 'Male', 'rin': '6.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.3', 'pmi': '9'}, 'GSM2705441': {'Sex': 'Female', 'rin': '5.3', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6', 'pmi': '13'}, 'GSM2705440': {'Sex': 'Female', 'rin': '7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.3', 'pmi': '7'}, 'GSM2705449': {'Sex': 'Female', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.23', 'pmi': '17'}, 'GSM2705448': {'Sex': 'Male', 'rin': 'NA', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.3', 'pmi': '21'}, 'GSM2816240': {'line': 'H9'}, 'GSM1891815': {'type': 'SCNT assisted by KDM4A derived human ES cells'}, 'GSM2141648': {'individual': 'EU242', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2643312': {'gender': 'male', 'age': '44 years', 'tissue': 'Brain', 'type': 'Glioblastoma cells', 'line': 'U87MG', 'with': 'pCDH-CMV-MCS-EF1-Puro (U87MG-control)'}, 'GSM2643313': {'gender': 'male', 'age': '44 years', 'tissue': 'Brain', 'type': 'Glioblastoma cells', 'line': 'U87MG', 'with': 'pCDH-CMV-CD133-EF1-Puro (U87MG-CD133)'}, 'GSM2816241': {'line': 'H9'}, 'GSM1891812': {'type': 'Control human ES cells'}, 'GSM2635722': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'Activin A, ChIR'}, 'GSM2635723': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'Activin A, ChIR'}, 'GSM2635720': {'genotype': 'YAP-', 'treatment_time': '72h', 'treatment': 'Activin A'}, 'GSM2635721': {'genotype': 'YAP-', 'treatment_time': '72h', 'treatment': 'Activin A'}, 'GSM2816242': {'line': 'H9'}, 'GSM2635726': {'genotype': 'YAP-, bCatenin-', 'treatment_time': '24h', 'treatment': 'Activin A'}, 'GSM2635727': {'genotype': 'YAP-, bCatenin-', 'treatment_time': '24h', 'treatment': 'Activin A'}, 'GSM2247608': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247609': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2141640': {'individual': 'EU232', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2635724': {'genotype': 'YAP-', 'treatment_time': '72h', 'treatment': 'Activin A, ChIR'}, 'GSM2247600': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247601': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247602': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247603': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247604': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247605': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247606': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247607': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2816243': {'line': 'H9'}, 'GSM2141645': {'individual': 'EU238', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141644': {'individual': 'EU238', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2082058': {'line': 'IMR-5', 'antibody': 'N-MYC (B8.4.B, Santa Cruz, sc-53993)', 'treatment': 'DMSO'}, 'GSM2082059': {'line': 'IMR-5', 'antibody': 'N-MYC (B8.4.B, Santa Cruz, sc-53993)', 'treatment': 'CD532'}, 'GSM2082057': {'line': 'IMR-5', 'antibody': 'none'}, 'GSM1980485': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2204124': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204125': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204126': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204127': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204120': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204121': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2337062': {'origin': 'cells in vitro', 'line': 'COLO858', 'type': 'melanoma cell line', 'treatment': 'Vemurafenib_48h_0.2µM'}, 'GSM2455888': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455887': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455886': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455885': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455884': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2204128': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204129': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2455881': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455880': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2431658': {'number': '1_12', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D4'}, 'GSM2431659': {'number': '1_13', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D5', 'concentration': '10μM'}, 'GSM2431654': {'number': '2_70', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D3', 'concentration': '10μM'}, 'GSM2431655': {'number': '1_1', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D4', 'concentration': '10μM'}, 'GSM2431656': {'number': '1_10', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D4', 'concentration': '10μM'}, 'GSM2431657': {'number': '1_11', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D4', 'concentration': '100ng/ml'}, 'GSM2431650': {'number': '2_64', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D3', 'concentration': '10μM'}, 'GSM2431651': {'number': '2_67', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D3'}, 'GSM2431652': {'number': '2_68', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_06h', 'donor': 'D1', 'concentration': '10μM'}, 'GSM2431653': {'number': '2_69', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D3', 'concentration': '100ng/ml'}, 'GSM2256178': {'infected': 'nc_3150', 'type': 'U87'}, 'GSM2256179': {'infected': 'common:TSS11541_+_102133389.23-P1P2', 'type': 'HeLa'}, 'GSM2256170': {'infected': 'u87_unique:TSS109301_-_108976096.23-P1P2', 'type': 'U87'}, 'GSM2256171': {'infected': 'u87_unique:TSS109301_-_108975731.23-P1P2', 'type': 'U87'}, 'GSM2256172': {'infected': 'Gal4', 'type': 'HeLa'}, 'GSM2256173': {'infected': 'Gal4', 'type': 'HeLa'}, 'GSM2256174': {'infected': 'nc_1688', 'type': 'HeLa'}, 'GSM2256175': {'infected': 'nc_1736', 'type': 'HeLa'}, 'GSM2256176': {'infected': 'Gal4', 'type': 'K562'}, 'GSM2256177': {'infected': 'nc_2727', 'type': 'U87'}, 'GSM1946018': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18856', 'for': '60min'}, 'GSM1946019': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18856', 'for': '60min'}, 'GSM1946010': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18855', 'for': '60min'}, 'GSM1946011': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18855', 'for': '60min'}, 'GSM1946012': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18855', 'for': '60min'}, 'GSM1946013': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18855', 'for': '60min'}, 'GSM1946014': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18856', 'for': '30min'}, 'GSM1946015': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18856', 'for': '30min'}, 'GSM1946016': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18856', 'for': '30min'}, 'GSM1946017': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18856', 'for': '30min'}, 'GSM2877322': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '1 uM pioglitazone'}, 'GSM2877323': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877320': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '1 uM pioglitazone'}, 'GSM2877321': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '1 uM pioglitazone'}, 'GSM2877324': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877325': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM1980486': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1521584': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2054138': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054139': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM1885137': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM2054130': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054131': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054132': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054133': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054134': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM1885138': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM2054136': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054137': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM1876274': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Corpus', 'type': 'Tissue', 'id': 'UC-05'}, 'GSM1876275': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Corpus', 'type': 'Tissue', 'id': 'UC-06'}, 'GSM1876276': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Cauda', 'type': 'Tissue', 'id': 'UC-05'}, 'GSM1876277': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Cauda', 'type': 'Tissue', 'id': 'UC-06'}, 'GSM1876270': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Cauda', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-06'}, 'GSM1876271': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Cauda', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-09'}, 'GSM1876272': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Caput', 'type': 'Tissue', 'id': 'UC-05'}, 'GSM1876273': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Caput', 'type': 'Tissue', 'id': 'UC-06'}, 'GSM835231': {'tissue': 'blood', 'type': 'CD19'}, 'GSM835233': {'tissue': 'blood', 'type': 'neutrophils'}, 'GSM835232': {'tissue': 'blood', 'type': 'CD34'}, 'GSM1521586': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2413434': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413435': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413436': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413437': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413430': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413431': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413432': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413433': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413438': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413439': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2784428': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '24h'}, 'GSM2784429': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '24h'}, 'GSM2784422': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '0h'}, 'GSM2784423': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '24h'}, 'GSM2784420': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '0h'}, 'GSM2784421': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '0h'}, 'GSM2784426': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '24h'}, 'GSM2784427': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '24h'}, 'GSM2784424': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '24h'}, 'GSM2784425': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '24h'}, 'GSM2374300': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374301': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374302': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374303': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374304': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374305': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374306': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374307': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374308': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374309': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1574099': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '42', 'treatment': '100 nM rotenone'}, 'GSM1574098': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '42', 'treatment': '100 nM rotenone'}, 'GSM1574091': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '38', 'treatment': 'none'}, 'GSM1574090': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '38', 'treatment': 'none'}, 'GSM1574093': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '38', 'treatment': '100 nM rotenone'}, 'GSM1574092': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '38', 'treatment': '100 nM rotenone'}, 'GSM1574095': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '42', 'treatment': 'none'}, 'GSM1574094': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '38', 'treatment': '100 nM rotenone'}, 'GSM1574097': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '42', 'treatment': 'none'}, 'GSM1574096': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '42', 'treatment': 'none'}, 'GSM1274267': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '6hr'}, 'GSM1274266': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '6hr'}, 'GSM1274265': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '6hr'}, 'GSM1274264': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '6days'}, 'GSM1274263': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '6days'}, 'GSM1274262': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '6days'}, 'GSM1274261': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '6days'}, 'GSM1274260': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '48hr'}, 'GSM1274269': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '48hr'}, 'GSM1274268': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '6hr'}, 'GSM2084452': {'induction': 'PMA', 'time': '126 hr'}, 'GSM2084453': {'induction': 'PMA', 'time': '126 hr'}, 'GSM2084450': {'induction': 'PMA', 'time': '123 hr'}, 'GSM2084451': {'induction': 'PMA', 'time': '123 hr'}, 'GSM2084456': {'induction': 'PMA', 'time': '132 hr'}, 'GSM2084457': {'induction': 'PMA', 'time': '132 hr'}, 'GSM2084454': {'induction': 'PMA', 'time': '126 hr'}, 'GSM2084455': {'induction': 'PMA', 'time': '132 hr'}, 'GSM2084458': {'induction': 'PMA', 'time': '144 hr'}, 'GSM2084459': {'induction': 'PMA', 'time': '144 hr'}, 'GSM2183698': {'vector': 'pLKO-shNT none targeting control'}, 'GSM2183699': {'vector': 'pLKO-shNT none targeting control'}, 'GSM2183697': {'vector': 'pLKO-shNT none targeting control'}, 'GSM1700784': {'antibody': 'c-Jun Antibody (H-79) from Santa Cruz Biotechnology', 'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM2495982': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495983': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495980': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495981': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495986': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495987': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495984': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495985': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495988': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495989': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM1642330': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM2041829': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'MLL-AF9'}, 'GSM1704538': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM2041825': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'MLL-Af4'}, 'GSM2041827': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'MLL-AF9'}, 'GSM2041820': {'lineage': 'lymphoid', 'etiology': 'PBPC', 'genotype': 'MLL-Af4'}, 'GSM2041821': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'MLL-Af4'}, 'GSM2041823': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'MLL-Af4'}, 'GSM2948451': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2948450': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2948453': {'type': 'hESC-H9(WA09)', 'system': '3D PEG hydrogel'}, 'GSM2948452': {'type': 'hESC-H9(WA09)', 'system': '3D PEG hydrogel'}, 'GSM2948455': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2948454': {'type': 'hESC-H9(WA09)', 'system': '3D PEG hydrogel'}, 'GSM2948457': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2948456': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2948459': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2948458': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2178751': {'ir': '0.492853622474125', 'weight': 'non-obese', 'gender': 'female', 'age': '63', 'bmi': '27.7', 'disease': 't2d', 'l': '0.07', 'h': '0', 'id': '127a'}, 'GSM2178750': {'ir': '0.979431929480901', 'weight': 'obese', 'gender': 'female', 'age': '63', 'bmi': '32.7', 'disease': 't2d', 'l': '0.18', 'h': '2', 'id': '85a'}, 'GSM2178753': {'ir': '0.499750124937531', 'weight': 'obese', 'gender': 'female', 'age': '53', 'bmi': '39.2', 'disease': 'ngt', 'l': '0.06', 'h': '0.5', 'id': '71a'}, 'GSM2178752': {'ir': '0.492853622474125', 'weight': 'non-obese', 'gender': 'female', 'age': '63', 'bmi': '27.7', 'disease': 't2d', 'l': '0.07', 'h': '0.5', 'id': '127a'}, 'GSM1542160': {'subpopulation': 'CD62L+CX3CR1-', 'type': 'CD8+ T cells'}, 'GSM1542161': {'subpopulation': 'CD62L-CX3CR1+', 'type': 'CD8+ T cells'}, 'GSM2496675': {'line': 'INA-6'}, 'GSM2496674': {'line': 'INA-6'}, 'GSM2496677': {'line': 'INA-6'}, 'GSM2496676': {'line': 'INA-6'}, 'GSM2176168': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176169': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2496673': {'line': 'INA-6'}, 'GSM2496672': {'line': 'INA-6'}, 'GSM2176164': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176165': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176166': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176167': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176160': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176161': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176162': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176163': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2178759': {'ir': '0.48030739673391', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '23.9', 'disease': 'ngt', 'l': '0.08', 'h': '2', 'id': '32a'}, 'GSM2178758': {'ir': '0.37243947858473', 'weight': 'obese', 'gender': 'female', 'age': '59', 'bmi': '30', 'disease': 't2d', 'l': '0.1', 'h': '1', 'id': '124a'}, 'GSM1831734': {'gender': 'female', 'line': 'HEC-1B', 'type': 'adenocarcinoma', 'variation': 'HS5-1 Inversion'}, 'GSM1831735': {'gender': 'female', 'line': 'HEC-1B', 'type': 'adenocarcinoma', 'variation': 'HS5-1 Inversion'}, 'GSM1831732': {'gender': 'female', 'line': 'HEC-1B', 'type': 'adenocarcinoma', 'variation': 'Wild type control'}, 'GSM1831733': {'gender': 'female', 'line': 'HEC-1B', 'type': 'adenocarcinoma', 'variation': 'Wild type control'}, 'GSM1542168': {'subpopulation': 'Naive', 'type': 'CD8+ T cells'}, 'GSM1542169': {'subpopulation': 'CD62L+CX3CR1+', 'type': 'CD8+ T cells'}, 'GSM1545089': {'type': 'gastric cancer tumor', 'class': 'IIIC', 'location': 'Body'}, 'GSM1598035': {'vendor': 'Abcam', 'tissue': 'fetal heart', 'antibody': 'H3K4me3', 'stage': '12 weeks after gestation'}, 'GSM2125796': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM1598037': {'vendor': 'active motif', 'tissue': 'fetal liver', 'antibody': 'H3K27ac', 'stage': '12 weeks after gestation'}, 'GSM1598036': {'vendor': 'active motif', 'tissue': 'fetal liver', 'antibody': 'H3K27ac', 'stage': '12 weeks after gestation'}, 'GSM2125793': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM1598030': {'vendor': 'CST', 'tissue': 'fetal heart', 'antibody': 'H3K27me3', 'stage': '12 weeks after gestation'}, 'GSM1598033': {'vendor': 'Abcam', 'tissue': 'fetal heart', 'antibody': 'H3K4me1', 'stage': '12 weeks after gestation'}, 'GSM2125790': {'cancer': 'gastric cancer', 'stage': '4'}, 'GSM1658394': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': '-', 'gfp': '-', 'cd13': 'NA'}, 'GSM1598039': {'tissue': 'fetal liver', 'antibody': 'H3K4me3 (Abcam, ab8580)', 'stage': '12 weeks after gestation'}, 'GSM1598038': {'tissue': 'fetal liver', 'antibody': 'H3K4me3 (Abcam, ab8580)', 'stage': '12 weeks after gestation'}, 'GSM1644998': {'gender': 'male', 'tissue': 'Hippocampus', 'group': 'LOAD (late onset of Alzheimerâ\\x80\\x99s disease)', 'genotype': '3/3', 'stage': 'VI'}, 'GSM1644999': {'gender': 'female', 'tissue': 'Hippocampus', 'group': 'LOAD (late onset of Alzheimerâ\\x80\\x99s disease)', 'genotype': '3/3', 'stage': 'VI'}, 'GSM1617437': {'line': 'HEK293T', 'replicate': '1', 'ngs_platform': 'Illumina Hi-Seq2000 50 nt strand-specific', 'fraction': 'small RNA'}, 'GSM1617438': {'line': 'HEK293T', 'replicate': '2', 'ngs_platform': 'Illumina Hi-Seq2000 50 nt strand-specific', 'fraction': 'small RNA'}, 'GSM2561623': {'protocol': 'Cultured without T3', 'variation': 'isogenic induced mutation on a control background'}, 'GSM2561622': {'protocol': 'Cultured without T3', 'variation': 'isogenic induced mutation on a control background'}, 'GSM2561621': {'protocol': 'Cultured without T3', 'variation': 'isogenic induced mutation on a control background'}, 'GSM2561620': {'protocol': 'Cultured with T3 100nM', 'variation': 'isogenic induced mutation on a control background'}, 'GSM1980342': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2455692': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455693': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455690': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455691': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455696': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1041199': {'line': 'BJ cells', 'protocol': 'BJ cells expressing hTERT, p16INK4A-KD, p53-KD and SV40 small T were retrovirally transduced with pBabe-puro-RASG12V', 'condition': 'Transformed cells (induced by RASG12V in the background of stable p53 and p16INK4A kds)'}, 'GSM2455694': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455695': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455698': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455699': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1041195': {'line': 'BJ cells', 'protocol': 'BJ cells expressing hTERT and tamoxifen-inducible RASG12V were cultured in the presence of 10-7M 4-OHT-Tamoxifen for 5 days', 'condition': 'pre-senescence; 5 dys after RASG12V induction'}, 'GSM1536664': {'age': 'Undifferentiated hESC', 'disease': 'Healthy'}, 'GSM1536665': {'age': 'Differentiated day 12 neuron progenitors', 'disease': 'Healthy'}, 'GSM1536666': {'age': 'Differentiated day 12 neuron progenitors', 'disease': 'Healthy'}, 'GSM1536667': {'age': 'Differentiated day 12 neuron progenitors', 'disease': 'Healthy'}, 'GSM1704537': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1536668': {'age': '~ Differentiation day 25', 'disease': 'Healthy'}, 'GSM1536669': {'age': '~ Differentiation day 27', 'disease': 'Healthy'}, 'GSM2750897': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2674620': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674621': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674622': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674623': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674624': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674625': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674626': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674627': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674628': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674629': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2187258': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shZMYND8'}, 'GSM2187259': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR251663-1), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shLuciferase'}, 'GSM2316689': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316688': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316681': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316680': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316683': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316682': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316685': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316684': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316687': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316686': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1056527': {'line': 'YH', 'type': 'lymphoblastoid cells'}, 'GSM1056528': {'line': 'AGS', 'type': 'gastric adenocarcinoma cells'}, 'GSM1056529': {'line': 'BGC-823', 'type': 'gastric adenocarcinoma cells'}, 'GSM1694214': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM1694215': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694216': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694217': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM1694210': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694211': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM2889008': {'tissue': 'pancreatic islets'}, 'GSM2889009': {'tissue': 'pancreatic islets'}, 'GSM1964951': {'sorting': 'FACS sorted by mCherry+', 'passage': 'passage 30-35'}, 'GSM2889007': {'tissue': 'pancreatic islets'}, 'GSM2889004': {'tissue': 'pancreatic islets'}, 'GSM2889005': {'tissue': 'pancreatic islets'}, 'GSM1694218': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694219': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1964957': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964956': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2307250': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307251': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307252': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307253': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307254': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307255': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307256': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307257': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307258': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307259': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1613675': {'line': 'CRL2097', 'type': 'large live'}, 'GSM675538': {'line': 'Raji', 'vector': 'LS*mock, expressing recombinant, HA-tagged wild-type RPB1 (amanitin resistant)'}, 'GSM675539': {'line': 'Raji', 'vector': 'LS*mock, expressing recombinant, HA-tagged wild-type RPB1 (amanitin resistant)'}, 'GSM1105773': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2316497': {'culture': 'D26'}, 'GSM2932942': {'pucai': '50', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '12'}, 'GSM2443404': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': 'micrococcal nuclease only', 'fraction': 'cellular RNA'}, 'GSM2443405': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': 'no treatment', 'fraction': 'exosome RNA'}, 'GSM2443406': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': 'no treatment', 'fraction': 'exosome RNA'}, 'GSM2443407': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': '0.1% Triton X-100 and micrococcal nuclease', 'fraction': 'exosome RNA'}, 'GSM2443400': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': 'no treatment', 'fraction': 'cellular RNA'}, 'GSM2443401': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': '0.1% Triton X-100 and micrococcal nuclease', 'fraction': 'cellular RNA'}, 'GSM2443402': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': '0.1% Triton X-100 and micrococcal nuclease', 'fraction': 'cellular RNA'}, 'GSM2443403': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': 'micrococcal nuclease only', 'fraction': 'cellular RNA'}, 'GSM2443408': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': '0.1% Triton X-100 and micrococcal nuclease', 'fraction': 'exosome RNA'}, 'GSM2443409': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': 'micrococcal nuclease only', 'fraction': 'exosome RNA'}, 'GSM1540570': {'state': 'Lyme disease', 'individual': 'patient 01-54', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1969393': {'metastasis': 'No', 'fusion': 'Yes', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1969394': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM2932943': {'pucai': '30', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '4'}, 'GSM1969395': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM1969396': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969397': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - pleomorphic', 'localization': 'Upper limb'}, 'GSM2871678': {'line': 'U251', 'vector': 'Lentivirus', 'treatment': 'stable transfected cell line with PD-L1 overexpression', 'passage': '5-10'}, 'GSM2871679': {'line': 'U251', 'vector': 'Lentivirus', 'treatment': 'comparative vector only control', 'passage': '5-10'}, 'GSM2932940': {'pucai': '15', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '17'}, 'GSM1716725': {'subpopulation': 'CA125 positive', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM782661': {'state': 'castration resistant prostate cancer', 'tissue': 'bone metastatic tumor', 'stage': 'metastatic'}, 'GSM782660': {'state': 'castration resistant prostate cancer', 'tissue': 'bone metastatic tumor', 'stage': 'metastatic'}, 'GSM782662': {'state': 'castration resistant prostate cancer', 'tissue': 'bone metastatic tumor', 'stage': 'metastatic'}, 'GSM1716727': {'subpopulation': 'CA125 positive', 'storage': 'cryopreserved primary cells', 'state': 'ascites'}, 'GSM1716726': {'subpopulation': 'CA125 negative', 'storage': 'cryopreserved primary cells', 'state': 'ascites'}, 'GSM1716723': {'subpopulation': 'CA125 positive', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM1716722': {'subpopulation': 'CA125 negative', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM2932946': {'pucai': '50', 'score': '0', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '10'}, 'GSM2303597': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303596': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2373495': {'line': 'BC3'}, 'GSM2212705': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2932947': {'pucai': '30', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM2212704': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212703': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2373496': {'line': 'BC3'}, 'GSM2303592': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2535792': {'status': 'HiAff_aCD3_Bulk', 'lane': '4,8', 'samplelabel': 'lib2377', 'samplename': 'HiAff_aCD3_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19596', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '3', 'stim': 'aCD3', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2377', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM2535793': {'status': 'HiAff_Tmr_Bulk', 'lane': '4,8', 'samplelabel': 'lib2378', 'samplename': 'HiAff_Tmr_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19597', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '3', 'stim': 'Tmr', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2378', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM2535790': {'status': 'HiAff_aCD3_Bulk', 'lane': '4,8', 'samplelabel': 'lib2372', 'samplename': 'HiAff_aCD3_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19596', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '2', 'stim': 'aCD3', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2372', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM2535791': {'status': 'HiAff_Tmr_Bulk', 'lane': '4,8', 'samplelabel': 'lib2373', 'samplename': 'HiAff_Tmr_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19597', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '2', 'stim': 'Tmr', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2373', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM2535796': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4045', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25004', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C25', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4045', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C25'}, 'GSM2535797': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4046', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25005', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C43', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4046', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C43'}, 'GSM2535794': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4043', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25002', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C03', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4043', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C03'}, 'GSM2535795': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4044', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25003', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C09', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4044', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C09'}, 'GSM2535798': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4047', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25006', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C08', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4047', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C08'}, 'GSM2535799': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4048', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25007', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C14', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4048', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C14'}, 'GSM896808': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (zygote)', 'stage': 'early blastomere'}, 'GSM2212709': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212708': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM1398987': {'group': 'young', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1398986': {'group': 'young', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398985': {'group': 'young', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1398984': {'group': 'young', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1398983': {'group': 'young', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398982': {'group': 'young', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1398981': {'group': 'young', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398980': {'group': 'old', 'tissue': 'pancreas', 'type': 'acinar'}, 'GSM2108503': {'stages': 'myotube nucleus'}, 'GSM2108502': {'stages': 'myotube nucleus'}, 'GSM2108501': {'stages': 'myotube nucleus'}, 'GSM2108500': {'stages': 'myotube nucleus'}, 'GSM2108507': {'stages': 'myotube nucleus'}, 'GSM2108506': {'stages': 'myotube nucleus'}, 'GSM2108505': {'stages': 'myotube nucleus'}, 'GSM1398988': {'group': 'young', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM2817719': {'type': 'PANC-1', 'treatment': 'CM03 6h'}, 'GSM2817718': {'type': 'PANC-1', 'treatment': 'CM03 6h'}, 'GSM2817711': {'type': 'MIA PACA-2', 'treatment': 'CM03 24h'}, 'GSM2817710': {'type': 'MIA PACA-2', 'treatment': 'CM03 24h'}, 'GSM2817713': {'type': 'PANC-1', 'treatment': 'untreated'}, 'GSM2817712': {'type': 'MIA PACA-2', 'treatment': 'CM03 24h'}, 'GSM2817715': {'type': 'PANC-1', 'treatment': 'untreated'}, 'GSM2817714': {'type': 'PANC-1', 'treatment': 'untreated'}, 'GSM2817717': {'type': 'PANC-1', 'treatment': 'CM03 6h'}, 'GSM2817716': {'type': 'PANC-1', 'treatment': 'untreated'}, 'GSM896805': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (Oocyte)', 'stage': 'early blastomere'}, 'GSM2251348': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251349': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251346': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251347': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251344': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251345': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251342': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251343': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251340': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251341': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2153129': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153128': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2312247': {'culture': '12', 'line': 'DCX-'}, 'GSM2312246': {'culture': '12', 'line': 'DCX-'}, 'GSM2312241': {'culture': '12', 'line': 'DCX-'}, 'GSM2312240': {'culture': '12', 'line': 'DCX-'}, 'GSM2312243': {'culture': '12', 'line': 'DCX-'}, 'GSM2312242': {'culture': '12', 'line': 'DCX-'}, 'GSM2153121': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153120': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153123': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153122': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153125': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153124': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153127': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153126': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2305791': {'tissue': 'colon'}, 'GSM2635905': {'type': 'A549 cells', 'treatment': 'Cas9 + guide RNA transient transfection, followed by FACS of single cells', 'genotype': 'miR-1343 wild type'}, 'GSM1624969': {'line': 'A549', 'tissue': 'lung carcinoma'}, 'GSM2735355': {'with': 'siRNA targeting CBP80', 'type': 'HeLa Kyoto'}, 'GSM2735356': {'with': 'siRNA targeting CBP80', 'type': 'HeLa Kyoto'}, 'GSM2735357': {'with': 'siRNA targeting CBP80', 'type': 'HeLa Kyoto'}, 'GSM2915376': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915377': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915375': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2526914': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526915': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2915378': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2526917': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526910': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526911': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526912': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526913': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2784743': {'type': 'Lung squamous cell carcinoma', 'treatment': 'HCC95 overexpressing KLF5 WT'}, 'GSM2784742': {'type': 'Lung squamous cell carcinoma', 'treatment': 'HCC95 overexpressing KLF5 WT'}, 'GSM2784741': {'type': 'Lung squamous cell carcinoma', 'treatment': 'HCC95 overexpressing an empty vector'}, 'GSM2784740': {'type': 'Lung squamous cell carcinoma', 'treatment': 'HCC95 overexpressing an empty vector'}, 'GSM2248123': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2471966': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471967': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471964': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471965': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471962': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471963': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471960': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471961': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471968': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471969': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2031984': {'type': 'Keratinocytes', 'stage': 'differentiated for 5 days'}, 'GSM2031985': {'type': 'Keratinocytes', 'stage': 'differentiated for 5 days'}, 'GSM2031986': {'type': 'Keratinocytes', 'stage': 'differentiated for 5 days'}, 'GSM2361724': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361725': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361726': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2031987': {'type': 'Keratinocytes', 'stage': 'Undifferentiated'}, 'GSM2361720': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361721': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361722': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361723': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361728': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361729': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2550485': {'line': 'THP1', 'tissue': 'human peripheral blood', 'treatment': 'mock'}, 'GSM2175594': {'tag': 'C4-2 cell line'}, 'GSM2175595': {'tag': 'C4-2 cell line'}, 'GSM2175596': {'tag': 'C4-2 cell line'}, 'GSM2175597': {'tag': 'C4-2 cell line'}, 'GSM2175590': {'tag': 'C4-2 cell line'}, 'GSM2175591': {'tag': 'C4-2 cell line'}, 'GSM2175592': {'tag': 'C4-2 cell line'}, 'GSM2175593': {'tag': 'C4-2 cell line'}, 'GSM2031983': {'type': 'keratinocytes', 'stage': 'Undifferentiated'}, 'GSM2175598': {'tag': 'C4-2 cell line'}, 'GSM2443357': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM1933861': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOG1 overexpression'}, 'GSM1933860': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOG1 overexpression'}, 'GSM1933863': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1933862': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1933865': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1933864': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1933867': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1933866': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1933869': {'status': 'androgen dependent (AD)', 'course': 'day 12', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1933868': {'status': 'androgen dependent (AD)', 'course': 'day 12', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1517599': {'age': '54-57 days post conception (gestation)', 'tissue': 'pancreas', 'stage': 'fetus'}, 'GSM1517598': {'age': '54-57 days post conception (gestation)', 'tissue': 'pancreas', 'stage': 'fetus'}, 'GSM2551358': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2551359': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551350': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551351': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551352': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551353': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551354': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551355': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551356': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551357': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2172065': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2607515': {'line': 'WA26'}, 'GSM2172067': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2607517': {'line': 'WA26'}, 'GSM2172061': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172060': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2367768': {'with': '0.1% DMSO for 6hrs', 'line': 'MOLT4', 'barcode': 'CGATGT', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2172062': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2367767': {'with': '0.1% DMSO for 6hrs', 'line': 'MOLT4', 'barcode': 'ATCACG', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2172069': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172068': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2052411': {'differentiation': '11', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052410': {'differentiation': '11', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM1395414': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395415': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395412': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395413': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395410': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395411': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2052418': {'differentiation': '17', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM1395418': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395419': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2544055': {'library_id': 'lib8375', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.326', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3594586': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594585': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594584': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594583': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594582': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2544053': {'library_id': 'lib8373', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.063', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544052': {'library_id': 'lib8372', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.063', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544059': {'library_id': 'lib8379', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544058': {'library_id': 'lib8378', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3594589': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594588': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2411919': {'line': '2945B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411918': {'line': '2945A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411915': {'line': '18961C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411914': {'line': '18961A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411917': {'line': '2098B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411916': {'line': '2098A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411911': {'line': '1673F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411910': {'line': '1673B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411913': {'line': '18719D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411912': {'line': '18719B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2126073': {'line': '184-hTert', 'treatment': 'scrambled siRNA'}, 'GSM2126072': {'line': '184-hTert', 'treatment': 'scrambled siRNA'}, 'GSM2126071': {'line': '184-hTert', 'treatment': 'CDK12 siRNA-1'}, 'GSM2126070': {'line': '184-hTert', 'treatment': 'CDK12 siRNA-1'}, 'GSM2126074': {'line': '184-hTert', 'treatment': 'scrambled siRNA'}, 'GSM2204627': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204626': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204625': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204624': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204623': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204622': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204621': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204620': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204629': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204628': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2041718': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 31'}, 'GSM2041719': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 4 passages after initial sorting'}, 'GSM2041716': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 20'}, 'GSM2041717': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 20'}, 'GSM2041714': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 3 passages after initial sorting'}, 'GSM2041715': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 4 passages after initial sorting'}, 'GSM2041712': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 11 passages during and after reversion, 5 passages after sorting'}, 'GSM2041713': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 11 passages during and after reversion, 6 passages after initial sorting'}, 'GSM2041710': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 26'}, 'GSM2041711': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 27'}, 'GSM2486759': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486758': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486753': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486752': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486751': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486750': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486757': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486756': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486755': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486754': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2284049': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284048': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284047': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284046': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284045': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284044': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284043': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284042': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284041': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284040': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM1631493': {'line': 'HEK-293FT', 'grna': 'INT'}, 'GSM1631492': {'line': 'HEK-293FT', 'grna': 'INT'}, 'GSM1631491': {'line': 'HEK-293FT', 'grna': 'None'}, 'GSM1631490': {'line': 'HEK-293FT', 'grna': 'None'}, 'GSM1631497': {'line': 'HEK-293FT', 'grna': 'sgRNA'}, 'GSM1631496': {'line': 'HEK-293FT', 'grna': 'sgRNA'}, 'GSM1631495': {'line': 'HEK-293FT', 'grna': 'P4P6'}, 'GSM1631494': {'line': 'HEK-293FT', 'grna': 'P4P6'}, 'GSM1631499': {'line': 'HEK-293FT', 'grna': 'TOP1'}, 'GSM1631498': {'line': 'HEK-293FT', 'grna': 'TOP1'}, 'GSM2027521': {'line': 'H7 derived'}, 'GSM1006505': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-prednisolon', 'subject': 'A1'}, 'GSM1006504': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-placebo', 'subject': 'A6'}, 'GSM1915104': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'group A streptococcus and hydroxychloroquine', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915102': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'group A streptococcus', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915103': {'status': 'healthy participant', 'culture': '0 hours', 'with': 'none (untreated)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915100': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'group A streptococcus', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915101': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'group A streptococcus and hydroxychloroquine', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM2204083': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204082': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204081': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204080': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204087': {'model': 'CTG-0771, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204086': {'model': 'CTG-0771, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204085': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204084': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204089': {'model': 'CTG-0771, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204088': {'model': 'CTG-0771, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2357088': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 5', 'point': '06h'}, 'GSM2357089': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 5', 'point': '06h'}, 'GSM2357084': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 5', 'point': '03h'}, 'GSM2357085': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 5', 'point': '03h'}, 'GSM2357086': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2357087': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2357080': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 5', 'point': '18h'}, 'GSM2357081': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 5', 'point': '18h'}, 'GSM2357082': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2357083': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2141607': {'individual': 'EU184', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141606': {'individual': 'EU170', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141605': {'individual': 'EU170', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141604': {'individual': 'EU170', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141603': {'individual': 'EU168', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141602': {'individual': 'EU168', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141601': {'individual': 'EU168', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141600': {'individual': 'EU164', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141609': {'individual': 'EU184', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141608': {'individual': 'EU184', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2754711': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_1003', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754710': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_1003', 'previousdiagnosisoftb': 'No', 'tst': '12', 'type': 'Tcells'}, 'GSM2754713': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0143', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754712': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0143', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754715': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0386', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754714': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0143', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754717': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0180', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754716': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0386', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754719': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0030', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754718': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0180', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2563695': {'gender': 'female', 'line': 'H9', 'type': 'ES-derived spontaneous differentiation', 'days': 'after differentiation, day 11'}, 'GSM2842515': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2842514': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2842517': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM2842516': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM2842511': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2842510': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2842513': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM2842512': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM2842519': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2842518': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM1873018': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM1873013': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM1873012': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM1873011': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM1873010': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM1873017': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM1873016': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM1873015': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM1873014': {'infection': 'M. abscessus Smooth (MAB-S)-infected'}, 'GSM2680456': {'line': 'Breast cancer cell line MDAMB231', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM1899422': {'line': 'A673', 'type': \"Ewing's sarcoma cell line\"}, 'GSM1899423': {'line': 'TC-32', 'type': \"Ewing's sarcoma cell line\"}, 'GSM1899420': {'line': '4+v', 'type': 'mesenchymal stem cell line'}, 'GSM1899421': {'line': '5H', 'type': 'mesenchymal stem cell line'}, 'GSM1899424': {'line': 'TTC-466', 'type': \"Ewing's sarcoma cell line\"}, 'GSM2158318': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158317': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158316': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158315': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158314': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158313': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158312': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158311': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158310': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM1274542': {'line': 'MCF7'}, 'GSM1274543': {'line': 'MCF7'}, 'GSM1274546': {'line': 'MCF7'}, 'GSM1274547': {'line': 'MCF10A'}, 'GSM1274544': {'line': 'MCF7'}, 'GSM1274545': {'line': 'MCF7'}, 'GSM2232224': {'status': 'HCV', 'patient_identifier': 'B929', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'high ISG'}, 'GSM1274549': {'line': 'MCF10A'}, 'GSM2232222': {'status': 'HCV', 'patient_identifier': 'C71', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'high ISG'}, 'GSM2232223': {'status': 'HCV', 'patient_identifier': 'C106', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'high ISG'}, 'GSM2232220': {'status': 'non-HCV', 'patient_identifier': 'C145', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'NA'}, 'GSM2232221': {'status': 'HCV', 'patient_identifier': 'C186', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'high ISG'}, 'GSM750769': {'line': 'HMLE', 'state': 'Epithelial', 'variation': 'expressing pWZL-Twist-ER', 'treatment': 'no'}, 'GSM2188231': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siBRD4 #3'}, 'GSM2188230': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siBRD4 #3'}, 'GSM2188233': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siBRD4 #4'}, 'GSM2188232': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siBRD4 #3'}, 'GSM2188235': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siBRD4 #4'}, 'GSM2188234': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siBRD4 #4'}, 'GSM2226814': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2226815': {'information': 'Control - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2680458': {'line': 'Breast cancer cell line MDAMB231', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2565306': {'construction': 'PLATE-Seq', 'drug': 'Bax channel blocker'}, 'GSM2680459': {'line': 'Breast cancer cell line MDAMB231', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM907558': {'gender': 'M', 'age': '83', 'histologics': 'Mixed', 'Stage': 'I'}, 'GSM907559': {'gender': 'M', 'age': '74', 'histologics': 'Diffuse', 'Stage': 'IV'}, 'GSM907552': {'gender': 'M', 'age': '61', 'histologics': 'Intestine', 'Stage': 'III'}, 'GSM907553': {'gender': 'M', 'age': '64', 'histologics': 'Diffuse', 'Stage': 'I'}, 'GSM907550': {'gender': 'M', 'age': '52', 'histologics': 'Diffuse', 'Stage': 'III'}, 'GSM907551': {'gender': 'M', 'age': '47', 'histologics': 'Intestine', 'Stage': 'III'}, 'GSM907556': {'gender': 'M', 'age': 'unknown', 'histologics': 'unknown', 'Stage': 'IV'}, 'GSM907557': {'gender': 'M', 'age': 'unknown', 'histologics': 'unknown', 'Stage': 'II'}, 'GSM907554': {'gender': 'M', 'age': '55', 'histologics': 'Diffuse', 'Stage': 'III'}, 'GSM907555': {'gender': 'M', 'age': '72', 'histologics': 'Diffuse', 'Stage': 'III'}, 'GSM2871636': {'tissue': 'Knee', 'stage': '17 wks'}, 'GSM2871637': {'tissue': 'Knee', 'stage': '17 wks'}, 'GSM2871634': {'tissue': 'Achilles Tendon', 'stage': '17 wks'}, 'GSM2871635': {'tissue': 'Knee', 'stage': '17 wks'}, 'GSM2871632': {'tissue': 'Achilles Tendon', 'stage': '17 wks'}, 'GSM2871633': {'tissue': 'Achilles Tendon', 'stage': '17 wks'}, 'GSM2871630': {'tissue': 'Anterior/Posterior Cruciate Ligament', 'stage': '17 wks'}, 'GSM2871631': {'tissue': 'Anterior/Posterior Cruciate Ligament', 'stage': '17 wks'}, 'GSM2226813': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2816066': {'line': 'H9'}, 'GSM2871638': {'tissue': 'Knee', 'stage': '17 wks'}, 'GSM2871639': {'tissue': 'hind limb bud', 'stage': '6 wks'}, 'GSM2309497': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'Isoginkgetin', 'dose': '100 uM'}, 'GSM2816060': {'line': 'H9'}, 'GSM2705350': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 15', 'dilution': '1:10'}, 'GSM2309491': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'Crizotinib', 'dose': '10 uM'}, 'GSM2265644': {'antibody': 'none', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265645': {'antibody': 'H3K27M (Millipore, ABE419)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265646': {'antibody': 'H3K27M (Millipore, ABE419)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265647': {'antibody': 'BRD2 (CST, 5848)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265640': {'antibody': 'H3.3 (Millipore, 09-838)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265641': {'antibody': 'H3.3 (Millipore, 09-838)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265642': {'antibody': 'Homemade (ref PMID: 24081332)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265643': {'antibody': 'none', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2565308': {'construction': 'PLATE-Seq', 'drug': 'Plinabulin (NPI-2358)'}, 'GSM2309493': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'GF 109203X', 'dose': '10 uM'}, 'GSM2265648': {'antibody': 'BRD2 (CST, 5848)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265649': {'antibody': 'H3K27ac (CST, 8173)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2344751': {'status': 'unknown', 'sirna': 'none', 'type': 'PBMC derived macrophage'}, 'GSM1317638': {'expression': 'empty vector', 'line': 'MCF12A', 'type': 'breast cancer cancer cell line'}, 'GSM2816068': {'line': 'H9'}, 'GSM2287386': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2816069': {'line': 'H9'}, 'GSM2303500': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2886577': {'age': '28', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': '-'}, 'GSM2303501': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACCR015A'}, 'GSM1317639': {'expression': 'miR-424 over-expressed', 'line': 'MCF12A', 'type': 'breast cancer cancer cell line'}, 'GSM2886579': {'age': '65', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'no', 'npm1': '-', 'flt3': '-'}, 'GSM2886578': {'age': '28', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': '-'}, 'GSM2153506': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2275155': {'area_under_the_curve': '0', 'siteandparticipantcode': '161201', 'baseline_area_under_the_curve': '0.402733906', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '0', 'auc_percent_of_baseline': '0', 'trunkbarcode': '941237', 'sampleID': 'S13165', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1573', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'Control', 'name': 'AbATE_161201', 'gender': 'Male', 'age': '10', 'race': 'White; White', 'libraryid': 'lib1573', 'studysiteshort': 'YALE'}, 'GSM2275154': {'area_under_the_curve': '0.331879219', 'siteandparticipantcode': '595950', 'baseline_area_under_the_curve': '0.691479688', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '47.99551234', 'auc_percent_of_baseline': '47.99551234', 'trunkbarcode': '940639', 'sampleID': 'S13164', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1572', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_595950', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1572', 'studysiteshort': 'YALE'}, 'GSM2275157': {'area_under_the_curve': '0.343153906', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '68.55047009', 'auc_percent_of_baseline': '68.55047009', 'trunkbarcode': '947063', 'sampleID': 'S13167', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1575', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'race': 'White; White', 'libraryid': 'lib1575', 'studysiteshort': 'YALE'}, 'GSM2275156': {'area_under_the_curve': '0.067389531', 'siteandparticipantcode': '781179', 'baseline_area_under_the_curve': '0.547132656', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '12.31685415', 'auc_percent_of_baseline': '12.31685415', 'trunkbarcode': '946690', 'sampleID': 'S13166', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1574', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'Control', 'name': 'AbATE_781179', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib1574', 'studysiteshort': 'YALE'}, 'GSM2275151': {'area_under_the_curve': '0.130951875', 'siteandparticipantcode': '689968', 'baseline_area_under_the_curve': '0.873943438', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '14.98402178', 'auc_percent_of_baseline': '14.98402178', 'trunkbarcode': '940366', 'sampleID': 'S13161', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1569', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_689968', 'gender': 'Female', 'age': '25', 'race': 'White', 'libraryid': 'lib1569', 'studysiteshort': 'PNRI'}, 'GSM2275150': {'area_under_the_curve': '0.671154219', 'siteandparticipantcode': '314565', 'baseline_area_under_the_curve': '1.256817344', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '53.40109461', 'auc_percent_of_baseline': '53.40109461', 'trunkbarcode': '931062', 'sampleID': 'S13160', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1568', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'Control', 'name': 'AbATE_314565', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1568', 'studysiteshort': 'PNRI'}, 'GSM2275153': {'area_under_the_curve': '0.081043281', 'siteandparticipantcode': '229642', 'baseline_area_under_the_curve': '0.388976719', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '20.83499535', 'auc_percent_of_baseline': '20.83499535', 'trunkbarcode': '932859', 'sampleID': 'S13163', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1571', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_229642', 'gender': 'Female', 'age': '10', 'race': 'White; White', 'libraryid': 'lib1571', 'studysiteshort': 'YALE'}, 'GSM2275152': {'area_under_the_curve': '0.132917188', 'siteandparticipantcode': '604690', 'baseline_area_under_the_curve': '0.477415781', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '27.84097064', 'auc_percent_of_baseline': '27.84097064', 'trunkbarcode': '932861', 'sampleID': 'S13162', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1570', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'Control', 'name': 'AbATE_604690', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1570', 'studysiteshort': 'MC GEORGIA'}, 'GSM2153503': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2275159': {'area_under_the_curve': '0.50312', 'siteandparticipantcode': '757437', 'baseline_area_under_the_curve': '0.862306719', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '58.34582859', 'auc_percent_of_baseline': '58.34582859', 'trunkbarcode': '948827', 'sampleID': 'S13169', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1577', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'Control', 'name': 'AbATE_757437', 'gender': 'Male', 'age': '8', 'race': 'White', 'libraryid': 'lib1577', 'studysiteshort': 'YALE'}, 'GSM2275158': {'area_under_the_curve': '0.682532344', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '121.8784632', 'auc_percent_of_baseline': '121.8784632', 'trunkbarcode': '948450', 'sampleID': 'S13168', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1576', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'race': 'White', 'libraryid': 'lib1576', 'studysiteshort': 'YALE'}, 'GSM2071847': {'type': 'breast cancer'}, 'GSM2071846': {'type': 'breast cancer'}, 'GSM1936790': {'line': 'H1975 erlotinib-resistant H1975 cells (strain M2)', 'type': 'Lung adenocarcinoma'}, 'GSM1936791': {'line': 'H1975 erlotinib-resistant H1975 cells (strain M1)', 'type': 'Lung adenocarcinoma'}, 'GSM3190716': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.645178'}, 'GSM3190717': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.024719'}, 'GSM2620902': {'1': 'TATCCTCT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'B5', 'volume': '30uL', 'ul': '27.19', 's': 'S503', 'treatment': 'IA, followed by LPS', 'donor': '1685', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'AGAGGATA'}, 'GSM3190715': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.32991'}, 'GSM2306239': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HeLa cells', 'compound': 'AX15836'}, 'GSM1273839': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'overt GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1273838': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'overt GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1273837': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'overt GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1273836': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'overt GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1273835': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'overt GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM3190710': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'Yes', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.189863'}, 'GSM2153508': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2278053': {'line': 'MDA-MB-468', 'type': 'MDA-MB-468 (Human adenocarcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278052': {'line': 'MDA-MB-468', 'type': 'MDA-MB-468 (Human adenocarcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278051': {'line': 'MDA-MB-468', 'type': 'MDA-MB-468 (Human adenocarcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278050': {'line': 'MDA-MB-468', 'type': 'MDA-MB-468 (Human adenocarcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2790171': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'control'}, 'GSM2790170': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'control'}, 'GSM2790173': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'shMYCN'}, 'GSM2790172': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'shMYCN'}, 'GSM1215106': {'age': '35', 'tissue': 'ovary'}, 'GSM1215105': {'age': '28', 'tissue': 'ovary'}, 'GSM1215104': {'age': '34', 'tissue': 'ovary'}, 'GSM1215103': {'age': '32', 'tissue': 'ovary'}, 'GSM1215102': {'age': '40', 'tissue': 'ovary'}, 'GSM1131339': {'with': 'Progesterone', 'type': 'primary human umbilical vein endothelial cells', 'passage': '4-6'}, 'GSM1131338': {'with': 'none', 'type': 'primary human umbilical vein endothelial cells', 'passage': '4-6'}, 'GSM2666130': {'age': 'Day 130', 'well': 'H5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1166074': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM2406928': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406929': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406924': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406925': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406926': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406927': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM1859141': {'type': 'Epidermal keratinocytes derived Neural crest', 'passage': '2'}, 'GSM2333542': {'type': 'dermal fibroblasts, immortalized', 'treatment': 'none'}, 'GSM2333541': {'type': 'dermal fibroblasts, immortalized', 'treatment': 'UV-C, 12 J/m2'}, 'GSM1704849': {'origin': 'fibroblast', 'type': 'iPSC', 'description': 'iPSC'}, 'GSM1704848': {'origin': 'fibroblast', 'type': 'iPSC', 'description': 'iPSC'}, 'GSM1704843': {'origin': 'iPSC13L', 'type': 'FACS sorted CD (45+/34-/33+/11b-/15+)', 'description': 'promyelocytes-differentiated from iPSC'}, 'GSM1704842': {'origin': 'iPSC13L', 'type': 'FACS sorted CD (45+/34-/33+/11b-/15+)', 'description': 'promyelocytes-differentiated from iPSC'}, 'GSM1704841': {'origin': 'iPSC13L', 'type': 'FACS sorted CD (45+/34+/33+)', 'description': 'myeloid progenitors-differentiated from iPSC'}, 'GSM1704840': {'origin': 'iPSC13L', 'type': 'FACS sorted CD (45+/34+/33+)', 'description': 'myeloid progenitors-differentiated from iPSC'}, 'GSM1704847': {'origin': 'human bone marrow', 'type': 'FACS sorted CD (45+/34+/33+/123+)', 'description': 'GMP promyelocytes sorted from BM'}, 'GSM1704846': {'origin': 'human bone marrow', 'type': 'FACS sorted CD (45+/34+/33+/123+)', 'description': 'GMP promyelocytes sorted from BM'}, 'GSM1704845': {'origin': 'human bone marrow', 'type': 'FACS sorted CD (45+/34-/33+/11b-/15+)', 'description': 'promyelocytes sorted from BM'}, 'GSM1704844': {'origin': 'human bone marrow', 'type': 'FACS sorted CD (45+/34-/33+/11b-/15+)', 'description': 'promyelocytes sorted from BM'}, 'GSM1963914': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963915': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963916': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963917': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963910': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963911': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963912': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963913': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963918': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963919': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM2417579': {'sirna': 'ambion silencer select s37905'}, 'GSM2417578': {'sirna': 'ambion silencer select s37905'}, 'GSM2417575': {'sirna': 'ambion silencer select CAT 4390844'}, 'GSM2417574': {'sirna': 'ambion silencer select CAT 4390844'}, 'GSM2417577': {'sirna': 'ambion silencer select s37905'}, 'GSM2417576': {'sirna': 'ambion silencer select CAT 4390844'}, 'GSM1508030': {'line': 'H3 ES cells', 'treatment': 'siRNA knockdown by nucleofection + 72 hrs in neural culture media + Retinoic Acid', 'construct': 'GFP under 9kb murine Mnx1 promoter'}, 'GSM1508031': {'line': 'H3 ES cells', 'treatment': 'siRNA knockdown by nucleofection + 72 hrs in neural culture media + Retinoic Acid', 'construct': 'GFP under 9kb murine Mnx1 promoter'}, 'GSM1921468': {'group': 'low', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1921469': {'group': 'low', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1921466': {'group': 'high', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1921467': {'group': 'high', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1921464': {'group': 'high', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1921465': {'group': 'high', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM2348479': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348478': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348471': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348470': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348473': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348472': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348475': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348474': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348477': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348476': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2433963': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1556288': {'type': 'myometrial cells grown in culture'}, 'GSM1556289': {'type': 'myometrial cells grown in culture'}, 'GSM2433964': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2458760': {'induction': '2h before harvesting', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'labeled RNA (eluate)'}, 'GSM2307199': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307198': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307197': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307196': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307195': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307194': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307193': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307192': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307191': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307190': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM3271583': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, DMSO for 7d, then 500nM LGX818 for 7d'}, 'GSM1960269': {'derivative': 'PC9-GR2', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM1960268': {'derivative': 'PC9-GR2', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM1960267': {'derivative': 'Parental', 'line': 'PC9 NSCLC cell line', 'treatment': 'WZ4002'}, 'GSM1960266': {'derivative': 'Parental', 'line': 'PC9 NSCLC cell line', 'treatment': 'WZ4002'}, 'GSM1960265': {'derivative': 'Parental', 'line': 'PC9 NSCLC cell line', 'treatment': 'Gefitinib'}, 'GSM1960264': {'derivative': 'Parental', 'line': 'PC9 NSCLC cell line', 'treatment': 'Gefitinib'}, 'GSM1960263': {'derivative': 'Parental', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM1960262': {'derivative': 'Parental', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM2808456': {'region': 'peripheral retina'}, 'GSM2808457': {'region': 'central retina'}, 'GSM2808454': {'region': 'peripheral retina'}, 'GSM2808455': {'region': 'peripheral retina'}, 'GSM2808452': {'region': 'peripheral retina'}, 'GSM2808453': {'region': 'peripheral retina'}, 'GSM2808450': {'region': 'whole retina'}, 'GSM2808451': {'region': 'whole retina'}, 'GSM2808458': {'region': 'central retina'}, 'GSM2808459': {'region': 'nasal central'}, 'GSM1937861': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1844482': {'line': 'Kasumi-1', 'agent': 'GSK690_1uM', 'point': '24h'}, 'GSM1844483': {'line': 'Kasumi-1', 'agent': 'DMSO', 'point': '24h'}, 'GSM1844480': {'line': 'Kasumi-1', 'agent': 'RN-1_1uM', 'point': '24h'}, 'GSM1844481': {'line': 'Kasumi-1', 'agent': 'GSK690*_1uM', 'point': '24h'}, 'GSM1844486': {'line': 'Kasumi-1', 'agent': 'GSK690_1uM', 'point': '24h'}, 'GSM1844484': {'line': 'Kasumi-1', 'agent': 'RN-1_1uM', 'point': '24h'}, 'GSM1844485': {'line': 'Kasumi-1', 'agent': 'GSK690*_1uM', 'point': '24h'}, 'GSM2374209': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2035729': {'with': 'lentiviral shRNA vector targeting HOXA7', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM1402579': {'control': 'TRUE', 'line': 'P493-6', 'type': 'B cells', 'treatment': 'FALSE'}, 'GSM2035759': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035758': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM1166076': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2035751': {'line': 'HACAT', 'treatment': 'Control'}, 'GSM2035750': {'line': 'HACAT', 'treatment': 'Control'}, 'GSM2035753': {'line': 'HACAT', 'treatment': 'Control'}, 'GSM2035752': {'line': 'HACAT', 'treatment': 'Control'}, 'GSM2035755': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2112655': {'culture': 'cerebral organoids', 'time': '26 days from the beginning of organoid culture'}, 'GSM2035757': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035756': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2374201': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374200': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374203': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374202': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM501700': {'modification': 'Tet-on FLp53', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM2374205': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374204': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2192698': {'type': 'Human mammary epithelial cells'}, 'GSM2192699': {'type': 'Human mammary epithelial cells'}, 'GSM2192694': {'type': 'Human mammary epithelial cells'}, 'GSM2192695': {'type': 'Human mammary epithelial cells'}, 'GSM2192696': {'type': 'Human mammary epithelial cells'}, 'GSM2192697': {'type': 'Human mammary epithelial cells'}, 'GSM2192690': {'type': 'Human mammary epithelial cells'}, 'GSM2192691': {'type': 'Human mammary epithelial cells'}, 'GSM2192692': {'type': 'Human mammary epithelial cells'}, 'GSM2192693': {'type': 'Human mammary epithelial cells'}, 'GSM1955740': {'a': '53257', 'cd38': '1047', 'cd49f': '338', 'w': '67088', 'h': '52025', 'lin': '400', 'cd34': '4426', 'cd90': '1121', 'cd7': '187', 'cd10': '622', 'time': '11135', 'cd135': '959', 'cd45ra': '227'}, 'GSM1955741': {'a': '53386', 'cd38': '638', 'cd49f': '1507', 'w': '62477', 'h': '56000', 'lin': '1082', 'cd34': '7323', 'cd90': '2938', 'cd7': '-32', 'cd10': '513', 'time': '10913', 'cd135': '5310', 'cd45ra': '278'}, 'GSM1955742': {'a': '56289', 'cd38': '286', 'cd49f': '174', 'w': '67321', 'h': '54796', 'lin': '-67', 'cd34': '6632', 'cd90': '622', 'cd7': '212', 'cd10': '759', 'time': '10698', 'cd135': '1445', 'cd45ra': '237'}, 'GSM1955743': {'a': '62010', 'cd38': '-56', 'cd49f': '613', 'w': '67088', 'h': '60576', 'lin': '0', 'cd34': '7984', 'cd90': '5461', 'cd7': '-42', 'cd10': '861', 'time': '10501', 'cd135': '603', 'cd45ra': '-7'}, 'GSM1955744': {'a': '60017', 'cd38': '186', 'cd49f': '1308', 'w': '66470', 'h': '59173', 'lin': '1160', 'cd34': '11528', 'cd90': '3717', 'cd7': '187', 'cd10': '919', 'time': '10268', 'cd135': '2859', 'cd45ra': '230'}, 'GSM1955745': {'a': '55206', 'cd38': '946', 'cd49f': '268', 'w': '67455', 'h': '53636', 'lin': '241', 'cd34': '5603', 'cd90': '1219', 'cd7': '198', 'cd10': '934', 'time': '10041', 'cd135': '3766', 'cd45ra': '149'}, 'GSM1955746': {'a': '63192', 'cd38': '392', 'cd49f': '391', 'w': '67723', 'h': '61152', 'lin': '203', 'cd34': '6028', 'cd90': '1943', 'cd7': '99', 'cd10': '754', 'time': '9849', 'cd135': '6645', 'cd45ra': '376'}, 'GSM1955747': {'a': '72299', 'cd38': '763', 'cd49f': '727', 'w': '68614', 'h': '69056', 'lin': '-211', 'cd34': '5090', 'cd90': '1231', 'cd7': '220', 'cd10': '680', 'time': '9653', 'cd135': '6235', 'cd45ra': '995'}, 'GSM1955748': {'a': '62168', 'cd38': '689', 'cd49f': '560', 'w': '67217', 'h': '60613', 'lin': '110', 'cd34': '4784', 'cd90': '-119', 'cd7': '345', 'cd10': '759', 'time': '9449', 'cd135': '7039', 'cd45ra': '4199'}, 'GSM1955749': {'a': '43169', 'cd38': '165', 'cd49f': '1274', 'w': '64756', 'h': '43689', 'lin': '589', 'cd34': '7980', 'cd90': '366', 'cd7': '41', 'cd10': '19614', 'time': '11958', 'cd135': '-696', 'cd45ra': '8005'}, 'GSM1704025': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'M-013970-00-0005'}, 'GSM2093541': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM1704027': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'M-013970-00-0005'}, 'GSM1704026': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'M-013970-00-0005'}, 'GSM1704021': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'L-017263-00-0005'}, 'GSM1704020': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'L-017263-00-0005'}, 'GSM1704023': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'L-017263-00-0005'}, 'GSM1704022': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'L-017263-00-0005'}, 'GSM2093548': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2093549': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM1704029': {'vendor': 'Life Technologies', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': '4392420-s47042'}, 'GSM1704028': {'vendor': 'Life Technologies', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': '4392420-s47042'}, 'GSM2122561': {'line': 'HTR-8/SVneo', 'transfection': 'siH19', 'variation': 'H19 knockdown', 'time': '48h after transfection'}, 'GSM2122560': {'line': 'HTR-8/SVneo', 'transfection': 'siH19', 'variation': 'H19 knockdown', 'time': '48h after transfection'}, 'GSM2122563': {'line': 'HTR-8/SVneo', 'transfection': 'siH19', 'variation': 'H19 knockdown', 'time': '48h after transfection'}, 'GSM2122562': {'line': 'HTR-8/SVneo', 'transfection': 'siH19', 'variation': 'H19 knockdown', 'time': '48h after transfection'}, 'GSM2122564': {'line': 'HTR-8/SVneo', 'transfection': 'siH19', 'variation': 'H19 knockdown', 'time': '48h after transfection'}, 'GSM2898840': {'line': 'NA18511', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898841': {'line': 'NA18520', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898842': {'line': 'NA18852', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898843': {'line': 'NA18855', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898844': {'line': 'NA18870', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898845': {'line': 'NA18912', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898846': {'line': 'NA19098', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898847': {'line': 'NA19101', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM565952': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'PTGIS inhibitor'}, 'GSM565953': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'HAS1 inhibitor'}, 'GSM565951': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'CXCR2 inhibitor'}, 'GSM565956': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'NQO1 inhibitor'}, 'GSM565957': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'DMSO only'}, 'GSM565954': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'PFKFB3 inhibitor'}, 'GSM565955': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'JAK inhibitor'}, 'GSM565958': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'CXCR2 inhibitor'}, 'GSM565959': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'PTGIS inhibitor'}, 'GSM1348542': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM1348543': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM2050561': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM1348541': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM1348546': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM1348547': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM1348544': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM1348545': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM1348548': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM1348549': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM2610769': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610768': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1299114': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1663103': {'antibody': 'N/A', 'treatment': '5day DOX', 'integration': 'chr8'}, 'GSM1663100': {'antibody': 'N/A', 'treatment': '5day DOX', 'integration': 'chr1'}, 'GSM2100940': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3020'}, 'GSM2100947': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch4', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '5/8/2014', 'id': '2000'}, 'GSM2100946': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch4', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '5/8/2014', 'id': '2000'}, 'GSM2109575': {'subtype': 'A', 'state': 'Tumor'}, 'GSM1354568': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': 'control', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM2109577': {'subtype': 'A', 'state': 'Tumor'}, 'GSM2109576': {'subtype': 'A', 'state': 'Tumor'}, 'GSM1354565': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': '10 nM E2', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354564': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': '10 nM E2', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354567': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM genistein', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354566': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM genistein', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354561': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM liquiritigenin', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354560': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM liquiritigenin', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354563': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': 'control', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354562': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': 'control', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1956091': {'a': '49306', 'cd38': '835', 'cd49f': '199', 'w': '67064', 'h': '48183', 'lin': '822', 'cd34': '12975', 'cd90': '1547', 'cd7': '382', 'cd10': '753', 'time': '3179', 'cd135': '3914', 'cd45ra': '320'}, 'GSM1956090': {'a': '52763', 'cd38': '98', 'cd49f': '379', 'w': '67627', 'h': '51132', 'lin': '427', 'cd34': '7059', 'cd90': '1566', 'cd7': '176', 'cd10': '767', 'time': '2970', 'cd135': '2443', 'cd45ra': '256'}, 'GSM1956093': {'a': '62531', 'cd38': '54', 'cd49f': '260', 'w': '63776', 'h': '64257', 'lin': '1002', 'cd34': '6330', 'cd90': '1990', 'cd7': '302', 'cd10': '1024', 'time': '3589', 'cd135': '1668', 'cd45ra': '202'}, 'GSM1956092': {'a': '54117', 'cd38': '599', 'cd49f': '225', 'w': '67522', 'h': '52525', 'lin': '117', 'cd34': '4736', 'cd90': '3', 'cd7': '91', 'cd10': '376', 'time': '3374', 'cd135': '2848', 'cd45ra': '56'}, 'GSM1956095': {'a': '61243', 'cd38': '-108', 'cd49f': '1161', 'w': '70247', 'h': '57136', 'lin': '943', 'cd34': '5581', 'cd90': '3284', 'cd7': '444', 'cd10': '706', 'time': '4043', 'cd135': '1948', 'cd45ra': '178'}, 'GSM1956094': {'a': '44326', 'cd38': '762', 'cd49f': '596', 'w': '63821', 'h': '45517', 'lin': '37', 'cd34': '8617', 'cd90': '103', 'cd7': '137', 'cd10': '22787', 'time': '3804', 'cd135': '315', 'cd45ra': '7159'}, 'GSM1956097': {'a': '45800', 'cd38': '104', 'cd49f': '488', 'w': '64610', 'h': '46456', 'lin': '585', 'cd34': '5828', 'cd90': '-76', 'cd7': '94', 'cd10': '14706', 'time': '6871', 'cd135': '2420', 'cd45ra': '8960'}, 'GSM1956096': {'a': '40800', 'cd38': '485', 'cd49f': '348', 'w': '66574', 'h': '40164', 'lin': '290', 'cd34': '5779', 'cd90': '1827', 'cd7': '172', 'cd10': '613', 'time': '4240', 'cd135': '4330', 'cd45ra': '295'}, 'GSM1956099': {'a': '66695', 'cd38': '1118', 'cd49f': '393', 'w': '67161', 'h': '65081', 'lin': '213', 'cd34': '6621', 'cd90': '2553', 'cd7': '-26', 'cd10': '598', 'time': '6411', 'cd135': '2442', 'cd45ra': '158'}, 'GSM1956098': {'a': '47019', 'cd38': '1037', 'cd49f': '591', 'w': '64502', 'h': '47773', 'lin': '-28', 'cd34': '10487', 'cd90': '771', 'cd7': '400', 'cd10': '30812', 'time': '6657', 'cd135': '2398', 'cd45ra': '6292'}, 'GSM2100949': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch4', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '5/8/2014', 'id': '5a'}, 'GSM1166070': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2802979': {'line': 'hMSC-TERT4', 'variation': 'siMYBL1', 'stage': 'D7'}, 'GSM2802978': {'line': 'hMSC-TERT4', 'variation': 'siMYBL1', 'stage': 'D1'}, 'GSM1422448': {'patient': 'no', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM2802973': {'line': 'hMSC-TERT4', 'variation': 'siHSF1', 'stage': 'D7'}, 'GSM1299118': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM2802971': {'line': 'hMSC-TERT4', 'variation': 'siHSF1', 'stage': 'D1'}, 'GSM2802970': {'line': 'hMSC-TERT4', 'variation': 'siHSF1', 'stage': 'D0'}, 'GSM2802977': {'line': 'hMSC-TERT4', 'variation': 'siMYBL1', 'stage': 'D1'}, 'GSM2802976': {'line': 'hMSC-TERT4', 'variation': 'siMYBL1', 'stage': 'D0'}, 'GSM2802975': {'line': 'hMSC-TERT4', 'variation': 'siMYBL1', 'stage': 'D0'}, 'GSM2687195': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM2420308': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM1422446': {'patient': 'no', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1625957': {'type': 'mixture of multiple cell lines'}, 'GSM1422447': {'patient': 'no', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM2420300': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420301': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM1625959': {'type': 'mixed sample of both (1:16)'}, 'GSM1625958': {'type': 'mixed sample of both (1:4)'}, 'GSM2420304': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420305': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420306': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420307': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2644298': {'replication': 'biological replicate 2', 'type': 'epithelial', 'treatment': 'mock'}, 'GSM2307125': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2644292': {'replication': 'biological replicate 2', 'type': 'epithelial', 'treatment': 'HCMV-infected'}, 'GSM2644293': {'replication': 'biological replicate 1', 'type': 'epithelial', 'treatment': 'mock'}, 'GSM2644290': {'replication': 'biological replicate 2', 'type': 'epithelial', 'treatment': 'mock'}, 'GSM2644291': {'replication': 'biological replicate 1', 'type': 'epithelial', 'treatment': 'HCMV-infected'}, 'GSM2644296': {'replication': 'biological replicate 2', 'type': 'fibroblast', 'treatment': 'HCMV-infected'}, 'GSM2644297': {'replication': 'biological replicate 1', 'type': 'fibroblast', 'treatment': 'mock'}, 'GSM2644294': {'replication': 'biological replicate 2', 'type': 'fibroblast', 'treatment': 'mock'}, 'GSM1853582': {'line': 'HeLa', 'treatment': '20nM DIS3 siRNA - Dharmacon'}, 'GSM2029303': {'type': 'Control embryo h'}, 'GSM2029302': {'type': 'Control embryo h'}, 'GSM2029301': {'type': 'Control embryo k'}, 'GSM2029300': {'type': 'Heterologous pronuclear transfer embryo 20'}, 'GSM2029307': {'type': 'Heterologous pronuclear transfer embryo 28'}, 'GSM2029306': {'type': 'Heterologous pronuclear transfer embryo 27'}, 'GSM2029305': {'type': 'Heterologous pronuclear transfer embryo 27'}, 'GSM2029304': {'type': 'Control embryo h'}, 'GSM2527962': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527963': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2029309': {'type': 'Heterologous pronuclear transfer embryo 27'}, 'GSM2029308': {'type': 'Heterologous pronuclear transfer embryo 28'}, 'GSM2527966': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527967': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527964': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527965': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2308768': {'type': 'HFF cells', 'treatment': 'CPEB1 siRNA treatment', 'infection': 'HCMV infected'}, 'GSM1444193': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 7-8 h p.i.'}, 'GSM2649749': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649748': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649743': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649742': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649741': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649740': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649747': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649746': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649745': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649744': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1113388': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 10 post-vaccine'}, 'GSM1113389': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 0 (pre-vaccine)'}, 'GSM1113382': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 4 post-vaccine'}, 'GSM1113383': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 5 post-vaccine'}, 'GSM1113380': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 2 post-vaccine'}, 'GSM1113381': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 3 post-vaccine'}, 'GSM1113386': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 8 post-vaccine'}, 'GSM1113387': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 9 post-vaccine'}, 'GSM1113384': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 6 post-vaccine'}, 'GSM1113385': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 7 post-vaccine'}, 'GSM2183028': {'line': 'Human osteosarcoma U2OS cells', 'treatment': 'shRNA transfection', 'time': '48h'}, 'GSM2183025': {'line': 'Human osteosarcoma U2OS cells', 'treatment': 'shRNA transfection', 'time': '48h'}, 'GSM2183024': {'line': 'Human osteosarcoma U2OS cells', 'treatment': 'shRNA transfection', 'time': '48h'}, 'GSM2183027': {'line': 'Human osteosarcoma U2OS cells', 'treatment': 'shRNA transfection', 'time': '48h'}, 'GSM2183026': {'line': 'Human osteosarcoma U2OS cells', 'treatment': 'shRNA transfection', 'time': '48h'}, 'GSM2183023': {'line': 'Human osteosarcoma U2OS cells', 'treatment': 'shRNA transfection', 'time': '48h'}, 'GSM2182772': {'used': 'GTAC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182773': {'used': 'TAGC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182770': {'used': 'ACGT', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182771': {'used': 'CATG', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182776': {'used': 'AGCT, TGCA', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182777': {'used': 'AGTC, TACG', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182774': {'used': 'CAGT', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182775': {'used': 'CGAT', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2595193': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2182778': {'used': 'CGTA, GATC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182779': {'used': 'TCAG, TCGA', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2595196': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595197': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595194': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595195': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM1505848': {'gender': 'male', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '07-01'}, 'GSM2995499': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995498': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2210110': {'source': 'H9 human embryonic stem cells', 'state': 'undifferentiated', 'type': 'human embryonic stem cells', 'stiffness': '60kPa'}, 'GSM2210111': {'source': 'H9 human embryonic stem cells', 'state': 'undifferentiated', 'type': 'human embryonic stem cells', 'stiffness': '60kPa'}, 'GSM2210112': {'source': 'H9 human embryonic stem cells', 'state': 'induced to mesoderm', 'type': 'multipotent mesoderm progenitors', 'stiffness': '400Pa'}, 'GSM2210113': {'source': 'H9 human embryonic stem cells', 'state': 'induced to mesoderm', 'type': 'multipotent mesoderm progenitors', 'stiffness': '400Pa'}, 'GSM2995493': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2210115': {'source': 'H9 human embryonic stem cells', 'state': 'induced to mesoderm', 'type': 'multipotent mesoderm progenitors', 'stiffness': '60kPa'}, 'GSM2995491': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995490': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2361683': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361682': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361681': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361680': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361687': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361686': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361685': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361684': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361689': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361688': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1216788': {'gender': 'Female', 'age': '47', 'bmi': '22.9', 'hba1c': '5', 'tissue': 'pancreatic islets', 'birth': '1963'}, 'GSM1216789': {'gender': 'Female', 'age': '69', 'bmi': '21.5', 'hba1c': '5.2', 'tissue': 'pancreatic islets', 'birth': '1941'}, 'GSM2287188': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2545877': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM442019': {'type': 'Cervical cancer cell line', 'line': 'HeLa', 'replicate': '1', 'treatment': 'EGF'}, 'GSM442018': {'type': 'Cervical cancer cell line', 'line': 'HeLa', 'replicate': '3', 'treatment': 'Control'}, 'GSM442017': {'type': 'Cervical cancer cell line', 'line': 'HeLa', 'replicate': '2', 'treatment': 'Control'}, 'GSM442016': {'type': 'Cervical cancer cell line', 'line': 'HeLa', 'replicate': '1', 'treatment': 'Control'}, 'GSM2741453': {'strain': 'T47D Flp control tumors', 'passages': '10 weeks'}, 'GSM2741454': {'strain': 'T47D Flp control tumors', 'passages': '10 weeks'}, 'GSM2741455': {'strain': 'T47D wt/R330fsl tumors', 'passages': '10 weeks'}, 'GSM2741456': {'strain': 'T47D wt/R330fsl tumors', 'passages': '10 weeks'}, 'GSM2741457': {'strain': 'T47D wt/R330fsl tumors', 'passages': '10 weeks'}, 'GSM2741458': {'strain': 'T47D Flp control tumors', 'passages': '7 weeks'}, 'GSM2741459': {'strain': 'T47D Flp control tumors', 'passages': '7 weeks'}, 'GSM1216787': {'gender': 'Male', 'age': '75', 'bmi': '23.1', 'hba1c': '6.2', 'tissue': 'pancreatic islets', 'birth': '1935'}, 'GSM3594622': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594623': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594620': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594621': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594626': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594627': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594624': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594625': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1972963': {'line': 'H9', 'treatment': 'Control'}, 'GSM1972962': {'line': 'H9', 'treatment': 'Control'}, 'GSM3594628': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594629': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1972967': {'line': 'H9', 'treatment': 'TP53 Knock Down'}, 'GSM1972966': {'line': 'H9', 'treatment': 'TP53 Knock Down'}, 'GSM1972965': {'line': 'H9', 'treatment': 'TP53 Knock Down treated with Retinoic Acid (RA) for 4 days'}, 'GSM1972964': {'line': 'H9', 'treatment': 'TP53 Knock Down treated with Retinoic Acid (RA) for 4 days'}, 'GSM1077268': {'subtype': 'small RNA', 'line': 'HeLa', 'type': 'cervical cancer cells', 'variation': 'stably expressing double-strand (ds) interfering RNA against NCL (sh-NCL)'}, 'GSM1077263': {'subtype': 'small RNA', 'line': 'HeLa', 'type': 'cervical cancer cells', 'variation': 'stably expressing double-strand (ds) interfering RNA against scrambled sequences (sh-Scr)'}, 'GSM1077264': {'subtype': 'small RNA', 'line': 'HeLa', 'type': 'cervical cancer cells', 'variation': 'stably expressing double-strand (ds) interfering RNA against scrambled sequences (sh-Scr)'}, 'GSM1077265': {'subtype': 'small RNA', 'line': 'HeLa', 'type': 'cervical cancer cells', 'variation': 'stably expressing double-strand (ds) interfering RNA against scrambled sequences (sh-Scr)'}, 'GSM1077266': {'subtype': 'small RNA', 'line': 'HeLa', 'type': 'cervical cancer cells', 'variation': 'stably expressing double-strand (ds) interfering RNA against NCL (sh-NCL)'}, 'GSM1077267': {'subtype': 'small RNA', 'line': 'HeLa', 'type': 'cervical cancer cells', 'variation': 'stably expressing double-strand (ds) interfering RNA against NCL (sh-NCL)'}, 'GSM2100154': {'rin': '10', 'Sex': 'Male', 'sspg': '103', 'age': '64', 'bmi': '25.4', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '32315', 'dilution': '02:40:00 AM', 'passage': '13', 'indiv': '541', 'method': 'Life-Tech GITC'}, 'GSM2100155': {'rin': '10', 'Sex': 'Male', 'sspg': '202', 'age': '63', 'bmi': '37.2', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '11', 'indiv': '546', 'method': 'Life-Tech GITC'}, 'GSM2100156': {'rin': '10', 'Sex': 'Male', 'sspg': '202', 'age': '63', 'bmi': '37.2', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '11', 'indiv': '546', 'method': 'Life-Tech GITC'}, 'GSM2451075': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100150': {'rin': '10', 'Sex': 'Female', 'sspg': '86', 'age': '59', 'bmi': '31.9', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '31915', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '518', 'method': 'Life-Tech GITC'}, 'GSM2100151': {'rin': '10', 'Sex': 'Female', 'sspg': '86', 'age': '59', 'bmi': '31.9', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '31915', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '518', 'method': 'Life-Tech GITC'}, 'GSM2100152': {'rin': '10', 'Sex': 'Male', 'sspg': '103', 'age': '64', 'bmi': '25.4', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '32315', 'dilution': '02:40:00 AM', 'passage': '13', 'indiv': '541', 'method': 'Life-Tech GITC'}, 'GSM2100153': {'rin': '10', 'Sex': 'Male', 'sspg': '103', 'age': '64', 'bmi': '25.4', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '32315', 'dilution': '02:40:00 AM', 'passage': '13', 'indiv': '541', 'method': 'Life-Tech GITC'}, 'GSM2100158': {'rin': '10', 'Sex': 'Male', 'sspg': '282', 'age': '70', 'bmi': '36.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '551', 'method': 'Life-Tech GITC'}, 'GSM2100159': {'rin': '7.7', 'Sex': 'Male', 'sspg': '282', 'age': '70', 'bmi': '36.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '551', 'method': 'Life-Tech GITC'}, 'GSM2451078': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451079': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM618498': {'status': 'ETS-', 'name': 'PrEC', 'site': 'None', 'state': 'benign', 'line': 'PrEC', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618499': {'status': 'ETS-', 'name': 'PrSMC', 'site': 'None', 'state': 'benign', 'line': 'PrSMC', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618496': {'status': 'ETS-', 'name': 'PrEC', 'site': 'None', 'state': 'benign', 'line': 'PrEC', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618497': {'status': 'ETS-', 'name': 'PrEC', 'site': 'None', 'state': 'benign', 'line': 'PrEC', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618494': {'status': 'ETS-', 'name': 'PWR-1E', 'site': 'None', 'state': 'benign', 'line': 'PWR-1E', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618495': {'status': 'ETS-', 'name': 'PrEC', 'site': 'None', 'state': 'benign', 'line': 'PrEC', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618492': {'status': 'ETS-', 'name': 'PC3', 'site': 'None', 'state': 'cancer', 'line': 'PC3', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618493': {'status': 'ETS-', 'name': 'PC3', 'site': 'None', 'state': 'cancer', 'line': 'PC3', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618490': {'status': 'ETS-', 'name': 'MDA PCa 2b', 'site': 'None', 'state': 'cancer', 'line': 'MDA PCa 2b', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618491': {'status': 'ERG+', 'name': 'NCI-H660', 'site': 'None', 'state': 'cancer', 'line': 'NCI-H660', 'type': 'Cell Line', 'id': 'NA'}, 'GSM2047628': {'well': 'B03', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047629': {'well': 'B04', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047620': {'well': 'A07', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047621': {'well': 'A08', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047622': {'well': 'A09', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047623': {'well': 'A10', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047624': {'well': 'A11', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047625': {'well': 'A12', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047626': {'well': 'B01', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047627': {'well': 'B02', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2388880': {'line': 'NoDice 293T'}, 'GSM2411898': {'line': '4105B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411899': {'line': '4105D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411890': {'line': '24472D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411891': {'line': '24472K', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411892': {'line': '25642B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411893': {'line': '25642C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411894': {'line': '25727B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411895': {'line': '25727G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411896': {'line': '2633B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411897': {'line': '2633D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2472202': {'type': 'primary tissue'}, 'GSM1538069': {'resection': '34.9', 'id': '1', 'sex': 'M'}, 'GSM2472200': {'type': 'primary tissue'}, 'GSM2472201': {'type': 'primary tissue'}, 'GSM2815745': {'line': 'H9'}, 'GSM2472206': {'type': 'primary tissue'}, 'GSM2445663': {'type': 'Macrophage'}, 'GSM2263372': {'group': 'RASP', 'gender': 'F', 'age': '37', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263373': {'group': 'Ctrl', 'gender': 'M', 'age': '27', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263370': {'group': 'RASP', 'gender': 'F', 'age': '21', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263371': {'group': 'RASP', 'gender': 'F', 'age': '25', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263376': {'group': 'Fy', 'gender': 'F', 'age': '37', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2263377': {'group': 'Fy', 'gender': 'F', 'age': '19', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2263374': {'group': 'Ctrl', 'gender': 'M', 'age': '41', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263375': {'group': 'Fy', 'gender': 'F', 'age': '21', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2263378': {'group': 'Fy', 'gender': 'F', 'age': '25', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2263379': {'group': 'RASNP', 'gender': 'M', 'age': '30', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM3124809': {'individual': 'mi417', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124808': {'individual': 'mi134', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124805': {'individual': 'mi424', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124804': {'individual': 'mi695', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124807': {'individual': 'mi424', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124806': {'individual': 'mi424', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124801': {'individual': 'mi323', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124800': {'individual': 'mi323', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124803': {'individual': 'mi695', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124802': {'individual': 'mi695', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM1612319': {'imortalization': 'telemorase', 'medium': 'F99', 'type': 'endothelial'}, 'GSM2416851': {'antibody': 'None', 'line': 'HeLa', 'type': 'nascent RNA labeled with 4sU 2hr ribo- RNA', 'treatment': '3 hr DRB 2hr 4sU-labeling', 'sequence': 'None'}, 'GSM2416850': {'antibody': 'None', 'line': 'HeLa', 'type': 'nascent RNA labeled with 4sU 2hr ribo- RNA', 'treatment': '3 hr DRB 2hr 4sU-labeling', 'sequence': 'None'}, 'GSM1980362': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980363': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2815749': {'line': 'H9'}, 'GSM2944208': {'gender': 'Male', 'age': '41', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944209': {'gender': 'Male', 'age': '41', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944204': {'gender': 'Female', 'age': '20', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944205': {'gender': 'Male', 'age': '42', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944206': {'gender': 'Male', 'age': '42', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944207': {'gender': 'Female', 'age': '25', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944200': {'gender': 'Male', 'age': '20', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944201': {'gender': 'Male', 'age': '21', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944202': {'gender': 'Female', 'age': '27', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944203': {'gender': 'Female', 'age': '20', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2049082': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049083': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049080': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049081': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049086': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049087': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049084': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049085': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049088': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049089': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2322523': {'replicate': '3', 'line': 'A2EN', 'group': 'infected with wild-type C .trachomatis', 'time': '6 h'}, 'GSM2322522': {'replicate': '2', 'line': 'A2EN', 'group': 'infected with wild-type C .trachomatis', 'time': '6 h'}, 'GSM2322521': {'replicate': '1', 'line': 'A2EN', 'group': 'infected with wild-type C .trachomatis', 'time': '6 h'}, 'GSM2322520': {'replicate': '3', 'line': 'A2EN', 'group': 'uninfected', 'time': '18 h'}, 'GSM2322527': {'replicate': '1', 'line': 'A2EN', 'group': 'infected with CpoS-deficient C .trachomatis', 'time': '6 h'}, 'GSM2322526': {'replicate': '3', 'line': 'A2EN', 'group': 'infected with wild-type C .trachomatis', 'time': '18 h'}, 'GSM2322525': {'replicate': '2', 'line': 'A2EN', 'group': 'infected with wild-type C .trachomatis', 'time': '18 h'}, 'GSM2322524': {'replicate': '1', 'line': 'A2EN', 'group': 'infected with wild-type C .trachomatis', 'time': '18 h'}, 'GSM2322529': {'replicate': '3', 'line': 'A2EN', 'group': 'infected with CpoS-deficient C .trachomatis', 'time': '6 h'}, 'GSM2322528': {'replicate': '2', 'line': 'A2EN', 'group': 'infected with CpoS-deficient C .trachomatis', 'time': '6 h'}, 'GSM1234079': {'replicate': '2', 'line': '19238', 'antibody': 'CTCF'}, 'GSM2492439': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492438': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2385618': {'line': '448T', 'type': 'glioblastoma stem cell'}, 'GSM2565465': {'construction': 'PLATE-Seq', 'drug': 'untreated'}, 'GSM2565464': {'construction': 'PLATE-Seq', 'drug': 'untreated'}, 'GSM2565466': {'construction': 'PLATE-Seq', 'drug': 'untreated'}, 'GSM2492437': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492436': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2565463': {'construction': 'PLATE-Seq', 'drug': 'untreated'}, 'GSM2492434': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2717444': {'status': 'control', 'tissue': 'corneal endothelium'}, 'GSM2717445': {'status': 'control', 'tissue': 'corneal endothelium'}, 'GSM2717440': {'status': 'Fuchs endothelial corneal dystrophy', 'tissue': 'corneal endothelium'}, 'GSM1446870': {'line': 'U2OS'}, 'GSM2717442': {'status': 'Fuchs endothelial corneal dystrophy', 'tissue': 'corneal endothelium'}, 'GSM2717443': {'status': 'Fuchs endothelial corneal dystrophy', 'tissue': 'corneal endothelium'}, 'GSM1194803': {'donor': 'donor B', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194804': {'donor': 'donor B', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194805': {'donor': 'donor A', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194806': {'donor': 'donor A', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194807': {'donor': 'donor A', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194808': {'donor': 'donor A', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194809': {'donor': 'donor B', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM2483539': {'line': 'A673 cells', 'rescue': 'mut9', 'RNAi': 'EWS/FLI', 'batch': '4'}, 'GSM2754698': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0392', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754699': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0392', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754694': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0391', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754695': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0425', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754696': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0425', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754697': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0392', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754690': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0414', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754691': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0391', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754692': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '12', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0718', 'previousdiagnosisoftb': 'No', 'tst': '16', 'type': 'Tcells'}, 'GSM2754693': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0391', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2374359': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM1654552': {'type': 'peripheral blood mononuclear cells', 'condition': 'chronic ischemic heart failure'}, 'GSM1654550': {'type': 'peripheral blood mononuclear cells', 'condition': 'chronic ischemic heart failure'}, 'GSM1654556': {'type': 'umbilical vein endothelial cells', 'treatment': '24h hypoxia treatment'}, 'GSM1654554': {'type': 'peripheral blood mononuclear cells', 'condition': 'chronic ischemic heart failure'}, 'GSM1654559': {'type': 'umbilical vein endothelial cells', 'treatment': '24h hypoxia treatment'}, 'GSM2808517': {'Stage': 'T2N0M0', 'tissue': 'colon cancer tissue', 'id': '55', 'Sex': 'male'}, 'GSM2808516': {'Stage': 'T4N0M0', 'tissue': 'nontumor colon tissue', 'id': '48', 'Sex': 'female'}, 'GSM2808515': {'Stage': 'T4N0M0', 'tissue': 'colon cancer tissue', 'id': '48', 'Sex': 'female'}, 'GSM2808514': {'Stage': 'T4N0M0', 'tissue': 'nontumor colon tissue', 'id': '34', 'Sex': 'male'}, 'GSM2808513': {'Stage': 'T4N0M0', 'tissue': 'colon cancer tissue', 'id': '34', 'Sex': 'male'}, 'GSM2808512': {'Stage': 'T4N2M0', 'tissue': 'nontumor colon tissue', 'id': '29', 'Sex': 'female'}, 'GSM2808511': {'Stage': 'T4N2M0', 'tissue': 'colon cancer tissue', 'id': '29', 'Sex': 'female'}, 'GSM2808519': {'Stage': 'T4N0M0', 'tissue': 'colon cancer tissue', 'id': '57', 'Sex': 'male'}, 'GSM2808518': {'Stage': 'T2N0M0', 'tissue': 'nontumor colon tissue', 'id': '55', 'Sex': 'male'}, 'GSM2616642': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616643': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2158298': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158299': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2616646': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616647': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616644': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2616645': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2158292': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158293': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158290': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158291': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158296': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158297': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2537187': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2537186': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2793981': {'protocol': 'none', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_1', 'type': 'Monocyte'}, 'GSM2793983': {'protocol': 'none', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_3', 'type': 'Monocyte'}, 'GSM2793982': {'protocol': 'none', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_2', 'type': 'Monocyte'}, 'GSM2793985': {'protocol': 'none', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_2', 'type': 'Monocyte'}, 'GSM2793984': {'protocol': 'none', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_1', 'type': 'Monocyte'}, 'GSM2793987': {'protocol': 'none', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_1', 'type': 'Monocyte'}, 'GSM2793986': {'protocol': 'none', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_3', 'type': 'Monocyte'}, 'GSM2793989': {'protocol': 'cultured in media (RPMI) with 10ng/mL LPS for 24 hours', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_1', 'type': 'Monocyte'}, 'GSM2793988': {'protocol': 'cultured in media (RPMI) for 24 hours', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_1', 'type': 'Monocyte'}, 'GSM1967873': {'line': 'K562', 'antibody': 'N-20 (Santa Cruz)', 'passage': '3-5'}, 'GSM1967872': {'line': 'K562', 'antibody': 'Serine-2-P (3E10)', 'passage': '3-5'}, 'GSM1967871': {'line': 'K562', 'antibody': 'Serine-2-P (3E10)', 'passage': '3-5'}, 'GSM1967870': {'line': 'K562', 'passage': '3-5'}, 'GSM1967874': {'line': 'K562', 'antibody': 'N-20 (Santa Cruz)', 'passage': '3-5'}, 'GSM2303458': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303459': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303456': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303457': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303454': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACCG268'}, 'GSM2303455': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303452': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACCG268'}, 'GSM2303453': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303450': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303451': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM1704559': {'protocol': 'Interferon treatment', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704558': {'protocol': '40 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM2730038': {'tissue': 'Adult peripheral blood', 'type': 'CD34+ derived erythroblasts', 'stage': 'Day 11'}, 'GSM2730039': {'tissue': 'Adult peripheral blood', 'type': 'CD34+ derived erythroblasts', 'stage': 'Day 14'}, 'GSM1704555': {'protocol': '24 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2730037': {'tissue': 'Adult peripheral blood', 'type': 'CD34+ derived erythroblasts', 'stage': 'Day 11'}, 'GSM1704557': {'protocol': '40 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704556': {'protocol': '24 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704551': {'protocol': '6 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704550': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704553': {'protocol': '12 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704552': {'protocol': '6 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM2339251': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305851': {'tissue': 'colon'}, 'GSM2339253': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339252': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305854': {'tissue': 'colon'}, 'GSM2305855': {'tissue': 'colon'}, 'GSM2339257': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305857': {'tissue': 'colon'}, 'GSM2305858': {'tissue': 'colon'}, 'GSM2339258': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2696518': {'status': '0', 'grade': '1', 'age': '36', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '1.9'}, 'GSM2696519': {'status': '2+', 'grade': '3', 'age': '61', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '4.8'}, 'GSM2696516': {'status': '2+', 'grade': '3', 'age': '49', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '4.3'}, 'GSM2696517': {'status': '0', 'grade': '1', 'age': '36', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '1.9'}, 'GSM2696514': {'status': '0', 'grade': '3', 'age': '56', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.6'}, 'GSM2696515': {'status': '2+', 'grade': '3', 'age': '49', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '4.3'}, 'GSM2696512': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Prophylactic Mastectomy', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696513': {'status': '0', 'grade': '3', 'age': '66', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '9.6'}, 'GSM2696510': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696511': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Breast tumor', 'histology': '--', 'type': 'Whole human breast tumor', 'size': '--'}, 'GSM1896218': {'individual': 'EU50', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896219': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896214': {'individual': 'EU48', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896215': {'individual': 'EU48', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896216': {'individual': 'EU50', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896217': {'individual': 'EU50', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896210': {'individual': 'EU46', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896211': {'individual': 'EU46', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896212': {'individual': 'EU46', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896213': {'individual': 'EU48', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2194328': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194329': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194326': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194327': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194324': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194325': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194322': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194323': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194320': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194321': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM801616': {'stimulation': 'none', 'line': 'HCT116', 'program': 'Bowtie', 'antibody': 'none', 'variation': 'Wild type'}, 'GSM1585239': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1585238': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM1969189': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 4', 'description': '36h RNAi for RNase L followed by poly-IC treatment for 6h', 'variation': '36h RNAi for RNase L'}, 'GSM2027259': {'line': 'MCF7', 'treatment': 'Control without E2 treatment'}, 'GSM1436354': {'type': 'HS181-derived embryoid bodies'}, 'GSM1436353': {'type': 'HS181-derived embryoid bodies'}, 'GSM1436352': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM1436351': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM1436350': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM2027253': {'line': 'MCF7', 'treatment': 'G9a knock down with E2 treatment'}, 'GSM2026970': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q96NG8'}, 'GSM2027257': {'line': 'MCF7', 'treatment': 'Control with E2 treatment'}, 'GSM2027256': {'line': 'MCF7', 'treatment': 'Control with E2 treatment'}, 'GSM2027255': {'line': 'MCF7', 'treatment': 'Control with E2 treatment'}, 'GSM2027254': {'line': 'MCF7', 'treatment': 'G9a knock down without E2 treatment'}, 'GSM2303618': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2153370': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2195013': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2153372': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153373': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153374': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153375': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153376': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2123963': {}, 'GSM2153378': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153379': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2195011': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195010': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195017': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195016': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2410138': {'line': 'pre-B ALL xenograft', 'treatment': 'IK1', 'variation': 'Ik6,BCR-ABL', 'time': '12 hour'}, 'GSM2195015': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2410134': {'line': 'pre-B ALL xenograft', 'treatment': 'empty vector', 'variation': 'Ik6,BCR-ABL', 'time': '48 hour'}, 'GSM2410135': {'line': 'pre-B ALL xenograft', 'treatment': 'empty vector', 'variation': 'Ik6,BCR-ABL', 'time': '48 hour'}, 'GSM2410136': {'line': 'pre-B ALL xenograft', 'treatment': 'IK1', 'variation': 'Ik6,BCR-ABL', 'time': 'uninduced'}, 'GSM2195014': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2410130': {'line': 'pre-B ALL xenograft', 'treatment': 'empty vector', 'variation': 'Ik6,BCR-ABL', 'time': '12 hour'}, 'GSM2410131': {'line': 'pre-B ALL xenograft', 'treatment': 'empty vector', 'variation': 'Ik6,BCR-ABL', 'time': '12 hour'}, 'GSM2410132': {'line': 'pre-B ALL xenograft', 'treatment': 'empty vector', 'variation': 'Ik6,BCR-ABL', 'time': '24 hour'}, 'GSM2410133': {'line': 'pre-B ALL xenograft', 'treatment': 'empty vector', 'variation': 'Ik6,BCR-ABL', 'time': '24 hour'}, 'GSM1946108': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19108', 'for': '30min'}, 'GSM2195019': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1195959': {'type': 'induced pluripotent stem cell', 'variation': 'Partial Trisomy 11:22'}, 'GSM1195958': {'type': 'induced pluripotent stem cell', 'variation': 'Trisomy 13'}, 'GSM2195018': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1195956': {'type': 'induced pluripotent stem cell', 'variation': 'Trisomy 8'}, 'GSM2157976': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2157977': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2157974': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157975': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1580959': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580958': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580957': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580956': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580955': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580954': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1089287': {'donor': 'C36', 'variation': 'DN-GRHL2-Expressing'}, 'GSM1089286': {'donor': 'C29', 'variation': 'DN-GRHL2-Expressing'}, 'GSM1089285': {'donor': 'C44', 'variation': 'H2B-GFP-Expressing'}, 'GSM1089284': {'donor': 'C36', 'variation': 'H2B-GFP-Expressing'}, 'GSM1089283': {'donor': 'C29', 'variation': 'H2B-GFP-Expressing'}, 'GSM1089282': {'donor': 'C36', 'variation': 'Untreated control'}, 'GSM1089281': {'donor': 'C29', 'variation': 'Untreated control'}, 'GSM869043': {'line': 'PC3', 'type': 'ribosome protected RNA', 'treatment': 'vehicle'}, 'GSM869042': {'line': 'PC3', 'type': 'polyA RNA', 'treatment': 'vehicle'}, 'GSM869041': {'line': 'PC3', 'type': 'ribosome protected RNA', 'treatment': 'PP242'}, 'GSM869040': {'line': 'PC3', 'type': 'polyA RNA', 'treatment': 'PP242'}, 'GSM869047': {'line': 'PC3', 'type': 'ribosome protected RNA', 'treatment': 'PP242'}, 'GSM869046': {'line': 'PC3', 'type': 'polyA RNA', 'treatment': 'PP242'}, 'GSM869045': {'line': 'PC3', 'type': 'ribosome protected RNA', 'treatment': 'rapamycin'}, 'GSM869044': {'line': 'PC3', 'type': 'polyA RNA', 'treatment': 'rapamycin'}, 'GSM2392014': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2316806': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2392016': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM830519': {'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'RHH001', 'readtype': '2x36', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': 'gen0118N'}, 'GSM2316804': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316803': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316802': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316801': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316800': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM1910794': {'stability': 'Stable', 'type': 'ileum'}, 'GSM2433766': {'sample_label': '3-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433767': {'sample_label': '4-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433764': {'sample_label': '1739', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433765': {'sample_label': '796', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433762': {'sample_label': '45-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433763': {'sample_label': '1961', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433760': {'sample_label': '39-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433761': {'sample_label': '40-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433768': {'sample_label': '33-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM1467492': {'status': 'poikiloderma with neutropenia (PN) patient', 'type': 'foreskin fibroblasts from PN patient (PNFF)', 'variation': 'PNFF-hMPN1; compensated with hMPN1'}, 'GSM1467493': {'status': 'poikiloderma with neutropenia (PN) patient', 'type': 'foreskin fibroblasts from PN patient (PNFF)', 'variation': 'PNFF-ev'}, 'GSM1467490': {'status': 'poikiloderma with neutropenia (PN) patient', 'type': 'foreskin fibroblasts from PN patient (PNFF)', 'variation': 'PNFF-hMPN1; compensated with hMPN1'}, 'GSM1467491': {'status': 'poikiloderma with neutropenia (PN) patient', 'type': 'foreskin fibroblasts from PN patient (PNFF)', 'variation': 'PNFF-ev'}, 'GSM1467494': {'status': 'poikiloderma with neutropenia (PN) patient', 'type': 'foreskin fibroblasts from PN patient (PNFF)', 'variation': 'PNFF-hMPN1; compensated with hMPN1'}, 'GSM1910795': {'stability': 'Stable', 'type': 'ileum'}, 'GSM2576766': {'type': 'iPSC-derived microglia'}, 'GSM2576767': {'type': 'iPSC-derived microglia'}, 'GSM2576764': {'type': 'iPSC-derived microglia'}, 'GSM2576765': {'type': 'iPSC-derived microglia'}, 'GSM2576762': {'type': 'iPSC-derived microglia'}, 'GSM2576761': {'type': 'iPSC-derived microglia'}, 'GSM2576768': {'type': 'iPSC-derived microglia'}, 'GSM2576769': {'type': 'iPSC-derived microglia'}, 'GSM1536202': {'type': 'H7 hESC cell line', 'point': '21 days'}, 'GSM1536203': {'type': 'H7 hESC cell line', 'point': '21 days'}, 'GSM1536200': {'type': 'H7 hESC cell line', 'point': '21 days'}, 'GSM1536201': {'type': 'H7 hESC cell line', 'point': '21 days'}, 'GSM1536204': {'type': 'H7 hESC cell line', 'point': '21 days'}, 'GSM1536205': {'type': 'H7 hESC cell line', 'point': '21 days'}, 'GSM424321': {'identifier': 'GM06993'}, 'GSM424320': {'identifier': 'GM06985'}, 'GSM424323': {'identifier': 'GM07000'}, 'GSM1406026': {'type': 'induced pluripotent stem cell'}, 'GSM1406027': {'type': 'induced pluripotent stem cell'}, 'GSM2391123': {'disease': 'NSCLC'}, 'GSM424322': {'identifier': 'GM06994'}, 'GSM2391125': {'disease': 'NSCLC'}, 'GSM2391124': {'disease': 'NSCLC'}, 'GSM2391127': {'disease': 'NSCLC'}, 'GSM2391126': {'disease': 'NSCLC'}, 'GSM836270': {'cells': 'K562', 'expression': 'no', 'treatment': 'Puromycin'}, 'GSM836271': {'cells': 'K562', 'expression': 'yes, targeting SRF', 'treatment': 'Puromycin, doxycycline'}, 'GSM836272': {'cells': 'K562', 'expression': 'no', 'treatment': 'Puromycin'}, 'GSM836273': {'cells': 'K562', 'expression': 'yes targeting SRF', 'treatment': 'Puromycin, doxycycline'}, 'GSM1406028': {'type': 'induced pluripotent stem cell'}, 'GSM1406029': {'type': 'induced pluripotent stem cell'}, 'GSM2674246': {'line': 'MKL-1 line with Dox inducible MYCL shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674244': {'line': 'MKL-1 line with Dox inducible MYCL shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674245': {'line': 'MKL-1 line with Dox inducible MYCL shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674242': {'line': 'MKL-1 line with Dox inducible scramble shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674243': {'line': 'MKL-1 line with Dox inducible scramble shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674240': {'line': 'MKL-1 line with Dox inducible EP400 shRNA #3', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674241': {'line': 'MKL-1 line with Dox inducible scramble shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2685249': {'acd27': 'no aCD27', 'type': 'CD8+ naive T cells', 'number': '2', 'subtype': 'total RNA from single cell', 'donor': 'Donor 1', 'protein': 'mRNA', 'with': 'aCD3 and aCD28', 'condition': 'AbBs and Blocking buffer'}, 'GSM424329': {'identifier': 'GM11829'}, 'GSM424328': {'identifier': 'GM07345'}, 'GSM2685244': {'type': 'PBMCs', 'number': '3', 'subtype': 'AbBs from single cell', 'donor': 'NA', 'protein': 'protein', 'with': 'none; untreated', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685245': {'type': 'CD3 enriched PBMCs', 'number': '4', 'subtype': 'AbBs from single cell', 'donor': 'NA', 'protein': 'protein', 'with': 'none; untreated', 'condition': 'AbBs and Blocking buffer'}, 'GSM1267270': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'Idiopathic pulmonary fibrosis', 'Sex': 'Male'}, 'GSM1258162': {'line': 'T47D', 'passages': '5-8', 'type': 'breast cancer cell line'}, 'GSM854359': {'patient': '5', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854358': {'patient': '4', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM854357': {'patient': '4', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM854356': {'patient': '4', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM854355': {'patient': '4', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854354': {'patient': '3', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM854353': {'patient': '3', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM854352': {'patient': '3', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM854351': {'patient': '3', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854350': {'patient': '2', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM1582573': {'replicate': '2', 'type': 'fibroblast'}, 'GSM1582572': {'replicate': '1', 'type': 'fibroblast'}, 'GSM1582571': {'replicate': '3', 'type': 'iNSC'}, 'GSM1582570': {'replicate': '2', 'type': 'iNSC'}, 'GSM1582577': {'replicate': '3', 'type': 'WT-NSC'}, 'GSM1582576': {'replicate': '2', 'type': 'WT-NSC'}, 'GSM1582575': {'replicate': '1', 'type': 'WT-NSC'}, 'GSM1582574': {'replicate': '3', 'type': 'fibroblast'}, 'GSM2887483': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887484': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887485': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887486': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1957248': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2887488': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1957246': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957245': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957244': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957243': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957242': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957241': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957240': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1482169': {'point': 'Day 3 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM1482168': {'point': 'Day 1 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM1956118': {'a': '56074', 'cd38': '-57', 'cd49f': '930', 'w': '66689', 'h': '55105', 'lin': '-404', 'cd34': '10819', 'cd90': '9195', 'cd7': '198', 'cd10': '945', 'time': '9121', 'cd135': '3341', 'cd45ra': '266'}, 'GSM1956119': {'a': '59349', 'cd38': '977', 'cd49f': '415', 'w': '67591', 'h': '57544', 'lin': '113', 'cd34': '5635', 'cd90': '6606', 'cd7': '-177', 'cd10': '842', 'time': '9336', 'cd135': '3527', 'cd45ra': '200'}, 'GSM1482163': {'point': 'Day 0', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'iPS cells', 'with': 'none (untreated control)'}, 'GSM1956115': {'a': '54646', 'cd38': '372', 'cd49f': '586', 'w': '68241', 'h': '52480', 'lin': '471', 'cd34': '9071', 'cd90': '4349', 'cd7': '253', 'cd10': '929', 'time': '8395', 'cd135': '3397', 'cd45ra': '271'}, 'GSM1956116': {'a': '47187', 'cd38': '225', 'cd49f': '618', 'w': '64741', 'h': '47766', 'lin': '625', 'cd34': '12148', 'cd90': '4832', 'cd7': '291', 'cd10': '1008', 'time': '8631', 'cd135': '2934', 'cd45ra': '265'}, 'GSM1956117': {'a': '75231', 'cd38': '164', 'cd49f': '707', 'w': '67810', 'h': '72708', 'lin': '596', 'cd34': '11178', 'cd90': '4392', 'cd7': '251', 'cd10': '934', 'time': '8877', 'cd135': '2712', 'cd45ra': '1535'}, 'GSM1482167': {'point': 'Day 1 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM1482166': {'point': 'Day 1 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM1482165': {'point': 'Day 0', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'iPS cells', 'with': 'none (untreated control)'}, 'GSM1482164': {'point': 'Day 0', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'iPS cells', 'with': 'none (untreated control)'}, 'GSM2392605': {'treatment': 'Estrogen', 'genotype': 'D538G'}, 'GSM1957233': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2392604': {'treatment': 'Estrogen', 'genotype': 'D538G'}, 'GSM2392607': {'treatment': 'Vehicle', 'genotype': 'Wild type'}, 'GSM1269354': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'HEK293 cells'}, 'GSM2392606': {'treatment': 'Vehicle', 'genotype': 'Wild type'}, 'GSM2391141': {'disease': 'NSCLC'}, 'GSM2581272': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161130B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM1269356': {'transfection': 'miR-124', 'type': 'RNA-seq fastq', 'line': 'Huh7 cells'}, 'GSM2392600': {'treatment': 'Estrogen', 'genotype': 'Y537S'}, 'GSM2687239': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2687238': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2581270': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161130B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2687231': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM2687230': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day14'}, 'GSM2687233': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM2687232': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM2687235': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2687234': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2687237': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2687236': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2677880': {'cells': 'liver metastasis', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R175H, p16-WT, SMAD4-WT'}, 'GSM1406349': {'type': 'Primary Monocytes(BC10)'}, 'GSM1538437': {'transfection': 'siFoxA1', 'line': 'LNCaP', 'group': 'androgen dependent', 'number': '32-34'}, 'GSM1538436': {'transfection': 'siCREB1', 'line': 'LNCaP', 'group': 'androgen dependent', 'number': '32-34'}, 'GSM1538435': {'transfection': 'siControl', 'line': 'LNCaP', 'group': 'androgen dependent', 'number': '32-34'}, 'GSM1538434': {'transfection': 'siFoxA1', 'line': 'LNCaP-abl', 'group': 'androgen independent', 'number': '62-64'}, 'GSM1538433': {'transfection': 'siCREB1', 'line': 'LNCaP-abl', 'group': 'androgen independent', 'number': '62-64'}, 'GSM1538432': {'transfection': 'siControl', 'line': 'LNCaP-abl', 'group': 'androgen independent', 'number': '62-64'}, 'GSM1538431': {'antibody': 'CREB1', 'line': 'LNCaP', 'group': 'androgen dependent', 'number': '32-34'}, 'GSM1538430': {'antibody': 'FOXA1', 'line': 'LNCaP-abl', 'group': 'androgen independent', 'number': '62-64'}, 'GSM2127896': {'expression': 'shDAP5', 'state': 'Pluripotent', 'molecule': 'Total Poly A+ RNA', 'passage': 'p51'}, 'GSM2127897': {'expression': 'shNT', 'state': 'Pluripotent', 'molecule': 'Heavy polysomal RNA', 'passage': 'p51'}, 'GSM1406345': {'type': 'Macrophages(BC9)'}, 'GSM2127895': {'expression': 'shNT', 'state': 'Pluripotent', 'molecule': 'Total PolyA+ RNA', 'passage': 'p51'}, 'GSM1406343': {'type': 'Macrophages(BC9)'}, 'GSM1406342': {'type': 'Macrophages(BC8)'}, 'GSM1406341': {'type': 'Macrophages(BC8)'}, 'GSM1406340': {'type': 'Macrophages(BC8)'}, 'g': {'code': '200'}, 'GSM1546559': {'passages': '8-12', 'vendor': 'Abcam', 'type': 'lung cancer cell', 'catalog': 'ab7766', 'line': 'PC9R', 'antibody': 'H3K4me2'}, 'GSM1546558': {'line': 'PC9R', 'passages': '8-12', 'type': 'lung cancer cell'}, 'GSM1546555': {'passages': '8-12', 'vendor': 'Abcam', 'type': 'lung cancer cell', 'catalog': 'ab7766', 'line': 'PC9', 'antibody': 'H3K4me2'}, 'GSM1546554': {'line': 'PC9', 'passages': '8-12', 'type': 'lung cancer cell'}, 'GSM1546557': {'line': 'PC9', 'passages': '8-12', 'type': 'lung cancer cell'}, 'GSM1546556': {'line': 'PC9', 'passages': '8-12', 'type': 'lung cancer cell'}, 'GSM2689059': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689058': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689057': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689056': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689055': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689054': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689053': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689052': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689051': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689050': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1946479': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'stage': 'asynchronization'}, 'GSM2393194': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Hormone starvation + 16 h DHT', 'variation': 'Bag-1L KO'}, 'GSM2393195': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Hormone starvation + 16 h DHT', 'variation': 'Bag-1L KO'}, 'GSM2393192': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Hormone starvation + 16 h DHT', 'variation': 'Control'}, 'GSM2393193': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Hormone starvation + 16 h DHT', 'variation': 'Control'}, 'GSM2393190': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Hormone starvation + 16 h EtOH', 'variation': 'Bag-1L KO'}, 'GSM2393191': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Hormone starvation + 16 h EtOH', 'variation': 'Bag-1L KO'}, 'GSM2325825': {'type': 'Differentiated embryonic stem cell'}, 'GSM1571063': {'stage': 'undifferentiated'}, 'GSM1571062': {'stage': 'undifferentiated'}, 'GSM1571061': {'stage': 'undifferentiated'}, 'GSM1571060': {'stage': 'undifferentiated'}, 'GSM1571067': {'stage': 'undifferentiated'}, 'GSM1571066': {'stage': 'undifferentiated'}, 'GSM1571065': {'stage': 'undifferentiated'}, 'GSM1571064': {'stage': 'undifferentiated'}, 'GSM1571069': {'stage': 'undifferentiated'}, 'GSM1571068': {'stage': 'undifferentiated'}, 'GSM2391978': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391979': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1957012': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'ESRP KD'}, 'GSM1957013': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'CTRL'}, 'GSM984220': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'fetal'}, 'GSM1957010': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'ESRP KD'}, 'GSM1957011': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'ESRP KD'}, 'GSM1957014': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'CTRL'}, 'GSM2741799': {'sirna': 'siZFX', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741798': {'sirna': 'siZNF711', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741797': {'sirna': 'siZNF711', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741796': {'sirna': 'siZNF711', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741795': {'sirna': 'siCtrl', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741794': {'sirna': 'siCtrl', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741793': {'sirna': 'siCtrl', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741792': {'sirna': 'siCtrl', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741791': {'sirna': 'siCtrl', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741790': {'sirna': 'siCtrl', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM1980399': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM823519': {'tissue': 'liver', 'phenotype': 'hepatocellular carcinoma'}, 'GSM823518': {'tissue': 'liver', 'phenotype': 'non-tumor'}, 'GSM1482938': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '18T2'}, 'GSM1482939': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '19T2'}, 'GSM2649286': {'status': 'Undifferentiated', 'line': 'pES6', 'type': 'Embryonic stem cell line', 'treatment': \"5-aza-2'-deoxycytidine\"}, 'GSM2649287': {'status': 'Undifferentiated', 'line': 'CSES7', 'type': 'Embryonic stem cell line', 'treatment': 'TSPYL5 Knockdown'}, 'GSM2649285': {'status': 'Undifferentiated', 'line': 'pES6', 'type': 'Embryonic stem cell line', 'treatment': 'Control'}, 'GSM2649288': {'status': 'Undifferentiated', 'line': 'CSES7', 'type': 'Embryonic stem cell line', 'treatment': 'TSPYL5 Knockdown'}, 'GSM1482933': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '12T2'}, 'GSM1482934': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '14T1'}, 'GSM1482935': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '14T2'}, 'GSM1482936': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '15T2'}, 'GSM1482937': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '16T2'}, 'GSM1519571': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519570': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1726612': {'type': 'CD11b+ myelomonocytic cells', 'diagnosis': 'healthy'}, 'GSM1726613': {'type': 'CD11b+ myelomonocytic cells', 'diagnosis': 'metastatic breast cancer'}, 'GSM1726611': {'type': 'CD11b+ myelomonocytic cells', 'diagnosis': 'healthy'}, 'GSM1726616': {'type': 'CD11b+ myelomonocytic cells', 'diagnosis': 'metastatic breast cancer'}, 'GSM1726617': {'type': 'CD11b+ myelomonocytic cells', 'diagnosis': 'healthy'}, 'GSM1726614': {'type': 'CD11b+ myelomonocytic cells', 'diagnosis': 'healthy'}, 'GSM1726615': {'type': 'CD11b+ myelomonocytic cells', 'diagnosis': 'metastatic breast cancer'}, 'GSM1726618': {'type': 'CD11b+ myelomonocytic cells', 'diagnosis': 'metastatic breast cancer'}, 'GSM2054555': {'type': 'hES/hiPS-derived neuron'}, 'GSM1683221': {'type': 'U87 human glioma cells'}, 'GSM1683220': {'type': 'U87 human glioma cells'}, 'GSM1683223': {'type': 'U87 human glioma cells'}, 'GSM1683222': {'type': 'U87 human glioma cells'}, 'GSM1683225': {'type': 'U87 human glioma cells'}, 'GSM1683224': {'type': 'U87 human glioma cells'}, 'GSM1683227': {'type': 'U87 human glioma cells'}, 'GSM1683226': {'type': 'U87 human glioma cells'}, 'GSM1683229': {'type': 'U87 human glioma cells'}, 'GSM1683228': {'type': 'U87 human glioma cells'}, 'GSM2200942': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2700022': {'genotype': 'WT', 'point': 'harvested at 100hrs', 'infection': 'Infected with pTIP-scr', 'tissue': 'human embryonic kidney', 'treatment': '100ng/uL doxycycline', 'line': 'Parental ATCC CRL-3216'}, 'GSM2700023': {'genotype': 'WT', 'point': 'harvested at 100hrs', 'infection': 'Infected with pTIP-scr', 'tissue': 'human embryonic kidney', 'treatment': '100ng/uL doxycycline', 'line': 'Parental ATCC CRL-3216'}, 'GSM618519': {'status': 'ETS-', 'name': 'WPE1-NB26', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618518': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM2700024': {'genotype': 'WT', 'point': 'harvested at 100hrs', 'infection': 'Infected with pTIP-shL1', 'tissue': 'human embryonic kidney', 'treatment': '100ng/uL doxycycline', 'line': 'Parental ATCC CRL-3216'}, 'GSM2700025': {'genotype': 'WT', 'point': 'harvested at 100hrs', 'infection': 'Infected with pTIP-shL1', 'tissue': 'human embryonic kidney', 'treatment': '100ng/uL doxycycline', 'line': 'Parental ATCC CRL-3216'}, 'GSM618513': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM618512': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM618511': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM618510': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM618517': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM618516': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM618515': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM618514': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM1614698': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614699': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1447396': {'activation': 'anti-CD3/CD28 beads, 48 hours'}, 'GSM1614690': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614691': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614692': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614693': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614694': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614695': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614696': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614697': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM2049129': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049128': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2204240': {'sirna': 'SUPT4H1', 'line': 'Coriell Line ND38530', 'type': 'fibroblast cell line'}, 'GSM2049121': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049120': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049123': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049122': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049125': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049124': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049127': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049126': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM1447399': {'activation': 'None'}, 'GSM1447398': {'activation': 'anti-CD3/CD28 beads, 48 hours'}, 'GSM1657361': {'facs': 'NKX2.5-negative', 'line': 'NKX2.5:GFP hESCs', 'treatment': 'Retinoic Acid'}, 'GSM1657360': {'facs': 'NKX2.5-positive', 'line': 'NKX2.5:GFP hESCs', 'treatment': 'Retinoic Acid'}, 'GSM1657363': {'facs': 'NKX2.5-negative', 'line': 'NKX2.5:GFP hESCs', 'treatment': 'DMSO'}, 'GSM1657362': {'facs': 'NKX2.5-positive', 'line': 'NKX2.5:GFP hESCs', 'treatment': 'DMSO'}, 'GSM1325490': {'line': 'HCT-116', 'transfection': 'LNA CAGMM'}, 'GSM2840513': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840512': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840511': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840510': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840517': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840516': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840515': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840514': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2486195': {'line': 'MM1S', 'type': 'Multiple Myeloma cell line', 'condition': 'DMSO-treated'}, 'GSM2486194': {'line': 'NAMALWA', 'type': 'Burkitt Lymphoma cell line', 'condition': 'CMLD010509-treated 50nM 6 hours'}, 'GSM2486197': {'line': 'OPM2', 'type': 'Multiple Myeloma cell line', 'condition': 'DMSO-treated'}, 'GSM2840518': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2486191': {'line': 'NCI-H929', 'type': 'Multiple Myeloma cell line', 'condition': 'DMSO-treated'}, 'GSM2486193': {'line': 'NAMALWA', 'type': 'Burkitt Lymphoma cell line', 'condition': 'DMSO-treated'}, 'GSM2486192': {'line': 'NCI-H929', 'type': 'Multiple Myeloma cell line', 'condition': 'CMLD010509-treated 50nM 6 hours'}, 'GSM1400976': {'line': 'MCF7'}, 'GSM1400977': {'line': 'MCF7'}, 'GSM1400974': {'line': 'MCF7'}, 'GSM2664416': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664417': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664414': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664415': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664412': {'type': 'Neuroblastoma cell line', 'treatment': 'cisplatin'}, 'GSM2664413': {'type': 'Neuroblastoma cell line', 'treatment': 'doxorubicin'}, 'GSM2664410': {'type': 'Neuroblastoma cell line', 'treatment': 'DMSO'}, 'GSM2664411': {'type': 'Neuroblastoma cell line', 'treatment': 'DMSO'}, 'GSM1400972': {'line': 'MCF7'}, 'GSM2664418': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM1400973': {'line': 'MCF7'}, 'GSM1400970': {'line': 'MCF7'}, 'GSM2898803': {'line': 'NA18870', 'tissue': 'Induced pluripotent stem cell'}, 'GSM622192': {'marker': 'CD24+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM3189338': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '29.67032967', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.679901', 'percentaligned': '0.799632861', 'Sex': 'M', 'nl63': 'No', 'libcounts': '2.399751'}, 'GSM622193': {'marker': 'CD44+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM3189339': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.525295', 'percentaligned': '0.957426318', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.045829'}, 'GSM3189336': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.543225', 'percentaligned': '0.950066766', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.188048', 'original': 'Control'}, 'GSM1955077': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM622196': {'marker': 'CD24+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM1644000': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+ICI'}, 'GSM3189334': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A21', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '44', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.634313', 'percentaligned': '0.94313003', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.614961', 'original': 'Case'}, 'GSM622197': {'marker': 'CD44+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM3189335': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.552153', 'percentaligned': '0.915189004', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.973391', 'original': 'Control'}, 'GSM622194': {'marker': 'CD24+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM3189332': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '79', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.570628', 'percentaligned': '0.951253528', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.629749'}, 'GSM622195': {'marker': 'CD44+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM3189333': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A21', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.540262', 'percentaligned': '0.946661539', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.224865', 'original': 'Case'}, 'GSM3189196': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.659081', 'percentaligned': '0.955993213', 'Sex': 'F', 'nl63': 'No', 'libcounts': '18.653354'}, 'GSM3189197': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.545682', 'percentaligned': '0.951515598', 'Sex': 'M', 'nl63': 'No', 'libcounts': '17.9308', 'original': 'Case'}, 'GSM3189331': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A58', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.848333', 'percentaligned': '0.945679271', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.856947', 'original': 'Control'}, 'GSM3189194': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.769724', 'percentaligned': '0.954571635', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '24.371326', 'original': 'Control'}, 'GSM2141265': {'individual': 'AF35', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141264': {'individual': 'AF35', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141267': {'individual': 'AF37', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141266': {'individual': 'AF37', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141261': {'individual': 'AF31', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141260': {'individual': 'AF31', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141263': {'individual': 'AF35', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2792938': {'protocol': 'Monocytes cultured for 24 hours in mevalonate, followed by 5 days in media (RPMI)', 'type': 'Monocyte', 'antibody': 'none', 'donor': 'Donor_2'}, 'GSM2792937': {'protocol': 'Monocytes cultured for 6 days in media (RPMI) only', 'type': 'Monocyte', 'antibody': 'none', 'donor': 'Donor_2'}, 'GSM2792936': {'protocol': 'Monocytes cultured for 24 hours in mevalonate, followed by 5 days in media (RPMI)', 'type': 'Monocyte', 'antibody': 'none', 'donor': 'Donor_1'}, 'GSM2792935': {'protocol': 'Monocytes cultured for 6 days in media (RPMI) only', 'type': 'Monocyte', 'antibody': 'none', 'donor': 'Donor_1'}, 'GSM2792934': {'protocol': 'Monocytes cultured for 24 hours in mevalonate, followed by 5 days in media (RPMI)', 'type': 'Monocyte', 'antibody': 'Rabbit polyclonal anti-H3K4me1 (Diagenode, cat. # pAb-003-050)', 'donor': 'Donor_2'}, 'GSM2792933': {'protocol': 'Monocytes cultured for 6 days in media (RPMI) only', 'type': 'Monocyte', 'antibody': 'Rabbit polyclonal anti-H3K4me1 (Diagenode, cat. # pAb-003-050)', 'donor': 'Donor_2'}, 'GSM2792932': {'protocol': 'Monocytes cultured for 24 hours in mevalonate, followed by 5 days in media (RPMI)', 'type': 'Monocyte', 'antibody': 'Rabbit polyclonal anti-H3K4me1 (Diagenode, cat. # pAb-003-050)', 'donor': 'Donor_2'}, 'GSM2792931': {'protocol': 'Monocytes cultured for 6 days in media (RPMI) only', 'type': 'Monocyte', 'antibody': 'Rabbit polyclonal anti-H3K4me1 (Diagenode, cat. # pAb-003-050)', 'donor': 'Donor_2'}, 'GSM2792930': {'protocol': 'Monocytes cultured for 24 hours in mevalonate, followed by 5 days in media (RPMI)', 'type': 'Monocyte', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'donor': 'Donor_1'}, 'GSM2863200': {'line': 'DU145', 'against': 'E6AP'}, 'GSM2863201': {'line': 'DU145', 'against': 'E6AP'}, 'GSM2863202': {'line': 'DU145', 'against': 'E6AP'}, 'GSM2863203': {'line': 'DU145', 'against': 'control against E6AP'}, 'GSM2863204': {'line': 'DU145', 'against': 'control against E6AP'}, 'GSM2863205': {'line': 'DU145', 'against': 'control against E6AP'}, 'GSM3189191': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C27', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '18', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.667382', 'percentaligned': '0.8111218', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.233081', 'original': 'Control'}, 'GSM1498130': {'type': 'senescent cells expressing ZFP36L1mut', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM922228': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922225': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922224': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922227': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922226': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922221': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922220': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922223': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922222': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2303395': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303394': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303397': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303396': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303391': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303390': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303393': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACCG268'}, 'GSM2303392': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303399': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303398': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2690855': {'model': 'TM00096', 'population': 'CD24+/CD184 low tumor cells'}, 'GSM2690854': {'model': 'TM00096', 'population': 'CD24+/CD184 high tumor cells'}, 'GSM2690857': {'model': 'TM00096', 'population': 'CD24+/CD184 low tumor cells'}, 'GSM2690856': {'model': 'TM00096', 'population': 'CD24+/CD184 low tumor cells'}, 'GSM2690851': {'model': 'TM00096', 'population': 'Human-only tumor cells depleted of mouse cells'}, 'GSM2690850': {'model': 'TM00096', 'population': 'Human-only tumor cells depleted of mouse cells'}, 'GSM2690853': {'model': 'TM00096', 'population': 'CD24+/CD184 high tumor cells'}, 'GSM2690852': {'model': 'TM00096', 'population': 'CD24+/CD184 high tumor cells'}, 'GSM1377971': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377970': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377973': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377972': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377975': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377974': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377977': {'tissue': 'Peripheral blood', 'diagnosis': 'Healthy'}, 'GSM1377976': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377979': {'tissue': 'Peripheral blood', 'diagnosis': 'Healthy'}, 'GSM1377978': {'tissue': 'Peripheral blood', 'diagnosis': 'Healthy'}, 'GSM2114201': {'line': 'HUES9', 'agent': 'control', 'time': '0 hours since actD treatment'}, 'GSM2114200': {'type': 'mESC', 'fraction': 'nucleus'}, 'GSM2114203': {'line': 'HUES9', 'agent': 'control', 'time': '0 hours since actD treatment'}, 'GSM2114202': {'line': 'HUES9', 'agent': 'control', 'time': '0 hours since actD treatment'}, 'GSM2114205': {'line': 'HUES9', 'agent': 'actD', 'time': '0.5 hours since actD treatment'}, 'GSM2114204': {'line': 'HUES9', 'agent': 'actD', 'time': '0.5 hours since actD treatment'}, 'GSM2114207': {'line': 'HUES9', 'agent': 'actD', 'time': '2 hours since actD treatment'}, 'GSM2114206': {'line': 'HUES9', 'agent': 'actD', 'time': '0.5 hours since actD treatment'}, 'GSM2114209': {'line': 'HUES9', 'agent': 'actD', 'time': '2 hours since actD treatment'}, 'GSM2114208': {'line': 'HUES9', 'agent': 'actD', 'time': '2 hours since actD treatment'}, 'GSM1360867': {'line': '41', 'days_differentiated': '40', 'variation': 'D398', 'subline': 'SB'}, 'GSM1360866': {'line': '41', 'days_differentiated': '30', 'variation': 'D398', 'subline': 'SA'}, 'GSM1360869': {'line': '70', 'days_differentiated': '55', 'variation': 'N398', 'subline': 'SA'}, 'GSM1360868': {'line': '41', 'days_differentiated': '40', 'variation': 'D398', 'subline': 'SG'}, 'GSM2611001': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2795891': {'code': 'P001', 'age': '21-23', 'Sex': 'Female', 'tissue': 'Placenta', 'treatment': 'IFNB', 'compartment': 'Chorionic villus'}, 'GSM2311839': {'culture': '12', 'line': 'DCX+'}, 'GSM2311838': {'culture': '12', 'line': 'DCX+'}, 'GSM1500849': {'line': 'HCT116'}, 'GSM1500848': {'line': 'HCT116'}, 'GSM1338288': {'antibody': 'H3K27me3 (Millipore, 07-449, Lots DR10853-1,R1 and GR80367-1,R2)', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1338289': {'antibody': 'H3K27me3 (Millipore, 07-449, Lots DR10853-1,R1 and GR80367-1,R2)', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1338286': {'antibody': 'H3K4me3 (Abcam, ab1012, Lots JBC18733477,R1 and 1999681, R2)', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1338287': {'antibody': 'H3K4me3 (Abcam, ab1012, Lots JBC18733477,R1 and 1999681, R2)', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1338284': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1338285': {'antibody': 'H3K4me3 (Abcam, ab1012, Lots JBC18733477,R1 and 1999681, R2)', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1338282': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1338283': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1338280': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM1338281': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM2474978': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OAW42', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474979': {'subtype': 'immortalized human oviductal epithelium', 'line': 'OE E6/E7', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474976': {'subtype': 'clear cell', 'line': 'JHOC5', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474977': {'subtype': 'clear cell', 'line': 'JHOC9', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474974': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'COV504', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474975': {'subtype': 'clear cell', 'line': 'ES-2', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474972': {'subtype': 'unknown histotype - ovarian origin', 'line': 'A2780Cis', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474973': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'COV318', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474970': {'subtype': 'ovarian serous adenocarcinoma', 'line': '60905OM', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474971': {'subtype': 'unknown histotype - ovarian origin', 'line': 'A2780', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM1824079': {'line': 'K562', 'transgene': 'SF3B1-K700E'}, 'GSM1824078': {'line': 'K562', 'transgene': 'SF3B1-K700E'}, 'GSM2093115': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093114': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093113': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093112': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093111': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093110': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093119': {'bin': '4', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093118': {'bin': '4', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2653539': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653538': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653533': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653532': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653531': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653530': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653537': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653536': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653535': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653534': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM978969': {'tissue': 'placenta from full-term pregnancy', 'Sex': 'male'}, 'GSM2795895': {'code': 'P006', 'age': '21', 'Sex': 'Female', 'tissue': 'Placenta', 'treatment': 'IFNL', 'compartment': 'Chorionic villus'}, 'GSM2411148': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411149': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2795894': {'code': 'P006', 'age': '21', 'Sex': 'Female', 'tissue': 'Placenta', 'treatment': 'IFNB', 'compartment': 'Chorionic villus'}, 'GSM1366010': {'type': 'reprogammed MSC-proximal tubular cells; clone 17'}, 'GSM1366011': {'type': 'bone marrow mesenchymal stem cells (Capelli et al; BM Transpl, 2007)'}, 'GSM1366012': {'type': 'bone marrow mesenchymal stem cells (Capelli et al; BM Transpl, 2007)'}, 'GSM2411141': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411146': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411147': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411144': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411145': {'clone': 'A3', 'genotype': 'WT'}, 'GSM1930758': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1930759': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1930756': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1930755': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1930751': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM2309528': {'source': 'autopsy', 'identifier': 'D', 'tissue': 'Diaphragm muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309529': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Digitorum muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309524': {'source': 'autopsy', 'identifier': 'D', 'tissue': 'Deltoid muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309525': {'source': 'autopsy', 'identifier': 'D', 'tissue': 'Deltoid muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309526': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Diaphragm muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309527': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Diaphragm muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309520': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Bicep muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309521': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Bicep muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309522': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Bicep muscle', 'classification': 'Duchenne muscular dystrophy'}, 'GSM2309523': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Deltoid muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM1197632': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 3h'}, 'GSM1197633': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 6h'}, 'GSM1197630': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 6h'}, 'GSM1197631': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 0h'}, 'GSM1435503': {'type': 'lymphoblastic cell line'}, 'GSM1435502': {'type': 'monocyte'}, 'GSM1435501': {'type': 'monocyte'}, 'GSM1435500': {'type': 'monocyte'}, 'GSM1435507': {'type': 'Fibroblast primary cell line'}, 'GSM1435506': {'type': 'Fibroblast primary cell line'}, 'GSM1435505': {'type': 'lymphoblastic cell line'}, 'GSM1435504': {'type': 'lymphoblastic cell line'}, 'GSM1435509': {'type': 'Fibroblast primary cell line'}, 'GSM1435508': {'type': 'Fibroblast primary cell line'}, 'GSM987819': {'donor': 'healthy donor 1', 'state': 'healthy', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM2067400': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067401': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM782164': {'line': \"Cell line derived from Burkitt's lymphoma\", 'passage': 'Multiple'}, 'GSM2516085': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'hi'}, 'GSM782162': {'line': \"Cell line derived from Burkitt's lymphoma\", 'passage': 'Multiple'}, 'GSM782163': {'line': \"Cell line derived from Burkitt's lymphoma\", 'passage': 'Multiple'}, 'GSM782160': {'line': \"Cell line derived from Burkitt's lymphoma\", 'passage': 'Multiple'}, 'GSM782161': {'line': \"Cell line derived from Burkitt's lymphoma\", 'passage': 'Multiple'}, 'GSM1620428': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620429': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2424908': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424909': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620424': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620425': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620426': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620427': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620420': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620421': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620422': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620423': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1677851': {'used': 'pH1-shGP', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1677850': {'used': 'pH1-con', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1677853': {'used': 'pH1-saiGP-RZ', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1677852': {'used': 'pH1-shGP-LC', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1677855': {'used': 'pH1-shLC-LC', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1677854': {'used': 'pH1-shLC', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1677856': {'used': 'pH1-saiLC-RZ', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM2825129': {'line': 'HeLa (sh FBL integrated)', 'treatment': '+ doxycycline'}, 'GSM2825128': {'line': 'HeLa (sh FBL integrated)', 'treatment': '- doxycycline'}, 'GSM2551608': {'status': \"Huntington's disease\", 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551609': {'status': \"Huntington's disease\", 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551607': {'status': \"Huntington's disease\", 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2390839': {'disease': 'Healthy Control'}, 'GSM2741804': {'sirna': 'Both siZFX and siZNF711', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741803': {'sirna': 'Both siZFX and siZNF711', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741802': {'sirna': 'Both siZFX and siZNF711', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741801': {'sirna': 'siZFX', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741800': {'sirna': 'siZFX', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM1908041': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'J2'}, 'GSM1908040': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'J2'}, 'GSM1908043': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'Uk'}, 'GSM1908042': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'Uk'}, 'GSM1908045': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'J1c'}, 'GSM1908044': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'J1c'}, 'GSM1908047': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'H'}, 'GSM1908046': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'H'}, 'GSM1369103': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13'}, 'GSM1369102': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPOLR2D'}, 'GSM1369101': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siNFYA'}, 'GSM1369100': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siJAK2'}, 'GSM1369107': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siTOX4'}, 'GSM1369106': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siTGM5'}, 'GSM1369105': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siSAP130'}, 'GSM1369104': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siRGS18'}, 'GSM1872858': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1674771': {'type': 'multiple myeloma bone marrow prone clone'}, 'GSM1674770': {'type': 'multiple myeloma bone marrow prone clone'}, 'GSM1674773': {'type': 'multiple myeloma extra medullary prone clone'}, 'GSM1674772': {'type': 'multiple myeloma bone marrow prone clone'}, 'GSM1674775': {'type': 'multiple myeloma extra medullary prone clone'}, 'GSM1674774': {'type': 'multiple myeloma extra medullary prone clone'}, 'GSM980597': {'line': 'H9', 'treatment': 'GFP shRNA'}, 'GSM980596': {'line': 'H9', 'treatment': 'LIN28 shRNA (TRCN0000102579; Open Biosystems)'}, 'GSM980595': {'line': 'H9'}, 'GSM980594': {'line': 'HEK293', 'antibody': 'V5 (Sigma V8137)', 'number': 'V8137', 'manufactuer': 'Sigma'}, 'GSM980593': {'line': 'H9', 'antibody': 'LIN28 (Abcam ab46020)', 'number': 'ab46020', 'manufactuer': 'Abcam'}, 'GSM980599': {'line': 'H9', 'treatment': 'Untreated H9 human ES cells'}, 'GSM980598': {'line': 'HEK293', 'treatment': 'Untreated Flp-In-293'}, 'GSM1957168': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957169': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957162': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957163': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957160': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957161': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957166': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957167': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957164': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957165': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM3594271': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594270': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594273': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594272': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594275': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594274': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594277': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594276': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594279': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594278': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1481531': {'tissue': 'blood', 'type': 'peripheral blood mono-nuclear cells', 'genotype': 'KLF1: +/W30X'}, 'GSM1293749': {'tissue': 'prostate'}, 'GSM1293748': {'tissue': 'prostate'}, 'GSM1293747': {'tissue': 'prostate'}, 'GSM1293746': {'tissue': 'prostate'}, 'GSM1293745': {'tissue': 'prostate'}, 'GSM1293744': {'tissue': 'prostate'}, 'GSM1293743': {'tissue': 'prostate'}, 'GSM1293742': {'tissue': 'prostate'}, 'GSM1293741': {'tissue': 'prostate'}, 'GSM1626488': {'tissue': 'placental villus parenchyma'}, 'GSM1626489': {'tissue': 'placental villus parenchyma'}, 'GSM1864253': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T3'}, 'GSM1633702': {'line': '786-O SETD2 ZFN KO cell line'}, 'GSM1864255': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T1'}, 'GSM1864254': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T2'}, 'GSM1864257': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Larynx', 'stage': 'T4'}, 'GSM1864256': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oral', 'stage': 'T4'}, 'GSM1626480': {'tissue': 'placental villus parenchyma'}, 'GSM1626481': {'tissue': 'placental villus parenchyma'}, 'GSM1626482': {'tissue': 'placental villus parenchyma'}, 'GSM1626483': {'tissue': 'placental villus parenchyma'}, 'GSM1626484': {'tissue': 'placental villus parenchyma'}, 'GSM1626485': {'tissue': 'placental villus parenchyma'}, 'GSM1626486': {'tissue': 'placental villus parenchyma'}, 'GSM1626487': {'tissue': 'placental villus parenchyma'}, 'GSM1836003': {'line': 'HCT116', 'type': 'colorectal carcinoma derived cell line', 'variation': 'Heterozygous ARID1A-KO'}, 'GSM1836002': {'line': 'HCT116', 'type': 'colorectal carcinoma derived cell line', 'variation': 'Heterozygous ARID1A-KO'}, 'GSM1836001': {'line': 'HCT116', 'type': 'colorectal carcinoma derived cell line', 'variation': 'Parental'}, 'GSM1836000': {'line': 'HCT116', 'type': 'colorectal carcinoma derived cell line', 'variation': 'Parental'}, 'GSM1836005': {'line': 'HCT116', 'type': 'colorectal carcinoma derived cell line', 'variation': 'Homozygous ARID1A-KO'}, 'GSM1836004': {'line': 'HCT116', 'type': 'colorectal carcinoma derived cell line', 'variation': 'Homozygous ARID1A-KO'}, 'GSM2325839': {'type': 'Differentiated embryonic stem cell'}, 'GSM2100014': {'rin': '10', 'Sex': 'Female', 'sspg': '110', 'age': '70', 'bmi': '27.5', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '31915', 'dilution': '02:40:00 AM', 'passage': '13', 'indiv': '193', 'method': 'Life-Tech GITC'}, 'GSM2441039': {'culture': '11', 'line': 'H9', 'set': 'Data Set 1-Differentiation', 'run': 'run1466', 'treatment': '0'}, 'GSM1290218': {'line': 'MCF-10A', 'type': 'Mammary Epithelial cells'}, 'GSM1290219': {'vendor': 'Zymo Research', 'antibody': 'Anti-5-Methlycytosine', 'line': 'MCF-10A', 'type': 'Mammary Epithelial cells'}, 'GSM1290214': {'line': 'MDA-468', 'type': 'Human breast cancer cells'}, 'GSM1290215': {'vendor': 'Zymo Research', 'antibody': 'Anti-5-Methlycytosine', 'line': 'MCF-10A', 'type': 'Mammary Epithelial cells'}, 'GSM1290216': {'line': 'MCF-10A', 'type': 'Mammary Epithelial cells'}, 'GSM1290217': {'vendor': 'Zymo Research', 'antibody': 'Anti-5-Methlycytosine', 'line': 'MCF-10A', 'type': 'Mammary Epithelial cells'}, 'GSM1290211': {'vendor': 'Zymo Research', 'antibody': 'Anti-5-Methlycytosine', 'line': 'MDA-468', 'type': 'Human breast cancer cells'}, 'GSM1290212': {'line': 'MDA-468', 'type': 'Human breast cancer cells'}, 'GSM1290213': {'vendor': 'Zymo Research', 'antibody': 'Anti-5-Methlycytosine', 'line': 'MDA-468', 'type': 'Human breast cancer cells'}, 'GSM1679699': {'death': '81', 'gender': 'male', 'study': 'P_18', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.14184193', 'sv3': '-0.014892608', 'sv1': '-0.0530743027'}, 'GSM1679698': {'death': '88', 'gender': 'male', 'study': 'P_16', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.1201296', 'sv3': '0.062213318', 'sv1': '0.0009549706'}, 'GSM2441038': {'culture': '5', 'line': 'H9', 'set': 'Data Set 1-Differentiation', 'run': 'run1466', 'treatment': '0'}, 'GSM1679691': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '64'}, 'GSM1679690': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '66'}, 'GSM1679693': {'gender': 'male', 'study': 'P_6', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '83'}, 'GSM1679692': {'death': '74', 'gender': 'male', 'study': 'P_3', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.01795492', 'sv3': '-0.003261143', 'sv1': '0.1794718913'}, 'GSM1679695': {'death': '83', 'gender': 'male', 'study': 'P_13', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.07621332', 'sv3': '-0.121627451', 'sv1': '0.1997290752'}, 'GSM1679694': {'gender': 'male', 'study': 'P_12', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '80'}, 'GSM1679697': {'death': '84', 'gender': 'male', 'study': 'P_15', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.32454975', 'sv3': '0.155508239', 'sv1': '0.5385649288'}, 'GSM1679696': {'death': '80', 'gender': 'male', 'study': 'P_14', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.11375596', 'sv3': '0.083133542', 'sv1': '-0.2488724746'}, 'GSM3189066': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A104', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.687636', 'percentaligned': '0.956295', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.975563', 'original': 'Case'}, 'GSM3189067': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A02', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.717896', 'percentaligned': '0.935798', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.881112'}, 'GSM2840289': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM485433': {'line': 'NA18520'}, 'GSM3189062': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A66', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.631864', 'percentaligned': '0.943067', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.795644'}, 'GSM3189063': {'boca': 'Yes', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.619547', 'percentaligned': '0.953114', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.467368', 'original': 'Control'}, 'GSM3189060': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '10', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.689891', 'percentaligned': '0.945115', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.682855', 'original': 'Control'}, 'GSM3189061': {'boca': 'Yes', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.737839', 'percentaligned': '0.942898', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.647069', 'original': 'Control'}, 'GSM2840283': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840282': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840281': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840280': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840287': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840286': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840285': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840284': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM1919407': {'status': 'NA', 'patient': 'NA', 'tissue': 'Dermal microvasculature', 'type': 'Primary cells from culture', 'diagnosis': 'normal'}, 'GSM1919406': {'status': 'NA', 'patient': 'NA', 'tissue': 'human umbilical vein', 'type': 'Primary cells from culture', 'diagnosis': 'normal'}, 'GSM1919405': {'status': 'Treatment-naïve', 'patient': 'Patient 21', 'tissue': 'Colorectal tumor microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'colorectal cancer'}, 'GSM1919404': {'status': 'Treatment-naïve', 'patient': 'Patient 21', 'tissue': 'Colonic mucosa microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'normal'}, 'GSM1919403': {'status': 'Treatment-naïve', 'patient': 'Patient 20', 'tissue': 'Colorectal tumor microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'colorectal cancer'}, 'GSM1919402': {'status': 'Treatment-naïve', 'patient': 'Patient 20', 'tissue': 'Colonic mucosa microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'normal'}, 'GSM1919401': {'status': 'Treatment-naïve', 'patient': 'Patient 19', 'tissue': 'Colorectal metastasis microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'colorectal cancer'}, 'GSM1919400': {'status': 'Treatment-naïve', 'patient': 'Patient 19', 'tissue': 'Colorectal tumor microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'colorectal cancer'}, 'GSM2228470': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '5,000 ng'}, 'GSM2228471': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '5,000 ng'}, 'GSM1919408': {'status': 'NA', 'patient': 'NA', 'tissue': 'Prostate microvasculature', 'type': 'Primary cells from culture', 'diagnosis': 'normal'}, 'GSM1937939': {'line': 'acute myeloid leukemia cell line KG1', 'treatment': 'XX-650-23 (5 mM, 12hrs)'}, 'GSM1937938': {'line': 'acute myeloid leukemia cell line KG1', 'treatment': 'DMSO (0.1%, 12hrs)'}, 'GSM2390948': {'disease': 'Multiple Sclerosis'}, 'GSM2390949': {'disease': 'Multiple Sclerosis'}, 'GSM1937933': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM1937932': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM2390946': {'disease': 'Multiple Sclerosis'}, 'GSM1937930': {'status': 'HPV33', 'gender': 'M', 'stage': 'IVB'}, 'GSM1937937': {'line': 'acute myeloid leukemia cell line KG1', 'treatment': 'DMSO (0.1%, 12hrs)'}, 'GSM1937936': {'status': 'HPV16', 'gender': 'F', 'stage': 'IVa'}, 'GSM1937935': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM2390943': {'disease': 'Multiple Sclerosis'}, 'GSM2183060': {'type': 'luminal', 'patient': 'BS2916', 'population': 'Trop2+ CD49f Lo'}, 'GSM2088030': {'status': 'Dysplasia', 'ratio': '1.2552862868072', 'age': '71', 'years': '36.4', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '65127922', 'alignment': '40500086'}, 'GSM2088031': {'status': 'Dysplasia', 'ratio': '1.16687352743139', 'age': '72', 'years': '47', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '99995020', 'alignment': '61424508'}, 'GSM2088032': {'status': 'Dysplasia', 'ratio': '1.33712668290689', 'age': '67', 'years': '53', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'Sex': 'Male', 'alignments': '68644608', 'alignment': '43162043'}, 'GSM2088033': {'status': 'Normal', 'ratio': '1.37239575502939', 'age': '57', 'years': '40', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Male', 'alignments': '69890456', 'alignment': '43626428'}, 'GSM2088034': {'status': 'Dysplasia', 'ratio': '1.28995381480893', 'age': '59', 'years': '40', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '47639686', 'alignment': '29546589'}, 'GSM2088035': {'status': 'Dysplasia', 'ratio': '1.32631502145667', 'age': '65', 'years': '41', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Female', 'alignments': '61986648', 'alignment': '38200114'}, 'GSM2088036': {'status': 'Normal', 'ratio': '1.48555097312766', 'age': '72', 'years': '58.24', 'content': '47.47', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Female', 'alignments': '69437784', 'alignment': '42771605'}, 'GSM2088037': {'status': 'Normal', 'ratio': '1.21291998578839', 'age': '68', 'years': '51.25', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Female', 'alignments': '64889554', 'alignment': '40166652'}, 'GSM2689152': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689153': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689150': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689151': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689156': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689157': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689154': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689155': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2281039': {'type': 'Normal Keratinocytes'}, 'GSM2281038': {'type': 'Normal Keratinocytes'}, 'GSM2281035': {'type': 'Normal Keratinocytes'}, 'GSM2281034': {'type': 'Normal Keratinocytes'}, 'GSM2281037': {'type': 'Normal Keratinocytes'}, 'GSM2281036': {'type': 'Normal Keratinocytes'}, 'GSM2281033': {'type': 'Normal Keratinocytes'}, 'GSM2281032': {'type': 'Normal Keratinocytes'}, 'GSM2805299': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '58', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805298': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '58', 'timepoint': 'D2_ZT_15:30'}, 'GSM2124767': {'rin': '3.4', 'Sex': 'female'}, 'GSM1861913': {'group': 'Vec_Tam', 'factor': 'Yes'}, 'GSM1861912': {'group': 'Vec', 'factor': 'Yes'}, 'GSM1586025': {'line': 'HCT116', 'type': 'essential thrombocythemia', 'treatment': '100nM CA for 3hrs'}, 'GSM1616763': {'gender': 'male', 'tissue': 'Human glioblastoma'}, 'GSM1861918': {'group': 'Vec_Tam', 'factor': 'Yes'}, 'GSM1586024': {'line': 'HCT116', 'type': 'essential thrombocythemia', 'treatment': '100nM CA for 3hrs'}, 'GSM1872838': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1620631': {'type': 'MCF10a human breast cancer cells'}, 'GSM2595270': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2551384': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM1897334': {'line': 'MX1', 'type': 'breast cancer cell line'}, 'GSM1897335': {'line': 'OCUBM', 'type': 'breast cancer cell line'}, 'GSM1897336': {'line': 'SKBR3', 'type': 'breast cancer cell line'}, 'GSM1897337': {'line': 'SKBR5', 'type': 'breast cancer cell line'}, 'GSM1897330': {'line': 'MDAMB436', 'type': 'breast cancer cell line'}, 'GSM1897331': {'line': 'MDAMB453', 'type': 'breast cancer cell line'}, 'GSM1897332': {'line': 'MDAMB468', 'type': 'breast cancer cell line'}, 'GSM1897333': {'line': 'MFM223', 'type': 'breast cancer cell line'}, 'GSM1897338': {'line': 'SKBR7', 'type': 'breast cancer cell line'}, 'GSM1897339': {'line': 'SUM102', 'type': 'breast cancer cell line'}, 'GSM2375468': {'tissue': 'iPSC-derived neuron', 'group': 'patients'}, 'GSM2375469': {'tissue': 'iPSC-derived neuron', 'group': 'patients'}, 'GSM2375462': {'tissue': 'iPSC-derived neuron', 'group': 'control'}, 'GSM2375463': {'tissue': 'iPSC-derived neuron', 'group': 'control'}, 'GSM2375461': {'tissue': 'iPSC-derived neuron', 'group': 'control'}, 'GSM2375466': {'tissue': 'iPSC-derived neuron', 'group': 'control'}, 'GSM2375467': {'tissue': 'iPSC-derived neuron', 'group': 'patients'}, 'GSM2375464': {'tissue': 'iPSC-derived neuron', 'group': 'control'}, 'GSM2375465': {'tissue': 'iPSC-derived neuron', 'group': 'control'}, 'GSM2243631': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243630': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243633': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243632': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243635': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243634': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'A10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243637': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243636': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'B3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243639': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'H1', 'cluster': '2', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Oligodendrocyte', 'id': 'BT_S2'}, 'GSM2243638': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'A2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2235679': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': 'Ethanol', 'time': '2h'}, 'GSM2171891': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171890': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171893': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171892': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1711849': {'expression': '-', 'line': 'MKL-1', 'type': 'Merkel cell carcinoma', 'polyomavirus': 'positive', 'treatment': '-'}, 'GSM2171894': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171897': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171896': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171899': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171898': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM1816584': {'transfection': 'dCas9-VPR and a gRNA of length 14nt targeting MIAT', 'line': 'HEK293T'}, 'GSM2040748': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM2040749': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM1816585': {'transfection': 'dCas9-VPR and a gRNA of length 14nt targeting MIAT', 'line': 'HEK293T'}, 'GSM2040742': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM2040743': {'line': 'ID00014', 'type': 'lymphoblastoid cell', 'age': '34', 'genotype': '22q11del'}, 'GSM2040740': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040741': {'line': 'GM17938', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': '22q11del'}, 'GSM2040746': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040747': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040744': {'line': 'ID00015', 'type': 'lymphoblastoid cell', 'age': '57', 'genotype': 'wild type'}, 'GSM2040745': {'line': 'ID00016', 'type': 'lymphoblastoid cell', 'age': '11', 'genotype': '22q11del'}, 'GSM2747283': {'line': 'L20', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'IL5IgG from blood donor #1'}, 'GSM2747282': {'line': 'L20', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'IL3IgG from blood donor #1'}, 'GSM2747281': {'line': 'L20', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'rhIL3IgG'}, 'GSM2747280': {'line': 'L20', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'medium'}, 'GSM2747287': {'line': 'L21', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'rhIL3IgG'}, 'GSM2747286': {'line': 'L21', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'medium'}, 'GSM2747285': {'line': 'L20', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'IL5IgG from blood donor #2'}, 'GSM2747284': {'line': 'L20', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'IL3IgG from blood donor #2'}, 'GSM1816580': {'transfection': 'dCas9-VPR and a gRNA of length 20nt targeting MIAT', 'line': 'HEK293T'}, 'GSM2747289': {'line': 'L21', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'IL5IgG from blood donor #1'}, 'GSM2747288': {'line': 'L21', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'IL3IgG from blood donor #1'}, 'GSM1816581': {'transfection': 'dCas9-VPR and a gRNA of length 20nt targeting MIAT', 'line': 'HEK293T'}, 'GSM1384788': {'type': 'mobilized peripheral blood cells', 'agent': 'UM171[30.5nM]', 'time': '16 hour culture'}, 'GSM1816582': {'transfection': 'dCas9-VPR and a gRNA of length 16nt targeting MIAT', 'line': 'HEK293T'}, 'GSM1816583': {'transfection': 'dCas9-VPR and a gRNA of length 16nt targeting MIAT', 'line': 'HEK293T'}, 'GSM1384789': {'type': 'mobilized peripheral blood cells', 'agent': 'UM171[48.8nM]', 'time': '16 hour culture'}, 'GSM2348389': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348388': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348387': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348386': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348385': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348384': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348383': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348382': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348381': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348380': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1965035': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965034': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965037': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965036': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965031': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965030': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965033': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965032': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965039': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965038': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2222371': {'type': 'HEK Gibco'}, 'GSM2222370': {'type': 'HEK Gibco'}, 'GSM1657088': {'knockdown': 'PANCR', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM1657089': {'knockdown': 'PANCR', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM2262801': {'tissue': 'pancreas'}, 'GSM2262800': {'tissue': 'pancreas'}, 'GSM2262807': {'tissue': 'pancreas'}, 'GSM2262806': {'tissue': 'pancreas'}, 'GSM2262805': {'tissue': 'pancreas'}, 'GSM2262804': {'tissue': 'pancreas'}, 'GSM1657080': {'knockdown': 'PANCR', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM1657081': {'knockdown': 'PITX2', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM1657082': {'knockdown': 'PITX2', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM1657083': {'knockdown': 'PITX2', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM1657084': {'knockdown': 'Scrambled', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM1657085': {'knockdown': 'Scrambled', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM1657086': {'knockdown': 'Scrambled', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM1657087': {'knockdown': 'PANCR', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM2794001': {'protocol': 'cultured in media (RPMI) with 10ng/mL LPS for 24 hours', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_2', 'type': 'Monocyte'}, 'GSM2794000': {'protocol': 'cultured in media (RPMI) for 24 hours', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_2', 'type': 'Monocyte'}, 'GSM2794003': {'protocol': 'cultured in media (RPMI) for 24 hours', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_3', 'type': 'Monocyte'}, 'GSM2794002': {'protocol': 'none', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_3', 'type': 'Monocyte'}, 'GSM1598286': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM2794004': {'protocol': 'cultured in media (RPMI) with 10ng/mL LPS for 24 hours', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_3', 'type': 'Monocyte'}, 'GSM1598284': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM1598285': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM1598288': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM1598289': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM2142453': {'gender': 'male', 'age': '78', 'who': '1', 'dead': '1', 'date': '2013-03-05', 'histology': '3', 'tnm': '4', 'smoking': '1'}, 'GSM2142452': {'gender': 'male', 'age': '80', 'who': '0', 'dead': '1', 'date': '2008-09-01', 'histology': '2', 'tnm': '4', 'smoking': '2'}, 'GSM2142451': {'gender': 'male', 'age': '80', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '4', 'smoking': '2'}, 'GSM2142450': {'gender': 'female', 'age': '57', 'who': '1', 'dead': '1', 'date': '2007-01-04', 'histology': '1', 'tnm': '4', 'smoking': '1'}, 'GSM2142457': {'gender': 'male', 'age': '67', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '4', 'smoking': '2'}, 'GSM2142456': {'gender': 'female', 'age': '71', 'who': '0', 'dead': '1', 'date': '2007-07-13', 'histology': '2', 'tnm': '4', 'smoking': '2'}, 'GSM2142455': {'gender': 'female', 'age': '74', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '4', 'smoking': '2'}, 'GSM2142454': {'gender': 'female', 'age': '75', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2374784': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374785': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2142459': {'gender': 'female', 'age': '52', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142458': {'gender': 'male', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '5', 'smoking': '2'}, 'GSM2374780': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374781': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374782': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374783': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM1384786': {'type': 'mobilized peripheral blood cells', 'agent': 'UM171[125nM]', 'time': '16 hour culture'}, 'GSM2391879': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM1969309': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM2391878': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391877': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391876': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391875': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2649784': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1544119': {'line': 'HME-ZEB1-RAS', 'treatment': 'siMBD2'}, 'GSM1544118': {'line': 'HME-ZEB1-RAS', 'treatment': 'siControl'}, 'GSM1544117': {'line': 'HME-ZEB1-RAS', 'treatment': 'siControl'}, 'GSM2391873': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2649782': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1914578': {'type': 'cerebral organoid'}, 'GSM1914579': {'type': 'cerebral organoid'}, 'GSM1914574': {'type': 'cerebral organoid'}, 'GSM1914575': {'type': 'cerebral organoid'}, 'GSM1914576': {'type': 'cerebral organoid'}, 'GSM1914577': {'type': 'cerebral organoid'}, 'GSM1914570': {'type': 'cerebral organoid'}, 'GSM1914571': {'type': 'cerebral organoid'}, 'GSM1914572': {'type': 'cerebral organoid'}, 'GSM1914573': {'type': 'cerebral organoid'}, 'GSM3190828': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B101', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.733962'}, 'GSM3190829': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B101', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.586402'}, 'GSM3190824': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A11', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.066433'}, 'GSM3190825': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A11', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.591502'}, 'GSM3190826': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.969818'}, 'GSM3190827': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.434479'}, 'GSM3190820': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.187866'}, 'GSM3190821': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.029955'}, 'GSM3190822': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.623946'}, 'GSM3190823': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.10077'}, 'GSM2299863': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299862': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299861': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299860': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299867': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299866': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299865': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299864': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299869': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299868': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2815964': {'line': 'H9'}, 'GSM2815965': {'line': 'H9'}, 'GSM2815966': {'line': 'H9'}, 'GSM2815967': {'line': 'H9'}, 'GSM2815960': {'line': 'H9'}, 'GSM2815961': {'line': 'H9'}, 'GSM2815962': {'line': 'H9'}, 'GSM2815963': {'line': 'H9'}, 'GSM1171561': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM2815968': {'line': 'H9'}, 'GSM2815969': {'line': 'H9'}, 'GSM485519': {'line': 'NA18856'}, 'GSM1551269': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551268': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551267': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551266': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551265': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM485518': {'line': 'NA18501'}, 'GSM2607545': {'line': 'WA26'}, 'GSM485515': {'line': 'NA18502'}, 'GSM485514': {'line': 'NA19200'}, 'GSM2607544': {'line': 'WA26'}, 'GSM2028120': {'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2028121': {'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2028122': {'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2028123': {'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2172090': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2759016': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'N/A', 'transfection': 'U1'}, 'GSM1808864': {'type': 'proximal tubular epithelial cells', 'treatment': 'Hypoxia treated'}, 'GSM1808865': {'type': 'proximal tubular epithelial cells', 'treatment': 'Hypoxia treated'}, 'GSM1808866': {'type': 'proximal tubular epithelial cells', 'treatment': 'Control'}, 'GSM1808867': {'type': 'proximal tubular epithelial cells', 'treatment': 'Control'}, 'GSM1808860': {'type': 'proximal tubular epithelial cells', 'treatment': 'Control'}, 'GSM1808861': {'type': 'proximal tubular epithelial cells', 'treatment': 'Control'}, 'GSM1808862': {'type': 'proximal tubular epithelial cells', 'treatment': 'Control'}, 'GSM1808863': {'type': 'proximal tubular epithelial cells', 'treatment': 'Hypoxia treated'}, 'GSM1808868': {'type': 'proximal tubular epithelial cells', 'treatment': 'Control'}, 'GSM1808869': {'type': 'proximal tubular epithelial cells', 'treatment': 'Cytokine treated'}, 'GSM2562543': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM857476': {'status': 'KRAS mutant ©', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM2562541': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562540': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM857473': {'status': 'KRAS wildtype', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857472': {'status': 'KRAS wildtype', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857471': {'status': 'KRAS wildtype', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857470': {'status': 'KRAS mutant ©', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM2562549': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562548': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM857479': {'status': 'KRAS wildtype', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857478': {'status': 'KRAS mutant ©', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM2607541': {'line': 'WA26'}, 'GSM2048647': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM3186689': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '48', 'sample_id': '01-0034', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '3', 't1': '0', 'score': '4.42163', 'fraction': '0.035898', 'inflam': '0', 'active': '1', 'stir': '1'}, 'GSM3186688': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '32', 'sample_id': '01-0033', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '2', 't1': '0', 'score': '1.1521', 'fraction': '0.081885', 'inflam': '0', 'active': '0', 'stir': '2'}, 'GSM1369208': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM3186683': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '56', 'sample_id': '01-0025', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '4', 't1': '0', 'score': '15.9771', 'fraction': '0.045328', 'inflam': '1', 'active': '1', 'stir': '2'}, 'GSM3186682': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '49', 'sample_id': '01-0024', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '2', 't1': '0', 'score': '1.5741', 'fraction': '0.056151', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM3186681': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '54', 'sample_id': '01-0023', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '1', 't1': '0', 'score': '0.26536', 'fraction': '0.11423', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM3186680': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '56', 'sample_id': '01-0022', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '3', 't1': '3', 'score': '6.4209', 'fraction': '0.4532', 'inflam': '0', 'active': '1', 'stir': '0'}, 'GSM3186687': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '53', 'sample_id': '01-0030', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '2', 't1': '1', 'score': '1.84313', 'fraction': '0.16189', 'inflam': '0', 'active': '1', 'stir': '2'}, 'GSM3186686': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '31', 'sample_id': '01-0029', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '4', 't1': '1', 'score': '12.8821', 'fraction': '0.22341', 'inflam': '2', 'active': '2', 'stir': '2'}, 'GSM3186685': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '60', 'sample_id': '01-0027', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '3', 't1': '2', 'score': '6.66439', 'fraction': '0.15295', 'inflam': '0', 'active': '0', 'stir': '1'}, 'GSM3186684': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '60', 'sample_id': '01-0026', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '3', 't1': '0', 'score': '6.03517', 'fraction': '0.11083', 'inflam': '0', 'active': '2', 'stir': '2'}, 'GSM2085647': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1150585': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5502', 'number': '10'}, 'GSM1150584': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5477', 'number': '9'}, 'GSM1150587': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5504', 'number': '10'}, 'GSM1150586': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5503', 'number': '10'}, 'GSM1150581': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5474', 'number': '8'}, 'GSM1150580': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5472', 'number': '8'}, 'GSM1150583': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5476', 'number': '9'}, 'GSM1150582': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5475', 'number': '9'}, 'GSM2212044': {'line': 'Kasumi-1 cells', 'treatment': '125 nM MS417, 3 hr'}, 'GSM2212045': {'line': 'Kasumi-1 cells', 'treatment': 'untreated'}, 'GSM2212046': {'line': 'Kasumi-1 cells', 'treatment': 'untreated'}, 'GSM2212047': {'line': 'Kasumi-1 cells', 'treatment': '250 nM JQ1, 15 min'}, 'GSM1150589': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5511', 'number': '11'}, 'GSM1150588': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5510', 'number': '11'}, 'GSM2212042': {'line': 'Kasumi-1 cells', 'treatment': 'DMSO, 3 hr'}, 'GSM2212043': {'line': 'Kasumi-1 cells', 'treatment': '250 nM JQ1, 3 hr'}, 'GSM2533749': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533748': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533747': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533746': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533745': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533744': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533743': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM1957564': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2533741': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533740': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2545224': {'line': '76NF2V', 'type': 'Mammary Brest Epithelium'}, 'GSM3594679': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594678': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2581249': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581248': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581247': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581246': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581245': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581244': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581243': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581242': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581240': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2044434': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044435': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044436': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044437': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044430': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044431': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044432': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044433': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044438': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044439': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2543753': {'library_id': 'lib5896', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543752': {'library_id': 'lib5893', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543751': {'library_id': 'lib5892', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543750': {'library_id': 'lib5891', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543757': {'library_id': 'lib5900', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543756': {'library_id': 'lib5899', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543755': {'library_id': 'lib5898', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543754': {'library_id': 'lib5897', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3594671': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2543759': {'library_id': 'lib5902', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543758': {'library_id': 'lib5901', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3594670': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594673': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM850173': {'line': 'HeLa', 'transfection': 'hnRNP U knockdown'}, 'GSM850172': {'line': 'HeLa', 'transfection': 'Control'}, 'GSM850171': {'line': 'HeLa', 'antibody': 'monoclonal anti-hnRNP U antibody (3G6)'}, 'GSM850170': {'line': 'HeLa', 'antibody': 'monoclonal anti-hnRNP U antibody (3G6)'}, 'GSM2626958': {'origin': 'pancreas', 'patient_id': '153', 'type': 'primary', 'tumor_id': '127'}, 'GSM797434': {'vendor': 'Sigma Aldrich', 'line': 'HL60', 'antibody': 'IgG'}, 'GSM1538000': {'type': 'ES-derived neural progenitor cells', 'number': '48', 'treatment': 'Fgf2'}, 'GSM1538001': {'type': 'ES-derived neural progenitor cells', 'number': '48', 'treatment': 'Fgf2'}, 'GSM2142511': {'gender': 'male', 'age': '78', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM797433': {'vendor': 'Abcam', 'line': 'HL60', 'antibody': 'DNMT1'}, 'GSM3189432': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.814804', 'percentaligned': '0.948652581', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.25521', 'original': 'Control'}, 'GSM3189307': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.551653', 'percentaligned': '0.948533634', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.592056'}, 'GSM3189306': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '43', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.578305', 'percentaligned': '0.918966181', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.75336', 'original': 'Case'}, 'GSM3189305': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '91', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.59752', 'percentaligned': '0.868793422', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.266423', 'original': 'Case'}, 'GSM3189304': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '50', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.621627', 'percentaligned': '0.900868599', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.197503', 'original': 'Control'}, 'GSM1228204': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228205': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM3189301': {'boca': 'Yes', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.61281', 'percentaligned': '0.958174117', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.91445', 'original': 'Control'}, 'GSM3189300': {'boca': 'Yes', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.708484', 'percentaligned': '0.949147757', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.95524', 'original': 'Control'}, 'GSM1312923': {'type': 'skin epithelial cells', 'genotype': 'WT'}, 'GSM1312922': {'type': 'skin epithelial cells', 'genotype': 'WT'}, 'GSM1312921': {'type': 'cornea epithelial cells', 'genotype': 'WT'}, 'GSM1312920': {'type': 'cornea epithelial cells', 'genotype': 'WT'}, 'GSM1312927': {'type': 'skin epithelial stem cells', 'genotype': 'WT'}, 'GSM1312926': {'type': 'skin epithelial stem cells', 'genotype': 'WT'}, 'GSM1312925': {'type': 'limbal stem cells', 'genotype': 'WT'}, 'GSM1312924': {'type': 'limbal stem cells', 'genotype': 'WT'}, 'GSM2042878': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '24hr'}, 'GSM2042876': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042874': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042872': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM2042870': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '2hr'}, 'GSM867287': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Untreated'}, 'GSM867286': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours and 20 ug/ml of IDR-1018'}, 'GSM867285': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours'}, 'GSM867284': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Untreated'}, 'GSM2290626': {'type': 'Hepatic Specification'}, 'GSM2290627': {'type': 'Hepatic Progenitor'}, 'GSM2290624': {'type': 'Hepatic Specification'}, 'GSM1808005': {'tissue': 'Kidney'}, 'GSM1808002': {'tissue': 'Kidney'}, 'GSM2290623': {'type': 'Definitive Endoderm'}, 'GSM2290620': {'type': 'iPSC'}, 'GSM2290621': {'type': 'Definitive Endoderm'}, 'GSM1808008': {'tissue': 'Kidney'}, 'GSM1808009': {'tissue': 'Kidney'}, 'GSM2316869': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316868': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316861': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316860': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316863': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316862': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316865': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316864': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316867': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316866': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM3182755': {'passages': '28-34', 'type': 'ES-derived early cardiomyocytes'}, 'GSM2390881': {'disease': 'Healthy Control'}, 'GSM1103990': {'type': 'ER+ Breast Tumor'}, 'GSM867289': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours and 20 ug/ml of IDR-1018'}, 'GSM2390880': {'disease': 'Healthy Control'}, 'GSM3182756': {'passages': '28-34', 'type': 'ES-derived early cardiomyocytes'}, 'GSM1423466': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM1423465': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM1423464': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423463': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM1423462': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM1423461': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423460': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM2158270': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158271': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158272': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158273': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1369206': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2158276': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2158277': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1489577': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '16U3'}, 'GSM2456037': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456036': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456035': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456034': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456033': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456032': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1369207': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2456030': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456039': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456038': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2688982': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1842498': {'duration': '12h', 'line': 'SUM149', 'treatment': 'DMSO'}, 'GSM2758948': {'line': 'MCF-7', 'transfection': 'pLenti-CMV-hydro-GFP', 'treatment': 'Vehicle'}, 'GSM1619132': {'individual': 'Patient 5', 'type': 'IDC cells'}, 'GSM1619133': {'individual': 'Patient 6', 'type': 'IDC cells'}, 'GSM1619130': {'individual': 'Patient 3', 'type': 'IDC cells'}, 'GSM1619131': {'individual': 'Patient 4', 'type': 'IDC cells'}, 'GSM2877854': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877855': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877856': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877857': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877850': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877851': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2047518': {'well': 'A02', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047519': {'well': 'A03', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047516': {'well': 'bulk', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047517': {'well': 'A01', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047514': {'well': 'H11', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2324290': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'R-2HG'}, 'GSM2877858': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877859': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2047510': {'well': 'H07', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047511': {'well': 'H08', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2688988': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1171557': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171556': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171555': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171554': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171553': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171552': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171551': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171550': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171559': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171558': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM2242834': {'line': 'A375', 'replicate': '4'}, 'GSM2242835': {'line': 'A375', 'replicate': '4'}, 'GSM2242836': {'line': 'A375', 'replicate': '4'}, 'GSM2242837': {'line': 'A375', 'replicate': '4'}, 'GSM2242830': {'line': 'A375', 'replicate': '4'}, 'GSM2242831': {'line': 'A375', 'replicate': '4'}, 'GSM2242832': {'line': 'A375', 'replicate': '4'}, 'GSM2242833': {'line': 'A375', 'replicate': '4'}, 'GSM2242838': {'line': 'A375', 'replicate': '4'}, 'GSM2242839': {'line': 'A375', 'replicate': '4'}, 'GSM1863724': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863725': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM2177868': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM2828624': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3030', 'type': 'CD8 T cells'}, 'GSM2177869': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '2'}, 'GSM2467589': {'line': 'HEK293', 'overexpression': 'GFP Control'}, 'GSM2467588': {'line': 'HEK293', 'overexpression': 'GFP - SAHH'}, 'GSM2467587': {'line': 'HEK293', 'overexpression': 'GFP - SAHH'}, 'GSM2467586': {'line': 'HEK293', 'overexpression': 'GFP Control'}, 'GSM2467585': {'line': 'HEK293', 'overexpression': 'GFP Control'}, 'GSM2247738': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2177862': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '2'}, 'GSM1648819': {'group': 'ASD', 'gender': 'Male', 'clone': 'AVID_5_20', 'biopsy': '16 (Fluent Speech - Child/Adolescent)', 'years': '4.21', 'volume': '1361', 'type': 'iPSC-derived neurons', 'id': 'AVID'}, 'GSM1648818': {'group': 'ASD', 'gender': 'Male', 'clone': 'AVID_5_5', 'biopsy': '16 (Fluent Speech - Child/Adolescent)', 'years': '4.21', 'volume': '1361', 'type': 'iPSC-derived neurons', 'id': 'AVID'}, 'GSM1648817': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_2', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSC-derived neurons', 'id': 'ARCH'}, 'GSM1648816': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_1', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSC-derived neurons', 'id': 'ARCH'}, 'GSM1648815': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_6', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSC-derived neurons', 'id': 'ARCH'}, 'GSM1648814': {'group': 'ASD', 'gender': 'Male', 'clone': 'AQUA_3_9', 'biopsy': '13 (Fluent Speech -Chld/Adolescent)', 'years': '4.05', 'volume': '1409', 'type': 'iPSC-derived neurons', 'id': 'AQUA'}, 'GSM1648813': {'group': 'ASD', 'gender': 'Male', 'clone': 'AQUA_3_3', 'biopsy': '13 (Fluent Speech -Chld/Adolescent)', 'years': '4.05', 'volume': '1409', 'type': 'iPSC-derived neurons', 'id': 'AQUA'}, 'GSM1648812': {'group': 'ASD', 'gender': 'Male', 'clone': 'APEX_5_4', 'biopsy': '18 (Fluent Speech - Adolescent/Adult)', 'years': '3.62', 'volume': '1515', 'type': 'iPSC-derived neurons', 'id': 'APEX'}, 'GSM1648811': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_19', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSC-derived neurons', 'id': 'AHOY'}, 'GSM1648810': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_4', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSC-derived neurons', 'id': 'AHOY'}, 'GSM2666047': {'age': 'Day 450', 'well': 'F4', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2177861': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM2632326': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM1863728': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM2177867': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM1872999': {'infection': 'Uninfected control'}, 'GSM1872998': {'infection': 'Uninfected control'}, 'GSM1817338': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1817339': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM2147001': {'transduction': 'miR-28 XENO 1', 'pair': '5', 'treatment': 'Doxyciclin', 'batch': '2'}, 'GSM2147000': {'transduction': 'miR-28 XENO 1', 'pair': '4', 'treatment': 'Doxyciclin', 'batch': '2'}, 'GSM1817334': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM1817335': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM1817336': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM1817337': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM1817330': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM1817331': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM1817332': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM1817333': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM2455717': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455716': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455715': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455714': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455713': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455712': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455711': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455710': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2666040': {'age': 'Day 130', 'well': 'C8', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2455719': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455718': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1528649': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '147'}, 'GSM1528648': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '148'}, 'GSM1528641': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '143'}, 'GSM1528640': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '143'}, 'GSM1528643': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '159'}, 'GSM1528642': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '157'}, 'GSM1528645': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '156'}, 'GSM1528644': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '156'}, 'GSM1528647': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '144'}, 'GSM1528646': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '144'}, 'GSM1946168': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19140', 'for': '30min'}, 'GSM1946169': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19140', 'for': '60min'}, 'GSM1946164': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19138', 'for': '60min'}, 'GSM1946165': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19138', 'for': '60min'}, 'GSM1946166': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19140', 'for': '30min'}, 'GSM1946167': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19140', 'for': '30min'}, 'GSM1946160': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '60min'}, 'GSM1946161': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '60min'}, 'GSM1946162': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19138', 'for': '30min'}, 'GSM1395862': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2666049': {'age': 'Day 450', 'well': 'D9', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM1395860': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2509931': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509930': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509932': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM1977404': {'tissue': 'neonatal cord blood', 'type': 'MPP+-'}, 'GSM2723048': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.035', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.187', 'age': '54', 'tcga_subtype_dif': '0.056', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'ASIAN', 'tcga_subtype_imr': '-0.232', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IV'}, 'GSM2665978': {'age': 'Day 130', 'well': 'D8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665979': {'age': 'Day 130', 'well': 'A4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2665976': {'age': 'Day 130', 'well': 'H2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2723042': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.007', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.358', 'age': '51', 'tcga_subtype_dif': '0.05', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Endometrial cancer', 'race': 'WHITE', 'tcga_subtype_imr': '-0.451', 'outcome': 'Unknown', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2665974': {'age': 'Day 130', 'well': 'A5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2723040': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.547', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.144', 'age': '56', 'tcga_subtype_dif': '-0.075', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.303', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2665972': {'age': 'Day 130', 'well': 'E9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2723046': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.275', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.22', 'age': '49', 'tcga_subtype_dif': '0.41', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'OTHER', 'tcga_subtype_imr': '0.144', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIC'}, 'GSM2665970': {'age': 'Day 130', 'well': 'F1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2723044': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.08', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.102', 'age': '59', 'tcga_subtype_dif': '0.026', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'OTHER', 'tcga_subtype_imr': '0.173', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM1561404': {'source': 'pleural cavity', 'line': 'HPM4', 'type': 'primary mesothelial cells', 'treatment': '5 μg/cm2 of crocidolite asbestos exposure for 8 hrs'}, 'GSM1561405': {'source': 'pleural cavity', 'line': 'HPM4', 'type': 'primary mesothelial cells', 'treatment': '5 μg/cm2 of crocidolite asbestos exposure for 8 hrs'}, 'GSM1561400': {'source': 'pleural cavity', 'line': 'HPM3', 'type': 'primary mesothelial cells', 'treatment': '5 μg/cm2 of crocidolite asbestos exposure for 8 hrs'}, 'GSM1561401': {'source': 'pleural cavity', 'line': 'HPM3', 'type': 'primary mesothelial cells', 'treatment': '5 μg/cm2 of crocidolite asbestos exposure for 8 hrs'}, 'GSM1561402': {'source': 'pleural cavity', 'line': 'HPM4', 'type': 'primary mesothelial cells', 'treatment': 'no exposure for 8 hrs'}, 'GSM1561403': {'source': 'pleural cavity', 'line': 'HPM4', 'type': 'primary mesothelial cells', 'treatment': 'no exposure for 8 hrs'}, 'GSM2361933': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1521738': {'antibody': 'Abcam,ab8580,GR68224-1', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521739': {'antibody': 'none (Input)', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521732': {'antibody': 'Abcam,ab8895,659352', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521733': {'antibody': 'Millipore,07-473,JBC1888194', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521730': {'antibody': 'Millipore,07-449,2039786', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521731': {'antibody': 'Active Motif,39133,31610003', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521736': {'antibody': 'Active Motif,39133,31610003', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521737': {'antibody': 'Abcam,ab8895,659352', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521734': {'antibody': 'none (Input)', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521735': {'antibody': 'Millipore,07-449,2064519', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2454044': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454045': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454046': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454047': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454040': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454041': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454042': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454043': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2705314': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 1 14 month at -20°C', 'date': '11.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2454048': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454049': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2374014': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374015': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374016': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374017': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374010': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374011': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374012': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374013': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374018': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374019': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2635316': {'line': 'HOS', 'antibody': 'rabbit anti-FOSL1/Fra-1 (Santa Cruz #sc-605)'}, 'GSM2635315': {'line': 'HOS', 'antibody': 'rabbit anti-c-Fos (Santa Cruz #sc-52)'}, 'GSM2635314': {'line': 'MG63.3', 'antibody': 'rabbit anti-FOSL1/Fra-1 (Santa Cruz #sc-605)'}, 'GSM2501588': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shTP53'}, 'GSM2635312': {'line': 'MG63', 'antibody': 'rabbit anti-FOSL1/Fra-1 (Santa Cruz #sc-605)'}, 'GSM2635311': {'line': 'MG63', 'antibody': 'rabbit anti-c-Fos (Santa Cruz #sc-52)'}, 'GSM2516097': {'line': 'MDA231', 'type': 'Mammary carcinoma cells', 'level': 'hi'}, 'GSM2501584': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shMYC'}, 'GSM2501585': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shE2F1'}, 'GSM2501586': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shE2F1'}, 'GSM2501587': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shTP53'}, 'GSM2501580': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2501581': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shFra1'}, 'GSM2501582': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shFra1'}, 'GSM2501583': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shMYC'}, 'GSM1865469': {'line': 'DLD-1', 'type': 'exosomes'}, 'GSM1865468': {'line': 'DLD-1', 'type': 'exosomes'}, 'GSM1865461': {'line': 'DKs-8', 'type': 'cell'}, 'GSM1865460': {'line': 'DKO-1', 'type': 'exosomes'}, 'GSM1865463': {'line': 'DKs-8', 'type': 'exosomes'}, 'GSM1865462': {'line': 'DKs-8', 'type': 'cell'}, 'GSM1865465': {'line': 'DKs-8', 'type': 'exosomes'}, 'GSM1865464': {'line': 'DKs-8', 'type': 'exosomes'}, 'GSM1865467': {'line': 'DLD-1', 'type': 'cell'}, 'GSM1865466': {'line': 'DLD-1', 'type': 'cell'}, 'GSM2728734': {'protocol': 'TT-seq (Schwalb et al., 2016)', 'genotype': 'wild type', 'antibody': '-', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 min of 5 µM of 1-NA-PP1 (CDK9as inhibitor) (Calbiochem, EMD Millipore); incl. 4sU-labeling during the last 5 minutes.'}, 'GSM2840178': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2413508': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413509': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413500': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413501': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413502': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413503': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413504': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413505': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413506': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413507': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2492128': {'type': 'Small Airway Epithelial Cells', 'agent': 'blasticidin', 'variation': 'KRAS G12V'}, 'GSM2210575': {'line': 'A375', 'treatment': 'Vemurafenib+JQ1'}, 'GSM927330': {'patient': '8', 'gender': 'female', 'age': '62 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927331': {'patient': '8', 'gender': 'female', 'age': '62 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IA'}, 'GSM1978811': {'line': 'MCF7', 'treatment': 'Control'}, 'GSM1978810': {'line': 'MCF7', 'treatment': 'Control'}, 'GSM1978813': {'line': 'MCF7', 'treatment': 'Control'}, 'GSM1978812': {'line': 'MCF7', 'treatment': 'Control'}, 'GSM927338': {'patient': '1', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927339': {'patient': '1', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIA'}, 'GSM1978817': {'line': 'MCF7', 'treatment': 'TRIM28 Knock Down'}, 'GSM1978816': {'line': 'MCF7', 'treatment': 'TRIM28 Knock Down'}, 'GSM1620595': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2728738': {'protocol': 'mNET-seq (Nojima et al., 2016; Schlackow et al., 2017)', 'genotype': 'CDK9as', 'antibody': 'MABI0601 (BIOZOL)', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 min of 5 µM of 1-NA-PP1 (CDK9as inhibitor) (Calbiochem, EMD Millipore).'}, 'GSM2728739': {'protocol': 'mNET-seq (Nojima et al., 2016; Schlackow et al., 2017)', 'genotype': 'CDK9as', 'antibody': 'MABI0601 (BIOZOL)', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 min of 5 µM of 1-NA-PP1 (CDK9as inhibitor) (Calbiochem, EMD Millipore).'}, 'GSM1569580': {'knockdown': 'negative control', 'line': 'HMC-LTR', 'antibody': 'H3K9me2'}, 'GSM2535683': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1149', 'samplename': '1_413UNST_C83', 'seqsite': 'BRI', 'sampleID': 'S13225', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1149', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C83'}, 'GSM2232077': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM2232076': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM2232075': {'line': 'Caco-2', 'treatment': 'C. concisus BAA infection'}, 'GSM2232074': {'line': 'Caco-2', 'treatment': 'C. concisus BAA infection'}, 'GSM2232073': {'line': 'Caco-2', 'treatment': 'C. concisus BAA infection'}, 'GSM2232079': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM2232078': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM2046131': {'with': 'none (control)', 'line': 'A549', 'type': 'human lung carcinoma cell line'}, 'GSM2204833': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204830': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204831': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2287121': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287120': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287123': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287122': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287125': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2335508': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'wildtype'}, 'GSM2287127': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287126': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287129': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287128': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2335507': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'wildtype'}, 'GSM2192667': {'type': 'Human mammary epithelial cells'}, 'GSM2515725': {'line': 'HCT116'}, 'GSM2515724': {'line': 'HCT116'}, 'GSM2515727': {'line': 'HCT116'}, 'GSM2515726': {'line': 'HCT116'}, 'GSM2515721': {'line': 'RKO'}, 'GSM2515720': {'line': 'RKO'}, 'GSM2515723': {'line': 'RKO'}, 'GSM2515722': {'line': 'RKO'}, 'GSM2298953': {'line': 'DU145', 'tissue': 'prostate adenocarcinoma metastaticized to brain', 'type': 'Pca'}, 'GSM2515729': {'line': 'HCT116'}, 'GSM2515728': {'line': 'HCT116'}, 'GSM2212700': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2309797': {'line': 'A549', 'tissue': 'lung adenocarcinoma'}, 'GSM2309796': {'line': 'A549', 'tissue': 'lung adenocarcinoma'}, 'GSM2309795': {'line': 'A549', 'tissue': 'lung adenocarcinoma'}, 'GSM2309794': {'line': 'A549', 'tissue': 'lung adenocarcinoma'}, 'GSM2816103': {'line': 'H9'}, 'GSM2816102': {'line': 'H9'}, 'GSM2816101': {'line': 'H9'}, 'GSM2816100': {'line': 'H9'}, 'GSM2192660': {'type': 'Human mammary epithelial cells'}, 'GSM2361304': {'sum': '6', 'tissue': 'tumorous prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '67', 'identifier': 'C15', 'population': 'Russian'}, 'GSM2816109': {'line': 'H9'}, 'GSM2816108': {'line': 'H9'}, 'GSM2287144': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2361302': {'sum': '7', 'tissue': 'tumorous prostate tissue', 'score': '4', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '50', 'identifier': 'C14', 'population': 'Russian'}, 'GSM2287142': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2411379': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2287141': {'pair': 'P7_08', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2411375': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411374': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411377': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411376': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411371': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411370': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411373': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411372': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1376091': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376090': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376093': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376092': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376095': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376094': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376097': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376096': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376099': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376098': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2361308': {'sum': 'not applicable', 'tissue': 'adenomatous prostate tissue', 'score': 'not applicable', 'diagnosis': 'benign prostatic hyperplasia', 'invasion': 'no', 'operation': '68', 'identifier': 'B2', 'population': 'Russian'}, 'GSM2361309': {'sum': '7', 'tissue': 'tumorous prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '64', 'identifier': 'B3', 'population': 'Russian'}, 'GSM2171918': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171919': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171914': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171915': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171916': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171917': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171910': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171911': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171912': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171913': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1281829': {'status': '3 months LVAD support', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Male', 'age': '66', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281828': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '21', 'gender': 'Male', 'age': '66', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281825': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '21', 'gender': 'Female', 'age': '70', 'tissue': 'Serum', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1993', 'race': 'Caucasian', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '209'}, 'GSM1281824': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Female', 'age': '70', 'tissue': 'Serum', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1993', 'race': 'Caucasian', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '209'}, 'GSM1281827': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '21', 'gender': 'Male', 'age': '66', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281826': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Male', 'age': '66', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281821': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '21', 'gender': 'Female', 'age': '70', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1993', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '209'}, 'GSM1281820': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Female', 'age': '70', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1993', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '209'}, 'GSM1281823': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '21', 'gender': 'Female', 'age': '70', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1993', 'race': 'Caucasian', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '209'}, 'GSM1281822': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Female', 'age': '70', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1993', 'race': 'Caucasian', 'nyha': 'II-III', 'device': 'HeartMate II', 'lvad': '209'}, 'GSM2411591': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411590': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411593': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411592': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411594': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM1564292': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '0', 'replicate': '2', 'hcc827': '100'}, 'GSM1564293': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '25', 'replicate': '2', 'hcc827': '75'}, 'GSM1564290': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '75', 'replicate': '1', 'hcc827': '25'}, 'GSM2125489': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'INTS12_D-siRNA_C'}, 'GSM2125488': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'INTS12_D-siRNA_C'}, 'GSM2125483': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'scrambled_D-siRNA'}, 'GSM2125482': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'scrambled_D-siRNA'}, 'GSM2125481': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'none (untransfected)'}, 'GSM2125480': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'none (untransfected)'}, 'GSM2125487': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'INTS12_D-siRNA_A'}, 'GSM1937108': {'age': 'Adult', 'tissue': 'testis', 'type': 'Total testis', 'Sex': 'Male'}, 'GSM2125485': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'INTS12_D-siRNA_A'}, 'GSM2125484': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'scrambled_D-siRNA'}, 'GSM1937109': {'age': 'Adult', 'tissue': 'testis', 'type': 'Total testis', 'Sex': 'Male'}, 'GSM1963789': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963788': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963785': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963784': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963787': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963786': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963781': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963780': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963783': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963782': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1620697': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620696': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620695': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620694': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620693': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620692': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620691': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620690': {'type': 'MCF10a human breast cancer cells'}, 'GSM3208699': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1620699': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620698': {'type': 'MCF10a human breast cancer cells'}, 'GSM1937102': {'age': 'Adult', 'tissue': 'testis', 'type': 'Sertoli cells', 'Sex': 'Male'}, 'GSM3208698': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1937103': {'age': 'Adult', 'tissue': 'testis', 'type': 'Sertoli cells', 'Sex': 'Male'}, 'GSM1937100': {'age': 'Adult', 'tissue': 'testis', 'type': 'Peritubular cells', 'Sex': 'Male'}, 'GSM3594378': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1937101': {'age': 'Adult', 'tissue': 'testis', 'type': 'Peritubular cells', 'Sex': 'Male'}, 'GSM2665927': {'age': 'Day 130', 'well': 'B9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2199531': {'age': '47', 'tissue': 'Subcutaneous fat', 'bmi': '41.2'}, 'GSM2033151': {'type': 'human umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM2033150': {'type': 'human umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM2033153': {'type': 'human umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scramble G)', 'passage': 'passage 3'}, 'GSM2267421': {'histology': 'not applicable', 'tissuetype': 'Gastric primary non-malignant tissue'}, 'GSM2033154': {'type': 'human umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM2267424': {'histology': 'intestinal', 'tissuetype': 'Gastric primary tumor tissue'}, 'GSM1937107': {'age': 'Adult', 'tissue': 'testis', 'type': 'Spermatides', 'Sex': 'Male'}, 'GSM3586593': {'pfstt': '411', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '411', 'cycles': '6', 'oscs': '1'}, 'GSM3586592': {'origin': 'GCB', 'pfstt': '1658', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1665', 'cycles': '6', 'oscs': '0'}, 'GSM3586591': {'origin': 'GCB', 'pfstt': '1490', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1688', 'cycles': '6', 'oscs': '0'}, 'GSM3586590': {'origin': 'GCB', 'pfstt': '315', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '753', 'cycles': '6', 'oscs': '0'}, 'GSM3586597': {'origin': 'ABC', 'pfstt': '1077', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1078', 'cycles': '6', 'oscs': '0'}, 'GSM3586596': {'origin': 'GCB', 'pfstt': '292', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '292', 'cycles': '6', 'oscs': '1'}, 'GSM3586595': {'origin': 'GCB', 'pfstt': '194', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '938', 'cycles': '6', 'oscs': '0'}, 'GSM3586594': {'origin': 'UNCLASSIFIED', 'pfstt': '1112', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1165', 'cycles': '6', 'oscs': '0'}, 'GSM3586599': {'origin': 'GCB', 'pfstt': '950', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '950', 'cycles': '6', 'oscs': '0'}, 'GSM3586598': {'origin': 'UNCLASSIFIED', 'pfstt': '1016', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1018', 'cycles': '6', 'oscs': '0'}, 'GSM3208691': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208690': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1588908': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM2274899': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34660', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10586', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C59', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10586', 'studysiteshort': 'YALE'}, 'GSM2274898': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34659', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10585', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C96', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10585', 'studysiteshort': 'YALE'}, 'GSM2274893': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34652', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10578', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C16', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10578', 'studysiteshort': 'YALE'}, 'GSM2274892': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34650', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10576', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C35', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10576', 'studysiteshort': 'YALE'}, 'GSM2274891': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34649', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10575', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C23', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10575', 'studysiteshort': 'YALE'}, 'GSM2274890': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34646', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10572', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C05', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10572', 'studysiteshort': 'YALE'}, 'GSM2274897': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34658', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10584', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C90', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10584', 'studysiteshort': 'YALE'}, 'GSM2274896': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34657', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10583', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C70', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10583', 'studysiteshort': 'YALE'}, 'GSM2274895': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34654', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10580', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C36', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10580', 'studysiteshort': 'YALE'}, 'GSM2274894': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34653', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10579', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C22', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10579', 'studysiteshort': 'YALE'}, 'GSM1128647': {'status': 'healthy', 'age': '25-40 years', 'tissue': 'peripheral blood', 'type': 'CD8+ T cells', 'treatment': 'none'}, 'GSM2197729': {'passages': '25-30'}, 'GSM984347': {'grade': '3', 'recurrence': '0', 'size': '2', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM2197727': {'passages': '25-30'}, 'GSM2197726': {'passages': '25-30'}, 'GSM2197725': {'passages': '25-30'}, 'GSM1588909': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM1128649': {'status': 'healthy', 'age': '25-40 years', 'tissue': 'peripheral blood', 'type': 'CD8+ T cells', 'treatment': 'SD208'}, 'GSM1128648': {'status': 'healthy', 'age': '25-40 years', 'tissue': 'peripheral blood', 'type': 'CD8+ T cells', 'treatment': 'TGF-b'}, 'GSM3594375': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2348646': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348647': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348644': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348645': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348642': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348643': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348640': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348641': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348648': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348649': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2451039': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2865075': {'tisue': 'retina', 'antibody': 'RNAPII (Santa Cruz, sc-899, lot K0111)', 'disease': 'normal', 'agent': 'largazole_75nM'}, 'GSM2865074': {'tisue': 'retina', 'antibody': 'RNAPII (Santa Cruz, sc-899, lot K0111)', 'disease': 'normal', 'agent': 'DMSO'}, 'GSM2307324': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307325': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307326': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307327': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307320': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307321': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307322': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307323': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307328': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307329': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2100190': {'rin': '8.8', 'Sex': 'Female', 'sspg': '90', 'age': '66', 'bmi': '29.6', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '694', 'method': 'Life-Tech GITC'}, 'GSM2100191': {'rin': '8.8', 'Sex': 'Male', 'sspg': '81', 'age': '65', 'bmi': '26.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '821', 'method': 'Qiagen:trizol'}, 'GSM2451030': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1466230': {'facs': 'Unsorted', 'line': 'TCam-2', 'gender': 'Male'}, 'GSM1466233': {'facs': 'TNAP and cKIT+', 'type': 'hPGC isolated from developmental week 7 genital ridge', 'gender': 'Male'}, 'GSM2451031': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1466235': {'facs': 'TNAP and cKIT-', 'type': 'Gonadal somatic cells isolated from developmental week 7 genital ridge', 'gender': 'Male'}, 'GSM1466234': {'facs': 'TNAP and cKIT+', 'type': 'hPGC isolated from developmental week 7 genital ridge', 'gender': 'Male'}, 'GSM1466237': {'facs': 'TNAP+', 'type': 'Human embryonic stem cell cultured in 4i condition', 'gender': 'Male'}, 'GSM1466236': {'facs': 'TNAP and cKIT-', 'type': 'Gonadal somatic cells isolated from developmental week 7 genital ridge', 'gender': 'Male'}, 'GSM1466239': {'facs': 'Unsorted', 'type': 'Day 2 pre-induced cells derived from hESC', 'gender': 'Male'}, 'GSM1466238': {'facs': 'TNAP+', 'type': 'Human embryonic stem cell cultured in 4i condition', 'gender': 'Male'}, 'GSM2317003': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2451037': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451034': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2722968': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.12', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.239', 'age': '74', 'tcga_subtype_dif': '0.105', 'stic': 'No', 'recurrence': 'N', 'record': 'Peritoneum Ca NOS', 'race': 'WHITE', 'tcga_subtype_imr': '-0.49', 'outcome': 'Optimal', 'review': 'Peritoneum Ca NOS', 'stage': 'IV'}, 'GSM2722966': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.422', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.252', 'age': '55', 'tcga_subtype_dif': '-0.187', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'ASIAN', 'tcga_subtype_imr': '0.048', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2451035': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2722963': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.009', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.37', 'age': '57', 'tcga_subtype_dif': '-0.424', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.025', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722961': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.289', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.433', 'age': '53', 'tcga_subtype_dif': '-0.156', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.358', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM1084099': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1084098': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1084091': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084090': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084093': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084092': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084095': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084094': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084097': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1084096': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1019736': {'line': 'HT29', 'type': 'colon cancer', 'treatment': 'control'}, 'GSM1019737': {'line': 'HT29', 'type': 'colon cancer', 'treatment': 'control'}, 'GSM1019735': {'line': 'HT29', 'type': 'colon cancer', 'treatment': 'control'}, 'GSM1019738': {'line': 'HT29', 'type': 'colon cancer', 'treatment': '5-Aza low'}, 'GSM1019739': {'line': 'HT29', 'type': 'colon cancer', 'treatment': '5-Aza low'}, 'GSM2393512': {'replicate': '2', 'line': 'BJ', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393513': {'replicate': '1', 'line': 'HELA', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2303159': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303158': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303157': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303156': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2303155': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303154': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303153': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303152': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACIW009'}, 'GSM2303151': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303150': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACIW009'}, 'GSM1504074': {'type': 'Bone Marrow Mononuclear Cells'}, 'GSM1504075': {'type': 'Bone Marrow Mononuclear Cells'}, 'GSM1504076': {'type': 'Bone Marrow Mononuclear Cells'}, 'GSM2451135': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1504073': {'type': 'Bone Marrow Mononuclear Cells'}, 'GSM2451134': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2455244': {'line': 'SET2', 'type': 'cultured sAML cells', 'treatment': 'OTX015'}, 'GSM1359237': {'tissue': 'prostate', 'type': 'LNCaP-abl', 'passage': '53-60'}, 'GSM1359238': {'tissue': 'prostate', 'type': 'LNCaP-abl', 'passage': '53-60'}, 'GSM1359239': {'tissue': 'prostate', 'type': 'LNCaP-abl', 'passage': '53-60'}, 'GSM2194409': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194408': {'type': 'mesenchyme', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194407': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194406': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194405': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194404': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194403': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194402': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194401': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194400': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1240655': {'line': 'SK-BR-3', 'set': 'set 1', 'genotype': 'mir-200c knockout'}, 'GSM1240654': {'line': 'SK-BR-3', 'set': 'set 1', 'genotype': 'mir-141 knockout'}, 'GSM1240657': {'line': 'SK-BR-3', 'set': 'set 2', 'genotype': 'wild type'}, 'GSM1240656': {'line': 'SK-BR-3', 'set': 'set 1', 'genotype': 'mir-141 and mir-200c knockout'}, 'GSM1240653': {'line': 'SK-BR-3', 'set': 'set 1', 'genotype': 'wild type'}, 'GSM1240659': {'line': 'SK-BR-3', 'set': 'set 2', 'genotype': 'mir-200c knockout'}, 'GSM1240658': {'line': 'SK-BR-3', 'set': 'set 2', 'genotype': 'mir-141 knockout'}, 'GSM830522': {'description': 'tier 1', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'IHN011', 'readtype': '2x36', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': 'gen0156C'}, 'GSM830523': {'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'IHN012', 'readtype': '2x36', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': 'gen0158N'}, 'GSM830520': {'description': 'tier 1', 'localization': 'cell', 'datatype': 'RnaPet', 'labexpid': 'DHP001', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0160WC'}, 'GSM830521': {'description': 'tier 1', 'localization': 'nucleolus', 'datatype': 'RnaPet', 'labexpid': 'DHK008', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0145NL'}, 'GSM830526': {'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'DHK006', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0150N'}, 'GSM830527': {'description': 'tier 1', 'localization': 'polysome', 'datatype': 'RnaPet', 'labexpid': 'DHK007', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0153P'}, 'GSM830524': {'description': 'tier 1', 'localization': 'nucleoplasm', 'datatype': 'RnaPet', 'labexpid': 'PHK002', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0148NP'}, 'GSM830525': {'description': 'tier 1', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'DHH002', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0126C'}, 'GSM2252989': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-p53'}, 'GSM2252988': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'scrambled'}, 'GSM2252987': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'scrambled'}, 'GSM2252986': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'scrambled'}, 'GSM2027518': {'line': 'H7 derived'}, 'GSM2027519': {'line': 'H7 derived'}, 'GSM2027510': {'line': 'H7 derived'}, 'GSM2027511': {'line': 'H7 derived'}, 'GSM2027512': {'line': 'H7 derived'}, 'GSM2027513': {'line': 'H7 derived'}, 'GSM2027514': {'line': 'H7 derived'}, 'GSM2027515': {'line': 'H7 derived'}, 'GSM2027516': {'line': 'H7 derived'}, 'GSM2027517': {'line': 'H7 derived'}, 'GSM1373306': {'replicate': '1', 'construct': 'Halo'}, 'GSM1373307': {'replicate': '2', 'construct': 'Halo'}, 'GSM1373308': {'replicate': '3', 'construct': 'Halo'}, 'GSM1373309': {'replicate': '1', 'construct': 'Halo-RelA'}, 'GSM2544738': {'line': 'K562'}, 'GSM2544739': {'line': 'K562'}, 'GSM873648': {'line': 'HEMn', 'type': 'human normal melanocyte'}, 'GSM873649': {'line': 'A375', 'type': 'human primary melanoma'}, 'GSM2544730': {'line': 'K562'}, 'GSM2544731': {'line': 'K562'}, 'GSM2544732': {'line': 'K562'}, 'GSM2544733': {'line': 'K562'}, 'GSM2544734': {'line': 'K562'}, 'GSM2544735': {'line': 'K562'}, 'GSM2544736': {'line': 'K562'}, 'GSM2544737': {'line': 'K562'}, 'GSM1624819': {'line': 'HEK293T', 'treatment': 'no AlkB-derived enzyme mixture'}, 'GSM1624818': {'line': 'HEK293T', 'treatment': 'no AlkB-derived enzyme mixture'}, 'GSM2056798': {'shRNA': 'Scramble', 'type': 'Motor Neuron', 'variation': 'Scramble Knockdown'}, 'GSM2056799': {'shRNA': 'Scramble', 'type': 'Motor Neuron', 'variation': 'Scramble Knockdown'}, 'GSM2056796': {'shRNA': 'FUS and TAF15', 'type': 'Motor Neuron', 'variation': 'FUS and TAF15 Knockdown'}, 'GSM2056797': {'shRNA': 'FUS and TAF15', 'type': 'Motor Neuron', 'variation': 'FUS and TAF15 Knockdown'}, 'GSM2056794': {'shRNA': 'FUS', 'type': 'Motor Neuron', 'variation': 'FUS Knockdown'}, 'GSM2056795': {'shRNA': 'FUS', 'type': 'Motor Neuron', 'variation': 'FUS Knockdown'}, 'GSM4008605': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008604': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008607': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008606': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008601': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008600': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008603': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008602': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008609': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008608': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM1823328': {'line': '690.C5', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM2602100': {'tissue': 'Skin', 'genotype': 'Wild type (RelA+/+)', 'passage': 'P5-7'}, 'GSM1823325': {'line': '690.C5', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM2602102': {'tissue': 'Skin', 'genotype': 'RelA+/-', 'passage': 'P5-7'}, 'GSM2602103': {'tissue': 'Skin', 'genotype': 'RelA+/-', 'passage': 'P5-7'}, 'GSM2602104': {'tissue': 'Skin', 'genotype': 'RelA+/-', 'passage': 'P5-7'}, 'GSM1823321': {'line': '690.C5', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM1823323': {'line': '690.C5', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM2595307': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'B11', 'unit': '5', '280': '1.76', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM2595306': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'A8', 'unit': '4', '280': '1.61', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM2595309': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'C9', 'unit': '6', '280': '1.78', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM2595308': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'B12', 'unit': '5', '280': '1.76', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '2', 'condition': 'Vehicle Control'}, 'GSM2210781': {'age': 'Mean 38.4 years', 'tissue': 'Peripheral blood', 'group': 'PTSD +ve', 'genotype': 'NA'}, 'GSM2210780': {'age': 'Mean 42.6 years', 'tissue': 'Peripheral blood', 'group': 'PTSD -ve', 'genotype': 'NA'}, 'GSM2210783': {'age': 'Mean 38.4 years', 'tissue': 'Peripheral blood', 'group': 'PTSD +ve', 'genotype': 'NA'}, 'GSM2210782': {'age': 'Mean 38.4 years', 'tissue': 'Peripheral blood', 'group': 'PTSD +ve', 'genotype': 'NA'}, 'GSM2210785': {'age': 'Mean 38.4 years', 'tissue': 'Peripheral blood', 'group': 'PTSD +ve', 'genotype': 'NA'}, 'GSM2210784': {'age': 'Mean 38.4 years', 'tissue': 'Peripheral blood', 'group': 'PTSD +ve', 'genotype': 'NA'}, 'GSM2575369': {'line': 'WM983B', 'subclone': 'C6', 'condition': 'Drug'}, 'GSM2575368': {'line': 'WM983B', 'subclone': 'C6', 'condition': 'NoDrug'}, 'GSM2575367': {'line': 'WM983B', 'subclone': 'B7', 'condition': 'Drug'}, 'GSM2575366': {'line': 'WM983B', 'subclone': 'B7', 'condition': 'NoDrug'}, 'GSM2575365': {'line': 'WM983B', 'subclone': 'B7', 'condition': 'NoDrug'}, 'GSM2575364': {'line': 'WM983B', 'subclone': 'B7', 'condition': 'NoDrug'}, 'GSM1147075': {'line': 'HEK293T', 'with': 'pChMut-TAP'}, 'GSM1147074': {'line': 'HEK293T', 'with': 'pChStaufen-TAP'}, 'GSM2575361': {'line': 'WM983B', 'subclone': 'B7', 'condition': 'NoDrug'}, 'GSM1147076': {'line': 'HEK293T', 'with': 'pChStaufen-TAP'}, 'GSM2361838': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361839': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361830': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361831': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361832': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361833': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361834': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361835': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361836': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361837': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2175468': {'type': 'FM1-derived iPSC', 'treatment': 'miR29a inhibitor'}, 'GSM2175469': {'type': 'FM1-derived iPSC', 'treatment': 'control inhibitor'}, 'GSM2185663': {'race': 'B', 'staging': '2.5', 'total_grade': '5', 'cea': 'NA', 'hcv_genotype': '1', 'hcv_activity': '2', 'age': '55', 'focal_lytic_nec_apop': '1', 'batch': '0', 'sgpt': '110', 'Sex': 'F', 'confluent_necrosis': '0', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': '2', 'sgot': '251', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': '2', 'afp': '21.8', 'hcv_viral_load': '1928995'}, 'GSM2185662': {'race': 'NB', 'staging': '1', 'total_grade': 'NA', 'cea': '3.3', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '69', 'focal_lytic_nec_apop': 'NA', 'batch': '0', 'sgpt': '148', 'Sex': 'M', 'confluent_necrosis': 'NA', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '201', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': '3', 'hcv_viral_load': '0'}, 'GSM1133029': {'patient': 'csc3', 'type': 'gastric cancer stem cell'}, 'GSM1133028': {'patient': 'csc3', 'type': 'mixture of several clones'}, 'GSM2185667': {'race': 'NB', 'staging': '1', 'total_grade': 'NA', 'cea': '2.8', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '69', 'focal_lytic_nec_apop': 'NA', 'batch': '0', 'sgpt': '378', 'Sex': 'M', 'confluent_necrosis': '1', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '771', 'ca19_9': '0', 'differentiation': '0', 'portal_inflammation': '1', 'afp': '5.4', 'hcv_viral_load': '0'}, 'GSM2185666': {'race': 'B', 'staging': '0', 'total_grade': 'NA', 'cea': '16', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '46', 'focal_lytic_nec_apop': 'NA', 'batch': '0', 'sgpt': '608', 'Sex': 'M', 'confluent_necrosis': 'NA', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '835', 'ca19_9': '8.1', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': 'NA', 'hcv_viral_load': '0'}, 'GSM1133025': {'patient': 'csc2', 'type': 'mixture of several clones'}, 'GSM1133024': {'patient': 'csc2', 'type': 'differentiated cell'}, 'GSM1133027': {'patient': 'csc3', 'type': 'differentiated cell'}, 'GSM1133026': {'patient': 'csc2', 'type': 'gastric cancer stem cell'}, 'GSM1133021': {'patient': 'csc1', 'type': 'differentiated cell'}, 'GSM2175465': {'type': 'D551-derived iPSC', 'treatment': 'miR29a inhibitor'}, 'GSM1133023': {'patient': 'csc1', 'type': 'gastric cancer stem cell'}, 'GSM1133022': {'patient': 'csc1', 'type': 'mixture of several clones'}, 'GSM2243757': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243754': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243755': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2807417': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2653611': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2807416': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2445609': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D6', 'type': 'primary human hepatocyte'}, 'GSM2172119': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172118': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048708': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048709': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048706': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048707': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048704': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2172112': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048702': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048703': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048700': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048701': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1905138': {'number': '5', 'transgenes': 'yes', 'time': 'exponential phase', 'line': 'leukemia cell line MEG-01', 'antibody': 'RBM15 antibody', 'protocols': 'RPMI1640+10% FBS'}, 'GSM1905139': {'line': 'leukemia cell line MEG-01', 'protocols': 'RPMI1640+10% FBS', 'number': '5', 'transgenes': 'yes', 'time': 'exponential phase'}, 'GSM1905136': {'number': '5', 'transgenes': 'yes', 'time': 'exponential phase', 'line': 'leukemia cell line MEG-01', 'antibody': 'normal immunoglobulin antibody', 'protocols': 'RPMI1640+10% FBS'}, 'GSM1905137': {'number': '5', 'transgenes': 'yes', 'time': 'exponential phase', 'line': 'leukemia cell line MEG-01', 'antibody': 'RBM15 antibody', 'protocols': 'RPMI1640+10% FBS'}, 'GSM1905135': {'number': '5', 'transgenes': 'yes', 'time': 'exponential phase', 'line': 'leukemia cell line MEG-01', 'antibody': 'normal immunoglobulin antibody', 'protocols': 'RPMI1640+10% FBS'}, 'GSM2807414': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM1048945': {'line': 'SK-Mel-28', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM1619491': {'type': 'peripheral monocytes', 'id': '#21', 'procedure': 'adjustable gastric banding', 'point': 'T0; before bariatric surgery'}, 'GSM1619490': {'type': 'peripheral monocytes', 'id': '#20', 'procedure': 'adjustable gastric banding', 'point': 'T0; before bariatric surgery'}, 'GSM1395528': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395529': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1619495': {'type': 'peripheral monocytes', 'id': '#02', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619494': {'type': 'peripheral monocytes', 'id': '#01', 'procedure': 'adjustable gastric banding', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619497': {'type': 'peripheral monocytes', 'id': '#06', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619496': {'type': 'peripheral monocytes', 'id': '#05', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1395522': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395523': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395520': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395521': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395526': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395527': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395524': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395525': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2931404': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2786471': {'subtype': 'CD45RA+Cyt-', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '2'}, 'GSM2786470': {'subtype': 'IL17A+GMCSF+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '3'}, 'GSM2931405': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2204719': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204718': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204713': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204712': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204711': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204710': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204717': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204716': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204715': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204714': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM1613642': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613643': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613640': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613641': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613646': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613647': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613644': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613645': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613648': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613649': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1464350': {'status': 'small cell lung cancer'}, 'GSM1464351': {'status': 'small cell lung cancer'}, 'GSM2348500': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464352': {'status': 'small cell lung cancer'}, 'GSM2753372': {'type': 'human induced hepatocyte-like cells'}, 'GSM2753373': {'type': 'human induced hepatocyte-like cells'}, 'GSM2753370': {'tissue': 'umbilical cord', 'type': 'Fibroblast'}, 'GSM2753371': {'tissue': 'umbilical cord', 'type': 'Fibroblast'}, 'GSM2753376': {'type': 'hiPSC derived hepatocyte-like cells'}, 'GSM2753377': {'type': 'hiPSC derived hepatocyte-like cells'}, 'GSM2753374': {'type': 'human induced hepatocyte-like cells'}, 'GSM2753375': {'type': 'human induced hepatocyte-like cells'}, 'GSM1464354': {'status': 'small cell lung cancer'}, 'GSM2753378': {'type': 'hiPSC derived hepatocyte-like cells'}, 'GSM2753379': {'type': 'hiPSC derived hepatocyte-like cells'}, 'GSM1464355': {'status': 'small cell lung cancer'}, 'GSM1464356': {'status': 'small cell lung cancer'}, 'GSM2348503': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464357': {'status': 'small cell lung cancer'}, 'GSM1846981': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846980': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846983': {'group': 'Fixed cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846982': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846985': {'group': 'Fixed cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846984': {'group': 'Fixed cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846987': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846986': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846989': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846988': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM2285424': {'replicate': '1', 'time': '24 h', 'type': 'aml', 'name': 'MOLM13', 'treatment': 'DMSO'}, 'GSM2285425': {'replicate': '2', 'time': '24 h', 'type': 'aml', 'name': 'MOLM13', 'treatment': 'DMSO'}, 'GSM2285422': {'replicate': '1', 'time': '24 h', 'type': 'aml', 'name': 'KG1A', 'treatment': 'DMSO'}, 'GSM2285423': {'replicate': '2', 'time': '24 h', 'type': 'aml', 'name': 'KG1A', 'treatment': 'DMSO'}, 'GSM2285420': {'replicate': '1', 'time': '24 h', 'type': 'aml', 'name': 'OCIAML2', 'treatment': 'DMSO'}, 'GSM2285421': {'replicate': '2', 'time': '24 h', 'type': 'aml', 'name': 'OCIAML2', 'treatment': 'DMSO'}, 'GSM1915612': {'donorid': '7256', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915613': {'donorid': '7256', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915610': {'donorid': '7256', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915611': {'donorid': '7256', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915616': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915617': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915614': {'donorid': '7256', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915615': {'donorid': '7256', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915618': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915619': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM2348505': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1048190': {'antibody': 'none', 'type': 'Hela', 'treatment': 'treated with PTB shRNA'}, 'GSM1048191': {'antibody': 'none', 'type': 'Hela', 'treatment': 'treated with control shRNA and further treated with actinomycin D (2 ug/ml) for 4 hours'}, 'GSM1048192': {'antibody': 'none', 'type': 'Hela', 'treatment': 'treated with PTB shRNA and further treated with actinomycin D (2 ug/ml) for 4 hours'}, 'GSM1846070': {'tissue': 'bone marrow'}, 'GSM2807854': {'line': 'bone marrow MSCs'}, 'GSM2807853': {'line': 'H1'}, 'GSM2807852': {'line': 'H1'}, 'GSM2807851': {'line': 'H1'}, 'GSM2807850': {'line': 'H1'}, 'GSM2233269': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233268': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233265': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233264': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233267': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233266': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233261': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233260': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233263': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233262': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2702392': {'phenotype': 'Cisplatin-resistant', 'treatment': '35 days'}, 'GSM2702393': {'phenotype': 'Cisplatin-resistant', 'treatment': '29 days'}, 'GSM2702390': {'phenotype': 'Control', 'treatment': 'Not applicable'}, 'GSM2702391': {'phenotype': 'Control', 'treatment': 'Not applicable'}, 'GSM2702396': {'phenotype': 'Combination (cisplatin+pictilisib) treatment-resistant', 'treatment': '40 days'}, 'GSM2702397': {'phenotype': 'Combination (cisplatin+pictilisib) treatment-resistant', 'treatment': '43 days'}, 'GSM2702394': {'phenotype': 'Pictilisib (GDC-0941)-resistant', 'treatment': '41 days'}, 'GSM2702395': {'phenotype': 'Pictilisib (GDC-0941)-resistant', 'treatment': '49 days'}, 'GSM2702398': {'phenotype': 'Sequential (cisplatin->pictilisib) treatment-resistant', 'treatment': '43 days'}, 'GSM1379025': {'agent': 'UM171+SR1', 'time': '0.5hr'}, 'GSM1379024': {'agent': 'UM171', 'time': '24hr'}, 'GSM1379027': {'agent': 'SR1', 'time': '0.5hr'}, 'GSM1379026': {'agent': 'DMSO', 'time': '0.5hr'}, 'GSM1379021': {'agent': 'UM171+SR1', 'time': '24hr'}, 'GSM1379020': {'agent': 'UM171', 'time': '12hr'}, 'GSM1379023': {'agent': 'SR1', 'time': '24hr'}, 'GSM1379022': {'agent': 'DMSO', 'time': '24hr'}, 'GSM2125133': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM1379029': {'agent': 'UM171+SR1', 'time': '3hr'}, 'GSM1379028': {'agent': 'UM171', 'time': '0.5hr'}, 'GSM2125132': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-PR (inhouse KD68)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2754805': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0386', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754804': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0520', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754807': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0180', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754806': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0208', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754801': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0587', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM735420': {'line': 'HK-2', 'type': 'kidney proximal tubule epithelial cell line'}, 'GSM2754803': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0377', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754802': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0462', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1519049': {'line': 'KARPAS-422', 'treatment': 'DMSO'}, 'GSM1519048': {'line': 'KARPAS-422', 'treatment': 'DMSO'}, 'GSM2754809': {'bin': '5', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0197', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754808': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0030', 'previousdiagnosisoftb': 'No', 'tst': '18.3', 'type': 'Tcells'}, 'GSM2414765': {'line': 'COLO205', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414764': {'line': 'COLO201', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414767': {'line': 'DiFi', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414766': {'line': 'COLO320', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414761': {'line': 'C135', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2142529': {'gender': 'female', 'age': '79', 'who': '1', 'dead': '1', 'date': '2013-02-15', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2414760': {'line': 'C125PM', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2142528': {'gender': 'female', 'age': '70', 'who': '1', 'dead': '1', 'date': '2009-09-25', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2414763': {'line': 'CACO2', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2125138': {'status': 'ER+/PRA-/PRB+', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM1899736': {'of': 'BAD', 'type': 'mammary epithelial cells'}, 'GSM1899737': {'of': 'BAD', 'type': 'mammary epithelial cells'}, 'GSM1899734': {'of': 'RAF1', 'type': 'mammary epithelial cells'}, 'GSM1899735': {'of': 'RAF1', 'type': 'mammary epithelial cells'}, 'GSM1899732': {'of': 'RAF1', 'type': 'mammary epithelial cells'}, 'GSM1899733': {'of': 'RAF1', 'type': 'mammary epithelial cells'}, 'GSM1899730': {'of': 'RAF1', 'type': 'mammary epithelial cells'}, 'GSM1899731': {'of': 'RAF1', 'type': 'mammary epithelial cells'}, 'GSM2158009': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158008': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM1899738': {'of': 'BAD', 'type': 'mammary epithelial cells'}, 'GSM1899739': {'of': 'BAD', 'type': 'mammary epithelial cells'}, 'GSM1382018': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382019': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382016': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382017': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382014': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382015': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382012': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382013': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382010': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382011': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2632669': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM1700520': {'clone': 'NOMO1 resistant clone', 'line': 'NOMO1', 'treatment': 'DMSO'}, 'GSM1700521': {'clone': 'NOMO1 resistant clone', 'line': 'NOMO1', 'treatment': 'CPI203'}, 'GSM2722232': {'line': 'GM02171', 'type': 'adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'd30'}, 'GSM2722231': {'line': 'GM02171', 'type': 'adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'd30'}, 'GSM2871749': {'extraction': 'heavy polysome mRNA', 'tissue': 'tamoxifen sensitive MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'non-silencing'}, 'GSM2871742': {'extraction': 'total mRNA', 'tissue': 'tamoxifen sensitive MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'non-silencing'}, 'GSM2871743': {'extraction': 'heavy polysome mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'non-silencing'}, 'GSM2871740': {'extraction': 'heavy polysome mRNA', 'tissue': 'tamoxifen sensitive MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'non-silencing'}, 'GSM2871741': {'extraction': 'light polysome mRNA', 'tissue': 'tamoxifen sensitive MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'non-silencing'}, 'GSM2871746': {'extraction': 'heavy polysome mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'eIF4E-silenced'}, 'GSM2871747': {'extraction': 'light polysome mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'eIF4E-silenced'}, 'GSM2871744': {'extraction': 'light polysome mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'non-silencing'}, 'GSM2871745': {'extraction': 'total mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'non-silencing'}, 'GSM2212637': {'gender': 'female', 'condition': 'control'}, 'GSM2212636': {'gender': 'female', 'condition': 'control'}, 'GSM2212635': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212634': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212633': {'gender': 'male', 'condition': 'control'}, 'GSM2212632': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212631': {'gender': 'male', 'condition': 'control'}, 'GSM2212630': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212639': {'gender': 'female', 'condition': 'control'}, 'GSM2212638': {'gender': 'male', 'condition': 'control'}, 'GSM2176025': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2472011': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2472010': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM1965428': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965429': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965422': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965423': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965420': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965421': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965426': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965427': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965424': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965425': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1000979': {'type': 'Germinal center B cells', 'antibody': 'BCL6 N-3', 'manufacturer': 'Santa Cruz'}, 'GSM2309612': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309613': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309610': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309611': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309616': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309617': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309614': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309615': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309618': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309619': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2665716': {'age': 'Day 100', 'well': 'F6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2680565': {'line': 'H1', 'type': 'embryonic stem cells', 'genotype': 'wild type'}, 'GSM2711228': {'tissue': 'Meningioma tumor'}, 'GSM2711229': {'tissue': 'Meningioma tumor'}, 'GSM2711222': {'tissue': 'Meningioma tumor'}, 'GSM2711223': {'tissue': 'Meningioma tumor'}, 'GSM2711220': {'tissue': 'Meningioma tumor'}, 'GSM2711221': {'tissue': 'Meningioma tumor'}, 'GSM2711226': {'tissue': 'Meningioma tumor'}, 'GSM2711227': {'tissue': 'Meningioma tumor'}, 'GSM2711224': {'tissue': 'Meningioma tumor'}, 'GSM2711225': {'tissue': 'Meningioma tumor'}, 'GSM2392201': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392200': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392203': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392202': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376118': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376119': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2392207': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392206': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376114': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376115': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376116': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376117': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376110': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376111': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376112': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376113': {'state': 'COPD', 'tissue': 'lung'}, 'GSM3190668': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.31372'}, 'GSM3190669': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.577871'}, 'GSM3190666': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'No', 'visit': 'None', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'F', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', '4': 'No', '2': 'No', 'years': '7', 'libcounts': '7.401261', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM3190667': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.448023'}, 'GSM3190664': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.792193'}, 'GSM3190665': {'boca': 'Yes', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.26916'}, 'GSM3190662': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.9', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.648692'}, 'GSM3190663': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'No', 'visit': 'None', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'M', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', '4': 'No', '2': 'No', 'years': '13', 'libcounts': '5.309078', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM3190660': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'Yes', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.413178'}, 'GSM3190661': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'Yes', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.662998'}, 'GSM2333477': {'to': 'atheroprotective laminar flow (shear stress=12 dyne/cm2) for 48 h', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333476': {'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333475': {'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333479': {'with': 'control siRNA for 48hrs', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333478': {'to': 'atheroprotective laminar flow (shear stress=12 dyne/cm2) for 48 h', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM1517770': {'knockdown': 'shSCR', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM1970810': {'type': 'Human cervical cancer cells (HeLa)'}, 'GSM2723919': {'state': 'ccRCC', 'individual': 'patient 12364284', 'tissue': 'adjacent normal kidney'}, 'GSM1505819': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '03-03'}, 'GSM2274916': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-7', 'trunkbarcode': '927496', 'sampleID': 'S32676', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9289', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'Unstimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9289', 'studysiteshort': 'UCSF'}, 'GSM2274917': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-8', 'trunkbarcode': '927496', 'sampleID': 'S32677', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9290', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'Unstimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9290', 'studysiteshort': 'UCSF'}, 'GSM2274915': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-6', 'trunkbarcode': '927496', 'sampleID': 'S32675', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9288', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'Unstimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9288', 'studysiteshort': 'UCSF'}, 'GSM2274918': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-9', 'trunkbarcode': '927496', 'sampleID': 'S32678', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9291', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'Unstimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9291', 'studysiteshort': 'UCSF'}, 'GSM2274919': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-10', 'trunkbarcode': '927496', 'sampleID': 'S32679', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9292', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'Unstimulated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9292', 'studysiteshort': 'UCSF'}, 'GSM2125726': {'cancer': 'gastritis/IM'}, 'GSM2125727': {'cancer': 'gastritis/IM'}, 'GSM2125724': {'cancer': 'normal'}, 'GSM2125725': {'cancer': 'gastritis/IM'}, 'GSM2125722': {'cancer': 'gastritis/IM'}, 'GSM2125723': {'cancer': 'normal'}, 'GSM2125720': {'cancer': 'gastritis/IM'}, 'GSM2125721': {'cancer': 'gastritis/IM'}, 'GSM2125728': {'cancer': 'gastritis/IM'}, 'GSM2125729': {'cancer': 'gastritis/IM'}, 'GSM1620712': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620713': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620710': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620711': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620716': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620714': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620715': {'type': 'MCF10a human breast cancer cells'}, 'GSM3711674': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM3711675': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM3711676': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '8'}, 'GSM3711677': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM1437699': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437698': {'tissue': 'Bladder', 'stage': 'pT2'}, 'GSM3711672': {'Sex': 'M', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '9'}, 'GSM3711673': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM1437695': {'tissue': 'Bladder', 'stage': 'pT2'}, 'GSM1437694': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437697': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM1437696': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM3711678': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM3711679': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM1437693': {'tissue': 'Bladder', 'stage': 'pTx'}, 'GSM1437692': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1821010': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'wild-type'}, 'GSM1821011': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'wild-type'}, 'GSM1821012': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'wild-type'}, 'GSM1821013': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'wild-type'}, 'GSM2307427': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307426': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307425': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM1422184': {'with': '200 µM hydrogen peroxide for 2hr', 'tissue': 'fetal cortex 20-22 weeks', 'type': 'primary astrocytes', 'point': '6 days after the initiation of treatment'}, 'GSM1422183': {'with': '200 µM hydrogen peroxide for 2hr', 'tissue': 'fetal cortex 20-22 weeks', 'type': 'primary astrocytes', 'point': '6 days after the initiation of treatment'}, 'GSM1422182': {'with': 'none (untreated control)', 'tissue': 'fetal cortex 20-22 weeks', 'type': 'primary astrocytes'}, 'GSM1422181': {'with': 'none (untreated control)', 'tissue': 'fetal cortex 20-22 weeks', 'type': 'primary astrocytes'}, 'GSM2307420': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2226553': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 10', 'type': 'Sphere'}, 'GSM2307429': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307428': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2226552': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 9', 'type': 'Sphere'}, 'GSM2226555': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 12', 'type': 'Sphere'}, 'GSM2226554': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 11', 'type': 'Sphere'}, 'GSM2526752': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526753': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526750': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526751': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526756': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526757': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526754': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526755': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526758': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526759': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2197888': {'line': 'SF188', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM2197889': {'line': 'SF188', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2036538': {'gender': 'Male', 'age': '63', 'tissue': 'Non-calcified tricuspid aortic valve (TAV)'}, 'GSM2036539': {'gender': 'Male', 'age': '59', 'tissue': 'Non-calcified tricuspid aortic valve (TAV)'}, 'GSM2036534': {'gender': 'Male', 'age': '66', 'tissue': 'Non-calcified tricuspid aortic valve (TAV)'}, 'GSM2036535': {'gender': 'Male', 'age': '65', 'tissue': 'Non-calcified tricuspid aortic valve (TAV)'}, 'GSM2197880': {'line': 'KNS42', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM2197881': {'line': 'KNS42', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2197886': {'line': 'SF188', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM2197887': {'line': 'SF188', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2036532': {'gender': 'Male', 'age': '56', 'tissue': 'Non-calcified tricuspid aortic valve (TAV)'}, 'GSM2036533': {'gender': 'Male', 'age': '67', 'tissue': 'Non-calcified tricuspid aortic valve (TAV)'}, 'GSM2565069': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2565068': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2565061': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2565060': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2565063': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2565062': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565065': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Crizotinib'}, 'GSM2565064': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2565067': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2565066': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Crizotinib'}, 'GSM1053819': {'antibody': 'CENP-A (Enzo life science, ADI-KAM-CC006-E)', 'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM1053818': {'antibody': 'None', 'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM2275005': {'area_under_the_curve': '0.585249375', 'siteandparticipantcode': '283344', 'baseline_area_under_the_curve': '0.548115313', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '106.7748632', 'auc_percent_of_baseline': '106.7748632', 'trunkbarcode': '947067', 'sampleID': 'S10713', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib848', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_283344', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib849', 'studysiteshort': 'YALE'}, 'GSM1896248': {'individual': 'EU72', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1053817': {'antibody': 'None', 'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM2307283': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307282': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307281': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307280': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307287': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307286': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307285': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307284': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307289': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307288': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2275009': {'area_under_the_curve': '0.709064063', 'siteandparticipantcode': '314565', 'baseline_area_under_the_curve': '1.256817344', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '56.41743138', 'auc_percent_of_baseline': '56.41743138', 'trunkbarcode': '923974', 'sampleID': 'S10721', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib853', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'Control', 'name': 'AbATE_314565', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib853', 'studysiteshort': 'PNRI'}, 'GSM1896244': {'individual': 'EU70', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2287747': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2317018': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2287749': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287748': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1381990': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2046890': {'knockdown': 'siE2F1', 'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2046891': {'sirna': 'scramble', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM1861621': {'name': 'TROPH_rep2', 'stage': 'Blastocyst; mural trophectoderm'}, 'GSM1861620': {'name': 'TROPH_rep1', 'stage': 'Blastocyst; mural trophectoderm'}, 'GSM2046894': {'sirna': 'SHARPIN', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM2046895': {'sirna': 'SHARPIN', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM2046896': {'sirna': 'SHARPIN', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM2112728': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '24 Hours'}, 'GSM2112729': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM R5020', 'time': '24 Hours'}, 'GSM2302909': {'tetracycline': 'TET(+)', 'id': '5', 'treatment': 'TNF'}, 'GSM2302908': {'tetracycline': 'TET(+)', 'id': '5', 'treatment': 'IL17'}, 'GSM2112724': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '24 Hours'}, 'GSM2112725': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM R5020', 'time': '24 Hours'}, 'GSM2302905': {'tetracycline': 'TET(-)', 'id': '5', 'treatment': 'TNF'}, 'GSM2112727': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': 'Vehicle', 'time': '24 Hours'}, 'GSM2112720': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '24 Hours'}, 'GSM2112721': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM R5020', 'time': '24 Hours'}, 'GSM2112722': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '24 Hours'}, 'GSM2112723': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': 'Vehicle', 'time': '24 Hours'}, 'GSM1196954': {'type': 'β-catenin knockdown'}, 'GSM3586530': {'origin': 'GCB', 'pfstt': '777', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '777', 'cycles': '6', 'oscs': '0'}, 'GSM3586533': {'origin': 'GCB', 'pfstt': '1243', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1540', 'cycles': '8', 'oscs': '0'}, 'GSM1196957': {'type': 'control'}, 'GSM3586535': {'origin': 'GCB', 'pfstt': '17', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '17', 'cycles': '8', 'oscs': '1'}, 'GSM1919100': {'line': 'MCF10A', 'treatment': 'without treatment', 'variation': 'PHF8'}, 'GSM3586534': {'origin': 'GCB', 'pfstt': '78', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '78', 'cycles': '8', 'oscs': '1'}, 'GSM1196952': {'type': 'AR knockdown'}, 'GSM1196953': {'type': 'AR knockdown'}, 'GSM2644902': {'passages': '74', 'sirna': 'Scramble siRNA', 'treatment': 'DMSO'}, 'GSM2883027': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject6', 'drug': 'Placebo'}, 'GSM2883024': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject5', 'drug': 'Placebo'}, 'GSM2883025': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject6', 'drug': 'Placebo'}, 'GSM2883022': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject3', 'drug': 'Placebo'}, 'GSM2883023': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject4', 'drug': 'Placebo'}, 'GSM2883020': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject1', 'drug': 'Placebo'}, 'GSM2883021': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject2', 'drug': 'Placebo'}, 'GSM1521545': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521544': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521547': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521546': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2883028': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject7', 'drug': 'Placebo'}, 'GSM2883029': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject7', 'drug': 'Placebo'}, 'GSM1294984': {'line': 'MCF7'}, 'GSM1294985': {'line': 'MCF7'}, 'GSM1294986': {'line': 'MCF7'}, 'GSM1294987': {'line': 'MCF7'}, 'GSM1294981': {'line': 'MCF7'}, 'GSM1294982': {'line': 'MCF7'}, 'GSM1294983': {'line': 'MCF7'}, 'GSM1294988': {'line': 'MCF7'}, 'GSM3305338': {'shRNA': 'Cells were treated with an shRNA targeting ALKBH1', 'condition': 'Normoxia'}, 'GSM2348512': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1712140': {'line': 'MR49F', 'treatment': 'DHT-JQ1:CSM'}, 'GSM2348510': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1622383': {'gender': 'female', 'state': 'healthy', 'tissue': 'gall bladder'}, 'GSM1622382': {'gender': 'female', 'state': 'healthy', 'tissue': 'gall bladder'}, 'GSM2348511': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1622386': {'gender': 'female', 'state': 'chronic gallstones', 'tissue': 'liver'}, 'GSM1622385': {'gender': 'female', 'state': 'chronic gallstones', 'tissue': 'gall bladder'}, 'GSM1622384': {'gender': 'female', 'state': 'healthy', 'tissue': 'gall bladder'}, 'GSM2348516': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1517775': {'knockdown': 'shBRG1', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM3305339': {'shRNA': 'Cells were treated with a non-targeting shRNA (shCONT)', 'condition': 'Hypoxia'}, 'GSM2348517': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1865630': {'status': 'POLA1 deficient', 'model': 'XLPDR syndrome', 'type': 'dermal fibroblast'}, 'GSM1865631': {'status': 'POLA1 deficient', 'model': 'XLPDR syndrome', 'type': 'dermal fibroblast'}, 'GSM1865632': {'status': 'POLA1 deficient', 'model': 'XLPDR syndrome', 'type': 'dermal fibroblast'}, 'GSM1865633': {'status': 'POLA1 deficient', 'model': 'XLPDR syndrome', 'type': 'dermal fibroblast'}, 'GSM1865634': {'status': 'POLA1 deficient', 'model': 'XLPDR syndrome', 'type': 'dermal fibroblast'}, 'GSM1712147': {'line': 'MR49F', 'treatment': 'JQ1-Enzalutamide: CSM'}, 'GSM1865636': {'status': 'POLA1 deficient', 'model': 'siRNA silencing', 'type': 'dermal fibroblast'}, 'GSM1865637': {'status': 'POLA1 deficient', 'model': 'siRNA silencing', 'type': 'dermal fibroblast'}, 'GSM1865638': {'status': 'POLA1 deficient', 'model': 'XLPDR syndrome', 'type': 'dermal fibroblast'}, 'GSM1865639': {'status': 'POLA1 deficient', 'model': 'XLPDR syndrome', 'type': 'dermal fibroblast'}, 'GSM1712146': {'line': 'MR49F', 'treatment': 'DHT-JQ1:CSM'}, 'GSM2565216': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM1395649': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395648': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2565217': {'construction': 'PLATE-Seq', 'drug': 'Temsirolimus'}, 'GSM1395643': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395642': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395641': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395640': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395647': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2348518': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1395645': {'subtype': 'Cla+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395644': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1273626': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2348519': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2731738': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM1273627': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2170719': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2731739': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2233300': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2170718': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2081468': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2731736': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2233301': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2565210': {'construction': 'PLATE-Seq', 'drug': 'Alectinib (CH5424802)x'}, 'GSM2731737': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2081460': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081461': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081462': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081463': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081464': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081465': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081466': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081467': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2388879': {'line': 'NoDice 293T'}, 'GSM2731735': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM1273620': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2388878': {'line': 'NoDice 293T'}, 'GSM2747603': {'line': 'fhRPE-13A', 'passages': '27', 'type': 'retina pigment epithelium', 'Stage': '5 days'}, 'GSM1273621': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2747602': {'line': 'fhRPE-13A', 'passages': '27', 'type': 'retina pigment epithelium', 'Stage': '4 days'}, 'GSM2228788': {'donor': '10', 'treatment': 'EBOV/LPS', 'infection': '24'}, 'GSM2228789': {'donor': '10', 'treatment': 'RESTV/LPS', 'infection': '24'}, 'GSM2747601': {'line': 'fhRPE-13A', 'passages': '27', 'type': 'retina pigment epithelium', 'Stage': '3 days'}, 'GSM2228782': {'donor': '10', 'treatment': 'EBOV', 'infection': '24'}, 'GSM2228783': {'donor': '10', 'treatment': 'RESTV', 'infection': '24'}, 'GSM2228780': {'donor': '10', 'treatment': 'mock', 'infection': '24'}, 'GSM2228781': {'donor': '10', 'treatment': 'LPS', 'infection': '24'}, 'GSM2228786': {'donor': '10', 'treatment': 'EBOV', 'infection': '48'}, 'GSM2228787': {'donor': '10', 'treatment': 'RESTV', 'infection': '48'}, 'GSM2228784': {'donor': '10', 'treatment': 'mock', 'infection': '48'}, 'GSM2228785': {'donor': '10', 'treatment': 'LPS', 'infection': '48'}, 'GSM2092525': {'individual': 'patient 4 (low-grade glioma)', 'tissue': 'brain'}, 'GSM2092524': {'repertoire': 'TCR-beta', 'individual': 'patient 4 (low-grade glioma)', 'tissue': 'peripheral blood'}, 'GSM2092527': {'repertoire': 'TCR-beta', 'individual': 'patient 5 (low-grade glioma)', 'tissue': 'brain'}, 'GSM2092526': {'repertoire': 'TCR-alpha', 'individual': 'patient 5 (low-grade glioma)', 'tissue': 'brain'}, 'GSM2092521': {'repertoire': 'TCR-alpha', 'individual': 'patient 4 (low-grade glioma)', 'tissue': 'brain'}, 'GSM2092520': {'individual': 'patient 3 (non-glioma)', 'tissue': 'brain'}, 'GSM2092523': {'repertoire': 'TCR-alpha', 'individual': 'patient 4 (low-grade glioma)', 'tissue': 'peripheral blood'}, 'GSM2092522': {'repertoire': 'TCR-beta', 'individual': 'patient 4 (low-grade glioma)', 'tissue': 'brain'}, 'GSM2092529': {'repertoire': 'TCR-beta', 'individual': 'patient 5 (low-grade glioma)', 'tissue': 'peripheral blood'}, 'GSM2092528': {'repertoire': 'TCR-alpha', 'individual': 'patient 5 (low-grade glioma)', 'tissue': 'peripheral blood'}, 'GSM2667018': {'type': 'Macrophage'}, 'GSM2229919': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS13'}, 'GSM2251399': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251398': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2325942': {'type': 'Human embryonic stem cell'}, 'GSM2325943': {'type': 'Human embryonic stem cell'}, 'GSM2325944': {'type': 'Human embryonic stem cell'}, 'GSM2325945': {'type': 'Human embryonic stem cell'}, 'GSM2325946': {'type': 'Human embryonic stem cell'}, 'GSM1104000': {'type': 'HER2+ Breast Tumor'}, 'GSM2251391': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251390': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251393': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251392': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251395': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1104003': {'type': 'HER2+ Breast Tumor'}, 'GSM2251397': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251396': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2114211': {'line': 'HUES9', 'agent': 'actD', 'time': '4 hours since actD treatment'}, 'GSM1104002': {'type': 'HER2+ Breast Tumor'}, 'GSM1104005': {'type': 'HER2+ Breast Tumor'}, 'GSM1104004': {'type': 'Triple Negative Breast Tumor'}, 'GSM3019923': {'marker': 'CD19+ CD11c- IgD- CD27+CD38int', 'type': 'CD19+ CD11c- IgD- CD38int Memory B cells', 'collection': 'HC-3', 'diagnosis': 'Healthy subject'}, 'GSM2350082': {'rna': 'Bulk', 'used': 'None'}, 'GSM1104006': {'type': 'HER2+ Breast Tumor'}, 'GSM2932849': {'pucai': '35', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '13'}, 'GSM2932848': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '6'}, 'GSM2932843': {'pucai': '70', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '10'}, 'GSM2932842': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '9'}, 'GSM2932841': {'pucai': '35', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '12'}, 'GSM2932840': {'pucai': '65', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2932847': {'pucai': '20', 'score': '0', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '17'}, 'GSM2932846': {'pucai': '70', 'score': '11', 'remission': 'No', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '9'}, 'GSM2932845': {'pucai': '75', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '13'}, 'GSM2932844': {'pucai': '75', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '10'}, 'GSM2304578': {'type': 'HUVEC', 'treatment': 'mock'}, 'GSM1574114': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '22', 'treatment': '100 nM rotenone'}, 'GSM1574115': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '22', 'treatment': '100 nM rotenone'}, 'GSM1574116': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '22', 'treatment': 'none'}, 'GSM1574117': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '22', 'treatment': 'none'}, 'GSM2738058': {'antibody': 'none', 'transfection': 'siBACH2', 'passages': 'Primary Cells', 'type': 'Activated B cells'}, 'GSM2738059': {'antibody': 'BACH2 (D3T3G)', 'passages': 'Primary Cells', 'type': 'Activated B cells'}, 'GSM1574112': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '52', 'treatment': '100 nM rotenone'}, 'GSM1574113': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '22', 'treatment': '100 nM rotenone'}, 'GSM2738054': {'antibody': 'none', 'passages': 'Primary Cells', 'type': 'uncommitted'}, 'GSM2738055': {'antibody': 'none', 'passages': 'Primary Cells', 'type': 'uncommitted'}, 'GSM2670877': {'mutation': 'none', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2670876': {'mutation': 'none', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'Yes', 'provider': 'ATCC'}, 'GSM2738050': {'antibody': 'none', 'passages': 'Primary Cells', 'type': 'committed'}, 'GSM2738051': {'antibody': 'none', 'passages': 'Primary Cells', 'type': 'committed'}, 'GSM2738052': {'antibody': 'none', 'passages': 'Primary Cells', 'type': 'committed'}, 'GSM2738053': {'antibody': 'none', 'passages': 'Primary Cells', 'type': 'uncommitted'}, 'GSM1379557': {'line': 'RKO', 'tissue': 'colon', 'type': 'colon carcinoma epithelial cells', 'variation': 'SRSF10 knockdown'}, 'GSM1379556': {'line': 'RKO', 'tissue': 'colon', 'type': 'colon carcinoma epithelial cells', 'variation': 'control'}, 'GSM1378025': {'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1378022': {'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM2931820': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '48714062', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precursor miR-181ab1', 'id': 'cs131'}, 'GSM2931821': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '46048276', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precursor miR-181ab1', 'id': 'cs131'}, 'GSM2535910': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6000', 'samplename': '1_HealthyCtl_RO+_C39', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28959', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6000', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C39'}, 'GSM2535911': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6001', 'samplename': '1_HealthyCtl_RO+_C55', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28960', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6001', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C55'}, 'GSM2535912': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6002', 'samplename': '1_HealthyCtl_RO+_C75', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28961', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6002', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C75'}, 'GSM2048801': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2535913': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6003', 'samplename': '1_HealthyCtl_RO+_C81', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28962', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6003', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C81'}, 'GSM2048800': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2535914': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6004', 'samplename': '1_HealthyCtl_RO+_C87', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28963', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6004', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C87'}, 'GSM2048803': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2535915': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6005', 'samplename': '1_HealthyCtl_RO+_C50', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28964', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6005', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C50'}, 'GSM2048802': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2535916': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6006', 'samplename': '1_HealthyCtl_RO+_C62', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28965', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6006', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C62'}, 'GSM2048805': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2535917': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6008', 'samplename': '1_HealthyCtl_RO+_C57', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28967', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6008', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C57'}, 'GSM2048804': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2390658': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU042'}, 'GSM2390659': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU042'}, 'GSM2390654': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU042'}, 'GSM2390655': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU042'}, 'GSM2390656': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU042'}, 'GSM2048806': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2390650': {'tissue': 'Engrafted primary AML', 'subject': 'SU223'}, 'GSM2390651': {'tissue': 'Engrafted primary AML', 'subject': 'SU223'}, 'GSM2390652': {'tissue': 'Undiff iPS from AML', 'subject': 'SU042'}, 'GSM2390653': {'tissue': 'Undiff iPS from AML', 'subject': 'SU042'}, 'GSM2141382': {'individual': 'EU70', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2550438': {'donor': 'E', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550439': {'donor': 'E', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2141383': {'individual': 'EU70', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2550432': {'donor': 'C', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550433': {'donor': 'C', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550430': {'donor': 'C', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550431': {'donor': 'C', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550436': {'donor': 'E', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550437': {'donor': 'E', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550434': {'donor': 'C', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550435': {'donor': 'C', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2043169': {'agent': 'BMP4', 'point': '12h'}, 'GSM2043168': {'agent': 'BMP4', 'point': '4h'}, 'GSM2616682': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2043167': {'agent': 'BMP4', 'point': '0h'}, 'GSM2141387': {'individual': 'EU72', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2265820': {'line': 'HeLa', 'sirna': 'TUT4', 'timepoint': '0'}, 'GSM2632256': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2265822': {'line': 'HeLa', 'sirna': 'TUT4', 'timepoint': '30'}, 'GSM2265823': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '0'}, 'GSM2265824': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '45'}, 'GSM2265825': {'line': 'HeLa', 'sirna': 'hEXO', 'timepoint': '0'}, 'GSM2265826': {'line': 'HeLa', 'sirna': 'hEXO', 'timepoint': '45'}, 'GSM2265827': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '0'}, 'GSM2265828': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '30'}, 'GSM2265829': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '0'}, 'GSM2141385': {'individual': 'EU72', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2632259': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632258': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM3177225': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C1', 'cdai': 'N/A'}, 'GSM3177224': {'responder': 'YES', 'global': '0', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '36', 'cdai': '29.76'}, 'GSM3177227': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C10', 'cdai': 'N/A'}, 'GSM3177226': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C1', 'cdai': 'N/A'}, 'GSM3177221': {'responder': 'NO', 'global': '14', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '35', 'cdai': '31.9'}, 'GSM3177220': {'responder': 'YES', 'global': '29', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '33', 'cdai': '271'}, 'GSM3177223': {'responder': 'YES', 'global': '0', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '36', 'cdai': '28.93'}, 'GSM3177222': {'responder': 'NO', 'global': '31', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '35', 'cdai': '278.92'}, 'GSM1603324': {'cl': '105', 'ca': '8.4', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '1.53', 'id': 'S11', 'co2': '28', 'rr': '12', 'plavix': 'Yes', 'na': '139', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '85', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '31', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '21.37', 'gender': 'M', 'k': '3.9', 'batch': '3', 'prasugrel': '--', 'cad': 'Yes'}, 'GSM1603325': {'cl': '103', 'ca': '9.4', 'dyslipidemia': 'No', 'year': '--', 'statin': '--', 'creatinine': '0.59', 'id': 'S12', 'co2': '25', 'rr': '16', 'plavix': 'Yes', 'na': '135', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '122', 'ht': 'No', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '4', 'smoking': 'Yes', 'day': '1', 'ticagrelor': '--', 'troponin': '2.81', 'gender': 'F', 'k': '4', 'batch': '4', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603326': {'cl': '102', 'ca': '8.8', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '1.89', 'id': 'S13', 'co2': '26', 'rr': '17', 'plavix': 'Yes', 'na': '137', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '133', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '31', 'smoking': 'Yes', 'day': '0.5', 'ticagrelor': '--', 'troponin': '1.15', 'gender': 'M', 'k': '3.7', 'batch': '4', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603327': {'cl': '93', 'ca': '8.8', 'dyslipidemia': 'Yes', 'year': '15', 'statin': 'Yes', 'creatinine': '1.86', 'id': 'S14', 'co2': '34', 'rr': '20', 'plavix': '--', 'na': '135', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '194', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '44', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '3.63', 'gender': 'M', 'k': '4.2', 'batch': '3', 'prasugrel': '--', 'cad': 'Yes'}, 'GSM3177229': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C11', 'cdai': 'N/A'}, 'GSM3177228': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C10', 'cdai': 'N/A'}, 'GSM1603322': {'cl': '108', 'ca': '9.2', 'dyslipidemia': 'Yes', 'year': '30', 'statin': 'Yes', 'creatinine': '0.78', 'id': 'S09', 'co2': '24', 'rr': '22', 'plavix': 'Yes', 'na': '138', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '113', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '12', 'smoking': 'Yes', 'day': '1', 'ticagrelor': '--', 'troponin': '1.15', 'gender': 'M', 'k': '4', 'batch': '1', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603323': {'cl': '107', 'ca': '9', 'dyslipidemia': 'No', 'year': '<10', 'statin': 'Yes', 'creatinine': '1.37', 'id': 'S10', 'co2': '28', 'rr': '18', 'plavix': 'Yes', 'na': '141', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '97', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '17', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '1.78', 'gender': 'M', 'k': '4.1', 'batch': '2', 'prasugrel': '--', 'cad': 'No'}, 'GSM2516809': {'death': '82', 'score': 'III', 'post_mortem_interval': '3', 'caseid': '05-16', 'Sex': 'M', 'rin_score': '6.8', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655497'}, 'GSM2516808': {'death': '87', 'score': 'V', 'post_mortem_interval': '3', 'caseid': '07-02', 'Sex': 'F', 'rin_score': '6.1', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655463'}, 'GSM2516807': {'death': '97', 'score': 'IV', 'post_mortem_interval': '3.33', 'caseid': '10-43', 'Sex': 'F', 'rin_score': '7.1', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655402'}, 'GSM2516806': {'death': '97', 'score': 'V', 'post_mortem_interval': '3.16', 'caseid': '05-57', 'Sex': 'F', 'rin_score': '6.9', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655462'}, 'GSM2465740': {'tissue': 'cord blood', 'type': 'CD34+ Erythroblasts', 'subject': 'Healthy Donor 6'}, 'GSM1440305': {'line': 'HEK293T', 'id': 'SN7001278'}, 'GSM1440304': {'line': 'HEK293T', 'id': 'SN7001278'}, 'GSM1440307': {'line': 'HEK293T', 'id': 'SN7001278'}, 'GSM1440306': {'line': 'HEK293T', 'id': 'SN7001278'}, 'GSM1440301': {'line': 'Daoy', 'tissue': 'brain/cerebellum', 'type': 'cerebellar medulloblastoma', 'variation': 'ZNF423 knockdown'}, 'GSM1440300': {'line': 'Daoy', 'tissue': 'brain/cerebellum', 'type': 'cerebellar medulloblastoma', 'variation': 'ZNF423 knockdown'}, 'GSM1440303': {'line': 'HEK293T', 'id': 'FCC04KUABXX', 'genome': 'hg19'}, 'GSM1440302': {'line': 'HEK293T', 'id': 'FCC04KUABXX', 'genome': 'hg19'}, 'GSM2689471': {'status': 'steroid-resistant asthma', 'type': 'CD8+T cells', 'id': '96', 'time': 'none'}, 'GSM2689470': {'status': 'healthy control', 'type': 'CD8+T cells', 'id': '86', 'time': '8 days'}, 'GSM2046665': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM2689472': {'status': 'steroid-resistant asthma', 'type': 'CD8+T cells', 'id': '96', 'time': '8 days'}, 'GSM2046663': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM1553108': {'type': 'Wi-38 fibroblasts', 'doublings': '35'}, 'GSM1553109': {'type': 'Wi-38 fibroblasts', 'doublings': '57'}, 'GSM2248009': {'line': 'YAPC', 'grnas': 'E2F1'}, 'GSM2248008': {'line': 'HCC44', 'grnas': 'RG'}, 'GSM1553100': {'type': 'IMR-90 fibroblasts', 'doublings': '31'}, 'GSM1553101': {'type': 'IMR-90 fibroblasts', 'doublings': '31'}, 'GSM1553102': {'type': 'IMR-90 fibroblasts', 'doublings': '31'}, 'GSM1553103': {'type': 'IMR-90 fibroblasts', 'doublings': '57'}, 'GSM1553104': {'type': 'IMR-90 fibroblasts', 'doublings': '57'}, 'GSM1553105': {'type': 'IMR-90 fibroblasts', 'doublings': '57'}, 'GSM2248005': {'line': 'HCC44', 'grnas': 'ZEB1'}, 'GSM1553107': {'type': 'Wi-38 fibroblasts', 'doublings': '35'}, 'GSM3594536': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594537': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594534': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594535': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594532': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594533': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594530': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594531': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2616469': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM3594538': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594539': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2100194': {'rin': '9.6', 'Sex': 'Male', 'sspg': '76', 'age': '60', 'bmi': '28.7', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '707', 'method': 'Qiagen:trizol'}, 'GSM1970079': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970078': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970077': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970076': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970075': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970074': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970073': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970072': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970071': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970070': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1836528': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836529': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U1'}, 'GSM2204694': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204695': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204692': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204693': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204690': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204691': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1836520': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836521': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836522': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836523': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U6'}, 'GSM1836524': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836525': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836526': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836527': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM2635704': {'genotype': 'WT', 'treatment_time': '72h', 'treatment': 'Activin A, ChIR'}, 'GSM2635705': {'genotype': 'WT', 'treatment_time': '72h', 'treatment': 'Activin A, ChIR'}, 'GSM2635706': {'genotype': 'WT', 'treatment_time': '24h', 'treatment': 'ChIR'}, 'GSM2635707': {'genotype': 'WT', 'treatment_time': '24h', 'treatment': 'ChIR'}, 'GSM2635700': {'genotype': 'WT', 'treatment_time': '72h', 'treatment': 'Activin A'}, 'GSM2635701': {'genotype': 'WT', 'treatment_time': '72h', 'treatment': 'Activin A'}, 'GSM2635702': {'genotype': 'WT', 'treatment_time': '24h', 'treatment': 'Activin A, ChIR'}, 'GSM2635703': {'genotype': 'WT', 'treatment_time': '24h', 'treatment': 'Activin A, ChIR'}, 'GSM2451102': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451103': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451100': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451101': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451106': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2635709': {'genotype': 'WT', 'treatment_time': '72h', 'treatment': 'ChIR'}, 'GSM2451104': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451105': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM3584108': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'female'}, 'GSM3584109': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'female'}, 'GSM3584102': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'female'}, 'GSM3584103': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'female'}, 'GSM3584100': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'female'}, 'GSM3584101': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'female'}, 'GSM3584106': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'female'}, 'GSM3584107': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'female'}, 'GSM3584104': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'female'}, 'GSM3584105': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'female'}, 'GSM1619510': {'type': 'peripheral monocytes', 'id': '#21', 'procedure': 'adjustable gastric banding', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619511': {'type': 'peripheral monocytes', 'id': '#22', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619512': {'type': 'peripheral monocytes', 'id': '#23', 'procedure': 'adjustable gastric banding', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM2786536': {'line': 'DOHH2'}, 'GSM2786537': {'line': 'FARAGE'}, 'GSM2786535': {'line': 'DB'}, 'GSM2786538': {'line': 'GRANTA519'}, 'GSM2786539': {'line': 'HAIR_M'}, 'GSM1612364': {'date': '15-May-2013 (BD FACS Aria)', 'type': 'BM progenitor', 'birth': '11-Sep.-2000', 'population': 'IL3Ra-low progenitor cells'}, 'GSM2048510': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1612362': {'date': '15-May-2013 (BD FACS Aria)', 'type': 'BM progenitor', 'birth': '22-Apr.-1996', 'population': 'IL3Ra-high progenitor cells'}, 'GSM2048516': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1612360': {'date': '15-May-2013 (BD FACS Aria)', 'type': 'BM progenitor', 'birth': '18-Mar.-1998', 'population': 'IL3Ra-high progenitor cells'}, 'GSM2048514': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1363538': {'grade': '0', 'alb': '46', 'tb': '21.5', 'individual': 'HCC-C19', 'alt': '12', 'pt': '12.9', 'hbvdna': '<500', 'ca199': '19', 'hgb': '142', 'method': '0', 'ggt': '21.1', 'cea': '2.01', 'ast': '16', 'rna': 'Yes', 'db': '7', 'cirrhosis': '0', 'afp': '220.9', 'hbsag': '219.91', 'organ': '0', 'gender': 'M', 'age': '41', 'ltx': 'B', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.85'}, 'GSM2493898': {'line': 'Hap1', 'variation': 'WT'}, 'GSM2493899': {'line': 'Hap1', 'variation': 'WT'}, 'GSM2493896': {'line': 'Hap1', 'variation': 'WaplKO_3.3/SCC4KO'}, 'GSM2493897': {'line': 'Hap1', 'variation': 'WaplKO_3.3/SCC4KO'}, 'GSM2493894': {'line': 'Hap1', 'variation': 'SCC4KO'}, 'GSM2493895': {'line': 'Hap1', 'variation': 'WaplKO_3.3/SCC4KO'}, 'GSM2493892': {'line': 'Hap1', 'variation': 'SCC4KO'}, 'GSM2493893': {'line': 'Hap1', 'variation': 'SCC4KO'}, 'GSM2493890': {'line': 'Hap1', 'variation': 'WaplKO_3.3'}, 'GSM2493891': {'line': 'Hap1', 'variation': 'WaplKO_3.3'}, 'GSM2136876': {'connection': \"[Errno 101] Network is unreachable',))\", 'Error': \"HTTPSConnectionPool(host='www.ncbi.nlm.nih.gov', port=443): Max retries exceeded with url: /geo/query/acc.cgi?acc=GSM2136876 (Caused by NewConnectionError('\"}, 'GSM2136877': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'DMSO 24hour, ENL Knock Down', 'batch': '3'}, 'GSM2136874': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'JQ1 50nM 24hour, Control', 'batch': '3'}, 'GSM2136875': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'JQ1 50nM 24hour, Control', 'batch': '3'}, 'GSM2136872': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'DMSO 24hour, Control', 'batch': '3'}, 'GSM2136873': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'DMSO 24hour, Control', 'batch': '3'}, 'GSM2136870': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, ENL Knock Down plus Y78A mutant rescue', 'batch': '2'}, 'GSM2142366': {'etiology': 'UCB', 'donor': '1', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'Ctrl'}, 'GSM2142369': {'etiology': 'UCB', 'donor': '1', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'AML1-ETO'}, 'GSM2142368': {'etiology': 'UCB', 'donor': '3', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'Ctrl'}, 'GSM2200863': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200862': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200865': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200864': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2136878': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'JQ1 50nM 24hour, ENL Knock Down', 'batch': '3'}, 'GSM2136879': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'JQ1 50nM 24hour, ENL Knock Down', 'batch': '3'}, 'GSM2562617': {'gender': 'female', 'race': 'not reported', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562616': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2616356': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2058066': {'line': 'V1009', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2616357': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2058067': {'line': 'V1024', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1920796': {'type': 'hematopoietic', 'diagnosis': 'Erdheim Chester Disease'}, 'GSM1480738': {'vendor': 'Diagenode', 'line': 'TSU-1621-MT', 'with': '1 uM ATRA for 24 hrs', 'target': 'RNAPII'}, 'GSM2058068': {'line': 'V1058', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1545572': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545573': {'count': '3', 'group': 'No Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545570': {'count': '4', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545571': {'count': '1', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545576': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545577': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545574': {'count': '2', 'group': 'No Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545575': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545578': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545579': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1480739': {'line': 'TSU-1621-MT', 'vendor': 'Diagenode', 'target': 'RAR'}, 'GSM1920794': {'type': 'hematopoietic', 'diagnosis': 'Langerhans Cell Histiocytosis'}, 'GSM1908207': {'line': 'MT4', 'treatment': 'control'}, 'GSM1908206': {'line': 'MT4', 'treatment': 'control'}, 'GSM1908205': {'line': 'MT4', 'treatment': 'control'}, 'GSM2509519': {'source': 'mammary gland/breast', 'line': 'MDA-MB-468', 'with': 'DMSO for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM1908209': {'line': 'MT4', 'treatment': 'HIV-1 infected'}, 'GSM1908208': {'line': 'MT4', 'treatment': 'control'}, 'GSM1695200': {'subtype': 'renal cell carcinoma (RCC)', 'tag': 'ActiveMotif #61101', 'type': 'kidney'}, 'GSM1695201': {'subtype': 'renal cell carcinoma (RCC)', 'tag': 'ActiveMotif #61101', 'type': 'kidney'}, 'GSM1695202': {'subtype': 'renal cell carcinoma (RCC)', 'tag': 'ActiveMotif #61101', 'type': 'kidney'}, 'GSM2511570': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM1297655': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 0'}, 'GSM2511571': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543621': {'library_id': 'lib5738', 'stim': 'TT', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543620': {'library_id': 'lib5737', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM782788': {'line': 'HEK293', 'fraction': 'Purified cytoplasm'}, 'GSM782786': {'line': 'HEK293', 'fraction': 'Purified endoplasmic reticulum'}, 'GSM782787': {'line': 'HEK293', 'fraction': 'Purified cytoplasm'}, 'GSM3030654': {'group': 'ifng', 'number': '84'}, 'GSM782785': {'line': 'HEK293', 'fraction': 'Purified endoplasmic reticulum'}, 'GSM3030652': {'group': 'ifng', 'number': '82'}, 'GSM3030653': {'group': 'ifng', 'number': '85'}, 'GSM3030650': {'group': 'ifng', 'number': '76'}, 'GSM3030651': {'group': 'ifng', 'number': '79'}, 'GSM2543625': {'library_id': 'lib5742', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511577': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM1053769': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FC signature'}, 'GSM1053768': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FC signature'}, 'GSM1053763': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DFSP signature'}, 'GSM1053762': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DFSP signature'}, 'GSM1053761': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DFSP signature'}, 'GSM1053760': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DFSP signature'}, 'GSM1053767': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FC signature'}, 'GSM1053766': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FC signature'}, 'GSM1053765': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FC signature'}, 'GSM1053764': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FC signature'}, 'GSM1617969': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '66', 'Sex': 'F'}, 'GSM1617968': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '63', 'Sex': 'F'}, 'GSM1617963': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '69', 'Sex': 'M'}, 'GSM1617962': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '73', 'Sex': 'M'}, 'GSM1617961': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '70', 'Sex': 'M'}, 'GSM1617960': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '58', 'Sex': 'M'}, 'GSM1617967': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '62', 'Sex': 'M'}, 'GSM1617966': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '60', 'Sex': 'M'}, 'GSM1617965': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '56', 'Sex': 'M'}, 'GSM1617964': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '54', 'Sex': 'M'}, 'GSM997540': {'vendor': 'Santa Cruz', 'subtype': 'immunoprecipitated DNA', 'line': 'MCF10A', 'type': 'ChIP-seq', 'antibody': 'anti-BRCA1 rabbit polyclonal I-20'}, 'GSM997541': {'vendor': 'Bethyl', 'subtype': 'immunoprecipitated DNA', 'line': 'MCF10A', 'type': 'ChIP-seq', 'antibody': 'anti-PALB2 rabbit polyclonal'}, 'GSM997542': {'vendor': 'Bethyl', 'subtype': 'immunoprecipitated DNA', 'line': 'MCF10A', 'type': 'ChIP-seq', 'antibody': 'anti-P-ser2 RNAPII rabbit polyclonal'}, 'GSM997543': {'subtype': 'polyA RNA', 'line': 'MCF10A', 'type': 'RNA-seq'}, 'GSM997544': {'subtype': 'polyA RNA', 'line': 'MCF10A', 'type': 'RNA-seq'}, 'GSM997545': {'subtype': 'total RNA - ribosome depleted', 'line': 'MCF10A', 'type': 'RNA-seq strand specific'}, 'GSM997546': {'subtype': 'total RNA - ribosome depleted', 'line': 'MCF10A', 'type': 'RNA-seq strand specific'}, 'GSM997547': {'subtype': 'total RNA - ribosome depleted', 'line': 'MCF10A', 'type': 'RNA-seq strand specific', 'variation': 'BRCA1 knockdown (shRNAs)'}, 'GSM997548': {'subtype': 'total RNA - ribosome depleted', 'line': 'MCF10A', 'type': 'RNA-seq strand specific', 'variation': 'BRCA1 knockdown (shRNAs)'}, 'GSM997549': {'subtype': 'total RNA - ribosome depleted', 'line': 'MCF10A', 'type': 'RNA-seq strand specific', 'variation': 'PALB2 knockdown (shRNAs)'}, 'GSM1656069': {'patient': '9', 'group': 'PN', 'gender': 'male'}, 'GSM1656068': {'patient': '9', 'group': 'PP', 'gender': 'male'}, 'GSM2472198': {'type': 'primary tissue'}, 'GSM2472199': {'type': 'primary tissue'}, 'GSM2472192': {'type': 'primary tissue'}, 'GSM2472193': {'type': 'primary tissue'}, 'GSM2472190': {'type': 'cell line'}, 'GSM2472191': {'type': 'cell line'}, 'GSM2472196': {'type': 'primary tissue'}, 'GSM2472197': {'type': 'primary tissue'}, 'GSM2472194': {'type': 'primary tissue'}, 'GSM2472195': {'type': 'primary tissue'}, 'GSM2305924': {'tissue': 'colon'}, 'GSM1656061': {'patient': '5', 'group': 'PN', 'gender': 'male'}, 'GSM2305926': {'tissue': 'colon'}, 'GSM2305927': {'tissue': 'colon'}, 'GSM2305920': {'tissue': 'colon'}, 'GSM2305921': {'tissue': 'colon'}, 'GSM2305922': {'tissue': 'colon'}, 'GSM1656060': {'patient': '5', 'group': 'PP', 'gender': 'male'}, 'GSM2305928': {'tissue': 'colon'}, 'GSM1656063': {'patient': '6', 'group': 'PN', 'gender': 'female'}, 'GSM3190785': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.362664'}, 'GSM3190784': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.838941'}, 'GSM3190787': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A61', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.938572'}, 'GSM3190786': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '3.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.61075'}, 'GSM3190781': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.648615'}, 'GSM3190780': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.921172'}, 'GSM3190783': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.684948'}, 'GSM3190782': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A47', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.834775'}, 'GSM1827535': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.780287474332649', 'quality': '2'}, 'GSM1922715': {'status': 'P72R', 'specimen': 'patient#8', 'tissue': 'ovary', 'treatment': 'vehicle', 'type': 'endometrioid ovarian cancer', 'stage': 'I'}, 'GSM1827537': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'Yes', 'microarray': '--', 'time': '0', 'quality': '3'}, 'GSM1827536': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '1.64544832306639', 'quality': '2'}, 'GSM3190789': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.72575'}, 'GSM3190788': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A61', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '3.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.194083'}, 'GSM1827533': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '4.53388090349076', 'quality': '2'}, 'GSM1827532': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.268309377138946', 'quality': '2'}, 'GSM1694980': {'line': 'hIPSC20b'}, 'GSM1694981': {'line': 'hIPSC27b'}, 'GSM1694982': {'line': 'hIPSC27e'}, 'GSM1694983': {'line': 'hIPSC29e'}, 'GSM1656067': {'patient': '8', 'group': 'PN', 'gender': 'male'}, 'GSM1656066': {'patient': '8', 'group': 'PP', 'gender': 'male'}, 'GSM2305814': {'tissue': 'colon'}, 'GSM1980308': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980309': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980306': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980307': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980304': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980305': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980302': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980303': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980300': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980301': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1333391': {'gender': 'Female', 'type': 'CORONAL'}, 'GSM1333390': {'gender': 'Female', 'type': 'CORONAL'}, 'GSM1333393': {'gender': 'Female', 'type': 'LAMBDOID'}, 'GSM1333392': {'gender': 'Female', 'type': 'CORONAL'}, 'GSM1333395': {'gender': 'Female', 'type': 'LAMBDOID'}, 'GSM1333394': {'gender': 'Female', 'type': 'LAMBDOID'}, 'GSM1333397': {'gender': 'Male', 'type': 'SAGITAL'}, 'GSM1333396': {'gender': 'Male', 'type': 'SAGITAL'}, 'GSM1333399': {'gender': 'Male', 'type': 'SAGITAL'}, 'GSM1333398': {'gender': 'Male', 'type': 'SAGITAL'}, 'GSM2339290': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2385630': {'line': '777T', 'type': 'glioblastoma stem cell'}, 'GSM2385631': {'line': 'CB660', 'type': 'glioblastoma stem cell'}, 'GSM2385632': {'line': 'CB660', 'type': 'glioblastoma stem cell'}, 'GSM2385633': {'line': 'CB660', 'type': 'glioblastoma stem cell'}, 'GSM2385634': {'line': 'CX', 'type': 'glioblastoma stem cell'}, 'GSM2385635': {'line': 'CX', 'type': 'glioblastoma stem cell'}, 'GSM2385639': {'line': 'G144', 'type': 'glioblastoma stem cell'}, 'GSM2305813': {'tissue': 'colon'}, 'GSM2859355': {'type': 'hemapoietic stem cell', 'treatment': 'B1 Ab'}, 'GSM1334181': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334180': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334183': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM1868853': {'tissue': 'Nasal polyp', 'diagnosis': 'Eosinophilic chronic rhinosinusitis with nasal polyps'}, 'GSM1868852': {'with': 'untreated (MEF-CM+FGF2 culture)', 'line': 'H1 (NIH code WA01)', 'type': 'ESC derived from human male blastocysts (H1, NIH code WA01)', 'age': '8-day culture'}, 'GSM1868851': {'with': 'BAP-treatment', 'line': 'H1 (NIH code WA01)', 'type': 'ESC derived from human male blastocysts (H1, NIH code WA01)', 'age': '8-day culture', 'fraction': 'Trophoblasts of less than 40 μm'}, 'GSM1868850': {'with': 'BAP-treatment', 'line': 'H1 (NIH code WA01)', 'type': 'ESC derived from human male blastocysts (H1, NIH code WA01)', 'age': '8-day culture', 'fraction': 'STB of its size between 40 and 70 μm'}, 'GSM1868857': {'tissue': 'Nasal polyp', 'diagnosis': 'Non-eosinophilic chronic rhinosinusitis with nasal polyps'}, 'GSM1868856': {'tissue': 'Nasal polyp', 'diagnosis': 'Non-eosinophilic chronic rhinosinusitis with nasal polyps'}, 'GSM1868855': {'tissue': 'Nasal polyp', 'diagnosis': 'Eosinophilic chronic rhinosinusitis with nasal polyps'}, 'GSM1868854': {'tissue': 'Nasal polyp', 'diagnosis': 'Eosinophilic chronic rhinosinusitis with nasal polyps'}, 'GSM2305818': {'tissue': 'colon'}, 'GSM1868859': {'tissue': 'Sphenoid sinus mucosa', 'diagnosis': 'Normal control'}, 'GSM1868858': {'tissue': 'Nasal polyp', 'diagnosis': 'Non-eosinophilic chronic rhinosinusitis with nasal polyps'}, 'GSM2859354': {'type': 'hemapoietic stem cell', 'treatment': 'B1 Ab'}, 'GSM2443092': {'treatment': 'estrogen', 'xenograft': 'UCD4'}, 'GSM3019886': {'marker': 'CD19+ CD11chi CD27- IgD-', 'type': 'CD19+ CD11chi CD27- IgD- B cells', 'collection': 'SLE-2', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019887': {'marker': 'CD19+ CD11c- CD27+ IgD-', 'type': 'CD19+ CD11c- CD27+ IgD- Memory B cells', 'collection': 'SLE-2', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019884': {'marker': 'CD19+ CD11c- CD27- IgD+', 'type': 'CD19+ CD11c- CD27- IgD+ naive B cells', 'collection': 'SLE-1', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019885': {'marker': 'CD19+ CD11chi CD27- IgD+', 'type': 'CD19+ CD11chi CD27- IgD+ B cells', 'collection': 'SLE-2', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019882': {'marker': 'CD19+ CD11chi CD27- IgD-', 'type': 'CD19+ CD11chi CD27- IgD- B cells', 'collection': 'SLE-1', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019883': {'marker': 'CD19+ CD11c- CD27+ IgD-', 'type': 'CD19+ CD11c- CD27+ IgD- Memory B cells', 'collection': 'SLE-1', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019881': {'marker': 'CD19+ CD11chi CD27- IgD+', 'type': 'CD19+ CD11chi CD27- IgD+ B cells', 'collection': 'SLE-1', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019888': {'marker': 'CD19+ CD11c- CD27- IgD+', 'type': 'CD19+ CD11c- CD27- IgD+ naive B cells', 'collection': 'SLE-2', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019889': {'marker': 'CD19+ CD11chi CD27- IgD+', 'type': 'CD19+ CD11chi CD27- IgD+ B cells', 'collection': 'SLE-3', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM2471884': {'with': '0.1uM panobinostat and 0.1uM THZ1 for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471881': {'with': '0.1uM panobinostat and 1uM JQ1 for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471880': {'with': '0.1uM THZ1 for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471883': {'with': '0.1uM panobinostat and 0.1uM THZ1 for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471882': {'with': '0.1uM panobinostat and 1uM JQ1 for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2417584': {'sirna': 'ambion silencer select s37905'}, 'GSM2417585': {'sirna': 'ambion silencer select s37905'}, 'GSM2417580': {'sirna': 'ambion silencer select CAT 4390844'}, 'GSM2417581': {'sirna': 'ambion silencer select CAT 4390844'}, 'GSM2417582': {'sirna': 'ambion silencer select CAT 4390844'}, 'GSM2417583': {'sirna': 'ambion silencer select s37905'}, 'GSM1888648': {'set': 'isogenic', 'type': 'ESC'}, 'GSM2474590': {'doublings': '35', 'line': 'IMR90', 'type': 'Fibroblasts'}, 'GSM2474591': {'doublings': '35', 'line': 'IMR90', 'type': 'Fibroblasts'}, 'GSM2474592': {'doublings': '35', 'line': 'IMR90', 'type': 'Fibroblasts'}, 'GSM1383755': {'donor': 'A2737', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM1437718': {'tissue': 'Bladder', 'stage': 'unknown'}, 'GSM1437719': {'tissue': 'Bladder', 'stage': 'unknown'}, 'GSM1245900': {'down': 'MOV10', 'vendor': 'Bethyl Laboratories Inc.', 'line': 'HEK293F', 'code': 'NNNGGCCNNâ\\x80¦cDNA', 'type': 'Human Embryonic Kidney cells'}, 'GSM1245901': {'down': 'irrelevant (ir)', 'line': 'HEK293F', 'code': 'NNNCCGCNNâ\\x80¦.cDNA', 'type': 'Human Embryonic Kidney cells'}, 'GSM1437710': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437711': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM1437712': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437713': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM1437714': {'tissue': 'Bladder', 'stage': 'unknown'}, 'GSM1437715': {'tissue': 'Bladder', 'stage': 'unknown'}, 'GSM1437716': {'tissue': 'Bladder', 'stage': 'unknown'}, 'GSM1437717': {'tissue': 'Bladder', 'stage': 'unknown'}, 'GSM2478936': {'line': 'A549', 'with': 'vehicle', 'variation': 'wild type'}, 'GSM2478937': {'line': 'A549', 'with': 'vehicle', 'variation': 'wild type'}, 'GSM2478934': {'status': 'PHF21A-deficient', 'gender': 'female', 'type': 'lymphoblasts (EBV-transformed patient lymphocytes)'}, 'GSM2478935': {'line': 'A549', 'with': 'vehicle', 'variation': 'wild type'}, 'GSM2478932': {'status': 'unaffected, PHF21A-WT', 'gender': 'female', 'type': 'lymphoblasts (EBV-transformed patient lymphocytes)'}, 'GSM2478933': {'status': 'PHF21A-deficient', 'gender': 'female', 'type': 'lymphoblasts (EBV-transformed patient lymphocytes)'}, 'GSM2478930': {'status': 'PHF21A-deficient', 'gender': 'male', 'type': 'lymphoblasts (EBV-transformed patient lymphocytes)'}, 'GSM2478931': {'status': 'unaffected, PHF21A-WT', 'gender': 'female', 'type': 'lymphoblasts (EBV-transformed patient lymphocytes)'}, 'GSM2478938': {'line': 'A549', 'with': 'vehicle', 'variation': 'PARP3-/-'}, 'GSM2478939': {'line': 'A549', 'with': 'vehicle', 'variation': 'PARP3-/-'}, 'GSM2172357': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2122729': {'age': '62', 'tissue': 'olfactory epithelium', 'Sex': 'female'}, 'GSM2122728': {'age': '58', 'tissue': 'olfactory epithelium', 'Sex': 'female'}, 'GSM2696554': {'status': '3+ (100)', 'grade': '3', 'age': '46', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '1.5'}, 'GSM2696555': {'status': '3+ (100)', 'grade': '3', 'age': '46', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '1.5'}, 'GSM2696558': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696559': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Prophylactic Mammoplasty', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2581197': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581196': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2720332': {'passages': 'p5', 'type': 'WAPC', 'treatment': 'tunicamycin'}, 'GSM2720333': {'passages': 'p5', 'type': 'WAPC', 'treatment': 'tunicamycin'}, 'GSM1816579': {'transfection': 'none', 'line': 'HEK293T'}, 'GSM1816578': {'transfection': 'none', 'line': 'HEK293T'}, 'GSM1816575': {'transfection': 'dCas9-VPR and a gRNA of length 16nt targeting ACTC1', 'line': 'HEK293T'}, 'GSM1816574': {'transfection': 'dCas9-VPR and a gRNA of length 16nt targeting ACTC1', 'line': 'HEK293T'}, 'GSM1816577': {'transfection': 'dCas9-VPR and a gRNA of length 14nt targeting ACTC1', 'line': 'HEK293T'}, 'GSM1816576': {'transfection': 'dCas9-VPR and a gRNA of length 14nt targeting ACTC1', 'line': 'HEK293T'}, 'GSM1816573': {'transfection': 'dCas9-VPR and a gRNA of length 20nt targeting ACTC1', 'line': 'HEK293T'}, 'GSM1816572': {'transfection': 'dCas9-VPR and a gRNA of length 20nt targeting ACTC1', 'line': 'HEK293T'}, 'GSM2432141': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM2432140': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM1881568': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM2432142': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM2432145': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM2432144': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM2432146': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM597210': {'subtype': 'Brain reference', 'sampleID': 'Ambion 6050', 'organ': 'Brain'}, 'GSM597211': {'subtype': 'Universal reference', 'sampleID': 'Stratagene 740000', 'organ': 'Multiple'}, 'GSM2720337': {'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2109339': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109338': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109337': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109336': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109335': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109334': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109333': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109332': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109331': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109330': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM1881569': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1957333': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957332': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957331': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2285821': {'status': 'healthy volunteer', 'gender': 'female', 'age': '67', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2740949': {'with': 'shBRG1 + shBRM', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1957336': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957335': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957334': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2740945': {'with': 'shBRG1 + shBRM', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM2740944': {'with': 'shBrrm', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM2740947': {'with': 'shBrg1', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1957338': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1647060': {'illumina_index': '14', 'point': '4', 'batch': '9', 'agent': 'BCG', 'rin': '8.4', 'individual': 'M377'}, 'GSM2740943': {'with': 'shBrg1', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM2740942': {'with': 'shNS', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM2011222': {'line': 'immortalized (BCi-NS1.1 cells) BC', 'individual': 'nonsmoker', 'passage': 'P30'}, 'GSM1406338': {'type': 'Macrophages(BC8)'}, 'GSM1406339': {'type': 'Macrophages(BC8)'}, 'GSM1406332': {'type': 'Macrophages(BC12)'}, 'GSM1406333': {'type': 'Macrophages(BC12)'}, 'GSM1406330': {'type': 'Primary Monocytes(BC12)'}, 'GSM1406331': {'type': 'Macrophages(BC12)'}, 'GSM1406336': {'type': 'Primary Monocytes(rest cell population after CD14+ selection)(BC13)'}, 'GSM1406337': {'type': 'Primary Monocytes(rest cell population after CD14+ selection)(BC14)'}, 'GSM1406334': {'type': 'Primary MonocytesCD14+(BC13)'}, 'GSM1406335': {'type': 'Primary MonocytesCD14+(BC14)'}, 'GSM2127805': {'tissue': 'Intestine and colon', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2127804': {'tissue': 'Intestine and colon', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2127807': {'tissue': 'Intestine and colon', 'type': 'tumoral', 'Sex': 'pooled male and female'}, 'GSM2127806': {'tissue': 'Intestine and colon', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2127801': {'tissue': 'Kidney', 'type': 'tumoral', 'Sex': 'pooled male and female'}, 'GSM2127800': {'tissue': 'Kidney', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2127803': {'tissue': 'Kidney', 'type': 'tumoral', 'Sex': 'pooled male and female'}, 'GSM2127802': {'tissue': 'Kidney', 'type': 'tumoral', 'Sex': 'pooled male and female'}, 'GSM1540466': {'with': 'siRNA oligonucleotides targeting JunB', 'tissue': 'foreskin skin', 'type': 'human neonatal keratincoytes', 'passage': 'Passage 3'}, 'GSM1540465': {'with': 'siRNA oligonucleotides targeting JunB', 'tissue': 'foreskin skin', 'type': 'human neonatal keratincoytes', 'passage': 'Passage 3'}, 'GSM1540464': {'with': 'siRNA oligonucleotides targeting JunB', 'tissue': 'foreskin skin', 'type': 'human neonatal keratincoytes', 'passage': 'Passage 3'}, 'GSM1540463': {'with': 'non-silencing siRNA control', 'tissue': 'foreskin skin', 'type': 'human neonatal keratincoytes', 'passage': 'Passage 3'}, 'GSM1540462': {'with': 'non-silencing siRNA control', 'tissue': 'foreskin skin', 'type': 'human neonatal keratincoytes', 'passage': 'Passage 3'}, 'GSM1540461': {'with': 'non-silencing siRNA control', 'tissue': 'foreskin skin', 'type': 'human neonatal keratincoytes', 'passage': 'Passage 3'}, 'GSM2889026': {'tissue': 'pancreatic islets'}, 'GSM2041271': {'type': 'hESC-derived definitive endoderm'}, 'GSM2464345': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2041273': {'type': 'hESC-derived primitive gut tube'}, 'GSM2041272': {'type': 'hESC-derived definitive endoderm'}, 'GSM2041275': {'type': 'hESC-derived posterior foregut'}, 'GSM2041274': {'type': 'hESC-derived primitive gut tube'}, 'GSM2464342': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2041276': {'type': 'hESC-derived posterior foregut'}, 'GSM2464348': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464349': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM1955793': {'a': '71739', 'cd38': '329', 'cd49f': '-8', 'w': '67567', 'h': '69583', 'lin': '418', 'cd34': '7395', 'cd90': '4646', 'cd7': '317', 'cd10': '614', 'time': '20277', 'cd135': '2035', 'cd45ra': '376'}, 'GSM1955792': {'a': '47282', 'cd38': '-389', 'cd49f': '271', 'w': '69042', 'h': '44881', 'lin': '581', 'cd34': '7764', 'cd90': '2897', 'cd7': '857', 'cd10': '614', 'time': '20479', 'cd135': '2532', 'cd45ra': '-173'}, 'GSM1955791': {'a': '56392', 'cd38': '1024', 'cd49f': '256', 'w': '68437', 'h': '54001', 'lin': '153', 'cd34': '6954', 'cd90': '2049', 'cd7': '155', 'cd10': '876', 'time': '20707', 'cd135': '5731', 'cd45ra': '691'}, 'GSM1955790': {'a': '75256', 'cd38': '900', 'cd49f': '211', 'w': '65501', 'h': '75297', 'lin': '724', 'cd34': '7064', 'cd90': '3531', 'cd7': '174', 'cd10': '1102', 'time': '20926', 'cd135': '1548', 'cd45ra': '333'}, 'GSM1576439': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human PBMC', 'time': '0 d'}, 'GSM1576438': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human NK cells', 'time': '7 d'}, 'GSM1955795': {'a': '60701', 'cd38': '1006', 'cd49f': '314', 'w': '66858', 'h': '59500', 'lin': '169', 'cd34': '11679', 'cd90': '3638', 'cd7': '-357', 'cd10': '949', 'time': '19875', 'cd135': '4653', 'cd45ra': '39'}, 'GSM1955794': {'a': '59964', 'cd38': '1133', 'cd49f': '963', 'w': '66506', 'h': '59089', 'lin': '509', 'cd34': '6704', 'cd90': '1300', 'cd7': '-9', 'cd10': '730', 'time': '20088', 'cd135': '6245', 'cd45ra': '253'}, 'GSM1576435': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human NK cells', 'time': '0 d'}, 'GSM1576434': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human neutrophils', 'time': '7 d'}, 'GSM1576437': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human NK cells', 'time': '3 d'}, 'GSM1576436': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human NK cells', 'time': '1 d'}, 'GSM1576431': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human neutrophils', 'time': '0 d'}, 'GSM1576430': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human monocytes', 'time': '7 d'}, 'GSM1576433': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human neutrophils', 'time': '3 d'}, 'GSM1576432': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human neutrophils', 'time': '1 d'}, 'GSM1946252': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19204', 'for': '60min'}, 'GSM1946253': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19204', 'for': '60min'}, 'GSM1946250': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19204', 'for': '60min'}, 'GSM1946251': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19204', 'for': '60min'}, 'GSM1946256': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19209', 'for': '30min'}, 'GSM1946257': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19209', 'for': '60min'}, 'GSM1946254': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19206', 'for': '30min'}, 'GSM1946255': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19206', 'for': '60min'}, 'GSM1946258': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19210', 'for': '30min'}, 'GSM1946259': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19210', 'for': '60min'}, 'GSM2362549': {'line': 'HEK293'}, 'GSM2362548': {'line': 'HEK293'}, 'GSM2362541': {'line': 'HEK293'}, 'GSM2362540': {'line': 'HEK293'}, 'GSM2362543': {'line': 'HEK293'}, 'GSM2362542': {'line': 'HEK293'}, 'GSM2362545': {'line': 'HEK293'}, 'GSM2362544': {'line': 'HEK293'}, 'GSM2362547': {'line': 'HEK293'}, 'GSM2362546': {'line': 'HEK293'}, 'GSM2859869': {'type': 'Endothelial cells', 'treatment': 'Hypoxia 0.2% O2, 5% CO2 humidified atmosphere', 'passage': 'Passage 2'}, 'GSM2859868': {'type': 'Endothelial cells', 'treatment': 'Hypoxia 0.2% O2, 5% CO2 humidified atmosphere', 'passage': 'Passage 2'}, 'GSM1234122': {'replicate': '2', 'line': '19240', 'antibody': 'CTCF'}, 'GSM1234123': {'replicate': '1', 'line': '19240', 'antibody': 'H3K27Ac'}, 'GSM1234124': {'replicate': '2', 'line': '19240', 'antibody': 'H3K27Ac'}, 'GSM1234125': {'replicate': '3', 'line': '19240', 'antibody': 'H3K27Ac'}, 'GSM1234126': {'replicate': '1.2', 'line': '19240', 'antibody': 'H3K27me3'}, 'GSM1234127': {'replicate': '1', 'line': '19240', 'antibody': 'H3K27me3'}, 'GSM1234128': {'replicate': '2.2', 'line': '19240', 'antibody': 'H3K27me3'}, 'GSM1234129': {'replicate': '2', 'line': '19240', 'antibody': 'H3K27me3'}, 'GSM2859867': {'type': 'Endothelial cells', 'treatment': 'Hypoxia 0.2% O2, 5% CO2 humidified atmosphere', 'passage': 'Passage 2'}, 'GSM2859866': {'type': 'Endothelial cells', 'treatment': 'Hypoxia 0.2% O2, 5% CO2 humidified atmosphere', 'passage': 'Passage 2'}, 'GSM1405885': {'type': 'A549 (human lung epithelial cells)'}, 'GSM2745814': {'group': '3D/COL3', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745815': {'group': '3D/COL4', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2626979': {'origin': 'pancreas', 'patient_id': '35', 'type': 'primary', 'tumor_id': '35'}, 'GSM2745817': {'group': '3D/BSA', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745810': {'group': '3D/LN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745811': {'group': '3D/LN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745812': {'group': '3D/COL1', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745813': {'group': '3D/COL2', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2626973': {'origin': 'pancreas', 'patient_id': '23', 'type': 'primary', 'tumor_id': '23'}, 'GSM2842499': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2626971': {'origin': 'pancreas', 'patient_id': '21', 'type': 'primary', 'tumor_id': '21'}, 'GSM2626970': {'origin': 'pancreas', 'patient_id': '20', 'type': 'primary', 'tumor_id': '20'}, 'GSM2626977': {'origin': 'pancreas', 'patient_id': '29', 'type': 'primary', 'tumor_id': '29'}, 'GSM2626976': {'origin': 'pancreas', 'patient_id': '27', 'type': 'primary', 'tumor_id': '27'}, 'GSM2626975': {'origin': 'pancreas', 'patient_id': '25', 'type': 'primary', 'tumor_id': '25'}, 'GSM2626974': {'origin': 'pancreas', 'patient_id': '24', 'type': 'primary', 'tumor_id': '24'}, 'GSM2194201': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1545033': {'protocol': 'AdCMV+AdVammin 48h', 'replicate': 'biological replicate #1', 'details': 'Sample from 1 individual', 'passage': 'passage 5'}, 'GSM3508638': {'group': 'Active', 'age': '10', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508639': {'group': 'Active', 'age': '10', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM1545032': {'protocol': 'AdSlit2 48h', 'replicate': 'biological replicate #2', 'details': 'Sample from 1 individual', 'passage': 'passage 5'}, 'GSM3508636': {'group': 'Active', 'age': '12', 'number': '100', 'Sex': 'M', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508637': {'group': 'Active', 'age': '12', 'number': '100', 'Sex': 'M', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM1545031': {'protocol': 'AdSlit2 48h', 'replicate': 'biological replicate #1', 'details': 'Sample from 1 individual', 'passage': 'passage 5'}, 'GSM1545030': {'protocol': 'AdCMV 48h', 'replicate': 'biological replicate #2', 'details': 'Sample from 1 individual', 'passage': 'passage 5'}, 'GSM2287468': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1545036': {'protocol': 'AdSlit2+AdVammin 48h', 'replicate': 'biological replicate #2', 'details': 'Sample from 1 individual', 'passage': 'passage 5'}, 'GSM1545035': {'protocol': 'AdSlit2+AdVammin 48h', 'replicate': 'biological replicate #1', 'details': 'Sample from 1 individual', 'passage': 'passage 5'}, 'GSM1545034': {'protocol': 'AdCMV+AdVammin 48h', 'replicate': 'biological replicate #2', 'details': 'Sample from 1 individual', 'passage': 'passage 5'}, 'GSM1863748': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863749': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863746': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863747': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863744': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863745': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863742': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863743': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863740': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863741': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1395382': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSDM13 DMSO', 'timepoint': '12hr'}, 'GSM1395383': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 vorinostat', 'timepoint': '8hr'}, 'GSM1395380': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 vorinostat', 'timepoint': '8hr'}, 'GSM1395381': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 DMSO', 'timepoint': '8hr'}, 'GSM1395386': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '8hr'}, 'GSM1395387': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '12hr'}, 'GSM1395384': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 vorinostat', 'timepoint': '12hr'}, 'GSM1395385': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '4hr'}, 'GSM2177844': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Background', 'years': '2'}, 'GSM2177845': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Background', 'years': '2'}, 'GSM2424364': {'line': 'MRC5VA', 'treatment': 'Untreated', 'time': '0 hours'}, 'GSM2424365': {'line': 'MRC5VA', 'treatment': 'Untreated', 'time': '0 hours'}, 'GSM2424362': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '24 hours'}, 'GSM2424363': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '24 hours'}, 'GSM2177842': {'status': 'Normal', 'Sex': 'Female', 'type': 'Normal', 'years': '14'}, 'GSM2177843': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Background', 'years': '1'}, 'GSM2588111': {'expression': 'MYOD WT', 'type': 'Skin fibroblasts', 'isolation': 'passage Low 12'}, 'GSM2666141': {'age': 'Day 130', 'well': 'B11', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2158295': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2588112': {'expression': 'MYOD Y30F', 'type': 'Skin fibroblasts', 'isolation': 'passage Low 12'}, 'GSM2053445': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '43', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#16'}, 'GSM2053444': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '47', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#15'}, 'GSM2053447': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '61', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#18'}, 'GSM2053446': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '60', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#17'}, 'GSM2053441': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '49', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#12'}, 'GSM2053440': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '53', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#11'}, 'GSM2053443': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '51', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#14'}, 'GSM2298939': {'type': 'CW2025_3 cells'}, 'GSM2298936': {'type': 'CW1919 cells'}, 'GSM2298937': {'type': 'CW1924 cells'}, 'GSM2298934': {'type': 'CCF_3145 cells'}, 'GSM2298935': {'type': 'CW1918 cells'}, 'GSM2053449': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '64', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#20'}, 'GSM2053448': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '43', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#19'}, 'GSM2298930': {'type': 'CCF3038 cells'}, 'GSM2298931': {'type': 'CCF3094 cells'}, 'GSM3099428': {'stimulation': 'Non-stimulated control', 'type': 'Bronchial epithelial cells'}, 'GSM3099429': {'stimulation': 'Non-stimulated control', 'type': 'Bronchial epithelial cells'}, 'GSM2306039': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '21 week gestation'}, 'GSM2306038': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '21 week gestation'}, 'GSM2870622': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870623': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2870620': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2870621': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870626': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2870627': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870624': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870625': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870628': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870629': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1009629': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h', 'antibody': 'p300', 'manufactuer': 'Santa Cruz'}, 'GSM1009628': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '1h', 'antibody': 'p300', 'manufactuer': 'Santa Cruz'}, 'GSM2344972': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2344973': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2344974': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2344975': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2344976': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2306037': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '21 week gestation'}, 'GSM1009623': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '0h', 'antibody': 'H3K27ac', 'manufactuer': 'Abcam'}, 'GSM1009625': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h', 'antibody': 'H3K27ac', 'manufactuer': 'Abcam'}, 'GSM1009624': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '1h', 'antibody': 'H3K27ac', 'manufactuer': 'Abcam'}, 'GSM1009627': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '0h', 'antibody': 'p300', 'manufactuer': 'Santa Cruz'}, 'GSM1009626': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '12h', 'antibody': 'H3K27ac', 'manufactuer': 'Abcam'}, 'GSM2284035': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM1095129': {'subset': 'poly A RNA', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1712260': {'state': 'healthy', 'tissue': 'Venous peripheral blood', 'type': 'Monocytes'}, 'GSM2348614': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1712262': {'state': 'healthy', 'tissue': 'Venous peripheral blood', 'type': 'Granulocytes'}, 'GSM2575102': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2631698': {'line': 'MDA-MB-453 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM2631699': {'line': 'MDA-MB-453 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM2631692': {'line': 'MDA-MB-361 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM2631693': {'line': 'MDA-MB-361 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM2631690': {'line': 'MDA-MB-361 breast carcinoma cell line', 'agent': 'control'}, 'GSM2631691': {'line': 'MDA-MB-361 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM2631696': {'line': 'MDA-MB-453 breast carcinoma cell line', 'agent': 'control'}, 'GSM2631697': {'line': 'MDA-MB-453 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM2631694': {'line': 'MDA-MB-453 breast carcinoma cell line', 'agent': 'control'}, 'GSM2575101': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM1332751': {'passages': 'tissue', 'type': 'human', 'chromosome': 'diploid'}, 'GSM2632352': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632353': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632350': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632351': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632356': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632357': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632354': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632355': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632358': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632359': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2575100': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '18h'}, 'GSM2325893': {'type': 'Human embryonic stem cell'}, 'GSM2243488': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243489': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243486': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243487': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243484': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243485': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243482': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243483': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243480': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243481': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1033550': {'genotype': 'SETBP1 I871T -/+'}, 'GSM1033551': {'genotype': 'SETBP1 D868N -/+'}, 'GSM618469': {'status': 'ETS-', 'name': 'DU145', 'site': 'None', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618468': {'status': 'ETS-', 'name': 'DU145', 'site': 'None', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618467': {'status': 'ETS-', 'name': 'CWR22', 'site': 'None', 'state': 'cancer', 'line': 'CWR22', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618466': {'status': 'ETS-', 'name': 'CA-HPV-10', 'site': 'None', 'state': 'cancer', 'line': 'CA-HPV-10', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618465': {'status': 'ETV1+', 'name': 'C4-2B', 'site': 'None', 'state': 'cancer', 'line': 'C4-2B', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618464': {'status': 'ETS-', 'name': '22Rv1', 'site': 'None', 'state': 'cancer', 'line': '22Rv1', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618463': {'status': 'ETS-', 'name': '22Rv1', 'site': 'None', 'state': 'cancer', 'line': '22Rv1', 'type': 'Cell Line', 'id': 'NA'}, 'GSM1614900': {'line': 'LCL31', 'fraction': 'polysome'}, 'GSM2787580': {'subtype': 'RNA', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787581': {'subtype': 'RNA', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787582': {'subtype': 'RNA', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787583': {'subtype': 'RNA', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787584': {'subtype': 'RNA', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787585': {'subtype': 'Plasmid Reporter Library', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2212184': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2886598': {'age': '77', 'cytorisk': 'intermed1', 'state': 'AML', 'tissue': 'Blood', 'cr': 'unknown', 'npm1': 'not done', 'flt3': 'not done'}, 'GSM2394535': {'id': 'IonXpress_046', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': '9(S)-HPODE', 'point': 'after 12h of compound treatment'}, 'GSM1930802': {'tool': 'pairwise limma voom', 'molecule': 'nuclear RNA'}, 'GSM1930803': {'tool': 'pairwise limma voom', 'molecule': 'nuclear RNA'}, 'GSM1930800': {'tool': 'pairwise limma voom', 'molecule': 'eIF4E RIP nuclear RNAs'}, 'GSM1930801': {'tool': 'pairwise limma voom', 'molecule': 'nuclear RNA'}, 'GSM2059906': {'donor': '4', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059907': {'donor': '4', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059904': {'donor': '4', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059905': {'donor': '4', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059902': {'donor': '2', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059903': {'donor': '2', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059900': {'donor': '2', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059901': {'donor': '2', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2394536': {'id': 'IonXpress_047', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': '9b,11a-Prostaglandin F2', 'point': 'after 12h of compound treatment'}, 'GSM2394531': {'id': 'IonXpress_056', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': '17-Allylamino-geldanamycin', 'point': 'after 12h of compound treatment'}, 'GSM2394530': {'id': 'IonXpress_053', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Tyrphostin AG490', 'point': 'after 12h of compound treatment'}, 'GSM2394533': {'id': 'IonXpress_058', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'MBCQ', 'point': 'after 12h of compound treatment'}, 'GSM1606109': {'line': 'HEK293T', 'treatment': 'ISRIB (200 nM) for 1 hour'}, 'GSM1606108': {'line': 'HEK293T', 'treatment': 'untreated'}, 'GSM1606107': {'line': 'HEK293T', 'treatment': 'untreated'}, 'GSM1606106': {'line': 'HEK293T', 'treatment': '1μg/ml of tunicamycin and ISRIB (200 nM) for 1 hour'}, 'GSM1606105': {'line': 'HEK293T', 'treatment': '1μg/ml of tunicamycin and ISRIB (200 nM) for 1 hour'}, 'GSM1606104': {'line': 'HEK293T', 'treatment': '1μg/ml of tunicamycin for 1 hour'}, 'GSM1606103': {'line': 'HEK293T', 'treatment': '1μg/ml of tunicamycin for 1 hour'}, 'GSM1606102': {'line': 'HEK293T', 'treatment': 'ISRIB (200 nM) for 1 hour'}, 'GSM1606101': {'line': 'HEK293T', 'treatment': 'ISRIB (200 nM) for 1 hour'}, 'GSM1606100': {'line': 'HEK293T', 'treatment': 'untreated'}, 'GSM1401813': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM2151521': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2255508': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'untreated'}, 'GSM2151520': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2170739': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170738': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170737': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170736': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170735': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170734': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170733': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170732': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170731': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170730': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2348534': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348535': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1556369': {'gender': 'male', 'id': 'GM03440 (Coriell)', 'diagnosis': 'Control'}, 'GSM2565233': {'construction': 'PLATE-Seq', 'drug': 'Dabrafenib (GSK2118436)'}, 'GSM1567918': {'weeks': '17.5'}, 'GSM1567919': {'weeks': '18'}, 'GSM2348532': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348533': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565238': {'construction': 'PLATE-Seq', 'drug': 'Clofarabine'}, 'GSM2565239': {'construction': 'PLATE-Seq', 'drug': 'Vinblastine'}, 'GSM1567916': {'weeks': '10.4'}, 'GSM1567917': {'weeks': '11.4'}, 'GSM2348538': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1567911': {'weeks': '10.3'}, 'GSM1567912': {'weeks': '16.4'}, 'GSM1567913': {'weeks': '18'}, 'GSM1965282': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965283': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965280': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965281': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1276849': {'score': '9.6', 'sequence': 'TGACCA', 'targeted': 'HNRPL', 'number': '4', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276848': {'score': '9.1', 'sequence': 'ACAGTG', 'targeted': 'ACIN1', 'number': '5', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1965284': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965285': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1276845': {'score': '9.1', 'sequence': 'CGATGT', 'targeted': 'RBM23', 'number': '2', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276844': {'score': '9.6', 'sequence': 'CAGATC', 'targeted': 'RBM23', 'number': '7', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276847': {'score': '8.2', 'sequence': 'ATCACG', 'targeted': 'ACIN1', 'number': '1', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276846': {'score': '9.3', 'sequence': 'ACAGTG', 'targeted': 'ACIN1', 'number': '5', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276841': {'score': '9.7', 'sequence': 'ACTTGA', 'targeted': 'PTBP1', 'number': '8', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276840': {'score': '9.3', 'sequence': 'AGTTCC', 'targeted': 'PTBP1', 'number': '14', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276843': {'score': '9.2', 'sequence': 'ATGTCA', 'targeted': 'RBM23', 'number': '15', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276842': {'score': '9', 'sequence': 'CAGATC', 'targeted': 'PTBP1', 'number': '7', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1620659': {'type': 'MCF10a human breast cancer cells'}, 'GSM2094769': {'line': 'BC-PAP', 'protocol': 'BC-PAP cell line treated with 50 µM proscillaridin A for 72 hours'}, 'GSM2536952': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'wild type'}, 'GSM1505858': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '1120-03'}, 'GSM2536955': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'DNMT3A mutated'}, 'GSM920998': {'barcode': 'GCGAAT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd4'}, 'GSM1297664': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297665': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297666': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297667': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297660': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297661': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297662': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297663': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM2616440': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616441': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616442': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616443': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM1297668': {'differentiation': 'Differentiation 3, full confluency', 'material': 'extracted RNA', 'point': 'Day 0'}, 'GSM1297669': {'differentiation': 'Differentiation 3, full confluency', 'material': 'extracted RNA', 'point': 'Day 3'}, 'GSM2616446': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616447': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2100924': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch2', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '1314'}, 'GSM2208825': {'treatment': 'non-targeting(NT) shRNA'}, 'GSM1505850': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '07-01'}, 'GSM2208827': {'treatment': 'TRCN0000036279 (CPTsh1) KnockDown'}, 'GSM1505852': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '07-03'}, 'GSM2610929': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2779022': {'time_hr': '9', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779020': {'time_hr': '4', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779021': {'time_hr': '6', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM1866054': {'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1599920': {'procedure': 'adjustable gastric banding', 'time': 'T3'}, 'GSM1599921': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599922': {'procedure': 'adjustable gastric banding', 'time': 'T3'}, 'GSM1599923': {'procedure': 'adjustable gastric banding', 'time': 'T3'}, 'GSM1599924': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM2212233': {'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM1866057': {'tissue': 'hippocampus'}, 'GSM1479479': {'index': '13', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '59', 'smoker': '--', 'dose': '--', 'race': 'Asian', 'donorid': '50', 'collectiondate': 'July 6 2012', 'samplename': '50_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Sepsis'}, 'GSM1479478': {'index': '22', 'diagnosis': '--', 'cellcount': '49750000', 'gender': 'F', 'age': '59', 'smoker': '--', 'dose': '--', 'race': 'Asian', 'donorid': '50', 'collectiondate': 'July 6 2012', 'samplename': '50_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Sepsis'}, 'GSM1479477': {'index': '21', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '39', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '49', 'collectiondate': 'July 5 2012', 'samplename': '49_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Sepsis'}, 'GSM1479476': {'index': '3', 'diagnosis': '--', 'cellcount': '498269', 'gender': 'F', 'age': '39', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '49', 'collectiondate': 'July 5 2012', 'samplename': '49_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Sepsis'}, 'GSM1479475': {'index': '12', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '39', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '49', 'collectiondate': 'July 5 2012', 'samplename': '49_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Sepsis'}, 'GSM1479474': {'index': '7', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '39', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '49', 'collectiondate': 'July 5 2012', 'samplename': '49_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Sepsis'}, 'GSM1479473': {'index': '8', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '39', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '49', 'collectiondate': 'July 5 2012', 'samplename': '49_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Sepsis'}, 'GSM2212231': {'antibody': 'H3K36me3 (Diagenode, pAb-192-050, lot A1847-001P)', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM1479471': {'index': '5', 'diagnosis': '--', 'cellcount': '--', 'gender': 'M', 'age': '80', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '43', 'collectiondate': 'June 22 2012', 'samplename': '43_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Sepsis'}, 'GSM1479470': {'index': '20', 'diagnosis': '--', 'cellcount': '953426', 'gender': 'M', 'age': '80', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '43', 'collectiondate': 'June 22 2012', 'samplename': '43_NK', 'celltype': 'NK', 'diseasestatus': 'Sepsis'}, 'GSM2225654': {'disease': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2142660': {}, 'GSM2225653': {'disease': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2225652': {'disease': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM1866056': {'tissue': 'hippocampus'}, 'GSM2141318': {'individual': 'EU14', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2218648': {'with': '+UV (Recovery time=2h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2225651': {'disease': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2391151': {'disease': 'NSCLC'}, 'GSM2141311': {'individual': 'AF79', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141310': {'individual': 'AF77', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141313': {'individual': 'AF79', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2218647': {'with': '+UV (Recovery time=0.5h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2218640': {'with': 'NO UV in DRB (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218641': {'with': 'NO UV in DRB (Recovery time=10min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2141317': {'individual': 'EU14', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141316': {'individual': 'EU06', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM554102': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 8'}, 'GSM554104': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 6'}, 'GSM2285808': {'status': 'healthy volunteer', 'gender': 'female', 'age': '63', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285809': {'status': 'healthy volunteer', 'gender': 'female', 'age': '72', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285804': {'status': 'healthy volunteer', 'gender': 'female', 'age': '76', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285805': {'status': 'healthy volunteer', 'gender': 'female', 'age': '60', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285806': {'status': 'healthy volunteer', 'gender': 'female', 'age': '82', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285807': {'status': 'healthy volunteer', 'gender': 'female', 'age': '51', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285800': {'status': 'healthy volunteer', 'gender': 'female', 'age': '49', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285801': {'status': 'healthy volunteer', 'gender': 'female', 'age': '46', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285802': {'status': 'healthy volunteer', 'gender': 'female', 'age': '87', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285803': {'status': 'healthy volunteer', 'gender': 'female', 'age': '66', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1669162': {'with': 'E2+Progesterone_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669163': {'with': 'E2+Progesterone_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669160': {'with': 'E2', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669161': {'with': 'E2+R5020_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669166': {'with': 'E2+R5020_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669167': {'with': 'E2+R5020_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669164': {'with': 'E2', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669165': {'with': 'E2+Progesterone_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669168': {'with': 'E2', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669169': {'with': 'E2', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM2576186': {'origin': 'cervix carcinoma', 'line': 'HeLa', 'transfection': 'pEPI-EGFP'}, 'GSM2576187': {'tissue': 'breast cancer xenograft'}, 'GSM2576185': {'origin': 'cervix carcinoma', 'line': 'HeLa', 'transfection': 'none'}, 'GSM2576188': {'tissue': 'breast cancer xenograft'}, 'GSM2576189': {'tissue': 'breast cancer xenograft'}, 'GSM2287406': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1545054': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM1545057': {'type': 'normal gastric tissue', 'class': '--', 'location': 'GE junction'}, 'GSM1545056': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Proximal'}, 'GSM2287402': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287403': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1545053': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Artrum'}, 'GSM2287401': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2303481': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303480': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM1866053': {'tissue': 'dorsolateral prefrontal cortex'}, 'GSM2303482': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM1545059': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Distal'}, 'GSM1545058': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM2287408': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287409': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1528406': {'line': 'M421', 'type': 'Melanoma'}, 'GSM1528405': {'line': 'M420', 'type': 'Melanoma'}, 'GSM1528404': {'line': 'M417', 'type': 'Melanoma'}, 'GSM1528403': {'line': 'M416', 'type': 'Melanoma'}, 'GSM1528402': {'line': 'M411', 'type': 'Melanoma'}, 'GSM1528401': {'line': 'M410', 'type': 'Melanoma'}, 'GSM1528400': {'line': 'M409', 'type': 'Melanoma'}, 'GSM2794419': {'age': '41 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2062272': {'source': 'Cutaneous squamous cell carcinoma', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'PICSAR siRNA'}, 'GSM1909479': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'METTL14 Knockdown'}, 'GSM1909478': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'METTL3 Knockdown'}, 'GSM1909477': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'METTL3 Knockdown'}, 'GSM1909476': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'wild type'}, 'GSM1909475': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'wild type'}, 'GSM1909474': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'HNRNPG Knockdown'}, 'GSM1909473': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'HNRNPG Knockdown'}, 'GSM1909472': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'HNRNPG Knockdown'}, 'GSM1909471': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'HNRNPG Knockdown'}, 'GSM1909470': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'wild type'}, 'GSM2522359': {'with': 'vehicle', 'tissue': 'cord blood', 'type': 'CD34+ cells', 'passage': 'day4-culture'}, 'GSM1382438': {'molecule': 'nascent RNA', 'line': 'A375', 'type': 'malignant melanoma'}, 'GSM1382434': {'molecule': 'nascent RNA', 'line': 'A375', 'type': 'malignant melanoma'}, 'GSM1382435': {'molecule': 'nascent RNA', 'line': 'A375', 'type': 'malignant melanoma'}, 'GSM1382436': {'molecule': 'nascent RNA', 'line': 'A375', 'type': 'malignant melanoma'}, 'GSM1382437': {'molecule': 'nascent RNA', 'line': 'A375', 'type': 'malignant melanoma'}, 'GSM1382433': {'molecule': 'nascent RNA', 'line': 'A375', 'type': 'malignant melanoma'}, 'GSM2114337': {'knockdown': 'GFP (control knockdown)', 'line': 'A549 lung adenocarcinoma'}, 'GSM2114336': {'knockdown': 'GFP (control knockdown)', 'line': 'A549 lung adenocarcinoma'}, 'GSM2151549': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151548': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151545': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151544': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151547': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151546': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151541': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2114338': {'knockdown': 'GFP (control knockdown)', 'line': 'A549 lung adenocarcinoma'}, 'GSM2151543': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151542': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2420267': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420266': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420265': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420264': {'tissue': 'melanoma', 'response': 'UNK'}, 'GSM2420263': {'tissue': 'melanoma', 'response': 'UNK'}, 'GSM2420262': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420261': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420260': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420269': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420268': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2212255': {'line': 'Leukemia cell line; KOPN-8', 'type': 'Infant pre B-cell line derived from ALL with t(11;19)(q23;p13) translocation'}, 'GSM2212254': {'line': 'Leukemia cell line; THP-1', 'type': 'Paediatric monocytic cell line derived from AML M5 with t(9;11)(p21;q23) translocation'}, 'GSM2212257': {'line': 'Leukemia cell line; MV4-11', 'type': 'Paediatric monocytic cell line derived from AML M5 with t(4;11)(q21;q23) translocation'}, 'GSM2212256': {'line': 'Leukemia cell line; KOPN-8', 'type': 'Infant pre B-cell line derived from ALL with t(11;19)(q23;p13) translocation'}, 'GSM2212251': {'antibody': 'MLL1 (Bethyl, A300-086A)', 'line': 'Leukemia cell line; ML-2', 'type': 'Adult monocytic cell line derived from AML M4 with t(6;11)(q27;q23) translocation'}, 'GSM2212250': {'line': 'Leukemia cell line; ML-2', 'type': 'Adult monocytic cell line derived from AML M4 with t(6;11)(q27;q23) translocation'}, 'GSM2212253': {'line': 'Leukemia cell line; THP-1', 'type': 'Paediatric monocytic cell line derived from AML M5 with t(9;11)(p21;q23) translocation'}, 'GSM2212252': {'line': 'Leukemia cell line; ML-2', 'type': 'Adult monocytic cell line derived from AML M4 with t(6;11)(q27;q23) translocation'}, 'GSM2392278': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2212259': {'line': 'Leukemia cell line; CCRF-CEM', 'type': 'Paediatric immature T-cell line derived from ALL with t(5;14)(q35.1;q32.2)'}, 'GSM2212258': {'line': 'Leukemia cell line; MV4-11', 'type': 'Paediatric monocytic cell line derived from AML M5 with t(4;11)(q21;q23) translocation'}, 'GSM2157547': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM2093209': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093208': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1917698': {'shRNA': 'shGDE2', 'type': 'Shep2'}, 'GSM1828395': {'origin': 'breast epithelial', 'line': 'MCF7-derived LY2', 'sirna': 'scrambled CONTROL'}, 'GSM1828396': {'origin': 'breast epithelial', 'line': 'MCF7-derived LY2', 'sirna': 'scrambled CONTROL'}, 'GSM2042095': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM1828398': {'origin': 'breast epithelial', 'line': 'MCF7-derived LY2', 'sirna': 'scrambled CONTROL'}, 'GSM2093202': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093201': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1917697': {'shRNA': 'shGDE2', 'type': 'Shep2'}, 'GSM2093207': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2042096': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM2093205': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093204': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2157544': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM1661508': {'line': 'A375', 'treatment': 'A771726-treated for 0 hrs'}, 'GSM2265799': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '0'}, 'GSM2157542': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM2828623': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2894', 'type': 'CD8 T cells'}, 'GSM2828622': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2653', 'type': 'CD8 T cells'}, 'GSM2828621': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3052', 'type': 'CD8 T cells'}, 'GSM2828620': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3047', 'type': 'CD8 T cells'}, 'GSM1513258': {'gender': 'Female', 'line': 'GM19257', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2828626': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3054', 'type': 'CD8 T cells'}, 'GSM2828625': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3053', 'type': 'CD8 T cells'}, 'GSM2828608': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3052', 'type': 'CD8 T cells'}, 'GSM1513254': {'gender': 'Male', 'line': 'GM19223', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513255': {'gender': 'Female', 'line': 'GM19225', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513256': {'gender': 'Female', 'line': 'GM19238', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513257': {'gender': 'Male', 'line': 'GM19239', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513250': {'gender': 'Male', 'line': 'GM19207', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513251': {'gender': 'Female', 'line': 'GM19209', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513252': {'gender': 'Male', 'line': 'GM19210', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513253': {'gender': 'Female', 'line': 'GM19222', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1354848': {'donor': 'donor No.4', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354849': {'donor': 'donor No.5', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM2692592': {'line': 'PC9', 'treatment': 'PC9+TSA (50nM ,5hours)'}, 'GSM2692593': {'line': 'PC9', 'treatment': 'PC9+TSA (50nM ,5hours)'}, 'GSM2692590': {'line': 'PC9', 'treatment': 'PC9 +carboplatin (50uM,72h)'}, 'GSM2692591': {'line': 'PC9', 'treatment': 'PC9 +carboplatin (50uM,72h)'}, 'GSM2692594': {'line': 'PC9', 'treatment': 'PC9+TSA (50nM ,5hours)'}, 'GSM2211702': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'arm', 'tissue': 'skin biopsy', 'id': 'patient3'}, 'GSM2211703': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient3'}, 'GSM2211700': {'status': 'psoriasis patient', 'type': 'uninvolved', 'part': 'buttock', 'tissue': 'skin biopsy', 'id': 'patient2'}, 'GSM1648880': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CLAY_1_2', 'biopsy': 'n/a', 'years': '2.7', 'volume': '1182', 'type': 'iPSCs', 'id': 'CLAY'}, 'GSM2211706': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'arm', 'tissue': 'skin biopsy', 'id': 'patient4'}, 'GSM2211707': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'abdomen', 'tissue': 'skin biopsy', 'id': 'patient4'}, 'GSM2211704': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'leg', 'tissue': 'skin biopsy', 'id': 'patient3'}, 'GSM2211705': {'status': 'psoriasis patient', 'type': 'uninvolved', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient3'}, 'GSM2211708': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient4'}, 'GSM2211709': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'leg', 'tissue': 'skin biopsy', 'id': 'patient4'}, 'GSM2627056': {'origin': 'small intestine', 'patient_id': '90', 'type': 'liver metastasis', 'tumor_id': '64'}, 'GSM1580992': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1648881': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CLUE_4_7', 'biopsy': 'n/a', 'years': '3.41', 'volume': '1206', 'type': 'iPSCs', 'id': 'CLUE'}, 'GSM1554637': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2641079': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2086977': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM1963742': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2048642': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1217947': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'XK2367'}, 'GSM1648884': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'COVE_3_7', 'biopsy': 'n/a', 'years': '2.43', 'volume': '1225', 'type': 'iPSCs', 'id': 'COVE'}, 'GSM1536439': {'type': 'global long', 'treatment': 'ETOH'}, 'GSM1536438': {'type': 'global small'}, 'GSM2172271': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1536431': {'type': 'capture long'}, 'GSM1536430': {'type': 'capture long'}, 'GSM1536433': {'type': 'capture small'}, 'GSM1536432': {'type': 'capture small'}, 'GSM1536435': {'type': 'global long'}, 'GSM1536434': {'type': 'capture small'}, 'GSM1536437': {'type': 'global small'}, 'GSM1536436': {'type': 'global long'}, 'GSM2689220': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689221': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689222': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689223': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689224': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689225': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689226': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689227': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689228': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689229': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2575093': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2575092': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '06h'}, 'GSM2575095': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '12h'}, 'GSM2575094': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2575097': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2575096': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '12h'}, 'GSM2157536': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM2157537': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM2157535': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM2048640': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2157538': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM2172277': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2350175': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350174': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350177': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350176': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350171': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350170': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2361528': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361529': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361526': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361527': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361524': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361525': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2350179': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350178': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2361520': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361521': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2307045': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307044': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307047': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307046': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307041': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307040': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307043': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307042': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM1326591': {'group': 'No dA priming', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326590': {'group': 'Luciferase tetra-loop construct', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326592': {'group': 'No dA priming', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM2033102': {'line': 'Hela', 'medium': 'DMEM', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM2486465': {'line': 'KOPN-8'}, 'GSM2213939': {'line': 'JJN3', 'shRNA': 'ILF2 targeting', 'type': 'multiple myeloma cell line', 'treatment': 'none'}, 'GSM2213938': {'line': 'JJN3', 'shRNA': 'ILF2 targeting', 'type': 'multiple myeloma cell line', 'treatment': 'none'}, 'GSM2213937': {'line': 'JJN3', 'shRNA': 'non-silencing', 'type': 'multiple myeloma cell line', 'treatment': 'none'}, 'GSM2213936': {'line': 'JJN3', 'shRNA': 'non-silencing', 'type': 'multiple myeloma cell line', 'treatment': 'none'}, 'GSM1955858': {'a': '50314', 'cd38': '1033', 'cd49f': '590', 'w': '66216', 'h': '49797', 'lin': '-449', 'cd34': '4947', 'cd90': '193', 'cd7': '-147', 'cd10': '1404', 'time': '17491', 'cd135': '3850', 'cd45ra': '4457'}, 'GSM1955859': {'a': '57052', 'cd38': '381', 'cd49f': '708', 'w': '65343', 'h': '57221', 'lin': '152', 'cd34': '6208', 'cd90': '2503', 'cd7': '-69', 'cd10': '827', 'time': '17287', 'cd135': '3171', 'cd45ra': '141'}, 'GSM1955850': {'a': '55350', 'cd38': '319', 'cd49f': '842', 'w': '66292', 'h': '54718', 'lin': '-20', 'cd34': '9100', 'cd90': '820', 'cd7': '178', 'cd10': '772', 'time': '13810', 'cd135': '7023', 'cd45ra': '186'}, 'GSM1955851': {'a': '51492', 'cd38': '652', 'cd49f': '478', 'w': '65945', 'h': '51173', 'lin': '483', 'cd34': '9573', 'cd90': '3131', 'cd7': '70', 'cd10': '1028', 'time': '14016', 'cd135': '3142', 'cd45ra': '301'}, 'GSM1955852': {'a': '60896', 'cd38': '206', 'cd49f': '349', 'w': '66488', 'h': '60025', 'lin': '650', 'cd34': '6591', 'cd90': '2226', 'cd7': '18', 'cd10': '846', 'time': '14263', 'cd135': '3445', 'cd45ra': '224'}, 'GSM1955853': {'a': '77705', 'cd38': '608', 'cd49f': '40650', 'w': '69568', 'h': '73202', 'lin': '573', 'cd34': '3761', 'cd90': '876', 'cd7': '202', 'cd10': '340', 'time': '14494', 'cd135': '266', 'cd45ra': '558'}, 'GSM1955854': {'a': '57746', 'cd38': '867', 'cd49f': '758', 'w': '66009', 'h': '57332', 'lin': '442', 'cd34': '6931', 'cd90': '844', 'cd7': '10', 'cd10': '632', 'time': '14707', 'cd135': '2151', 'cd45ra': '337'}, 'GSM1955855': {'a': '60195', 'cd38': '969', 'cd49f': '583', 'w': '66953', 'h': '58921', 'lin': '477', 'cd34': '5537', 'cd90': '2395', 'cd7': '-235', 'cd10': '1244', 'time': '14927', 'cd135': '3711', 'cd45ra': '337'}, 'GSM1955856': {'a': '62322', 'cd38': '332', 'cd49f': '143', 'w': '68474', 'h': '59648', 'lin': '470', 'cd34': '6529', 'cd90': '523', 'cd7': '113', 'cd10': '585', 'time': '15122', 'cd135': '1462', 'cd45ra': '144'}, 'GSM1955857': {'a': '67205', 'cd38': '-13', 'cd49f': '39', 'w': '66657', 'h': '66075', 'lin': '-102', 'cd34': '7564', 'cd90': '1364', 'cd7': '343', 'cd10': '533', 'time': '17705', 'cd135': '1722', 'cd45ra': '67'}, 'GSM2917176': {'gender': 'Female', 'state': 'Nondiabetic', 'type': 'Epicardial Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917177': {'gender': 'Male', 'state': 'Nondiabetic', 'type': 'Epicardial Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917174': {'gender': 'Male', 'state': 'Diabetic', 'type': 'Subcutaneous Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917175': {'gender': 'Male', 'state': 'Diabetic', 'type': 'Subcutaneous Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917172': {'gender': 'Female', 'state': 'Diabetic', 'type': 'Subcutaneous Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917173': {'gender': 'Female', 'state': 'Diabetic', 'type': 'Subcutaneous Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917170': {'gender': 'Male', 'state': 'Nondiabetic', 'type': 'Subcutaneous Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917171': {'gender': 'Female', 'state': 'Diabetic', 'type': 'Subcutaneous Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917178': {'gender': 'Male', 'state': 'Nondiabetic', 'type': 'Epicardial Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917179': {'gender': 'Female', 'state': 'Diabetic', 'type': 'Epicardial Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2047787': {'well': 'G05', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047786': {'well': 'G04', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047785': {'well': 'G03', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047784': {'well': 'G02', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM835561': {'status': 'normal', 'tissue': 'Colon tissue'}, 'GSM2047782': {'well': 'F12', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM835563': {'status': 'cancerous', 'tissue': 'Colon tissue'}, 'GSM835562': {'status': 'paracancerous', 'tissue': 'Colon tissue'}, 'GSM2544217': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2544216': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2047789': {'well': 'G07', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047788': {'well': 'G06', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2026968': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q86TJ5'}, 'GSM2026969': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q6ZN55'}, 'GSM2026962': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8TBZ5'}, 'GSM2026963': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q8TBZ5'}, 'GSM2026960': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q7Z7K2'}, 'GSM2026961': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9ULM2'}, 'GSM2026966': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q3MIS6'}, 'GSM2026967': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q08ER8'}, 'GSM2026964': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8N8E2'}, 'GSM2026965': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q3MIS6'}, 'GSM2543973': {'library_id': 'lib8263', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543972': {'library_id': 'lib8262', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543971': {'library_id': 'lib8261', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543970': {'library_id': 'lib8260', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543977': {'library_id': 'lib8267', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1706735': {'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM2543975': {'library_id': 'lib8265', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543974': {'library_id': 'lib8264', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543979': {'library_id': 'lib8269', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.169', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543978': {'library_id': 'lib8268', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.169', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2770694': {'cell_line': 'HAP1', 'genotype': 'wild type'}, 'GSM2109278': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2770695': {'cell_line': 'HAP1', 'genotype': 'METAP1 knockout'}, 'GSM2109272': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109273': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109271': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109276': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109277': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109274': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109275': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM1553197': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM2125278': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'agent': 'p38 MAPK Inhibitor', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM1257869': {'line': 'MCF-7', 'treatment': 'Short interfering RNA against the AHR'}, 'GSM2108455': {'stages': 'myoblast nucleus'}, 'GSM2125275': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'agent': 'JNK Inhibitor', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM2108457': {'stages': 'myoblast nucleus'}, 'GSM2125277': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'agent': 'p38 MAPK Inhibitor', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM2125270': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM2125271': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM2125272': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM2125273': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'agent': 'JNK Inhibitor', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM941198': {'line': 'LNCaP', 'passages': '32-34', 'type': 'prostate cancer cells'}, 'GSM941199': {'with': 'siGATA2', 'line': 'LNCaP', 'passages': '32-34', 'type': 'prostate cancer cells'}, 'GSM2656512': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'NRAS', 'resistance': 'Sensitive to MEK inhibitor Trametinib'}, 'GSM2656513': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'NRAS', 'resistance': 'Resistant to MEK inhibitor Trametinib'}, 'GSM2656510': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'NRAS', 'resistance': 'Resistant to MEK inhibitor Trametinib'}, 'GSM2656511': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'NRAS', 'resistance': 'Sensitive to MEK inhibitor Trametinib'}, 'GSM2719745': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'scrambled control'}, 'GSM2719744': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'scrambled control'}, 'GSM1563053': {'line': 'PC3', 'type': 'prostate cancerÂ\\xa0cell line', 'transfection': 'control'}, 'GSM2719746': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'ARID1B RNAi'}, 'GSM1563055': {'line': 'PC3', 'type': 'prostate cancerÂ\\xa0cell line', 'transfection': 'shCIC'}, 'GSM1563054': {'line': 'PC3', 'type': 'prostate cancerÂ\\xa0cell line', 'transfection': 'control'}, 'GSM1563056': {'line': 'PC3', 'type': 'prostate cancerÂ\\xa0cell line', 'transfection': 'shCIC'}, 'GSM2719741': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'scrambled control'}, 'GSM2719740': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'scrambled control'}, 'GSM2719743': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719742': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'ARID1B RNAi'}, 'GSM1917695': {'shRNA': 'shControl', 'type': 'Shep2'}, 'GSM1396750': {'lane': '8', 'librarybatch': 'B', 'replicate': '3', 'treatment': 'DMSO', 'time': '7 days', 'type': 'BAT', 'multiplex': '2'}, 'GSM1234089': {'replicate': '2', 'line': '19238', 'antibody': 'H3K4me1'}, 'GSM1930399': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1234087': {'replicate': '2', 'line': '19238', 'antibody': 'H3K36me3'}, 'GSM1930397': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1234085': {'replicate': '2', 'line': '19238', 'antibody': 'H3K27me3'}, 'GSM1234084': {'replicate': '1', 'line': '19238', 'antibody': 'H3K27me3'}, 'GSM1234083': {'replicate': '1.2', 'line': '19238', 'antibody': 'H3K27me3'}, 'GSM1234082': {'replicate': '3', 'line': '19238', 'antibody': 'H3K27Ac'}, 'GSM1234081': {'replicate': '2', 'line': '19238', 'antibody': 'H3K27Ac'}, 'GSM1234080': {'replicate': '1', 'line': '19238', 'antibody': 'H3K27Ac'}, 'GSM2771581': {'line': \"LREX'\", 'antibody': 'Abcam ab8580', 'treatment': 'Enz'}, 'GSM2771580': {'line': \"LREX'\", 'antibody': 'Abcam ab8580'}, 'GSM2771583': {'line': \"LREX'\", 'antibody': 'Millipore 07-449', 'treatment': 'Enz'}, 'GSM2771582': {'line': \"LNAR'\", 'antibody': 'Millipore 07-449'}, 'GSM2771585': {'line': \"LREX'\", 'antibody': 'Millipore 07-449', 'treatment': 'Enz'}, 'GSM2771584': {'line': \"LREX'\", 'antibody': 'Millipore 07-449'}, 'GSM2771587': {'line': \"LNAR'\"}, 'GSM2771586': {'line': \"LNAR'\"}, 'GSM2754553': {'bin': '7', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '03_0714', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754552': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1115', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754551': {'bin': '7', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '03_0711', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754550': {'bin': '7', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '03_0227', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM2754557': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0782', 'previousdiagnosisoftb': 'No', 'tst': '9.6', 'type': 'Tcells'}, 'GSM2754556': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0628', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754555': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0721', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754554': {'bin': '9', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0644', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1369066': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siCDK10'}, 'GSM1369067': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siDPPA5'}, 'GSM2454255': {'age': '9 week embryo', 'tissue': 'ventral midbrain'}, 'GSM2454254': {'age': '9 week embryo', 'tissue': 'ventral midbrain'}, 'GSM2454251': {'line': 'SVGp12 +NEUROD1+ASCL1+LMX1A+mir218'}, 'GSM2454250': {'line': 'SVGp12 +NEUROD1+ASCL1+LMX1A+mir218'}, 'GSM2454253': {'age': '7 week embryo', 'tissue': 'ventral midbrain'}, 'GSM2454252': {'age': '7 week embryo', 'tissue': 'ventral midbrain'}, 'GSM2840379': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840378': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840377': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840376': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840375': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840374': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840373': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840372': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840371': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840370': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2141931': {'line': 'MOLM-14', 'shRNAi': 'shMTHFD2'}, 'GSM3099450': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml + 1 μM JAK1 inhibitor in DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM2257524': {'line': 'MCF-7', 'transfection': 'siCTCF', 'treatment': '0h Estrogen'}, 'GSM2153035': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2257525': {'line': 'MCF-7', 'transfection': 'siNT', 'treatment': '3h Estrogen'}, 'GSM1551308': {'region': 'BA9, Brodmann area 9', 'tissue': 'frozen postmortem brain from NICHD'}, 'GSM1551309': {'region': 'BA40, Brodmann area 40', 'tissue': 'frozen postmortem brain from NICHD'}, 'GSM2153034': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2358328': {'code': 'TTCAGCTC', 'type': 'T-ALL PDX'}, 'GSM2358329': {'code': 'TCATTGAG', 'type': 'T-ALL PDX'}, 'GSM2747375': {'line': 'NHDF Line 2', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM2358323': {'code': 'TAAGTTCG', 'type': 'T-ALL PDX'}, 'GSM2358324': {'code': 'TCCAGTCG', 'type': 'T-ALL PDX'}, 'GSM2358325': {'code': 'TGTATGCG', 'type': 'T-ALL PDX'}, 'GSM2358326': {'code': 'TCAGATTC', 'type': 'T-ALL PDX'}, 'GSM2358327': {'code': 'TACTAGTC', 'type': 'T-ALL PDX'}, 'GSM480477': {'source': 'monomeric PTB-RNA complex', 'line': 'Hela', 'antibody': 'monoclonal anti-PTB antibody (BB7)'}, 'GSM480476': {'source': 'monomeric PTB-RNA complex', 'line': 'Hela', 'antibody': 'monoclonal anti-PTB antibody (BB7)'}, 'GSM2452280': {'line': 'K048', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM2452281': {'line': 'K048', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM2452282': {'line': 'K048', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM2452283': {'line': 'K048', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM2452284': {'line': 'K048', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM2452285': {'line': 'K048', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM2452286': {'line': 'K054', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM480478': {'source': 'dimeric PTB-RNA complex', 'line': 'Hela', 'antibody': 'monoclonal anti-PTB antibody (BB7)'}, 'GSM2454873': {'line': 'SW480', 'agent': 'control'}, 'GSM2454872': {'line': 'SW480', 'agent': 'control'}, 'GSM2454875': {'line': 'SW480', 'agent': '(R)-crizotinib'}, 'GSM2454874': {'line': 'SW480', 'agent': 'control'}, 'GSM2454877': {'line': 'SW480', 'agent': '(R)-crizotinib'}, 'GSM2454876': {'line': 'SW480', 'agent': '(R)-crizotinib'}, 'GSM2026919': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'P25490'}, 'GSM2026918': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q02446'}, 'GSM2088104': {'status': 'Dysplasia', 'ratio': '2.046301399', 'point': 't1', 'age': '61.963', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '80', 'alignments': '59165704', 'id': 'Patient_P9', 'alignment': '36033818'}, 'GSM2088105': {'status': 'Dysplasia', 'ratio': '1.79977204', 'point': 't2', 'age': '44.641', 'Sex': 'Male', 'content': '48.48', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '47', 'alignments': '68186838', 'id': 'Patient_P15', 'alignment': '41748658'}, 'GSM2088106': {'status': 'Normal', 'ratio': '1.978097926', 'point': 't1', 'age': '46.355', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '30', 'alignments': '69269274', 'id': 'Patient_P5', 'alignment': '42625379'}, 'GSM2088107': {'status': 'Dysplasia', 'ratio': '1.896500363', 'point': 't3', 'age': '56.342', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '34', 'alignments': '52828386', 'id': 'Patient_P25', 'alignment': '32230321'}, 'GSM2088100': {'status': 'Normal', 'ratio': '1.563864692', 'point': 't1', 'age': '64.57', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '106', 'alignments': '76279764', 'id': 'Patient_P24', 'alignment': '47531748'}, 'GSM2088101': {'status': 'Normal', 'ratio': '1.898705883', 'point': 't2', 'age': '49.378', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'years': '31', 'alignments': '60496692', 'id': 'Patient_P7', 'alignment': '36581618'}, 'GSM2088102': {'status': 'Dysplasia', 'ratio': '1.60299309', 'point': 't1', 'age': '65.252', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '53', 'alignments': '77430644', 'id': 'Patient_P31', 'alignment': '47873370'}, 'GSM2088103': {'status': 'Normal', 'ratio': '1.550354979', 'point': 't2', 'age': '56.342', 'Sex': 'Female', 'content': '50.51', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'years': '34', 'alignments': '49645410', 'id': 'Patient_P25', 'alignment': '30990726'}, 'GSM2585412': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585413': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585410': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585411': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2088108': {'status': 'Dysplasia', 'ratio': '1.637784362', 'point': 't2', 'age': '59.625', 'Sex': 'Female', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '47', 'alignments': '67888004', 'id': 'Patient_P29', 'alignment': '41776934'}, 'GSM2088109': {'status': 'Normal', 'ratio': '1.905406447', 'point': 't2', 'age': '62.489', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '60', 'alignments': '49020108', 'id': 'Patient_P16', 'alignment': '30044104'}, 'GSM2585414': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585415': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM1554638': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1548038': {'reagent': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1548039': {'reagent': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1345825': {'type': 'osteoblastic cell'}, 'GSM2242891': {'line': 'A375', 'replicate': '4'}, 'GSM1548037': {'reagent': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'Calu-3', 'type': 'lung adenocarcinoma', 'overexpression': 'knockdown'}, 'GSM1296256': {'type': 'ES-derived cardiomyocyte cells', 'genotype': 'NKX2-5(eGFP/w)'}, 'GSM1296257': {'type': 'ES-derived cardiomyocyte cells', 'genotype': 'NKX2-5(eGFP/w)'}, 'GSM2242896': {'line': 'A375', 'replicate': '4'}, 'GSM2107373': {'line': 'IMR5-75', 'type': 'neuroblastoma'}, 'GSM2107372': {'line': 'IMR5-75', 'type': 'neuroblastoma'}, 'GSM2374829': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374828': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2409679': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2398400': {'line': 'L3.6', 'type': 'SV40 large T antigen immortalized'}, 'GSM2543635': {'library_id': 'lib5752', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2374821': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374820': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2409677': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2374822': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374825': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374824': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2409673': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2175904': {'subtype': 'Central Memory T Cell (TCM)', 'age': '19 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Activated Latently Infected'}, 'GSM2242894': {'line': 'A375', 'replicate': '4'}, 'GSM2243525': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243524': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243527': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243526': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243521': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243520': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243523': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243522': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1345821': {'type': 'osteoblastic cell'}, 'GSM2243529': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243528': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2107374': {'line': 'IMR5-75', 'type': 'neuroblastoma'}, 'GSM2526846': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526847': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2175902': {'subtype': 'Central Memory T Cell (TCM)', 'age': '19 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Activated Uninfected'}, 'GSM2526844': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526845': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1432898': {'type': 'colon cancer', 'line': 'HT29', 'passages': 'Passages 12 -13', 'treated': 'Low miR23b Control'}, 'GSM2526843': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1643948': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2 for 45m'}, 'GSM1643949': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2 for 45m'}, 'GSM2865435': {'gender': 'female', 'age': '66-year-old', 'tissue': 'Bone', 'disease': 'normal'}, 'GSM2526840': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2865437': {'gender': 'female', 'age': '66-year-old', 'tissue': 'Bone', 'disease': 'normal'}, 'GSM2865436': {'gender': 'female', 'age': '72-year-old', 'tissue': 'Bone', 'disease': 'rheumatoid arthritis'}, 'GSM2865438': {'gender': 'female', 'age': '72-year-old', 'tissue': 'Bone', 'disease': 'rheumatoid arthritis'}, 'GSM2526841': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1643946': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643947': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM2674887': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'NIBSC 5', 'sex': 'Female'}, 'GSM2543631': {'library_id': 'lib5748', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2048429': {'subset': 'Xenograft', 'status': 'Early graft', 'variation': 'CSL -/-'}, 'GSM2048428': {'subset': 'Xenograft', 'status': 'Late graft', 'variation': 'CSL +/+'}, 'GSM2048427': {'subset': 'Xenograft', 'status': 'Late graft', 'variation': 'CSL +/+'}, 'GSM2048426': {'subset': 'Xenograft', 'status': 'Early graft', 'variation': 'CSL +/+'}, 'GSM2048425': {'subset': 'Xenograft', 'status': 'Early graft', 'variation': 'CSL +/+'}, 'GSM2511543': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2361546': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361547': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2543633': {'library_id': 'lib5750', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1502498': {'line': 'HEK293T', 'type': 'embryonic kidney cells', 'variation': 'wild type'}, 'GSM1502499': {'line': 'HEK293T', 'type': 'embryonic kidney cells', 'variation': 'wild type'}, 'GSM2811249': {'line': 'H9', 'point': '8 hours'}, 'GSM2811248': {'line': 'H9', 'point': '8 hours'}, 'GSM1920798': {'type': 'hematopoietic', 'diagnosis': 'Erdheim Chester Disease'}, 'GSM1920797': {'type': 'hematopoietic', 'diagnosis': 'Erdheim Chester Disease'}, 'GSM2361548': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2811247': {'line': 'H9', 'point': '0 hour (undifferentiated)'}, 'GSM2811246': {'line': 'H9', 'point': '0 hour (undifferentiated)'}, 'GSM1920793': {'type': 'hematopoietic', 'diagnosis': 'Juvenile Xanthogranuloma'}, 'GSM1920792': {'type': 'hematopoietic', 'diagnosis': 'Langerhans Cell Histiocytosis'}, 'GSM1920791': {'type': 'hematopoietic', 'diagnosis': 'Langerhans Cell Histiocytosis'}, 'GSM2361549': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM3096643': {'donor': 'A', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1hi'}, 'GSM3096645': {'donor': 'A', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}loKLRG1lo'}, 'GSM3096644': {'donor': 'A', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}loKLRG1hi'}, 'GSM3096647': {'donor': 'B', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1hi'}, 'GSM3096646': {'donor': 'A', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1lo'}, 'GSM3096649': {'donor': 'B', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1lo'}, 'GSM3096648': {'donor': 'B', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}loKLRG1hi'}, 'GSM2641090': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM1399206': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM2337914': {'line': 'HBE', 'construction': 'low-input direct library construction', 'amount': '10pg polyA+ mRNA'}, 'GSM2337915': {'line': 'A549', 'construction': 'low-input direct library construction', 'amount': '10pg polyA+ mRNA'}, 'GSM2337916': {'line': 'HBE', 'construction': 'smart-seq2 method', 'amount': '10pg polyA+ mRNA'}, 'GSM2455393': {'individual': 'DONOR 20', 'type': 'endothelial cell', 'treatment': 'DMSO', 'time': '0 minutes'}, 'GSM2455392': {'individual': 'DONOR 21', 'type': 'endothelial cell', 'treatment': 'FOXO1 INHIBITOR + VEGF', 'time': '30 minutes'}, 'GSM2455391': {'individual': 'DONOR 21', 'type': 'endothelial cell', 'treatment': 'FOXO1 INHIBITOR', 'time': '0 minutes'}, 'GSM2455390': {'individual': 'DONOR 21', 'type': 'endothelial cell', 'treatment': 'DMSO + VEGF', 'time': '30 minutes'}, 'GSM2455397': {'individual': 'DONOR 15', 'type': 'endothelial cell', 'treatment': 'DMSO', 'time': '0 minutes'}, 'GSM2455396': {'individual': 'DONOR 20', 'type': 'endothelial cell', 'treatment': 'FOXO1 INHIBITOR + VEGF', 'time': '30 minutes'}, 'GSM2455395': {'individual': 'DONOR 20', 'type': 'endothelial cell', 'treatment': 'FOXO1 INHIBITOR', 'time': '0 minutes'}, 'GSM2455394': {'individual': 'DONOR 20', 'type': 'endothelial cell', 'treatment': 'DMSO + VEGF', 'time': '30 minutes'}, 'GSM2455399': {'individual': 'DONOR 15', 'type': 'endothelial cell', 'treatment': 'FOXO1 INHIBITOR', 'time': '0 minutes'}, 'GSM2455398': {'individual': 'DONOR 15', 'type': 'endothelial cell', 'treatment': 'DMSO + VEGF', 'time': '30 minutes'}, 'GSM1399205': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM2170678': {'stage': 'Hepatic endoderm 2'}, 'GSM2170679': {'stage': 'Hepatic endoderm 2'}, 'GSM2107717': {'line': 'REH', 'treatment': 'non-targeting LNA GapmeR', 'time': '72h'}, 'GSM2107716': {'line': 'REH', 'treatment': 'medium', 'time': '72h'}, 'GSM2107715': {'line': '697', 'type': 'B-ALL'}, 'GSM2668088': {'transfection': 'untransfected', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM2170672': {'stage': 'Hepatic endoderm 2'}, 'GSM2170673': {'stage': 'Hepatic endoderm 2'}, 'GSM2107719': {'line': 'REH', 'treatment': 'lnc-TIMM21-5 LNA GapmeR2', 'time': '72h'}, 'GSM2107718': {'line': 'REH', 'treatment': 'lnc-TIMM21-5 LNA GapmeR1', 'time': '72h'}, 'GSM2170676': {'stage': 'Hepatic endoderm 2'}, 'GSM2170677': {'stage': 'Hepatic endoderm 2'}, 'GSM2200885': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM1399204': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM2075278': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '7', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM2075279': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '7', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM2075272': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-020207-2'}, 'GSM2075273': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM2075270': {'substrate': 'Microporous support', 'density': '80,000 cells/cm2', 'number': '0', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM2075271': {'substrate': 'Microporous support', 'density': '80,000 cells/cm2', 'number': '0', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM2075276': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM2075277': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-111109'}, 'GSM2075274': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM2075275': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM1965329': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965328': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2312175': {'culture': '12', 'line': 'DCX-'}, 'GSM2312174': {'culture': '12', 'line': 'DCX-'}, 'GSM2312173': {'culture': '12', 'line': 'DCX-'}, 'GSM2312172': {'culture': '12', 'line': 'DCX-'}, 'GSM2312171': {'culture': '12', 'line': 'DCX-'}, 'GSM2312170': {'culture': '12', 'line': 'DCX-'}, 'GSM1965321': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965320': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965323': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965322': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965325': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965324': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965327': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965326': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM3586728': {'origin': 'GCB', 'pfstt': '1470', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1472', 'cycles': '6', 'oscs': '0'}, 'GSM2151893': {'status': 'Undifferentiated', 'karyotype': 'd20q21.11'}, 'GSM2151892': {'status': 'Undifferentiated', 'karyotype': 'Trisomy 21'}, 'GSM3586720': {'origin': 'GCB', 'pfstt': '1380', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1380', 'cycles': '8', 'oscs': '0'}, 'GSM3586721': {'origin': 'GCB', 'pfstt': '1249', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1249', 'cycles': '8', 'oscs': '1'}, 'GSM3586722': {'origin': 'ABC', 'pfstt': '1231', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1231', 'cycles': '8', 'oscs': '0'}, 'GSM3586723': {'origin': 'ABC', 'pfstt': '587', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '639', 'cycles': '8', 'oscs': '1'}, 'GSM3586724': {'origin': 'UNCLASSIFIED', 'pfstt': '1219', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1219', 'cycles': '8', 'oscs': '0'}, 'GSM3586725': {'origin': 'ABC', 'pfstt': '449', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '756', 'cycles': '8', 'oscs': '1'}, 'GSM3586726': {'origin': 'GCB', 'pfstt': '897', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '998', 'cycles': '8', 'oscs': '0'}, 'GSM3586727': {'origin': 'GCB', 'pfstt': '1483', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1485', 'cycles': '6', 'oscs': '0'}, 'GSM1399202': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM3586577': {'origin': 'GCB', 'pfstt': '694', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1026', 'cycles': '6', 'oscs': '0'}, 'GSM1415909': {'cohort': 'healthy control'}, 'GSM1415908': {'cohort': 'healthy control'}, 'GSM1399201': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM2151899': {'status': 'Undifferentiated', 'karyotype': 'Diploid'}, 'GSM1415907': {'cohort': 'healthy control'}, 'GSM1415906': {'cohort': 'healthy control'}, 'GSM2627118': {'origin': 'small intestine', 'patient_id': '45', 'type': 'primary', 'tumor_id': 'YC80'}, 'GSM2151898': {'status': 'Undifferentiated', 'karyotype': 'Diploid'}, 'GSM2627112': {'origin': 'small intestine', 'patient_id': '39', 'type': 'primary', 'tumor_id': 'YC43'}, 'GSM2627113': {'origin': 'small intestine', 'patient_id': '40', 'type': 'primary', 'tumor_id': 'YC61'}, 'GSM2230833': {'line': 'A549', 'with': 'mock', 'point': '36 hours post infection'}, 'GSM2230832': {'line': 'A549', 'with': 'mock', 'point': '36 hours post infection'}, 'GSM2627116': {'origin': 'small intestine', 'patient_id': '43', 'type': 'primary', 'tumor_id': 'YC74'}, 'GSM2627117': {'origin': 'small intestine', 'patient_id': '44', 'type': 'primary', 'tumor_id': 'YC76'}, 'GSM2627114': {'origin': 'small intestine', 'patient_id': '41', 'type': 'primary', 'tumor_id': 'YC67'}, 'GSM2627115': {'origin': 'small intestine', 'patient_id': '42', 'type': 'primary', 'tumor_id': 'YC71'}, 'GSM1399200': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM2141438': {'individual': 'AF133', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141439': {'individual': 'AF133', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1700898': {'status': 'knock-down', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM1700899': {'status': 'knock-down', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM2141430': {'individual': 'AF127', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1700895': {'status': 'WT', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM1700896': {'status': 'WT', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM1700897': {'status': 'WT', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM2141434': {'individual': 'AF129', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141435': {'individual': 'AF131', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141436': {'individual': 'AF131', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141437': {'individual': 'AF131', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1579161': {'origin': 'xenograft tumours', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM2316508': {'culture': 'D19'}, 'GSM2316509': {'culture': 'D26'}, 'GSM485496': {'line': 'NA19160'}, 'GSM2316502': {'culture': 'D6'}, 'GSM2316503': {'culture': 'D9'}, 'GSM2316500': {'culture': 'D0'}, 'GSM2316501': {'culture': 'D0'}, 'GSM2316506': {'culture': 'D12'}, 'GSM2316507': {'culture': 'D19'}, 'GSM2082532': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2-/-'}, 'GSM2316505': {'culture': 'D12'}, 'GSM1246820': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246821': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246822': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246823': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246824': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246825': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM3383905': {'tissue': 'pancreas tumor', 'id': 'patient5', 'diagnosis': 'pancreatic cancer'}, 'GSM3383904': {'tissue': 'pancreas tumor', 'id': 'patient4', 'diagnosis': 'pancreatic cancer'}, 'GSM3383907': {'tissue': 'pancreas tumor', 'id': 'patient7', 'diagnosis': 'pancreatic cancer'}, 'GSM3383906': {'tissue': 'pancreas tumor', 'id': 'patient6', 'diagnosis': 'pancreatic cancer'}, 'GSM3383901': {'tissue': 'pancreas tumor', 'id': 'patient1', 'diagnosis': 'pancreatic cancer'}, 'GSM3383900': {'tissue': 'normal pancreas', 'id': 'patient10', 'diagnosis': 'pancreatic cancer'}, 'GSM3383903': {'tissue': 'pancreas tumor', 'id': 'patient3', 'diagnosis': 'pancreatic cancer'}, 'GSM3383902': {'tissue': 'pancreas tumor', 'id': 'patient2', 'diagnosis': 'pancreatic cancer'}, 'GSM1479532': {'index': '21', 'diagnosis': '--', 'cellcount': '601013', 'samplename': '54_NK', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '54', 'collectiondate': 'August 22 2012', 'celltype': 'NK', 'diseasestatus': 'ALS'}, 'GSM1479533': {'index': '12', 'diagnosis': '--', 'cellcount': '--', 'samplename': '54_Tempus', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '54', 'collectiondate': 'August 22 2012', 'celltype': 'Whole Blood', 'diseasestatus': 'ALS'}, 'GSM1479530': {'index': '25', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '54_CD4T', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '54', 'collectiondate': 'August 22 2012', 'celltype': 'CD4', 'diseasestatus': 'ALS'}, 'GSM1479531': {'index': '10', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '54_CD8T', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '54', 'collectiondate': 'August 22 2012', 'celltype': 'CD8', 'diseasestatus': 'ALS'}, 'GSM3383909': {'tissue': 'pancreas tumor', 'id': 'patient9', 'diagnosis': 'pancreatic cancer'}, 'GSM3383908': {'tissue': 'pancreas tumor', 'id': 'patient8', 'diagnosis': 'pancreatic cancer'}, 'GSM1479534': {'index': '1', 'diagnosis': '6', 'cellcount': '17550000', 'gender': 'M', 'age': '42', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '40', 'collectiondate': 'June 19 2012', 'samplename': '40_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479535': {'index': '2', 'diagnosis': '6', 'cellcount': '2000000', 'gender': 'M', 'age': '42', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '40', 'collectiondate': 'June 19 2012', 'samplename': '40_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1401649': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401648': {'tissue': 'Breast Cancer Cell Line'}, 'GSM2061449': {'protein': 'siRNA insensitive protein SKI2W', 'sirna': '#2_SKIV2L', 'line': 'HEK 293'}, 'GSM1226167': {'line': 'GM12878', 'type': 'rRNA depleted'}, 'GSM1226166': {'line': 'GM12878', 'type': 'rRNA depleted'}, 'GSM1226165': {'line': 'GM12878', 'type': 'rRNA depleted'}, 'GSM1226164': {'line': 'GM12878', 'type': 'rRNA depleted'}, 'GSM1226163': {'line': 'GM12878', 'type': 'rRNA depleted'}, 'GSM1226162': {'line': 'GM12892', 'type': 'polyA RNA'}, 'GSM1226161': {'line': 'GM12892', 'type': 'polyA RNA'}, 'GSM1226160': {'line': 'GM12891', 'type': 'polyA RNA'}, 'GSM2433020': {'line': 'D341', 'type': 'cell line'}, 'GSM1226168': {'line': 'GM12878', 'type': 'rRNA depleted'}, 'GSM2717592': {'status': 'ZIKV uninfected', 'environment': 'in vivo', 'tissue': 'peripheral blood'}, 'GSM2717593': {'status': 'ZIKV uninfected', 'environment': 'in vivo', 'tissue': 'peripheral blood'}, 'GSM2717590': {'status': 'ZIKV infected', 'environment': 'in vivo', 'tissue': 'peripheral blood'}, 'GSM2717591': {'status': 'ZIKV infected', 'environment': 'in vivo', 'tissue': 'peripheral blood'}, 'GSM2717596': {'status': 'ZIKV uninfected', 'environment': 'in vivo', 'tissue': 'peripheral blood'}, 'GSM2717597': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '6h'}, 'GSM2717594': {'status': 'ZIKV uninfected', 'environment': 'in vivo', 'tissue': 'peripheral blood'}, 'GSM2717595': {'status': 'ZIKV uninfected', 'environment': 'in vivo', 'tissue': 'peripheral blood'}, 'GSM2717598': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '6h'}, 'GSM554076': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM1838405': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'none'}, 'GSM1838407': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'none'}, 'GSM1838406': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'none'}, 'GSM1838409': {'line': 'K562', 'gene': 'dCas9', 'target': 'globin HS2 enhancer'}, 'GSM1838408': {'line': 'K562', 'gene': 'dCas9', 'target': 'globin HS2 enhancer'}, 'GSM2687240': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2311888': {'culture': '12', 'line': 'DCX+'}, 'GSM2311889': {'culture': '12', 'line': 'DCX+'}, 'GSM2687241': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2311882': {'culture': '12', 'line': 'DCX+'}, 'GSM2311883': {'culture': '12', 'line': 'DCX+'}, 'GSM2311880': {'culture': '12', 'line': 'DCX+'}, 'GSM2311881': {'culture': '12', 'line': 'DCX+'}, 'GSM2311886': {'culture': '12', 'line': 'DCX+'}, 'GSM2311887': {'culture': '12', 'line': 'DCX+'}, 'GSM2311884': {'culture': '12', 'line': 'DCX+'}, 'GSM2311885': {'culture': '12', 'line': 'DCX+'}, 'GSM2120810': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '4 h'}, 'GSM2120817': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '14 d'}, 'GSM2120816': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '14 d'}, 'GSM2687246': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM1646997': {'illumina_index': '7', 'point': '18', 'batch': '4', 'agent': 'Rv', 'rin': '9.3', 'individual': 'M373'}, 'GSM2687247': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM1613608': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2653588': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653589': {'duration': '10 weeks', 'strain': 'nude mice', 'line': 'PC-3', 'type': 'Human prostate cancer cell line'}, 'GSM1646990': {'illumina_index': '16', 'point': '18', 'batch': '3', 'agent': 'Staph', 'rin': '6.3', 'individual': 'M373'}, 'GSM2653583': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653580': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653581': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653586': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653587': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653584': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653585': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM1940198': {'vendor': 'Santa Cruz Biotech', 'antibody': 'rabbit anti-PU.1', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'line': 'K562', 'with': '1 μM SAHA'}, 'GSM1709570': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709571': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709572': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'no EGF + DMSO'}, 'GSM1709573': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'no EGF + DMSO'}, 'GSM1709574': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'no EGF + DMSO'}, 'GSM1709575': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1535678': {'line': 'HCT116', 'passages': '44', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535679': {'line': 'HCT116', 'passages': '44', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1709578': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709579': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1535675': {'line': 'HCT116', 'passages': '44', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1707510': {'tissue': 'Colorectal cancer PDX', 'condition': 'Vehicle'}, 'GSM2392722': {'type': 'Induced pluripotent stem cell'}, 'GSM1904489': {'type': 'HFF cells', 'infection': 'HCMV (strain TB40E)', 'time': '48h'}, 'GSM1904488': {'type': 'HFF cells', 'infection': 'mock', 'time': '48h'}, 'GSM2309313': {'tissue': 'human breast adenocarcinoma', 'type': 'wild-type MCF-7 cells'}, 'GSM1646992': {'illumina_index': '19', 'point': '4', 'batch': '3', 'agent': 'GC', 'rin': '8.8', 'individual': 'M376'}, 'GSM2309315': {'tissue': 'human breast adenocarcinoma', 'type': 'U2AF65-knockdown MCF-7 cells'}, 'GSM2309314': {'tissue': 'human breast adenocarcinoma', 'type': 'RBM39-knockdown MCF-7 cells'}, 'GSM2225774': {'tissue': 'pancreas'}, 'GSM2225775': {'tissue': 'pancreas'}, 'GSM2225776': {'tissue': 'pancreas'}, 'GSM2225777': {'tissue': 'pancreas'}, 'GSM2225770': {'tissue': 'pancreas'}, 'GSM2225771': {'tissue': 'pancreas'}, 'GSM1624228': {'lineage': 'Epiblast', 'number': 'Embryo 3', 'stage': 'Blastocyst'}, 'GSM1624229': {'lineage': 'Trophectoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM1624226': {'lineage': 'Trophectoderm', 'number': 'Embryo 3', 'stage': 'Blastocyst'}, 'GSM1624227': {'lineage': 'Trophectoderm', 'number': 'Embryo 3', 'stage': 'Blastocyst'}, 'GSM1624224': {'lineage': 'Trophectoderm', 'number': 'Embryo 3', 'stage': 'Blastocyst'}, 'GSM1624225': {'lineage': 'Trophectoderm', 'number': 'Embryo 3', 'stage': 'Blastocyst'}, 'GSM1624222': {'lineage': 'Trophectoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM1624223': {'lineage': 'Trophectoderm', 'number': 'Embryo 3', 'stage': 'Blastocyst'}, 'GSM1646993': {'illumina_index': '2', 'point': '48', 'batch': '4', 'agent': 'GC', 'rin': '9.3', 'individual': 'M377'}, 'GSM2392720': {'type': 'Induced pluripotent stem cell'}, 'GSM1876028': {'treatment': 'PDGF-DD'}, 'GSM2402796': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2392721': {'type': 'Induced pluripotent stem cell'}, 'GSM2696591': {'status': '2+', 'grade': '2', 'age': '74', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '.8'}, 'GSM2304590': {'type': 'HUVEC', 'treatment': 'non-treated'}, 'GSM2471069': {'status': 'HIV', 'donorid': 'BC043', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2350110': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2471063': {'status': 'Healthy', 'donorid': 'BC043', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471062': {'status': 'Healthy', 'donorid': 'BC043', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471061': {'status': 'Healthy', 'donorid': 'BC043', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471067': {'status': 'HIV', 'donorid': 'BC043', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2471066': {'status': 'Healthy', 'donorid': 'BC044', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471065': {'status': 'Healthy', 'donorid': 'BC044', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471064': {'status': 'Healthy', 'donorid': 'BC044', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2042902': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '24hr'}, 'GSM2042903': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042900': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042901': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '24hr'}, 'GSM2042906': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '24hr'}, 'GSM2042907': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM2042904': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042905': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '24hr'}, 'GSM2042908': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM2042909': {'antibody': 'anti-H3K36me3 (Abcam, ab9050)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2392727': {'type': 'Induced pluripotent stem cell'}, 'GSM2212232': {'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2476758': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476759': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476750': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476751': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476752': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476753': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476754': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476755': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476756': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476757': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2392724': {'type': 'Induced pluripotent stem cell'}, 'GSM2058109': {'line': 'V410', 'tissue': 'colorectal cancer cell line'}, 'GSM2058108': {'line': 'V389', 'tissue': 'colorectal cancer cell line'}, 'GSM2058101': {'line': 'V1009', 'tissue': 'colorectal cancer cell line'}, 'GSM2058100': {'line': 'SW480', 'tissue': 'colorectal cancer cell line'}, 'GSM2058103': {'line': 'V1051', 'tissue': 'colorectal cancer cell line'}, 'GSM2058102': {'line': 'V1024', 'tissue': 'colorectal cancer cell line'}, 'GSM2058105': {'line': 'V1074', 'tissue': 'colorectal cancer cell line'}, 'GSM2058104': {'line': 'V1058', 'tissue': 'colorectal cancer cell line'}, 'GSM2058107': {'line': 'V206', 'tissue': 'colorectal cancer cell line'}, 'GSM2058106': {'line': 'V1106', 'tissue': 'colorectal cancer cell line'}, 'GSM2392725': {'type': 'Induced pluripotent stem cell'}, 'GSM3189279': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A29', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.727697', 'percentaligned': '0.95013026', 'Sex': 'F', 'nl63': 'No', 'libcounts': '13.570466', 'original': 'Control'}, 'GSM3189278': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-Cpat24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.81807', 'percentaligned': '0.920616907', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.853673', 'original': 'Case'}, 'GSM3189273': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.687766', 'percentaligned': '0.930012833', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.71052', 'original': 'Case'}, 'GSM3189272': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '63', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.878525', 'percentaligned': '0.901121479', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.952471', 'original': 'Control'}, 'GSM3189271': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '42', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.882162', 'percentaligned': '0.896023894', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.323694', 'original': 'Control'}, 'GSM3189270': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '25', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.651464', 'percentaligned': '0.947117138', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.492946', 'original': 'Case'}, 'GSM3189277': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '49', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.699017', 'percentaligned': '0.800682137', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.504162'}, 'GSM3189276': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.594452', 'percentaligned': '0.949364193', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.955953', 'original': 'Control'}, 'GSM3189275': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.620331', 'percentaligned': '0.930953535', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.100427', 'original': 'Control'}, 'GSM3189274': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '19', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.633923', 'percentaligned': '0.892566211', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.610002', 'original': 'Case'}, 'GSM1363523': {'grade': '0', 'alb': '40.5', 'tb': '34.5', 'individual': 'HCC-C11', 'alt': '27', 'pt': '12.4', 'hbvdna': '<1000', 'ca199': '51.8', 'hgb': '137', 'method': '0', 'ggt': '75.8', 'cea': '2.6', 'ast': '34', 'rna': 'Yes', 'db': '10.3', 'cirrhosis': '0', 'afp': '5.4', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '62', 'ltx': 'A3', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '12.01'}, 'GSM1363522': {'grade': 'NA', 'alb': '39.3', 'tb': '22.2', 'individual': 'HCC8', 'alt': '87', 'pt': '12.1', 'hbvdna': '<500', 'ca199': '44.8', 'hgb': '139', 'method': 'RFA', 'ggt': '380.2', 'cea': '1.85', 'ast': '65', 'rna': 'Yes', 'db': '5.8', 'cirrhosis': 'NA', 'afp': '>3000', 'hbsag': '>250ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '42', 'ltx': 'B', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.1'}, 'GSM1363521': {'grade': 'NA', 'alb': '39.3', 'tb': '22.2', 'individual': 'HCC8', 'alt': '87', 'pt': '12.1', 'hbvdna': '<500', 'ca199': '44.8', 'hgb': '139', 'method': 'RFA', 'ggt': '380.2', 'cea': '1.85', 'ast': '65', 'rna': 'Yes', 'db': '5.8', 'cirrhosis': 'NA', 'afp': '>3000', 'hbsag': '>250ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '42', 'ltx': 'B', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.1'}, 'GSM1363520': {'grade': '#N/A', 'alb': '#N/A', 'tb': '#N/A', 'individual': 'HCC7', 'alt': '#N/A', 'pt': '#N/A', 'hbvdna': '#N/A', 'ca199': '#N/A', 'hgb': '#N/A', 'method': '#N/A', 'ggt': '#N/A', 'cea': '#N/A', 'ast': '#N/A', 'rna': '#N/A', 'db': '#N/A', 'cirrhosis': '#N/A', 'afp': '#N/A', 'hbsag': '#N/A', 'organ': '#N/A', 'gender': 'not collected', 'age': '#N/A', 'ltx': '#N/A', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '#N/A'}, 'GSM1363527': {'grade': '0', 'alb': '25.8', 'tb': '22.1', 'individual': 'HCC-C13', 'alt': '26', 'pt': '12.1', 'hbvdna': '<500', 'ca199': '21.5', 'hgb': '130', 'method': '0', 'ggt': '55', 'cea': '1.97', 'ast': '38', 'rna': 'Yes', 'db': '3.5', 'cirrhosis': '0', 'afp': '4.3', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '49', 'ltx': 'C', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.19'}, 'GSM1363526': {'grade': '0', 'alb': '43.5', 'tb': '12.7', 'individual': 'HCC-C12', 'alt': '38', 'pt': '11.2', 'hbvdna': '110000', 'ca199': '21.3', 'hgb': '150', 'method': '0', 'ggt': '47.3', 'cea': '1.85', 'ast': '19', 'rna': 'Yes', 'db': '4', 'cirrhosis': '0', 'afp': '210.8', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '40', 'ltx': 'A2', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': 'NA'}, 'GSM1363525': {'grade': '0', 'alb': '43.5', 'tb': '12.7', 'individual': 'HCC-C12', 'alt': '38', 'pt': '11.2', 'hbvdna': '110000', 'ca199': '21.3', 'hgb': '150', 'method': '0', 'ggt': '47.3', 'cea': '1.85', 'ast': '19', 'rna': 'Yes', 'db': '4', 'cirrhosis': '0', 'afp': '210.8', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '40', 'ltx': 'A2', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': 'NA'}, 'GSM1363524': {'grade': '0', 'alb': '40.5', 'tb': '34.5', 'individual': 'HCC-C11', 'alt': '27', 'pt': '12.4', 'hbvdna': '<1000', 'ca199': '51.8', 'hgb': '137', 'method': '0', 'ggt': '75.8', 'cea': '2.6', 'ast': '34', 'rna': 'Yes', 'db': '10.3', 'cirrhosis': '0', 'afp': '5.4', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '62', 'ltx': 'A3', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '12.01'}, 'GSM1126812': {'type': 'tumor cells', 'library': 'polyA RNA'}, 'GSM1126813': {'type': 'tumor cells', 'library': 'nucleus RNA'}, 'GSM1126810': {'type': 'tumor cells', 'library': '4sU RNA'}, 'GSM1126811': {'type': 'tumor cells', 'library': 'polyA RNA'}, 'GSM1126816': {'type': 'tumor cells', 'library': 'cyto RNA'}, 'GSM1126814': {'type': 'tumor cells', 'library': 'nucleus RNA'}, 'GSM1126815': {'type': 'tumor cells', 'library': 'cyto RNA'}, 'GSM2424739': {'type': 'Splenic mononuclar cells', 'agent': 'HIV-1 infected', 'point': '6 weeks post-infection'}, 'GSM2424738': {'type': 'Splenic mononuclar cells', 'agent': 'HIV-1 infected', 'point': '6 weeks post-infection'}, 'GSM2424735': {'type': 'Splenic mononuclar cells', 'agent': 'Mock infected', 'point': '6 weeks post-infection'}, 'GSM2424734': {'type': 'Splenic mononuclar cells', 'agent': 'Mock infected', 'point': '6 weeks post-infection'}, 'GSM2424737': {'type': 'Splenic mononuclar cells', 'agent': 'HIV-1 infected', 'point': '6 weeks post-infection'}, 'GSM2424736': {'type': 'Splenic mononuclar cells', 'agent': 'Mock infected', 'point': '6 weeks post-infection'}, 'GSM2424733': {'type': 'Splenic mononuclar cells', 'agent': 'Mock infected', 'point': '6 weeks post-infection'}, 'GSM2425062': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425063': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425060': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425061': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425066': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425067': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425064': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425065': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2305841': {'tissue': 'colon'}, 'GSM2425068': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425069': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2579305': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2175095': {'line': 'K562'}, 'GSM2175094': {'line': 'K562'}, 'GSM1808718': {'line': 'Hep3B-C'}, 'GSM2175096': {'line': 'K562'}, 'GSM2175091': {'line': 'K562'}, 'GSM2175090': {'line': 'K562'}, 'GSM2175093': {'line': 'K562'}, 'GSM2175092': {'line': 'K562'}, 'GSM1808716': {'line': 'Hep3B'}, 'GSM1808717': {'line': 'Huh7'}, 'GSM1357249': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357248': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357241': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357240': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357243': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM2915414': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915413': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915412': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915411': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915410': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM1603012': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603013': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1494409': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shLNC-277'}, 'GSM1494408': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shLNC-277'}, 'GSM1603016': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603017': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603014': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603015': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603018': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603019': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1494407': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shLNC-277'}, 'GSM1494406': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shLNC-277'}, 'GSM1494405': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shLNC-277'}, 'GSM1494404': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shLNC-277'}, 'GSM2932934': {'pucai': '15', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '13'}, 'GSM1618319': {'conditions': 'TH17', 'type': 'peripheral blood mononuclear', 'fraction': 'Total RNA'}, 'GSM1618318': {'conditions': 'TH2', 'type': 'peripheral blood mononuclear', 'fraction': 'Total RNA'}, 'GSM1618315': {'conditions': 'TH2', 'type': 'peripheral blood mononuclear', 'fraction': 'polyA+ RNA'}, 'GSM1618314': {'conditions': 'TH1', 'type': 'peripheral blood mononuclear', 'fraction': 'polyA+ RNA'}, 'GSM1618317': {'conditions': 'TH1', 'type': 'peripheral blood mononuclear', 'fraction': 'Total RNA'}, 'GSM1618316': {'conditions': 'TH17', 'type': 'peripheral blood mononuclear', 'fraction': 'polyA+ RNA'}, 'GSM1618311': {'conditions': 'TH1', 'type': 'peripheral blood mononuclear', 'fraction': 'polyA+ RNA'}, 'GSM1618313': {'conditions': 'TH17', 'type': 'peripheral blood mononuclear', 'fraction': 'polyA+ RNA'}, 'GSM1618312': {'conditions': 'TH2', 'type': 'peripheral blood mononuclear', 'fraction': 'polyA+ RNA'}, 'GSM2932931': {'pucai': '55', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM2689389': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689388': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689387': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689386': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689385': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689384': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689383': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689382': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689381': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689380': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2932939': {'pucai': '40', 'score': '0', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2932938': {'pucai': '25', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '10'}, 'GSM2026986': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P36508'}, 'GSM2130412': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2047422': {'well': 'A03', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047423': {'well': 'A04', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047420': {'well': 'A01', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047421': {'well': 'A02', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047426': {'well': 'A07', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047427': {'well': 'A08', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047424': {'well': 'A05', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047425': {'well': 'A06', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047428': {'well': 'A09', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047429': {'well': 'A10', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2738128': {'line': 'DEV'}, 'GSM2738129': {'line': 'G401'}, 'GSM2242908': {'line': 'A375', 'replicate': '4'}, 'GSM2242909': {'line': 'A375', 'replicate': '4'}, 'GSM2242900': {'line': 'A375', 'replicate': '4'}, 'GSM2242901': {'line': 'A375', 'replicate': '4'}, 'GSM2242902': {'line': 'A375', 'replicate': '4'}, 'GSM2242903': {'line': 'A375', 'replicate': '4'}, 'GSM2242904': {'line': 'A375', 'replicate': '4'}, 'GSM2242905': {'line': 'A375', 'replicate': '4'}, 'GSM2242906': {'line': 'A375', 'replicate': '4'}, 'GSM2242907': {'line': 'A375', 'replicate': '4'}, 'GSM1836618': {'expression_construct': 'FLAG-TOE1A103T', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'A103 addback - siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836619': {'expression_construct': 'FLAG-TOE1F148Y', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'F148 addback- siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836616': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836617': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836614': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U1'}, 'GSM1836615': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836612': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836613': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836610': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836611': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1940194': {'vendor': 'Santa Cruz Biotech', 'antibody': 'rabbit anti-PU.1', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'line': 'K562', 'with': '0.01% DMSO vehicle'}, 'GSM2840498': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840499': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840496': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840497': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840494': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840495': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840492': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840493': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840490': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840491': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2266032': {'type': 'hPGC like cell derived from human embryonic stem cell'}, 'GSM2266030': {'type': 'hPGC like cell derived from human embryonic stem cell'}, 'GSM2266031': {'type': 'hPGC like cell derived from human embryonic stem cell'}, 'GSM1234012': {'replicate': '1', 'line': '18526', 'antibody': 'H3K27Ac'}, 'GSM1234015': {'replicate': '2', 'line': '18526', 'antibody': 'H3K27me3'}, 'GSM1520919': {'vendor': 'Santa Cruz', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'PAF1 knockdown', 'treatment': 'pMY136 (PAF1 shRNA #1)', 'line': 'THP1', 'antibody': 'Pol II'}, 'GSM1520918': {'vendor': 'Santa Cruz', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'vector control', 'treatment': 'pMY56 (control)', 'line': 'THP1', 'antibody': 'Pol II'}, 'GSM2455409': {'individual': 'DONOR 1', 'type': 'endothelial cell', 'treatment': 'DMSO', 'time': '0 minutes'}, 'GSM2455408': {'individual': 'DONOR 2', 'type': 'endothelial cell', 'treatment': 'DMSO + VEGF', 'time': '30 minutes'}, 'GSM1579179': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579178': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM2455403': {'individual': 'DONOR 37', 'type': 'endothelial cell', 'treatment': 'FOXO1 INHIBITOR', 'time': '0 minutes'}, 'GSM2455402': {'individual': 'DONOR 37', 'type': 'endothelial cell', 'treatment': 'DMSO + VEGF', 'time': '30 minutes'}, 'GSM1520913': {'vendor': 'Santa Cruz', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)', 'treatment': 'Flavopiridol', 'line': 'THP1', 'antibody': 'Pol II'}, 'GSM1520912': {'vendor': 'Santa Cruz', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)', 'treatment': 'DMSO', 'line': 'THP1', 'antibody': 'Pol II'}, 'GSM1520915': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)', 'treatment': 'Flavopiridol', 'line': 'THP1', 'antibody': 'LEO1'}, 'GSM1520914': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)', 'treatment': 'DMSO', 'line': 'THP1', 'antibody': 'LEO1'}, 'GSM1520917': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'PAF1 knockdown', 'treatment': 'pMY136 (PAF1 shRNA #1)', 'line': 'THP1', 'antibody': 'PAF1'}, 'GSM1520916': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'vector control', 'treatment': 'pMY56 (control)', 'line': 'THP1', 'antibody': 'PAF1'}, 'GSM1945936': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18501', 'for': '30min'}, 'GSM2840238': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840239': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1945937': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18501', 'for': '60min'}, 'GSM2840232': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840233': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840230': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840231': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840236': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840237': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840234': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840235': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2536072': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10664', 'samplename': '1_T1D2-REDRAW _C56', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34764', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10664', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C56'}, 'GSM2536073': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10665', 'samplename': '1_T1D2-REDRAW _C62', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34765', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10665', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C62'}, 'GSM2536070': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10662', 'samplename': '1D_T1D2-REDRAW _C87', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34762', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10662', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C87'}, 'GSM2536071': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10663', 'samplename': '1_T1D2-REDRAW _C50', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34763', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10663', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C50'}, 'GSM2536076': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10668', 'samplename': '1_T1D2-REDRAW _C51', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34768', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10668', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C51'}, 'GSM2536077': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10669', 'samplename': '1_T1D2-REDRAW _C63', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34769', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10669', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C63'}, 'GSM2536074': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10666', 'samplename': '1D_T1D2-REDRAW _C80', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34766', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10666', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C80'}, 'GSM2536075': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10667', 'samplename': '1D_T1D2-REDRAW _C92', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34767', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10667', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C92'}, 'GSM1945932': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18499', 'for': '60min'}, 'GSM2536078': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10670', 'samplename': '1D_T1D2-REDRAW _C79', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34770', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10670', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C79'}, 'GSM2536079': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10672', 'samplename': '1D_T1D2-REDRAW _C91', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34772', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10672', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C91'}, 'GSM1945933': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18499', 'for': '60min'}, 'GSM1945930': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18499', 'for': '30min'}, 'GSM2575351': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'Drug'}, 'GSM2565080': {'construction': 'PLATE-Seq', 'drug': 'Ixazomib (MLN2238)'}, 'GSM2307128': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2665802': {'age': 'Day 175', 'well': 'C5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665803': {'age': 'Day 175', 'well': 'C8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665800': {'age': 'Day 175', 'well': 'B8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665801': {'age': 'Day 175', 'well': 'A5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665806': {'age': 'Day 175', 'well': 'B5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM1945938': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18501', 'for': '60min'}, 'GSM2665804': {'age': 'Day 175', 'well': 'G4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665805': {'age': 'Day 175', 'well': 'F7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665808': {'age': 'Day 175', 'well': 'H6', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM1945939': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18501', 'for': '60min'}, 'GSM2712700': {'condition': 'TB'}, 'GSM2712701': {'condition': 'TB'}, 'GSM2712702': {'condition': 'TB'}, 'GSM2712703': {'condition': 'TB'}, 'GSM2712704': {'condition': 'latent TB infection'}, 'GSM2712705': {'condition': 'latent TB infection'}, 'GSM2712706': {'condition': 'latent TB infection'}, 'GSM2712707': {'condition': 'latent TB infection'}, 'GSM2712708': {'condition': 'latent TB infection'}, 'GSM2712709': {'condition': 'latent TB infection'}, 'GSM2231443': {'type': 'Adipose-derived Mesenchymal Stromal Cell'}, 'GSM2231442': {'type': 'Adipose-derived Mesenchymal Stromal Cell'}, 'GSM2055803': {'tissue': 'Clear cell carcinoma'}, 'GSM2070051': {'source': 'primary HCC tissue', 'type': 'HCC'}, 'GSM2070050': {'source': 'cell line', 'type': 'HCC'}, 'GSM2070053': {'source': 'cell line', 'type': 'HCC'}, 'GSM2070052': {'source': 'PDC', 'type': 'HCC'}, 'GSM2501476': {'time': '72h', 'treatment': 'TCR (anti-CD3/anti-CD28/IL-2)', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2055800': {'tissue': 'Colorectal cancer'}, 'GSM2171213': {'tissue': 'bone marrow', 'markers': 'CD19- CD138+'}, 'GSM1097885': {'type': 'CD34+ cells', 'antibody': 'LMO2 (R&D, AF2726), VHX0111051'}, 'GSM2171212': {'tissue': 'bone marrow', 'markers': 'CD19- CD138+'}, 'GSM2307127': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2166335': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2055804': {'tissue': 'Prostate cancer'}, 'GSM2166336': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166337': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM987847': {'donor': 'pancreatic cancer patient 19', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM2166331': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166332': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166333': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2130411': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2750944': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2544238': {'antibody': 'anti-H3K27ac (abcam ab4729)', 'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2303210': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACIW009'}, 'GSM2303211': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303212': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACIW009'}, 'GSM2303213': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303214': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303215': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACIW009'}, 'GSM2303216': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACIW009'}, 'GSM2303217': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303218': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2303219': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM1527073': {'line': 'Dermal Fibroblast from Coriell Institute (GM03348)', 'gene': 'Wild type mouse MyoD', 'replicate': '1'}, 'GSM2543959': {'library_id': 'lib8241', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1527077': {'line': 'Dermal Fibroblast from Coriell Institute (GM03348)', 'gene': 'VP64 mouse MyoD fusion', 'replicate': '2'}, 'GSM1527076': {'line': 'Dermal Fibroblast from Coriell Institute (GM03348)', 'gene': 'Wild type mouse MyoD', 'replicate': '2'}, 'GSM1527075': {'line': 'Dermal Fibroblast from Coriell Institute (GM03348)', 'gene': 'None', 'replicate': '2'}, 'GSM1527074': {'line': 'Dermal Fibroblast from Coriell Institute (GM03348)', 'gene': 'VP64 mouse MyoD fusion', 'replicate': '1'}, 'GSM987842': {'donor': 'pancreatic cancer patient 12', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM1824135': {'status': 'adenocarcinoma', 'host': 'mouse', 'tissue': 'lung'}, 'GSM1824136': {'status': 'normal', 'tissue': 'lung'}, 'GSM545206': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'IGF2BP1', 'recovered': '75 kDa'}, 'GSM545207': {'vendor': 'Sigma', 'wavelength': '6-SG/ 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'IGF2BP1', 'recovered': '75 kDa'}, 'GSM545208': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'IGF2BP2', 'recovered': '75 kDa'}, 'GSM545209': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'IGF2BP3', 'recovered': '75 kDa'}, 'GSM987843': {'donor': 'pancreatic cancer patient 16', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM1389736': {'tissue': 'adipose', 'phenotype': 'acromegaly'}, 'GSM2543951': {'library_id': 'lib8225', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1389734': {'tissue': 'adipose', 'phenotype': 'acromegaly'}, 'GSM1389735': {'tissue': 'adipose', 'phenotype': 'acromegaly'}, 'GSM1389732': {'tissue': 'adipose', 'phenotype': 'acromegaly'}, 'GSM1389733': {'tissue': 'adipose', 'phenotype': 'acromegaly'}, 'GSM1389730': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM2543950': {'library_id': 'lib8224', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2458938': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '7.67'}, 'GSM2458939': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.92'}, 'GSM1495942': {'line': 'SF210', 'vector': 'GFP', 'induction': 'doxycycline'}, 'GSM2543953': {'library_id': 'lib8229', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2159747': {'treatment': 'Activin A + Wnt3a 24h'}, 'GSM2159746': {'treatment': 'Wnt3a 24h'}, 'GSM2159745': {'treatment': 'Activin A 24h'}, 'GSM2543952': {'library_id': 'lib8228', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2159743': {'treatment': 'Wnt3a 6h'}, 'GSM2159742': {'treatment': 'Activin A 6h'}, 'GSM2159741': {'treatment': 'None'}, 'GSM2543955': {'library_id': 'lib8235', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.11', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2159749': {'antibody': 'H3K4me3', 'treatment': 'None'}, 'GSM2543954': {'library_id': 'lib8234', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.11', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2147915': {'patient': 'P509', 'age': '18', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147914': {'patient': 'P509', 'age': '18', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147917': {'patient': 'P510', 'age': '51', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147916': {'patient': 'P427', 'age': '30', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147911': {'patient': 'P508', 'age': '26', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2543957': {'library_id': 'lib8239', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2147913': {'patient': 'P508', 'age': '26', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147912': {'patient': 'P508', 'age': '26', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2543956': {'library_id': 'lib8238', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2147919': {'patient': 'P511', 'age': '38', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147918': {'patient': 'P510', 'age': '51', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2586167': {'line': 'U251', 'tissue': 'Brain Tumor', 'genotype': 'DLST R224A/K226E mutant'}, 'GSM2586166': {'line': 'U251', 'tissue': 'Brain Tumor', 'genotype': 'wild type DLST'}, 'GSM2586165': {'line': 'U251', 'tissue': 'Brain Tumor', 'genotype': 'Gcn5 Y645A mutant'}, 'GSM2586164': {'line': 'U251', 'tissue': 'Brain Tumor', 'genotype': 'wild type Gcn5'}, 'GSM2664386': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664387': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664384': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664385': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664388': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664389': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1333069': {'type': 'monocyte-derived macrophages'}, 'GSM1333068': {'type': 'monocyte-derived macrophages'}, 'GSM2750941': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2144462': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144463': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144464': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144465': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2747490': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': '5uM GW4066'}, 'GSM2144467': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144468': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144469': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2204162': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204163': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM1892621': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892620': {'tissue': 'FFPE'}, 'GSM2816079': {'line': 'H9'}, 'GSM1892622': {'tissue': 'FFPE'}, 'GSM1892625': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892624': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892627': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892626': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2816073': {'line': 'H9'}, 'GSM2816072': {'line': 'H9'}, 'GSM2816071': {'line': 'H9'}, 'GSM2816070': {'line': 'H9'}, 'GSM2816077': {'line': 'H9'}, 'GSM2816076': {'line': 'H9'}, 'GSM2309485': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'CYT387', 'dose': '30 uM'}, 'GSM2816074': {'line': 'H9'}, 'GSM2204168': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204169': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM987849': {'donor': 'pancreatic cancer patient 20', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM2620915': {'1': 'AGAGTAGA', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'C6', 'volume': '30uL', 'ul': '50.09', 's': 'S504', 'treatment': 'IA, followed by LPS', 'donor': '406', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'TCTACTCT'}, 'GSM2620913': {'1': 'AGAGTAGA', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'C5', 'volume': '30uL', 'ul': '32.82', 's': 'S504', 'treatment': 'IA, followed by LPS', 'donor': '406', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'TCTACTCT'}, 'GSM2620911': {'1': 'AGAGTAGA', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'C4', 'volume': '30uL', 'ul': '45.66', 's': 'S504', 'treatment': 'IA, followed by LPS', 'donor': '406', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'TCTACTCT'}, 'GSM1533223': {'enrichment': 'SSEA3-', 'treatment': 'DOX days 0-10'}, 'GSM1533222': {'treatment': 'DOX days 0-10'}, 'GSM2413472': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413473': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1616928': {'classification': 'A1L2B1', 'disease_stage': 'B1/non-strictuing, non-penetrating', 'age': '20', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616929': {'classification': 'A2L3B3', 'disease_stage': 'B3/penetrating', 'age': '31', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616924': {'classification': 'A2L2B2p', 'disease_stage': 'B2/stricturing', 'age': '37', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1533227': {'enrichment': 'SSEA3-', 'treatment': 'DOX days 0-14'}, 'GSM1616926': {'classification': 'A2L3B3', 'disease_stage': 'B3/penetrating', 'age': '34', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616927': {'classification': 'A2L3B1', 'disease_stage': 'B1/non-strictuing, non-penetrating', 'age': '25', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616920': {'classification': 'A2L2B1', 'disease_stage': 'B1/non-strictuing, non-penetrating', 'age': '56', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616921': {'classification': 'A2L2B3p', 'disease_stage': 'B3/penetrating', 'age': '43', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616922': {'classification': 'A2L2B1', 'disease_stage': 'B1/non-strictuing, non-penetrating', 'age': '23', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616923': {'classification': 'A2L2B1', 'disease_stage': 'B3/penetrating', 'age': '32', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1163002': {'patient': 'Disease_K3', 'gender': 'F', 'age': '63', 'tissue': 'Nonlesion', 'treatment': 'Untreated', 'id': '5'}, 'GSM1163003': {'patient': 'Disease_K3', 'gender': 'F', 'age': '63', 'tissue': 'Nonlesion', 'treatment': 'Culture/DMSO', 'id': '6'}, 'GSM1163000': {'patient': 'Disease_K3', 'gender': 'F', 'age': '63', 'tissue': 'Lesion', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163001': {'patient': 'Disease_K3', 'gender': 'F', 'age': '63', 'tissue': 'Lesion', 'treatment': 'Antagonist', 'id': '4'}, 'GSM1163006': {'patient': 'Disease_K4', 'gender': 'F', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Untreated', 'id': '1'}, 'GSM1163007': {'patient': 'Disease_K4', 'gender': 'F', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1163004': {'patient': 'Disease_K3', 'gender': 'F', 'age': '63', 'tissue': 'Nonlesion', 'treatment': 'Agonist', 'id': '7'}, 'GSM1163005': {'patient': 'Disease_K3', 'gender': 'F', 'age': '63', 'tissue': 'Nonlesion', 'treatment': 'Antagonist', 'id': '8'}, 'GSM1163008': {'patient': 'Disease_K4', 'gender': 'F', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163009': {'patient': 'Disease_K4', 'gender': 'F', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Antagonist', 'id': '4'}, 'GSM2312032': {'culture': '12', 'line': 'DCX+'}, 'GSM2312033': {'culture': '12', 'line': 'DCX+'}, 'GSM2312030': {'culture': '12', 'line': 'DCX+'}, 'GSM2312031': {'culture': '12', 'line': 'DCX+'}, 'GSM2312036': {'culture': '12', 'line': 'DCX+'}, 'GSM2312037': {'culture': '12', 'line': 'DCX+'}, 'GSM2312034': {'culture': '12', 'line': 'DCX+'}, 'GSM2312035': {'culture': '12', 'line': 'DCX+'}, 'GSM2816204': {'line': 'H9'}, 'GSM2312038': {'culture': '12', 'line': 'DCX+'}, 'GSM2312039': {'culture': '12', 'line': 'DCX+'}, 'GSM1716778': {'line': 'LHSAR', 'type': 'LHSAR overexpressed with HOXB13 and FOXA1', 'treatment': '1nM R1881'}, 'GSM2072028': {'duration': '24 hours', 'line': 'A375', 'grna': 'gGFP-1', 'treatment': '1 nM Trametinib'}, 'GSM2072029': {'duration': '24 hours', 'line': 'A375', 'grna': 'gCIC-1', 'treatment': 'DMSO'}, 'GSM2072026': {'duration': '24 hours', 'line': 'A375', 'grna': 'gGFP-1', 'treatment': 'DMSO'}, 'GSM2072027': {'duration': '24 hours', 'line': 'A375', 'grna': 'gGFP-1', 'treatment': '1 nM Trametinib'}, 'GSM2072025': {'duration': '24 hours', 'line': 'A375', 'grna': 'gGFP-1', 'treatment': 'DMSO'}, 'GSM1216799': {'gender': 'Male', 'age': '61', 'bmi': '24.6', 'hba1c': '4.6', 'tissue': 'pancreatic islets', 'birth': '1949'}, 'GSM1216798': {'gender': 'Male', 'age': '62', 'bmi': '24.7', 'hba1c': '8', 'tissue': 'pancreatic islets', 'birth': '1948'}, 'GSM1216797': {'gender': 'Male', 'age': '58', 'bmi': '23.7', 'hba1c': '5.3', 'tissue': 'pancreatic islets', 'birth': '1952'}, 'GSM1216796': {'gender': 'Female', 'age': '54', 'bmi': '25.7', 'hba1c': '5.5', 'tissue': 'pancreatic islets', 'birth': '1956'}, 'GSM1216795': {'gender': 'Female', 'age': '58', 'bmi': '34.6', 'hba1c': '6.8', 'tissue': 'pancreatic islets', 'birth': '1952'}, 'GSM1216794': {'gender': 'Female', 'age': '76', 'bmi': '33.1', 'hba1c': '6.8', 'tissue': 'pancreatic islets', 'birth': '1934'}, 'GSM1216793': {'gender': 'Male', 'age': '63', 'tissue': 'pancreatic islets', 'birth': '1947', 'bmi': '24.8'}, 'GSM1216792': {'gender': 'Female', 'age': '57', 'bmi': '27.5', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1953'}, 'GSM1216791': {'gender': 'Male', 'age': '55', 'bmi': '23.4', 'hba1c': '5.3', 'tissue': 'pancreatic islets', 'birth': '1955'}, 'GSM1216790': {'gender': 'Female', 'age': '70', 'bmi': '20.1', 'hba1c': '6', 'tissue': 'pancreatic islets', 'birth': '1940'}, 'GSM1620589': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620588': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620583': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620582': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620581': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620580': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620587': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620586': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620585': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620584': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1348878': {'type': 'iPSC derived from Turner syndrome patient'}, 'GSM1348879': {'type': 'iPSC derived from Turner syndrome patient'}, 'GSM1348876': {'type': 'differentiated Control_c7 cells', 'reporter': 'GFP+'}, 'GSM1348877': {'type': 'differentiated Control_c7 cells', 'reporter': 'GFP-'}, 'GSM1348874': {'type': 'iPSC derived from female with normal fertility'}, 'GSM1348875': {'type': 'iPSC derived from female with normal fertility'}, 'GSM1348872': {'line': 'H9', 'type': 'differentiated H9 cells', 'reporter': 'GFP+'}, 'GSM1348873': {'line': 'H9', 'type': 'differentiated H9 cells', 'reporter': 'GFP-'}, 'GSM1348871': {'line': 'H9', 'type': 'stem cell'}, 'GSM2570524': {'knockdown': 'ARID5B', 'line': 'Jurkat'}, 'GSM2570525': {'knockdown': 'ARID5B', 'line': 'Jurkat'}, 'GSM2570522': {'knockdown': 'LMO1', 'line': 'Jurkat'}, 'GSM2570523': {'knockdown': 'LMO1', 'line': 'Jurkat'}, 'GSM2570520': {'knockdown': 'E2A', 'line': 'Jurkat'}, 'GSM2570521': {'knockdown': 'E2A', 'line': 'Jurkat'}, 'GSM2477379': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'control'}, 'GSM2477378': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'control'}, 'GSM2816205': {'line': 'H9'}, 'GSM2036530': {'gender': 'Male', 'age': '60', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2588115': {'expression': 'MYOD Y30F', 'type': 'Skin fibroblasts', 'isolation': 'passage High 45'}, 'GSM2588110': {'expression': 'EMPTY VECTOR', 'type': 'Skin fibroblasts', 'isolation': 'passage Low 12'}, 'GSM2483526': {'line': 'A673 cells', 'rescue': 'delta 22', 'RNAi': 'EWS/FLI', 'batch': '2'}, 'GSM2483525': {'line': 'A673 cells', 'rescue': 'delta 22', 'RNAi': 'EWS/FLI', 'batch': '1'}, 'GSM2588113': {'expression': 'EMPTY VECTOR', 'type': 'Skin fibroblasts', 'isolation': 'passage High 45'}, 'GSM1088317': {'clone': '7', 'passages': '10', 'type': 'hiPSCs'}, 'GSM2483529': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'EWS/FLI', 'batch': '1'}, 'GSM2483528': {'line': 'A673 cells', 'rescue': 'delta 22', 'RNAi': 'EWS/FLI', 'batch': '4'}, 'GSM2036531': {'gender': 'Male', 'age': '60', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2103069': {'line': 'U2OS', 'treatment': 'PUM2 plasmid'}, 'GSM2103068': {'line': 'U2OS', 'treatment': 'PUM2 plasmid'}, 'GSM2103061': {'line': 'U2OS', 'treatment': 'Control siRNA'}, 'GSM2103060': {'line': 'U2OS', 'treatment': 'Control siRNA'}, 'GSM2103063': {'line': 'U2OS', 'treatment': 'siRNA pool against PUM1'}, 'GSM2103062': {'line': 'U2OS', 'treatment': 'siRNA pool against PUM1'}, 'GSM2103065': {'line': 'U2OS', 'treatment': 'siRNA pool against PUM2'}, 'GSM2103064': {'line': 'U2OS', 'treatment': 'siRNA pool against PUM2'}, 'GSM2103067': {'line': 'U2OS', 'treatment': 'PUM1 plasmid'}, 'GSM2103066': {'line': 'U2OS', 'treatment': 'PUM1 plasmid'}, 'GSM1585204': {'type': 'RNA-seq', 'genotype': 'wt', 'treatment': 'd-leucine'}, 'GSM2197612': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197611': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197610': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197617': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197616': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197615': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197614': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM1536044': {'line': \"Barrett's esophagus cell line, CPA\", 'variation': 'SOX15 depletion'}, 'GSM1536045': {'pulldown': 'Bio-SOX15 was pulled down using Dynabeads MyOne Streptavidin T1 for six hours at 4 degrees (Invitrogen, catalog number 65601)', 'line': \"Barrett's esophagus cell line, CPA\"}, 'GSM2197619': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197618': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM1585208': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM1585209': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM1536042': {'line': \"Barrett's esophagus cell line, CPA\", 'variation': 'control'}, 'GSM1536043': {'line': \"Barrett's esophagus cell line, CPA\", 'variation': 'SOX15 depletion'}, 'GSM644992': {'vendor': 'Abcam mixed with in-house antibody', 'antibody': 'anti-H3K79me1', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells', 'number': 'ab2886'}, 'GSM2157961': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157960': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157963': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2815758': {'line': 'H9'}, 'GSM2157965': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157964': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2226760': {'line': 'HDF (FB2)', 'type': 'Fibroblasts'}, 'GSM2226761': {'line': 'HDF (FB3)', 'type': 'Fibroblasts'}, 'GSM1556701': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'variation': 'wildtype'}, 'GSM1556700': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'variation': 'wildtype'}, 'GSM1556703': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'variation': 'SLE'}, 'GSM2815750': {'line': 'H9'}, 'GSM1556705': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'variation': 'AGS'}, 'GSM1556704': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'variation': 'AGS'}, 'GSM2815755': {'line': 'H9'}, 'GSM2815754': {'line': 'H9'}, 'GSM1613620': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1874592': {'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM1874591': {'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM1874590': {'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM1613622': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1111661': {'protocol': 'Hard spin, Unwashed', 'id': '153', 'stage': 'Mature'}, 'GSM1613623': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613624': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613625': {'line': 'CRL2097', 'type': 'large live'}, 'GSM424332': {'identifier': 'GM11832'}, 'GSM424333': {'identifier': 'GM11839'}, 'GSM424330': {'identifier': 'GM11830'}, 'GSM2356901': {'type': '3-dimensional sphere', 'mutations': 'KCST'}, 'GSM2685259': {'acd27': 'no aCD27', 'type': 'CD8+ naive T cells', 'number': '2', 'subtype': 'AbBs from single cell', 'donor': 'Donor 1', 'protein': 'protein', 'with': 'aCD3 and aCD28', 'condition': 'AbBs and Blocking buffer'}, 'GSM424337': {'identifier': 'GM11993'}, 'GSM2356904': {'type': '3-dimensional sphere', 'mutations': 'KECST'}, 'GSM424335': {'identifier': 'GM11882'}, 'GSM2685255': {'acd27': 'no aCD27', 'type': 'CD8+ naive T cells', 'number': '8', 'subtype': 'total RNA from single cell', 'donor': 'Donor 3', 'protein': 'mRNA', 'with': 'aCD3 and aCD28', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685254': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '7', 'subtype': 'total RNA from single cell', 'donor': 'Donor 2', 'protein': 'mRNA', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685257': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '10', 'subtype': 'total RNA from single cell', 'donor': 'Donor 3', 'protein': 'mRNA', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685256': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '9', 'subtype': 'total RNA from single cell', 'donor': 'Donor 3', 'protein': 'mRNA', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685251': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '4', 'subtype': 'total RNA from single cell', 'donor': 'Donor 1', 'protein': 'mRNA', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685250': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '3', 'subtype': 'total RNA from single cell', 'donor': 'Donor 1', 'protein': 'mRNA', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685253': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '6', 'subtype': 'total RNA from single cell', 'donor': 'Donor 2', 'protein': 'mRNA', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685252': {'acd27': 'no aCD27', 'type': 'CD8+ naive T cells', 'number': '5', 'subtype': 'total RNA from single cell', 'donor': 'Donor 2', 'protein': 'mRNA', 'with': 'aCD3 and aCD28', 'condition': 'AbBs and Blocking buffer'}, 'GSM4007718': {'type': 'iPSC'}, 'GSM4007719': {'type': 'iPSC'}, 'GSM1269364': {'transfection': 'miR-124', 'type': 'RNA-seq fastq', 'line': 'IMR90 cells'}, 'GSM1269365': {'transfection': 'miR-124', 'type': 'RNA-seq fastq', 'line': 'IMR90 cells'}, 'GSM1269366': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'IMR90 cells'}, 'GSM1269367': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'IMR90 cells'}, 'GSM4007716': {'type': 'Fibroblast'}, 'GSM4007717': {'type': 'ESC'}, 'GSM1269362': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'Huh7 cells'}, 'GSM4007715': {'type': 'Fibroblast'}, 'GSM2108352': {'stages': 'myoblast'}, 'GSM2108353': {'stages': 'myoblast'}, 'GSM2108350': {'stages': 'myoblast'}, 'GSM2108351': {'stages': 'myoblast'}, 'GSM2108356': {'stages': 'myoblast'}, 'GSM2108357': {'stages': 'myoblast'}, 'GSM2108354': {'stages': 'myoblast'}, 'GSM2108355': {'stages': 'myoblast'}, 'GSM2108358': {'stages': 'myoblast'}, 'GSM2108359': {'stages': 'myoblast'}, 'GSM2561535': {'line': 'MCF7', 'tissue': 'breast cancer', 'treatment': '24h hypoxia', 'density': '0.6 million per 6cm tissue culture dish'}, 'GSM2561534': {'line': 'MCF7', 'tissue': 'breast cancer', 'treatment': 'normoxia 20h followed by 4h of hypoxia', 'density': '0.6 million per 6cm tissue culture dish'}, 'GSM1846905': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM2649817': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649816': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1581008': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581009': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2649813': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649812': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649811': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649810': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1581002': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581003': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581000': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581001': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581006': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581007': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581004': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581005': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2105057': {'gender': 'Male', 'age': '19 Year old', 'batch': '2F', 'condition': 'Disomic'}, 'GSM2105054': {'gender': 'Male', 'age': '19 Year old', 'batch': '2F', 'condition': 'Disomic'}, 'GSM2572318': {'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'UVR'}, 'GSM2105052': {'gender': 'Female', 'age': '11 Year old', 'batch': '1F', 'condition': 'Disomic'}, 'GSM2572313': {'antibody': 'H3K27ac HistonePathâ\\x84¢ Kit (Active Motif)', 'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'no UVR'}, 'GSM2668089': {'transfection': 'untransfected', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM2572311': {'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'UVR'}, 'GSM2572310': {'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'no UVR'}, 'GSM2572317': {'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'UVR'}, 'GSM2572316': {'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'no UVR'}, 'GSM2572315': {'antibody': 'H3K27ac HistonePathâ\\x84¢ Kit (Active Motif)', 'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'UVR'}, 'GSM2105059': {'gender': 'Male', 'age': '20 Year old', 'batch': '1F', 'condition': 'Disomic'}, 'GSM2066452': {'type': 'PBMC', 'disease': 'normal'}, 'GSM2066453': {'type': 'PBMC', 'disease': 'normal'}, 'GSM2066450': {'type': 'PBMC', 'disease': 'Fibrodysplasia Ossificans Progressiva'}, 'GSM2066451': {'type': 'PBMC', 'disease': 'normal'}, 'GSM2532821': {'status': 'Healthy', 'donor': '6', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3, ZA'}, 'GSM2532820': {'status': 'Healthy', 'donor': '6', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3'}, 'GSM1668419': {'with': '1,25(OH)2D3 treatment', 'type': 'skeletal muscle cells'}, 'GSM1668418': {'with': 'ethanol', 'type': 'skeletal muscle cells'}, 'GSM2194573': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194572': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194571': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194570': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194577': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3189188': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C48', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.57513', 'percentaligned': '0.955427673', 'Sex': 'M', 'nl63': 'No', 'libcounts': '18.386427', 'original': 'Control'}, 'GSM2194575': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194574': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3189185': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C16', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.948856', 'percentaligned': '0.929109751', 'Sex': 'M', 'nl63': 'No', 'libcounts': '20.480802', 'original': 'Control'}, 'GSM3189184': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C16', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.623329', 'percentaligned': '0.955914428', 'Sex': 'M', 'nl63': 'No', 'libcounts': '18.138227', 'original': 'Control'}, 'GSM2194579': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194578': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3189181': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'Yes', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.612', 'percentaligned': '0.961851635', 'Sex': 'F', 'nl63': 'No', 'libcounts': '19.720495', 'original': 'Control'}, 'GSM3189180': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '26', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.639686', 'percentaligned': '0.951070871', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.194023'}, 'GSM3189183': {'boca': 'Yes', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.8056', 'percentaligned': '0.860693684', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.348525', 'original': 'Control'}, 'GSM3189182': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'Yes', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.925505', 'percentaligned': '0.956975971', 'Sex': 'F', 'nl63': 'No', 'libcounts': '19.285059', 'original': 'Control'}, 'GSM1401380': {'subtype': 'osteoblast', 'type': 'patient-derived iPSCs', 'genotype': 'wildtype', 'point': 'day 17 of osteoblast differentiation treatment'}, 'GSM2668083': {'transfection': 'dCas9 3a3l delta', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM2668082': {'transfection': 'dCas9 3a3l delta', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM1942111': {'line': 'MCF7'}, 'GSM1942110': {'line': 'MCF7'}, 'GSM1942113': {'line': 'MCF7'}, 'GSM1942112': {'line': 'MCF7'}, 'GSM3104753': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104752': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104751': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM3104750': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM3104757': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104756': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104755': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104754': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104759': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104758': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2486467': {'line': 'NOMO-1'}, 'GSM2944161': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP overexpression', 'background': 'hTERT-hMSC'}, 'GSM2486466': {'line': 'KOPN-8'}, 'GSM2944160': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP overexpression', 'background': 'hTERT-hMSC'}, 'GSM2486461': {'line': 'KOPN-8'}, 'GSM2944163': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP and HOTAIR overexpression', 'background': 'hTERT-hMSC'}, 'GSM2486460': {'line': 'KOPN-8'}, 'GSM2390829': {'disease': 'Healthy Control'}, 'GSM2390828': {'disease': 'Healthy Control'}, 'GSM2486463': {'line': 'KOPN-8'}, 'GSM2390823': {'disease': 'Healthy Control'}, 'GSM2390822': {'disease': 'Healthy Control'}, 'GSM2390821': {'disease': 'Healthy Control'}, 'GSM2486462': {'line': 'KOPN-8'}, 'GSM2390827': {'disease': 'Healthy Control'}, 'GSM2390826': {'disease': 'Healthy Control'}, 'GSM2390825': {'disease': 'Healthy Control'}, 'GSM2390824': {'disease': 'Healthy Control'}, 'GSM2944167': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP, HOTAIR, and EWS-FLI1 overexpression', 'background': 'hTERT-hMSC'}, 'GSM2944166': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP, HOTAIR, and EWS-FLI1 overexpression', 'background': 'hTERT-hMSC'}, 'GSM1679714': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '75'}, 'GSM1679715': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '68'}, 'GSM1679716': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '95'}, 'GSM1679717': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '74'}, 'GSM1679710': {'death': '65', 'gender': 'male', 'study': 'P_31', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.31694453', 'sv3': '-0.150255667', 'sv1': '0.1190659798'}, 'GSM1679711': {'gender': 'male', 'study': 'P_33', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '85'}, 'GSM1679712': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '64'}, 'GSM1679713': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '64'}, 'GSM1679718': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '68'}, 'GSM1679719': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '79'}, 'GSM2228913': {'tissue': 'Foreskin', 'antibody': 'DNMT3A SantaCruz (H-295)', 'passage': '5'}, 'GSM2228912': {'tissue': 'Foreskin', 'antibody': 'DNMT3B Novus (NB300-516)', 'passage': '5'}, 'GSM2228911': {'tissue': 'Foreskin', 'antibody': 'DNMT3A SantaCruz (H-295)', 'passage': '5'}, 'GSM2228910': {'tissue': 'Foreskin', 'antibody': '5-Methylcytosine (Eurogentec BI-MECY-01000)', 'passage': '6'}, 'GSM2228916': {'tissue': 'Foreskin', 'antibody': 'DNMT3B Novus (NB300-516)', 'passage': '5'}, 'GSM2228915': {'tissue': 'Foreskin', 'antibody': 'DNMT3A SantaCruz (H-295)', 'passage': '5'}, 'GSM2228914': {'tissue': 'Foreskin', 'antibody': 'DNMT3B Novus (NB300-516)', 'passage': '5'}, 'GSM2228919': {'treatment': '24 h IL-2'}, 'GSM2247673': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247672': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247675': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247674': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247677': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247676': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1833448': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': 'Unactivated'}, 'GSM1833449': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': 'Unactivated'}, 'GSM1833440': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '2 hours'}, 'GSM1833441': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '3 hours'}, 'GSM1833442': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '3 hours'}, 'GSM1833443': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '3 hours'}, 'GSM1833444': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '4 hours'}, 'GSM1833445': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '4 hours'}, 'GSM2776898': {'line': 'SKMEL28', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2776899': {'line': 'SKMEL28', 'type': 'BRAFi+MEKi', 'treatment': 'resistant'}, 'GSM1369082': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siDPPA5'}, 'GSM2359240': {'duration': '7D', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM', 'drug': 'Lapatinib'}, 'GSM2359241': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM', 'drug': 'Lapatinib'}, 'GSM2359242': {'duration': '7D', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM', 'drug': 'Lapatinib'}, 'GSM2359243': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM', 'drug': 'Lapatinib'}, 'GSM2359244': {'duration': '7D', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '100nM', 'drug': 'Lapatinib'}, 'GSM2359245': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '25 nM', 'drug': 'THZ1'}, 'GSM2359246': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '25 nM', 'drug': 'THZ1'}, 'GSM2359247': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '25 nM', 'drug': 'THZ1'}, 'GSM2359248': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM / 100nM', 'drug': 'Erlotinib / THZ1'}, 'GSM2359249': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM / 100nM', 'drug': 'Erlotinib / THZ1'}, 'GSM2815825': {'line': 'H9'}, 'GSM2170617': {'stage': 'Hepatic endoderm 1'}, 'GSM2500675': {'passages': 'P3-5', 'type': 'dermal fibroblast of adult skin', 'Sex': 'male'}, 'GSM2500677': {'passages': 'P3-5', 'type': 'dermal fibroblast of adult skin', 'Sex': 'male'}, 'GSM2500676': {'passages': 'P3-4', 'type': 'hair follicle dermal papilla of adult skin', 'Sex': 'male'}, 'GSM1945873': {'line': 'HCT116'}, 'GSM1945877': {'line': 'HCT116', 'antibody': 'H3K27me1', 'transfection': 'siEZH1'}, 'GSM1945876': {'line': 'HCT116', 'antibody': 'H3K27me3'}, 'GSM1945875': {'line': 'HCT116', 'antibody': 'H3K27me2'}, 'GSM1945874': {'line': 'HCT116', 'antibody': 'H3K27me1'}, 'GSM1945879': {'line': 'HCT116', 'antibody': 'H3K27me3', 'transfection': 'siEZH1'}, 'GSM1945878': {'line': 'HCT116', 'antibody': 'H3K27me2', 'transfection': 'siEZH1'}, 'GSM2085657': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085656': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085655': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085654': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085653': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085652': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1480369': {'vendor': 'Diagenode', 'with': '10ng/ml TNFα for 90min', 'type': 'SGBS adipocyte D10', 'antibody': 'RNAPII'}, 'GSM2085650': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1480367': {'vendor': 'Diagenode', 'with': 'vehicle for 90min', 'type': 'SGBS adipocyte D10', 'antibody': 'RNAPII'}, 'GSM1480366': {'vendor': 'Diagenode', 'with': 'vehicle for 90min', 'type': 'SGBS adipocyte D10', 'antibody': 'RNAPII'}, 'GSM1707507': {'tissue': 'Colorectal cancer PDX', 'condition': 'Vehicle'}, 'GSM2085659': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085658': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1701813': {'transfection': 'non-targeting (NT) siRNA', 'point': '48 hours'}, 'GSM1701812': {'transfection': 'second SOX2 and SOX3 siRNAs', 'point': '48 hours'}, 'GSM1701811': {'transfection': 'first SOX2 and SOX3 siRNAs', 'point': '48 hours'}, 'GSM1701810': {'transfection': 'non-targeting (NT) siRNA', 'point': '48 hours'}, 'GSM1701815': {'transfection': 'second SOX2 siRNA (KD2)', 'point': '48 hours'}, 'GSM1701814': {'transfection': 'first SOX2 (KD1) siRNA', 'point': '48 hours'}, 'GSM1707506': {'tissue': 'Colorectal cancer PDX', 'condition': 'ETC-159'}, 'GSM1326566': {'group': 'No d(A) priming', 'linker': 'SOLID Reverse', 'type': 'HeLa cells'}, 'GSM2089688': {'state': 'colorectal cancer', 'line': 'HCT116-p53_WT', 'treatment': 'untreated'}, 'GSM2089689': {'state': 'colorectal cancer', 'line': 'HCT116-p53_WT', 'treatment': 'Doxorubicin at a final concentration of 300 nM for 16 hours'}, 'GSM1326567': {'group': 'Cap analog Luciferase', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM2089687': {'state': 'colorectal cancer', 'line': 'HCT116-p53_WT', 'treatment': 'untreated'}, 'GSM1707505': {'tissue': 'Colorectal cancer PDX', 'condition': 'ETC-159'}, 'GSM2688991': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2758952': {'line': 'MCF-7', 'transfection': 'pLenti-HA-EZH2', 'treatment': 'Tamoxifen'}, 'GSM2758951': {'line': 'MCF-7', 'transfection': 'pLenti-HA-EZH2', 'treatment': 'Tamoxifen'}, 'GSM2688992': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688995': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688994': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688997': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2758954': {'line': 'MCF-7', 'transfection': 'pLenti-HA-EZH2', 'treatment': 'Vehicle'}, 'GSM2688999': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688998': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2084302': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2084303': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2084300': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2084301': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM1707504': {'tissue': 'Colorectal cancer PDX', 'condition': 'ETC-159'}, 'GSM2170770': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1395892': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395893': {'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM2324228': {'group': 'HighA422', 'type': 'PBMC', 'day': '28', 'subjectid': '5515'}, 'GSM2324229': {'group': 'HighA422', 'type': 'PBMC', 'day': '56', 'subjectid': '5515'}, 'GSM1395896': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM2389815': {'tissue': 'SJSA - osteosarcoma'}, 'GSM1395894': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395895': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM2324222': {'group': 'HighA422', 'type': 'PBMC', 'day': '14', 'subjectid': '4114'}, 'GSM2324223': {'group': 'HighA422', 'type': 'PBMC', 'day': '28', 'subjectid': '4114'}, 'GSM2324220': {'group': 'LowA422', 'type': 'PBMC', 'day': '56', 'subjectid': '3310'}, 'GSM2324221': {'group': 'HighA422', 'type': 'PBMC', 'day': '0', 'subjectid': '4114'}, 'GSM2324226': {'group': 'HighA422', 'type': 'PBMC', 'day': '0', 'subjectid': '5515'}, 'GSM2324227': {'group': 'HighA422', 'type': 'PBMC', 'day': '14', 'subjectid': '5515'}, 'GSM2324224': {'group': 'HighA422', 'type': 'PBMC', 'day': '56', 'subjectid': '4114'}, 'GSM2324225': {'group': 'HighA422', 'type': 'PBMC', 'day': '84', 'subjectid': '4114'}, 'GSM2361908': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361909': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705368': {'Sex': 'Male', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.56', 'pmi': '8'}, 'GSM2705369': {'Sex': 'Male', 'rin': '9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.67', 'pmi': '5.5'}, 'GSM2705366': {'Sex': 'Male', 'rin': '8.4', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.34', 'pmi': '14'}, 'GSM2705367': {'Sex': 'Female', 'rin': '7.1', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.42', 'pmi': '13'}, 'GSM2361906': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705365': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 16', 'dilution': '1:50'}, 'GSM2705362': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 13', 'dilution': '1:50'}, 'GSM2705363': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 14', 'dilution': '1:50'}, 'GSM2705360': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 11', 'dilution': '1:50'}, 'GSM2705361': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 12', 'dilution': '1:50'}, 'GSM1968003': {'line': 'MIA PaCa-2'}, 'GSM1968002': {'line': 'MIA PaCa-2'}, 'GSM1968001': {'line': 'MIA PaCa-2'}, 'GSM1968000': {'line': 'MIA PaCa-2'}, 'GSM1968005': {'line': 'MIA PaCa-2'}, 'GSM1968004': {'line': 'MIA PaCa-2'}, 'GSM1931829': {'individual': '1156', 'tissue': 'derived cardiomyocytes (CMs) from hiPSC', 'treatment': 'with Endothelin stimulation'}, 'GSM1931828': {'individual': '1156', 'tissue': 'derived cardiomyocytes (CMs) from hiPSC', 'treatment': 'without Endothelin stimulation'}, 'GSM2491449': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491448': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491447': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM2491446': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM2491445': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM2491444': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM2491443': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM2491442': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM2491441': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM2491440': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM5065647': {'replicate': 'Replicate2', 'line': 'MCF-7', 'type': 'human Estrogen receptor alpha+ breast cancer cells', 'genotype': 'LucKD', 'treatment': '100 nM E2'}, 'GSM5065646': {'replicate': 'Replicate1', 'line': 'MCF-7', 'type': 'human Estrogen receptor alpha+ breast cancer cells', 'genotype': 'LucKD', 'treatment': '100 nM E2'}, 'GSM2367500': {'with': 'siDDX54', 'line': 'MCF-7', 'barcode': 'CTTGTA', 'type': 'breast carcinoma epithelial cell line', 'point': '2h post irradiation'}, 'GSM2166262': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166263': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166260': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166261': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166266': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM5065648': {'replicate': 'Replicate1', 'line': 'MCF-7', 'type': 'human Estrogen receptor alpha+ breast cancer cells', 'genotype': 'PARP-1KD', 'treatment': '100 nM E2'}, 'GSM2166264': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166265': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM1707509': {'tissue': 'Colorectal cancer PDX', 'condition': 'Vehicle'}, 'GSM2747374': {'line': 'NHDF Line 4', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM2747373': {'line': 'NHDF Line 4', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM2747372': {'line': 'NHDF Line 4', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM2747371': {'line': 'NHDF Line 4', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM2747370': {'line': 'NHDF Line 4', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM2199527': {'age': '37', 'tissue': 'Subcutaneous fat', 'bmi': '47.5'}, 'GSM2199526': {'age': '41', 'tissue': 'Subcutaneous fat', 'bmi': '39.0'}, 'GSM2199525': {'age': '28', 'tissue': 'Subcutaneous fat', 'bmi': '38.1'}, 'GSM2199524': {'age': '39', 'tissue': 'Subcutaneous fat', 'bmi': '45.4'}, 'GSM2199523': {'age': '49', 'tissue': 'Subcutaneous fat', 'bmi': '42.4'}, 'GSM2199522': {'age': '57', 'tissue': 'Subcutaneous fat', 'bmi': '40.7'}, 'GSM2199521': {'age': '34', 'tissue': 'Subcutaneous fat', 'bmi': '41.9'}, 'GSM3594368': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594367': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594366': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2247369': {'line': 'H1 (WA-01) + WTC10 Phox2B null (Y14X/Y14X)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2247368': {'line': 'H1 (WA-01) + WTC10 Phox2B het (+/Y14X)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM3594363': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594362': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2199529': {'age': '28', 'tissue': 'Subcutaneous fat', 'bmi': '47.0'}, 'GSM3594360': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1965170': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965171': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965172': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965173': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965174': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965175': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965176': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965177': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965178': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965179': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM773078': {'line': 'siRNF20-transfected NCCIT', 'type': 'embryonic carcinoma cells'}, 'GSM2462861': {'type': '2242-1 line'}, 'GSM2462860': {'type': '2242-1 line'}, 'GSM2933031': {'pucai': '30', 'score': '0', 'remission': 'No', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM2933030': {'pucai': '45', 'score': '3', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM2630255': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405840'}, 'GSM2630254': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405839'}, 'GSM2630257': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405842'}, 'GSM2630256': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405841'}, 'GSM2630251': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630250': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630253': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405838'}, 'GSM2630252': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2933032': {'pucai': '60', 'score': '1', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2630259': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405844'}, 'GSM2630258': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405843'}, 'GSM977620': {'wavelength': '4-SU / 365 nm', 'line': 'FlpIn T-Rex Human embryonic kidney 293 stable cell line', 'antibody': 'anti-FLAG M2 [Sigma-Aldrich, cat# F1804, lot#101M6216]', 'protein': 'wt FLAG-HA FXR2'}, 'GSM2205862': {'type': 'Tumor tissue'}, 'GSM2205863': {'type': 'Noncancerous tissue'}, 'GSM2205860': {'type': 'Tumor tissue'}, 'GSM2205861': {'type': 'Noncancerous tissue'}, 'GSM1808091': {'tissue': 'LCLs'}, 'GSM2632671': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632670': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632673': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632672': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632675': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632674': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142558': {'gender': 'female', 'age': '69', 'who': '1', 'dead': '1', 'date': '2010-10-31', 'histology': '1', 'tnm': '5', 'smoking': '1'}, 'GSM2632676': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142556': {'gender': 'female', 'age': '72', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '3', 'smoking': '2'}, 'GSM2142557': {'gender': 'male', 'age': '61', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142554': {'gender': 'female', 'age': '68', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '3'}, 'GSM2142555': {'gender': 'male', 'age': '71', 'who': '0', 'dead': '1', 'date': '2012-12-30', 'histology': '2', 'tnm': '3', 'smoking': '1'}, 'GSM2142552': {'gender': 'male', 'age': '57', 'who': '0', 'dead': '1', 'date': '2012-03-28', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2142553': {'gender': 'male', 'age': '69', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '3'}, 'GSM2142550': {'gender': 'female', 'age': '77', 'who': '0', 'dead': '1', 'date': '2011-06-23', 'histology': '2', 'tnm': '3', 'smoking': '1'}, 'GSM2142551': {'gender': 'female', 'age': '71', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '4', 'smoking': '2'}, 'GSM2048752': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2108515': {'stages': 'mononucleated cell nucleus'}, 'GSM2236848': {'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)', 'individual': 'Patient 8', 'type': 'plasmacytoid dendritic cells (pDCs)'}, 'GSM2236849': {'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)', 'individual': 'Patient 14', 'type': 'plasmacytoid dendritic cells (pDCs)'}, 'GSM2236842': {'line': 'Gen2.2', 'type': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN) cell line', 'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)'}, 'GSM2236843': {'line': 'Cal-1', 'type': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN) cell line', 'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)'}, 'GSM2236841': {'line': 'Cal-1', 'type': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN) cell line', 'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)'}, 'GSM2236846': {'line': 'MOLM-14', 'type': 'acute myeloid leukemia (AML) cell line', 'state': 'acute myeloid leukemia (AML)'}, 'GSM2236847': {'line': 'SKM-1', 'type': 'acute myeloid leukemia (AML) cell line', 'state': 'acute myeloid leukemia (AML)'}, 'GSM2236844': {'line': 'Gen2.2', 'type': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN) cell line', 'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)'}, 'GSM2236845': {'line': 'HL-60', 'type': 'acute myeloid leukemia (AML) cell line', 'state': 'acute myeloid leukemia (AML)'}, 'GSM1172867': {'subtype': 'Basal', 'line': 'HCC1569', 'type': 'breast cancer'}, 'GSM1172864': {'subtype': 'Luminal', 'line': 'HCC1419', 'type': 'breast cancer'}, 'GSM1172865': {'subtype': 'Luminal', 'line': 'HCC1428', 'type': 'breast cancer'}, 'GSM1172863': {'subtype': 'Claudin-low', 'line': 'HCC1395', 'type': 'breast cancer'}, 'GSM1172860': {'subtype': 'Luminal', 'line': 'EFM192C', 'type': 'breast cancer'}, 'GSM1172861': {'subtype': 'Basal', 'line': 'HCC1143', 'type': 'breast cancer'}, 'GSM1693009': {'with': 'eGFP adeno-virus', 'type': 'dermal fibroblast cells (hDF)', 'stage': 'day 2 after infection'}, 'GSM1172868': {'subtype': 'Basal', 'line': 'HCC1599', 'type': 'breast cancer'}, 'GSM1172869': {'subtype': 'Basal', 'line': 'HCC1806', 'type': 'breast cancer'}, 'GSM2287774': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287775': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287776': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287777': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287770': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287771': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287772': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287773': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM600350': {'type': 'HES2', 'size': '2000-3500bp'}, 'GSM600351': {'type': 'HES2', 'size': '3500-6500bp'}, 'GSM600352': {'type': 'HES2', 'size': '6500bp and greater'}, 'GSM2287778': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287779': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM1890726': {'line': 'COLO 320', 'treatment': 'DMSO'}, 'GSM1890727': {'line': 'COLO 320', 'treatment': 'JQ.1'}, 'GSM1890724': {'line': 'COLO 320', 'treatment': 'DMSO'}, 'GSM1890725': {'line': 'COLO 320', 'treatment': 'DMSO'}, 'GSM1890722': {'line': 'HCT-15', 'treatment': 'JQ.1'}, 'GSM1890723': {'line': 'HCT-15', 'treatment': 'JQ.1'}, 'GSM1890720': {'line': 'HCT-15', 'treatment': 'DMSO'}, 'GSM1890721': {'line': 'HCT-15', 'treatment': 'JQ.1'}, 'GSM1890728': {'line': 'COLO 320', 'treatment': 'JQ.1'}, 'GSM1890729': {'line': 'COLO 320', 'treatment': 'JQ.1'}, 'GSM2233311': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233310': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1273637': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273636': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273631': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273630': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273633': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273632': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2233319': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233318': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1273639': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273638': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2805345': {'status': 'Healthy', 'gender': 'male', 'age': '65', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805344': {'status': 'Healthy', 'gender': 'male', 'age': '65', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805341': {'status': 'Healthy', 'gender': 'male', 'age': '59', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805340': {'status': 'Healthy', 'gender': 'male', 'age': '59', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805343': {'status': 'Healthy', 'gender': 'male', 'age': '65', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805342': {'status': 'Healthy', 'gender': 'male', 'age': '65', 'timepoint': 'D2_ZT_15:30'}, 'GSM2754939': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0218', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754938': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0218', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754931': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0152', 'previousdiagnosisoftb': 'No', 'tst': '11', 'type': 'Tcells'}, 'GSM2754930': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0152', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754933': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0177', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754932': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_0152', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754935': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0177', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754934': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0177', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754937': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0218', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754936': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0859', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2562668': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562669': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562666': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562667': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562664': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562665': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562662': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562663': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562660': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562661': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2535614': {'treatment': 'ET1 JQ1'}, 'GSM1543546': {'gender': 'female', 'individual': 'patient2', 'tissue': 'tumor'}, 'GSM2360160': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing G-actin binding deficient MRTFB mutant'}, 'GSM2360163': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing G-actin and SRF binding deficient (Y305A) MRTFB mutant'}, 'GSM2652062': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin'}, 'GSM2652063': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin'}, 'GSM2652060': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Basal'}, 'GSM2652061': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin'}, 'GSM2652066': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + SB431542'}, 'GSM2652067': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + AG1478'}, 'GSM2511569': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2652065': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + SB431542'}, 'GSM2511567': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2511566': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2511565': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543655': {'library_id': 'lib5784', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511563': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2511562': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'CD inactive'}, 'GSM2511561': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'CD inactive'}, 'GSM2511560': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'CD inactive'}, 'GSM2360166': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing G-actin, YAP and SRF binding deficient (dPY/Y305A) MRTFB mutant'}, 'GSM1915049': {'type': 'epithelial', 'line': 'MCF7', 'molecule': 'polysomal RNA'}, 'GSM1656058': {'patient': '4', 'group': 'PP', 'gender': 'female'}, 'GSM1656059': {'patient': '4', 'group': 'PN', 'gender': 'female'}, 'GSM1922724': {'status': 'P72R/R248Q', 'specimen': 'patient#1', 'tissue': 'ovary', 'treatment': 'ReACp53', 'type': 'high-grade serous ovarian cancer', 'stage': 'IIIB'}, 'GSM1922725': {'status': 'P72R/R248Q', 'specimen': 'patient#1', 'tissue': 'ovary', 'treatment': 'ReACp53', 'type': 'high-grade serous ovarian cancer', 'stage': 'IIIB'}, 'GSM1922726': {'status': 'P72R/R248Q', 'specimen': 'patient#1', 'tissue': 'ovary', 'treatment': 'ReACp53', 'type': 'high-grade serous ovarian cancer', 'stage': 'IIIB'}, 'GSM1656057': {'patient': '3', 'group': 'PN', 'gender': 'male'}, 'GSM1922720': {'status': 'P72R', 'specimen': 'patient#8', 'tissue': 'ovary', 'treatment': 'ReACp53', 'type': 'endometrioid ovarian cancer', 'stage': 'I'}, 'GSM1922721': {'status': 'P72R/R248Q', 'specimen': 'patient#1', 'tissue': 'ovary', 'treatment': 'vehicle', 'type': 'high-grade serous ovarian cancer', 'stage': 'IIIB'}, 'GSM1922722': {'status': 'P72R/R248Q', 'specimen': 'patient#1', 'tissue': 'ovary', 'treatment': 'vehicle', 'type': 'high-grade serous ovarian cancer', 'stage': 'IIIB'}, 'GSM1922723': {'status': 'P72R/R248Q', 'specimen': 'patient#1', 'tissue': 'ovary', 'treatment': 'vehicle', 'type': 'high-grade serous ovarian cancer', 'stage': 'IIIB'}, 'GSM1333746': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333747': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333748': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333749': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM2411388': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411389': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411384': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411385': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411386': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411387': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411380': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411381': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411382': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411383': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1901042': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'antibody': 'none'}, 'GSM2108519': {'stages': 'mononucleated cell nucleus'}, 'GSM2720327': {'passages': 'p5', 'type': 'ESC', 'treatment': 'vehicle'}, 'GSM2720326': {'passages': 'p5', 'type': 'ESC', 'treatment': 'vehicle'}, 'GSM2720325': {'passages': 'p5', 'type': 'ESC', 'treatment': 'tunicamycin'}, 'GSM2720324': {'passages': 'p5', 'type': 'ESC', 'treatment': 'tunicamycin'}, 'GSM2720323': {'passages': 'p5', 'type': 'ESC', 'treatment': 'tunicamycin'}, 'GSM2720322': {'passages': 'p5', 'type': 'ESC', 'treatment': 'tunicamycin'}, 'GSM2720321': {'passages': 'p5', 'type': 'ESC', 'treatment': 'vehicle'}, 'GSM2720320': {'passages': 'p5', 'type': 'ESC', 'treatment': 'vehicle'}, 'GSM1663003': {'line': 'GM12878', 'type': 'Lymphoblastoid cell line'}, 'GSM1663002': {'line': 'GM12878', 'type': 'Lymphoblastoid cell line'}, 'GSM1663007': {'line': 'HL-60', 'type': 'Promyelocytic cell line'}, 'GSM1663006': {'line': 'HL-60', 'type': 'Promyelocytic cell line'}, 'GSM2720329': {'passages': 'p5', 'type': 'WAPC', 'treatment': 'vehicle'}, 'GSM2720328': {'passages': 'p5', 'type': 'WAPC', 'treatment': 'vehicle'}, 'GSM759892': {'type': 'Cultured primary human lung fibroblast'}, 'GSM759893': {'type': 'Cultured primary human foreskin fibroblast'}, 'GSM759890': {'type': 'Cultured primary human lung fibroblast'}, 'GSM759891': {'type': 'Cultured primary human lung fibroblast'}, 'GSM2309726': {'tissue': 'primary fibroblasts', 'type': 'HCA2-hTert'}, 'GSM2309727': {'tissue': 'primary fibroblasts', 'type': 'HCA2-hTert'}, 'GSM1359854': {'line': 'HEK 293', 'treatment': 'control (normal; BDE209 in DMSO-free medium)'}, 'GSM1359855': {'line': 'HEK 293', 'treatment': 'DMSO medium'}, 'GSM1359853': {'line': 'HEK 293', 'treatment': 'BDE209 in DMSO medium'}, 'GSM2309728': {'tissue': 'primary fibroblasts', 'type': 'HCA2-hTert'}, 'GSM2309729': {'tissue': 'primary fibroblasts', 'type': 'HCA2-hTert'}, 'GSM2620898': {'1': 'TATCCTCT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'B3', 'volume': '30uL', 'ul': '53.95', 's': 'S503', 'treatment': 'DMSO, followed by LPS', 'donor': '1685', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'AGAGGATA'}, 'GSM2620892': {'1': 'CTCTCTAT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'A6', 'volume': '30uL', 'ul': '45.92', 's': 'S502', 'treatment': 'IA, followed by LPS', 'donor': '490', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'ATAGAGAG'}, 'GSM2620890': {'1': 'CTCTCTAT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'A5', 'volume': '30uL', 'ul': '40.44', 's': 'S502', 'treatment': 'IA, followed by LPS', 'donor': '490', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'ATAGAGAG'}, 'GSM2620896': {'1': 'TATCCTCT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'B2', 'volume': '30uL', 'ul': '40.65', 's': 'S503', 'treatment': 'DMSO, followed by LPS', 'donor': '1685', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'AGAGGATA'}, 'GSM2620894': {'1': 'TATCCTCT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'B1', 'volume': '30uL', 'ul': '52.59', 's': 'S503', 'treatment': 'DMSO, followed by LPS', 'donor': '1685', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'AGAGGATA'}, 'GSM2195138': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195139': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195130': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195131': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195132': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195133': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195134': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195135': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195136': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195137': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1620626': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620627': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620624': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620625': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620622': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620623': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620620': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620621': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620628': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620629': {'type': 'MCF10a human breast cancer cells'}, 'GSM1908823': {'tissue': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM1908822': {'tissue': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM1908821': {'tissue': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM1908820': {'tissue': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM1206240': {'ercc': '2% by volume of ERCC mix #1', 'composition': '10 human cell lines (B lymphocyte, brain, breast, cervix, liposarcoma, liver, macrophage, skin, testis, and T lymphocyte)', 'number': '4'}, 'GSM1206241': {'ercc': '2% by volume of ERCC mix #2', 'composition': 'Several brain regions from 23 adult donors', 'number': '4'}, 'GSM1206242': {'ercc': '2% by volume of ERCC mix #1', 'composition': '10 human cell lines (B lymphocyte, brain, breast, cervix, liposarcoma, liver, macrophage, skin, testis, and T lymphocyte)', 'number': '5'}, 'GSM1206243': {'ercc': '2% by volume of ERCC mix #2', 'composition': 'Several brain regions from 23 adult donors', 'number': '5'}, 'GSM2082829': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2082828': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2082827': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM957469': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'none', 'id': '4'}, 'GSM957468': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'none', 'id': '3'}, 'GSM2035754': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2274828': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33301', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9703', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C27', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9703', 'studysiteshort': 'YALE'}, 'GSM2274829': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33303', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9705', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C33', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9705', 'studysiteshort': 'YALE'}, 'GSM2274822': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33293', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9695', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C20', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9695', 'studysiteshort': 'YALE'}, 'GSM2274823': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33294', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9696', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C26', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9696', 'studysiteshort': 'YALE'}, 'GSM2274820': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33273', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9690', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C31', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9690', 'studysiteshort': 'YALE'}, 'GSM2274821': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33274', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9691', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C43', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9691', 'studysiteshort': 'YALE'}, 'GSM2274826': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33297', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9699', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C44', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9699', 'studysiteshort': 'YALE'}, 'GSM2274827': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33299', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9701', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C13', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9701', 'studysiteshort': 'YALE'}, 'GSM2274824': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33295', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9697', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C32', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9697', 'studysiteshort': 'YALE'}, 'GSM2274825': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33296', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9698', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C38', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9698', 'studysiteshort': 'YALE'}, 'GSM957467': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'none', 'id': '2'}, 'GSM957466': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'none', 'id': '1'}, 'GSM1963778': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963779': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963774': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963775': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963776': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963777': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963770': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963771': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963772': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963773': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2259809': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM1105784': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2674637': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM1105786': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2089915': {'derivative': 'brain', 'line': 'MDA231-BrM2', 'type': 'breast cancer cell line', 'coculture': '-'}, 'GSM2089916': {'derivative': 'brain', 'line': 'MDA231-BrM2', 'type': 'breast cancer cell line', 'coculture': '-'}, 'GSM2089917': {'derivative': 'brain', 'line': 'MDA231-BrM2', 'type': 'breast cancer cell line', 'coculture': 'with Astrocytes'}, 'GSM2089918': {'derivative': 'brain', 'line': 'MDA231-BrM2', 'type': 'breast cancer cell line', 'coculture': 'with Astrocytes'}, 'GSM2089919': {'derivative': 'brain', 'line': 'MDA231-BrM2', 'type': 'breast cancer cell line', 'coculture': 'with Astrocytes'}, 'GSM2674636': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM1105789': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105788': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1811426': {'line': 'A498', 'tissue': 'Kidney', 'type': 'ccRCC', 'transfection': 'lincRNA KD'}, 'GSM1811427': {'line': 'A498', 'tissue': 'Kidney', 'type': 'ccRCC', 'transfection': 'lincRNA KD'}, 'GSM1811424': {'line': 'A498', 'tissue': 'Kidney', 'type': 'ccRCC', 'transfection': 'non-target control'}, 'GSM1811425': {'line': 'A498', 'tissue': 'Kidney', 'type': 'ccRCC', 'transfection': 'non-target control'}, 'GSM1811428': {'line': '786-O', 'tissue': 'Kidney', 'type': 'ccRCC', 'transfection': 'non-target control'}, 'GSM1811429': {'line': '786-O', 'tissue': 'Kidney', 'type': 'ccRCC', 'transfection': 'non-target control'}, 'GSM1463076': {'knockdown': 'NO', 'line': 'FADU', 'treatment': 'Hypoxia (Oxygen deprivation was carried out in an incubator with 1% O2, 5% CO2Â\\xa0and 94% N2Â\\xa0for 19 h.)'}, 'GSM1463077': {'knockdown': 'Yes', 'line': 'FADU', 'treatment': 'Hypoxia (Oxygen deprivation was carried out in an incubator with 1% O2, 5% CO2Â\\xa0and 94% N2Â\\xa0for 19 h.)'}, 'GSM2674634': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674633': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM767857': {'description': 'tier 3', 'datatype': 'RnaSeq', 'labexpid': 'LID9206', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '029N', 'spikeinpool': 'Nist14'}, 'GSM767856': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8788', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '009WC', 'spikeinpool': 'Nist14'}, 'GSM767855': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID9007', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '037WC', 'spikeinpool': 'Nist14'}, 'GSM767854': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID9005', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '021WC', 'spikeinpool': 'Nist14'}, 'GSM767853': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID9197', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '003N', 'spikeinpool': 'Nist14'}, 'GSM767852': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID18547', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '003C', 'spikeinpool': 'Nist14'}, 'GSM767851': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8824', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '015WC', 'spikeinpool': 'Nist14'}, 'GSM767850': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID9202', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '013N', 'spikeinpool': 'Nist14'}, 'GSM2674632': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM1698559': {'donors': '10', 'vendor': 'Agilent', 'gender': 'Male', 'age': '18 (2 donors), 19 (3 donors), 20 (4 donors), 21 weeks gestation', 'isolate': 'Lot no.: 0006049059', 'tissue': 'Stomach'}, 'GSM2896230': {'tissue': 'liver', 'type': 'HepG2-NTCP cells', 'genotype': 'RXRalpha-KD'}, 'GSM2302879': {'tetracycline': 'TET(-)', 'id': '2', 'treatment': 'control'}, 'GSM2150917': {'origin': 'human foreskin fibroblast', 'subtype': 'induced pluripotent stem cells', 'line': 'BJ (ATCC, CRL-2522)', 'number': 'p5', 'time': '80% confluence'}, 'GSM1700948': {'line': 'HCT116'}, 'GSM2431609': {'number': '2_15', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D1', 'concentration': '100ng/ml'}, 'GSM2431608': {'number': '2_16', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D1', 'concentration': '10μM'}, 'GSM2041046': {'type': 'REH B-ALL cells', 'disease': 'acute lymphocytic leukemia (non-T; non-B)'}, 'GSM2041047': {'type': 'REH B-ALL cells', 'disease': 'acute lymphocytic leukemia (non-T; non-B)'}, 'GSM2041044': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia'}, 'GSM2041045': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia'}, 'GSM2041042': {'line': 'C4-2B human prostate cancer cell line', 'type': 'Bone metastatic LNCaP-derivative'}, 'GSM2041043': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia'}, 'GSM2677890': {'cells': 'primary pancreas tumor', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R209K and frameshift->S215stop, p16-silenced, SMAD4-WT'}, 'GSM2041041': {'line': 'C4-2B human prostate cancer cell line', 'type': 'Bone metastatic LNCaP-derivative'}, 'GSM2357390': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Empigen treated Ser5 phospho'}, 'GSM2644617': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644614': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-PolII serum (Wade lab)'}, 'GSM2644615': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2357394': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Empigen treated Tyr1 phospho'}, 'GSM2357395': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Control: Empigen untreated Thr4 phospho'}, 'GSM2357396': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Empigen treated Thr4 phospho'}, 'GSM2357397': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'siLuc control for DGCR8 KD, Ser5 phospho'}, 'GSM2357398': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'DGCR8 KD, Ser5 phospho'}, 'GSM2357399': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'siLuc control for DICER1 KD, Ser5 phospho'}, 'GSM3454797': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '3 days'}, 'GSM3454796': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '3 days'}, 'GSM3454791': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '12 hours'}, 'GSM3454790': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '12 hours'}, 'GSM3454793': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '2 days'}, 'GSM3454792': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '2 days'}, 'GSM2136986': {'subtype': '4', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '5'}, 'GSM2204177': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2204176': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204175': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2204174': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204173': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2204172': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204171': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2204170': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2455836': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455837': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455834': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455835': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455832': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455833': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2204179': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2204178': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM1533256': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-24'}, 'GSM2413466': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1533254': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-24'}, 'GSM1533255': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-20'}, 'GSM1533252': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-14'}, 'GSM2413462': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413461': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1533251': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-14'}, 'GSM2772508': {'group': 'exvivo', 'disease': 'H', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'H-398', 'cdna': 'cDNA2047'}, 'GSM2772509': {'group': 'exvivo', 'disease': 'SYS', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'SYS-177', 'cdna': 'cDNA2038'}, 'GSM1533258': {}, 'GSM2413468': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2784475': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '24h'}, 'GSM2784474': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '24h'}, 'GSM2784477': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '24h'}, 'GSM2784476': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '24h'}, 'GSM2784471': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '24h'}, 'GSM2784470': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '24h'}, 'GSM2784473': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '24h'}, 'GSM2784472': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '24h'}, 'GSM2784479': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '0h'}, 'GSM2784478': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '0h'}, 'GSM2501469': {'time': '8h', 'treatment': 'DMSO (neg control)', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2501468': {'time': '24h', 'treatment': 'TCR (anti-CD3/anti-CD28/IL-2)', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2501463': {'time': '8h', 'treatment': 'Interleukin-7 (IL-7)', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501462': {'time': '24h', 'treatment': \"5'-azacytidine\", 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501461': {'time': '8h', 'treatment': \"5'-azacytidine\", 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501460': {'time': '24h', 'treatment': 'disulfiram', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501467': {'time': '72h', 'treatment': 'TCR (anti-CD3/anti-CD28/IL-2)', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501466': {'time': '24h', 'treatment': 'TCR (anti-CD3/anti-CD28/IL-2)', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501465': {'time': '8h', 'treatment': 'TCR (anti-CD3/anti-CD28/IL-2)', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501464': {'time': '24h', 'treatment': 'Interleukin-7 (IL-7)', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM1338772': {'start': 'NA', 'type': 'MCF-7', 'dna': 'NA', 'group': 'Control', 'time': '10 minutes'}, 'GSM1338773': {'start': 'Immediately after washout', 'type': 'MCF-7', 'dna': 'NA', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM2084409': {'induction': 'DMSO/ATRA', 'time': '12 hr'}, 'GSM1412747': {'line': 'HCT116', 'passages': '8-10passeges', 'damage': '5-fluorouracil for 12h'}, 'GSM1412745': {'line': 'HCT116', 'passages': '8-10passeges', 'damage': '5-fluorouracil for 0h'}, 'GSM2084405': {'induction': 'DMSO/ATRA', 'time': '6 hr'}, 'GSM2084404': {'induction': 'DMSO/ATRA', 'time': '6 hr'}, 'GSM2084407': {'induction': 'DMSO/ATRA', 'time': '12 hr'}, 'GSM2084406': {'induction': 'DMSO/ATRA', 'time': '6 hr'}, 'GSM2084401': {'induction': 'DMSO/ATRA', 'time': '3 hr'}, 'GSM2084400': {'induction': 'PMA+LPS', 'time': '120 hr'}, 'GSM2084403': {'induction': 'DMSO/ATRA', 'time': '3 hr'}, 'GSM2084402': {'induction': 'DMSO/ATRA', 'time': '3 hr'}, 'GSM1481719': {'with': 'empty vector (V0)', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM2740954': {'with': 'shNS', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1681948': {'gender': 'female', 'age': '57', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681949': {'gender': 'male', 'age': '49', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681946': {'gender': 'male', 'age': '55', 'tissue': 'Tumor', 'class': 'II'}, 'GSM1681947': {'gender': 'male', 'age': '75', 'tissue': 'Control'}, 'GSM1681944': {'gender': 'male', 'age': '45', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681945': {'gender': 'male', 'age': '69', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681942': {'gender': 'female', 'age': '45', 'tissue': 'Control'}, 'GSM1681943': {'gender': 'male', 'age': '39', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681940': {'gender': 'female', 'age': '26', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681941': {'gender': 'male', 'age': '49', 'tissue': 'Tumor', 'class': 'III'}, 'GSM2933000': {'pucai': '70', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM2933001': {'pucai': '65', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '9'}, 'GSM2933002': {'pucai': '55', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '10'}, 'GSM2933003': {'pucai': '70', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '17'}, 'GSM2933004': {'pucai': '35', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2933005': {'pucai': '15', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '10'}, 'GSM2933006': {'pucai': '85', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM2933007': {'pucai': '55', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM1646958': {'illumina_index': '4', 'point': '48', 'batch': '1', 'agent': 'Smeg', 'rin': '9.3', 'individual': 'M375'}, 'GSM1646959': {'illumina_index': '5', 'point': '18', 'batch': '1', 'agent': 'GC', 'rin': '9', 'individual': 'M373'}, 'GSM2085752': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085753': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085750': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085751': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085756': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085757': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085754': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085755': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085758': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085759': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2304583': {'type': 'HUVEC', 'treatment': 'miR-93-5p mimic'}, 'GSM1279706': {'passages': 'PDL15', 'crosslinking': 'not applied', 'treatment': 'PDL 15 HuR siRNA', 'protein': 'not applied', 'type': 'WI-38 Total RNA', 'line': 'WI-38'}, 'GSM1510141': {'line': 'NYSCF1-ES', 'type': 'Undifferentiated embryonic stem cells'}, 'GSM1510140': {'line': '1018-iPS-C', 'type': 'Undifferentiated induced pluripotent stem cells'}, 'GSM2563849': {'experiment': 'siCtrl/Vehicle', 'group': '1', 'condition': 'ETOH'}, 'GSM2563848': {'experiment': 'siCtrl/Vehicle', 'group': '1', 'condition': 'ETOH'}, 'GSM2360154': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing empty pMSCV Hygro vector'}, 'GSM2360155': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing hyperactive YAP'}, 'GSM2360156': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing hyperactive YAP'}, 'GSM2360157': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing empty pMSCV Puro vector'}, 'GSM2360153': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing empty pMSCV Hygro vector'}, 'GSM2551413': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551412': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551411': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551410': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551417': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2551416': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551415': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551414': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551419': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551418': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2041879': {'line': 'WTC-CRISPRn', 'treatment': '-', 'sgrna': 'None'}, 'GSM2041878': {'line': 'WTC11', 'treatment': '+', 'sgrna': 'None'}, 'GSM2041877': {'line': 'WTC11', 'treatment': '-', 'sgrna': 'None'}, 'GSM2041876': {'line': 'WTC-CRISPRi', 'treatment': '+', 'sgrna': 'sgGCaMP'}, 'GSM2041875': {'line': 'WTC-CRISPRi', 'treatment': '-', 'sgrna': 'sgGCaMP'}, 'GSM2041874': {'line': 'WTC-CRISPRi', 'treatment': '+', 'sgrna': 'None'}, 'GSM2041873': {'line': 'WTC-CRISPRi', 'treatment': '-', 'sgrna': 'None'}, 'GSM2041872': {'line': 'WTC-CRISPRn', 'treatment': '+', 'sgrna': 'None'}, 'GSM2041871': {'line': 'WTC-CRISPRn', 'treatment': '-', 'sgrna': 'None'}, 'GSM2041870': {'line': 'WTC11', 'treatment': '+', 'sgrna': 'None'}, 'GSM2732860': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2536184': {'age': '81', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle1 treatment', 'Sex': 'male'}, 'GSM2259838': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259839': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2188722': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-245', 'er': 'negative'}, 'GSM2259834': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259835': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259836': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259837': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259830': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259831': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259832': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259833': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM1886862': {'line': 'SUDHL4', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM1886860': {'line': 'SUDHL4', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM1886861': {'line': 'SUDHL4', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM2705285': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '13.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705284': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '13.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705287': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 1', 'date': '13.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705286': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '12.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705281': {'pcr': 'KAPA Pol', 'inactivation': 'heat', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '15.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705280': {'pcr': 'KAPA Pol', 'inactivation': 'heat', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '15.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705283': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 1', 'date': '13.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705282': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '12.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705289': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '13.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705288': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '13.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2411414': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411415': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411410': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411411': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411412': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411413': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1172905': {'subtype': 'unknown', 'line': 'T47D Kbluc', 'type': 'breast cancer'}, 'GSM2316671': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2792487': {'storage': '24-hour preserved blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 1'}, 'GSM1172907': {'subtype': 'Luminal', 'line': 'UACC893', 'type': 'breast cancer'}, 'GSM2792486': {'storage': 'fresh blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 1'}, 'GSM1172906': {'subtype': 'Luminal', 'line': 'UACC812', 'type': 'breast cancer'}, 'GSM1172901': {'subtype': 'Luminal', 'line': 'SUM225CWN', 'type': 'breast cancer'}, 'GSM2711786': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM1172903': {'subtype': 'Luminal', 'line': 'SUM52PE', 'type': 'breast cancer'}, 'GSM2316677': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM3594448': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594449': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM1553218': {'line': 'HEK293', 'treatment': 'DRB washout t=20min.'}, 'GSM1553219': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553214': {'line': 'HEK293', 'treatment': 'DRB washout t=20min.'}, 'GSM1553215': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM3594440': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM1553217': {'line': 'HEK293', 'treatment': 'DRB washout t=10min.'}, 'GSM1553210': {'line': 'HEK293', 'treatment': 'DRB washout t=20min.'}, 'GSM1553211': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553212': {'line': 'HEK293', 'treatment': 'DRB (100 mM) 3hr'}, 'GSM1553213': {'line': 'HEK293', 'treatment': 'DRB washout t=10min.'}, 'GSM1172908': {'subtype': 'Luminal', 'line': 'ZR751', 'type': 'breast cancer'}, 'GSM2496684': {'line': 'INA-6'}, 'GSM2496685': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2496686': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496687': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2496680': {'line': 'INA-6'}, 'GSM2496681': {'line': 'INA-6'}, 'GSM2176139': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2496683': {'line': 'INA-6'}, 'GSM2176137': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176136': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176135': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176134': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176133': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176132': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176131': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176130': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1915608': {'donorid': '6926', 'type': 'primary human blood cell from fresh sample'}, 'GSM1586131': {'state': 'asthma', 'type': 'alveolar macrophages from BAL fluid', 'time': 'post-allergen challenge 48 hr'}, 'GSM1586130': {'state': 'asthma', 'type': 'alveolar macrophages from BAL fluid', 'time': 'pre-allergen challenge'}, 'GSM3580300': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM2746678': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '2'}, 'GSM2434008': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434009': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434006': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434007': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434004': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434005': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434002': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434003': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434000': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434001': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2559754': {'differentiation': 'Highly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P40', 'stage': 'A1(BCLC)'}, 'GSM2141928': {'line': 'MOLM-14', 'shRNAi': 'shControl'}, 'GSM2141929': {'line': 'MOLM-14', 'shRNAi': 'shMTHFD2'}, 'GSM2141926': {'line': 'MOLM-14', 'shRNAi': 'shControl'}, 'GSM2141927': {'line': 'MOLM-14', 'shRNAi': 'shControl'}, 'GSM2650192': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type +LDN'}, 'GSM2650193': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type +LDN'}, 'GSM2746677': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '2'}, 'GSM2559757': {'line': 'PANC-1', 'treatment': 'combination of chaetocin(30nM)+MLN3237(90nM)', 'passage': '<p30'}, 'GSM2746671': {'gender': 'Male', 'pathology': 'Control', 'batch': '1'}, 'GSM2746670': {'gender': 'Male', 'pathology': 'Control', 'batch': '1'}, 'GSM2559752': {'differentiation': 'Highly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P24', 'stage': 'B(BCLC)'}, 'GSM2746672': {'gender': 'Male', 'pathology': 'Control', 'batch': '1'}, 'GSM2454192': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454193': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454190': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454191': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454196': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454197': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454194': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454195': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2829992': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829993': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2454198': {'gender': 'Female', 'age': '42 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2829991': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829996': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829997': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829994': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829995': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2170607': {'stage': 'Hepatic endoderm 1'}, 'GSM1957145': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2479782': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479783': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479780': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479781': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2233298': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233299': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2479784': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2629511': {'type': 'H9 cells', 'treatment': 'untreated', 'time': 'day 14 of differentiation'}, 'GSM2233294': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233295': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233296': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233297': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233290': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233291': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233292': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233293': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2629513': {'type': 'H9 cells', 'treatment': 'untreated', 'time': 'day 14 of differentiation'}, 'GSM2629514': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 23 of differentiation'}, 'GSM2665713': {'age': 'Day 100', 'well': 'D7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2629516': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 23 of differentiation'}, 'GSM2665711': {'age': 'Day 100', 'well': 'C7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM1829814': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'Doxycycline was added day 11-14'}, 'GSM1829816': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'No doxycycline'}, 'GSM2937068': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM2937069': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM2937066': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM2937067': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM2937064': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM2937065': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM1829818': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'No doxycycline'}, 'GSM2937063': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM2937060': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM2937061': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM1306658': {'type': 'hepatoma cell line', 'stage': '--'}, 'GSM1306659': {'type': 'skin fibroblasts', 'stage': 'embryonic'}, 'GSM1306654': {'type': 'functional hepatocytes generated by lineage reprogramming', 'stage': '--'}, 'GSM1306655': {'type': 'functional hepatocytes generated by lineage reprogramming', 'stage': '--'}, 'GSM1306656': {'type': 'functional hepatocytes generated by lineage reprogramming', 'stage': '--'}, 'GSM1306657': {'type': 'functional hepatocytes generated by ES differentiation', 'stage': '--'}, 'GSM1306651': {'type': 'human embryonic stem cells'}, 'GSM1306652': {'type': 'liver parenchyma cells', 'stage': 'adult'}, 'GSM1306653': {'type': 'liver parenchyma cells', 'stage': 'adult'}, 'GSM2102541': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102540': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102543': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102542': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102545': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102544': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102547': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102546': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102549': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102548': {'information': 'Control', 'type': 'Amnion', 'gender': 'Female'}, 'GSM1006495': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-placebo', 'subject': 'A3'}, 'GSM2095409': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM2095408': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM2095407': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM2095406': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM2095405': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM2095404': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM1540500': {'state': 'Lyme disease', 'individual': 'patient 01-36', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540501': {'state': 'Lyme disease', 'individual': 'patient 01-37', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540502': {'state': 'Lyme disease', 'individual': 'patient 01-39', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540503': {'state': 'Lyme disease', 'individual': 'patient 01-40', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540504': {'state': 'Lyme disease', 'individual': 'patient 01-42', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540505': {'state': 'Lyme disease', 'individual': 'patient 01-44', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540506': {'state': 'Lyme disease', 'individual': 'patient 01-45', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540507': {'state': 'Lyme disease', 'individual': 'patient 01-46', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540508': {'state': 'Lyme disease', 'individual': 'patient 01-47', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540509': {'state': 'Lyme disease', 'individual': 'patient 01-48', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1278458': {'state': 'fALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278459': {'state': 'sALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM2064474': {'line': 'HeLa Kyoto cells', 'treatment': 'PWWP2A siRNA', 'batch': '6'}, 'GSM2064472': {'line': 'HeLa Kyoto cells', 'treatment': 'PWWP2A siRNA', 'batch': '4'}, 'GSM2064473': {'line': 'HeLa Kyoto cells', 'treatment': 'PWWP2A siRNA', 'batch': '5'}, 'GSM2064470': {'line': 'HeLa Kyoto cells', 'treatment': 'control siRNA', 'batch': '6'}, 'GSM2064471': {'line': 'HeLa Kyoto cells', 'treatment': 'PWWP2A siRNA', 'batch': '3'}, 'GSM1278454': {'state': 'sALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278455': {'state': 'sALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278456': {'state': 'sALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278457': {'state': 'sALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1382041': {'line': 'HCT116', 'type': 'human colon cancer cells'}, 'GSM2548619': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 10 uM Importazole'}, 'GSM2548618': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 10 uM Importazole'}, 'GSM2548617': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 1 uM Verapamil'}, 'GSM2548616': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 1 uM Verapamil'}, 'GSM2548615': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 1 uM Verapamil'}, 'GSM2548614': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 1 uM Verapamil'}, 'GSM2548613': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + Vehicle (0.1% DMSO)'}, 'GSM2548612': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + Vehicle (0.1% DMSO)'}, 'GSM2548611': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + Vehicle (0.1% DMSO)'}, 'GSM2548610': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + Vehicle (0.1% DMSO)'}, 'GSM2394412': {'antibody': 'IRF1, Santa Cruz #sc-497x', 'type': 'HAEC', 'treatment': 'IL1b, 4h', 'passage': '6 to 10'}, 'GSM2394413': {'antibody': 'IRF1, Santa Cruz #sc-497x', 'type': 'HAEC', 'treatment': 'TNFa, 4h', 'passage': '6 to 10'}, 'GSM2394410': {'antibody': 'H3K4me2, EMD Millipore #07-030', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2394411': {'antibody': 'H3K4me2, EMD Millipore #07-030', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2394416': {'antibody': 'JUNB, Santa Cruz #sc-73', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2394417': {'antibody': 'NRF2, Santa Cruz #sc-1694X', 'type': 'HAEC', 'treatment': 'oxpapc, 4h', 'passage': '6 to 10'}, 'GSM2394414': {'antibody': 'JUN, Santa Cruz #sc-13032X', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2394415': {'antibody': 'JUN, Santa Cruz #sc-13032X', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM1382045': {'line': 'HCT116', 'type': 'human colon cancer cells'}, 'GSM2394418': {'antibody': 'NRF2, Santa Cruz #sc-1694X', 'type': 'HAEC', 'treatment': 'oxpapc, 4h', 'passage': '6 to 10'}, 'GSM2394419': {'antibody': 'p65, Santa Cruz #sc-372X', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2212688': {'gender': 'male', 'condition': 'control'}, 'GSM2212689': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2717622': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM1612317': {'imortalization': 'none', 'medium': 'F99', 'type': 'endothelial'}, 'GSM1382046': {'line': 'HCT116', 'type': 'human colon cancer cells'}, 'GSM1382048': {'line': 'HCT116', 'type': 'human colon cancer cells'}, 'GSM1612316': {'imortalization': 'none', 'medium': 'F99', 'type': 'endothelial'}, 'GSM2277135': {'status': 'wildtype', 'line': '22Rv1'}, 'GSM1939334': {'type': 'LCLs B-cells'}, 'GSM1939333': {'type': 'LCLs B-cells'}, 'GSM1939332': {'type': 'LCLs B-cells'}, 'GSM1939331': {'type': 'LCLs B-cells'}, 'GSM1939330': {'type': 'LCLs B-cells'}, 'GSM1620444': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2572728': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '4', 'day': '1'}, 'GSM2572729': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '4', 'day': '3'}, 'GSM2572726': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '14', 'day': '7'}, 'GSM2572727': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '4', 'day': '0'}, 'GSM2572724': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '14', 'day': '1'}, 'GSM2572725': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '14', 'day': '3'}, 'GSM3025243': {'line': 'MCF7', 'treatment': 'PPT+PBDE153', 'batch': 'batch1'}, 'GSM3025242': {'line': 'MCF7', 'treatment': 'PPT+PBDE153', 'batch': 'batch1'}, 'GSM3025241': {'line': 'MCF7', 'treatment': 'PPT+PBDE100', 'batch': 'batch1'}, 'GSM3025240': {'line': 'MCF7', 'treatment': 'PPT+PBDE100', 'batch': 'batch1'}, 'GSM1782882': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM2204209': {'status': 'ex vivo; unstimulated', 'type': 'LN_Tfh', 'phenotype': 'Tfh(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1+CD57+)'}, 'GSM2277137': {'status': 'overexpression', 'line': 'LNCaP'}, 'GSM1921070': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM human SRA1 siRNA3 (Dharmacon,cat#J-027192-11-0002) for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1509512': {'etiology': 'Smoker', 'type': 'human bronchiolar epithelial cells'}, 'GSM1921072': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': 'Hela cells were transfected with an empty GFP vector in 10 cm dishes for 24 hours using Lipofectamin 2000 followed by sorting', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1509514': {'etiology': 'Non-smoker', 'type': 'human bronchiolar epithelial cells'}, 'GSM1273483': {'type': 'human umbilical vein endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '5'}, 'GSM1363031': {'line': 'LNCaP', 'type': 'Prostate cancer cell line', 'passage': '11'}, 'GSM1363030': {'line': 'VCaP', 'type': 'Prostate cancer cell line', 'passage': '40'}, 'GSM1363032': {'line': 'LNCaP', 'type': 'Prostate cancer cell line', 'passage': '11'}, 'GSM2817760': {'type': 'PANC-1', 'treatment': 'gemcitabine 10uM 24h'}, 'GSM2817761': {'type': 'PANC-1', 'treatment': 'gemcitabine 1uM 24h'}, 'GSM2817762': {'type': 'PANC-1', 'treatment': 'gemcitabine 1uM 24h'}, 'GSM2817763': {'type': 'PANC-1', 'treatment': 'gemcitabine 1uM 24h'}, 'GSM2817764': {'type': 'PANC-1', 'treatment': 'gemcitabine 1uM 24h'}, 'GSM2817765': {'type': 'PANC-1', 'treatment': 'gemcitabine 300nM 24h'}, 'GSM2817766': {'type': 'PANC-1', 'treatment': 'gemcitabine 300nM 24h'}, 'GSM2817767': {'type': 'PANC-1', 'treatment': 'gemcitabine 300nM 24h'}, 'GSM1273485': {'type': 'human aortic endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '8'}, 'GSM1980412': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980413': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980410': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980411': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980416': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980417': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980414': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980415': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980418': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980419': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1273488': {'type': 'human umbilical vein endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '5'}, 'GSM2392267': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1273489': {'type': 'human umbilical vein endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '8'}, 'GSM2392266': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392265': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2218726': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2735307': {'cohort': 'N/A', 'tils': '5', 'subtype': 'I', 'burden': 'Not evaluated', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735306': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '268', 'morphology': 'undifferentiated, round', 'event': 'N/A', 'stage': 'IV'}, 'GSM2735305': {'cohort': 'Unpaired', 'tils': '1', 'subtype': 'I', 'burden': '266', 'morphology': 'differentiated', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735304': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'II', 'burden': '313', 'morphology': 'undifferentiated, spindle', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735303': {'cohort': 'Unpaired', 'tils': '20', 'subtype': 'I', 'burden': '257', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735302': {'cohort': 'N/A', 'tils': '5', 'subtype': 'III', 'burden': 'Not evaluated', 'morphology': 'undifferentiated, spindle', 'event': 'N/A', 'stage': 'IV'}, 'GSM2735301': {'cohort': 'Paired', 'tils': '20', 'subtype': 'I', 'burden': '25', 'morphology': 'N/A', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735300': {'cohort': 'Paired', 'tils': '10', 'subtype': 'I', 'burden': '14', 'morphology': 'undifferentiated, round', 'event': 'Disease progression', 'stage': 'IV'}, 'GSM2735309': {'cohort': 'N/A', 'tils': 'Not evaluated', 'subtype': 'II', 'burden': 'Not evaluated', 'morphology': 'N/A', 'event': 'N/A', 'stage': 'III'}, 'GSM2735308': {'cohort': 'Paired', 'tils': '5', 'subtype': 'III', 'burden': '7', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2141294': {'individual': 'AF63', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141295': {'individual': 'AF63', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2386059': {'transfection': 'Control shRNA', 'type': 'Passage 3 preadipocytes'}, 'GSM2386058': {'transfection': 'Control shRNA', 'type': 'Passage 3 preadipocytes'}, 'GSM1697185': {'number': '90'}, 'GSM1697184': {'number': '23'}, 'GSM1697187': {'number': '40'}, 'GSM1697186': {'number': '61'}, 'GSM1697181': {'number': '34'}, 'GSM1697180': {'number': '41'}, 'GSM1697183': {'number': '76'}, 'GSM1697182': {'number': '38'}, 'GSM1436137': {'donor': 'G', 'type': 'DC 103'}, 'GSM1436136': {'donor': 'H', 'type': 'DC 14'}, 'GSM1436135': {'donor': 'H', 'type': 'DC 103'}, 'GSM1697189': {'number': '35'}, 'GSM1697188': {'number': '14'}, 'GSM2251931': {'type': 'neurons derived from ES cells'}, 'GSM2251930': {'type': 'adult astrocytes', 'agent': 'small molecules', 'time': '30 days'}, 'GSM1643967': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2 for 3h'}, 'GSM2214011': {'from': 'cord blood', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM1574305': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'MiaPaca2'}, 'GSM2214013': {'from': 'human induced pluripotent stem cells', 'type': 'Hemogenic endothelial cells'}, 'GSM2214012': {'from': 'human induced pluripotent stem cells', 'type': 'Hemogenic endothelial cells'}, 'GSM1574304': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'HPAF2'}, 'GSM2153158': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM1323687': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '6.63', 'reads': '93,161,306', 'tissue': 'prostate', 'u': '69.8', 'mapped': '51.2%', 'id': 'VA-PC-99-55', 'bcr': '0'}, 'GSM1323684': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '7.84', 'reads': '99,888,664', 'tissue': 'prostate', 'u': '96.1', 'mapped': '14.9%', 'id': 'VA-PC-97-52', 'bcr': '0'}, 'GSM1323685': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '12.56', 'reads': '144,564,326', 'tissue': 'prostate', 'u': '97.9', 'mapped': '66.6%', 'id': 'VA-PC-97-74', 'bcr': '0'}, 'GSM1323682': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '8', 'reads': '88,543,368', 'tissue': 'prostate', 'u': '83.0', 'mapped': '47.8%', 'id': 'VA-PC-97-50', 'bcr': '0'}, 'GSM1323683': {'tgleason': '7', 'race': 'B', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2B', 'site': 'Atlanta VA Medical Center', 'prepsa': '7.1', 'reads': '74,819,768', 'tissue': 'prostate', 'u': '89.3', 'mapped': '29.3%', 'id': 'VA-PC-97-51', 'bcr': '0'}, 'GSM1323680': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '7.57', 'reads': '65,304,766', 'tissue': 'prostate', 'u': '96.6', 'mapped': '59.9%', 'id': 'VA-PC-97-48', 'bcr': '0'}, 'GSM1323681': {'tgleason': '6', 'race': 'W', 'score': '336', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '10.63', 'reads': '83,903,516', 'tissue': 'prostate', 'u': '97.3', 'mapped': '45.3%', 'id': 'VA-PC-97-49', 'bcr': '0'}, 'GSM2153150': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153151': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153152': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153153': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153154': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153155': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153156': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153157': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM1939009': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL mutant'}, 'GSM2458801': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM2732892': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732890': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732891': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM1437668': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437669': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1964973': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1437664': {'tissue': 'Bladder', 'stage': 'pT2'}, 'GSM1437665': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437666': {'tissue': 'Bladder', 'stage': 'pT2'}, 'GSM1437667': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM1437660': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437661': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437662': {'tissue': 'Bladder', 'stage': 'pT2'}, 'GSM1437663': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM2361777': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361776': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361775': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361774': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361773': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361772': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361771': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361770': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361779': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361778': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2043747': {'status': 'HIV+', 'individual': '0629-453', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'ART', 'infection': '40'}, 'GSM2043746': {'status': 'HIV+', 'individual': '0629-453', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'ART', 'infection': '40'}, 'GSM2043745': {'status': 'HIV+', 'individual': '0629-453', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'ART', 'infection': '6'}, 'GSM2043744': {'status': 'HIV+', 'individual': '0629-453', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'ART', 'infection': '6'}, 'GSM1964972': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2043742': {'status': 'HIV+', 'individual': '0629-453', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'ART', 'infection': '1'}, 'GSM2043741': {'status': 'HIV+', 'individual': '0387-272', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'Untreated', 'infection': '49'}, 'GSM2364547': {'antibody': 'MLL1 (Bethyl, A300-086A)', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2551383': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551382': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551381': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551380': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2551387': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551386': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551385': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2043748': {'status': 'HIV+', 'individual': '0444-312', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'ART', 'infection': '2'}, 'GSM2607547': {'line': 'WA26'}, 'GSM2172095': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172096': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172097': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2607543': {'line': 'WA26'}, 'GSM2607542': {'line': 'WA26'}, 'GSM2172092': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2607540': {'line': 'WA26'}, 'GSM2172098': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172099': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2607549': {'line': 'WA26'}, 'GSM2607548': {'line': 'WA26'}, 'GSM1554620': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554621': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554622': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554623': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554624': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554625': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554626': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554627': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554628': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554629': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2166417': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166416': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166411': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166410': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166413': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166412': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2081454': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM1312709': {'line': 'HGDP00716', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Cambodian'}, 'GSM1312708': {'line': 'HGDP00715', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Cambodian'}, 'GSM1312707': {'line': 'HGDP00713', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Cambodian'}, 'GSM1312706': {'line': 'HGDP00712', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Cambodian'}, 'GSM1312705': {'line': 'HGDP00711', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Cambodian'}, 'GSM1414496': {'tissue': 'Human ovarian PDX tumor'}, 'GSM2626994': {'origin': 'pancreas', 'patient_id': '125', 'type': 'primary', 'tumor_id': '99'}, 'GSM1322973': {'subtype': 'SS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322972': {'subtype': 'SS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322971': {'subtype': 'SS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322970': {'subtype': 'PVNS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1964977': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1670803': {'type': 'Day 2 differentiated cells (NPCs)'}, 'GSM1670802': {'type': 'undifferentiated hESCs'}, 'GSM1670807': {'type': 'Day 10 differentiated cells (NPCs)'}, 'GSM1670806': {'type': 'Day 8 differentiated cells (NPCs)'}, 'GSM1670805': {'type': 'Day 6 differentiated cells (NPCs)'}, 'GSM1670804': {'type': 'Day 4 differentiated cells (NPCs)'}, 'GSM1670809': {'type': 'Day 14 differentiated cells (NPCs)'}, 'GSM1670808': {'type': 'Day 12 differentiated cells (NPCs)'}, 'GSM758635': {'status': 'Control', 'tissue': 'brain region BA41 (temporal cortex)'}, 'GSM1982482': {'transfection': 'HNF1alpha and HNF1beta siRNA'}, 'GSM1982481': {'transfection': 'HNF1alpha and HNF1beta siRNA'}, 'GSM1982480': {'transfection': 'HNF1alpha and HNF1beta siRNA'}, 'GSM758631': {'status': 'Autism', 'tissue': 'brain region BA22 (temporal cortex)'}, 'GSM758633': {'status': 'Autism', 'tissue': 'brain region BA09 (frontal cortex)'}, 'GSM758632': {'status': 'Autism', 'tissue': 'brain region BA41 (temporal cortex)'}, 'GSM1964976': {'line': 'HeLa-229', 'variation': 'transfection with miR-29b-2-5p (50nM, 72h)'}, 'GSM1642837': {'line': 'SW13', 'type': 'Adrenocortical carcinoma cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM2229910': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS17'}, 'GSM1642835': {'line': 'SW13', 'type': 'Adrenocortical carcinoma cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM1642834': {'line': 'SW13', 'type': 'Adrenocortical carcinoma cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642833': {'line': 'Panc.04.03', 'type': 'Pancreatic adenocarcinoma epithelial cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1642832': {'line': 'Panc.04.03', 'type': 'Pancreatic adenocarcinoma epithelial cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM1642831': {'line': 'Panc.04.03', 'type': 'Pancreatic adenocarcinoma epithelial cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM2229911': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS17'}, 'GSM1414490': {'tissue': 'Human ovarian PDX tumor'}, 'GSM2141487': {'individual': 'AF167', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1321440': {'line': 'H1299'}, 'GSM2109423': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109422': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109421': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109420': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109427': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109426': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109425': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2081258': {'type': 'iPS derived endothelial cells from CD', 'condition': '3D culture of endothelial cells in 50% MMP degradable PEG-NB hydrogel, day5', 'passage': '3'}, 'GSM2081257': {'type': 'iPS derived endothelial cells from CD', 'condition': '3D culture of endothelial cells in 50% MMP degradable PEG-NB hydrogel, day3', 'passage': '3'}, 'GSM2081256': {'type': 'iPS derived endothelial cells from CD', 'condition': '3D culture of endothelial cells in 50% MMP degradable PEG-NB hydrogel, day2', 'passage': '3'}, 'GSM2109429': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109428': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2229918': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS13'}, 'GSM2430851': {'duration': '12 hr', 'pattern': 'Oscillatory', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430850': {'duration': '4 hr', 'pattern': 'Oscillatory', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430852': {'duration': '24 hr', 'pattern': 'Oscillatory', 'type': 'HUVEC', 'batch': '2'}, 'GSM2076772': {'tissue': 'Bone marrow', 'id': '437'}, 'GSM2076773': {'tissue': 'Bone marrow', 'id': '547'}, 'GSM2076771': {'tissue': 'Bone marrow', 'id': '432'}, 'GSM2076776': {'tissue': 'Bone marrow', 'id': '743'}, 'GSM2076777': {'tissue': 'Bone marrow', 'id': '744'}, 'GSM2076774': {'tissue': 'Bone marrow', 'id': '693'}, 'GSM2076775': {'tissue': 'Bone marrow', 'id': '716'}, 'GSM2076778': {'tissue': 'Bone marrow', 'id': '744'}, 'GSM2076779': {'tissue': 'Bone marrow', 'id': '748'}, 'GSM2704062': {'status': 'activated', 'genotype': 'DOCK8 KO'}, 'GSM2704060': {'status': 'not activated', 'genotype': 'DOCK8 KO'}, 'GSM2704061': {'status': 'activated', 'genotype': 'DOCK8 KO'}, 'GSM2454165': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2420663': {'line': 'HEK293T'}, 'GSM2420662': {'line': 'HEK293T'}, 'GSM2328813': {'type': 'normal lymphatic collector'}, 'GSM2328812': {'type': 'normal lymphatic collector'}, 'GSM2420667': {'line': 'HEK293T'}, 'GSM2420666': {'line': 'HEK293T'}, 'GSM2328817': {'type': 'normal lymphatic collector'}, 'GSM2328816': {'type': 'normal lymphatic collector'}, 'GSM2328819': {'type': 'normal lymphatic collector'}, 'GSM2328818': {'type': 'normal lymphatic collector'}, 'GSM2420669': {'line': 'HEK293T'}, 'GSM2420668': {'line': 'HEK293T'}, 'GSM1405119': {'source': 'IP with Ab anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'line': 'HeLa', 'antibody': 'anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'treatment': 'INTS11 occupancy examined cycling non starved wt Hela Cells', 'type': 'ChIP-seq'}, 'GSM1405118': {'source': 'IP with Ab anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'line': 'HeLa', 'antibody': 'anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'treatment': 'INTS11 occupancy examined cycling non starved wt Hela Cells', 'type': 'ChIP-seq'}, 'GSM1405113': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined before and after EGF stimulation in starved wild-type Hela Cells', 'type': 'ChIP-seq'}, 'GSM1405112': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined before and after EGF stimulation in starved wild-type Hela Cells', 'type': 'ChIP-seq'}, 'GSM1405111': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined before and after EGF stimulation in starved wild-type Hela Cells', 'type': 'ChIP-seq'}, 'GSM1405110': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined before and after EGF stimulation in starved wild-type Hela Cells', 'type': 'ChIP-seq'}, 'GSM1405117': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined after EGF stimulation in a doxocycline inducible knock-down cell line for INTS11', 'type': 'ChIP-seq'}, 'GSM1405116': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined after EGF stimulation in a doxocycline inducible knock-down cell line for INTS11', 'type': 'ChIP-seq'}, 'GSM1405115': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined after EGF stimulation in a doxocycline inducible knock-down cell line for INTS11', 'type': 'ChIP-seq'}, 'GSM1405114': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined after EGF stimulation in a doxocycline inducible knock-down cell line for INTS11', 'type': 'ChIP-seq'}, 'GSM3586799': {'origin': 'UNCLASSIFIED', 'pfstt': '738', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '788', 'cycles': '6', 'oscs': '0'}, 'GSM3586798': {'origin': 'GCB', 'pfstt': '772', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '822', 'cycles': '8', 'oscs': '0'}, 'GSM2210109': {'source': 'H9 human embryonic stem cells', 'state': 'undifferentiated', 'type': 'human embryonic stem cells', 'stiffness': '400Pa'}, 'GSM3586795': {'origin': 'UNCLASSIFIED', 'pfstt': '273', 'pfscs': '1', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '560', 'cycles': '6', 'oscs': '1'}, 'GSM1574769': {'concentration': '3304.1', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Diclofenac', 'conc': '46.3'}, 'GSM1574768': {'concentration': '1998.3', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Diclofenac', 'conc': '33.8'}, 'GSM3586794': {'origin': 'GCB', 'pfstt': '887', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '887', 'cycles': '6', 'oscs': '0'}, 'GSM1574763': {'concentration': '31071.5', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Compound 3uM', 'conc': '55.6'}, 'GSM1574762': {'concentration': '15792.4', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Compound 1uM', 'conc': '50.1'}, 'GSM1574761': {'concentration': '23800.5', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Compound 1uM', 'conc': '50.4'}, 'GSM1574760': {'concentration': '32468.6', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '65.9'}, 'GSM1574767': {'concentration': '5966.4', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Compound 10uM', 'conc': '57.6'}, 'GSM1574766': {'concentration': '36735.3', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Compound 10uM', 'conc': '60.2'}, 'GSM1574765': {'concentration': '6037.3', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Compound 10uM', 'conc': '40.3'}, 'GSM1574764': {'concentration': '13019', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Compound 3uM', 'conc': '46'}, 'GSM1022950': {'antibody': 'PolIISer5 [Abcam, Cat no. ab5131, Lot no. 949433]', 'type': 'CD4+ T cells', 'treatment': 'JQ1 treated'}, 'GSM2754760': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_1003', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754761': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_1067', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754762': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_1067', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754763': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0779', 'previousdiagnosisoftb': 'No', 'tst': '12', 'type': 'Tcells'}, 'GSM2754764': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': '15', 'type': 'Tcells'}, 'GSM2754765': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0843', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754766': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0361', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754767': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0369', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754768': {'bin': '7', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '03_0545', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754769': {'bin': '7', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '03_0697', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1914604': {'type': 'cerebral organoid'}, 'GSM1914605': {'type': 'cerebral organoid'}, 'GSM1914602': {'type': 'cerebral organoid'}, 'GSM1914603': {'type': 'cerebral organoid'}, 'GSM1914600': {'type': 'cerebral organoid'}, 'GSM2616771': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM922267': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922266': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM1919380': {'status': 'Treatment-naïve', 'patient': 'Patient 10', 'tissue': 'Colonic mucosa', 'type': 'Whole tissue', 'diagnosis': 'normal'}, 'GSM1919381': {'status': 'Treatment-naïve', 'patient': 'Patient 10', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1919382': {'status': 'Treatment-naïve', 'patient': 'Patient 18', 'tissue': 'Colonic mucosa', 'type': 'Whole tissue', 'diagnosis': 'normal'}, 'GSM1919383': {'status': 'Treatment-naïve', 'patient': 'Patient 18', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1919384': {'status': 'Treatment-naïve', 'patient': 'Patient 19', 'tissue': 'Colonic mucosa', 'type': 'Whole tissue', 'diagnosis': 'normal'}, 'GSM1919385': {'status': 'Treatment-naïve', 'patient': 'Patient 19', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1919386': {'status': 'Treatment-naïve', 'patient': 'Patient 19', 'tissue': 'Colorectal ovarian metastasis', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1919387': {'status': 'Treatment-naïve', 'patient': 'Patient 20', 'tissue': 'Colonic mucosa', 'type': 'Whole tissue', 'diagnosis': 'normal'}, 'GSM1647926': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1647927': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1647924': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1647925': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1564313': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '25', 'replicate': '2', 'hcc827': '75'}, 'GSM1647923': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1564311': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '100', 'replicate': '1', 'hcc827': '0'}, 'GSM1564310': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '75', 'replicate': '1', 'hcc827': '25'}, 'GSM2670888': {'mutation': 'Y537S', 'line': 'SUM44', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2519389': {'with': 'none (non-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'pulldown', 'passage': 'p5-15'}, 'GSM2670884': {'mutation': 'none', 'line': 'SUM44', 'tissue': 'breast cancer cell line', 'estrogen': 'Yes', 'provider': 'ATCC'}, 'GSM2670885': {'mutation': 'none', 'line': 'SUM44', 'tissue': 'breast cancer cell line', 'estrogen': 'Yes', 'provider': 'ATCC'}, 'GSM2670886': {'mutation': 'Y537S', 'line': 'SUM44', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2670887': {'mutation': 'Y537S', 'line': 'SUM44', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2670880': {'mutation': 'Y537C', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2670881': {'mutation': 'Y537C', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2670882': {'mutation': 'Y537C', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2670883': {'mutation': 'none', 'line': 'SUM44', 'tissue': 'breast cancer cell line', 'estrogen': 'Yes', 'provider': 'ATCC'}, 'GSM2130409': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2134296': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2134297': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2130408': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2134298': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2134299': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2325993': {'type': 'Human embryonic stem cell'}, 'GSM2325992': {'type': 'Human embryonic stem cell'}, 'GSM2325991': {'type': 'Human embryonic stem cell'}, 'GSM2325990': {'type': 'Human embryonic stem cell'}, 'GSM2325997': {'type': 'Human embryonic stem cell'}, 'GSM2325996': {'type': 'Human embryonic stem cell'}, 'GSM2325995': {'type': 'Human embryonic stem cell'}, 'GSM2325994': {'type': 'Human embryonic stem cell'}, 'GSM1716668': {'type': 'Neutrophils', 'method': 'Polymorphprep (poly)', 'treatment': 'TNF-alpha (10ng/mL) 1h'}, 'GSM2325999': {'type': 'Human embryonic stem cell'}, 'GSM2325998': {'type': 'Human embryonic stem cell'}, 'GSM1716669': {'type': 'Neutrophils', 'method': 'Negative selection (beads)', 'treatment': 'Untreated 1h'}, 'GSM907529': {'gender': 'M', 'age': '74', 'histologics': 'Diffuse', 'Stage': 'IV'}, 'GSM907528': {'gender': 'M', 'age': '83', 'histologics': 'Mixed', 'Stage': 'I'}, 'GSM2048533': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1275173': {'type': 'B CD19 Lymphocytes', 'phenotype': 'Control'}, 'GSM2550249': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550248': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2664072': {'status': 'p53+/+', 'identifier': 'P4902_1011', 'type': 'cytosolic RNA', 'method': 'NA', 'background': 'HCT116'}, 'GSM2664073': {'status': 'p53-/-', 'identifier': 'P4902_1012', 'type': 'cytosolic RNA', 'method': 'NA', 'background': 'HCT116'}, 'GSM2664074': {'status': 'p53+/+', 'identifier': 'P4902_1013', 'type': 'polysome-associated RNA', 'method': 'Linear gradient', 'background': 'HCT116'}, 'GSM2664075': {'status': 'p53-/-', 'identifier': 'P4902_1014', 'type': 'polysome-associated RNA', 'method': 'Linear gradient', 'background': 'HCT116'}, 'GSM2664076': {'status': 'p53-/-', 'identifier': 'P4902_1015', 'type': 'polysome-associated RNA', 'method': 'Optimized non-linear gradient', 'background': 'HCT116'}, 'GSM2664077': {'status': 'p53+/+', 'identifier': 'P4902_1016', 'type': 'polysome-associated RNA', 'method': 'Optimized non-linear gradient', 'background': 'HCT116'}, 'GSM2664078': {'status': 'p53+/+', 'identifier': 'P4902_1017', 'type': 'cytosolic RNA', 'method': 'NA', 'background': 'HCT116'}, 'GSM2664079': {'status': 'p53-/-', 'identifier': 'P4902_1018', 'type': 'cytosolic RNA', 'method': 'NA', 'background': 'HCT116'}, 'GSM2550243': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550242': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550245': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550244': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550247': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550246': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2131583': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131582': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131581': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131580': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131587': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131586': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131585': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131584': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM1914479': {'group': 'HD_NSC', 'region': 'HD', 'type': 'NSC'}, 'GSM2131589': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131588': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM1914478': {'group': 'HD_NSC', 'region': 'HD', 'type': 'NSC'}, 'GSM1909463': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'wild type'}, 'GSM2298848': {'line': 'HeLa', 'antibody': 'mouse anti-FLAG M2 antibody (Sigma Aldrich)', 'variation': 'expressing C-terminally flag tagged-UPF1 under endogenous UPF1 knockdown'}, 'GSM2298849': {'line': 'HeLa', 'antibody': 'mouse anti-FLAG M2 antibody (Sigma Aldrich)', 'variation': 'expressing C-terminally flag tagged-UPF1 under endogenous UPF1 knockdown'}, 'GSM2170801': {'stage': 'iPSC line'}, 'GSM2170800': {'stage': 'iPSC line'}, 'GSM2283992': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM2283993': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM2453948': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453949': {'code': '404'}, 'GSM2170807': {'stage': 'iPSC line'}, 'GSM2170806': {'stage': 'iPSC line'}, 'GSM2170809': {'stage': 'iPSC line'}, 'GSM2170808': {'stage': 'iPSC line'}, 'GSM2453946': {'code': '404'}, 'GSM2453947': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453940': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1658380': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': '+', 'cd13': '+'}, 'GSM2453942': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453943': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1658381': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': '+', 'cd13': '+'}, 'GSM1466829': {'line': 'H9'}, 'GSM1963848': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963849': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2276809': {'line': 'LNCaP', 'tissue': 'Prostate', 'treatment': 'transfected with Empty vector plasimd'}, 'GSM1963847': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1074489': {'type': 'THP1', 'glucose': 'High 25 mM'}, 'GSM1074488': {'type': 'THP1', 'glucose': 'Normal 5 mM'}, 'GSM1658388': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': '-', 'gfp': '-', 'cd13': 'NA'}, 'GSM1658389': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': '-', 'gfp': '+', 'cd13': 'NA'}, 'GSM1963842': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963843': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1655594': {'line': 'TOV21G', 'treatment': 'DMSO treated for 4 h'}, 'GSM1655595': {'line': 'TOV21G', 'treatment': 'pladienolide B treated for 4 h'}, 'GSM1655596': {'line': 'TOV21G', 'treatment': 'pladienolide B treated for 4 h'}, 'GSM1829822': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'Doxycycline was added day 11-14'}, 'GSM1655590': {'line': 'TOV21G', 'treatment': 'Control siRNA transfection for 48 h'}, 'GSM1655591': {'line': 'TOV21G', 'treatment': 'Control siRNA transfection for 48 h'}, 'GSM1655592': {'line': 'TOV21G', 'treatment': 'Control siRNA transfection for 48 h'}, 'GSM1655593': {'line': 'TOV21G', 'treatment': 'DMSO treated for 4 h'}, 'GSM1963841': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1829828': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'No doxycycline'}, 'GSM2593186': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM1524869': {'tissue': 'heart; atrial appendages', 'type': 'c-Kit+ cells', 'passage': 'passage 2'}, 'GSM1245254': {'antibody': 'input', 'line': 'T47D', 'passages': '5-8', 'type': 'breast cancer cell line'}, 'GSM2176078': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176079': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2565326': {'construction': 'PLATE-Seq', 'drug': 'PRISTIMERIN'}, 'GSM2176072': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176073': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176070': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176071': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176076': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176077': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176074': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176075': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM957360': {'sample': 'GM07022', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1340'}, 'GSM957361': {'sample': 'GM07034', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1341'}, 'GSM957362': {'sample': 'GM07055', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1341'}, 'GSM957363': {'sample': 'GM07056', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1340'}, 'GSM957364': {'sample': 'GM07345', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1345'}, 'GSM957365': {'sample': 'GM11829', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1350'}, 'GSM957366': {'sample': 'GM11830', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1350'}, 'GSM957367': {'sample': 'GM11831', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1350'}, 'GSM957368': {'sample': 'GM11832', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1350'}, 'GSM957369': {'sample': 'GM11839', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1349'}, 'GSM1245255': {'line': 'T47D', 'passages': '5-8', 'type': 'breast cancer cell line'}, 'GSM1969390': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969391': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM2243390': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 132'}, 'GSM1726439': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM2243396': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 147'}, 'GSM2243397': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 147'}, 'GSM2243394': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 263'}, 'GSM2243395': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 263'}, 'GSM1969398': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969399': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - pleomorphic', 'localization': 'Lower limb'}, 'GSM2243398': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 147'}, 'GSM2243399': {'line': 'HEK293-DAX', 'tissue': 'kidney', 'treatment': 'DMSO'}, 'GSM1963947': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963946': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963945': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963944': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963943': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963942': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963941': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963940': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963949': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963948': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM2238620': {'group': 'RB1-null'}, 'GSM2238621': {'group': 'RB1-null'}, 'GSM2238622': {'group': 'RB1-null'}, 'GSM2481899': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481898': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2095195': {'line': 'A549 cells', 'agent': 'dex'}, 'GSM2095194': {'line': 'A549 cells', 'agent': 'dex'}, 'GSM2095197': {'line': 'A549 cells', 'agent': 'etoh'}, 'GSM2095196': {'line': 'A549 cells', 'agent': 'etoh'}, 'GSM2348408': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348409': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348400': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348401': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348402': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348403': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348404': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348405': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348406': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348407': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565304': {'construction': 'PLATE-Seq', 'drug': 'Methyl 2,5-dihydroxycinnamate'}, 'GSM2565305': {'construction': 'PLATE-Seq', 'drug': 'ZK 93423'}, 'GSM2226816': {'information': 'Latent Tuberculosis - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM2226817': {'information': 'Active Tuberculosis', 'tissue': 'whole blood'}, 'GSM2565300': {'construction': 'PLATE-Seq', 'drug': 'Tivozanib (AV-951)'}, 'GSM2226811': {'information': 'Latent Tuberculosis - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM2226812': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2565303': {'construction': 'PLATE-Seq', 'drug': 'SAPPANONE A DIMETHYL ETHER'}, 'GSM2226818': {'information': 'Treated Active Tuberculosis', 'tissue': 'whole blood'}, 'GSM2226819': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2590542': {'differentiation': '21', 'type': 'electrically immature motor neurons', 'id': 'MUT 1', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R155C'}, 'GSM2396979': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE'}, 'GSM2396978': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.miR-9/9*.miR-124.pGK.Ascl1.WPRE'}, 'GSM2396973': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'none'}, 'GSM2396977': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.miR-9/9*.miR-124.pGK.Ascl1.WPRE'}, 'GSM2396976': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.miR-9/9*.miR-124.pGK.Ascl1.WPRE'}, 'GSM2396975': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'none'}, 'GSM2396974': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'none'}, 'GSM2535808': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4058', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25017', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C50', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4058', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C50'}, 'GSM2535809': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4059', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25018', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C56', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4059', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C56'}, 'GSM2535806': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4055', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25014', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C55', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4055', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C55'}, 'GSM2535807': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4057', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25016', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C87', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4057', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C87'}, 'GSM2535804': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4053', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25012', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C19', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4053', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C19'}, 'GSM2535805': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4054', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25013', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C49', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4054', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C49'}, 'GSM2535802': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4051', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25010', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C01', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4051', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C01'}, 'GSM2535803': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4052', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25011', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C07', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4052', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C07'}, 'GSM2535800': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4049', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25008', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C26', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4049', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C26'}, 'GSM2535801': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4050', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25009', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C44', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4050', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C44'}, 'GSM1922968': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': 'chronic 2 µM PD0325901'}, 'GSM1922969': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': '8 day 1.5 µM GSKJ4'}, 'GSM1922966': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': '12 day 1 µM dasatinib'}, 'GSM1922967': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': 'none'}, 'GSM1922964': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': '4 day 1 µM dasatinib'}, 'GSM1922965': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': '12 day 1 µM dasatinib, 8 day 1.5 µM GSKJ4'}, 'GSM1922962': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM1922963': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': '4 day 1 µM dasatinib, 4 day 1.5 µM GSKJ4'}, 'GSM1922960': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': '8 day 1.5 µM GSKJ4'}, 'GSM1922961': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': '4 day 1.5 µM GSKJ4'}, 'GSM2288689': {'line': 'HK2', 'type': 'Epithelial', 'state': 'Normal', 'target': 'LATS'}, 'GSM2288688': {'line': 'A704', 'type': 'Epithelial', 'state': 'Cancer', 'target': 'non-targeting'}, 'GSM2107736': {'line': 'REH', 'treatment': 'lnc-TIMM21-5 LNA GapmeR1', 'time': '72h'}, 'GSM2288685': {'line': 'A704', 'type': 'Epithelial', 'state': 'Cancer', 'target': 'LATS'}, 'GSM2288687': {'line': 'A704', 'type': 'Epithelial', 'state': 'Cancer', 'target': 'PTPN14'}, 'GSM2288686': {'line': 'A704', 'type': 'Epithelial', 'state': 'Cancer', 'target': 'PTPN14'}, 'GSM2035728': {'with': 'lentiviral shRNA vector targeting HOXA7', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2374208': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2035720': {'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM2035721': {'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2035722': {'with': 'emtpy lentiviral vector (LKO)', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2035723': {'with': 'emtpy lentiviral vector (LKO)', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2035724': {'with': 'emtpy lentiviral vector (LKO)', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2035725': {'with': 'emtpy lentiviral vector (LKO)', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2035726': {'with': 'lentiviral shRNA vector targeting HOXA7', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2035727': {'with': 'lentiviral shRNA vector targeting HOXA7', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM1853589': {'line': 'HeLa', 'treatment': '40nM Ctrl siRNA - Dharmacon'}, 'GSM1422449': {'patient': 'yes', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1853587': {'line': 'HeLa', 'treatment': '40nM Ctrl siRNA - Dharmacon'}, 'GSM1853586': {'line': 'HeLa', 'treatment': '40nM Ctrl siRNA - Dharmacon'}, 'GSM2307124': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1853584': {'line': 'HeLa', 'treatment': '20nM DIS3 siRNA - Dharmacon'}, 'GSM2307122': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307123': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307120': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1853580': {'line': 'HeLa', 'treatment': '20nM DIS3 siRNA - Dharmacon'}, 'GSM2455621': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2100109': {'rin': '9.5', 'Sex': 'Female', 'sspg': '248', 'age': '67', 'bmi': '30.9', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '708', 'method': 'Qiagen:trizol'}, 'GSM2455620': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1055822': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'PolII (Santa Cruz sc-899)', 'treatment': 'no treat'}, 'GSM2455626': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1917104': {'transduction': 'cotransduced with pWZL-Hygro and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917105': {'transduction': 'cotransduced with pWZL-Hygro and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917106': {'transduction': 'cotransduced with pWZL-Hygro and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917107': {'transduction': 'cotransduced with pWZL HRASV12 and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917100': {'transduction': 'cotransduced with pWZL HRASV12 and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1055820': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K36me3 (Abcam ab9050)', 'treatment': 'no treat'}, 'GSM1917102': {'transduction': 'cotransduced with pWZL-Hygro and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917103': {'transduction': 'cotransduced with pWZL-Hygro and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM2455624': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1917108': {'transduction': 'cotransduced with pWZL HRASV12 and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917109': {'transduction': 'cotransduced with pWZL HRASV12 and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM2312155': {'culture': '12', 'line': 'DCX-'}, 'GSM2312154': {'culture': '12', 'line': 'DCX-'}, 'GSM2769062': {'antibody': 'Pol II(CST, #14958)', 'line': 'DLD-1-OsTIR1', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2769061': {'antibody': 'Pol II(CST, #14958)', 'line': 'DLD-1-OsTIR1', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2769060': {'antibody': 'Pol II(CST, #14958)', 'line': 'DLD-1-OsTIR1', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2565128': {'construction': 'PLATE-Seq', 'drug': 'Dasatinib'}, 'GSM2432769': {'line': 'LNCaP', 'type': 'human prostate cancer cell line', 'treatment': 'dihydrotestosterone (DHT)'}, 'GSM2287530': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2432765': {'line': 'VCaP', 'type': 'human prostate cancer cell line', 'treatment': 'dihydrotestosterone (DHT)'}, 'GSM2432767': {'line': 'VCaP', 'type': 'human prostate cancer cell line', 'treatment': 'none'}, 'GSM2610979': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2565129': {'construction': 'PLATE-Seq', 'drug': 'Bleomycin sulfate'}, 'GSM2194641': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194640': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194643': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194642': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194645': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194644': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194647': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194646': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194649': {'type': 'acinar', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194648': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2610971': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM1540539': {'state': 'Lyme disease', 'individual': 'patient 01-52', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM2095411': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM2114021': {'with': 'RV-miR-9', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM01835', 'diagnosis': 'Schizophrenia (SZ)'}, 'GSM2114020': {'with': 'RV GFP', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM01835', 'diagnosis': 'Schizophrenia (SZ)'}, 'GSM2114022': {'with': 'RV-miR-9', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM01835', 'diagnosis': 'Schizophrenia (SZ)'}, 'GSM1566748': {'type': 'SGBS adipocyte D10'}, 'GSM1566749': {'type': 'SGBS adipocyte D10'}, 'GSM1566742': {'type': 'SGBS adipocyte D10'}, 'GSM1566743': {'type': 'SGBS adipocyte D10'}, 'GSM1566740': {'type': 'SGBS adipocyte D10'}, 'GSM1566741': {'type': 'SGBS adipocyte D10'}, 'GSM1566746': {'type': 'SGBS adipocyte D10'}, 'GSM1566747': {'type': 'SGBS adipocyte D10'}, 'GSM1566744': {'type': 'SGBS adipocyte D10'}, 'GSM1566745': {'type': 'SGBS adipocyte D10'}, 'GSM2251214': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251215': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251216': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251217': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1540531': {'state': 'Lyme disease', 'individual': 'patient 01-44', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM2251218': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251219': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2095419': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 5'}, 'GSM1150606': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5614', 'number': '19'}, 'GSM1150607': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5616', 'number': '19'}, 'GSM1150604': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5612', 'number': '17'}, 'GSM1150605': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5613', 'number': '17'}, 'GSM1150602': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5581', 'number': '16'}, 'GSM1150603': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5611', 'number': '17'}, 'GSM1150600': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5578', 'number': '15'}, 'GSM1150601': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5580', 'number': '16'}, 'GSM1150608': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5617', 'number': '19'}, 'GSM1150609': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5618', 'number': '18'}, 'GSM2456055': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM3397821': {'status': 'ectopic expression', 'type': 'Cancer cells'}, 'GSM3397820': {'status': 'ectopic expression', 'type': 'Cancer cells'}, 'GSM1946478': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'stage': 'asynchronization'}, 'GSM2430720': {'type': 'human foreskin keratinocytes', 'with': 'vector expressing HPV16 E6/E7'}, 'GSM1946476': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM1946477': {'antibody': 'H3K36me2 (Cell Signaling Technonelogy, catalog# 2901, lot# 5)', 'media': 'frozen tissues', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'type': 'primary bone cells (generated from surgical waste of bone tissues)', 'stage': 'asynchronization'}, 'GSM1946474': {'antibody': 'none', 'media': 'frozen tissues', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'type': 'primary bone cells (generated from surgical waste of bone tissues)', 'stage': 'asynchronization'}, 'GSM1946475': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM1946472': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'stage': 'asynchronization'}, 'GSM1946473': {'antibody': 'none', 'media': 'frozen tissues', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'type': 'primary bone cells (generated from surgical waste of bone tissues)', 'stage': 'asynchronization'}, 'GSM1946470': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'stage': 'asynchronization'}, 'GSM1946471': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'stage': 'asynchronization'}, 'GSM2348703': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348702': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348701': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348700': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1659037': {'patient': 'Brx-11'}, 'GSM2348706': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2108671': {'type': 'hiPSC-NCSCs'}, 'GSM2108670': {'type': 'H1-NCSCs'}, 'GSM2108673': {'type': 'hiPSC-ENCPs'}, 'GSM2108672': {'type': 'hiPSC-ENCPs'}, 'GSM2108675': {'type': 'hiPSC-ENs'}, 'GSM2108674': {'type': 'hiPSC-ENs'}, 'GSM2054558': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054559': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054556': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054557': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054554': {'type': 'hES/hiPS-derived neuron'}, 'GSM2565008': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2054552': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054553': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054550': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054551': {'type': 'hES/hiPS-derived neuron'}, 'GSM1694953': {'line': '11'}, 'GSM1694957': {'line': 'HUES3'}, 'GSM1694956': {'line': 'HUES1'}, 'GSM1694955': {'line': 'H9'}, 'GSM1694954': {'line': 'H1'}, 'GSM1694959': {'line': 'HUES9'}, 'GSM1694958': {'line': 'HUES8'}, 'GSM1659039': {'patient': 'Brx-11'}, 'GSM2543961': {'library_id': 'lib8243', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1659038': {'patient': 'Brx-11'}, 'GSM2543962': {'library_id': 'lib8250', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2565122': {'construction': 'PLATE-Seq', 'drug': 'Exemestane'}, 'GSM2543963': {'library_id': 'lib8251', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2456054': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2565123': {'construction': 'PLATE-Seq', 'drug': 'Olaparib (AZD2281)'}, 'GSM2211816': {'doxycycline': '+', '2': 'shERF', 'dht': '-'}, 'GSM2211817': {'doxycycline': '+', '2': 'shERF', 'dht': '-'}, 'GSM2211814': {'doxycycline': '-', '2': 'shERF', 'dht': '-'}, 'GSM2211815': {'doxycycline': '-', '2': 'shERF', 'dht': '-'}, 'GSM2211812': {'doxycycline': '+', '2': 'shNT', 'dht': '-'}, 'GSM2211813': {'doxycycline': '-', '2': 'shERF', 'dht': '-'}, 'GSM2211810': {'doxycycline': '+', '2': 'shNT', 'dht': '-'}, 'GSM2211811': {'doxycycline': '+', '2': 'shNT', 'dht': '-'}, 'GSM2211818': {'doxycycline': '+', '2': 'shERF', 'dht': '-'}, 'GSM2211819': {'doxycycline': '-', '2': 'shNT', 'dht': '+'}, 'GSM2471878': {'with': '1uM JQ1 for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471879': {'with': '0.1uM THZ1 for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471874': {'with': '0.1uM panobinostat for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'antibody': 'Active Motif #39133', 'subtype': 'immunoprecipitated DNA'}, 'GSM2471875': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'precipitated DNA'}, 'GSM2471876': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'precipitated DNA'}, 'GSM2471877': {'with': '1uM JQ1 for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471870': {'with': '1% DMSO for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471871': {'with': '0.1uM panobinostat for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471872': {'with': '0.1uM panobinostat for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'subtype': 'poly(A)+ RNA'}, 'GSM2471873': {'with': '0.1uM panobinostat for 24 hours', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'antibody': 'Active Motif #39133', 'subtype': 'immunoprecipitated DNA'}, 'GSM2361632': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361633': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361630': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361631': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361636': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361637': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361634': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361635': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361638': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361639': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2565126': {'construction': 'PLATE-Seq', 'drug': 'Hydroxyurea'}, 'GSM1955928': {'a': '53453', 'cd38': '780', 'cd49f': '483', 'w': '67584', 'h': '51833', 'lin': '257', 'cd34': '4572', 'cd90': '359', 'cd7': '-26', 'cd10': '1006', 'time': '9211', 'cd135': '437', 'cd45ra': '169'}, 'GSM1955929': {'a': '44745', 'cd38': '116', 'cd49f': '1690', 'w': '66062', 'h': '44389', 'lin': '234', 'cd34': '5026', 'cd90': '4068', 'cd7': '187', 'cd10': '6284', 'time': '11934', 'cd135': '2927', 'cd45ra': '4599'}, 'GSM1955924': {'a': '60894', 'cd38': '1134', 'cd49f': '779', 'w': '67963', 'h': '58719', 'lin': '24', 'cd34': '4566', 'cd90': '-249', 'cd7': '316', 'cd10': '742', 'time': '8405', 'cd135': '2206', 'cd45ra': '321'}, 'GSM1955925': {'a': '55124', 'cd38': '635', 'cd49f': '833', 'w': '66365', 'h': '54435', 'lin': '324', 'cd34': '6020', 'cd90': '8028', 'cd7': '246', 'cd10': '797', 'time': '8605', 'cd135': '4569', 'cd45ra': '466'}, 'GSM1955926': {'a': '57841', 'cd38': '42', 'cd49f': '1023', 'w': '66738', 'h': '56800', 'lin': '759', 'cd34': '12119', 'cd90': '2039', 'cd7': '132', 'cd10': '1237', 'time': '8817', 'cd135': '1747', 'cd45ra': '149'}, 'GSM1955927': {'a': '71808', 'cd38': '749', 'cd49f': '632', 'w': '67600', 'h': '69616', 'lin': '-209', 'cd34': '6108', 'cd90': '1428', 'cd7': '383', 'cd10': '879', 'time': '9020', 'cd135': '5648', 'cd45ra': '318'}, 'GSM1955920': {'a': '68602', 'cd38': '531', 'cd49f': '656', 'w': '65538', 'h': '68600', 'lin': '75', 'cd34': '5869', 'cd90': '1514', 'cd7': '202', 'cd10': '786', 'time': '7577', 'cd135': '4645', 'cd45ra': '531'}, 'GSM1955921': {'a': '60762', 'cd38': '1100', 'cd49f': '690', 'w': '69772', 'h': '57073', 'lin': '597', 'cd34': '8840', 'cd90': '1176', 'cd7': '-72', 'cd10': '820', 'time': '7780', 'cd135': '4293', 'cd45ra': '164'}, 'GSM1955922': {'a': '62404', 'cd38': '528', 'cd49f': '515', 'w': '66978', 'h': '61061', 'lin': '-154', 'cd34': '4167', 'cd90': '747', 'cd7': '362', 'cd10': '352', 'time': '7973', 'cd135': '4437', 'cd45ra': '1501'}, 'GSM1955923': {'a': '55921', 'cd38': '803', 'cd49f': '517', 'w': '67936', 'h': '53945', 'lin': '-13', 'cd34': '6360', 'cd90': '594', 'cd7': '-18', 'cd10': '984', 'time': '8184', 'cd135': '3173', 'cd45ra': '378'}, 'GSM2630272': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM1557751': {'transfection': 'Stabilin-1 siRNA'}, 'GSM987846': {'donor': 'pancreatic cancer patient 18', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM2630129': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405846'}, 'GSM2630128': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405845'}, 'GSM1816588': {'transfection': 'dCas9-VPR and a gRNA of length 20nt targeting HBG1/2', 'line': 'HEK293T'}, 'GSM1816589': {'transfection': 'dCas9-VPR and a gRNA of length 20nt targeting HBG1/2', 'line': 'HEK293T'}, 'GSM2630123': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405840'}, 'GSM2630122': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405839'}, 'GSM1816586': {'transfection': 'none', 'line': 'HEK293T'}, 'GSM1816587': {'transfection': 'none', 'line': 'HEK293T'}, 'GSM2630127': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405844'}, 'GSM2630126': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405843'}, 'GSM2630125': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405842'}, 'GSM2630124': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405841'}, 'GSM2172353': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172352': {'donor_age': '21', 'inferred_cell_type': 'beta', 'gender': 'male'}, 'GSM2172351': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172350': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2599710': {'line': 'THP-1', 'exposure': '72 hr PMA exposure'}, 'GSM2172356': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172355': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172354': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172359': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172358': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM1856016': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1856017': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM2100107': {'rin': '9.6', 'Sex': 'Female', 'sspg': '89', 'age': '47', 'bmi': '32.7', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '799', 'method': 'Life-Tech GITC'}, 'GSM2100106': {'rin': '9.1', 'Sex': 'Female', 'sspg': '89', 'age': '47', 'bmi': '32.7', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '799', 'method': 'Life-Tech GITC'}, 'GSM2100105': {'rin': '9.5', 'Sex': 'Female', 'sspg': '89', 'age': '47', 'bmi': '32.7', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '799', 'method': 'Life-Tech GITC'}, 'GSM2100104': {'rin': '10', 'Sex': 'Male', 'sspg': '231', 'age': '62', 'bmi': '27.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '703', 'method': 'Life-Tech GITC'}, 'GSM2100103': {'rin': '10', 'Sex': 'Male', 'sspg': '231', 'age': '62', 'bmi': '27.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '703', 'method': 'Life-Tech GITC'}, 'GSM2100102': {'rin': '10', 'Sex': 'Male', 'sspg': '231', 'age': '62', 'bmi': '27.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '703', 'method': 'Life-Tech GITC'}, 'GSM2100101': {'rin': '9.6', 'Sex': 'Male', 'sspg': '67', 'age': '70', 'bmi': '25', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '420', 'method': 'Qiagen:trizol'}, 'GSM2100100': {'rin': '9.5', 'Sex': 'Male', 'sspg': '67', 'age': '70', 'bmi': '25', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '420', 'method': 'Qiagen:trizol'}, 'GSM987848': {'donor': 'pancreatic cancer patient 19', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM2671289': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2100108': {'rin': '9.6', 'Sex': 'Female', 'sspg': '248', 'age': '67', 'bmi': '30.9', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '708', 'method': 'Qiagen:trizol'}, 'GSM1856010': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856011': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM2202559': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2202558': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM1957562': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957563': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957560': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957561': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM3594675': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594674': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594677': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594676': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2202557': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2202556': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2202555': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM3594672': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2411849': {'line': '2945A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411848': {'line': '2098B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411843': {'line': '18719B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411842': {'line': '1673F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411841': {'line': '1673B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411840': {'line': '1660F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411847': {'line': '2098A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411846': {'line': '18961C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411845': {'line': '18961A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411844': {'line': '18719D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM1872913': {'10': 'Non-remitter', 'name': 'HF-35417', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM2316997': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2392189': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1872912': {'10': 'Non-remitter', 'name': 'HF-37283', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1836489': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U1'}, 'GSM1405096': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in a Hela cell clone upon EGF stimulation and depletion of INTS11'}, 'GSM1405097': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in a Hela cell clone upon EGF stimulation and depletion of INTS11'}, 'GSM1405094': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in a Hela cell clone upon EGF stimulation and depletion of INTS11'}, 'GSM1405095': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in a Hela cell clone upon EGF stimulation and depletion of INTS11'}, 'GSM1405092': {'source': 'IP with non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'treatment': 'ELL2 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405093': {'source': 'IP with non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'treatment': 'ELL2 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405090': {'source': 'IP with non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'treatment': 'ELL2 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405091': {'source': 'IP with non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'line': 'HeLa', 'antibody': 'non-commercial rabbit anti-ELL2 Ref PMID 20159561', 'treatment': 'ELL2 was profiled in a Hela cell clone upon EGF stimulation and depletion of INTS11', 'type': 'ChIP-seq'}, 'GSM1405098': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in a Hela cell clone upon EGF stimulation and depletion of INTS11'}, 'GSM1405099': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in a Hela cell clone upon EGF stimulation and depletion of INTS11'}, 'GSM1341679': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341678': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341677': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341676': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341675': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341674': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341673': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341672': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341671': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341670': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1915050': {'type': 'epithelial', 'line': 'MCF10A', 'molecule': 'polysomal RNA'}, 'GSM1915051': {'type': 'epithelial', 'line': 'MCF10A', 'molecule': 'polysomal RNA'}, 'GSM1915052': {'type': 'epithelial', 'line': 'MCF10A', 'molecule': 'polysomal RNA'}, 'GSM2243846': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243847': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243844': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243845': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243842': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243843': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243840': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243841': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243848': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243849': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G8', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2071753': {'knockdown': 'control', 'shRNA': 'SHC002'}, 'GSM2071752': {'knockdown': 'control', 'shRNA': 'SHC002'}, 'GSM2071755': {'knockdown': 'IMP1 knockdown', 'shRNA': 'TRCN0000075149'}, 'GSM2071754': {'knockdown': 'IMP1 knockdown', 'shRNA': 'TRCN0000075149'}, 'GSM2071756': {'knockdown': 'IMP1 knockdown', 'shRNA': 'TRCN0000075149'}, 'GSM916958': {'with': '500 nM Trichostatin A (TSA) for 12hr', 'line': 'HAEC', 'passages': 'Passage 4-6', 'type': 'Primary Human Aortic Endothelial Cells'}, 'GSM916959': {'with': '500 nM Trichostatin A (TSA) for 12hr', 'line': 'HAEC', 'passages': 'Passage 4-6', 'type': 'Primary Human Aortic Endothelial Cells'}, 'GSM1564298': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '25', 'replicate': '2', 'hcc827': '75'}, 'GSM1564299': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '50', 'replicate': '2', 'hcc827': '50'}, 'GSM2627099': {'origin': 'small intestine', 'patient_id': '36', 'type': 'primary', 'tumor_id': '36'}, 'GSM2627098': {'origin': 'small intestine', 'patient_id': '34', 'type': 'primary', 'tumor_id': '34'}, 'GSM2627097': {'origin': 'small intestine', 'patient_id': '33', 'type': 'primary', 'tumor_id': '33'}, 'GSM2627096': {'origin': 'small intestine', 'patient_id': '32', 'type': 'primary', 'tumor_id': '32'}, 'GSM2627095': {'origin': 'small intestine', 'patient_id': '31', 'type': 'primary', 'tumor_id': '31'}, 'GSM2627094': {'origin': 'small intestine', 'patient_id': '28', 'type': 'primary', 'tumor_id': '28'}, 'GSM2627093': {'origin': 'small intestine', 'patient_id': '26', 'type': 'primary', 'tumor_id': '26'}, 'GSM2627092': {'origin': 'small intestine', 'patient_id': '2', 'type': 'primary', 'tumor_id': '2'}, 'GSM2627091': {'origin': 'small intestine', 'patient_id': '18', 'type': 'primary', 'tumor_id': '18'}, 'GSM2627090': {'origin': 'small intestine', 'patient_id': '17', 'type': 'primary', 'tumor_id': '17'}, 'GSM1410982': {'ercc_mix': '1', 'donor': 'N010912-F18', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410983': {'ercc_mix': '1', 'donor': 'N012412-M48', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410980': {'ercc_mix': '1', 'donor': 'AS113011-F25', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Vitamin-D'}, 'GSM1410981': {'ercc_mix': '1', 'donor': 'N120511-F52', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410986': {'ercc_mix': '1', 'donor': 'AS072610-M13', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Baseline'}, 'GSM1410987': {'ercc_mix': '1', 'donor': 'N080910-F16', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1410984': {'ercc_mix': '1', 'donor': 'N021612-M17', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410985': {'ercc_mix': '1', 'donor': 'AS070808-M59', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Baseline'}, 'GSM3208693': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208692': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1410988': {'ercc_mix': '1', 'donor': 'N090710-F52', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1410989': {'ercc_mix': '1', 'donor': 'N120610-M50', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM3208697': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208696': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208695': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208694': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM984346': {'grade': '3', 'recurrence': '1', 'size': '2', 'metastasis': '0', 'Stage': 'IIB'}, 'GSM1826820': {'line': 'MOLP-8', 'condition': 'LIN28B KO cells'}, 'GSM984344': {'grade': '2', 'recurrence': '0', 'size': '2', 'metastasis': '1', 'Stage': 'IIA'}, 'GSM984345': {'grade': '3', 'recurrence': '1', 'size': '2', 'metastasis': '0', 'Stage': 'IIB'}, 'GSM984342': {'grade': '3', 'recurrence': '0', 'size': '2', 'metastasis': '1', 'Stage': 'IIA'}, 'GSM984343': {'grade': '2', 'recurrence': '0', 'size': '1', 'metastasis': '0', 'Stage': 'I'}, 'GSM984340': {'grade': '3', 'recurrence': '0', 'size': '1', 'metastasis': '0', 'Stage': 'I'}, 'GSM984341': {'grade': '3', 'recurrence': '0', 'size': '1', 'metastasis': '0', 'Stage': 'I'}, 'GSM2098693': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM984348': {'grade': '3', 'recurrence': '1', 'size': '2', 'metastasis': '1', 'Stage': 'IIB'}, 'GSM984349': {'grade': '2', 'recurrence': '0', 'size': '1', 'metastasis': '0', 'Stage': 'I'}, 'GSM2778991': {'time_hr': '9', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778990': {'time_hr': '6', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778993': {'time_hr': '16', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2778992': {'time_hr': '12', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2778995': {'time_hr': '20', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2778994': {'time_hr': '1', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2778997': {'time_hr': '2', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2778996': {'time_hr': '24', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2778999': {'time_hr': '4', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2778998': {'time_hr': '3', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2141268': {'individual': 'AF37', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2178810': {'ir': '1.96850393700787', 'weight': 'non-obese', 'gender': 'male', 'age': '61', 'bmi': '24.7', 'disease': 't2d', 'l': '0.16', 'h': '1', 'id': '63a'}, 'GSM2665699': {'age': 'Day 100', 'well': 'A5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2178811': {'ir': '1.30378096479791', 'weight': 'obese', 'gender': 'female', 'age': '48', 'bmi': '32.7', 'disease': 'ngt', 'l': '0.05', 'h': '0', 'id': '79a'}, 'GSM1704490': {'with': '0.1 uM gefitinib in hypoxia for 1 week', 'line': 'PC9', 'type': 'non-small cell lung cancer cells'}, 'GSM2098696': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM1704491': {'line': 'PC9', 'type': 'non-small cell lung cancer cells', 'phenotype': 'gefitinib-resistant cells'}, 'GSM1940678': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940679': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1704492': {'line': 'PC9', 'type': 'non-small cell lung cancer cells', 'phenotype': 'ALDH-positive cells'}, 'GSM1571098': {'stage': 'cardiac progenitor'}, 'GSM1940672': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940673': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940670': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940671': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940676': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940677': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940674': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940675': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2112789': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10 nM R5020', 'time': '12 hours'}, 'GSM1571099': {'stage': 'cardiac progenitor'}, 'GSM2616619': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM2616618': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616615': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616614': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616617': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616616': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616611': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616610': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM2616613': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616612': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2092965': {'bin': '8', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1257872': {'line': 'MCF-7', 'treatment': 'Short interfering RNA against the AHR'}, 'GSM1246808': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM1975090': {'knockdown': 'hnRNP A2/B1+A1', 'line': 'A549'}, 'GSM2092964': {'bin': '8', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1269468': {'line': 'MCF7', 'type': 'non-labeled RNA', 'purification': 'oligo(dT) beads'}, 'GSM2157996': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1446884': {'line': 'HKC L2', 'type': 'Keratinocytes', 'day': '0'}, 'GSM1446885': {'line': 'HKC L2', 'type': 'Keratinocytes', 'day': '2'}, 'GSM1446886': {'line': 'HKC L2', 'type': 'Keratinocytes', 'day': '4'}, 'GSM1446887': {'line': 'HKC L2', 'type': 'Keratinocytes', 'day': '7'}, 'GSM1446880': {'line': 'HKC L1', 'type': 'Keratinocytes', 'day': '0'}, 'GSM1446881': {'line': 'HKC L1', 'type': 'Keratinocytes', 'day': '2'}, 'GSM1446882': {'line': 'HKC L1', 'type': 'Keratinocytes', 'day': '4'}, 'GSM1446883': {'line': 'HKC L1', 'type': 'Keratinocytes', 'day': '7'}, 'GSM2828177': {'passages': '18-20', 'group': 'control', 'condition': 'overexpression of EGFP'}, 'GSM2330100': {'individual': 'patient TB', 'type': 'Eomes negative NK cells'}, 'GSM2330101': {'individual': 'patient TB', 'type': 'Eomes positive NK cells'}, 'GSM2092969': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1886845': {'line': 'SUDHL6', 'treatment': 'treated with DMSO for 12h'}, 'GSM2092968': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2948750': {'tumor': 'C3-1', 'tissue': 'VCaP xenograft', 'condition': 'Abi/Enza resistant'}, 'GSM1924814': {'type': 'lung cancer xenograft derived CTC'}, 'GSM1924815': {'type': 'lung cancer xenograft derived CTC'}, 'GSM1924816': {'type': 'lung cancer xenograft derived CTC'}, 'GSM1924817': {'type': 'lung cancer xenograft derived CTC'}, 'GSM2679961': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM1924818': {'type': 'lung cancer xenograft derived CTC'}, 'GSM1924819': {'type': 'lung cancer xenograft derived CTC'}, 'GSM2564989': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2564988': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2679963': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2564981': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2564980': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2564983': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2564982': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2564985': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2564984': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2564987': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM2564986': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2125775': {'cancer': 'adjacent normal'}, 'GSM2275003': {'area_under_the_curve': '1.123796719', 'siteandparticipantcode': '788532', 'baseline_area_under_the_curve': '1.4986025', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '74.9896466', 'auc_percent_of_baseline': '74.9896466', 'trunkbarcode': '948732', 'sampleID': 'S10710', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib846', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_788532', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib847', 'studysiteshort': 'YALE'}, 'GSM2275002': {'area_under_the_curve': '0.474002344', 'siteandparticipantcode': '678610', 'baseline_area_under_the_curve': '0.704254219', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '67.30557392', 'auc_percent_of_baseline': '67.30557392', 'trunkbarcode': '937079', 'sampleID': 'S10709', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib845', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_678610', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib846', 'studysiteshort': 'YALE'}, 'GSM2275001': {'area_under_the_curve': '0.546822344', 'siteandparticipantcode': '757437', 'baseline_area_under_the_curve': '0.862306719', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '63.41390272', 'auc_percent_of_baseline': '63.41390272', 'trunkbarcode': '937078', 'sampleID': 'S10708', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib844', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'Control', 'name': 'AbATE_757437', 'gender': 'Male', 'age': '8', 'race': 'White', 'libraryid': 'lib845', 'studysiteshort': 'YALE'}, 'GSM2275000': {'area_under_the_curve': '0.8994925', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '160.6206132', 'auc_percent_of_baseline': '160.6206132', 'trunkbarcode': '933800', 'sampleID': 'S10707', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib843', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'race': 'White', 'libraryid': 'lib844', 'studysiteshort': 'YALE'}, 'GSM2275007': {'area_under_the_curve': '1.287124531', 'siteandparticipantcode': '371894', 'baseline_area_under_the_curve': '0.960365469', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '134.0244494', 'auc_percent_of_baseline': '134.0244494', 'trunkbarcode': '948595', 'sampleID': 'S10719', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib851', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_371894', 'gender': 'Male', 'age': '15', 'race': 'Other', 'libraryid': 'lib851', 'studysiteshort': 'PNRI'}, 'GSM2275006': {'area_under_the_curve': '0.823259063', 'siteandparticipantcode': '229085', 'baseline_area_under_the_curve': '1.054079844', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '78.10215397', 'auc_percent_of_baseline': '78.10215397', 'trunkbarcode': '933829', 'sampleID': 'S10715', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib849', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_229085', 'gender': 'Male', 'age': '15', 'race': 'White', 'libraryid': 'lib850', 'studysiteshort': 'YALE'}, 'GSM1896249': {'individual': 'EU74', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2275004': {'area_under_the_curve': '1.276108438', 'siteandparticipantcode': '738493', 'baseline_area_under_the_curve': '1.079318594', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '118.2327855', 'auc_percent_of_baseline': '118.2327855', 'trunkbarcode': '947641', 'sampleID': 'S10712', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib847', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_738493', 'gender': 'Female', 'age': '11', 'race': 'White; White', 'libraryid': 'lib848', 'studysiteshort': 'YALE'}, 'GSM1896247': {'individual': 'EU72', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896246': {'individual': 'EU72', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896245': {'individual': 'EU70', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2275008': {'area_under_the_curve': '0.270127031', 'siteandparticipantcode': '689968', 'baseline_area_under_the_curve': '0.873943438', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '30.90898331', 'auc_percent_of_baseline': '30.90898331', 'trunkbarcode': '928866', 'sampleID': 'S10720', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib852', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'Control', 'name': 'AbATE_689968', 'gender': 'Female', 'age': '25', 'race': 'White', 'libraryid': 'lib852', 'studysiteshort': 'PNRI'}, 'GSM1896243': {'individual': 'EU70', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896242': {'individual': 'EU68', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896241': {'individual': 'EU68', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896240': {'individual': 'EU68', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM3586812': {'origin': 'GCB', 'pfstt': '730', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '795', 'cycles': '8', 'oscs': '0'}, 'GSM3586813': {'origin': 'GCB', 'pfstt': '735', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '781', 'cycles': '8', 'oscs': '0'}, 'GSM3586810': {'origin': 'GCB', 'pfstt': '752', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '810', 'cycles': '8', 'oscs': '0'}, 'GSM3586811': {'origin': 'ABC', 'pfstt': '753', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '810', 'cycles': '8', 'oscs': '0'}, 'GSM3586816': {'origin': 'UNCLASSIFIED', 'pfstt': '734', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '734', 'cycles': '6', 'oscs': '0'}, 'GSM3586817': {'origin': 'ABC', 'pfstt': '7', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '7', 'cycles': '8', 'oscs': '1'}, 'GSM3586814': {'origin': 'GCB', 'pfstt': '743', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '773', 'cycles': '8', 'oscs': '0'}, 'GSM3586815': {'origin': 'GCB', 'pfstt': '778', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '803', 'cycles': '6', 'oscs': '0'}, 'GSM3586818': {'origin': 'GCB', 'pfstt': '78', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '227', 'cycles': '6', 'oscs': '1'}, 'GSM3586819': {'origin': 'ABC', 'pfstt': '916', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '916', 'cycles': '6', 'oscs': '0'}, 'GSM2719882': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719883': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'ARID1B RNAi'}, 'GSM2243459': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243458': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2747609': {'passages': '4', 'type': 'retina pigment epithelium', 'Stage': '3 days'}, 'GSM2747608': {'passages': '48', 'type': 'retina pigment epithelium', 'Stage': '2 days'}, 'GSM2747607': {'line': 'fhRPE-13A', 'passages': '48', 'type': 'retina pigment epithelium', 'Stage': '5 days'}, 'GSM2747606': {'line': 'fhRPE-13A', 'passages': '48', 'type': 'retina pigment epithelium', 'Stage': '4 days'}, 'GSM2392441': {'status': 'CREBBP+/-'}, 'GSM2392440': {'status': 'CREBBP+/-'}, 'GSM2731732': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2731733': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2731730': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2731731': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM1104009': {'type': 'Triple Negative Breast Tumor'}, 'GSM1104008': {'type': 'Triple Negative Breast Tumor'}, 'GSM3019928': {'marker': 'CD19+ CD11c- IgD+ CD27-CD38int', 'type': 'CD19+ CD11c- IgD+ CD38int Naive B cells', 'collection': 'HC-4', 'diagnosis': 'Healthy subject'}, 'GSM3019925': {'marker': 'CD19+ CD11chi IgD- CD27-CD38-', 'type': 'CD19+ CD11chi IgD- CD38- B cells', 'collection': 'HC-4', 'diagnosis': 'Healthy subject'}, 'GSM3019924': {'marker': 'CD19+ CD11c- IgD+ CD27-CD38int', 'type': 'CD19+ CD11c- IgD+ CD38int Naive B cells', 'collection': 'HC-3', 'diagnosis': 'Healthy subject'}, 'GSM3019927': {'marker': 'CD19+ CD11c- IgD- CD27+CD38int', 'type': 'CD19+ CD11c- IgD- CD38int Memory B cells', 'collection': 'HC-4', 'diagnosis': 'Healthy subject'}, 'GSM3019926': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11c- IgD- CD38- Memory B cells', 'collection': 'HC-4', 'diagnosis': 'Healthy subject'}, 'GSM3019921': {'marker': 'CD19+ CD11chi IgD- CD27-CD38-', 'type': 'CD19+ CD11chi IgD- CD38- B cells', 'collection': 'HC-3', 'diagnosis': 'Healthy subject'}, 'GSM3019920': {'marker': 'CD19+ CD11c- IgD+ CD27-CD38int', 'type': 'CD19+ CD11c- IgD+ CD38int Naive B cells', 'collection': 'HC-2', 'diagnosis': 'Healthy subject'}, 'GSM1104007': {'type': 'Triple Negative Breast Tumor'}, 'GSM3019922': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11c- IgD- CD38- Memory B cells', 'collection': 'HC-3', 'diagnosis': 'Healthy subject'}, 'GSM2931828': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '45362998', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing a non-silencing (NS) control precursor RNA', 'id': 'cs142'}, 'GSM2931829': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '46816331', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing a non-silencing (NS) control precursor RNA', 'id': 'cs142'}, 'GSM2719888': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM1722960': {'tissue': 'Bone', 'score': '82.32540132', 'stage': 'metastatic castration resistant'}, 'GSM1722961': {'tissue': 'Bone', 'score': '82.5503513', 'stage': 'metastatic castration resistant'}, 'GSM2931822': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '44767245', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing a non-silencing (NS) control precursor RNA', 'id': 'cs131'}, 'GSM2931823': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '46741734', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing a non-silencing (NS) control precursor RNA', 'id': 'cs131'}, 'GSM2931824': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '47094903', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precuror miR-138', 'id': 'cs142'}, 'GSM2931825': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '39387578', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precuror miR-138', 'id': 'cs142'}, 'GSM2931826': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '40385371', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precursor miR-181ab1', 'id': 'cs142'}, 'GSM2931827': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '49725892', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precursor miR-181ab1', 'id': 'cs142'}, 'GSM2339468': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': '-'}, 'GSM2048513': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048512': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048511': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1612365': {'date': '15-May-2013 (BD FACS Aria)', 'type': 'BM progenitor', 'birth': '22-Apr.-1996', 'population': 'IL3Ra-low progenitor cells'}, 'GSM2048517': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1612363': {'date': '15-May-2013 (BD FACS Aria)', 'type': 'BM progenitor', 'birth': '18-March-1998', 'population': 'IL3Ra-low progenitor cells'}, 'GSM2048515': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1612361': {'date': '15-May-2013 (BD FACS Aria)', 'type': 'BM progenitor', 'birth': '11-Sep.-2000', 'population': 'IL3Ra-high progenitor cells'}, 'GSM2048519': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048518': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2058062': {'tissue': 'normal colon crypt', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058063': {'line': 'COLO205', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058060': {'tissue': 'normal colon crypt', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058061': {'tissue': 'normal colon crypt', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2481918': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2481919': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2058064': {'line': 'HCT116', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058065': {'line': 'SW480', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2481914': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2481915': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2481916': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2058069': {'line': 'V1074', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2481910': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481911': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481912': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2481913': {'age': '22-40 years', 'tissue': 'Bone biopsy', 'group': 'Young Woman'}, 'GSM2441040': {'culture': '11', 'line': 'H9', 'set': 'Data Set 1-Differentiation', 'run': 'run1466', 'treatment': '0'}, 'GSM2072067': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gCIC-1', 'treatment': '100 nM Trametinib'}, 'GSM2277409': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277408': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277405': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277404': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277407': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277406': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277401': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277400': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277403': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277402': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM1964528': {'lines': 'WA09', 'method': 'Single cell', 'size': '200'}, 'GSM1964529': {'lines': 'WA09', 'method': 'Single cell', 'size': '200'}, 'GSM1964526': {'lines': 'WA09', 'method': '2D', 'size': '200'}, 'GSM1964527': {'lines': 'WA09', 'method': '2D', 'size': '200'}, 'GSM920979': {'barcode': 'GCCCTC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd1'}, 'GSM920978': {'barcode': 'AGGACT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Noninduced', 'name': 'Charlotte', 'day': 'd0'}, 'GSM2441046': {'culture': '12', 'line': 'H9', 'set': 'Data Set 3-FGF2 effects days 7-12', 'run': 'run1513', 'treatment': '6 (days 6-12)'}, 'GSM920975': {'barcode': 'AGCGAG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd5'}, 'GSM923433': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL1258', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923432': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL1257', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923431': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL1245', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923430': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL530', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923437': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL532', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923436': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL1246', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923435': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL1259', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923434': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL524', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM1093051': {'type': 'lymphoblastoid cells'}, 'GSM1093050': {'type': 'lymphoblastoid cells'}, 'GSM1093053': {'type': 'stomach epithelial cells'}, 'GSM1093052': {'type': 'bladder cells'}, 'GSM1093055': {'type': 'renal cancer cell line'}, 'GSM1093054': {'type': 'stomach epithelial cells'}, 'GSM1093057': {'type': 'lung cancer cell lines'}, 'GSM1093056': {'type': 'lung cancer cell lines'}, 'GSM1093059': {'type': 'renal cancer cell line'}, 'GSM1093058': {'type': 'bladder cancer cell lines'}, 'GSM2441047': {'culture': '12', 'line': 'H9', 'set': 'Data Set 3-FGF2 effects days 7-12', 'run': 'run1513', 'treatment': '0'}, 'GSM2036330': {'gender': 'Male', 'age': '65', 'tissue': 'Calcified bicuspid aortic valve (BAV)'}, 'GSM2441044': {'culture': '6', 'line': 'H9', 'set': 'Data Set 2-FGF2 effects days 1-6', 'run': 'run1513', 'treatment': '6'}, 'GSM2108547': {'stages': 'mononucleated cell nucleus'}, 'GSM2108546': {'stages': 'mononucleated cell nucleus'}, 'GSM2108545': {'stages': 'mononucleated cell nucleus'}, 'GSM1308258': {'with': 'synthetic miR-1 mimic', 'line': 'HeLa', 'type': 'human cervical cancer cells', 'point': '3hr post-transfection'}, 'GSM1308259': {'with': 'synthetic miR-1 mimic', 'line': 'HeLa', 'type': 'human cervical cancer cells', 'point': '6hrs post-transfection'}, 'GSM1308252': {'with': 'ZNF804A KD vector', 'type': 'day 10 neurons'}, 'GSM2108543': {'stages': 'mononucleated cell nucleus'}, 'GSM1308250': {'with': 'ZNF804A KD vector', 'type': 'Neural progenitor cells (NPCs) developed from iPSCs'}, 'GSM1308251': {'with': 'ZNF804A KD vector', 'type': 'Neural progenitor cells (NPCs) developed from iPSCs'}, 'GSM1308257': {'with': 'synthetic miR-1 mimic', 'line': 'HeLa', 'type': 'human cervical cancer cells', 'point': '0h post-transfection'}, 'GSM2108542': {'stages': 'mononucleated cell nucleus'}, 'GSM1580786': {'age': '26 5/7 weeks', 'tissue': 'ileum', 'pathology': 'Meconiumileus'}, 'GSM1580787': {'age': '33 6/7 weeks', 'tissue': 'ileum', 'pathology': 'Bowel obstruction'}, 'GSM1580784': {'age': '33 5/7 weeks', 'tissue': 'ileum', 'pathology': 'Small intestinal perforation'}, 'GSM1580785': {'age': '26 6/7 weeks', 'tissue': 'ileum', 'pathology': 'Milk curd syndrome'}, 'GSM1580782': {'age': '29 6/7 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM1580783': {'age': '29 2/7 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM1580780': {'age': '26 2/7 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM1580781': {'age': '25 4/7 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM2108540': {'stages': 'mononucleated cell nucleus'}, 'GSM1580788': {'age': '39 weeks', 'tissue': 'ileum', 'pathology': 'Small intestinal atresia'}, 'GSM2689236': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1503677': {'molecule': 'polyA RNA', 'line': 'Tissue', 'type': 'Fibroblast'}, 'GSM1503679': {'molecule': 'polyA RNA', 'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1503678': {'molecule': 'polyA RNA', 'line': 'Tissue', 'type': 'Fibroblast'}, 'GSM1620479': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2441048': {'culture': '12', 'line': 'H9', 'set': 'Data Set 3-FGF2 effects days 7-12', 'run': 'run1513', 'treatment': '6 (days 6-12)'}, 'GSM1620477': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1825261': {'line': 'MCF-7M', 'tissue': 'breast', 'antibody': 'LIN28'}, 'GSM1825260': {'line': 'MCF-7M', 'tissue': 'breast', 'antibody': 'IgG'}, 'GSM1536250': {'activation': 'anti-CD3/CD28 beads, 48 hours', 'passages': '7-8', 'bardcode': 'CGTACG'}, 'GSM2795890': {'code': 'P001', 'age': '21-23', 'Sex': 'Female', 'tissue': 'Placenta', 'treatment': 'Mock', 'compartment': 'Chorionic villus'}, 'GSM2795893': {'code': 'P006', 'age': '21', 'Sex': 'Female', 'tissue': 'Placenta', 'treatment': 'Mock', 'compartment': 'Chorionic villus'}, 'GSM1505859': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '1120-03'}, 'GSM2094768': {'line': 'BC-PAP', 'protocol': 'BC-PAP cell line treated with DMSO vehicle for 72 hours'}, 'GSM2795892': {'code': 'P001', 'age': '21-23', 'Sex': 'Female', 'tissue': 'Placenta', 'treatment': 'IFNL', 'compartment': 'Chorionic villus'}, 'GSM2208829': {'treatment': 'TRCN0000036281 (CPTsh2) KnockDown'}, 'GSM2208828': {'treatment': 'TRCN0000036279 (CPTsh1) KnockDown'}, 'GSM1891970': {'status': 'ER+', 'line': 'MCF-7', 'confluency': 'Low', 'treatment': 'No'}, 'GSM1891971': {'status': 'ER+', 'line': 'MCF-7', 'confluency': 'High', 'treatment': 'No'}, 'GSM1891972': {'status': 'ER+', 'line': 'MCF-7', 'confluency': 'Low', 'treatment': 'Yes'}, 'GSM2208826': {'treatment': 'non-targeting(NT) shRNA'}, 'GSM1505855': {'gender': 'male', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '1120-01'}, 'GSM1505854': {'gender': 'male', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '1120-01'}, 'GSM1505857': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '1120-01'}, 'GSM1505856': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '1120-01'}, 'GSM2141508': {'individual': 'AF181', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141509': {'individual': 'AF181', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141504': {'individual': 'AF179', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141505': {'individual': 'AF179', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141506': {'individual': 'AF179', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141507': {'individual': 'AF181', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141500': {'individual': 'AF175', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141501': {'individual': 'AF177', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141502': {'individual': 'AF177', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141503': {'individual': 'AF177', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2391150': {'disease': 'NSCLC'}, 'GSM554100': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 9'}, 'GSM2391152': {'disease': 'NSCLC'}, 'GSM2391153': {'disease': 'NSCLC'}, 'GSM2391154': {'disease': 'NSCLC'}, 'GSM2391155': {'disease': 'NSCLC'}, 'GSM2391156': {'disease': 'NSCLC'}, 'GSM2391157': {'disease': 'NSCLC'}, 'GSM2391158': {'disease': 'NSCLC'}, 'GSM2391159': {'disease': 'NSCLC'}, 'GSM2588923': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'TTATGGGCGTAGCTGAAGAA'}, 'GSM2588922': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'GGCTCGGTCCCGCGTCGTCG'}, 'GSM2588925': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'ATAAGCTGAGTCCTCCCCTC'}, 'GSM2588924': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'TTATGGGCGTAGCTGAAGAA'}, 'GSM2588927': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'ACTGTGAGCGTCCTCAGTGC'}, 'GSM2588926': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'ATAAGCTGAGTCCTCCCCTC'}, 'GSM1376155': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2573775': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1063298': {'region': 'Putamen', 'death': '91 years', 'tissue': 'Post morten brain', 'id': '1'}, 'GSM1063299': {'region': 'Hippocampus', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '2'}, 'GSM2324183': {'group': 'LowA422', 'type': 'PBMC', 'day': '28', 'subjectid': '301'}, 'GSM1665966': {'with': 'KCNK1 siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665964': {'with': 'KCNK1 siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665965': {'with': 'KCNK1 siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665962': {'with': 'SNTA1 siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665963': {'with': 'KCNK1 siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665960': {'with': 'SNTA1 siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665961': {'with': 'SNTA1 siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM2086979': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086978': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2254455': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'antibody': 'm6A antibody'}, 'GSM1706733': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM1706732': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM1706731': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM1706730': {'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM1706737': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM1706736': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM2011588': {'tissue': 'triple negative breast cancer', 'variation': 'wild type'}, 'GSM1706734': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM2770696': {'cell_line': 'HAP1', 'genotype': 'METAP1 knockout'}, 'GSM2011587': {'tissue': 'triple negative breast cancer', 'variation': 'wild type'}, 'GSM1706739': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM1706738': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'microRNA'}, 'GSM2770692': {'cell_line': 'HAP1', 'genotype': 'wild type'}, 'GSM2770693': {'cell_line': 'HAP1', 'genotype': 'wild type'}, 'GSM1540966': {'type': 'HeLa', 'condition': 'GFP siRNA'}, 'GSM1540967': {'type': 'HeLa', 'condition': 'GFP siRNA'}, 'GSM2113438': {'line': 'U-87', 'tissue': 'Brain tumor cell line', 'treatment': 'Cells following treatment with Decitabine'}, 'GSM1540968': {'type': 'HeLa', 'condition': 'eIF4A3 siRNA'}, 'GSM1540969': {'type': 'HeLa', 'condition': 'eIF4A3 siRNA'}, 'GSM1151058': {'line': 'HCT116', 'variation': 'wild type'}, 'GSM1063296': {'region': 'Hippocampus', 'death': '91 years', 'tissue': 'Post morten brain', 'id': '1'}, 'GSM1151054': {'line': 'HCT116', 'with': 'negative control shRNA-luciferase (shLuc) construct'}, 'GSM1151055': {'line': 'HCT116', 'with': 'shRNA-MeCP2 construct'}, 'GSM1151056': {'line': 'IMR90', 'variation': 'wild type'}, 'GSM1151057': {'line': 'IMR90', 'with': '300nM TSA for 6 hrs', 'variation': 'wild type'}, 'GSM1151050': {'line': 'HCT116', 'variation': 'wild type'}, 'GSM1151051': {'line': 'HCT116', 'variation': 'expressing hypomorphic DNMT1 and lack DNMT3b (HCT116-DKO)'}, 'GSM1151052': {'line': 'IMR90', 'with': 'negative control shRNA-luciferase (shLuc) construct'}, 'GSM1151053': {'line': 'IMR90', 'with': 'shRNA-MeCP2 construct'}, 'GSM2610899': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610898': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2257526': {'line': 'MCF-7', 'transfection': 'siCTCF', 'treatment': '3h Estrogen'}, 'GSM2257523': {'line': 'MCF-7', 'transfection': 'siNT', 'treatment': '0h Estrogen'}, 'GSM2610891': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610890': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610893': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610892': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610895': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610894': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610897': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610896': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2129735': {'line': 'RMS13', 'provider': 'ATCC'}, 'GSM2129734': {'line': 'RMS13', 'provider': 'ATCC'}, 'GSM1259264': {'clone': 'GM12878 clone DF2', 'type': 'Lymphoblastoid cell line'}, 'GSM1259263': {'clone': 'GM12878 clone DF1', 'type': 'Lymphoblastoid cell line'}, 'GSM2195024': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2735310': {'cohort': 'Unpaired', 'tils': '40', 'subtype': 'I', 'burden': '251', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM1956149': {'a': '68017', 'cd38': '1174', 'cd49f': '595', 'w': '67187', 'h': '66345', 'lin': '377', 'cd34': '8888', 'cd90': '4043', 'cd7': '-69', 'cd10': '932', 'time': '16281', 'cd135': '4885', 'cd45ra': '449'}, 'GSM1956148': {'a': '48140', 'cd38': '720', 'cd49f': '640', 'w': '68445', 'h': '46094', 'lin': '-246', 'cd34': '7079', 'cd90': '2296', 'cd7': '626', 'cd10': '32471', 'time': '16480', 'cd135': '5970', 'cd45ra': '7782'}, 'GSM1956147': {'a': '65549', 'cd38': '-302', 'cd49f': '956', 'w': '66462', 'h': '64636', 'lin': '263', 'cd34': '8471', 'cd90': '1429', 'cd7': '318', 'cd10': '812', 'time': '16682', 'cd135': '2266', 'cd45ra': '272'}, 'GSM1956146': {'a': '62327', 'cd38': '1070', 'cd49f': '858', 'w': '67851', 'h': '60200', 'lin': '93', 'cd34': '7667', 'cd90': '545', 'cd7': '216', 'cd10': '624', 'time': '16881', 'cd135': '9092', 'cd45ra': '3449'}, 'GSM1956145': {'a': '74533', 'cd38': '623', 'cd49f': '1089', 'w': '68530', 'h': '71277', 'lin': '90', 'cd34': '10058', 'cd90': '1746', 'cd7': '411', 'cd10': '897', 'time': '17098', 'cd135': '15101', 'cd45ra': '1258'}, 'GSM1956144': {'a': '49871', 'cd38': '594', 'cd49f': '509', 'w': '65926', 'h': '49576', 'lin': '274', 'cd34': '5867', 'cd90': '620', 'cd7': '167', 'cd10': '823', 'time': '14599', 'cd135': '5152', 'cd45ra': '274'}, 'GSM1956143': {'a': '71518', 'cd38': '840', 'cd49f': '772', 'w': '66000', 'h': '71016', 'lin': '209', 'cd34': '7242', 'cd90': '617', 'cd7': '-44', 'cd10': '971', 'time': '14404', 'cd135': '3396', 'cd45ra': '303'}, 'GSM1956142': {'a': '55402', 'cd38': '-189', 'cd49f': '508', 'w': '66567', 'h': '54544', 'lin': '841', 'cd34': '6181', 'cd90': '2309', 'cd7': '639', 'cd10': '630', 'time': '14163', 'cd135': '3246', 'cd45ra': '392'}, 'GSM1956141': {'a': '54761', 'cd38': '1009', 'cd49f': '436', 'w': '67393', 'h': '53252', 'lin': '-401', 'cd34': '3545', 'cd90': '197', 'cd7': '237', 'cd10': '361', 'time': '13950', 'cd135': '3267', 'cd45ra': '160'}, 'GSM1956140': {'a': '42218', 'cd38': '-284', 'cd49f': '459', 'w': '66780', 'h': '41432', 'lin': '-343', 'cd34': '10727', 'cd90': '603', 'cd7': '365', 'cd10': '11084', 'time': '13753', 'cd135': '2948', 'cd45ra': '4819'}, 'GSM2742008': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2742009': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2742006': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2742007': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2742004': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2742005': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2742002': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2742003': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2742000': {'disease': 'ichthyosis vulgaris (IV)', 'mutation': 'FLG mutation'}, 'GSM2742001': {'disease': 'control (CO)', 'mutation': 'WT'}, 'GSM2802863': {'type': 'dental pulp cells', 'tissue': 'tooth', 'resource': 'CCD patient with allelic RUNX2 deletion (CCD-011)'}, 'GSM2802864': {'type': 'dental pulp cells', 'tissue': 'tooth', 'resource': 'sex-age matched unaffected healthy individual (CCD07)'}, 'GSM2120813': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '24 h'}, 'GSM2120812': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '24 h'}, 'GSM2120811': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '4h'}, 'GSM2687243': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687244': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687245': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM2120815': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'sham-irradiated', 'point': '14 d'}, 'GSM2120814': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'sham-irradiated', 'point': '14 d'}, 'GSM2157778': {'line': 'Mcf10A', 'expression': 'targeted deletion of p53 at exon 2, with pBabepuro Vector'}, 'GSM2157779': {'line': 'Mcf10A', 'expression': 'targeted deletion of p53 at exon 2, with pBabepuro Vector'}, 'GSM1498304': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM2044618': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCRlow'}, 'GSM874649': {'antibody': 'anti-deoxyBrU', 'line': 'A549', 'with': 'Flag-â\\x88\\x86PAF virus', 'infection': '12h', 'type': 'Nuclear-Run On RNA'}, 'GSM2044614': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCRlow'}, 'GSM2044615': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCR+'}, 'GSM2044616': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCR-'}, 'GSM2044617': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCRlow'}, 'GSM2044610': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCR-'}, 'GSM2044611': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCR-'}, 'GSM2044612': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCRlow'}, 'GSM2044613': {'protocol': '7 day expansion in UM171', 'type': 'CD34+CD45RA- cord blood cells', 'population': 'EPCRlow'}, 'GSM2326071': {'type': 'Human embryonic stem cell'}, 'GSM2326070': {'type': 'Human embryonic stem cell'}, 'GSM2326073': {'type': 'Human embryonic stem cell'}, 'GSM2326072': {'type': 'Human embryonic stem cell'}, 'GSM2326075': {'type': 'Human embryonic stem cell'}, 'GSM2326074': {'type': 'Human embryonic stem cell'}, 'GSM2326077': {'type': 'Human embryonic stem cell'}, 'GSM2326076': {'type': 'Human embryonic stem cell'}, 'GSM2326079': {'type': 'Human embryonic stem cell'}, 'GSM2326078': {'type': 'Human embryonic stem cell'}, 'GSM1826778': {'line': 'HeLa'}, 'GSM1826779': {'line': 'HeLa'}, 'GSM1826774': {'line': 'HeLa'}, 'GSM1826775': {'line': 'HeLa'}, 'GSM1826776': {'line': 'HeLa'}, 'GSM1826777': {'line': 'HeLa'}, 'GSM2082509': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2+/+'}, 'GSM2643610': {'antibody': 'None', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM2051515': {'line': '786-O', 'type': 'human kidney cancer cells'}, 'GSM2051514': {'line': '786-O', 'type': 'human kidney cancer cells'}, 'GSM1097882': {'type': 'CD34+ cells', 'antibody': 'LYL1 (Abcam, ab30334-200), 383134'}, 'GSM1097883': {'type': 'CD34+ cells', 'antibody': 'GATA2 (Santa Cruz, sc-9008x) I0109'}, 'GSM3362580': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362581': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362582': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362583': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362584': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362585': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362586': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM1097887': {'subtype': 'messenger RNA', 'type': 'CD34+ cells'}, 'GSM2175789': {'with': 'ethanol (vehicle)', 'line': 'MCF7', 'type': 'Human breast cancer cell line'}, 'GSM2175788': {'with': 'ethanol (vehicle)', 'line': 'MCF7', 'type': 'Human breast cancer cell line', 'antibody': 'H3K27Ac Abcam ab4729'}, 'GSM1097884': {'type': 'CD34+ cells', 'antibody': 'RUNX1 (Abcam, ab23980-100), 700492'}, 'GSM2175781': {'antibody': 'H3K27Ac Abcam ab4729', 'line': 'MCF10A', 'type': 'Human breast cell line'}, 'GSM2175780': {'line': 'MCF10A', 'type': 'Human breast cell line'}, 'GSM2175783': {'line': 'MCF10A', 'type': 'Human breast cell line'}, 'GSM2175782': {'antibody': 'H3K27Ac Abcam ab4729', 'line': 'MCF10A', 'type': 'Human breast cell line'}, 'GSM2175785': {'with': '100nM of estradiol for 45 min', 'line': 'MCF7', 'type': 'Human breast cancer cell line', 'antibody': 'H3K27Ac Abcam ab4729'}, 'GSM2175784': {'with': '100nM of estradiol for 45 min', 'line': 'MCF7', 'type': 'Human breast cancer cell line', 'antibody': 'H3K27Ac Abcam ab4729'}, 'GSM2175787': {'with': 'ethanol (vehicle)', 'line': 'MCF7', 'type': 'Human breast cancer cell line', 'antibody': 'H3K27Ac Abcam ab4729'}, 'GSM2175786': {'with': '100nM of estradiol for 45 min', 'line': 'MCF7', 'type': 'Human breast cancer cell line'}, 'GSM1671952': {'type': 'Antigen presenting cells'}, 'GSM1671953': {'type': 'Antigen presenting cells'}, 'GSM1671950': {'type': 'Antigen presenting cells'}, 'GSM1671951': {'type': 'Antigen presenting cells'}, 'GSM1671954': {'type': 'Antigen presenting cells'}, 'GSM1671955': {'type': 'Antigen presenting cells'}, 'GSM3583619': {'type': 'IMR90 iPSC derived cardiomyocytes', 'condition': '3D cardiac spheres', 'stage': 'Day 28 differentiated cells'}, 'GSM3583618': {'subtype': 'tissue samples of left ventricle', 'tissue': 'pediatric heart samples', 'condition': 'tissue'}, 'GSM3583617': {'subtype': 'tissue samples of left ventricle', 'tissue': 'pediatric heart samples', 'condition': 'tissue'}, 'GSM3583616': {'subtype': 'tissue samples of left ventricle', 'tissue': 'pediatric heart samples', 'condition': 'tissue'}, 'GSM3583615': {'type': 'IMR90 iPSC derived cardiomyocytes', 'condition': '3D cardiac spheres', 'stage': 'Day 28 differentiated cells'}, 'GSM3583614': {'type': 'IMR90 iPSC derived cardiomyocytes', 'condition': '3D cardiac spheres', 'stage': 'Day 28 differentiated cells'}, 'GSM3583613': {'type': 'IMR90 iPSC derived cardiomyocytes', 'condition': '3D cardiac spheres', 'stage': 'Day 28 differentiated cells'}, 'GSM2055506': {'individual': 'Patient GNG', 'tissue': 'Normal rectal mucosa'}, 'GSM2055507': {'individual': 'Patient GNG', 'tissue': 'Adenoma'}, 'GSM2055504': {'individual': 'Patient 5', 'tissue': 'Normal rectal mucosa'}, 'GSM2055505': {'individual': 'Patient 5', 'tissue': 'Adenoma'}, 'GSM2055502': {'individual': 'Patient 4', 'tissue': 'Normal rectal mucosa'}, 'GSM2055503': {'individual': 'Patient 4', 'tissue': 'Adenoma'}, 'GSM2055500': {'individual': 'Patient 3', 'tissue': 'Normal rectal mucosa'}, 'GSM2055501': {'individual': 'Patient 3', 'tissue': 'Adenoma'}, 'GSM2668085': {'transfection': 'dCas9 3a3l', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM2668084': {'transfection': 'dCas9 3a3l', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM2668087': {'transfection': 'untransfected', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM2668086': {'transfection': 'dCas9 3a3l', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM2668081': {'transfection': 'dCas9 3a3l delta', 'tissue': 'Breast', 'type': 'Myoepithelial'}, 'GSM2055508': {'individual': 'Patient GNG', 'tissue': 'Adenoma'}, 'GSM2055509': {'individual': 'Patient GNG', 'tissue': 'Adenoma'}, 'GSM3595460': {'donor': 'C', 'region': 'Caudate', 'age': '61'}, 'GSM2047736': {'well': 'C02', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047737': {'well': 'C03', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047734': {'well': 'B12', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047735': {'well': 'C01', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047732': {'well': 'B10', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047733': {'well': 'B11', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047730': {'well': 'B08', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047731': {'well': 'B09', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2471043': {'tissue': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2047738': {'well': 'C04', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047739': {'well': 'C05', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2471045': {'tissue': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2471044': {'tissue': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2176209': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176208': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176205': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176204': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176207': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176206': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176201': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176200': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176203': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176202': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1317636': {'expression': 'empty vector', 'line': 'MCF12A', 'type': 'breast cancer cancer cell line'}, 'GSM2630680': {'line': 'HCC1143', 'treatment': '1uM Trametinib + 1uM JQ1'}, 'GSM2891095': {'line': 'SW480', 'experiment': 'Mono', 'variation': 'control (siNT)'}, 'GSM1317637': {'expression': 'empty vector', 'line': 'MCF12A', 'type': 'breast cancer cancer cell line'}, 'GSM1683250': {'type': 'U87 human glioma cells'}, 'GSM1683251': {'type': 'U87 human glioma cells'}, 'GSM1683252': {'type': 'U87 human glioma cells'}, 'GSM1683253': {'type': 'U87 human glioma cells'}, 'GSM1683254': {'type': 'U87 human glioma cells'}, 'GSM1683255': {'type': 'U87 human glioma cells'}, 'GSM1683256': {'type': 'U87 human glioma cells'}, 'GSM1683257': {'type': 'U87 human glioma cells'}, 'GSM1683258': {'type': 'U87 human glioma cells'}, 'GSM1683259': {'type': 'U87 human glioma cells'}, 'GSM2711739': {'type': 'Pancreatic cancer-associated fibroblasts, 2'}, 'GSM1430905': {'line': 'Ls174T'}, 'GSM2451348': {'compartment': 'Epithelium', 'id': 'CUMC_052', 'library': 'NuGEN'}, 'GSM2451349': {'compartment': 'Stroma', 'id': 'CUMC_052', 'library': 'NuGEN'}, 'GSM2451344': {'compartment': 'Epithelium', 'id': 'CUMC_050', 'library': 'NuGEN'}, 'GSM2451345': {'compartment': 'Stroma', 'id': 'CUMC_050', 'library': 'NuGEN'}, 'GSM2451346': {'compartment': 'Epithelium', 'id': 'CUMC_051', 'library': 'NuGEN'}, 'GSM2451347': {'compartment': 'Stroma', 'id': 'CUMC_051', 'library': 'NuGEN'}, 'GSM2451340': {'compartment': 'Epithelium', 'id': 'CUMC_048', 'library': 'NuGEN'}, 'GSM2451341': {'compartment': 'Stroma', 'id': 'CUMC_048', 'library': 'NuGEN'}, 'GSM2451342': {'compartment': 'Epithelium', 'id': 'CUMC_049', 'library': 'NuGEN'}, 'GSM2451343': {'compartment': 'Stroma', 'id': 'CUMC_049', 'library': 'NuGEN'}, 'GSM1937106': {'age': 'Adult', 'tissue': 'testis', 'type': 'Spermatides', 'Sex': 'Male'}, 'GSM2700075': {'type': 'HCT116', 'effects': 'sh-plus'}, 'GSM2700074': {'type': 'HCT116', 'effects': 'sh1-minus'}, 'GSM2700077': {'type': 'HCT116', 'effects': 'sh2-plus'}, 'GSM2700076': {'type': 'HCT116', 'effects': 'sh2-minus'}, 'GSM2700071': {'line': 'Parental HeyA8', 'tissue': 'Ovaries', 'genotype': 'WT', 'transfection': 'Treated cells with 25nM siL3 siRNA (Dharmacon)', 'point': 'for 2 days'}, 'GSM2700070': {'line': 'Parental HeyA8', 'tissue': 'Ovaries', 'genotype': 'WT', 'transfection': 'Treated cells with 25nM non-targeting siRNA # 2 (Dharmacon)', 'point': 'for 2 days'}, 'GSM2700073': {'line': 'Parental HeyA8', 'tissue': 'Ovaries', 'genotype': 'WT', 'transfection': 'Treated cells with 25nM siL3 siRNA (IDT)', 'point': 'for 2 days'}, 'GSM2700072': {'line': 'Parental HeyA8', 'tissue': 'Ovaries', 'genotype': 'WT', 'transfection': 'Treated cells with 25nM non-targeting siRNA # 2 (IDT)', 'point': 'for 2 days'}, 'GSM2806229': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM1872996': {'infection': 'Uninfected control'}, 'GSM2547138': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2590779': {'tissue': 'bone marrow', 'type': 'CD34+CD33+ myeloid precursor', 'markers': 'CD15- CD33+ CD34+ CD11b- CD16- CD13+'}, 'GSM2590778': {'tissue': 'bone marrow', 'type': 'Myelocyte CD34-CD11b+CD16-', 'markers': 'CD15+ CD33+ CD34- CD11b+ CD16- CD13-'}, 'GSM2590775': {'tissue': 'bone marrow', 'type': 'Erythroblast CD34-CD71+GlyA+', 'markers': 'CD34- CD71+ Gpa+'}, 'GSM2590774': {'tissue': 'bone marrow', 'type': 'Early Eryhtroblast CD34-CD71+GlyA-', 'markers': 'CD34- CD71+ Gpa-'}, 'GSM2590777': {'tissue': 'bone marrow', 'type': 'Metamyelocyte CD34-CD11b+CD16med', 'markers': 'CD15+ CD33+ CD34- CD11b+ CD16med'}, 'GSM2590776': {'tissue': 'bone marrow', 'type': 'Mature erythroblast CD34-CD71-GlyA+', 'markers': 'CD34- CD71- Gpa+'}, 'GSM2590771': {'tissue': 'bone marrow', 'type': 'Pre-B-Precursor CD34-CD10+CD19+', 'markers': 'CD34- CD10+ CD19+'}, 'GSM2590770': {'tissue': 'bone marrow', 'type': 'Early Pre-B precursor CD34+CD10+CD19+', 'markers': 'CD34+ CD10+ CD19+'}, 'GSM2590773': {'tissue': 'bone marrow', 'type': 'Immature proerythroblast CD34+CD71+GlyA-', 'markers': 'CD34+ CD71+ Gpa-'}, 'GSM2590772': {'tissue': 'bone marrow', 'type': 'Band-segmented_granulocytes CD34-CD11b+CD16+', 'markers': 'CD15+ CD33+ CD34- CD11b+ CD16+++ CD13+'}, 'GSM3417923': {'protocol': '10%FBS/DMEM', 'number': 'KF297339', 'infection': 'MOI=1', 'passage': '10-15', 'strain': 'CMV/TB40', 'treatment': 'NT LNA', 'time': '48', 'type': 'HFF'}, 'GSM1937104': {'age': 'Adult', 'tissue': 'testis', 'type': 'Spermatocytes', 'Sex': 'Male'}, 'GSM3417922': {'protocol': '10%FBS/DMEM', 'number': 'KF297339', 'infection': 'MOI=1', 'passage': '10-15', 'strain': 'CMV/TB40', 'treatment': 'NT LNA', 'time': '48', 'type': 'HFF'}, 'GSM2947890': {'line': 'NBL-WN', 'treatment': 'Treatment: 48 hours Hypoxia'}, 'GSM2947891': {'line': 'NBL-WN', 'treatment': '48 hours Normoxia'}, 'GSM2947892': {'line': 'NBL-WN', 'treatment': '48 hours Hypoxia'}, 'GSM2947893': {'line': 'NBL-WN'}, 'GSM2947894': {'line': 'SK-N-BE(2)', 'treatment': '48 hours Normoxia'}, 'GSM2947895': {'line': 'SK-N-BE(2)', 'treatment': '48 hours Normoxia'}, 'GSM2947896': {'line': 'SK-N-BE(2)', 'treatment': '48 hours Hypoxia'}, 'GSM2947897': {'line': 'SK-N-BE(2)', 'treatment': '48 hours Hypoxia'}, 'GSM2547133': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM3417920': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'NT LNA', 'time': '48', 'type': 'HFF'}, 'GSM2547132': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM3417927': {'protocol': '10%FBS/DMEM', 'number': 'KF297339', 'infection': 'MOI=1', 'passage': '10-15', 'strain': 'CMV/TB40', 'treatment': 'HSATII LNA', 'time': '48', 'type': 'HFF'}, 'GSM2806221': {'tissue': 'lateral temporal lobe', 'group': 'Young'}, 'GSM3417926': {'protocol': '10%FBS/DMEM', 'number': 'KF297339', 'infection': 'MOI=1', 'passage': '10-15', 'strain': 'CMV/TB40', 'treatment': 'HSATII LNA', 'time': '48', 'type': 'HFF'}, 'GSM1937105': {'age': 'Adult', 'tissue': 'testis', 'type': 'Spermatocytes', 'Sex': 'Male'}, 'GSM2806220': {'tissue': 'lateral temporal lobe', 'group': 'Young'}, 'GSM3417925': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'HSATII LNA', 'time': '48', 'type': 'HFF'}, 'GSM2225753': {'tissue': 'pancreas'}, 'GSM2547137': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM3417924': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'HSATII LNA', 'time': '48', 'type': 'HFF'}, 'GSM2225750': {'tissue': 'pancreas'}, 'GSM2547136': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2225751': {'tissue': 'pancreas'}, 'GSM2547135': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM2225756': {'tissue': 'pancreas'}, 'GSM2547134': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2225757': {'tissue': 'pancreas'}, 'GSM2225754': {'tissue': 'pancreas'}, 'GSM1847259': {'line': 'MCF7', 'type': 'breast adenocarcinoma', 'state': 'AKT1 Low'}, 'GSM2225755': {'tissue': 'pancreas'}, 'GSM2636215': {'type': 'naive embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2636214': {'type': 'naive embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2636213': {'type': 'naive embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636212': {'type': 'naive embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636211': {'type': 'primed embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2636210': {'type': 'primed embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM1568709': {'variant': 'DIS3wild type + shRNA'}, 'GSM1341738': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341739': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341732': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341733': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341730': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341731': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341736': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341737': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341734': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341735': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM2339250': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2049158': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049159': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM2049150': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049151': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049152': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049153': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049154': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049155': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049156': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049157': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM1599887': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599886': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599885': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599884': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599883': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599882': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599881': {'procedure': 'adjustable gastric banding', 'time': 'T0'}, 'GSM1395586': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1864222': {'with': 'siFOXA1', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1599889': {'procedure': 'adjustable gastric banding', 'time': 'T0'}, 'GSM1599888': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM2632448': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632449': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632446': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632447': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632444': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632445': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632442': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632443': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632440': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632441': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2536186': {'age': '81', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle3 treatment', 'Sex': 'male'}, 'GSM2536187': {'age': '81', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle4 treatment', 'Sex': 'male'}, 'GSM2565759': {'line': 'HeLa', 'tag': 'localization and affinity purification (LAP)-tag', 'with': 'CBP20'}, 'GSM2536185': {'age': '81', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle2 treatment', 'Sex': 'male'}, 'GSM2536183': {'age': '81', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Pre-treatment', 'Sex': 'male'}, 'GSM2689311': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689312': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2536188': {'age': '71', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Pre-treatment', 'Sex': 'female'}, 'GSM2536189': {'age': '71', 'state': 'melanoma patient', 'type': 'peripheral blood mononuclear cell', 'treatment': 'Cycle1 treatment', 'Sex': 'female'}, 'GSM2492521': {'status': 'Positive', 'tissue': 'lung', 'type': 'CD4'}, 'GSM2492520': {'status': 'Negative', 'tissue': 'lung', 'type': 'CD4'}, 'GSM2492523': {'status': 'Positive', 'tissue': 'lung', 'type': 'CD8'}, 'GSM2424941': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2492525': {'status': 'Negative', 'tissue': 'blood', 'type': 'CD8'}, 'GSM2492524': {'status': 'Negative', 'tissue': 'blood', 'type': 'CD4'}, 'GSM2492527': {'status': 'Negative', 'tissue': 'blood', 'type': 'CD8'}, 'GSM1864229': {'with': 'siMALAT1', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM2492529': {'status': 'Negative', 'tissue': 'blood', 'type': 'CD8'}, 'GSM2492528': {'status': 'Negative', 'tissue': 'blood', 'type': 'CD4'}, 'GSM2449214': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'control'}, 'GSM2689315': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689316': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424945': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1915579': {'donorid': '1022', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915578': {'donorid': '1022', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915577': {'category': 'old_1', 'type': 'MRC-5', 'doublings': '62'}, 'GSM1915576': {'category': 'old_1', 'type': 'MRC-5', 'doublings': '62'}, 'GSM1915575': {'category': 'old_1', 'type': 'MRC-5', 'doublings': '62'}, 'GSM1915574': {'category': '-', 'type': 'MRC-5', 'doublings': '52'}, 'GSM1915573': {'category': '-', 'type': 'MRC-5', 'doublings': '52'}, 'GSM1915572': {'category': '-', 'type': 'MRC-5', 'doublings': '52'}, 'GSM1915571': {'category': '-', 'type': 'MRC-5', 'doublings': '42'}, 'GSM1915570': {'category': '-', 'type': 'MRC-5', 'doublings': '42'}, 'GSM2629510': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 14 of differentiation'}, 'GSM2665717': {'age': 'Day 100', 'well': 'G5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665714': {'age': 'Day 100', 'well': 'B10', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665715': {'age': 'Day 100', 'well': 'E5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665712': {'age': 'Day 100', 'well': 'E11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2629515': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 23 of differentiation'}, 'GSM2665710': {'age': 'Day 100', 'well': 'F10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2629517': {'type': 'H9 cells', 'treatment': 'untreated', 'time': 'day 23 of differentiation'}, 'GSM2629518': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 23 of differentiation'}, 'GSM2629519': {'type': 'H9 cells', 'treatment': 'untreated', 'time': 'day 23 of differentiation'}, 'GSM2665718': {'age': 'Day 100', 'well': 'E8', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665719': {'age': 'Day 100', 'well': 'H8', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2186804': {'stimulation': 'interferon gamma', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186805': {'stimulation': 'media alone', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186806': {'stimulation': 'TLR2/1 ligand', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186807': {'stimulation': 'interferon gamma', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186800': {'stimulation': 'TLR2/1 ligand', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186801': {'stimulation': 'interferon gamma', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186802': {'stimulation': 'media alone', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186803': {'stimulation': 'TLR2/1 ligand', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186808': {'stimulation': 'media alone', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186809': {'stimulation': 'TLR2/1 ligand', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2303364': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303365': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303366': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303367': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303360': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303361': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303362': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303363': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM991173': {'line': '20% malignant'}, 'GSM991172': {'line': '10% malignant'}, 'GSM991171': {'line': '5% malignant'}, 'GSM991170': {'line': '1% malignant'}, 'GSM2303368': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303369': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCG268'}, 'GSM991175': {'line': '100% malignant'}, 'GSM991174': {'line': '30% malignant'}, 'GSM2143674': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143675': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143676': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143677': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143670': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143671': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143672': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143673': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2143678': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM2390657': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU042'}, 'GSM2535723': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1195', 'samplename': '1gr_413CD3_C58', 'seqsite': 'BRI', 'sampleID': 'S13322', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1195', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C58'}, 'GSM1273486': {'type': 'human aortic endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '8'}, 'GSM1273487': {'type': 'human umbilical vein endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '5'}, 'GSM1273484': {'type': 'human umbilical vein endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '5'}, 'GSM2816212': {'line': 'H9'}, 'GSM2218723': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218722': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218721': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218720': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2535721': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1193', 'samplename': '1gr_413CD3_C42', 'seqsite': 'BRI', 'sampleID': 'S13320', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1193', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C42'}, 'GSM2218725': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218724': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM1574309': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'PT45P1'}, 'GSM1574308': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'PANC1'}, 'GSM2141296': {'individual': 'AF65', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141297': {'individual': 'AF65', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141290': {'individual': 'AF61', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141291': {'individual': 'AF61', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141292': {'individual': 'AF61', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141293': {'individual': 'AF63', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1574301': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'CFPAC1'}, 'GSM2816217': {'line': 'H9'}, 'GSM1574303': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'HPAF2'}, 'GSM1574302': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'CFPAC1'}, 'GSM2141298': {'individual': 'AF65', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141299': {'individual': 'AF67', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1574307': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'PANC1'}, 'GSM2535726': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1199', 'samplename': '1gr_413CD3_C53', 'seqsite': 'BRI', 'sampleID': 'S13326', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1199', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C53'}, 'GSM2458804': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM2458805': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM2458806': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM2458807': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM2458800': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM1939008': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL mutant'}, 'GSM2458802': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM2458803': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM1939007': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL mutant'}, 'GSM1012770': {'phase': 'S6', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM2458808': {'line': 'HT-29-MTX', 'tissue': 'Intestinal epithelium', 'disease': 'Colorectal carcinoma', 'treatment': 'treated for 24 hours with A. ceylanicum iL3 larvae'}, 'GSM2458809': {'line': 'HT-29-MTX', 'tissue': 'Intestinal epithelium', 'disease': 'Colorectal carcinoma', 'treatment': 'treated for 24 hours with A. ceylanicum iL3 larvae'}, 'GSM1868735': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2050565': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM2653627': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2535729': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1202', 'samplename': '1gr_413CD3_C71', 'seqsite': 'BRI', 'sampleID': 'S13329', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1202', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C71'}, 'GSM2653626': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2535728': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1201', 'samplename': '1gr_413CD3_C65', 'seqsite': 'BRI', 'sampleID': 'S13328', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1201', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C65'}, 'GSM1868730': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868731': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2409688': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409689': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409684': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409685': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409686': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409687': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409680': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409681': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409682': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2409683': {'line': 'HS-ES-2M', 'tissue': 'epithelioid sarcoma'}, 'GSM2302095': {'timepoint': 'Post', 'id': '38', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302094': {'timepoint': 'Pre', 'id': '38', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302097': {'timepoint': 'Post', 'id': '39', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302096': {'timepoint': 'Pre', 'id': '39', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302091': {'timepoint': 'Post', 'id': '36', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302090': {'timepoint': 'Pre', 'id': '36', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302093': {'timepoint': 'Post', 'id': '37', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302092': {'timepoint': 'Pre', 'id': '37', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302099': {'timepoint': 'Post', 'id': '40', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302098': {'timepoint': 'Pre', 'id': '40', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2069850': {'status': 'Alive', 'rnaseq': 'stranded', 'gender': 'F', 'mapki': 'Y', 'site': 'VIC', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'Cervical, LN', 'time': 'pre-treatment', 'id': 'Pt38', 'treatment': 'Pembrolizumab'}, 'GSM1071277': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'line': 'LNCaP', 'tissue': 'Prostate adenocarcinoma', 'type': 'Androgen-sensitive', 'agent': 'vehicle, control'}, 'GSM1896168': {'individual': 'EU14', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896169': {'individual': 'EU14', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896162': {'individual': 'AF79', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896163': {'individual': 'AF79', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896160': {'individual': 'AF77', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896161': {'individual': 'AF77', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896166': {'individual': 'EU06', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896167': {'individual': 'EU06', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896164': {'individual': 'AF79', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896165': {'individual': 'EU06', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2388547': {'type': 'invasive non-functional pituitary adenomas'}, 'GSM2388548': {'type': 'non-invasive non-functional pituitary adenomas'}, 'GSM1071276': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'line': 'LNCaP', 'tissue': 'Prostate adenocarcinoma', 'type': 'Androgen-sensitive', 'agent': 'vehicle, control'}, 'GSM2480962': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480963': {'sirna': 'TNRC6A TNRC6B', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480960': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'polysomal (fractions 6-11)'}, 'GSM2480961': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480964': {'sirna': 'TNRC6A TNRC6B', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2175042': {'line': 'K562'}, 'GSM2476008': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2642556': {'control': 'Cocaine Dependence', 'death': 'acute cocaine toxicity', 'age': '36', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.40', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2828180': {'passages': '18-20', 'group': 'experiment', 'condition': 'overexpression of PLAC8'}, 'GSM2476006': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM3417902': {'protocol': '10%FBS/DMEM', 'number': 'AC146907', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'CMV/FIX', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM2642558': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '30', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.86', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2309579': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309578': {'source': 'biopsy', 'identifier': 'D', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309577': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309576': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309575': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309574': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309573': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309572': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309571': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309570': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2153408': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153409': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153406': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153407': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153404': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153405': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153402': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153403': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153400': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153401': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM987844': {'donor': 'pancreatic cancer patient 16', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987845': {'donor': 'pancreatic cancer patient 18', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM2364549': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2364548': {'antibody': 'AF4 (Abcam, ab31812)', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM987840': {'donor': 'pancreatic cancer patient 11', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987841': {'donor': 'pancreatic cancer patient 12', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM1856018': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856019': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM2364543': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2364542': {'antibody': 'MLL1 (Bethyl, A300-086A)', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM1856014': {'passages': '3-7', 'antibody': 'anti-Ty1 (Menafra et al., 2014)', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856015': {'passages': '3-7', 'antibody': 'anti-Ty1 (Menafra et al., 2014)', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856012': {'passages': '3-7', 'antibody': 'anti-Ty1 (Menafra et al., 2014)', 'variation': 'Ty1-GATA3 expressed'}, 'GSM2364546': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2364545': {'antibody': 'AF4 (Abcam, ab31812)', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2364544': {'antibody': 'MLL1 (Bethyl, A300-086A)', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2392182': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392183': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392180': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392181': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392186': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392187': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392184': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392185': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2316995': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316994': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2392188': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2316996': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316991': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316990': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316993': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316992': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2047243': {'buffer': 'Li', 'line': 'HeLa'}, 'GSM3417906': {'protocol': '10%FBS/DMEM', 'number': 'KF297339', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'CMV/TB40e', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM2575114': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2575115': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '18h'}, 'GSM2575116': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '18h'}, 'GSM2575117': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2575110': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2575111': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '12h'}, 'GSM2575112': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '12h'}, 'GSM2575113': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '520', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2575118': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2575119': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'A/California/04/09 (H1N1), MOI 2', 'point': '03h'}, 'GSM2602083': {'shRNA': 'Control shRNA', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2210921': {'status': 'adjacent normal tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '55'}, 'GSM2175045': {'line': 'K562'}, 'GSM3711249': {'mediancvcoverage': '0.668159', 'percentaligned': '0.949936132', 'visit': 'Visit 1a', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '13'}, 'GSM2453945': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2210578': {'line': 'A375', 'treatment': 'Control'}, 'GSM1620478': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2210576': {'line': 'A375', 'treatment': 'Vemurafenib+JQ1'}, 'GSM1620476': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620475': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620474': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2210572': {'line': 'A375', 'treatment': 'Control'}, 'GSM2210573': {'line': 'A375', 'treatment': 'Vemurafenib+JQ1'}, 'GSM1620471': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2210571': {'line': 'A375', 'treatment': 'Control'}, 'GSM2462647': {'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '100P/S'}, 'GSM2324189': {'group': 'LowA422', 'type': 'PBMC', 'day': '56', 'subjectid': '1704'}, 'GSM2324188': {'group': 'LowA422', 'type': 'PBMC', 'day': '28', 'subjectid': '1704'}, 'GSM2324187': {'group': 'LowA422', 'type': 'PBMC', 'day': '14', 'subjectid': '1704'}, 'GSM2324186': {'group': 'LowA422', 'type': 'PBMC', 'day': '0', 'subjectid': '1704'}, 'GSM2324185': {'group': 'LowA422', 'type': 'PBMC', 'day': '84', 'subjectid': '301'}, 'GSM2324184': {'group': 'LowA422', 'type': 'PBMC', 'day': '56', 'subjectid': '301'}, 'GSM2157899': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2324182': {'group': 'LowA422', 'type': 'PBMC', 'day': '14', 'subjectid': '301'}, 'GSM2324181': {'group': 'LowA422', 'type': 'PBMC', 'day': '0', 'subjectid': '301'}, 'GSM2324180': {'group': 'BCG', 'type': 'PBMC', 'day': '84', 'subjectid': '7221'}, 'GSM2462644': {'batch': '2', 'astrocytes': 'y', 'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '100P/S'}, 'GSM2043754': {'status': 'HIV-', 'individual': '0292-xxxneg', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2043755': {'status': 'HIV-', 'individual': '0292-xxxneg', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM1359485': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM1359484': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM1359487': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'iSLK', 'type': 'Kidney epithelial cells'}, 'GSM1359486': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM2462641': {'batch': '1', 'astrocytes': 'y', 'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '50P/S'}, 'GSM1359483': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'iSLK', 'type': 'Kidney epithelial cells'}, 'GSM2462640': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '50P/S'}, 'GSM2099959': {'rin': '9.4', 'Sex': 'Male', 'sspg': '180', 'age': '62', 'bmi': '31.7', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '18', 'method': 'Life-Tech GITC'}, 'GSM1359488': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM2535641': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1103', 'samplename': '1_413UNST_C20', 'seqsite': 'BRI', 'sampleID': 'S13212', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1103', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C20'}, 'GSM1576791': {'status': 'm15 J6/JFH1 Clone2', 'line': 'Huh7.5'}, 'GSM2551394': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551395': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551396': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM1908039': {'line': '143B', 'tissue': 'Tumour cell line', 'type': 'Osteosarcoma 143B', 'haplogroup': 'no mtDNA'}, 'GSM2551397': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551390': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2551391': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM1957135': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957134': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957137': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957136': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957131': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2551392': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM1957133': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957132': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2551393': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM1957139': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957138': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2771754': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_5', 'structure': 'neurite'}, 'GSM1864220': {'with': 'siEZH2', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1626459': {'tissue': 'placental villus parenchyma'}, 'GSM1626458': {'tissue': 'placental villus parenchyma'}, 'GSM1864225': {'with': 'siFOXM1', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1864227': {'with': 'siKDM1A', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1626453': {'tissue': 'placental villus parenchyma'}, 'GSM1626452': {'tissue': 'placental villus parenchyma'}, 'GSM1626451': {'tissue': 'placental villus parenchyma'}, 'GSM1626450': {'tissue': 'placental villus parenchyma'}, 'GSM1626457': {'tissue': 'placental villus parenchyma'}, 'GSM1626456': {'tissue': 'placental villus parenchyma'}, 'GSM1626455': {'tissue': 'placental villus parenchyma'}, 'GSM1626454': {'tissue': 'placental villus parenchyma'}, 'GSM2309906': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'MPGN-membranoproliferative?typ', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '65.14'}, 'GSM2805868': {'genotype': 'WT', 'antibody': 'A302869A (Bethyl)', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2309904': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Glom-sclerosis,chr&unspecified', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '66.40'}, 'GSM2309905': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Glom-sclerosis,chr&unspecified', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '66.40'}, 'GSM2309902': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '39.08'}, 'GSM2309903': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Glom-sclerosis,chr&unspecified', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '66.40'}, 'GSM2309900': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '39.08'}, 'GSM2309901': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '39.08'}, 'GSM2309908': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'MPGN-membranoproliferative?typ', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '65.14'}, 'GSM2309909': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Glom-sclerosis,chr&unspecified', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '55.96'}, 'GSM2805869': {'genotype': 'WT', 'antibody': 'PCGF1 (Oliviero, 2015, Gearhart et al, 2006)', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2166409': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1554615': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2047248': {'buffer': 'K', 'line': 'HeLa'}, 'GSM2166407': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2047246': {'buffer': 'Li', 'line': 'HeLa'}, 'GSM2047247': {'buffer': 'K', 'line': 'HeLa'}, 'GSM2047244': {'buffer': 'Li', 'line': 'HeLa'}, 'GSM2047245': {'buffer': 'Li', 'line': 'HeLa'}, 'GSM1554617': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2577185': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '0h'}, 'GSM2577184': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '0h'}, 'GSM2577187': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '3h'}, 'GSM2577186': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '3h'}, 'GSM1554611': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2577189': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '6h'}, 'GSM2577188': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '6h'}, 'GSM2166403': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1554613': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1907126': {'gondii': 'RHDku80', 'variation': 'GRA16HA:DASP5', 'infection': 'Infected with Toxoplasma gondii'}, 'GSM1907125': {'gondii': 'RHDku80', 'variation': 'GRA16HA:DASP5', 'infection': 'Infected with Toxoplasma gondii'}, 'GSM1907124': {'gondii': 'RHDku80', 'variation': 'GRA16HA:DASP5', 'infection': 'Infected with Toxoplasma gondii'}, 'GSM1907123': {'gondii': 'RHDku80', 'variation': 'GRA16HA', 'infection': 'Infected with Toxoplasma gondii'}, 'GSM1907122': {'gondii': 'RHDku80', 'variation': 'GRA16HA', 'infection': 'Infected with Toxoplasma gondii'}, 'GSM1907121': {'gondii': 'RHDku80', 'variation': 'GRA16HA', 'infection': 'Infected with Toxoplasma gondii'}, 'GSM1907120': {'gondii': 'NA', 'variation': 'NA', 'infection': 'Uninfected'}, 'GSM1701336': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701337': {'status': 'healthy', 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701334': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701335': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701332': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HET SNP13/HET SNP8 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701333': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701330': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HOM SNP13 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701331': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HET SNP13/HET SNP12 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701338': {'status': 'healthy', 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701339': {'status': 'healthy', 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1363509': {'grade': 'NA', 'alb': '41.6', 'tb': '20.4', 'individual': 'HCC2', 'alt': '19', 'pt': '11.9', 'hbvdna': '6210', 'ca199': '<0.8', 'hgb': '140', 'method': 'RFA', 'ggt': '123.4', 'cea': '4.41', 'ast': '33', 'rna': 'Yes', 'db': '6.7', 'cirrhosis': 'NA', 'afp': '1461.1', 'hbsag': '>240ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '43', 'ltx': 'B', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.42'}, 'GSM1632432': {'line': 'BJ', 'type': 'fibroblasts', 'number': 'passage 5', 'transgenes': 'no', 'time': '72 hours post seeding'}, 'GSM1363508': {'grade': 'NA', 'alb': '40.2', 'tb': '29.6', 'individual': 'HCC10', 'alt': '71', 'pt': '12.7', 'hbvdna': '<500', 'ca199': '70.8', 'hgb': '136', 'method': 'RFA', 'ggt': '79.5', 'cea': '3.97', 'ast': '96', 'rna': 'Yes', 'db': '10.7', 'cirrhosis': 'No', 'afp': '1888.2', 'hbsag': '>250ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '59', 'ltx': 'A3', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.03'}, 'GSM2593359': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a'}, 'GSM485481': {'line': 'NA18504'}, 'GSM485480': {'line': 'NA19099'}, 'GSM485483': {'line': 'NA18522'}, 'GSM485482': {'line': 'NA18516'}, 'GSM485485': {'line': 'NA19172'}, 'GSM485484': {'line': 'NA19093'}, 'GSM485487': {'line': 'NA19116'}, 'GSM485486': {'line': 'NA18498'}, 'GSM485489': {'line': 'NA19204'}, 'GSM485488': {'line': 'NA18871'}, 'GSM2390919': {'disease': 'Healthy Control'}, 'GSM2390918': {'disease': 'Healthy Control'}, 'GSM2390917': {'disease': 'Healthy Control'}, 'GSM2390916': {'disease': 'Healthy Control'}, 'GSM2390915': {'disease': 'Healthy Control'}, 'GSM2390914': {'disease': 'Healthy Control'}, 'GSM2390913': {'disease': 'Healthy Control'}, 'GSM2390912': {'disease': 'Healthy Control'}, 'GSM2390911': {'disease': 'Healthy Control'}, 'GSM2390910': {'disease': 'Healthy Control'}, 'GSM1980113': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980112': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980111': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980110': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2573758': {'antibody': 'KLF4', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573759': {'antibody': 'KLF4', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2825060': {'tissue': 'Bone marrow', 'type': 'Sorted live ILC1s'}, 'GSM1980114': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2573754': {'antibody': 'H3K9me3', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573755': {'antibody': 'H3K9me3', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573756': {'antibody': 'H3K9me3', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1980118': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2573750': {'antibody': 'H3K27me3', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573751': {'antibody': 'H3K27me3', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573752': {'antibody': 'H3K27me3', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573753': {'antibody': 'H3K9me3', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1312713': {'line': 'HGDP00855', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Maya'}, 'GSM2358896': {'type': 'Aorta smooth muscle cells'}, 'GSM1899725': {'of': 'HER2/ERBB2', 'type': 'mammary epithelial cells'}, 'GSM2689105': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689104': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689107': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689106': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689101': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689100': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689103': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689102': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689109': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689108': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2231427': {'transduction': 'Empty vector', 'line': 'MB002', 'type': 'Medulloblastoma cell line'}, 'GSM2135479': {'type': 'CAGE', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'Not applicable'}, 'GSM2135478': {'type': 'CAGE', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Not applicable'}, 'GSM2135473': {'type': 'H3K27ac', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'H3K27ac'}, 'GSM2135472': {'type': 'H3K27ac', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Input'}, 'GSM2135471': {'type': 'H3K27ac', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'H3K27ac'}, 'GSM2135470': {'type': 'H3K27ac', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'Input'}, 'GSM2135477': {'type': 'CAGE', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'Not applicable'}, 'GSM2135476': {'type': 'H3K27ac', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Input'}, 'GSM2135475': {'type': 'H3K27ac', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'H3K27ac'}, 'GSM2135474': {'type': 'H3K27ac', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'Input'}, 'GSM1862670': {'line': 'Jeu_3', 'condition': 'normal', 'Stage': '8h'}, 'GSM3100458': {'treatment': 'JQ1 6 hours'}, 'GSM3100459': {'treatment': 'JQ1 6 hours'}, 'GSM3100454': {'treatment': 'DMSO'}, 'GSM3100455': {'treatment': 'Imatinib 6 hours'}, 'GSM3100456': {'treatment': 'Imatinib 6 hours'}, 'GSM3100457': {'treatment': 'Imatinib 6 hours'}, 'GSM3100452': {'treatment': 'DMSO'}, 'GSM3100453': {'treatment': 'DMSO'}, 'GSM2756194': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2328334': {'followup': '3.6', 'grade': 'II', 'age': '74', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IA'}, 'GSM2328335': {'followup': '3.6', 'grade': 'II', 'age': '74', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328336': {'followup': '6.2', 'grade': 'II', 'age': '73', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328337': {'followup': '6.2', 'grade': 'II', 'age': '73', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328330': {'followup': '6.75', 'grade': 'II', 'age': '88', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IA'}, 'GSM2328331': {'followup': '6.75', 'grade': 'II', 'age': '88', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328332': {'followup': '4.09', 'grade': 'II', 'age': '71', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IA'}, 'GSM2328333': {'followup': '4.09', 'grade': 'II', 'age': '71', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328338': {'followup': '6.47', 'grade': 'III', 'age': '32', 'Sex': 'Male', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328339': {'followup': '6.47', 'grade': 'III', 'age': '32', 'Sex': 'Male', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'NL', 'Stage': 'IB'}, 'GSM1203342': {'tissue': 'blood'}, 'GSM1203343': {'tissue': 'blood'}, 'GSM1203340': {'tissue': 'blood'}, 'GSM1203341': {'tissue': 'bone marrow'}, 'GSM1203346': {'tissue': 'blood'}, 'GSM1203347': {'tissue': 'blood'}, 'GSM1203344': {'tissue': 'bone marrow'}, 'GSM1203345': {'tissue': 'bone marrow'}, 'GSM1517072': {'line': 'A549', 'shRNA': 'Negative control', 'treatment': 'no', 'rip': 'no', 'histology': 'lung adenocarcinoma'}, 'GSM1517073': {'line': 'A549', 'shRNA': 'Negative control', 'treatment': 'no', 'rip': 'no', 'histology': 'lung adenocarcinoma'}, 'GSM1517074': {'line': 'A549', 'shRNA': 'RBM47', 'treatment': 'yes', 'rip': 'no', 'histology': 'lung adenocarcinoma'}, 'GSM1517075': {'line': 'A549', 'shRNA': 'RBM47', 'treatment': 'yes', 'rip': 'no', 'histology': 'lung adenocarcinoma'}, 'GSM1517076': {'line': 'A549', 'shRNA': 'none', 'treatment': 'no', 'rip': 'anti-snRNP70 (provided by RIP-kit)', 'histology': 'lung adenocarcinoma'}, 'GSM1517077': {'line': 'A549', 'shRNA': 'none', 'treatment': 'no', 'rip': 'anti-RBM47 (Sigma-Aldrich, HPA006347), lot no not available', 'histology': 'lung adenocarcinoma'}, 'GSM1517078': {'line': 'A549', 'shRNA': 'none', 'treatment': 'no', 'rip': 'anti-RBM47 (Sigma-Aldrich, HPA006347), lot no not available', 'histology': 'lung adenocarcinoma'}, 'GSM1517079': {'line': 'A549', 'shRNA': 'none', 'treatment': 'no', 'rip': 'rabbit IgG, (provided by RIP kit)', 'histology': 'lung adenocarcinoma'}, 'GSM2756198': {'status': 'intraductal papillary mucinous neoplasm (IPMN), high-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM1901158': {'type': 'hepatocellular cancer', 'id': '504'}, 'GSM1302029': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1302028': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1302027': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1901155': {'type': 'hepatocellular cancer', 'id': '2'}, 'GSM1901156': {'type': 'hepatocellular cancer', 'id': '3'}, 'GSM1901157': {'type': 'hepatocellular cancer', 'id': '301'}, 'GSM1901150': {'type': 'hepatocellular cancer', 'id': '9194'}, 'GSM1901151': {'type': 'normal liver', 'id': '9195'}, 'GSM1901152': {'type': 'hepatocellular cancer', 'id': '9195'}, 'GSM1901153': {'type': 'normal liver', 'id': '9401'}, 'GSM2666147': {'age': 'Day 130', 'well': 'D9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1897367': {'line': 'MDA-MB-231', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(-)', 'treatment': 'CD3-CD28 PBMC'}, 'GSM1897366': {'line': 'MDA-MB-231', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(-)', 'treatment': 'CD3-CD28 SP'}, 'GSM1897365': {'line': 'MDA-MB-231', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(-)', 'treatment': 'Isotype PBMC+SP'}, 'GSM1897364': {'line': 'MDA-MB-231', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(-)', 'treatment': 'Isotype PBMC'}, 'GSM2299009': {'age': '33', 'type': 'Stem cell'}, 'GSM1897362': {'line': 'MCF7', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(+)', 'treatment': 'CD3-CD28 PBMC+SP'}, 'GSM1897361': {'line': 'MCF7', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(+)', 'treatment': 'CD3-CD28 PBMC'}, 'GSM1897360': {'line': 'MCF7', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(+)', 'treatment': 'CD3-CD28 SP'}, 'GSM2299005': {'age': '49', 'type': 'Stem cell'}, 'GSM2299004': {'age': '41', 'type': 'Stem cell'}, 'GSM2299007': {'age': '24', 'type': 'Stem cell'}, 'GSM2299006': {'age': '34', 'type': 'Stem cell'}, 'GSM2299001': {'age': '63', 'type': 'Stem cell'}, 'GSM2299000': {'age': '61', 'type': 'Stem cell'}, 'GSM2299003': {'age': '48', 'type': 'Stem cell'}, 'GSM1897368': {'line': 'MDA-MB-231', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(-)', 'treatment': 'CD3-CD28 PBMC+SP'}, 'GSM2243640': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'E11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243641': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243642': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243643': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243644': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243645': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243646': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243647': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243648': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243649': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2572720': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '10', 'day': '0'}, 'GSM1401809': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401808': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM2666148': {'age': 'Day 130', 'well': 'H4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666149': {'age': 'Day 130', 'well': 'D10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1401801': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401800': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401803': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401802': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401805': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401804': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401807': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401806': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM2371228': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371229': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371224': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371225': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371226': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine, 1:1000 ITS Premix Supplement'}, 'GSM2371227': {'media': 'Neurobasal-A plus EGE, FGF, 2mM L-glutamine, B27, and N2'}, 'GSM2430699': {'state': 'Normal', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2371222': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371223': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2430698': {'state': 'Normal', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2202399': {'type': 'Human Brain Reference RNA from Thermo Fisher Scientific'}, 'GSM2202398': {'type': 'Universal Human Reference RNA from Agilent Technologies'}, 'GSM2202397': {'type': 'Universal Human Reference RNA from Agilent Technologies'}, 'GSM1019743': {'line': 'HT29', 'type': 'colon cancer', 'treatment': '5-Aza high'}, 'GSM1683199': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683198': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683197': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683196': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683195': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683194': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683193': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683192': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683191': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683190': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1306821': {'line': 'Caco-2', 'treatment': '10mM TNFa'}, 'GSM1306820': {'line': 'Caco-2', 'treatment': '10mM TNFa'}, 'GSM1019742': {'line': 'HT29', 'type': 'colon cancer', 'treatment': '5-Aza high'}, 'GSM1638229': {'state': 'severe', 'type': 'iPSCs', 'day': 'd0'}, 'GSM1638228': {'state': 'mild', 'type': 'iPSCs', 'day': 'd0'}, 'GSM1638227': {'state': 'normal', 'type': 'iPSCs', 'day': 'd0'}, 'GSM2170531': {'stage': 'Endothelial cells'}, 'GSM2170530': {'stage': 'Endothelial cells'}, 'GSM2170533': {'stage': 'Endothelial cells'}, 'GSM2170532': {'stage': 'Endothelial cells'}, 'GSM2170535': {'stage': 'Endothelial cells'}, 'GSM2170534': {'stage': 'Endothelial cells'}, 'GSM2348338': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2170536': {'stage': 'Endothelial cells'}, 'GSM2348336': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348337': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2064294': {'line': 'Huh7 Hepatocellular carcinoma cell line', 'tissue': 'Liver', 'sirna': 'CDCA8 siRNA treated'}, 'GSM2348335': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2064292': {'line': 'Huh1 Hepatocellular carcinoma cell line', 'tissue': 'Liver', 'sirna': 'CDCA8 siRNA treated'}, 'GSM2064293': {'line': 'Huh7 Hepatocellular carcinoma cell line', 'tissue': 'Liver', 'sirna': 'Negative control siRNA treated'}, 'GSM2348330': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2064291': {'line': 'Huh1 Hepatocellular carcinoma cell line', 'tissue': 'Liver', 'sirna': 'Negative control siRNA treated'}, 'GSM1019741': {'line': 'HT29', 'type': 'colon cancer', 'treatment': '5-Aza high'}, 'GSM1019740': {'line': 'HT29', 'type': 'colon cancer', 'treatment': '5-Aza low'}, 'GSM2881020': {'donor': 'Donor_2', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM1980117': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980116': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980115': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1579184': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM1579185': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM1579186': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM2825061': {'tissue': 'Bone marrow', 'type': 'Sorted live NK-cells'}, 'GSM1579180': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579181': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579182': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM1579183': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM2635281': {'type': 'Double positive (DP) cells'}, 'GSM2635280': {'type': 'Double negative (DN) cells'}, 'GSM2635283': {'type': 'Notchhi cells'}, 'GSM2635282': {'type': 'Double positive (DP) cells'}, 'GSM2635284': {'type': 'Notchhi cells'}, 'GSM1980119': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2573757': {'antibody': 'KLF4', 'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2840449': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2178743': {'ir': '0.979431929480901', 'weight': 'obese', 'gender': 'female', 'age': '63', 'bmi': '32.7', 'disease': 't2d', 'l': '0.18', 'h': '1', 'id': '85a'}, 'GSM2178740': {'ir': '0.245760629147211', 'weight': 'non-obese', 'gender': 'female', 'age': '53', 'bmi': '25.4', 'disease': 't2d', 'l': '0.08', 'h': '2', 'id': '109a'}, 'GSM2178741': {'ir': '1.72117039586919', 'weight': 'obese', 'gender': 'male', 'age': '41', 'bmi': '33.4', 'disease': 'ngt', 'l': '0.15', 'h': '0', 'id': '56a'}, 'GSM2178746': {'ir': '0.499750124937531', 'weight': 'obese', 'gender': 'female', 'age': '53', 'bmi': '39.2', 'disease': 'ngt', 'l': '0.06', 'h': '0', 'id': '71a'}, 'GSM2178747': {'ir': '0.693000693000693', 'weight': 'non-obese', 'gender': 'female', 'age': '63', 'bmi': '24.8', 'disease': 'ngt', 'l': '0.05', 'h': '0.5', 'id': '2a'}, 'GSM2178744': {'ir': '0.32123353678124', 'weight': 'non-obese', 'gender': 'female', 'age': '48', 'bmi': '24', 'disease': 'ngt', 'l': '0.03', 'h': '1', 'id': '13a'}, 'GSM2178745': {'ir': '0.32123353678124', 'weight': 'non-obese', 'gender': 'female', 'age': '48', 'bmi': '24', 'disease': 'ngt', 'l': '0.03', 'h': '2', 'id': '13a'}, 'GSM2840441': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840440': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840443': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840442': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840445': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840444': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840447': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840446': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1103991': {'type': 'ER+ Breast Tumor'}, 'GSM1103996': {'type': 'HER2+ Breast Tumor'}, 'GSM2258991': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4020'}, 'GSM2258992': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4020'}, 'GSM2550451': {'donor': 'A', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2258993': {'line': 'HEK293', 'condition': 'scrambled control'}, 'GSM1082310': {'line': 'Kasumi-1 cells', 'tissue': 'Hematopoietic', 'antibody': 'none', 'stage': 'Acute myeloid leukemia'}, 'GSM1082311': {'line': 'Kasumi-1 cells', 'tissue': 'Hematopoietic', 'antibody': 'anti-LMO2 (Abcam; ab81988)', 'stage': 'Acute myeloid leukemia'}, 'GSM1082312': {'line': 'Kasumi-1 cells', 'tissue': 'Hematopoietic', 'antibody': 'none', 'stage': 'Acute myeloid leukemia'}, 'GSM2176114': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM3586687': {'origin': 'GCB', 'pfstt': '1639', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1639', 'cycles': '6', 'oscs': '0'}, 'GSM3586686': {'origin': 'ABC', 'pfstt': '1651', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1651', 'cycles': '8', 'oscs': '0'}, 'GSM3586685': {'origin': 'GCB', 'pfstt': '1037', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1044', 'cycles': '6', 'oscs': '0'}, 'GSM3586684': {'origin': 'GCB', 'pfstt': '1456', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1456', 'cycles': '6', 'oscs': '0'}, 'GSM3586683': {'origin': 'GCB', 'pfstt': '1471', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1475', 'cycles': '6', 'oscs': '0'}, 'GSM3586682': {'origin': 'GCB', 'pfstt': '720', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '721', 'cycles': '6', 'oscs': '0'}, 'GSM3586681': {'origin': 'UNCLASSIFIED', 'pfstt': '878', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '879', 'cycles': '6', 'oscs': '0'}, 'GSM3586680': {'origin': 'ABC', 'pfstt': '875', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '880', 'cycles': '6', 'oscs': '0'}, 'GSM3586689': {'origin': 'ABC', 'pfstt': '178', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '361', 'cycles': '6', 'oscs': '1'}, 'GSM3586688': {'origin': 'GCB', 'pfstt': '798', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1410', 'cycles': '6', 'oscs': '0'}, 'GSM1716736': {'subpopulation': 'CA125 negative', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM2809205': {'status': 'Alagille syndrome', 'tissue': 'Liver'}, 'GSM2809206': {'status': 'Alagille syndrome', 'tissue': 'Liver'}, 'GSM2809207': {'status': 'Alagille syndrome', 'tissue': 'Liver'}, 'GSM1716732': {'subpopulation': 'CA125 negative', 'storage': 'freshly isolated primary cells', 'state': 'solid tumor'}, 'GSM1716733': {'subpopulation': 'CA125 positive', 'storage': 'freshly isolatedprimary cells', 'state': 'solid tumor'}, 'GSM3190879': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.11255'}, 'GSM3190878': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'Yes', 'visit': 'RV-A51', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'F', '1': 'Yes', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', '4': 'No', '2': 'No', 'years': '12', 'libcounts': '7.406789', 'event': 'Case', '229e': 'No', 'nl63': 'No'}, 'GSM3190877': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B06', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.985282'}, 'GSM3190876': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B06', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.197112'}, 'GSM3190875': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C42', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.9', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.487121'}, 'GSM3190874': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.604752'}, 'GSM2809208': {'status': 'Alagille syndrome', 'tissue': 'Liver'}, 'GSM2809209': {'status': 'Alagille syndrome', 'tissue': 'Liver'}, 'GSM3190871': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.070521'}, 'GSM3190870': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.2946'}, 'GSM3544623': {'transfection': 'plasmid mixtures of Cas9-puro and U7-sgRNAs encoding each member of sgRNAs', 'type': 'human erythromyeloblastoid leukemia cell', 'line': 'K562'}, 'GSM3544622': {'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs', 'type': 'human erythromyeloblastoid leukemia cell', 'line': 'K562'}, 'GSM3544621': {'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs', 'type': 'human erythromyeloblastoid leukemia cell', 'line': 'K562'}, 'GSM3544620': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell'}, 'GSM3544627': {'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs', 'type': 'human erythromyeloblastoid leukemia cell', 'line': 'K562'}, 'GSM3544626': {'transfection': 'plasmid mixtures of Cas9-puro and U7-sgRNAs encoding each member of sgRNAs', 'type': 'human erythromyeloblastoid leukemia cell', 'line': 'K562'}, 'GSM3544625': {'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs', 'type': 'human erythromyeloblastoid leukemia cell', 'line': 'K562'}, 'GSM3544624': {'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs', 'type': 'human erythromyeloblastoid leukemia cell', 'line': 'K562'}, 'GSM2815937': {'line': 'H9'}, 'GSM2815936': {'line': 'H9'}, 'GSM2815935': {'line': 'H9'}, 'GSM2815934': {'line': 'H9'}, 'GSM2815933': {'line': 'H9'}, 'GSM2815932': {'line': 'H9'}, 'GSM2815931': {'line': 'H9'}, 'GSM2815930': {'line': 'H9'}, 'GSM2815939': {'line': 'H9'}, 'GSM2815938': {'line': 'H9'}, 'GSM2311921': {'culture': '12', 'line': 'DCX+'}, 'GSM2311920': {'culture': '12', 'line': 'DCX+'}, 'GSM2311923': {'culture': '12', 'line': 'DCX+'}, 'GSM2311922': {'culture': '12', 'line': 'DCX+'}, 'GSM2311925': {'culture': '12', 'line': 'DCX+'}, 'GSM2311924': {'culture': '12', 'line': 'DCX+'}, 'GSM2311927': {'culture': '12', 'line': 'DCX+'}, 'GSM2311926': {'culture': '12', 'line': 'DCX+'}, 'GSM2311929': {'culture': '12', 'line': 'DCX+'}, 'GSM2311928': {'culture': '12', 'line': 'DCX+'}, 'GSM1631264': {'line': 'HEK293T', 'gene': 'dCas9-p300 core', 'sites': 'IL1RN'}, 'GSM1631265': {'line': 'HEK293T', 'gene': 'dCas9-p300 D1399Y', 'sites': 'IL1RN'}, 'GSM1631266': {'line': 'HEK293T', 'gene': 'dcas9', 'sites': 'IL1RN'}, 'GSM1150574': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5450', 'number': '6'}, 'GSM1150575': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5451', 'number': '6'}, 'GSM1150576': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5462', 'number': '7'}, 'GSM1150577': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5463', 'number': '7'}, 'GSM1150570': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5442', 'number': '4'}, 'GSM1150571': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5445', 'number': '5'}, 'GSM1150572': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5446', 'number': '5'}, 'GSM1150573': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5449', 'number': '6'}, 'GSM1631267': {'line': 'HEK293T', 'gene': 'dCas9-VP64', 'sites': 'IL1RN'}, 'GSM1150578': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5465', 'number': '7'}, 'GSM1150579': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5466', 'number': '7'}, 'GSM2264863': {'line': 'H9', 'type': 'hESC-derived cells'}, 'GSM2264862': {'line': 'H9', 'type': 'hESC-derived cells'}, 'GSM2264861': {'line': 'H9', 'type': 'hESC-derived cells'}, 'GSM2264860': {'line': 'H9', 'type': 'hESC-derived cells'}, 'GSM2264865': {'line': 'H9', 'type': 'hESC-derived cells'}, 'GSM2264864': {'line': 'H9', 'type': 'hESC-derived cells'}, 'GSM2830015': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830014': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830017': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830016': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830011': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830010': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830013': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830012': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830018': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2262427': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': 'Ethanol', 'time': '4h'}, 'GSM2262426': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': 'Ethanol', 'time': '4h'}, 'GSM2100950': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch5', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '4/3/2014', 'id': '63b'}, 'GSM2100951': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch5', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '4/3/2014', 'id': '63b'}, 'GSM2306965': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306964': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306967': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306966': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306961': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306960': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306963': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306962': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306969': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306968': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1281744': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '14', 'gender': 'Male', 'age': '72', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': 'NA', 'race': 'African American', 'nyha': '4', 'device': 'HeartMate I', 'lvad': '28'}, 'GSM1281745': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '15', 'gender': 'Male', 'age': '44', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2004', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate I', 'lvad': '455'}, 'GSM1281746': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '15', 'gender': 'Male', 'age': '44', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2004', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate I', 'lvad': '455'}, 'GSM1281747': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '15-20', 'gender': 'Male', 'age': '58', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '1981', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate I', 'lvad': '123'}, 'GSM1281740': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Epithelial', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281741': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Epithelial', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281742': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Connective Tissue', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281743': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '14', 'gender': 'Male', 'age': '72', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': 'NA', 'race': 'African American', 'nyha': '4', 'device': 'HeartMate I', 'lvad': '28'}, 'GSM1281748': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '15-20', 'gender': 'Male', 'age': '58', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '1981', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate I', 'lvad': '123'}, 'GSM1281749': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '13', 'gender': 'Male', 'age': '44', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'African American', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM2730442': {'age': '35', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'White', 'Sex': 'M'}, 'GSM2730441': {'age': '57', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2730440': {'age': '56', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'White', 'Sex': 'M'}, 'GSM2445619': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D3', 'type': 'primary human hepatocyte'}, 'GSM2445618': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D2', 'type': 'primary human hepatocyte'}, 'GSM2445613': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'pIC', 'time': '8h', 'type': 'primary human hepatocyte'}, 'GSM2445612': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'pIC', 'time': '4h', 'type': 'primary human hepatocyte'}, 'GSM2445611': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'pIC', 'time': '24h', 'type': 'primary human hepatocyte'}, 'GSM2445610': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D13', 'type': 'primary human hepatocyte'}, 'GSM2445617': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D10', 'type': 'primary human hepatocyte'}, 'GSM2445616': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': '4h', 'type': 'primary human hepatocyte'}, 'GSM2445615': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': '24h', 'type': 'primary human hepatocyte'}, 'GSM2445614': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': '12h', 'type': 'primary human hepatocyte'}, 'GSM2392689': {'type': 'Induced pluripotent stem cell'}, 'GSM2392688': {'type': 'Induced pluripotent stem cell'}, 'GSM2392685': {'type': 'Induced pluripotent stem cell'}, 'GSM2392687': {'type': 'Induced pluripotent stem cell'}, 'GSM2392686': {'type': 'Induced pluripotent stem cell'}, 'GSM2536007': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8449', 'samplename': '1*_T1D#5_C44', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31769', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8449', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C44'}, 'GSM2111099': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 9', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111098': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 9', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM1982263': {'antibody': 'SYSY 202 003', 'line': 'H1299', 'type': 'Methylated RNA IP seq'}, 'GSM2111096': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 9', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM1982261': {'antibody': 'No', 'line': 'A549', 'type': 'RNA-seq'}, 'GSM2111094': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 9', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111093': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 8', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM1982266': {'antibody': 'No', 'line': 'H1299', 'type': 'RNA-seq'}, 'GSM1982265': {'antibody': 'No', 'line': 'H1299', 'type': 'RNA-seq'}, 'GSM1982264': {'antibody': 'No', 'line': 'H1299', 'type': 'RNA-seq'}, 'GSM1207207': {'type': 'NPC'}, 'GSM1207206': {'type': 'iPSC'}, 'GSM1207205': {'type': 'neuron'}, 'GSM1620399': {'type': 'U87 human glioma cells'}, 'GSM1620396': {'type': 'U87 human glioma cells'}, 'GSM1620397': {'type': 'U87 human glioma cells'}, 'GSM1620394': {'type': 'U87 human glioma cells'}, 'GSM1620395': {'type': 'U87 human glioma cells'}, 'GSM1620392': {'type': 'U87 human glioma cells'}, 'GSM1620393': {'type': 'U87 human glioma cells'}, 'GSM1620390': {'type': 'U87 human glioma cells'}, 'GSM1620391': {'type': 'U87 human glioma cells'}, 'GSM2309438': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '1', 'treatment': 'CPT', 'dose': '1uM'}, 'GSM2309439': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '1', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2309432': {'shRNA': 'shCtrl-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'Input'}, 'GSM2309433': {'shRNA': 'shSET1B-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'Input'}, 'GSM2309430': {'shRNA': 'shCtrl-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'H3K4me1 (homemade)'}, 'GSM2309431': {'shRNA': 'shSET1B-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'H3K4me1 (homemade)'}, 'GSM2309434': {'shRNA': 'shCtrl', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'Pol II (CST)'}, 'GSM2309435': {'shRNA': 'shSET1B', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)', 'antibody': 'Pol II (CST)'}, 'GSM2807435': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807434': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807436': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2385599': {'line': '022T', 'type': 'glioblastoma stem cell'}, 'GSM2385598': {'line': '022T', 'type': 'glioblastoma stem cell'}, 'GSM2385595': {'line': '131', 'type': 'glioblastoma stem cell'}, 'GSM2175119': {'antibody': 'N/A', 'treatment': 'none', 'passage': '58-60'}, 'GSM2385597': {'line': '022T', 'type': 'glioblastoma stem cell'}, 'GSM2385596': {'line': '131', 'type': 'glioblastoma stem cell'}, 'GSM2807430': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2195008': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2228432': {'tissue': '11 weeks old fetal brain tissue', 'type': 'fetal brain derived neural stem cells', 'number': 'p12'}, 'GSM2195004': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195005': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195006': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195007': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195000': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195001': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195002': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195003': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2392029': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM2392028': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM2392021': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392020': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392023': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392022': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392025': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392024': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392027': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM2392026': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM1642836': {'line': 'SW13', 'type': 'Adrenocortical carcinoma cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM1620538': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620539': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620532': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620533': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620530': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620531': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620536': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620537': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620534': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620535': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2420676': {'line': 'HEK293T'}, 'GSM2420677': {'line': 'HEK293T'}, 'GSM1261889': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'surrounding normal lung (nor)', 'id': '2'}, 'GSM1261888': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'invasive lung carcinoma (inv)', 'id': '2'}, 'GSM1521589': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521588': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2297326': {'phase': 'exponential growth phase', 'with': 'vehicle for 8hrs', 'line': 'HCT116', 'type': 'Colon carcinoma cells'}, 'GSM2297327': {'phase': 'exponential growth phase', 'with': '250 nM daunorubicin for 8hrs', 'line': 'HCT116', 'type': 'Colon carcinoma cells'}, 'GSM2297324': {'phase': 'exponential growth phase', 'with': 'vehicle for 8hrs', 'line': 'HCT116', 'type': 'Colon carcinoma cells'}, 'GSM2297325': {'phase': 'exponential growth phase', 'with': '250 nM daunorubicin for 8hrs', 'line': 'HCT116', 'type': 'Colon carcinoma cells'}, 'GSM2474230': {'line': 'MCF7', 'with': 'siRNA targeting both DDX5 and DDX17 RNA helicases'}, 'GSM2325793': {'type': 'Differentiated embryonic stem cell'}, 'GSM1665188': {'gender': 'male', 'age': '34.5 weeks', 'feeding': 'TRUE', 'assistance': 'FALSE'}, 'GSM1665189': {'gender': 'male', 'age': '35.2 weeks', 'feeding': 'FALSE', 'assistance': 'TRUE'}, 'GSM2325797': {'type': 'Differentiated embryonic stem cell'}, 'GSM1974241': {'type': 'ESC-derived hepatocytes', 'treatment': 'VK2'}, 'GSM1185147': {'with': 'Sulforaphane (SFN)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '24 hours'}, 'GSM2325798': {'type': 'Differentiated embryonic stem cell'}, 'GSM1185145': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '24 hours'}, 'GSM1185144': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '24 hours'}, 'GSM1185143': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '24 hours'}, 'GSM1185142': {'with': 'Sulforaphane (SFN)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '6 hours'}, 'GSM1185141': {'with': 'Sulforaphane (SFN)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '6 hours'}, 'GSM1185140': {'with': 'Sulforaphane (SFN)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '6 hours'}, 'GSM1521587': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2304952': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '4h'}, 'GSM2304953': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '4h'}, 'GSM2304950': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '48h'}, 'GSM2304951': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Untreated with Dox', 'time': '0h'}, 'GSM2304956': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '16h'}, 'GSM2304954': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '8h'}, 'GSM2304955': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '8h'}, 'GSM1405105': {'source': 'IP with Ab anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'line': 'HeLa', 'antibody': 'anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'treatment': 'INTS11 occupancy examined before and after EGF stimulation in starved wild-type Hela Cells', 'type': 'ChIP-seq'}, 'GSM1103000': {'index': 'Index 7', 'line': 'HeLa cell', 'variation': 'SUMO-1 depleted'}, 'GSM1103001': {'index': 'Index 12', 'line': 'HeLa cell', 'variation': 'SUMO-1 depleted'}, 'GSM2242867': {'line': 'A375', 'replicate': '4'}, 'GSM1831601': {'line': 'SMMC-7721', 'passages': 'P3', 'type': 'liver cancer'}, 'GSM2242865': {'line': 'A375', 'replicate': '4'}, 'GSM1831603': {'line': 'SMMC-7721', 'passages': 'P3', 'type': 'liver cancer'}, 'GSM2242863': {'line': 'A375', 'replicate': '4'}, 'GSM2242862': {'line': 'A375', 'replicate': '4'}, 'GSM2242861': {'line': 'A375', 'replicate': '4'}, 'GSM2242860': {'line': 'A375', 'replicate': '4'}, 'GSM1405103': {'source': 'IP with Ab anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'line': 'HeLa', 'antibody': 'anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'treatment': 'INTS11 occupancy examined before and after EGF stimulation in starved wild-type Hela Cells', 'type': 'ChIP-seq'}, 'GSM2048649': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2242869': {'line': 'A375', 'replicate': '4'}, 'GSM2242868': {'line': 'A375', 'replicate': '4'}, 'GSM2048648': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2172032': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1261651': {'age': '37', 'viability': '97', 'Sex': 'F', 'rin': '7.4', 'tissue': 'pancreatic islets', 'purity': '80'}, 'GSM1261652': {'age': '54', 'viability': '96', 'Sex': 'M', 'rin': '8', 'tissue': 'pancreatic islets', 'purity': '90'}, 'GSM1261653': {'age': '60', 'viability': '95', 'Sex': 'M', 'rin': '8.4', 'tissue': 'pancreatic islets', 'purity': '90'}, 'GSM1848210': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1261654': {'age': '16', 'viability': '93', 'Sex': 'M', 'rin': '8.5', 'tissue': 'pancreatic islets', 'purity': '70'}, 'GSM2439238': {'antibody': 'CUX1 sc-6327 Santa Cruz', 'line': 'K562', 'shRNA': 'shCUX1-A', 'type': 'myeloid leukemia cell line'}, 'GSM2172037': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2439239': {'antibody': 'CUX1 sc-6327 Santa Cruz', 'line': 'K562', 'shRNA': 'shCUX1-B', 'type': 'myeloid leukemia cell line'}, 'GSM2048645': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048644': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2439234': {'antibody': 'CUX1 sc-6327 Santa Cruz', 'line': 'K562', 'shRNA': 'shCUX1-A', 'type': 'myeloid leukemia cell line'}, 'GSM2439235': {'antibody': 'CUX1 sc-6327 Santa Cruz', 'line': 'K562', 'shRNA': 'shCUX1-B', 'type': 'myeloid leukemia cell line'}, 'GSM1528638': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '133'}, 'GSM1528639': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '134'}, 'GSM1528632': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '138'}, 'GSM1528633': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '138'}, 'GSM1528634': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '148'}, 'GSM1528635': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '148'}, 'GSM1528636': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '145'}, 'GSM1528637': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '145'}, 'GSM485388': {'line': 'NA19209'}, 'GSM485389': {'line': 'NA19143'}, 'GSM485386': {'line': 'NA19152'}, 'GSM485387': {'line': 'NA18499'}, 'GSM485384': {'line': 'NA18909'}, 'GSM485385': {'line': 'NA19147'}, 'GSM485382': {'line': 'NA19210'}, 'GSM485383': {'line': 'NA19153'}, 'GSM485380': {'line': 'NA19144'}, 'GSM485381': {'line': 'NA19201'}, 'GSM984618': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47022', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '057WC', 'spikeinpool': 'Nist13'}, 'GSM984619': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47249', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '051WC', 'spikeinpool': 'Nist13'}, 'GSM2464653': {'with': 'BCL11B knockdown shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '2', 'populatione': 'CD45+GFP+CD7+CD1a+ T-cell precursors'}, 'GSM984610': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47252', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '054WC', 'spikeinpool': 'Nist13'}, 'GSM984611': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47024', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '059WC', 'spikeinpool': 'Nist13'}, 'GSM984612': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47248', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '050WC', 'spikeinpool': 'Nist13'}, 'GSM984613': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47261,LID47260', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '094WC,093WC', 'spikeinpool': 'Nist13'}, 'GSM984614': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47021', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '056WC', 'spikeinpool': 'Nist13'}, 'GSM984615': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47246', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '048WC', 'spikeinpool': 'Nist13'}, 'GSM984616': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47257', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '082WC', 'spikeinpool': 'Nist13'}, 'GSM984617': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47259', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '084WC', 'spikeinpool': 'Nist13'}, 'GSM2464654': {'with': 'scrambled control shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '3', 'populatione': 'CD45+GFP+CD7+CD1a- T-cell precursors'}, 'GSM1832988': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832989': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832986': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832987': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832984': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1832985': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM2451160': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451161': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451162': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2455942': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455943': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2251717': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM2251716': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM2251711': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM2455947': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455944': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455945': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1937829': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM2451164': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2455948': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455949': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2251719': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM2251718': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM2451165': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1220268': {'expression': 'normal', 'line': 'HEK293F', 'type': 'Human Embryonic Kidney cells', 'treatment': 'control'}, 'GSM1220269': {'expression': 'normal', 'line': 'HEK293F', 'type': 'Human Embryonic Kidney cells', 'treatment': 'control'}, 'GSM2943836': {'passages': '<25', 'treatment': 'TCEP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '250 uM'}, 'GSM2943837': {'passages': '<25', 'treatment': 'TCEP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '250 uM'}, 'GSM2943835': {'passages': '<25', 'treatment': 'TCEP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '250 uM'}, 'GSM1220262': {'expression': 'low', 'line': 'HEK293F', 'type': 'Human Embryonic Kidney cells', 'treatment': 'MOV10 knockdown'}, 'GSM1220263': {'expression': 'low', 'line': 'HEK293F', 'type': 'Human Embryonic Kidney cells', 'treatment': 'MOV10 knockdown'}, 'GSM2943838': {'passages': '<25', 'treatment': 'TCEP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '25 uM'}, 'GSM2100001': {'rin': '10', 'Sex': 'Female', 'sspg': '174', 'age': '63', 'bmi': '28.1', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '123', 'method': 'Life-Tech GITC'}, 'GSM1220266': {'expression': 'high', 'line': 'HEK293F', 'type': 'Human Embryonic Kidney cells', 'treatment': 'MOV10 overexpression'}, 'GSM1220267': {'expression': 'normal', 'line': 'HEK293F', 'type': 'Human Embryonic Kidney cells', 'treatment': 'control'}, 'GSM1220264': {'expression': 'high', 'line': 'HEK293F', 'type': 'Human Embryonic Kidney cells', 'treatment': 'MOV10 overexpression'}, 'GSM1220265': {'expression': 'high', 'line': 'HEK293F', 'type': 'Human Embryonic Kidney cells', 'treatment': 'MOV10 overexpression'}, 'GSM1521765': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521764': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521767': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521766': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM3189178': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'Yes', 'percentage': '12', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.658703', 'percentaligned': '0.923831858', 'Sex': 'F', 'nl63': 'No', 'libcounts': '18.472144', 'original': 'Control'}, 'GSM3189179': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'Yes', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.640294', 'percentaligned': '0.959249858', 'Sex': 'F', 'nl63': 'No', 'libcounts': '18.672744', 'original': 'Control'}, 'GSM1521763': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521762': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM485522': {'line': 'NA19119'}, 'GSM485523': {'line': 'NA19171'}, 'GSM485520': {'line': 'NA18912'}, 'GSM485521': {'line': 'NA19102'}, 'GSM3189170': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '15', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.599678', 'percentaligned': '0.956406007', 'Sex': 'F', 'nl63': 'No', 'libcounts': '12.713258', 'original': 'Control'}, 'GSM3189171': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A75', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.617184', 'percentaligned': '0.957404122', 'Sex': 'M', 'nl63': 'No', 'libcounts': '15.888802', 'original': 'Control'}, 'GSM2454019': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM3189173': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '21', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.714162', 'percentaligned': '0.945788457', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.472025'}, 'GSM2093038': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093039': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '19', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1946139': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19128', 'for': '60min'}, 'GSM1946138': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19128', 'for': '30min'}, 'GSM1946137': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19128', 'for': '30min'}, 'GSM1946136': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19128', 'for': '30min'}, 'GSM1946135': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19127', 'for': '60min'}, 'GSM1946134': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19127', 'for': '30min'}, 'GSM1946133': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19119', 'for': '60min'}, 'GSM1946132': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19119', 'for': '60min'}, 'GSM1946131': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19119', 'for': '60min'}, 'GSM1946130': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19119', 'for': '30min'}, 'GSM2932799': {'line': 'HepG2 cells', 'medium': 'Glucose 5.5 mM', 'treatment': 'control'}, 'GSM1574593': {'protocol': 'Unsorted', 'type': 'Human embryonic stem cell cultured in 4i condition', 'gender': 'Male'}, 'GSM1574594': {'protocol': 'Unsorted', 'type': 'Human embryonic stem cell cultured in 4i condition', 'gender': 'Male'}, 'GSM1574595': {'protocol': 'Unsorted', 'type': 'Human embryonic stem cell cultured in conventional condition', 'gender': 'Male'}, 'GSM1574596': {'protocol': 'Unsorted', 'type': 'Human embryonic stem cell cultured in conventional condition', 'gender': 'Male'}, 'GSM1630790': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_squamous_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung_squamous', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM2358122': {'line': 'MS1', 'type': 'untreated', 'timepoint': '20'}, 'GSM2358123': {'line': 'MS1', 'type': 'untreated', 'timepoint': '21'}, 'GSM2358120': {'line': 'MS1', 'type': 'untreated', 'timepoint': '18'}, 'GSM2358121': {'line': 'MS1', 'type': 'untreated', 'timepoint': '19'}, 'GSM2358126': {'line': 'MS1', 'type': 'untreated', 'timepoint': '24'}, 'GSM2358127': {'line': 'MS1', 'type': 'treated', 'timepoint': '1'}, 'GSM2358124': {'line': 'MS1', 'type': 'untreated', 'timepoint': '22'}, 'GSM2358125': {'line': 'MS1', 'type': 'untreated', 'timepoint': '23'}, 'GSM2390892': {'disease': 'Healthy Control'}, 'GSM2390893': {'disease': 'Healthy Control'}, 'GSM2358128': {'line': 'MS1', 'type': 'treated', 'timepoint': '2'}, 'GSM2358129': {'line': 'MS1', 'type': 'treated', 'timepoint': '3'}, 'GSM2390896': {'disease': 'Healthy Control'}, 'GSM2390897': {'disease': 'Healthy Control'}, 'GSM2390894': {'disease': 'Healthy Control'}, 'GSM2390895': {'disease': 'Healthy Control'}, 'GSM2932796': {'line': 'HepG2 cells', 'medium': 'Glucose 20 mM', 'treatment': 'VPA 1 mM'}, 'GSM2840244': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2374047': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374046': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374045': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374044': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374043': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374042': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374041': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374040': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374049': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374048': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1901154': {'type': 'hepatocellular cancer', 'id': '9401'}, 'GSM1133357': {'status': 'MSS', 'age': '76', 'Sex': 'female', 'state': 'metastasis', 'tissue': 'metastasis biopsy, lymph node', 'subject': 'P7'}, 'GSM1133356': {'status': 'MSS', 'age': '76', 'Sex': 'female', 'state': 'tumor', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P7'}, 'GSM1133355': {'status': 'MSS', 'age': '76', 'Sex': 'female', 'state': 'benign', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P7'}, 'GSM1133354': {'status': 'MSI', 'age': '80', 'Sex': 'female', 'state': 'metastasis', 'tissue': 'metastasis biopsy, lymph node', 'subject': 'P5'}, 'GSM1133353': {'status': 'MSI', 'age': '80', 'Sex': 'female', 'state': 'tumor', 'tissue': 'colorectal biopsy, colon', 'subject': 'P5'}, 'GSM1133352': {'status': 'MSI', 'age': '80', 'Sex': 'female', 'state': 'benign', 'tissue': 'colorectal biopsy, colon', 'subject': 'P5'}, 'GSM1133351': {'status': 'MSS', 'age': '49', 'Sex': 'female', 'state': 'metastasis', 'tissue': 'metastasis biopsy, liver', 'subject': 'P4'}, 'GSM1133350': {'status': 'MSS', 'age': '49', 'Sex': 'female', 'state': 'tumor', 'tissue': 'colorectal biopsy, rectum/sigma', 'subject': 'P4'}, 'GSM1274123': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line', 'treatment': 'RON and MSP'}, 'GSM2742424': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'NGP', 'type': 'neuroblastoma cell line', 'treatment': 'Dox', 'variation': 'shRNA (Dharmacon, V3THS_301154) against TFAP4'}, 'GSM2742425': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'NGP', 'type': 'neuroblastoma cell line', 'treatment': 'Dox', 'variation': 'shRNA (Dharmacon, V3THS_301154) against TFAP4'}, 'GSM2742426': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'NGP', 'type': 'neuroblastoma cell line', 'treatment': 'Dox', 'variation': 'shRNA (Dharmacon, V3THS_301154) against TFAP4'}, 'GSM2742420': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'SK-N-DZ', 'type': 'neuroblastoma cell line', 'treatment': 'Dox', 'variation': 'shRNA (Dharmacon, V3THS_301154) against TFAP4'}, 'GSM2742421': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'NGP', 'type': 'neuroblastoma cell line', 'treatment': 'Control', 'variation': 'control'}, 'GSM2742422': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'NGP', 'type': 'neuroblastoma cell line', 'treatment': 'Control', 'variation': 'control'}, 'GSM2742423': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'NGP', 'type': 'neuroblastoma cell line', 'treatment': 'Control', 'variation': 'control'}, 'GSM2754755': {'bin': '9', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '09_0644', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2932793': {'line': 'HepG2 cells', 'medium': 'Glucose 20 mM', 'treatment': 'control'}, 'GSM2754754': {'bin': '8', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '09_0624', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1940722': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2361373': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells'}, 'GSM2361372': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'CGTACG'}, 'GSM2287152': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2361370': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Conventional CD4 T cells', 'barcode': 'CATGGC'}, 'GSM2361377': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells'}, 'GSM2287155': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287156': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287157': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287158': {'pair': 'P7_09', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2287159': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2361379': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'GATCAG'}, 'GSM2361378': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'ATGTCA'}, 'GSM2572758': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '3', 'day': '7'}, 'GSM1949048': {'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949049': {'type': 'none', 'treatment': 'none'}, 'GSM2565125': {'construction': 'PLATE-Seq', 'drug': 'Irinotecan'}, 'GSM2754753': {'bin': '9', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '09_0507', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754752': {'bin': '9', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '09_0278', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2355448': {'type': 'Human embryonic stem cells'}, 'GSM1551982': {'replicate': '2', 'synchronization': '24', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1416623': {'type': 'HUVEC', 'replicate': 'biological replicate #1', 'details': 'Sample from 1 individual', 'treatment': 'rVEGFA 7h', 'passage': 'passage 5'}, 'GSM1551981': {'replicate': '1', 'synchronization': '24', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1416625': {'type': 'HUVEC', 'replicate': 'biological replicate #1', 'details': 'Sample from 1 individual', 'treatment': 'Histamine 7h', 'passage': 'passage 5'}, 'GSM1416624': {'type': 'HUVEC', 'replicate': 'biological replicate #2', 'details': 'Pool of at least 3 individuals', 'treatment': 'rVEGFA 7h', 'passage': 'passage 9'}, 'GSM1679687': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '46'}, 'GSM1416626': {'type': 'HUVEC', 'replicate': 'biological replicate #2', 'details': 'Pool of at least 3 individuals', 'treatment': 'Histamine 7h', 'passage': 'passage 9'}, 'GSM1166030': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor Tisue'}, 'GSM1166031': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor Tisue'}, 'GSM1166032': {'rna': 'FirstChoice® Human Brain Reference Total RNA, Lot #105P055201A, Cat #6050', 'tissue': 'Brain'}, 'GSM1166033': {'rna': 'FirstChoice® Human Brain Reference Total RNA, Lot #105P055201A, Cat #6050', 'tissue': 'Brain'}, 'GSM1166034': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor Tisue'}, 'GSM1166035': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor Tisue'}, 'GSM1166036': {'rna': 'FirstChoice® Human Brain Reference Total RNA, Lot #105P055201A, Cat #6050', 'tissue': 'Brain'}, 'GSM1166037': {'rna': 'FirstChoice® Human Brain Reference Total RNA, Lot #105P055201A, Cat #6050', 'tissue': 'Brain'}, 'GSM1264134': {'line': 'C-33A', 'treatment': 'none'}, 'GSM1264135': {'line': 'C-33A', 'treatment': 'HPV1 E2'}, 'GSM2147890': {'patient': 'P501', 'age': '25', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2398404': {'line': 'BXPC3', 'type': 'SV40 large T antigen immortalized'}, 'GSM2147892': {'patient': 'P503', 'age': '30', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2398406': {'line': 'BXPC3', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398401': {'line': 'L3.6', 'type': 'SV40 large T antigen immortalized'}, 'GSM2147895': {'patient': 'P503', 'age': '30', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147896': {'patient': 'P505', 'age': '47', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'South Indian'}, 'GSM2147897': {'patient': 'P427', 'age': '30', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147898': {'patient': 'P505', 'age': '47', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'South Indian'}, 'GSM2147899': {'patient': 'P505', 'age': '47', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'South Indian'}, 'GSM2398409': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398408': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM1691047': {'with': 'none', 'source': \"Duke's type B adenocarcinoma of the colon\", 'line': 'LS174T', 'type': 'Derivatives of Ls174 colon cancer cells', 'variation': 'inducible shRNAs against the WNTRLINC1'}, 'GSM1691048': {'with': 'none', 'source': \"Duke's type B adenocarcinoma of the colon\", 'line': 'LS174T', 'type': 'Derivatives of Ls174 colon cancer cells', 'variation': 'inducible shRNAs against the WNTRLINC1'}, 'GSM1691049': {'with': '1ug/ml doxycycline', 'source': \"Duke's type B adenocarcinoma of the colon\", 'line': 'LS174T', 'type': 'Derivatives of Ls174 colon cancer cells', 'variation': 'inducible shRNAs against the WNTRLINC1'}, 'GSM2411942': {'line': '1296C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411943': {'line': '1296E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2124760': {'rin': '3.4', 'Sex': 'female'}, 'GSM2411940': {'line': '12888A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2490563': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-P525L/P525L'}, 'GSM2490562': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-WT'}, 'GSM2490561': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-WT'}, 'GSM2490560': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-WT'}, 'GSM2490565': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-P525L/P525L'}, 'GSM2490564': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-P525L/P525L'}, 'GSM2411946': {'line': '14157A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411947': {'line': '14157C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2786556': {'line': 'RIVA'}, 'GSM2124763': {'rin': '5.4', 'Sex': 'male'}, 'GSM2411945': {'line': '13352E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM3576167': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM1897363': {'line': 'MDA-MB-231', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(-)', 'treatment': 'Isotype SP'}, 'GSM2299008': {'age': '42', 'type': 'Stem cell'}, 'GSM2171949': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171948': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171947': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171946': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171945': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171944': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171943': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171942': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171941': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171940': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1846068': {'tissue': 'bone marrow'}, 'GSM1846069': {'tissue': 'bone marrow'}, 'GSM1846062': {'tissue': 'bone marrow'}, 'GSM1846063': {'tissue': 'bone marrow'}, 'GSM1846060': {'tissue': 'bone marrow'}, 'GSM1846061': {'tissue': 'bone marrow'}, 'GSM1846066': {'tissue': 'cord blood cells'}, 'GSM1846067': {'tissue': 'cord blood cells'}, 'GSM1846064': {'tissue': 'bone marrow'}, 'GSM1846065': {'tissue': 'bone marrow'}, 'GSM2837069': {'line': 'SNK-6', 'type': 'natural killer cell line'}, 'GSM1564301': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '100', 'replicate': '2', 'hcc827': '0'}, 'GSM2299002': {'age': '64', 'type': 'Stem cell'}, 'GSM2837068': {'line': 'NKL', 'type': 'natural killer cell line'}, 'GSM1564305': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '75', 'replicate': '3', 'hcc827': '25'}, 'GSM1645706': {'knockdown': 'Brg1/Brm', 'type': 'primary human neonatal keratinocytes'}, 'GSM1645707': {'knockdown': 'Brg1/Brm', 'type': 'primary human neonatal keratinocytes'}, 'GSM1564307': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '0', 'replicate': '1', 'hcc827': '100'}, 'GSM1645708': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes'}, 'GSM1645709': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes'}, 'GSM2517978': {'group': 'Knockdown', 'line': 'HT29', 'type': 'Colorectal carcinoma'}, 'GSM2517979': {'group': 'Control', 'line': 'SW480', 'type': 'Colorectal carcinoma'}, 'GSM2517977': {'group': 'Control', 'line': 'HT29', 'type': 'Colorectal carcinoma'}, 'GSM3576163': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM2231182': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM2231180': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM2787805': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CAGATCA', 'infection': 'Uninfected', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2787804': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CGATGTA', 'infection': 'Uninfected', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2787807': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CAGTGAT', 'infection': 'Uninfected', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2787806': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'TCACGAT', 'infection': 'Uninfected', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2787801': {'line': 'Koptk1', 'type': 'T cell leukemia'}, 'GSM2787800': {'line': 'CUTLL1', 'type': 'T cell leukemia'}, 'GSM2787803': {'line': 'Koptk1', 'type': 'T cell leukemia'}, 'GSM2787802': {'line': 'Koptk1', 'type': 'T cell leukemia'}, 'GSM2787809': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CCAATAT', 'infection': 'Infected 2h before harvesting', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2787808': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'GATGTAT', 'infection': 'Infected 2h before harvesting', 'treatment': 'none', 'line': 'HeLa'}, 'GSM3586522': {'origin': 'GCB', 'pfstt': '1101', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1101', 'cycles': '6', 'oscs': '0'}, 'GSM3586523': {'origin': 'GCB', 'pfstt': '1034', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1034', 'cycles': '6', 'oscs': '0'}, 'GSM3586520': {'origin': 'ABC', 'pfstt': '1128', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1263', 'cycles': '6', 'oscs': '0'}, 'GSM3586521': {'origin': 'GCB', 'pfstt': '975', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '975', 'cycles': '6', 'oscs': '1'}, 'GSM3586526': {'origin': 'ABC', 'pfstt': '883', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '883', 'cycles': '6', 'oscs': '0'}, 'GSM3586527': {'origin': 'ABC', 'pfstt': '775', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '799', 'cycles': '6', 'oscs': '0'}, 'GSM3586524': {'origin': 'GCB', 'pfstt': '912', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1054', 'cycles': '6', 'oscs': '0'}, 'GSM3586525': {'origin': 'UNCLASSIFIED', 'pfstt': '902', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '902', 'cycles': '6', 'oscs': '0'}, 'GSM3586528': {'origin': 'GCB', 'pfstt': '1025', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1025', 'cycles': '6', 'oscs': '0'}, 'GSM3586529': {'origin': 'GCB', 'pfstt': '331', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '658', 'cycles': '6', 'oscs': '1'}, 'GSM1312747': {'line': 'HGDP00959', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Yakut'}, 'GSM2204678': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204679': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2691359': {'type': 'Encapsulated HLC'}, 'GSM2691358': {'type': 'Encapsulated HLC'}, 'GSM2691355': {'type': 'HAEC diffrerentiated into HLC'}, 'GSM2691354': {'type': 'HAEC diffrerentiated into HLC'}, 'GSM2691357': {'type': 'Encapsulated HLC'}, 'GSM2691356': {'type': 'HAEC diffrerentiated into HLC'}, 'GSM2691351': {'type': 'Primary cells (controls)'}, 'GSM2691350': {'type': 'Primary cells (controls)'}, 'GSM2691353': {'type': 'HAEC diffrerentiated into HLC'}, 'GSM2691352': {'type': 'Primary cells (controls)'}, 'GSM2142589': {'gender': 'female', 'age': '73', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '4', 'smoking': '2'}, 'GSM2142588': {'gender': 'female', 'age': '66', 'who': '1', 'dead': '1', 'date': '2010-08-18', 'histology': '3', 'tnm': '2', 'smoking': '1'}, 'GSM2142581': {'gender': 'male', 'age': '66', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142580': {'gender': 'male', 'age': '80', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '3', 'smoking': '2'}, 'GSM2142583': {'gender': 'male', 'age': '67', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM2210926': {'status': 'tumor tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '60'}, 'GSM2649819': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2142584': {'gender': 'male', 'age': '60', 'who': '0', 'dead': '1', 'date': '2012-02-18', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142587': {'gender': 'female', 'age': '65', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142586': {'gender': 'female', 'age': '64', 'who': '1', 'dead': '1', 'date': '2011-09-25', 'histology': '2', 'tnm': '7', 'smoking': '2'}, 'GSM2348691': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348690': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348693': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348692': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348695': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565198': {'construction': 'PLATE-Seq', 'drug': 'Pentostatin'}, 'GSM2348697': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348696': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565195': {'construction': 'PLATE-Seq', 'drug': 'Docetaxel'}, 'GSM2565194': {'construction': 'PLATE-Seq', 'drug': 'Etoposide'}, 'GSM2565197': {'construction': 'PLATE-Seq', 'drug': 'Regorafenib (BAY 73-4506)'}, 'GSM2565196': {'construction': 'PLATE-Seq', 'drug': 'Amsacrine'}, 'GSM2565191': {'construction': 'PLATE-Seq', 'drug': 'Mercaptopurine'}, 'GSM2565190': {'construction': 'PLATE-Seq', 'drug': 'Paclitaxel'}, 'GSM2565193': {'construction': 'PLATE-Seq', 'drug': 'Pomalidomide'}, 'GSM2565192': {'construction': 'PLATE-Seq', 'drug': 'Lenvatinib (E7080)'}, 'GSM2033120': {'transfection': 'Scramble antagomiR', 'type': 'CD34+ endothelial cells', 'number': 'Passage 5'}, 'GSM2033121': {'transfection': 'Scramble antagomiR', 'type': 'CD34+ endothelial cells', 'number': 'Passage 5'}, 'GSM2033122': {'transfection': 'Scramble antagomiR', 'type': 'CD34+ endothelial cells', 'number': 'Passage 5'}, 'GSM2666058': {'age': 'Day 450', 'well': 'B6', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2310995': {'with': 'SPDEF-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM2310994': {'with': 'SPDEF-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM2310993': {'with': 'SPDEF-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM2310992': {'with': 'FOXA3-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM2310991': {'with': 'FOXA3-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM2310990': {'with': 'FOXA3-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM1466240': {'facs': 'Unsorted', 'type': 'Day 2 pre-induced cells derived from hESC', 'gender': 'Male'}, 'GSM1466241': {'facs': 'TNAP and mCherry+', 'type': 'Day4 hPGCLCs derived from day2 pre-induced cells', 'gender': 'Male'}, 'GSM1466242': {'facs': 'TNAP and mCherry+', 'type': 'Day4 hPGCLCs derived from day2 pre-induced cells', 'gender': 'Male'}, 'GSM2316748': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316749': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316744': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316745': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316746': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316747': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316740': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316741': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316742': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316743': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2666059': {'age': 'Day 450', 'well': 'E6', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2664357': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2332743': {'point': 'day 14', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 'GSM2815872': {'line': 'H9'}, 'GSM2815873': {'line': 'H9'}, 'GSM2815870': {'line': 'H9'}, 'GSM2815871': {'line': 'H9'}, 'GSM2815876': {'line': 'H9'}, 'GSM2815877': {'line': 'H9'}, 'GSM2815874': {'line': 'H9'}, 'GSM2815875': {'line': 'H9'}, 'GSM2815878': {'line': 'H9'}, 'GSM2815879': {'line': 'H9'}, 'GSM995549': {'status': 'normal', 'tissue': 'retina'}, 'GSM1126672': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126673': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM2307375': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1126671': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126676': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126677': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126674': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126675': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM2088070': {'status': 'Dysplasia', 'ratio': '1.10967802859369', 'age': '54', 'years': '46.8', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '45417752', 'alignment': '28039720'}, 'GSM1126678': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126679': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM2666144': {'age': 'Day 130', 'well': 'D1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2307379': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307378': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2306024': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '9 week gestation'}, 'GSM2306025': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '10 week gestation'}, 'GSM2306026': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '10 week gestation'}, 'GSM955109': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM2306020': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '24 week gestation'}, 'GSM2306021': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '24 week gestation'}, 'GSM2306022': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '26 week gestation'}, 'GSM2306023': {'gender': 'mixed', 'type': 'Primordial Germ Cells', 'stage': '4 and 11 week gestation'}, 'GSM2666142': {'age': 'Day 130', 'well': 'G2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2306028': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '19 week gestation'}, 'GSM2306029': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '19 week gestation'}, 'GSM2666143': {'age': 'Day 130', 'well': 'E9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1970048': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2632261': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2081117': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2081118': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2081119': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2088079': {'status': 'Dysplasia', 'ratio': '1.74203382631674', 'age': '53', 'years': '38', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '54167040', 'alignment': '33068381'}, 'GSM2284015': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284010': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2284011': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2284012': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM1063304': {'region': 'Putamen', 'death': '70 years', 'tissue': 'Post morten brain', 'id': '6'}, 'GSM2284013': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM1063302': {'region': 'Putamen', 'death': '89 years', 'tissue': 'Post morten brain', 'id': '5'}, 'GSM1063303': {'region': 'Caudate', 'death': '70 years', 'tissue': 'Post morten brain', 'id': '6'}, 'GSM1063300': {'region': 'Caudate', 'death': '97 years', 'tissue': 'Post morten brain', 'id': '7'}, 'GSM1063301': {'region': 'Caudate', 'death': '89 years', 'tissue': 'Post morten brain', 'id': '5'}, 'GSM2436527': {'protocol': 'induction of NANOG and KLF2 for 14 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM2436526': {'protocol': 'no treatment', 'type': 'ESC', 'Stage': 'undifferentiated'}, 'GSM2436525': {'protocol': 'no treatment', 'type': 'ESC', 'Stage': 'undifferentiated'}, 'GSM2436524': {'protocol': 'no treatment', 'type': 'ESC', 'Stage': 'undifferentiated'}, 'GSM2436523': {'gender': 'female', 'state': 'Healthy control', 'type': 'endothelial cell'}, 'GSM2436522': {'gender': 'female', 'state': 'Healthy control', 'type': 'endothelial cell'}, 'GSM2436521': {'gender': 'female', 'state': 'Healthy control', 'type': 'endothelial cell'}, 'GSM2436520': {'gender': 'female', 'state': 'Healthy control', 'type': 'endothelial cell'}, 'GSM2649698': {'tumor': 'NORMAL', 'barcode': 'BC3', 'Sex': 'male'}, 'GSM2436529': {'protocol': 'induction of NANOG and KLF2 for 14 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM1504020': {'gender': 'female', 'repeats': 'not tested', 'tissue': 'peripheral blood'}, 'GSM1910286': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910287': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910284': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910285': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910282': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910283': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910288': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM1910289': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Normal Lymph node', 'type': 'Regulatory T Cells'}, 'GSM2607530': {'line': 'WA26'}, 'GSM2212198': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212199': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2089697': {'state': 'colorectal cancer', 'line': 'SW48-p53_WT', 'treatment': 'untreated'}, 'GSM2212192': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212193': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212190': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212191': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212196': {'company': 'cat #): Not applicable', 'tissue': 'Human left ventricular tissue', 'treatment': 'Untreated'}, 'GSM2212197': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2212194': {'company': 'cat #): Not applicable', 'tissue': 'Human left ventricular tissue', 'treatment': 'Untreated'}, 'GSM2212195': {'company': 'cat #): Not applicable', 'tissue': 'Human left ventricular tissue', 'treatment': 'Untreated'}, 'GSM1528380': {'line': 'M233', 'type': 'Melanoma'}, 'GSM1528381': {'line': 'M238AR', 'type': 'Melanoma'}, 'GSM1528382': {'line': 'M238', 'type': 'Melanoma'}, 'GSM1528383': {'line': 'M249', 'type': 'Melanoma'}, 'GSM2394522': {'id': 'IonXpress_045', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Lycorine', 'point': 'after 12h of compound treatment'}, 'GSM2394523': {'id': 'IonXpress_046', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': '10-hydroxycamptothecin', 'point': 'after 12h of compound treatment'}, 'GSM1528386': {'line': 'M263', 'type': 'Melanoma'}, 'GSM1528387': {'line': 'M297', 'type': 'Melanoma'}, 'GSM1528388': {'line': 'M308', 'type': 'Melanoma'}, 'GSM1528389': {'line': 'M370', 'type': 'Melanoma'}, 'GSM2394528': {'id': 'IonXpress_051', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'A-3', 'point': 'after 12h of compound treatment'}, 'GSM2394529': {'id': 'IonXpress_052', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Tyrphostin AG1478', 'point': 'after 12h of compound treatment'}, 'GSM2086461': {'strain': 'induced pluripotent stem cell', 'type': 'induced pluripotent stem cell'}, 'GSM2086460': {'strain': 'induced pluripotent stem cell', 'type': 'induced pluripotent stem cell'}, 'GSM1832660': {'line': 'ZR-75-30', 'antibody': 'none', 'genotype': 'parental'}, 'GSM830559': {'tissue': 'skin', 'form': 'Localized cutaneous leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM2607536': {'line': 'WA26'}, 'GSM2543689': {'library_id': 'lib5819', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543688': {'library_id': 'lib5818', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543681': {'library_id': 'lib5811', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543680': {'library_id': 'lib5810', 'stim': 'CR', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543683': {'library_id': 'lib5813', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543682': {'library_id': 'lib5812', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543685': {'library_id': 'lib5815', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543684': {'library_id': 'lib5814', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543687': {'library_id': 'lib5817', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543686': {'library_id': 'lib5816', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2411323': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2644299': {'replication': 'biological replicate 1', 'type': 'epithelial', 'treatment': 'HCMV-infected'}, 'GSM1980526': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980527': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980524': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980525': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980522': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980523': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980520': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980521': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2172005': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1980528': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980529': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2632550': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2607535': {'line': 'WA26'}, 'GSM2228898': {'tissue': 'Foreskin', 'antibody': 'H3K4me1(Abcam. Cat: ab8895)', 'passage': '3'}, 'GSM2228899': {'tissue': 'Foreskin', 'antibody': 'H3K27ac (Merck Millipore. Cat 07-360)', 'passage': '3'}, 'GSM2228897': {'tissue': 'Foreskin', 'antibody': 'H3K4me1(Abcam. Cat: ab8895)', 'passage': '3'}, 'GSM2775088': {'line': 'M249', 'type': 'none', 'treatment': 'none'}, 'GSM2775089': {'line': 'M249', 'type': 'BRAFi+MEKi', 'treatment': 'resistant'}, 'GSM2632558': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2501474': {'time': '24h', 'treatment': 'disulfiram', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2108448': {'stages': 'myoblast nucleus'}, 'GSM2632559': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2108446': {'stages': 'myoblast nucleus'}, 'GSM2108447': {'stages': 'myoblast nucleus'}, 'GSM2108444': {'stages': 'myoblast nucleus'}, 'GSM2108445': {'stages': 'myoblast nucleus'}, 'GSM2108442': {'stages': 'myoblast nucleus'}, 'GSM2108443': {'stages': 'myoblast nucleus'}, 'GSM2108440': {'stages': 'myoblast nucleus'}, 'GSM2108441': {'stages': 'myoblast nucleus'}, 'GSM2501475': {'time': '8h', 'treatment': 'TCR (anti-CD3/anti-CD28/IL-2)', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2166268': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2153028': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153029': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153024': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153025': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153026': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153027': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153020': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153021': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153022': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153023': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2295881': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG7'}, 'GSM2735279': {'cohort': 'Unpaired', 'tils': 'Not evaluated', 'subtype': 'II', 'burden': '266', 'morphology': 'N/A', 'event': 'Disease progression', 'stage': 'III'}, 'GSM2735278': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'I', 'burden': '296', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2648415': {'with': 'SIRT7-targeted siRNAs', 'line': 'BT549', 'type': 'breast cancer cells'}, 'GSM2735273': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '98', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735272': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'II', 'burden': '265', 'morphology': 'N/A', 'event': 'Last follow-up', 'stage': 'I'}, 'GSM2735271': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'II', 'burden': '261', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735270': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '252', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735277': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'III', 'burden': '271', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735276': {'cohort': 'Unpaired', 'tils': 'Not evaluated', 'subtype': 'II', 'burden': '312', 'morphology': 'N/A', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735275': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '40', 'morphology': 'undifferentiated, round', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735274': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '23', 'morphology': 'differentiated', 'event': 'Disease progression', 'stage': 'IV'}, 'GSM1553153': {'duration': '12h', 'line': 'SUM159', 'treatment': 'DMSO'}, 'GSM1553152': {'duration': '12h', 'line': 'SUM159', 'treatment': 'DMSO'}, 'GSM2947317': {'tumor': 'CD30+LPD', 'tissue': 'skin', 'classification': 'SATB1+'}, 'GSM2947316': {'tumor': 'CD30+LPD', 'tissue': 'skin', 'classification': 'SATB1+'}, 'GSM2526833': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526832': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526831': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526830': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526837': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2648412': {'with': 'control siRNAs', 'line': 'BT549', 'type': 'breast cancer cells'}, 'GSM2526835': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526834': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526839': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526838': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1553159': {'duration': '12h', 'line': 'SUM159', 'treatment': 'JQ1'}, 'GSM1833302': {'type': '8 cell'}, 'GSM1833300': {'type': '8 cell'}, 'GSM1833307': {'type': 'morula'}, 'GSM2151889': {'status': 'Undifferentiated', 'karyotype': 'Diploid'}, 'GSM1833304': {'type': '8 cell'}, 'GSM2040719': {'line': 'ID00014', 'type': 'lymphoblastoid cell', 'age': '34', 'genotype': '22q11del'}, 'GSM1833309': {'type': 'morula'}, 'GSM2287049': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287046': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287047': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287044': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287045': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287042': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2361404': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'CAAAAG'}, 'GSM2895248': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'estradiol (10 nM) + R4k1 (15 μM)'}, 'GSM2287040': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287041': {'gender': 'male', 'type': 'Single Cell'}, 'GSM986133': {'line': 'HEK293', 'sirna': 'none', 'fragmentation': 'alkaline hydrolysis'}, 'GSM986137': {'line': 'HEK293', 'sirna': 'scrambled-A', 'fragmentation': 'RNase I digestion'}, 'GSM986136': {'line': 'HEK293', 'sirna': 'Ambion S21772', 'fragmentation': 'alkaline hydrolysis'}, 'GSM986135': {'line': 'HEK293', 'sirna': 'Ambion S224836', 'fragmentation': 'alkaline hydrolysis'}, 'GSM986134': {'line': 'HEK293', 'sirna': 'scrambled-A', 'fragmentation': 'alkaline hydrolysis'}, 'GSM986138': {'line': 'HEK293', 'sirna': \"5'-NNGACCGAGA UUACAUGGAUA-3' dsRNA oligo from Dharmacon\", 'fragmentation': 'RNase I digestion'}, 'GSM1573120': {'line': 'A549', 'type': 'Non-small-cell lung cancer (NSCLC) cells', 'genotype': 'FOXD3 knockdown', 'group_tag': 'FOXD3'}, 'GSM2393855': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'ANKRD52;CSNK1A1_KO'}, 'GSM2393854': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'ANKRD52;CSNK1A1_KO'}, 'GSM2393853': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'ANKRD52;CSNK1A1_KO'}, 'GSM2393852': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'ANKRD52_KO'}, 'GSM2393851': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'ANKRD52_KO'}, 'GSM2393850': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'ANKRD52_KO'}, 'GSM2054985': {'type': 'HUVEC', 'treatment': 'Angiopoietin1 (COMP-Ang1)', 'passage': 'Passage 5'}, 'GSM2054984': {'type': 'HUVEC', 'treatment': 'control', 'passage': 'Passage 5'}, 'GSM2054987': {'type': 'HUVEC', 'treatment': 'Angiopoietin2 in the presence of Angiopoietin2 Binding and Tie2 Activating Antibody', 'passage': 'Passage 5'}, 'GSM2054986': {'type': 'HUVEC', 'treatment': 'Angiopoietin2 in the presence of Angiopoietin2 Blocking Antibody', 'passage': 'Passage 5'}, 'GSM2054981': {'type': 'HUVEC', 'treatment': 'Angiopoietin1 (COMP-Ang1)', 'passage': 'Passage 5'}, 'GSM2054980': {'type': 'HUVEC', 'treatment': 'control', 'passage': 'Passage 5'}, 'GSM2054983': {'type': 'HUVEC', 'treatment': 'Angiopoietin2 in the presence of Angiopoietin2 Binding and Tie2 Activating Antibody', 'passage': 'Passage 5'}, 'GSM2054982': {'type': 'HUVEC', 'treatment': 'Angiopoietin2 in the presence of Angiopoietin2 Blocking Antibody', 'passage': 'Passage 5'}, 'GSM1303929': {'tissue': 'islets of Langerhans', 'treatment': 'palmitate'}, 'GSM2054989': {'haplotype': 'Homozyg. MS non-risk', 'disease': 'healthy control'}, 'GSM2054988': {'haplotype': 'Homozyg. MS non-risk', 'disease': 'healthy control'}, 'GSM1303928': {'tissue': 'islets of Langerhans', 'treatment': 'control'}, 'GSM2170812': {'stage': 'iPSC line'}, 'GSM2170813': {'stage': 'iPSC line'}, 'GSM2175950': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175951': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2172168': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172169': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172160': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172161': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172162': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172163': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172164': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172165': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172166': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1194148': {'status': 'wild-type', 'line': 'HEK293T-rex', 'clone': '15', 'treatment': 'Doxycycline 10 min'}, 'GSM2166301': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166300': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166303': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166302': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166305': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166304': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166307': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166306': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166309': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166308': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2170818': {'stage': 'iPSC line'}, 'GSM1440455': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440454': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440457': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440456': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440451': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440450': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440453': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440452': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440459': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440458': {'type': 'glioma - contrast-enhancing sample'}, 'GSM2453974': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1194143': {'status': 'knock-down', 'line': 'HEK293T-rex', 'clone': '15', 'treatment': 'Doxycycline 0 min'}, 'GSM2815827': {'line': 'H9'}, 'GSM1395575': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395574': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395577': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395576': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395571': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2170537': {'stage': 'Endothelial cells'}, 'GSM1395573': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395572': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2348339': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1395579': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395578': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2705421': {'Sex': 'Male', 'rin': 'NA', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.3', 'pmi': '21'}, 'GSM2170539': {'stage': 'Endothelial cells'}, 'GSM2705423': {'Sex': 'Male', 'rin': '8.7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.63', 'pmi': '15'}, 'GSM2705422': {'Sex': 'Female', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.23', 'pmi': '17'}, 'GSM2705425': {'Sex': 'Male', 'rin': '8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.53', 'pmi': '12.5'}, 'GSM2705424': {'Sex': 'Female', 'rin': '8.1', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '5.7', 'pmi': '15'}, 'GSM2705427': {'Sex': 'Male', 'rin': '7.3', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.76', 'pmi': '17'}, 'GSM2170538': {'stage': 'Endothelial cells'}, 'GSM2705429': {'Sex': 'Male', 'rin': '4.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '7.07', 'pmi': '11'}, 'GSM2705428': {'Sex': 'Male', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.37', 'pmi': '21'}, 'GSM2348334': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348332': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2516820': {'death': '89', 'score': 'VI', 'post_mortem_interval': '3', 'caseid': '08-01', 'Sex': 'M', 'rin_score': '5.7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655442'}, 'GSM2307131': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2348333': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348331': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2839746': {'cohort': 'Replication', 'age': '23', 'id': 'C15', 'Sex': 'Female'}, 'GSM2839747': {'cohort': 'Replication', 'age': '55', 'id': 'C16', 'Sex': 'Male'}, 'GSM2839744': {'cohort': 'Replication', 'age': '54', 'id': 'C13', 'Sex': 'Male'}, 'GSM2839745': {'cohort': 'Replication', 'age': '51', 'id': 'C14', 'Sex': 'Male'}, 'GSM2839742': {'cohort': 'Original', 'age': '60', 'id': 'A11', 'Sex': 'Female'}, 'GSM2839743': {'cohort': 'Replication', 'age': '61', 'id': 'C12', 'Sex': 'Male'}, 'GSM2839740': {'cohort': 'Original', 'age': '54', 'id': 'A9', 'Sex': 'Female'}, 'GSM2839741': {'cohort': 'Original', 'age': '69', 'id': 'A10', 'Sex': 'Female'}, 'GSM1613615': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613614': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613617': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1891807': {'type': 'SCNT assisted by KDM4A 8-cell embryos'}, 'GSM1613611': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613610': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2839748': {'cohort': 'Replication', 'age': '53', 'id': 'A12', 'Sex': 'Female'}, 'GSM2839749': {'cohort': 'Replication', 'age': '56', 'id': 'A13', 'Sex': 'Male'}, 'GSM1836570': {'expression_construct': 'FLAG-TOE1F148Y', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'F148 addback- siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836577': {'expression_construct': 'TOE1A103T/A103T', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U2'}, 'GSM2711560': {'line': 'WA09', 'passages': '52-58', 'type': 'human embryonic stem cells'}, 'GSM1946078': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19092', 'for': '60min'}, 'GSM1946079': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19092', 'for': '60min'}, 'GSM1836575': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U2'}, 'GSM2486478': {'line': 'NOMO-1'}, 'GSM2486476': {'line': 'NOMO-1'}, 'GSM1946073': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19092', 'for': '30min'}, 'GSM2486474': {'line': 'NOMO-1'}, 'GSM1836574': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U2'}, 'GSM1946076': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19092', 'for': '60min'}, 'GSM1946077': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19092', 'for': '60min'}, 'GSM2486470': {'line': 'NOMO-1'}, 'GSM1946075': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19092', 'for': '30min'}, 'GSM2247668': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247669': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1575568': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'siGFP'}, 'GSM1575569': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'none (mock)'}, 'GSM1575566': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'siGFP'}, 'GSM1575567': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'siGFP'}, 'GSM1575564': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-494'}, 'GSM1575565': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-494'}, 'GSM2247666': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1575563': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-494'}, 'GSM1575560': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-103'}, 'GSM1575561': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-103'}, 'GSM1915649': {'donorid': 'SU501', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915648': {'donorid': 'SU501', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915645': {'donorid': 'SU496', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915644': {'donorid': 'SU484', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915647': {'donorid': 'SU496', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915646': {'donorid': 'SU496', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915641': {'donorid': 'SU444', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915640': {'donorid': 'SU444', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915643': {'donorid': 'SU484', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915642': {'donorid': 'SU444', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM2256118': {'infected': 'hek_unique:TSS35864_+_30366413.23-CUFF.17596.2,CUFF.17596.3', 'type': 'K562'}, 'GSM2256119': {'infected': 'mcf7_unique:TSS20019_+_13100333.23-P1P2', 'type': 'K562'}, 'GSM2256112': {'infected': 'common:TSS45950_-_72265040.23-P1P2', 'type': 'K562'}, 'GSM2256113': {'infected': 'common:TSS45950_+_72264765.23-P1P2', 'type': 'K562'}, 'GSM2256110': {'infected': 'common:TSS89234_-_58287677.23-P1P2', 'type': 'K562'}, 'GSM2256111': {'infected': 'common:TSS45950_+_72265020.23-P1P2', 'type': 'K562'}, 'GSM2256116': {'infected': 'k562_unique:TSS42353_+_56409626.23-P1P2', 'type': 'K562'}, 'GSM2256117': {'infected': 'k562_unique:TSS42353_+_56409874.23-P1P2', 'type': 'K562'}, 'GSM2256114': {'infected': 'hff_unique:TSS41956_+_41466161.23-P1P2', 'type': 'K562'}, 'GSM2256115': {'infected': 'hff_unique:TSS41956_+_41466178.23-P1P2', 'type': 'K562'}, 'GSM1919094': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'PHF8', 'point': '48 hours'}, 'GSM1919095': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'PHF8', 'point': '72 hours'}, 'GSM1919096': {'line': 'MCF10A', 'treatment': 'without treatment', 'variation': 'Mock'}, 'GSM1919097': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'Mock', 'point': '24 hours'}, 'GSM2627220': {'line': 'prostate cell line RWPE1', 'treatment': 'None', 'variation': 'wild type'}, 'GSM1919091': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'Mock', 'point': '72 hours'}, 'GSM1919092': {'line': 'MCF10A', 'treatment': 'without treatment', 'variation': 'PHF8'}, 'GSM1919093': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'PHF8', 'point': '24 hours'}, 'GSM2374368': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374369': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM1919098': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'Mock', 'point': '48 hours'}, 'GSM1919099': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'Mock', 'point': '72 hours'}, 'GSM2194533': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2171902': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2054152': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2054150': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2054151': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1 wt re-expressed'}, 'GSM2717607': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM999670': {'identifier': '9', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM999671': {'identifier': '9', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM999672': {'identifier': '10', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM999673': {'identifier': '10', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM2131217': {'antibody': 'none', 'treatment': 'siCTR and siMYC'}, 'GSM2131216': {'antibody': 'c-MYC N262 (Santa Cruz, sc764)', 'treatment': 'siMYC'}, 'GSM2131215': {'antibody': 'c-MYC N262 (Santa Cruz, sc764)', 'treatment': 'siCTR'}, 'GSM1646983': {'illumina_index': '5', 'point': '48', 'batch': '3', 'agent': 'Rv+', 'rin': '7.6', 'individual': 'M372'}, 'GSM1646982': {'illumina_index': '4', 'point': '48', 'batch': '3', 'agent': 'Salm', 'rin': '8.2', 'individual': 'M373'}, 'GSM1646981': {'illumina_index': '2', 'point': '18', 'batch': '3', 'agent': 'Staph', 'rin': '5.3', 'individual': 'M375'}, 'GSM1646980': {'illumina_index': '19', 'point': '48', 'batch': '2', 'agent': 'none', 'rin': '8', 'individual': 'M376'}, 'GSM1646987': {'illumina_index': '13', 'point': '4', 'batch': '3', 'agent': 'GC', 'rin': '8.7', 'individual': 'M372'}, 'GSM1646986': {'illumina_index': '12', 'point': '48', 'batch': '3', 'agent': 'Rv+', 'rin': '9.1', 'individual': 'M376'}, 'GSM1646985': {'illumina_index': '7', 'point': '4', 'batch': '3', 'agent': 'Salm', 'rin': '3.6', 'individual': 'M374'}, 'GSM1646984': {'illumina_index': '6', 'point': '48', 'batch': '3', 'agent': 'Salm', 'rin': '9.6', 'individual': 'M375'}, 'GSM1646989': {'illumina_index': '15', 'point': '4', 'batch': '3', 'agent': 'Yers', 'rin': '7.5', 'individual': 'M377'}, 'GSM1646988': {'illumina_index': '14', 'point': '18', 'batch': '3', 'agent': 'Smeg', 'rin': '7.5', 'individual': 'M377'}, 'GSM1133259': {'line': 'HeLa'}, 'GSM1133252': {'line': 'LCL-BACD2', 'antibody': 'Anti-Ago2 (clone 9E8, Millipore cat#04-642)'}, 'GSM1133250': {'line': 'LCL-BACD2'}, 'GSM1133251': {'line': 'LCL-BACD3'}, 'GSM2348489': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1579187': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM2722286': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS III; pH 7.0; 6mM MgCl2'}, 'GSM2722287': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS III; pH 8.3; 6mM MgCl2'}, 'GSM2722284': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'AMV; pH 7.0; 10mM MgCl2'}, 'GSM2722285': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'AMV; pH 8.3; 10mM MgCl2'}, 'GSM2722288': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS III; pH 7.0; 3mM MgCl2'}, 'GSM2722289': {'subtype': 'Total RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS III; pH 8.3; 3mM MgCl2'}, 'GSM1643006': {'line': 'HEK 293T', 'type': 'whole RNA fragment sequencing', 'treatment': 'none', 'fraction': 'cytoplasm fraction'}, 'GSM2089756': {'line': 'MOLT4', 'treatment': 'JQ1', 'point': '2h'}, 'GSM2089757': {'line': 'MOLT4', 'treatment': 'JQ1', 'point': '2h'}, 'GSM2089754': {'line': 'MOLT4', 'treatment': 'DMSO', 'point': '6h'}, 'GSM2089755': {'line': 'MOLT4', 'treatment': 'DMSO', 'point': '6h'}, 'GSM2089752': {'line': 'MOLT4', 'treatment': 'DMSO', 'point': '2h'}, 'GSM2089753': {'line': 'MOLT4', 'treatment': 'DMSO', 'point': '6h'}, 'GSM2089750': {'line': 'MOLT4', 'treatment': 'DMSO', 'point': '2h'}, 'GSM2089751': {'line': 'MOLT4', 'treatment': 'DMSO', 'point': '2h'}, 'GSM2089758': {'line': 'MOLT4', 'treatment': 'JQ1', 'point': '2h'}, 'GSM2089759': {'line': 'MOLT4', 'treatment': 'JQ1', 'point': '6h'}, 'GSM2653854': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653855': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653856': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653857': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653850': {'gender': 'F', 'passages': 'p7', 'type': 'Human liver tumoral cell'}, 'GSM2653851': {'gender': 'F', 'passages': 'p6', 'type': 'Human liver tumoral cell'}, 'GSM2653852': {'gender': 'M', 'passages': 'p7', 'type': 'Human liver tumoral cell'}, 'GSM2653853': {'gender': 'M', 'passages': 'p3', 'type': 'Human liver tumoral cell'}, 'GSM2653858': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653859': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2170935': {'stage': 'Liver bud 2'}, 'GSM2170934': {'stage': 'Liver bud 2'}, 'GSM2170937': {'stage': 'Liver bud 3'}, 'GSM2170936': {'stage': 'Liver bud 3'}, 'GSM2170931': {'stage': 'Liver bud 2'}, 'GSM2170930': {'stage': 'Liver bud 2'}, 'GSM2170933': {'stage': 'Liver bud 2'}, 'GSM2170932': {'stage': 'Liver bud 2'}, 'GSM2170939': {'stage': 'Liver bud 3'}, 'GSM2170938': {'stage': 'Liver bud 3'}, 'GSM1553463': {'with': 'REST-003 siRNA', 'line': 'MDA-MB-231', 'type': 'highly invasive'}, 'GSM1553462': {'with': 'control siRNA', 'line': 'MDA-MB-231', 'type': 'highly invasive'}, 'GSM1553461': {'with': 'control siRNA', 'line': 'MDA-MB-231', 'type': 'highly invasive'}, 'GSM1553460': {'with': 'wt-REST', 'line': 'MDA-MB-231', 'type': 'highly invasive', 'variation': 'overexpression of wild type REST'}, 'GSM1553464': {'with': 'REST-003 siRNA', 'line': 'MDA-MB-231', 'type': 'highly invasive'}, 'GSM2309641': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309640': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309643': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Tricep muscle', 'classification': 'None'}, 'GSM2309642': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Tibialis anterior muscle', 'classification': 'Duchenne muscular dystrophy'}, 'GSM2889018': {'tissue': 'pancreatic islets'}, 'GSM2392270': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392271': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392272': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392273': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392274': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392275': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392276': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376148': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376147': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2392279': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376145': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376144': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376143': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376142': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376141': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376140': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2178742': {'ir': '0.979431929480901', 'weight': 'obese', 'gender': 'female', 'age': '63', 'bmi': '32.7', 'disease': 't2d', 'l': '0.18', 'h': '0.5', 'id': '85a'}, 'GSM2840448': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2596471': {'state': 'Blau syndrome', 'type': 'iPSC-derived macrophage', 'treatment': 'Yes'}, 'GSM2596473': {'state': 'Blau syndrome', 'type': 'iPSC-derived macrophage', 'treatment': 'No'}, 'GSM2596475': {'state': 'Blau syndrome', 'type': 'iPSC-derived macrophage', 'treatment': 'Yes'}, 'GSM2596476': {'state': 'wild type(Corrected)', 'type': 'iPSC-derived macrophage', 'treatment': 'No'}, 'GSM2278012': {'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'line': 'MDA-MB-157', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2310024': {'line': 'MCF7', 'type': 'wild type (WT)', 'condition': 'monolayer (m) cultured cell'}, 'GSM2178748': {'ir': '0.693000693000693', 'weight': 'non-obese', 'gender': 'female', 'age': '63', 'bmi': '24.8', 'disease': 'ngt', 'l': '0.05', 'h': '1', 'id': '2a'}, 'GSM2178749': {'ir': '1.15473441108545', 'weight': 'obese', 'gender': 'male', 'age': '56', 'bmi': '39.9', 'disease': 'ngt', 'l': '0.06', 'h': '0', 'id': '27'}, 'GSM1963839': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963838': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM841728': {'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM841729': {'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM1658379': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': '+', 'cd13': '-'}, 'GSM1658378': {'ssea4': 'NA', 'line': 'PGP1', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM1658377': {'ssea4': 'NA', 'line': 'H9', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM1658376': {'ssea4': 'NA', 'line': 'H1', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM841726': {'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM841727': {'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM1658373': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM1658372': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM1658371': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM1963834': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1820477': {'type': 'HEK293', 'genotype': 'WT DIS3'}, 'GSM2747469': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': 'DMSO'}, 'GSM2747468': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': 'DMSO'}, 'GSM1564637': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '3.6', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2093101': {'bin': '13', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2218631': {'with': '+UV (Recovery time=0.5h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser5P'}, 'GSM1607089': {'gender': 'M', 'age': '59', 'tissue': 'lesional skin'}, 'GSM2747466': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': '5uM GW4066'}, 'GSM2455638': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455639': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455634': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455635': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455636': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455637': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455630': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455631': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455632': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455633': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1844455': {'line': 'Kasumi-1', 'agent': 'DMSO', 'point': '72h'}, 'GSM2889012': {'tissue': 'pancreatic islets'}, 'GSM1844457': {'line': 'Kasumi-1', 'agent': 'GSK690*_1uM', 'point': '72h'}, 'GSM2565018': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2565019': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM1844456': {'line': 'Kasumi-1', 'agent': 'RN-1_1uM', 'point': '72h'}, 'GSM2348718': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348719': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348714': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565011': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM2565012': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2565013': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2565014': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565015': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2565016': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2565017': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM3711627': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '17'}, 'GSM3711626': {'Sex': 'M', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '11'}, 'GSM3711625': {'Sex': 'M', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '11'}, 'GSM3711624': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '11'}, 'GSM2350346': {'tissue': 'Blood', 'type': 'BDCA-1+DCs'}, 'GSM3711622': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '15'}, 'GSM3711621': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '15'}, 'GSM3711620': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '6'}, 'GSM2287653': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2350348': {'tissue': 'Blood', 'type': 'BDCA-1+DCs'}, 'GSM2243457': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM3711629': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '17'}, 'GSM3711628': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '17'}, 'GSM2307232': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307233': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307230': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307231': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307236': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2303238': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2307234': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307235': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307238': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2303239': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM811624': {'type': 'Oocyte_pooled', 'strategy': 'Sigma-Aldrich WTA2'}, 'GSM811625': {'type': 'Oocyte_pooled', 'strategy': 'Sigma-Aldrich WTA2'}, 'GSM2303234': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM1669560': {'experiment': '1', 'type': 'BEAS2B cells', 'treatment': '150 uM H2O2 added and then cultured at 21% O2 tension in vitro for 3 days'}, 'GSM1669561': {'experiment': '2', 'type': 'BEAS2B cells', 'treatment': '150 uM H2O2 added and then cultured at 21% O2 tension in vitro for 3 days'}, 'GSM2303235': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACIW009'}, 'GSM2303230': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2287658': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1402497': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'coronary artery calcification case', 'tissue': 'peripheral blood'}, 'GSM1402496': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'coronary artery calcification case', 'tissue': 'peripheral blood'}, 'GSM1402495': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'coronary artery calcification case', 'tissue': 'peripheral blood'}, 'GSM1402494': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'coronary artery calcification case', 'tissue': 'peripheral blood'}, 'GSM1402493': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'coronary artery calcification case', 'tissue': 'peripheral blood'}, 'GSM1402492': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'coronary artery calcification case', 'tissue': 'peripheral blood'}, 'GSM1402491': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'coronary artery calcification case', 'tissue': 'peripheral blood'}, 'GSM1402490': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'coronary artery calcification case', 'tissue': 'peripheral blood'}, 'GSM2046843': {'type': 'Mesenchymal stem cells', 'cells': '3 million', 'antibody': 'H3K27me3 (20ug Millipore, 07-449)', 'agasga': 'SGA'}, 'GSM2046842': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K27ac (2ug Abcam, AB4729)', 'agasga': 'AGA'}, 'GSM2046841': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K27ac (2ug Abcam, AB4729)', 'agasga': 'AGA'}, 'GSM2046840': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K27ac (2ug Abcam, AB4729)', 'agasga': 'AGA'}, 'GSM2046847': {'type': 'Mesenchymal stem cells', 'cells': '3 million', 'antibody': 'H3K27me3 (20ug Millipore, 07-449)', 'agasga': 'AGA'}, 'GSM2046846': {'type': 'Mesenchymal stem cells', 'cells': '3 million', 'antibody': 'H3K27me3 (20ug Millipore, 07-449)', 'agasga': 'AGA'}, 'GSM2046845': {'type': 'Mesenchymal stem cells', 'cells': '3 million', 'antibody': 'H3K27me3 (20ug Millipore, 07-449)', 'agasga': 'SGA'}, 'GSM2046844': {'type': 'Mesenchymal stem cells', 'cells': '3 million', 'antibody': 'H3K27me3 (20ug Millipore, 07-449)', 'agasga': 'SGA'}, 'GSM1603321': {'cl': '97', 'ca': '9.7', 'dyslipidemia': 'Yes', 'year': '--', 'statin': '--', 'creatinine': '2.07', 'id': 'S08', 'co2': '21', 'rr': '18', 'plavix': '--', 'na': '131', 'iiia': '--', 'type': 'STEMI', 'glucose': '463', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '46', 'smoking': 'No', 'day': '--', 'ticagrelor': 'Yes', 'troponin': '20.95', 'gender': 'F', 'k': '4.4', 'batch': '3', 'prasugrel': '--', 'cad': 'No'}, 'GSM2112779': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '12 hours'}, 'GSM2112778': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 hours'}, 'GSM2112777': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM R5020', 'time': '12 hours'}, 'GSM2112776': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM Estradiol', 'time': '12 hours'}, 'GSM2112775': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '12 hours'}, 'GSM2112774': {'status': 'ER+/PR+', 'line': 'ZR75', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 hours'}, 'GSM2112773': {'status': 'ER+/PR+', 'line': 'ZR75', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM R5020', 'time': '12 hours'}, 'GSM2112772': {'status': 'ER+/PR+', 'line': 'ZR75', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM Estradiol', 'time': '12 hours'}, 'GSM2112771': {'status': 'ER+/PR+', 'line': 'ZR75', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '12 hours'}, 'GSM2112770': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 hours'}, 'GSM957371': {'sample': 'GM11882', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1347'}, 'GSM2193204': {'donor': 'Human (donor B)', 'type': 'B cells'}, 'GSM2193205': {'donor': 'Human (donor B)', 'type': 'Monocytes'}, 'GSM2193206': {'donor': 'Human (donor B)', 'type': 'CD4+ T cells'}, 'GSM2193207': {'donor': 'Human (donor B)', 'type': 'CD8+ T cells'}, 'GSM2193200': {'donor': 'Human (donor A)', 'type': 'Colon'}, 'GSM2193201': {'donor': 'Human (donor A)', 'type': 'Esophagus'}, 'GSM2193202': {'donor': 'Human (donor A)', 'type': 'Prostate'}, 'GSM2193203': {'donor': 'Human (donor A)', 'type': 'Testis'}, 'GSM2193208': {'donor': 'Human (donor E)', 'type': 'Brain'}, 'GSM2193209': {'donor': 'Human (donor E)', 'type': 'Gut'}, 'GSM1489618': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '5U2'}, 'GSM2113428': {'line': 'LNT-229', 'tissue': 'Brain tumor cell line', 'treatment': 'Not treated'}, 'GSM2113429': {'line': 'LNT-229', 'tissue': 'Brain tumor cell line', 'treatment': 'Not treated'}, 'GSM2113424': {'status': 'wild-type and S34F mutation', 'cells': 'HCC78', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113425': {'status': 'wild-type and S34F mutation', 'cells': 'HCC78', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113426': {'status': 'wild-type (S34F-depleted)', 'cells': 'H441', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113427': {'status': 'wild-type', 'cells': 'H441', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113420': {'status': 'wild-type and S34F mutation', 'cells': 'H441', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113421': {'status': 'wild-type and S34F mutation', 'cells': 'H441', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113422': {'status': 'wild-type', 'cells': 'HCC78', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113423': {'status': 'wild-type', 'cells': 'HCC78', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2026537': {'gender': 'male', 'type': 'iPSC aggregates', 'genotype': 'wild type'}, 'GSM2026536': {'gender': 'male', 'type': 'iPSC', 'genotype': 'wild type'}, 'GSM2026539': {'gender': 'male', 'type': 'neuron', 'genotype': 'wild type'}, 'GSM2026538': {'gender': 'male', 'type': 'neuroepithelia aggregates', 'genotype': 'wild type'}, 'GSM2643608': {'antibody': 'H3K4me3 (Abcam ab8580)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM2643609': {'antibody': 'H3K4me3 (Abcam ab8580)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM1716737': {'subpopulation': 'CA125 positive', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM1716734': {'subpopulation': 'CA125 negative', 'storage': 'freshly isolated primary cells', 'state': 'solid tumor'}, 'GSM2048770': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2752541': {'line': 'NCI-H358', 'agent': 'shRNA Luciferase control'}, 'GSM1946502': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3.3M36 (RevMAb Biosciences, catalog# 31-1085-00, lot# O-08-00294)', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946503': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3.3M36 (RevMAb Biosciences, catalog# 31-1085-00, lot# O-08-00294)', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946500': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3.3M36 (RevMAb Biosciences, catalog# 31-1085-00, lot# O-08-00294)', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946501': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'H3.3M36 (RevMAb Biosciences, catalog# 31-1085-00, lot# O-08-00294)', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1716730': {'subpopulation': 'CA125 negative', 'storage': 'freshly isolated primary cells', 'state': 'solid tumor'}, 'GSM1716731': {'subpopulation': 'CA125 positive', 'storage': 'freshly isolatedprimary cells', 'state': 'solid tumor'}, 'GSM2303580': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM2303581': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM3190873': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.952272'}, 'GSM2303582': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM3190872': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.168017'}, 'GSM2303583': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM1716738': {'subpopulation': 'CA125 negative', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM2303584': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACEK420A'}, 'GSM2252631': {'line': 'U2OS', 'type': 'Osteosarcoma', 'treatment': '40μg/ml MMS for 8 hours'}, 'GSM1716739': {'subpopulation': 'CA125 positive', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM2303585': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303586': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303587': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2771772': {'aspiration': 'NA', 'type': 'Negative control, ERCC only', 'id': 'NA', 'structure': 'Negative control, ERCC only'}, 'GSM2771770': {'aspiration': '3rd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_16', 'structure': 'cell body'}, 'GSM2771771': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_17', 'structure': 'neurite'}, 'GSM1012760': {'phase': 'G1', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012761': {'phase': 'G1', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012762': {'phase': 'S0', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012763': {'phase': 'S0', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012764': {'phase': 'S0', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012765': {'phase': 'S3', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012766': {'phase': 'S3', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012767': {'phase': 'S3', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012768': {'phase': 'S6', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1012769': {'phase': 'S6', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM2816206': {'line': 'H9'}, 'GSM2535737': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1212', 'samplename': '1gr_413tetr_C15', 'seqsite': 'BRI', 'sampleID': 'S13380', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1212', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C15'}, 'GSM2535730': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1203', 'samplename': '1g_413CD3_C83', 'seqsite': 'BRI', 'sampleID': 'S13330', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1203', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C83'}, 'GSM2816201': {'line': 'H9'}, 'GSM2816202': {'line': 'H9'}, 'GSM2816203': {'line': 'H9'}, 'GSM1704807': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'NKX2-5 shRNA knockdown'}, 'GSM1704806': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'NKX2-5 shRNA knockdown'}, 'GSM1704805': {'line': 'H1 embryonic stem cells', 'type': 'day 6 ES cells differentiating along the cardiac lineage', 'variation': 'wild-type'}, 'GSM2029246': {'type': 'Heterologous pronuclear transfer embryo 3'}, 'GSM2029247': {'type': 'Heterologous pronuclear transfer embryo 3'}, 'GSM2029245': {'type': 'Heterologous pronuclear transfer embryo 3'}, 'GSM2178489': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2029248': {'type': 'Heterologous pronuclear transfer embryo 3'}, 'GSM2178488': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM1704801': {'line': 'H1 embryonic stem cells', 'type': 'day 6 ES cells differentiating along the cardiac lineage', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1704800': {'line': 'H1 embryonic stem cells', 'type': 'day 6 ES cells differentiating along the cardiac lineage', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1963958': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2355679': {'knockdown': 'RNF20 siRNA 1 tranfected', 'line': 'H1299', 'tissue': 'Lung cancer cell lines'}, 'GSM2355678': {'knockdown': 'Control siRNA 2 transfected', 'line': 'H1299', 'tissue': 'Lung cancer cell lines'}, 'GSM1963959': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2355675': {'knockdown': 'RNF20 siRNA 1 tranfected', 'line': 'A549', 'tissue': 'Lung cancer cell lines'}, 'GSM2355674': {'knockdown': 'Control siRNA 2 transfected', 'line': 'A549', 'tissue': 'Lung cancer cell lines'}, 'GSM2355677': {'knockdown': 'Control siRNA 1 transfected', 'line': 'H1299', 'tissue': 'Lung cancer cell lines'}, 'GSM2355676': {'knockdown': 'RNF20 siRNA 2 tranfected', 'line': 'A549', 'tissue': 'Lung cancer cell lines'}, 'GSM2355671': {'knockdown': 'Control siRNA 2 transfected', 'line': 'BEAS2-B', 'tissue': 'Normal epithelial cells'}, 'GSM2355670': {'knockdown': 'Control siRNA 1 transfected', 'line': 'BEAS2-B', 'tissue': 'Normal epithelial cells'}, 'GSM2355673': {'knockdown': 'RNF20 siRNA 2 tranfected', 'line': 'BEAS2-B', 'tissue': 'Normal epithelial cells'}, 'GSM2355672': {'knockdown': 'RNF20 siRNA 1 tranfected', 'line': 'BEAS2-B', 'tissue': 'Normal epithelial cells'}, 'GSM1574147': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '74', 'treatment': 'none'}, 'GSM1574146': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '74', 'treatment': 'none'}, 'GSM1574145': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '74', 'treatment': '100 nM rotenone'}, 'GSM1574144': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '74', 'treatment': '100 nM rotenone'}, 'GSM1574143': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '74', 'treatment': '100 nM rotenone'}, 'GSM1574142': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '58', 'treatment': 'none'}, 'GSM1574141': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '58', 'treatment': 'none'}, 'GSM1574140': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '58', 'treatment': 'none'}, 'GSM1832771': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM1832770': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM1832773': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1832772': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1832775': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1832774': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1832777': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1574148': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '74', 'treatment': 'none'}, 'GSM1704809': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1704808': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM2575415': {'line': 'WM983B', 'subclone': 'E2', 'condition': 'Drug'}, 'GSM2575414': {'line': 'WM983B', 'subclone': 'E10', 'condition': 'Drug'}, 'GSM2575417': {'line': 'WM983B', 'subclone': 'E7', 'condition': 'Drug'}, 'GSM2575416': {'line': 'WM983B', 'subclone': 'E7', 'condition': 'Drug'}, 'GSM2575411': {'line': 'WM983B', 'subclone': 'G6', 'condition': 'Drug'}, 'GSM2575410': {'line': 'WM983B', 'subclone': 'E2', 'condition': 'Drug'}, 'GSM2575413': {'line': 'WM983B', 'subclone': 'E10', 'condition': 'NoDrug'}, 'GSM2575412': {'line': 'WM983B', 'subclone': 'G6', 'condition': 'Drug'}, 'GSM2575419': {'line': 'WM983B', 'subclone': 'E10', 'condition': 'Drug'}, 'GSM2575418': {'line': 'WM983B', 'subclone': 'B10', 'condition': 'Drug'}, 'GSM2056824': {'knockdown': 'FUS', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '2hr'}, 'GSM2056825': {'knockdown': 'TAF15', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '2hr'}, 'GSM2056826': {'knockdown': 'ctrl', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '30min'}, 'GSM2056827': {'knockdown': 'FUS', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '30min'}, 'GSM2056820': {'knockdown': 'ctrl', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '1hr'}, 'GSM2056821': {'knockdown': 'FUS', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '1hr'}, 'GSM2056822': {'knockdown': 'TAF15', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '1hr'}, 'GSM2056823': {'knockdown': 'ctrl', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '2hr'}, 'GSM2056828': {'knockdown': 'TAF15', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '30min'}, 'GSM2056829': {'knockdown': 'ctrl', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '4hr'}, 'GSM2326868': {'type': 'SKH-1 cells', 'genotype': 'RUNX1-EVI1 Knock down 4 days'}, 'GSM2072051': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gGFP-1', 'treatment': '50 nM Trametinib'}, 'GSM2326862': {'type': 'SKH-1 cells', 'genotype': 'mismatch control 4 days'}, 'GSM2326863': {'type': 'SKH-1 cells', 'genotype': 'RUNX1-EVI1 Knock down 10 days'}, 'GSM2326860': {'type': 'SKH-1 cells', 'genotype': 'mismatch control 2 days'}, 'GSM2326861': {'type': 'SKH-1 cells', 'genotype': 'mismatch control 4 days'}, 'GSM2326866': {'type': 'SKH-1 cells', 'genotype': 'RUNX1-EVI1 Knock down 2 days'}, 'GSM2326867': {'type': 'SKH-1 cells', 'genotype': 'RUNX1-EVI1 Knock down 4 days'}, 'GSM2326864': {'type': 'SKH-1 cells', 'genotype': 'RUNX1-EVI1 Knock down 10 days'}, 'GSM2326865': {'type': 'SKH-1 cells', 'genotype': 'RUNX1-EVI1 Knock down 2 days'}, 'GSM2084144': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM2084145': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM2084146': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM2084147': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084140': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM2084141': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084142': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084143': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2370645': {'antibodies': 'RNA Polymerase II (Active Motif, 4H8)', 'type': 'Resting TCM CD4 purified cells', 'ids': '882'}, 'GSM2370644': {'antibodies': 'H3K27Ac (Diagenode, pAb-196-060)', 'type': 'Resting TCM CD4 purified cells', 'ids': '482'}, 'GSM2370647': {'antibodies': 'H3K4Me3 (Millipore,17-614)', 'type': 'Resting TEM CD4 purified cells', 'ids': '527'}, 'GSM2370646': {'antibodies': 'H3K4me3 (Abcam ab8580)', 'type': 'Resting TEM CD4 purified cells', 'ids': '389'}, 'GSM2084148': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084149': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2370643': {'antibodies': 'H2A.z (Abcam ab4174)', 'type': 'Resting TCM CD4 purified cells', 'ids': '480'}, 'GSM2370642': {'antibodies': 'H2A.z (Abcam ab4174)', 'type': 'Resting TCM CD4 purified cells', 'ids': '388'}, 'GSM2550465': {'state': 'control', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 21'}, 'GSM2550464': {'state': 'control', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 21'}, 'GSM2550467': {'state': 'Idiopathic Pulmonary Fibrosis (IPF)', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 21'}, 'GSM2550466': {'state': 'Idiopathic Pulmonary Fibrosis (IPF)', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 0'}, 'GSM2550461': {'state': 'Idiopathic Pulmonary Fibrosis (IPF)', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 21'}, 'GSM2550460': {'state': 'control', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 0'}, 'GSM2550463': {'state': 'control', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 21'}, 'GSM2550462': {'state': 'Idiopathic Pulmonary Fibrosis (IPF)', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 21'}, 'GSM2550469': {'state': 'Idiopathic Pulmonary Fibrosis (IPF)', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 21'}, 'GSM2550468': {'state': 'Idiopathic Pulmonary Fibrosis (IPF)', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 0'}, 'GSM2642922': {'line': 'MM1.S', 'lentivrius': 'vector', 'type': 'multiple myeloma cell line'}, 'GSM2642923': {'line': 'MM1.S', 'lentivrius': 'vector', 'type': 'multiple myeloma cell line'}, 'GSM2642920': {'line': 'MM1.S', 'lentivrius': 'FAM46C', 'type': 'multiple myeloma cell line'}, 'GSM2642921': {'line': 'MM1.S', 'lentivrius': 'FAM46C', 'type': 'multiple myeloma cell line'}, 'GSM2443364': {'gender': 'male', 'age': '68', 'type': 'B'}, 'GSM2443367': {'gender': 'female', 'age': '29', 'type': 'O'}, 'GSM2443366': {'gender': 'female', 'age': '42', 'type': 'B'}, 'GSM2443361': {'gender': 'female', 'age': '54', 'type': 'O'}, 'GSM2443360': {'gender': 'male', 'age': '31', 'type': 'O'}, 'GSM1652621': {'induction': 'Day 37', 'type': 'GFP negative neural retina cells'}, 'GSM2443362': {'gender': 'female', 'age': '49', 'type': 'B'}, 'GSM2393958': {'treatment': 'incubated with culture supernatant from uninfected Vero E6 cells', 'point': '24 hours post treatment'}, 'GSM2393959': {'treatment': 'HTNV propagated in the E6 cells', 'point': '24 hours post infection'}, 'GSM2108712': {'type': 'primary hepatocyte cells', 'treatment': 'vehicle'}, 'GSM2334834': {'donor': 'male', 'line': 'U266', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334835': {'donor': 'male', 'line': 'U266', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334832': {'donor': 'male', 'line': 'RPMI-8226', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334833': {'donor': 'male', 'line': 'RPMI-8226', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334830': {'donor': 'male', 'line': 'U266', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM2334831': {'donor': 'male', 'line': 'U266', 'tissue': 'peripheral blood', 'type': 'B lymphocyte'}, 'GSM1384316': {'subtype': 'Luminal', 'line': 'MDAMB453', 'type': 'breast cancer cell line'}, 'GSM1384315': {'line': 'LPS12', 'type': 'dedifferentiated liposarcoma (DDLPS)'}, 'GSM1384314': {'line': 'LPS12', 'type': 'dedifferentiated liposarcoma (DDLPS)'}, 'GSM1384313': {'line': '510', 'type': 'dedifferentiated liposarcoma (DDLPS)'}, 'GSM1384312': {'line': '510', 'type': 'dedifferentiated liposarcoma (DDLPS)'}, 'GSM1384311': {'line': '141', 'type': 'dedifferentiated liposarcoma (DDLPS)'}, 'GSM1384310': {'line': '141', 'type': 'dedifferentiated liposarcoma (DDLPS)'}, 'GSM2551338': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551339': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551332': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551333': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551330': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2551331': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2551336': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551337': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551334': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551335': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2048654': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048655': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048656': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048657': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048650': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048651': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048652': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048653': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048658': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048659': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2100079': {'rin': '8.8', 'Sex': 'Female', 'sspg': '212', 'age': '43', 'bmi': '32.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '358', 'method': 'Qiagen:trizol'}, 'GSM2100078': {'rin': '8.9', 'Sex': 'Female', 'sspg': '212', 'age': '43', 'bmi': '32.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '358', 'method': 'Qiagen:trizol'}, 'GSM2100073': {'rin': '9.8', 'Sex': 'Male', 'sspg': '73', 'age': '57', 'bmi': '31.4', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '356', 'method': 'Qiagen:trizol'}, 'GSM2100072': {'rin': '9.6', 'Sex': 'Male', 'sspg': '73', 'age': '57', 'bmi': '31.4', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '356', 'method': 'Qiagen:trizol'}, 'GSM2100071': {'rin': '10', 'Sex': 'Female', 'sspg': '100', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '29.5', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '73', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '352', 'method': 'Life-Tech GITC'}, 'GSM2100070': {'rin': '10', 'Sex': 'Female', 'sspg': '100', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '29.5', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '73', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '352', 'method': 'Life-Tech GITC'}, 'GSM2100077': {'rin': '8.9', 'Sex': 'Female', 'sspg': '212', 'age': '43', 'bmi': '32.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '358', 'method': 'Qiagen:trizol'}, 'GSM2100076': {'rin': '9', 'Sex': 'Female', 'sspg': '212', 'age': '43', 'bmi': '32.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '358', 'method': 'Qiagen:trizol'}, 'GSM2100075': {'rin': '9', 'Sex': 'Female', 'sspg': '212', 'age': '43', 'bmi': '32.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '358', 'method': 'Qiagen:trizol'}, 'GSM2100074': {'rin': '9.5', 'Sex': 'Male', 'sspg': '73', 'age': '57', 'bmi': '31.4', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '356', 'method': 'Qiagen:trizol'}, 'GSM2451155': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451154': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451157': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451156': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451151': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451150': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451153': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451152': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451159': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451158': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1105862': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2509528': {'source': 'mammary gland/breast', 'line': 'MDA-MB-157', 'with': 'DMSO for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509529': {'source': 'mammary gland/breast', 'line': 'MDA-MB-157', 'with': 'Thalidomide (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM1552208': {'line': 'HeLa', 'antibody': 'AGO2 (ab57113, Abcam)'}, 'GSM1552209': {'line': 'HeLa', 'antibody': 'AGO2 (ab57113, Abcam)'}, 'GSM2496142': {'line': 'UMRC6', 'variation': 'FLAG-BAP', 'point': 'T8; no glucose in the growth medium for 8hr'}, 'GSM2496141': {'line': 'UMRC6', 'variation': 'FLAG-BAP', 'point': 'T8; no glucose in the growth medium for 8hr'}, 'GSM1552207': {'line': 'HeLa', 'antibody': 'AGO2 (ab57113, Abcam)'}, 'GSM2509522': {'source': 'mammary gland/breast', 'line': 'MDA-MB-468', 'with': 'Thalidomide (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2786569': {'line': 'VL51'}, 'GSM2786568': {'line': 'UPN1'}, 'GSM2509523': {'source': 'mammary gland/breast', 'line': 'MDA-MB-468', 'with': 'BETi-211 (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2786565': {'line': 'TMD8'}, 'GSM2786564': {'line': 'SUDHL6'}, 'GSM2786567': {'line': 'U2932'}, 'GSM2786566': {'line': 'TOLEDO'}, 'GSM2786561': {'line': 'SUDHL16'}, 'GSM2786560': {'line': 'SUDHL10'}, 'GSM2786563': {'line': 'SUDHL4'}, 'GSM2786562': {'line': 'SUDHL2'}, 'GSM1105864': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2204641': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204640': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204643': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204642': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204645': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204644': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204647': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2231178': {'tissue': 'skin', 'type': 'nonlesional,chronically UV-exposed skin (NS)'}, 'GSM2204649': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204648': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2231175': {'tissue': 'skin', 'type': 'nonlesional,chronically UV-exposed skin (NS)'}, 'GSM2231174': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM2231173': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM2231172': {'tissue': 'skin', 'type': 'nonlesional,chronically UV-exposed skin (NS)'}, 'GSM2231171': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM2231170': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM2079618': {'type': 'adult HSC myofibroblasts', 'treatment': 'serum starved for 48 hours before receiving TGF-beta (2.5ng/ml) ethanol vehicle for 16 hours', 'passage': 'passage 7-8'}, 'GSM2079611': {'type': 'adult HSC myofibroblasts', 'treatment': 'nortriptyline 27uM for 48 hours', 'passage': 'passage 7-8'}, 'GSM2079612': {'type': 'adult HSC myofibroblasts', 'treatment': 'nortriptyline 27uM for 48 hours', 'passage': 'passage 7-8'}, 'GSM2079613': {'type': 'adult HSC myofibroblasts', 'treatment': 'ethanol vehicle for 48 hours', 'passage': 'passage 7-8'}, 'GSM2079614': {'type': 'adult HSC myofibroblasts', 'treatment': 'ethanol vehicle for 48 hours', 'passage': 'passage 7-8'}, 'GSM2079615': {'type': 'adult HSC myofibroblasts', 'treatment': 'serum starved for 48 hours before receiving TGF-beta (2.5ng/ml) and nortriptyline (27 uM) for 16 hours', 'passage': 'passage 7-8'}, 'GSM2079616': {'type': 'adult HSC myofibroblasts', 'treatment': 'serum starved for 48 hours before receiving TGF-beta (2.5ng/ml) and nortriptyline (27 uM) for 16 hours', 'passage': 'passage 7-8'}, 'GSM2079617': {'type': 'adult HSC myofibroblasts', 'treatment': 'serum starved for 48 hours before receiving TGF-beta (2.5ng/ml) ethanol vehicle for 16 hours', 'passage': 'passage 7-8'}, 'GSM2284029': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM1965079': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2862460': {'death': 'Aortic aneurysm', 'gender': 'Male', 'age': '67', 'delay': '9:00 hours', 'tissue': 'Circle of Willis', 'antibody': 'H3K27ac (Abcam, ab4729)', 'id': 'CoW4'}, 'GSM2275101': {'area_under_the_curve': '1.2040125', 'siteandparticipantcode': '371894', 'baseline_area_under_the_curve': '0.960365469', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '125.3702407', 'auc_percent_of_baseline': '125.3702407', 'trunkbarcode': '905661', 'sampleID': 'S12638', 'flowcellid': 'D27JJACXX', 'status': 'R', 'samplelabel': 'lib1518', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_371894', 'gender': 'Male', 'age': '15', 'race': 'Other', 'libraryid': 'lib1518', 'studysiteshort': 'PNRI'}, 'GSM1965078': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2284021': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284020': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284023': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284022': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284025': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284024': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284027': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284026': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM1614073': {'line': 'H1-ESC', 'treatment': 'without antibody treatment'}, 'GSM1614074': {'line': 'H1-ESC', 'treatment': 'supernatant (m6A negative) fraction of m6A-LAIC-seq'}, 'GSM1614075': {'line': 'H1-ESC', 'treatment': 'eluate (m6A positive) fraction of m6A-LAIC-seq'}, 'GSM1614076': {'line': 'H1-ESC', 'treatment': 'without antibody treatment'}, 'GSM1614077': {'line': 'H1-ESC', 'treatment': 'supernatant (m6A negative) fraction of m6A-LAIC-seq'}, 'GSM1614078': {'line': 'H1-ESC', 'treatment': 'eluate (m6A positive) fraction of m6A-LAIC-seq'}, 'GSM1614079': {'line': 'GM12878', 'treatment': 'without antibody treatment'}, 'GSM1006514': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-prednisolon', 'subject': 'A4'}, 'GSM1006515': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-prednisolon', 'subject': 'A5'}, 'GSM2453557': {'tissue': 'H1-EC1'}, 'GSM2453556': {'tissue': 'Pericytes'}, 'GSM2453555': {'tissue': 'HUVEC1'}, 'GSM2453554': {'tissue': 'H1-EC1'}, 'GSM2453553': {'tissue': 'H1-EC1'}, 'GSM2453552': {'tissue': 'H1-EC1-PC'}, 'GSM2453551': {'tissue': 'H1-EC1-PC'}, 'GSM2453550': {'tissue': 'H1-EC1-PC'}, 'GSM2453559': {'tissue': 'H1-EC2'}, 'GSM2453558': {'tissue': 'H1-EC2'}, 'GSM1965077': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965076': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2175969': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175968': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175961': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175960': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175963': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175962': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175965': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175964': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175967': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175966': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1919357': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919356': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919359': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919358': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM2258207': {'group': 'AKT1/TRAF7', 'grade': '1', 'gender': 'F', 'age': '43', 'tissue': 'meningioma', 'histology': 'meningothelial', 'radiated': 'N'}, 'GSM2141661': {'individual': 'EU258', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141660': {'individual': 'EU254', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141663': {'individual': 'EU258', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141662': {'individual': 'EU258', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141665': {'individual': 'EU260', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141664': {'individual': 'EU260', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141667': {'individual': 'EU262', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141666': {'individual': 'EU260', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141669': {'individual': 'EU262', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141668': {'individual': 'EU262', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2287670': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2041707': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 28, 16 days of culture in EpiLC media'}, 'GSM2041706': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 27, 16 days of culture in EpiLC media'}, 'GSM2069480': {'date': '26.03.15', 'with': 'none', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069481': {'date': '26.03.15', 'with': '100nM Tamoxifen', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069482': {'date': '26.03.15', 'with': 'none', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069483': {'date': '26.03.15', 'with': '100nM Tamoxifen', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2158379': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158378': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1611553': {'to': '12 rpm (micro-gravity condition)', 'line': 'TK6', 'type': 'human lymphoblastoid cells', 'variation': 'heterozygous at the thymidine kinase (TK) locus'}, 'GSM1611554': {'to': '12 rpm (micro-gravity condition)', 'line': 'TK6', 'type': 'human lymphoblastoid cells', 'variation': 'heterozygous at the thymidine kinase (TK) locus'}, 'GSM1611555': {'to': 'static (control)', 'line': 'TK6', 'type': 'human lymphoblastoid cells', 'variation': 'heterozygous at the thymidine kinase (TK) locus'}, 'GSM1611556': {'to': 'static (control)', 'line': 'TK6', 'type': 'human lymphoblastoid cells', 'variation': 'heterozygous at the thymidine kinase (TK) locus'}, 'GSM2158371': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158370': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158373': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158372': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM1507941': {'line': 'WM1366', 'type': 'Melanoma cell line', 'mutation': 'NRAS'}, 'GSM1507940': {'line': 'BLM', 'type': 'Melanoma cell line', 'mutation': 'NRAS'}, 'GSM2158377': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1507942': {'line': 'mel90.07', 'type': 'Melanoma cell line', 'mutation': 'NRAS'}, 'GSM1309261': {'line': 'H1', 'type': 'live'}, 'GSM1309262': {'line': 'H1', 'type': 'processed (MARIS)'}, 'GSM2565331': {'construction': 'PLATE-Seq', 'drug': 'Perifosine (KRX-0401)'}, 'GSM2348434': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348437': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2696573': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2565332': {'construction': 'PLATE-Seq', 'drug': 'Prinomastat hydrochloride'}, 'GSM2226825': {'information': 'Control - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM2565334': {'construction': 'PLATE-Seq', 'drug': 'Sofrastaurin'}, 'GSM1916424': {'type': 'EBV-immortalized LCL'}, 'GSM2348433': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1969337': {'metastasis': 'No', 'fusion': 'No', 'type': 'Pleomorphic rhabdomyosarcoma', 'localization': 'Lower limb'}, 'GSM2348432': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM898973': {'cells': 'hESC H9 line - derived RPE', 'resistance': '150 ± 20 ohm*cm^2'}, 'GSM898972': {'cells': 'hESC H9 line - derived RPE', 'resistance': '115 ± 10 ohm*cm^2'}, 'GSM898971': {'cells': 'hESC H9 line - derived RPE', 'resistance': '160 ± 10 ohm*cm^2'}, 'GSM898970': {'cells': 'hESC H1 line - derived RPE', 'resistance': '220 ± 35 ohm*cm^2'}, 'GSM2226829': {'information': 'Control - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM2305325': {'subtype': 'RUNX2 DOX inducible model', 'type': 'MCF7', 'condition': 'Full Medium + Doxycycline'}, 'GSM2212729': {'gender': 'male', 'condition': 'control'}, 'GSM2877953': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2241569': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2226828': {'information': 'Control - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2212725': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212724': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212727': {'gender': 'female', 'condition': 'control'}, 'GSM2212726': {'gender': 'female', 'condition': 'control'}, 'GSM2212721': {'gender': 'female', 'condition': 'control'}, 'GSM2212720': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2212723': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2241560': {'batch': 'B', 'condition': 'Trisomic'}, 'GSM2305320': {'subtype': 'Pleural Effusion', 'type': 'Patient', 'condition': 'N/A'}, 'GSM1969331': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Upper limb'}, 'GSM2877952': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2443378': {'gender': 'male', 'age': '34', 'type': 'O'}, 'GSM2443379': {'gender': 'male', 'age': '53', 'type': 'A'}, 'GSM2443376': {'gender': 'male', 'age': '50', 'type': 'A'}, 'GSM1916428': {'type': 'LCL-reprogrammed iPSC'}, 'GSM2443374': {'gender': 'male', 'age': '54', 'type': 'O'}, 'GSM2443375': {'gender': 'female', 'age': '63', 'type': 'B'}, 'GSM2443372': {'gender': 'male', 'age': '26', 'type': 'O'}, 'GSM2443373': {'gender': 'female', 'age': '62', 'type': 'B'}, 'GSM2443370': {'gender': 'male', 'age': '66', 'type': 'O'}, 'GSM1916429': {'type': 'LCL-reprogrammed iPSC'}, 'GSM1969338': {'metastasis': 'Yes', 'fusion': 'Yes', 'type': 'Pleomorphic rhabdomyosarcoma', 'localization': 'Lower limb'}, 'GSM2305329': {'subtype': 'RUNX2 DOX inducible model', 'type': 'MCF7', 'condition': 'Full Medium'}, 'GSM2303534': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2420665': {'line': 'HEK293T'}, 'GSM3586926': {'origin': 'UNCLASSIFIED', 'pfstt': '792', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '798', 'cycles': '6', 'oscs': '0'}, 'GSM3586927': {'origin': 'GCB', 'pfstt': '576', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '774', 'cycles': '6', 'oscs': '0'}, 'GSM3586924': {'origin': 'ABC', 'pfstt': '114', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '114', 'cycles': '8', 'oscs': '1'}, 'GSM3586925': {'origin': 'GCB', 'pfstt': '9', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '9', 'cycles': '8', 'oscs': '1'}, 'GSM3586922': {'origin': 'GCB', 'pfstt': '953', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '953', 'cycles': '6', 'oscs': '0'}, 'GSM3586923': {'origin': 'ABC', 'pfstt': '925', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1089', 'cycles': '6', 'oscs': '0'}, 'GSM3586920': {'origin': 'GCB', 'pfstt': '1433', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1444', 'cycles': '6', 'oscs': '0'}, 'GSM3586921': {'origin': 'GCB', 'pfstt': '1310', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1317', 'cycles': '6', 'oscs': '0'}, 'GSM3586928': {'origin': 'ABC', 'pfstt': '1215', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1215', 'cycles': '8', 'oscs': '0'}, 'GSM3586929': {'pfstt': '691', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '768', 'cycles': '6', 'oscs': '0'}, 'GSM2680472': {'line': 'colorectal cancer cell line HCT116', 'time': '3.5 hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680473': {'line': 'colorectal cancer cell line HCT116', 'time': '3.5 hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680470': {'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '3.5 hr'}, 'GSM2680471': {'line': 'colorectal cancer cell line HCT116', 'time': '3.5 hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2406942': {'line': 'A549', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406943': {'line': 'A549', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406940': {'line': 'A549', 'type': 'SV40 large T antigen immortalized'}, 'GSM2303532': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM1916411': {'type': 'LCL-reprogrammed iPSC'}, 'GSM1969342': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM1969341': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1969340': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Trunk wall'}, 'GSM1916415': {'type': 'LCL-reprogrammed iPSC'}, 'GSM1916414': {'type': 'LCL-reprogrammed iPSC'}, 'GSM1969345': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1916416': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1376262': {'pathology': 'No', 'tissue': 'inferior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376263': {'pathology': 'No', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376260': {'pathology': 'No', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1969348': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM1376266': {'pathology': 'No', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376267': {'pathology': 'No', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376264': {'pathology': 'No', 'tissue': 'inferior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1376265': {'pathology': 'No', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1621379': {'line': 'HeLa-S3', 'tissue': 'cervix', 'gene': 'LATS2 kinase-dead'}, 'GSM1621378': {'line': 'HeLa-S3', 'tissue': 'cervix', 'gene': 'LATS2 wild-type'}, 'GSM1963041': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM1621377': {'line': 'HeLa-S3', 'tissue': 'cervix', 'gene': 'empty vector'}, 'GSM2303538': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM3190774': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.17766'}, 'GSM3190775': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.273287'}, 'GSM3190776': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.117957'}, 'GSM3190777': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.690014'}, 'GSM3190770': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A58', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.256617'}, 'GSM3190771': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A21', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.074226'}, 'GSM3190772': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A21', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.081902'}, 'GSM3190773': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.99471'}, 'GSM2332610': {'type': 'rhabdomyosarcoma', 'treatment': '+Doxycycline', 'number': '14'}, 'GSM2332611': {'type': 'rhabdomyosarcoma', 'treatment': '-Doxycycline', 'number': '16'}, 'GSM2332612': {'type': 'rhabdomyosarcoma', 'treatment': '+Doxycycline', 'number': '16'}, 'GSM3190778': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.201415'}, 'GSM3190779': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.031596'}, 'GSM2172326': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM1323729': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '8.27', 'reads': '116,678,112', 'tissue': 'prostate', 'u': '112', 'mapped': '28.2%', 'id': 'UTPC160', 'bcr': '1'}, 'GSM1323728': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '6.5', 'reads': '29,595,182', 'tissue': 'prostate', 'u': '125', 'mapped': '60.1%', 'id': 'UTPC147', 'bcr': '1'}, 'GSM1323725': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '13', 'reads': '66,452,532', 'tissue': 'prostate', 'u': '101', 'mapped': '47.8%', 'id': 'UTPC132', 'bcr': '1'}, 'GSM1323724': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Positive', 'pstage': 'pT3B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '25', 'reads': '28,393,284', 'tissue': 'prostate', 'u': '100', 'mapped': '64.4%', 'id': 'UTPC131', 'bcr': '1'}, 'GSM1323727': {'tgleason': '8', 'race': 'W', 'score': '448', 'sms': 'Positive', 'pstage': 'pT3B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '9.7', 'reads': '68,748,780', 'tissue': 'prostate', 'u': '112', 'mapped': '49.8%', 'id': 'UTPC146', 'bcr': '1'}, 'GSM1323726': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '23.9', 'reads': '118,237,400', 'tissue': 'prostate', 'u': '79', 'mapped': '48.8%', 'id': 'UTPC141', 'bcr': '1'}, 'GSM1323721': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '7.2', 'reads': '101,087,258', 'tissue': 'prostate', 'u': '43', 'mapped': '63.6%', 'id': 'UTPC114', 'bcr': '1'}, 'GSM1323720': {'tgleason': '9', 'race': 'NA', 'score': '549', 'sms': 'Positive', 'pstage': 'pT2B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '19.9', 'reads': '37,816,666', 'tissue': 'prostate', 'u': '75', 'mapped': '67.2%', 'id': 'UTPC110', 'bcr': '1'}, 'GSM1323723': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Positive', 'pstage': 'pT3B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '9', 'reads': '135,853,972', 'tissue': 'prostate', 'u': '61', 'mapped': '63.9%', 'id': 'UTPC127', 'bcr': '1'}, 'GSM1323722': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '27', 'reads': '30,127,252', 'tissue': 'prostate', 'u': '49', 'mapped': '69.1%', 'id': 'UTPC116', 'bcr': '1'}, 'GSM2153297': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153296': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153295': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153294': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153293': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153292': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153291': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153290': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2687368': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1', 'passage': '7'}, 'GSM2153299': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153298': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1509302': {'line': 'Hela', 'transfection': 'U2AF35 siRNA'}, 'GSM1980130': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1509306': {'line': 'Hela', 'transfection': 'U2AF65 siRNA and pcDNA3.0'}, 'GSM1509309': {'line': 'Hela', 'transfection': 'U2AF65 siRNA and Flag-U2AF35'}, 'GSM2300455': {'line': 'H838', 'replicate': '2'}, 'GSM2300454': {'line': 'H838', 'replicate': '2'}, 'GSM1513908': {'type': 'Mesenchymal stem cell', 'genotype': 'WT'}, 'GSM1513909': {'type': 'Mesenchymal stem cell', 'genotype': 'WT'}, 'GSM2300451': {'line': 'HCC827', 'replicate': '2'}, 'GSM2300450': {'line': 'HCC827', 'replicate': '1'}, 'GSM1513904': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM1513905': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM1513906': {'type': 'Neural stem cell', 'genotype': 'KO'}, 'GSM1513907': {'type': 'Neural stem cell', 'genotype': 'KO'}, 'GSM1609444': {'line': 'GM19240', 'type': 'polyA RNA'}, 'GSM785379': {'type': 'transitional', 'normal': 'cancer'}, 'GSM2304489': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2862914': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2850552': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850553': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850550': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850551': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850556': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Healthy donor controls'}, 'GSM2850557': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Healthy donor controls'}, 'GSM2850554': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Glioblastoma Multiforme patients'}, 'GSM2850555': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Serum', 'group': 'Healthy donor controls'}, 'GSM2850558': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Serum', 'group': 'Healthy donor controls'}, 'GSM2850559': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Healthy donor controls'}, 'GSM2219016': {'tissue': 'blood', 'type': 'CD4+ naive T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219017': {'tissue': 'blood', 'type': 'CD8+ memory T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219014': {'tissue': 'blood', 'type': 'CD8+ naive T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219015': {'tissue': 'blood', 'type': 'CD4+ memory T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219012': {'tissue': 'blood', 'type': 'CD4+ naive T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219013': {'tissue': 'blood', 'type': 'CD8+ memory T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219010': {'tissue': 'blood', 'type': 'CD8+ naive T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2219011': {'tissue': 'blood', 'type': 'CD4+ memory T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2316888': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2219018': {'tissue': 'blood', 'type': 'CD8+ naive T cells', 'diagnosis': 'paroxysmal nocturnal hemoglobinuria (PNH)'}, 'GSM2113321': {'score': '8.6', 'type': 'Degradation: RIN8.6', 'histology': 'UHR tumor*'}, 'GSM2113320': {'score': '8.4', 'type': 'Degradation: RIN8.4', 'histology': 'UHR tumor*'}, 'GSM636920': {'marker': 'CD24+', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM636921': {'marker': 'CD24+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM758578': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8710,LID8711', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '023WC,024WC', 'spikeinpool': 'NIST14'}, 'GSM758576': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8471,LID8472', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '013C,014C', 'spikeinpool': 'NIST14'}, 'GSM758577': {'description': 'Poly(A)- RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8659,LID8660', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '001WC,002WC', 'spikeinpool': 'NIST14'}, 'GSM758574': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8558', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '006N', 'spikeinpool': 'NIST14'}, 'GSM758575': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID16635,LID16636', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '013WC,014WC', 'spikeinpool': 'NIST14'}, 'GSM758572': {'description': 'Poly(A)- RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8661,LID8662', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '003WC,004WC', 'spikeinpool': 'NIST14'}, 'GSM758573': {'description': 'Poly(A)- RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8663,LID8664', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '005WC,006WC', 'spikeinpool': 'NIST14'}, 'GSM758570': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8536', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '006C', 'spikeinpool': 'NIST14'}, 'GSM758571': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8695', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'karyotype': 'normal', 'biorep': '036WC', 'spikeinpool': 'NIST14'}, 'GSM1964971': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2139079': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #2 knockdown 96 hrs'}, 'GSM2139078': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #1 knockdown 96 hrs'}, 'GSM2139073': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'Scramble knockdown 96 hrs'}, 'GSM2139072': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #2 knockdown 72 hrs'}, 'GSM2139071': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #2 knockdown 72 hrs'}, 'GSM2139070': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #2 knockdown 72 hrs'}, 'GSM2139077': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #1 knockdown 96 hrs'}, 'GSM2139076': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #1 knockdown 96 hrs'}, 'GSM2139075': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'Scramble knockdown 96 hrs'}, 'GSM2139074': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'Scramble knockdown 96 hrs'}, 'GSM2109388': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109389': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109386': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM1373737': {'line': 'BJ (ATCC CRL-2522)', 'barcode': 'ATCACG', 'type': 'foreskin fibroblast cell line', 'transfection': 'scramble siRNA', 'number': '8'}, 'GSM1530732': {'genotype': 'GBA +/N370S', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': \"Parkinson's Disease\"}, 'GSM1530733': {'genotype': 'GBA +/N370S', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': \"Parkinson's Disease\"}, 'GSM1530734': {'genotype': 'GBA +/N370S', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': \"Parkinson's Disease\"}, 'GSM2498250': {'line': 'SW1990', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'positive'}, 'GSM2109380': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM1427141': {'shRNA': 'shEED', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1241159': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1373735': {'line': 'BJ (ATCC CRL-2522)', 'barcode': 'ATCACG', 'type': 'foreskin fibroblast cell line', 'transfection': 'scramble siRNA', 'number': '6'}, 'GSM1241155': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241154': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241157': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241156': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241151': {'line': 'HCT116', 'method': 'NEBNext (ligation)'}, 'GSM1241150': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241153': {'line': 'HCT116', 'method': 'NEBNext (ligation)'}, 'GSM1241152': {'line': 'HCT116', 'method': 'NEBNext (ligation)'}, 'GSM2575929': {'type': 'iN cells co-cultured with glia'}, 'GSM1400916': {'subtype': 'Ribosomal RNA-depleted total RNA', 'line': 'HCT116', 'shRNA': 'GCAAGCTGACCCTGAAGTTCA', 'type': 'human colon cancer cell', 'variation': 'GFP (non-targeting) control'}, 'GSM1400917': {'subtype': 'Ribosomal RNA-depleted total RNA', 'line': 'HCT116', 'shRNA': 'GCAAGCTGACCCTGAAGTTCA', 'type': 'human colon cancer cell', 'variation': 'GFP (non-targeting) control'}, 'GSM1400918': {'subtype': 'Ribosomal RNA-depleted total RNA', 'line': 'HCT116', 'shRNA': 'CTACTACATCCACAGAAACAA', 'type': 'human colon cancer cell', 'variation': 'CDK9 knockdown'}, 'GSM1400919': {'subtype': 'Ribosomal RNA-depleted total RNA', 'line': 'HCT116', 'shRNA': 'TGATTGAGATTTGTCGAACCA', 'type': 'human colon cancer cell', 'variation': 'CDK9 knockdown'}, 'GSM1467808': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1287870': {'transfection': 'control', 'line': 'U343'}, 'GSM1287871': {'transfection': 'miR137', 'line': 'U343'}, 'GSM1287872': {'transfection': 'miR137', 'line': 'U343'}, 'GSM2391027': {'disease': 'Pulmonary Hypertension'}, 'GSM2391020': {'disease': 'Pulmonary Hypertension'}, 'GSM2391021': {'disease': 'Pulmonary Hypertension'}, 'GSM2391022': {'disease': 'Pulmonary Hypertension'}, 'GSM2391023': {'disease': 'Pulmonary Hypertension'}, 'GSM1369952': {'vendor': 'Millipore', 'antibody': 'H3K9me2', 'type': 'MCF10A'}, 'GSM2391028': {'disease': 'Pulmonary Hypertension'}, 'GSM2391029': {'disease': 'Chronic Pancreatitis'}, 'GSM2476162': {'passages': '3-5', 'line': 'papillary thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2476161': {'passages': '3-5', 'line': 'papillary thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2476160': {'passages': '3-5', 'line': 'papillary thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2432138': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM2432139': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM2348732': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2516320': {'status': 'primed', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2464316': {'cell': 'Microglia', 'treatment': 'ZIKV'}, 'GSM2464315': {'cell': 'Microglia', 'treatment': 'none'}, 'GSM2516323': {'status': 'primed', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516324': {'status': 'naïve', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516325': {'status': 'naïve', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516326': {'status': 'naïve', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516327': {'status': 'naïve', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516328': {'status': 'naïve', 'with': 'shPOU5F1 shRNA lentiviruses', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516329': {'status': 'naïve', 'with': 'shPOU5F1 shRNA lentiviruses', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM1481720': {'with': 'empty vector (V0)', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM1694198': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2464319': {'cell': 'BJ', 'treatment': 'none'}, 'GSM2464318': {'cell': 'THP-1', 'treatment': 'ZIKV'}, 'GSM1955722': {'a': '56002', 'cd38': '462', 'cd49f': '251', 'w': '65152', 'h': '56332', 'lin': '-217', 'cd34': '5487', 'cd90': '6291', 'cd7': '496', 'cd10': '504', 'time': '4806', 'cd135': '1830', 'cd45ra': '271'}, 'GSM1955723': {'a': '54991', 'cd38': '697', 'cd49f': '267', 'w': '65850', 'h': '54729', 'lin': '-113', 'cd34': '4522', 'cd90': '365', 'cd7': '314', 'cd10': '129', 'time': '4595', 'cd135': '2777', 'cd45ra': '-69'}, 'GSM1955720': {'a': '53569', 'cd38': '845', 'cd49f': '425', 'w': '66374', 'h': '52892', 'lin': '923', 'cd34': '7323', 'cd90': '988', 'cd7': '-70', 'cd10': '432', 'time': '5222', 'cd135': '2734', 'cd45ra': '392'}, 'GSM1955721': {'a': '45877', 'cd38': '1030', 'cd49f': '601', 'w': '67869', 'h': '44300', 'lin': '196', 'cd34': '7110', 'cd90': '-260', 'cd7': '600', 'cd10': '29224', 'time': '5003', 'cd135': '2260', 'cd45ra': '11069'}, 'GSM1955726': {'a': '54494', 'cd38': '948', 'cd49f': '577', 'w': '65877', 'h': '54212', 'lin': '-276', 'cd34': '5074', 'cd90': '2078', 'cd7': '137', 'cd10': '526', 'time': '7120', 'cd135': '1023', 'cd45ra': '-7'}, 'GSM1955727': {'a': '71552', 'cd38': '375', 'cd49f': '796', 'w': '67774', 'h': '69189', 'lin': '515', 'cd34': '7579', 'cd90': '964', 'cd7': '232', 'cd10': '6950', 'time': '7315', 'cd135': '4200', 'cd45ra': '4066'}, 'GSM1955724': {'a': '59210', 'cd38': '1086', 'cd49f': '471', 'w': '67345', 'h': '57620', 'lin': '600', 'cd34': '5380', 'cd90': '2405', 'cd7': '12', 'cd10': '552', 'time': '4387', 'cd135': '2693', 'cd45ra': '270'}, 'GSM2108038': {'type': 'AML cell line', 'translocation': 'MLL-AF4'}, 'GSM2108037': {'type': 'AML blast cells', 'translocation': 'MLL-AF9'}, 'GSM2108036': {'type': 'AML blast cells', 'translocation': 'MLL-AF9'}, 'GSM2108035': {'type': 'AML blast cells', 'translocation': 'MLL-AF9'}, 'GSM1955729': {'a': '51954', 'cd38': '-463', 'cd49f': '653', 'w': '66939', 'h': '50865', 'lin': '-23', 'cd34': '7490', 'cd90': '2613', 'cd7': '611', 'cd10': '1207', 'time': '7763', 'cd135': '1687', 'cd45ra': '263'}, 'GSM2108033': {'type': 'AML blast cells', 'translocation': 'MLL-AF9'}, 'GSM2840607': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840606': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840605': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840604': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840603': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840602': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840601': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840600': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1946205': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19153', 'for': '60min'}, 'GSM1946204': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19153', 'for': '60min'}, 'GSM1946207': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19159', 'for': '30min'}, 'GSM1946206': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19159', 'for': '30min'}, 'GSM1946201': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19153', 'for': '30min'}, 'GSM1946200': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19153', 'for': '30min'}, 'GSM2840609': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840608': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1957382': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957383': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2898828': {'line': 'NA19190', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1957381': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957386': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957387': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957384': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957385': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2898822': {'line': 'NA19144', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898823': {'line': 'NA19152', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898820': {'line': 'NA19140', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898821': {'line': 'NA19143', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898826': {'line': 'NA19160', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898827': {'line': 'NA19171', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898824': {'line': 'NA19153', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898825': {'line': 'NA19159', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1956033': {'a': '66432', 'cd38': '1145', 'cd49f': '518', 'w': '67206', 'h': '64781', 'lin': '-132', 'cd34': '3949', 'cd90': '2662', 'cd7': '485', 'cd10': '868', 'time': '9867', 'cd135': '2873', 'cd45ra': '272'}, 'GSM1956032': {'a': '58221', 'cd38': '303', 'cd49f': '892', 'w': '66859', 'h': '57069', 'lin': '437', 'cd34': '6760', 'cd90': '1587', 'cd7': '392', 'cd10': '731', 'time': '10060', 'cd135': '4902', 'cd45ra': '221'}, 'GSM1956031': {'a': '50599', 'cd38': '1172', 'cd49f': '306', 'w': '66997', 'h': '49496', 'lin': '19', 'cd34': '7862', 'cd90': '263', 'cd7': '539', 'cd10': '880', 'time': '10291', 'cd135': '3781', 'cd45ra': '125'}, 'GSM1956030': {'a': '62117', 'cd38': '1144', 'cd49f': '310', 'w': '71084', 'h': '57269', 'lin': '301', 'cd34': '5166', 'cd90': '3996', 'cd7': '25', 'cd10': '504', 'time': '10533', 'cd135': '1910', 'cd45ra': '243'}, 'GSM1956037': {'a': '63363', 'cd38': '403', 'cd49f': '151', 'w': '67972', 'h': '61092', 'lin': '-320', 'cd34': '4059', 'cd90': '5597', 'cd7': '193', 'cd10': '463', 'time': '11763', 'cd135': '1382', 'cd45ra': '93'}, 'GSM1956036': {'a': '57875', 'cd38': '609', 'cd49f': '236', 'w': '65088', 'h': '58274', 'lin': '224', 'cd34': '5799', 'cd90': '322', 'cd7': '-41', 'cd10': '833', 'time': '9287', 'cd135': '2085', 'cd45ra': '102'}, 'GSM1956035': {'a': '41630', 'cd38': '521', 'cd49f': '294', 'w': '64792', 'h': '42108', 'lin': '-410', 'cd34': '4671', 'cd90': '235', 'cd7': '86', 'cd10': '473', 'time': '9491', 'cd135': '3567', 'cd45ra': '920'}, 'GSM1956034': {'a': '55572', 'cd38': '338', 'cd49f': '523', 'w': '64901', 'h': '56116', 'lin': '79', 'cd34': '5370', 'cd90': '312', 'cd7': '265', 'cd10': '1635', 'time': '9671', 'cd135': '2332', 'cd45ra': '524'}, 'GSM1521723': {'antibody': 'Abcam,ab8895,659352', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1956039': {'a': '52283', 'cd38': '127', 'cd49f': '626', 'w': '66372', 'h': '51624', 'lin': '-74', 'cd34': '8235', 'cd90': '2263', 'cd7': '586', 'cd10': '24913', 'time': '12155', 'cd135': '5048', 'cd45ra': '9429'}, 'GSM1956038': {'a': '51113', 'cd38': '463', 'cd49f': '559', 'w': '66902', 'h': '50069', 'lin': '937', 'cd34': '5622', 'cd90': '6708', 'cd7': '143', 'cd10': '514', 'time': '11961', 'cd135': '4953', 'cd45ra': '39'}, 'GSM2424950': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1521722': {'antibody': 'Abcam,ab4729,GR52206-1', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2432795': {'source': 'castration-recurrent prostate cancer (CRPC) human prostate cancer LuCaP 35 cell line', 'type': 'xenograft tumors', 'strain': 'SCID mice'}, 'GSM2432791': {'source': 'castration-recurrent prostate cancer (CRPC) human prostate cancer LuCaP 35 cell line', 'type': 'xenograft tumors', 'strain': 'SCID mice'}, 'GSM2432793': {'source': 'castration-recurrent prostate cancer (CRPC) human prostate cancer LuCaP 35 cell line', 'type': 'xenograft tumors', 'strain': 'SCID mice'}, 'GSM1609438': {'line': 'GM19238', 'type': 'polyA RNA'}, 'GSM1609439': {'line': 'GM19239', 'type': 'polyA RNA'}, 'GSM1831907': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'mutant SRSF2 P95H'}, 'GSM1831906': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'mutant SRSF2 P95H'}, 'GSM1831905': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'wild-type SRSF2'}, 'GSM1831904': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'wild-type SRSF2'}, 'GSM1831903': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'wild-type SRSF2'}, 'GSM1831902': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'wild-type SRSF2'}, 'GSM3508669': {'group': 'Active', 'age': '15', 'number': '100', 'Sex': 'M', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM3508668': {'group': 'Active', 'age': '15', 'number': '100', 'Sex': 'M', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508667': {'group': 'Active', 'age': '15', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM3508666': {'group': 'Active', 'age': '15', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508665': {'group': 'Control', 'age': '35', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508664': {'group': 'Control', 'age': '23', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508663': {'group': 'GFD', 'age': '20', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM3508662': {'group': 'GFD', 'age': '20', 'number': '92', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508661': {'group': 'Control', 'age': '17', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM1831908': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'mutant SRSF2 P95H'}, 'GSM1853598': {'line': 'HeLa', 'treatment': '20nM Ctrl siRNA - Dharmacon'}, 'GSM1609435': {'line': 'GM12892', 'type': 'polyA RNA'}, 'GSM2424955': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2362538': {'line': 'HEK293'}, 'GSM2362539': {'line': 'HEK293'}, 'GSM2362530': {'line': 'HEK293'}, 'GSM2362531': {'line': 'HEK293'}, 'GSM2362532': {'line': 'HEK293'}, 'GSM2362533': {'line': 'HEK293'}, 'GSM2362534': {'line': 'HEK293'}, 'GSM2362535': {'line': 'HEK293'}, 'GSM2362536': {'line': 'HEK293'}, 'GSM2362537': {'line': 'HEK293'}, 'GSM1423534': {'line': 'HeLa', 'barcode': 'GATCAGCAG', 'treatment': 'Rrp40 knock down (exosome)'}, 'GSM2424954': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2262429': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': '100nM DHT', 'time': '4h'}, 'GSM2262428': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': '100nM DHT', 'time': '4h'}, 'GSM2225656': {'disease': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2325819': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325816': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325817': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325814': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325815': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325812': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325813': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325810': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325811': {'type': 'Differentiated embryonic stem cell'}, 'GSM2802995': {'line': 'hMSC-TERT4', 'variation': 'siTSHZ1', 'stage': 'D1'}, 'GSM2802994': {'line': 'hMSC-TERT4', 'variation': 'siTSHZ1', 'stage': 'D0'}, 'GSM2802997': {'line': 'hMSC-TERT4', 'variation': 'siTSHZ1', 'stage': 'D7'}, 'GSM2420369': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2802991': {'line': 'hMSC-TERT4', 'variation': 'siMAZ', 'stage': 'D7'}, 'GSM2802990': {'line': 'hMSC-TERT4', 'variation': 'siMAZ', 'stage': 'D1'}, 'GSM2802993': {'line': 'hMSC-TERT4', 'variation': 'siTSHZ1', 'stage': 'D0'}, 'GSM2802992': {'line': 'hMSC-TERT4', 'variation': 'siMAZ', 'stage': 'D7'}, 'GSM2420362': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420363': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420360': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420361': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2802999': {'line': 'hMSC-TERT4', 'variation': 'siSATB1', 'stage': 'D0'}, 'GSM2802998': {'line': 'hMSC-TERT4', 'variation': 'siTSHZ1', 'stage': 'D7'}, 'GSM2420364': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420365': {'tissue': 'melanoma', 'response': 'UNK'}, 'GSM1533418': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '40 min'}, 'GSM1533419': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '80 min'}, 'GSM2225655': {'disease': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM1853596': {'line': 'HeLa', 'treatment': '20nM Ctrl siRNA - Dharmacon'}, 'GSM1415608': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '0 h'}, 'GSM1415609': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '3 h'}, 'GSM1415606': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '0 h'}, 'GSM1415607': {'line': 'MCF-7', 'treatment': 'compound FDI-6', 'time': '0 h'}, 'GSM1533412': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '640 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM1533413': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '1280 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM1533414': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'untreated'}, 'GSM1533415': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '5 min'}, 'GSM1533416': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '10 min'}, 'GSM1533417': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '20 min'}, 'GSM2131628': {'line': 'HEK293T'}, 'GSM2131629': {'line': 'HEK293T'}, 'GSM2131626': {'line': 'HEK293T'}, 'GSM2131627': {'line': 'HEK293T'}, 'GSM2131625': {'line': 'HEK293T'}, 'GSM1861973': {'group': 'Control'}, 'GSM1861972': {'group': 'Control'}, 'GSM1861971': {'group': 'Control'}, 'GSM1861970': {'group': 'Control'}, 'GSM1861977': {'group': 'RIS'}, 'GSM1861976': {'group': 'RIS'}, 'GSM1861975': {'group': 'RIS'}, 'GSM1861974': {'group': 'RIS'}, 'GSM1861979': {'group': 'RIS'}, 'GSM1861978': {'group': 'RIS'}, 'GSM1423531': {'line': 'HeLa', 'barcode': 'GATCAGCAG', 'treatment': 'Mtr4 knock down (exosome)'}, 'GSM1888815': {'activated': 'TRUE', 'activation': '1', 'type': 'Naive', 'id': '5131', 'batch': '2'}, 'GSM1888814': {'activated': 'TRUE', 'activation': '1', 'type': 'Naive', 'id': '5053', 'batch': '2'}, 'GSM1888817': {'activated': 'TRUE', 'activation': '5', 'type': 'Naive', 'id': '4659', 'batch': '1'}, 'GSM1888816': {'activated': 'TRUE', 'activation': '1', 'type': 'Naive', 'id': '5291', 'batch': '2'}, 'GSM1888811': {'activated': 'FALSE', 'activation': '0', 'type': 'Naive', 'id': '5131', 'batch': '1'}, 'GSM1888810': {'activated': 'FALSE', 'activation': '0', 'type': 'Naive', 'id': '5053', 'batch': '1'}, 'GSM1888813': {'activated': 'TRUE', 'activation': '1', 'type': 'Naive', 'id': '4659', 'batch': '2'}, 'GSM1888812': {'activated': 'FALSE', 'activation': '0', 'type': 'Naive', 'id': '5291', 'batch': '1'}, 'GSM1888819': {'activated': 'TRUE', 'activation': '5', 'type': 'Naive', 'id': '5131', 'batch': '1'}, 'GSM1888818': {'activated': 'TRUE', 'activation': '5', 'type': 'Naive', 'id': '5053', 'batch': '1'}, 'GSM2108329': {'stages': 'myoblast'}, 'GSM1423533': {'line': 'HeLa', 'barcode': 'ATGCAGCAG', 'treatment': 'Rrp40 knock down (exosome)'}, 'GSM2563639': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2391855': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391854': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2391857': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391856': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391851': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2195095': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2391853': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2391852': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2195094': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2391859': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391858': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2225650': {'disease': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM1009650': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '12h', 'antibody': 'ETS1', 'manufactuer': 'Santa Cruz'}, 'GSM1009651': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h'}, 'GSM1009652': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h'}, 'GSM1009653': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM1009654': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM3189453': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B97', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.619319', 'percentaligned': '0.940824403', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.914439', 'original': 'Control'}, 'GSM3189452': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.542308', 'percentaligned': '0.960004109', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.070119', 'original': 'Case'}, 'GSM3189451': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.562302', 'percentaligned': '0.956643775', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.427723', 'original': 'Control'}, 'GSM3189450': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '89', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.649783', 'percentaligned': '0.906691982', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.914138', 'original': 'Case'}, 'GSM3189457': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.709658', 'percentaligned': '0.957063468', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.005968', 'original': 'Control'}, 'GSM3189456': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.636328', 'percentaligned': '0.954258987', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.111217'}, 'GSM3189455': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A11', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.667956', 'percentaligned': '0.958308343', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.320188', 'original': 'Case'}, 'GSM2304496': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM3189459': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.839603', 'percentaligned': '0.895874507', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.483526'}, 'GSM3189458': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.652705', 'percentaligned': '0.949096203', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.087807', 'original': 'Control'}, 'GSM2304490': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2592210': {'line': '585A1', 'type': 'iMeLC'}, 'GSM2592211': {'line': '585A1', 'type': 'iMeLC'}, 'GSM2803243': {'line': 'HeyA8', 'tissue': 'Ovary', 'genotype': 'WT', 'infection': 'Treated cells with 1nM siCGA/UCG for 2 days'}, 'GSM2679955': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2632309': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632308': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632305': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632304': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632307': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632306': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632301': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632300': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632303': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632302': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM3177193': {'responder': 'NO', 'global': '16', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '18', 'cdai': '264.8'}, 'GSM3177192': {'responder': 'NO', 'global': '9', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '18', 'cdai': '232'}, 'GSM3177191': {'responder': 'NO', 'global': '14', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '18', 'cdai': '267.7'}, 'GSM3177190': {'responder': 'YES', 'global': '0', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '16', 'cdai': '54'}, 'GSM3177197': {'responder': 'NO', 'global': '32', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '21', 'cdai': '204.98'}, 'GSM3177196': {'responder': 'NO', 'global': '21', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '19', 'cdai': '382'}, 'GSM3177195': {'responder': 'NO', 'global': '21', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '19', 'cdai': '390'}, 'GSM3177194': {'responder': 'NO', 'global': '22', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '19', 'cdai': '450'}, 'GSM1603232': {'transgene': 'GFP', 'line': 'Jurkat', 'type': 'T Cells'}, 'GSM1603233': {'transgene': 'GFP', 'line': 'Jurkat', 'type': 'T Cells'}, 'GSM3177199': {'responder': 'YES', 'global': '0', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w106', 'id': '22', 'cdai': '33.5'}, 'GSM3177198': {'responder': 'YES', 'global': '20', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '22', 'cdai': '278.66'}, 'GSM1841070': {'tissue': 'Peripheral Blood', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(-)', 'diagnosis': 'Healthy control'}, 'GSM1841071': {'tissue': 'Peripheral Blood', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(+)', 'diagnosis': 'Healthy control'}, 'GSM1841072': {'tissue': 'Peripheral Blood', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(-)', 'diagnosis': 'Healthy control'}, 'GSM1841073': {'tissue': 'Peripheral Blood', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(+)', 'diagnosis': 'Healthy control'}, 'GSM1841074': {'tissue': 'Peripheral Blood', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(-)', 'diagnosis': 'Healthy control'}, 'GSM1841075': {'tissue': 'Peripheral Blood', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(+)', 'diagnosis': 'Healthy control'}, 'GSM1841076': {'tissue': 'Synovial Fluid', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(-)', 'diagnosis': 'JIA patient'}, 'GSM1841077': {'tissue': 'Synovial Fluid', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(+)', 'diagnosis': 'JIA patient'}, 'GSM1841078': {'tissue': 'Synovial Fluid', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(-)', 'diagnosis': 'JIA patient'}, 'GSM1841079': {'tissue': 'Synovial Fluid', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(+)', 'diagnosis': 'JIA patient'}, 'GSM2107359': {'line': 'Be(2)-C', 'type': 'neuroblastoma'}, 'GSM2803241': {'line': 'HeyA8', 'tissue': 'Ovary', 'genotype': 'WT', 'infection': 'Treated cells with 1nM siCAG/CUG for 2 days'}, 'GSM2047648': {'well': 'C11', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047649': {'well': 'C12', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047642': {'well': 'C05', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047643': {'well': 'C06', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047640': {'well': 'C03', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047641': {'well': 'C04', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047646': {'well': 'C09', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047647': {'well': 'C10', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047644': {'well': 'C07', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047645': {'well': 'C08', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2597190': {'variataion': 'YY1-mutated (p.Asp380Tyr)', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '1', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597191': {'variataion': 'YY1 hemizygous deletion', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '1', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597192': {'variataion': 'YY1-mutated (p.Leu366Pro)', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '1', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597193': {'variataion': 'YY1-mutated (p.Lys179*)', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '1', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597194': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM3594689': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2597196': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597197': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597198': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2787552': {'type': 'DM1'}, 'GSM2787551': {'type': 'DM1'}, 'GSM2787550': {'type': 'DM1'}, 'GSM3594680': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2787556': {'type': 'Non-DM1'}, 'GSM2787555': {'type': 'Non-DM1'}, 'GSM3594683': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2026221': {'m': 'express hnRNP M but not Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM2026223': {'m': 'express hnRNP M but not Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM2630198': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630199': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2679951': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2630192': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405843'}, 'GSM2026225': {'m': 'express hnRNP M and Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM2630190': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405841'}, 'GSM2630191': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405842'}, 'GSM2630196': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630197': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630194': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405845'}, 'GSM2026224': {'m': 'express hnRNP M and Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM2549768': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'labeled RNA (eluate)', 'barcode': 'CTTGTAA', 'infection': 'Infected 4h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2026227': {'m': 'do not express hnRNP M and Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM2356352': {'ab': 'CD74 (C-16; Santa Cruz Biotechnology)', 'level': 'Binet A', 'age': '57', 'sex': 'Female', 'diagnosis': 'CLL', 'time': '2h', 'type': 'B cells'}, 'GSM2026226': {'m': 'express hnRNP M and Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM2679950': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM1256458': {'line': 'MDA', 'type': 'breast cancer cells', 'variation': 'OVOL2_overexpressed'}, 'GSM1256459': {'line': 'MDA', 'type': 'breast cancer cells', 'variation': 'OVOL1_and_OVOL2_overexpressed'}, 'GSM2559638': {'line': 'CWR-22Rv1', 'treatment': 'SGRM - CORT108335 at 6 hours'}, 'GSM2559637': {'line': 'CWR-22Rv1', 'treatment': 'SGRM - CORT108335 at 2 hours'}, 'GSM2559636': {'line': 'CWR-22Rv1', 'treatment': 'SGRM - CORT108297 at 6 hours'}, 'GSM1256456': {'line': 'MDA', 'type': 'breast cancer cells', 'variation': 'OVOL1_overexpressed'}, 'GSM1256457': {'line': 'MDA', 'type': 'breast cancer cells', 'variation': 'OVOL2_overexpressed'}, 'GSM2559633': {'line': 'CWR-22Rv1', 'treatment': 'Dexamethasone (MP Biomedicals) at 2 hours'}, 'GSM2559632': {'line': 'CWR-22Rv1', 'treatment': 'Enzalutamide (Selleck Chemicals or Medivation)'}, 'GSM2559631': {'line': 'CWR-22Rv1', 'treatment': 'R1881 (Sigma-Aldrich)'}, 'GSM1256453': {'line': 'MDA', 'type': 'breast cancer cells', 'variation': 'Control'}, 'GSM1619668': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human cerebral aneurysm tissue', 'id': 'KB20'}, 'GSM1619669': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human cerebral aneurysm tissue', 'id': 'KB3'}, 'GSM2356359': {'ab': 'CD74 (C-16; Santa Cruz Biotechnology)', 'level': 'Binet B', 'age': '81', 'sex': 'Male', 'diagnosis': 'CLL', 'time': '8h', 'type': 'B cells'}, 'GSM2333011': {'origin': 'breast (tumor)', 'subtype': 'IDC (HER2+)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333010': {'origin': 'breast (tumor)', 'subtype': 'IDC (HER2+)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333013': {'origin': 'breast (tumor)', 'subtype': 'IDC (TN)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2356358': {'ab': 'CD74 (C-16; Santa Cruz Biotechnology)', 'level': 'Binet A', 'age': '57', 'sex': 'Female', 'diagnosis': 'CLL', 'time': '8h', 'type': 'B cells'}, 'GSM2333015': {'origin': 'breast (tumor)', 'subtype': 'IDC (TN)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2348562': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2333017': {'origin': 'breast (tumor)', 'subtype': 'IDC (HER2+)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333016': {'origin': 'breast (tumor)', 'subtype': 'IDC (TN)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333019': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Parous'}, 'GSM2333018': {'origin': 'breast (tumor)', 'subtype': 'IDC (TN)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM1567945': {'weeks': '20.6'}, 'GSM1567944': {'weeks': '20.3'}, 'GSM1567943': {'weeks': '20'}, 'GSM1567942': {'weeks': '18'}, 'GSM1567941': {'weeks': '16.4'}, 'GSM2348568': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM3189416': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '24', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.586646', 'percentaligned': '0.931546707', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.492242'}, 'GSM1297637': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 5'}, 'GSM1297636': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 5'}, 'GSM2616499': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM1297634': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 3'}, 'GSM1297633': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 3'}, 'GSM1297632': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 2'}, 'GSM1297631': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 2'}, 'GSM1297630': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 2'}, 'GSM2616493': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2616492': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616491': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616490': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616497': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616496': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2480403': {'type': 'cell culture', 'tissue': 'Melanocytes', 'patient': 'C032'}, 'GSM2616494': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM1844550': {'gender': 'Female', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844551': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844552': {'gender': 'Female', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844553': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844554': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844555': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844556': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844557': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844558': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1844559': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM2068670': {'line': 'MCF7', 'with': '10nM E2 for 8hr', 'passage': 'p10'}, 'GSM2068671': {'line': 'MCF7', 'with': '10nM E2 for 12hr', 'passage': 'p10'}, 'GSM2068672': {'line': 'MCF7', 'with': '10nM E2 for 24hr', 'passage': 'p10'}, 'GSM2416846': {'antibody': 'None', 'line': 'HeLa', 'type': 'nascent RNA labeled with 4sU 2hr ribo- RNA', 'treatment': '3 hr DRB 2hr 4sU-labeling', 'sequence': 'None'}, 'GSM2416847': {'antibody': 'None', 'line': 'HeLa', 'type': 'nascent RNA labeled with 4sU 2hr ribo- RNA', 'treatment': '6hr poly (I:C) 3 hr DRB 2hr 4sU-labeling', 'sequence': 'None'}, 'GSM1048961': {'line': 'HCT-116', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1048960': {'line': 'HCT-116', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1048962': {'line': 'HCT-116', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1557623': {'line': 'TSU-1621-MT', 'vendor': 'Santa Cruz', 'target': 'SPI1/PU.1'}, 'GSM2416845': {'antibody': 'None', 'line': 'HeLa', 'type': 'nascent RNA labeled with 4sU 2hr ribo- RNA', 'treatment': '3 hr DRB 2hr 4sU-labeling', 'sequence': 'None'}, 'GSM2170788': {'stage': 'iPSC line'}, 'GSM2170789': {'stage': 'iPSC line'}, 'GSM2170786': {'stage': 'iPSC line'}, 'GSM2170787': {'stage': 'iPSC line'}, 'GSM2170784': {'stage': 'iPSC line'}, 'GSM2170785': {'stage': 'iPSC line'}, 'GSM2170782': {'stage': 'iPSC line'}, 'GSM2170783': {'stage': 'iPSC line'}, 'GSM2170780': {'stage': 'iPSC line'}, 'GSM2170781': {'stage': 'iPSC line'}, 'GSM2416840': {'antibody': 'None', 'line': 'HeLa', 'type': 'steady-state ribo-/poly(A)- RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM2416841': {'antibody': 'None', 'line': 'HeLa', 'type': 'steady-state ribo-/poly(A)- RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM2171433': {'type': 'RNAseq', 'treatment': 'shBRD4'}, 'GSM2171432': {'type': 'RNAseq', 'treatment': 'BRD4.WT'}, 'GSM2171431': {'type': 'RNAseq', 'treatment': 'JQ1'}, 'GSM2171430': {'type': 'RNAseq', 'treatment': 'DMSO'}, 'GSM1366919': {'with': '2µM GSKJ4 for 72hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366918': {'with': '2µM GSKJ4 for 72hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366915': {'with': '2µM GSKJ4 for 48hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366914': {'with': '2µM GSKJ4 for 24hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366917': {'with': '2µM GSKJ4 for 48hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366916': {'with': '2µM GSKJ4 for 48hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366913': {'with': '2µM GSKJ4 for 24hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366912': {'with': '2µM GSKJ4 for 24hr', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1306496': {'line': 'HEK293', 'purification': 'oligo(dT) beads'}, 'GSM1306495': {'line': 'MCF7', 'purification': 'oligo(dT) beads'}, 'GSM2111097': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 9', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM1982262': {'antibody': 'No', 'line': 'H1299', 'type': 'RNA-seq'}, 'GSM1113357': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 1 post-vaccine'}, 'GSM1982260': {'antibody': 'No', 'line': 'A549', 'type': 'RNA-seq'}, 'GSM2385667': {'line': 'VM', 'type': 'glioblastoma stem cell'}, 'GSM2536089': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10685', 'samplename': '1_T1D2-REDRAW _C04', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34785', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10685', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C04'}, 'GSM2111092': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 8', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111091': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 8', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111090': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 8', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2536088': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10684', 'samplename': '1_T1D2-REDRAW _C47', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34784', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10684', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C47'}, 'GSM922168': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922169': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922166': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922167': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922164': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922165': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922162': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922163': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922160': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922161': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM1620398': {'type': 'U87 human glioma cells'}, 'GSM1825449': {'line': 'MCF-7', 'tissue': 'breast', 'sirna': 'LIN28'}, 'GSM1825448': {'line': 'MCF-7', 'tissue': 'breast', 'sirna': 'non Targeting Control (NT)'}, 'GSM1825447': {'line': 'MCF-7', 'tissue': 'breast', 'sirna': 'non Targeting Control (NT)'}, 'GSM2050868': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2172077': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2219004': {'tissue': 'blood', 'type': 'CD4+ naive T cells', 'diagnosis': 'healthy'}, 'GSM2141368': {'individual': 'EU60', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141369': {'individual': 'EU60', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1648885': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'COVE_3_1', 'biopsy': 'n/a', 'years': '2.43', 'volume': '1225', 'type': 'iPSCs', 'id': 'COVE'}, 'GSM2141360': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141361': {'individual': 'EU54', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141362': {'individual': 'EU54', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141363': {'individual': 'EU54', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141364': {'individual': 'EU58', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141365': {'individual': 'EU58', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141366': {'individual': 'EU58', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141367': {'individual': 'EU60', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2589418': {'point': '14 days post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589419': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589416': {'point': '2hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589417': {'point': '24hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589414': {'point': '14 days post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2219002': {'tissue': 'blood', 'type': 'CD8+ naive T cells', 'diagnosis': 'healthy'}, 'GSM2589412': {'point': '2hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589413': {'point': '24hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589410': {'point': '14 days post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589411': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM1498838': {'cytogenetics': '46 XY', 'gender': 'male', 'age': '78', 'leukemia': 'CMML-2', 'mutation': 'mutant', 'decitabine': 'responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498832': {'cytogenetics': '46XY', 'gender': 'male', 'age': '73', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498833': {'cytogenetics': '46xy 2/10 46xy t(3;14),t(11;20)8/10', 'gender': 'male', 'age': '67', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498830': {'cytogenetics': '46XY', 'gender': 'male', 'age': '64', 'leukemia': 'CMML-2', 'mutation': 'mutant', 'decitabine': 'non-responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498831': {'cytogenetics': '46,XY', 'gender': 'male', 'age': '70', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'non-responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498836': {'cytogenetics': 'non methaphasis', 'gender': 'male', 'age': '78', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498837': {'cytogenetics': '5q-,+8', 'gender': 'male', 'age': '53', 'leukemia': 'CMML-1', 'mutation': 'wild type', 'decitabine': 'responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498834': {'cytogenetics': '46,XX[21]', 'gender': 'female', 'age': '65', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'non-responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1498835': {'cytogenetics': '46,XX', 'gender': 'female', 'age': '76', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM2311798': {'culture': '0'}, 'GSM2311799': {'culture': '0'}, 'GSM2311796': {'culture': '0'}, 'GSM2311797': {'culture': '0'}, 'GSM2311794': {'culture': '0'}, 'GSM2311795': {'culture': '0'}, 'GSM2311792': {'culture': '0'}, 'GSM2311793': {'culture': '0'}, 'GSM2311790': {'culture': '0'}, 'GSM2311791': {'culture': '0'}, 'GSM2194388': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194389': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2468943': {'with': '500 nM BI00923802', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2194380': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194381': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194382': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194383': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194384': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194385': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194386': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194387': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1848802': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 9', 'point': 'pre exercise'}, 'GSM1479553': {'index': '16', 'diagnosis': '--', 'cellcount': '10237500', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '56', 'collectiondate': 'August 24 2012', 'samplename': '56_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'MS posttreatment'}, 'GSM2468945': {'with': '500 nM BI00923812', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2050869': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2305832': {'tissue': 'colon'}, 'GSM2305833': {'tissue': 'colon'}, 'GSM2305830': {'tissue': 'colon'}, 'GSM2305831': {'tissue': 'colon'}, 'GSM2305836': {'tissue': 'colon'}, 'GSM2305837': {'tissue': 'colon'}, 'GSM2305834': {'tissue': 'colon'}, 'GSM2305835': {'tissue': 'colon'}, 'GSM2305838': {'tissue': 'colon'}, 'GSM2305839': {'tissue': 'colon'}, 'GSM1695738': {'type': 'colonospheres', 'line': 'HT-29', 'growth': 'suspension; serum-free medium', 'tissue': 'colon carcinoma'}, 'GSM1383738': {'donor': 'A2735', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383739': {'donor': 'A2736', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1115083': {'line': 'BJ cells', 'condition': 'Control sample'}, 'GSM2536080': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10673', 'samplename': '1_T1D2-REDRAW _C06', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34773', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10673', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C06'}, 'GSM1249902': {'chirp': 'accttgagagcttgtttggagg', 'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siJMJD6-2'}, 'GSM1980254': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980255': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980256': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2416966': {'modification': 'DXO-KO', 'line': 'HEK293T', 'enrichment': 'NAD-Capture'}, 'GSM1980250': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980251': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2416963': {'modification': 'Wt', 'line': 'HEK293T', 'enrichment': 'NAD-Capture'}, 'GSM1980253': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980258': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980259': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1585224': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM2430228': {'with': 'JQ1 treated (500 nM)', 'tissue': 'skin squamous cell carcinoma', 'type': 'primary cancer associated fibroblasts', 'passage': '5'}, 'GSM2430229': {'with': 'JQ1 treated (500 nM)', 'tissue': 'skin squamous cell carcinoma', 'type': 'primary cancer associated fibroblasts', 'passage': '5'}, 'GSM2430226': {'with': 'DMSO vehicle', 'tissue': 'skin squamous cell carcinoma', 'type': 'primary cancer associated fibroblasts', 'passage': '5'}, 'GSM2430227': {'with': 'DMSO vehicle', 'tissue': 'skin squamous cell carcinoma', 'type': 'primary cancer associated fibroblasts', 'passage': '5'}, 'GSM2430224': {'with': 'si-ATF3_number2', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM2430225': {'with': 'DMSO vehicle', 'tissue': 'skin squamous cell carcinoma', 'type': 'primary cancer associated fibroblasts', 'passage': '5'}, 'GSM2430222': {'with': 'si-ctrl', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM2430223': {'with': 'si-ATF3_number1', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM2430220': {'with': 'si-ATF3_number1', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM2430221': {'with': 'si-ATF3_number2', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM2197630': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM1585228': {'type': 'Ribosomal profiling', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM1506115': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000367896)', 'batch': '2'}, 'GSM1506114': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000367896)', 'batch': '2'}, 'GSM1506117': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000360108)', 'batch': '1'}, 'GSM1506116': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000360108)', 'batch': '1'}, 'GSM1506111': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000016510)', 'batch': '1'}, 'GSM1506110': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000016510)', 'batch': '1'}, 'GSM1506113': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000360109)', 'batch': '1'}, 'GSM1506112': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000360109)', 'batch': '1'}, 'GSM1506119': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000360108)', 'batch': '2'}, 'GSM1506118': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000360108)', 'batch': '2'}, 'GSM2175118': {'antibody': 'N/A', 'treatment': 'none', 'passage': '58-60'}, 'GSM2194651': {'type': 'pp', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1513209': {'gender': 'Female', 'line': 'GM18861', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2385594': {'line': '131', 'type': 'glioblastoma stem cell'}, 'GSM1513207': {'gender': 'Male', 'line': 'GM18856', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513206': {'gender': 'Female', 'line': 'GM18855', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513205': {'gender': 'Male', 'line': 'GM18853', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513204': {'gender': 'Female', 'line': 'GM18852', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513203': {'gender': 'Female', 'line': 'GM18523', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513202': {'gender': 'Male', 'line': 'GM18522', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513201': {'gender': 'Female', 'line': 'GM18520', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513200': {'gender': 'Male', 'line': 'GM18519', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1848804': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 11', 'point': '3 hours after exercise'}, 'GSM1436337': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM1436339': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM1436338': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM1848805': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 11', 'point': 'pre exercise'}, 'GSM2153312': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153313': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153310': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153311': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153316': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153317': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153314': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153315': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153318': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153319': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2195009': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2255526': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'untreated'}, 'GSM2255527': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'IR'}, 'GSM2255524': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'IR'}, 'GSM2255525': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'Nutlin-3'}, 'GSM2255522': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'Nutlin-3'}, 'GSM2255523': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'untreated'}, 'GSM2255520': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'untreated'}, 'GSM2255521': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'IR'}, 'GSM2255528': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'Nutlin-3'}, 'GSM2255529': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'untreated'}, 'GSM2300550': {'type': 'CL1-5', 'variation': 'S100A7A shRNA (knockdown)'}, 'GSM2316818': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316819': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM1661528': {'line': 'MCF10A', 'phenotype': '8p LOH'}, 'GSM1661529': {'line': 'MCF10A', 'phenotype': '8p LOH'}, 'GSM1661522': {'line': 'A375'}, 'GSM1661523': {'line': 'A375'}, 'GSM1661520': {'line': 'A375'}, 'GSM1661521': {'line': 'A375'}, 'GSM1661524': {'line': 'A375'}, 'GSM1661525': {'line': 'A375'}, 'GSM2350184': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350185': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350186': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350187': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350180': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350181': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350182': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350183': {'rna': '100 pg', 'used': 'aRNA'}, 'GSM2350188': {'rna': '100 pg', 'used': 'C1 SMARTer'}, 'GSM2350189': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2316810': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'r': {'code': '200'}, 'GSM2316811': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM1183342': {'start': '15 minutes after washout', 'stranded': 'TRUE', 'type': 'Cockayne syndrome group B fibroblasts', 'treatment': 'CPT exposure', 'time': '15 minutes'}, 'GSM1183341': {'start': 'Immediately after washout', 'stranded': 'TRUE', 'type': 'Cockayne syndrome group B fibroblasts', 'treatment': 'CPT exposure', 'time': '15 minutes'}, 'GSM1183340': {'start': '15 minutes prior to washout', 'stranded': 'TRUE', 'type': 'Cockayne syndrome group B fibroblasts', 'treatment': 'CPT exposure', 'time': '15 minutes'}, 'GSM2476822': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476823': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476820': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476821': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476826': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476827': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2172258': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172259': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172256': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172257': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172254': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172255': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172252': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2172253': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172250': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172251': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2316816': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316817': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM1955889': {'a': '48296', 'cd38': '76', 'cd49f': '727', 'w': '67453', 'h': '46924', 'lin': '669', 'cd34': '9096', 'cd90': '1112', 'cd7': '10', 'cd10': '625', 'time': '21144', 'cd135': '2226', 'cd45ra': '177'}, 'GSM1925959': {'type': 'PBMC derived macrophage (HMDM)'}, 'GSM1955883': {'a': '60496', 'cd38': '-200', 'cd49f': '1080', 'w': '66857', 'h': '59301', 'lin': '257', 'cd34': '6721', 'cd90': '1430', 'cd7': '353', 'cd10': '773', 'time': '22435', 'cd135': '2509', 'cd45ra': '179'}, 'GSM1955882': {'a': '51669', 'cd38': '451', 'cd49f': '636', 'w': '65867', 'h': '51409', 'lin': '490', 'cd34': '8240', 'cd90': '2591', 'cd7': '391', 'cd10': '640', 'time': '22625', 'cd135': '4611', 'cd45ra': '338'}, 'GSM1955881': {'a': '57094', 'cd38': '748', 'cd49f': '348', 'w': '66797', 'h': '56016', 'lin': '1182', 'cd34': '4930', 'cd90': '573', 'cd7': '25', 'cd10': '477', 'time': '22834', 'cd135': '167', 'cd45ra': '167'}, 'GSM1955880': {'a': '66162', 'cd38': '573', 'cd49f': '379', 'w': '67233', 'h': '64492', 'lin': '623', 'cd34': '9026', 'cd90': '1849', 'cd7': '439', 'cd10': '645', 'time': '20290', 'cd135': '10212', 'cd45ra': '1056'}, 'GSM1955887': {'a': '71589', 'cd38': '1136', 'cd49f': '377', 'w': '67160', 'h': '69858', 'lin': '-27', 'cd34': '5089', 'cd90': '684', 'cd7': '-218', 'cd10': '963', 'time': '21554', 'cd135': '2779', 'cd45ra': '721'}, 'GSM1955886': {'a': '62402', 'cd38': '579', 'cd49f': '4', 'w': '66423', 'h': '61569', 'lin': '-149', 'cd34': '8490', 'cd90': '138', 'cd7': '213', 'cd10': '538', 'time': '21802', 'cd135': '1506', 'cd45ra': '37'}, 'GSM1955885': {'a': '61518', 'cd38': '856', 'cd49f': '287', 'w': '69856', 'h': '57714', 'lin': '429', 'cd34': '3768', 'cd90': '1517', 'cd7': '119', 'cd10': '595', 'time': '22029', 'cd135': '3699', 'cd45ra': '352'}, 'GSM1955884': {'a': '48862', 'cd38': '136', 'cd49f': '559', 'w': '67227', 'h': '47633', 'lin': '501', 'cd34': '13483', 'cd90': '7833', 'cd7': '555', 'cd10': '528', 'time': '22241', 'cd135': '1987', 'cd45ra': '107'}, 'GSM2109395': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109394': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM1536440': {'type': 'global long', 'treatment': 'retinoic acid'}, 'GSM1536441': {'type': 'global small', 'treatment': 'ETOH'}, 'GSM1536442': {'type': 'global small', 'treatment': 'retinoic acid'}, 'GSM2109397': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109396': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2777330': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM2777331': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM2777332': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM2777333': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM2777334': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM2109390': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM1957489': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957488': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957485': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957484': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1354842': {'donor': 'donor No.1', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1957486': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957481': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957480': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957483': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957482': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1632597': {'stimulation': 'TLR2 stimulated'}, 'GSM2039408': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM1632595': {'stimulation': 'TLR2 stimulated'}, 'GSM1632594': {'stimulation': 'TLR2 stimulated'}, 'GSM2039401': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM2039400': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM2039403': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM2039402': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM2039405': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM2039404': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM1632599': {'stimulation': 'TLR2 stimulated'}, 'GSM1632598': {'stimulation': 'TLR2 stimulated'}, 'GSM2026935': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q99676'}, 'GSM2026934': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9Y473'}, 'GSM2026937': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9UL59'}, 'GSM2026936': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'O14771'}, 'GSM2026931': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q8N141'}, 'GSM2026930': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8N141'}, 'GSM2026933': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P17020'}, 'GSM2026932': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P52741'}, 'GSM2360627': {'sirna': 'Negative control siRNA (12935-112, Thermo Fisher Scientific)', 'line': 'MDA-231-D', 'type': 'basal type breast cancer cell line', 'treatment': 'no'}, 'GSM2026939': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P15622'}, 'GSM2026938': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9NZL3'}, 'GSM2782553': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'Activin'}, 'GSM1213444': {'line': 'HCT116', 'treatment': 'irradiation', 'time': '4 h'}, 'GSM1213445': {'line': 'HCT116', 'treatment': 'irradiation', 'time': '24 h'}, 'GSM1213446': {'line': 'HCT116 p53-/-', 'treatment': 'control', 'time': '0 h'}, 'GSM1213447': {'line': 'HCT116 p53-/-', 'treatment': 'irradiation', 'time': '4 h'}, 'GSM1213440': {'line': 'MCF10A', 'treatment': 'control', 'time': '0 h'}, 'GSM1213441': {'line': 'MCF10A', 'treatment': 'irradiation', 'time': '4 h'}, 'GSM1213442': {'line': 'MCF10A', 'treatment': 'irradiation', 'time': '24 h'}, 'GSM1213443': {'line': 'HCT116', 'treatment': 'control', 'time': '0 h'}, 'GSM1213448': {'line': 'HCT116 p53-/-', 'treatment': 'irradiation', 'time': '24 h'}, 'GSM1820136': {'stimulation': 'none', 'line': 'BEAS-2B', 'treatment': 'miR-26 antagomir'}, 'GSM2251307': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1820137': {'stimulation': 'TNFa, 6 hours', 'line': 'BEAS-2B', 'treatment': 'miR-26 antagomir'}, 'GSM1957229': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957228': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2437171': {'status': 'GDM', 'id': 'GD10'}, 'GSM2437170': {'status': 'NGT', 'id': 'GD9'}, 'GSM2437177': {'status': 'GDM', 'id': 'GD16'}, 'GSM2437176': {'status': 'NGT', 'id': 'GD15'}, 'GSM2437175': {'status': 'GDM', 'id': 'GD14'}, 'GSM2437174': {'status': 'NGT', 'id': 'GD13'}, 'GSM1957221': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957220': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957223': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957222': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957225': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957224': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957227': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957226': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM2391183': {'disease': 'NSCLC'}, 'GSM2391182': {'disease': 'NSCLC'}, 'GSM2391181': {'disease': 'NSCLC'}, 'GSM2391180': {'disease': 'NSCLC'}, 'GSM2391187': {'disease': 'NSCLC'}, 'GSM2391186': {'disease': 'NSCLC'}, 'GSM2391185': {'disease': 'NSCLC'}, 'GSM981249': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID45016,LID45017', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '045WC,046WC', 'spikeinpool': 'Nist14'}, 'GSM2391189': {'disease': 'NSCLC'}, 'GSM2391188': {'disease': 'NSCLC'}, 'GSM2251305': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1634335': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'DNMT3B knock-down', 'passage': '3'}, 'GSM1634334': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'DNMT3A knock-down', 'passage': '3'}, 'GSM1634337': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'DNMT3B knock-down', 'passage': '3'}, 'GSM1634336': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'DNMT3B knock-down', 'passage': '3'}, 'GSM1634331': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'control', 'passage': '3'}, 'GSM1634330': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'control', 'passage': '3'}, 'GSM1634333': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'DNMT3A knock-down', 'passage': '3'}, 'GSM1634332': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'DNMT3A knock-down', 'passage': '3'}, 'GSM2098710': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2802935': {'line': 'hMSC-TERT4', 'stage': '4h'}, 'GSM2802934': {'line': 'hMSC-TERT4', 'stage': '4h'}, 'GSM1866978': {'line': 'HCT116', 'antibody': 'H3K27Ac, Active Motif #39133, lot# 21311004', 'clone': 'E7 Deletion Clone'}, 'GSM1866976': {'line': 'HCT116', 'antibody': 'H3K27Ac, Active Motif #39133, lot# 21311004', 'clone': 'E7 Deletion Clone'}, 'GSM2802933': {'line': 'hMSC-TERT4', 'stage': 'D0'}, 'GSM1866974': {'line': 'HCT116', 'antibody': 'H3K27Ac, Active Motif #39133, lot# 21311004', 'clone': 'Control Clone 1'}, 'GSM1866975': {'line': 'HCT116', 'antibody': 'H3K27Ac, Active Motif #39133, lot# 21311004', 'clone': 'Control Clone 1'}, 'GSM1866972': {'line': 'HCT116', 'antibody': 'none, input', 'clone': 'Control Clone 1'}, 'GSM1866973': {'line': 'HCT116', 'antibody': 'none, input', 'clone': 'Control Clone 1'}, 'GSM2802932': {'line': 'hMSC-TERT4', 'stage': 'D0'}, 'GSM2802931': {'line': 'hMSC-TERT4', 'stage': 'D0'}, 'GSM2638015': {'with': 'IL-2 and IL-7', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM981245': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID46859,LID46860', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '089N,090N', 'spikeinpool': 'Nist14'}, 'GSM2638014': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2581203': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM1234038': {'replicate': '2', 'line': '18951', 'antibody': 'H3K4me3'}, 'GSM1234039': {'replicate': '1', 'line': '18951', 'antibody': 'Input'}, 'GSM1234036': {'replicate': '2', 'line': '18951', 'antibody': 'H3K4me1'}, 'GSM1234037': {'replicate': '1', 'line': '18951', 'antibody': 'H3K4me3'}, 'GSM1234034': {'replicate': '2', 'line': '18951', 'antibody': 'H3K36me3'}, 'GSM1234035': {'replicate': '1', 'line': '18951', 'antibody': 'H3K4me1'}, 'GSM1234032': {'replicate': '2', 'line': '18951', 'antibody': 'H3K27me3'}, 'GSM1234033': {'replicate': '1', 'line': '18951', 'antibody': 'H3K36me3'}, 'GSM1234030': {'replicate': '2', 'line': '18951', 'antibody': 'H3K27Ac'}, 'GSM1234031': {'replicate': '1', 'line': '18951', 'antibody': 'H3K27me3'}, 'GSM2392615': {'treatment': 'Vehicle', 'genotype': 'D538G'}, 'GSM2638019': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2392612': {'treatment': 'Vehicle', 'genotype': 'Y537S'}, 'GSM2638018': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2392613': {'treatment': 'Vehicle', 'genotype': 'Y537S'}, 'GSM2392610': {'treatment': 'Vehicle', 'genotype': 'Y537S'}, 'GSM2581204': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM1380719': {'status': 'non-failing', 'gender': 'male', 'age': '1', 'failure': 'no', 'tissue': 'heart left ventricle', 'ethnicity': 'White/Caucasian'}, 'GSM1380718': {'status': 'non-failing', 'gender': 'female', 'age': '57', 'failure': 'no', 'tissue': 'heart left ventricle', 'ethnicity': 'White/Caucasian'}, 'GSM2391033': {'disease': 'Epilepsy'}, 'GSM2391032': {'disease': 'Epilepsy'}, 'GSM2391031': {'disease': 'Chronic Pancreatitis'}, 'GSM721701': {'tissue': 'testis'}, 'GSM721700': {'tissue': 'testis'}, 'GSM2391030': {'disease': 'Chronic Pancreatitis'}, 'GSM2391037': {'disease': 'Epilepsy'}, 'GSM2391036': {'disease': 'Epilepsy'}, 'GSM2391035': {'disease': 'Epilepsy'}, 'GSM2391034': {'disease': 'Epilepsy'}, 'GSM1630520': {'clone': 'DD-mut-SF3B1 (2 days)', 'treatment': 'plus Shld'}, 'GSM1630521': {'clone': 'DD-mut-SF3B1 (2 days)', 'treatment': 'minus Shld'}, 'GSM1630522': {'clone': 'DD-wt-SF3B1 (2 days)', 'treatment': 'plus Shld'}, 'GSM1630523': {'clone': 'DD-wt-SF3B1 (2 days)', 'treatment': 'minus Shld'}, 'GSM1342289': {'karyotype': '46,XX,t(1;5)(p34;q22)', 'tissue': 'Lymph node', 'diagnosis': 'Peripheral T-cell lymphoma not otherwise specified (PTCL-NOS)'}, 'GSM1342288': {'karyotype': 'NA', 'tissue': 'Spleen', 'diagnosis': 'normal tissue'}, 'GSM1342287': {'karyotype': '46,XY,add(5)(q?),i(7)(q10),-10[5][cp15]c .aCGH+8', 'tissue': 'culture', 'diagnosis': 'Hepatosplenic T-cell lymphoma (HSTL)'}, 'GSM1342286': {'karyotype': '40-48,XY,+X [3],-5[4],i(7)(q10),+8[5],+10[2],add(11)(q22)[10],inc[cp12].aCGH+8', 'tissue': 'Spleen', 'diagnosis': 'Hepatosplenic T-cell lymphoma (HSTL)'}, 'GSM1342285': {'karyotype': '46-47,XY,add(4)(p16),i(7)(q10),+8[4],-[20],+mar[2][cp6]', 'tissue': 'Spleen', 'diagnosis': 'Hepatosplenic T-cell lymphoma (HSTL)'}, 'GSM1342284': {'karyotype': '45-46,X,-Y,-4,der(7)add(7)(p22)add(7)(q32), i(7)(q10),+i(7)(q10)[2],der(8)t(1;8)(q21; p23),-22,+mar1,+mar2[cp11].aCGH+8', 'tissue': 'Spleen', 'diagnosis': 'Hepatosplenic T-cell lymphoma (HSTL)'}, 'GSM2722170': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'PID 3'}, 'GSM2722171': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'PID 3'}, 'GSM2722172': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'PID 6'}, 'GSM2722173': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'PID 6'}, 'GSM2722174': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'PID 10'}, 'GSM2722175': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'PID 10'}, 'GSM2722176': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'PID 20'}, 'GSM2722177': {'line': 'GM02171', 'type': 'Adult fibroblasts', 'treatment': 'miR-9/9*-124', 'timepoint': 'PID 20'}, 'GSM2883078': {'type': 'primary nasal epithelial cells', 'treatment': '8hr post-stimulation with RIG-I ligand SLR14'}, 'GSM2689039': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689038': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2944189': {'gender': 'Male', 'age': '23', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944188': {'gender': 'Male', 'age': '36', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944187': {'gender': 'Female', 'age': '22', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944186': {'gender': 'Female', 'age': '22', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944185': {'gender': 'Female', 'age': '47', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944184': {'gender': 'Female', 'age': '47', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944183': {'gender': 'Male', 'age': '25', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944182': {'gender': 'Male', 'age': '28', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944181': {'gender': 'Female', 'age': '45', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2944180': {'gender': 'Male', 'age': '33', 'tissue': 'airway epithelium', 'diagnosis': 'Healthy'}, 'GSM2585445': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585444': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585447': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM1700497': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'None'}, 'GSM2585441': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585440': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2281356': {'characteristics': 'mesenchymal, derived from soft agar colonies', 'line': 'colorectal cancer cell line DLD1'}, 'GSM2585442': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585449': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585448': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM1023069': {'type': 'iPS', 'number': '4'}, 'GSM1023068': {'type': 'iPS', 'number': '4'}, 'GSM1023067': {'type': 'fibroblast', 'number': '2'}, 'GSM1023066': {'type': 'iPS', 'number': '10'}, 'GSM1023065': {'type': 'iPS', 'number': '6'}, 'GSM1023064': {'type': 'iPS', 'number': '2'}, 'GSM1023063': {'type': 'fibroblast', 'number': '5'}, 'GSM1023062': {'type': 'iPS', 'number': '6'}, 'GSM1023061': {'type': 'iPS', 'number': '2'}, 'GSM1023060': {'type': 'iPS', 'number': '2'}, 'GSM2295909': {'time': '24 hours', 'line': 'TF-1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM1937038': {'line': 'SH-SY5Y'}, 'GSM900499': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900492': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900493': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900490': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900491': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM1937036': {'line': 'SH-SY5Y'}, 'GSM1937037': {'line': 'SH-SY5Y'}, 'GSM900494': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM1937035': {'line': 'SH-SY5Y'}, 'GSM2165979': {'subtype': 'Chromatin RNA', 'line': 'HeLa cells', 'variation': 'siLUC control for EXOC3 KD, Chromatin'}, 'GSM2165978': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa cells', 'variation': 'EXOC3 KD, Nucleoplasm'}, 'GSM2165977': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa cells', 'variation': 'siLUC control for EXOC3 KD, Nucleoplasm'}, 'GSM2165976': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa cells', 'variation': 'siLuc treated polyA- fraction, Nucleoplasm'}, 'GSM2165975': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa cells', 'variation': 'siLuc treated polyA+ fraction, Nucleoplasm'}, 'GSM2165974': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'DICER1 KD, Ser5 phospho'}, 'GSM2165973': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'siLuc control for DICER1 KD, Ser5 phospho'}, 'GSM2165972': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'DGCR8 KD, Ser5 phospho'}, 'GSM2165971': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'siLuc control for DGCR8 KD, Ser5 phospho'}, 'GSM2165970': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Empigen treated Thr4 phospho'}, 'GSM2752388': {'tnm': 'T2N3aM0', 'subtype': 'B', 'bloom': '3', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752389': {'tnm': 'T1cN0M0', 'subtype': 'A', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2665549': {'differentiation': 'Day4', 'type': 'hESC derived cIN'}, 'GSM2665548': {'differentiation': 'Day0', 'type': 'Human ESC'}, 'GSM2752380': {'tnm': 'T2N2aM0', 'subtype': 'B', 'bloom': '3', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752381': {'tnm': 'T2N1aM0', 'subtype': 'B', 'bloom': '3', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752382': {'tnm': 'T1cN0M0', 'subtype': 'A', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752383': {'tnm': 'T1bN1bM0', 'subtype': 'A', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752384': {'tnm': 'T1cN0M0', 'subtype': 'A', 'bloom': '1', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2665546': {'differentiation': 'Day0', 'type': 'Human ESC'}, 'GSM2752386': {'tnm': 'T2N0M0', 'subtype': 'B', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752387': {'tnm': 'T1cN0M0', 'subtype': 'A', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM1940129': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940126': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM2584718': {'tissue': 'ex vivo derived cells', 'type': 'Mesoderm cells', 'passage': '34+1'}, 'GSM2584719': {'tissue': 'ex vivo derived cells', 'type': 'Ectoderm cells', 'passage': '34+1'}, 'GSM1940127': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM2584712': {'tissue': 'ex vivo derived cells', 'type': 'Pancreatic beta-like cells', 'passage': '30+2+1'}, 'GSM2584713': {'tissue': 'ex vivo derived cells', 'type': 'Pancreatic beta-like cells', 'passage': '30+2+1'}, 'GSM2584710': {'tissue': 'ex vivo derived cells', 'type': 'Myofibroblast', 'passage': '30+4+2'}, 'GSM2584711': {'tissue': 'ex vivo derived cells', 'type': 'Myofibroblast', 'passage': '30+4+2'}, 'GSM2584716': {'tissue': 'ex vivo derived cells', 'type': 'Endoderm cells', 'passage': '34+1'}, 'GSM2584717': {'tissue': 'ex vivo derived cells', 'type': 'Mesoderm cells', 'passage': '34+1'}, 'GSM2584714': {'tissue': 'ex vivo derived cells', 'type': 'Pancreatic beta-like cells', 'passage': '30+2+1'}, 'GSM2584715': {'tissue': 'ex vivo derived cells', 'type': 'Endoderm cells', 'passage': '34+1'}, 'GSM1971014': {'line': 'HCT116', 'type': 'colon cancer cells', 'agent': 'Control'}, 'GSM2093167': {'bin': '16', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1482958': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '3T1'}, 'GSM1482959': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '3T2'}, 'GSM1046848': {'individual': 'donor_2', 'group': 'control', 'treatment': 'rpmi'}, 'GSM1046849': {'individual': 'donor_2', 'group': 'control', 'treatment': 'candida'}, 'GSM1482952': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '27T1'}, 'GSM1482953': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '27T2'}, 'GSM1046846': {'individual': 'donor_1', 'group': 'control', 'treatment': 'rpmi'}, 'GSM1046847': {'individual': 'donor_1', 'group': 'control', 'treatment': 'candida'}, 'GSM1482956': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '2T1'}, 'GSM1482957': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '2T2'}, 'GSM1482954': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '28T1'}, 'GSM1482955': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '28T2'}, 'GSM2048498': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048499': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048496': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048497': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048494': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048495': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048492': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048493': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048490': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048491': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1607104': {'gender': 'F', 'age': '59', 'tissue': 'non-lesional skin'}, 'GSM1607105': {'gender': 'F', 'age': '50', 'tissue': 'lesional skin'}, 'GSM1607106': {'gender': 'F', 'age': '50', 'tissue': 'non-lesional skin'}, 'GSM1607107': {'gender': 'M', 'age': '61', 'tissue': 'lesional skin'}, 'GSM1607100': {'gender': 'F', 'age': '49', 'tissue': 'non-lesional skin'}, 'GSM1607101': {'gender': 'M', 'age': '48', 'tissue': 'lesional skin'}, 'GSM1607102': {'gender': 'M', 'age': '48', 'tissue': 'non-lesional skin'}, 'GSM1607103': {'gender': 'F', 'age': '59', 'tissue': 'lesional skin'}, 'GSM1607108': {'gender': 'M', 'age': '61', 'tissue': 'non-lesional skin'}, 'GSM1607109': {'gender': 'F', 'age': '67', 'tissue': 'lesional skin'}, 'GSM2440278': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'DMSO for 96 hours'}, 'GSM2440279': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'DMSO for 96 hours'}, 'GSM1443817': {'antibody': 'None (input)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443818': {'antibody': 'None (input)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1643999': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b+ICI'}, 'GSM1643998': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+ICI'}, 'GSM1643993': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2 for 30m'}, 'GSM1643992': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2 for 30m'}, 'GSM1643991': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643990': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643997': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa for 30m'}, 'GSM1643996': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa for 30m'}, 'GSM1643995': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b for 30m'}, 'GSM1643994': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b for 30m'}, 'GSM1612428': {'line': 'HEK293', 'transfection': 'ADARB1 short isoform'}, 'GSM1612421': {'line': 'HEK293', 'transfection': 'Control (empty vector)'}, 'GSM1612420': {'line': 'HEK293', 'transfection': 'Control (empty vector)'}, 'GSM1612423': {'line': 'HEK293', 'transfection': 'ADARB1 long isoform'}, 'GSM1612422': {'line': 'HEK293', 'transfection': 'Control (empty vector)'}, 'GSM1612425': {'line': 'HEK293', 'transfection': 'ADARB1 long isoform'}, 'GSM1612424': {'line': 'HEK293', 'transfection': 'ADARB1 long isoform'}, 'GSM1612427': {'line': 'HEK293', 'transfection': 'ADARB1 short isoform'}, 'GSM1612426': {'line': 'HEK293', 'transfection': 'ADARB1 short isoform'}, 'GSM2325795': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325794': {'type': 'Differentiated embryonic stem cell'}, 'GSM1683283': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683282': {'type': 'U87 human glioma cells'}, 'GSM1683281': {'type': 'U87 human glioma cells'}, 'GSM1683280': {'type': 'U87 human glioma cells'}, 'GSM1683287': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1185149': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '6 hours'}, 'GSM1683285': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683284': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683289': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1185148': {'with': 'Sulforaphane (SFN)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '24 hours'}, 'GSM3580322': {'phase': 'Immune Control', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580323': {'phase': 'Immune Control', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580320': {'phase': 'Immune Active', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580321': {'phase': 'Immune Active', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580326': {'phase': 'Immune Control', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580327': {'phase': 'Immune Control', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580324': {'phase': 'Immune Control', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM1185146': {'with': 'Sulforaphane (SFN)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '24 hours'}, 'GSM2190621': {'subtype': 'total RNA, after library preparation size selected for RNAs 20-200 nt', 'line': 'HEK293', 'variation': 'producing WT DIS3L2'}, 'GSM2190620': {'subtype': 'total RNA, after library preparation size selected for RNAs 20-200 nt', 'line': 'HEK293', 'variation': 'producing WT DIS3L2'}, 'GSM1665186': {'gender': 'male', 'age': '23 weeks', 'feeding': 'UNK', 'assistance': 'UNK'}, 'GSM2277144': {'line': 'LNCaP/AR', 'day': '9'}, 'GSM2277145': {'line': 'LNCaP/AR', 'day': '9'}, 'GSM2277146': {'line': 'LNCaP/AR', 'day': '32'}, 'GSM2277147': {'line': 'LNCaP/AR', 'day': '32'}, 'GSM2277140': {'status': 'wildtype', 'line': 'LNCaP'}, 'GSM2277141': {'status': 'wildtype', 'line': 'LNCaP'}, 'GSM2277142': {'line': 'LNCaP/AR', 'day': '9'}, 'GSM2277143': {'line': 'LNCaP/AR', 'day': '9'}, 'GSM2124754': {'rin': '5.7', 'Sex': 'female'}, 'GSM2124755': {'rin': '2.5', 'Sex': 'female'}, 'GSM2124756': {'rin': '3', 'Sex': 'male'}, 'GSM2124757': {'rin': '2.1', 'Sex': 'female'}, 'GSM2124750': {'rin': '2.1', 'Sex': 'female'}, 'GSM2124751': {'rin': '2.2', 'Sex': 'female'}, 'GSM2124752': {'rin': '2.7', 'Sex': 'male'}, 'GSM2124753': {'rin': '5', 'Sex': 'female'}, 'GSM1946234': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '30min'}, 'GSM1665183': {'gender': 'female', 'age': '19.3 weeks', 'feeding': 'UNK', 'assistance': 'UNK'}, 'GSM2124758': {'rin': '2.3', 'Sex': 'male'}, 'GSM2170628': {'stage': 'Hepatic endoderm 1'}, 'GSM1946235': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '30min'}, 'GSM1965358': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965359': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2093537': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM1965350': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965351': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965352': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2093536': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM1965354': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965355': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965356': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965357': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2805903': {'genotype': 'BCOR-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2093539': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2805901': {'genotype': 'BCOR-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805900': {'genotype': 'BCOR-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': '1micro/ml Doxycyclin', 'type': 'H1 hESC'}, 'GSM2805906': {'genotype': 'BCOR-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805905': {'genotype': 'BCOR-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2093538': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2590784': {'tissue': 'bone marrow', 'type': 'Metamyelocyte CD34-CD11b+CD16med', 'markers': 'CD15+ CD33+ CD34- CD11b+ CD16med'}, 'GSM2590785': {'tissue': 'bone marrow', 'type': 'CD34+CD33+ myeloid precursor', 'markers': 'CD15- CD33+ CD34+ CD11b- CD16- CD13+'}, 'GSM2590786': {'tissue': 'bone marrow', 'type': 'Myelocyte CD34-CD11b+CD16-', 'markers': 'CD15+ CD33+ CD34- CD11b+ CD16- CD13-'}, 'GSM2590787': {'tissue': 'bone marrow', 'type': 'Promyelocyte CD34-CD11b-CD16-', 'markers': 'CD15+ CD33+ CD34- CD11b- CD16-'}, 'GSM2590780': {'tissue': 'bone marrow', 'type': 'Early Pre-B precursor CD34+CD10+CD19+', 'markers': 'CD34+ CD10+ CD19+'}, 'GSM2590781': {'tissue': 'bone marrow', 'type': 'Pre-B-Precursor CD34-CD10+CD19+', 'markers': 'CD34- CD10+ CD19+'}, 'GSM2590782': {'tissue': 'bone marrow', 'type': 'Promyelocyte CD34-CD11b-CD16-', 'markers': 'CD15+ CD33+ CD34- CD11b- CD16-'}, 'GSM2590783': {'tissue': 'bone marrow', 'type': 'Band-segmented_granulocytes CD34-CD11b+CD16+', 'markers': 'CD15+ CD33+ CD34- CD11b+ CD16+++ CD13+'}, 'GSM1717111': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '18'}, 'GSM1717110': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '18'}, 'GSM1717112': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '18'}, 'GSM2616516': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM1872977': {'10': 'Non-remitter', 'name': 'HF-35634', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM2616514': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616515': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616512': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616513': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616510': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616511': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM1872975': {'10': 'Remitter', 'name': 'HF-35420', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM2616518': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM2616519': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM1872974': {'10': 'Non-remitter', 'name': 'HF-37197', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872973': {'10': 'Non-remitter', 'name': 'HF-35119', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872972': {'10': 'Remitter', 'name': 'HF-37228', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872971': {'10': 'Non-remitter', 'name': 'HF-35397', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872970': {'10': 'Non-remitter', 'name': 'HF-37205', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2898831': {'line': 'NA19204', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2862139': {'line': 'HEK293', 'variation': 'WT'}, 'GSM2862138': {'line': 'HEK293', 'variation': 'CDH23 triple AAV'}, 'GSM1164650': {'line': 'HepG2', 'with': 'siRNA against ADAR1 (ADAR knock down)'}, 'GSM1164651': {'line': 'K562', 'with': 'scrambled siRNA (control)'}, 'GSM2862135': {'line': 'HEK293', 'variation': 'WT'}, 'GSM2862134': {'line': 'HEK293', 'variation': 'WT'}, 'GSM2862137': {'line': 'HEK293', 'variation': 'CDH23 triple AAV'}, 'GSM2862136': {'line': 'HEK293', 'variation': 'CDH23 triple AAV'}, 'GSM2862131': {'line': 'HEK293', 'variation': 'Alms1 triple AAV'}, 'GSM2862130': {'line': 'HEK293', 'variation': 'Alms1 triple AAV'}, 'GSM2862133': {'line': 'HEK293', 'variation': 'WT'}, 'GSM2862132': {'line': 'HEK293', 'variation': 'Alms1 triple AAV'}, 'GSM1480809': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1446338': {'type': 'SV-40 transformed primary human fetal epididymis cells'}, 'GSM1446339': {'type': 'SV-40 transformed primary human fetal epididymis cells'}, 'GSM2091154': {'type': 'Akata cells'}, 'GSM2091151': {'type': 'Akata cells'}, 'GSM2091150': {'type': 'Akata cells'}, 'GSM2091153': {'type': 'Akata cells'}, 'GSM2091152': {'type': 'Akata cells'}, 'GSM2316555': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316554': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316557': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316556': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316551': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316550': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316553': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316552': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316559': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2231181': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM1366898': {'with': 'retroviruses expressing short haiprin against UTX', 'line': 'CEM', 'type': 'human T cell leukemia cells'}, 'GSM1366899': {'with': 'retroviruses expressing short haiprin against RENILLA', 'line': 'CEM', 'type': 'human T cell leukemia cells'}, 'GSM1366890': {'with': 'retroviruses expressing short haiprin against UTX', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366891': {'with': 'retroviruses expressing short haiprin against UTX', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM999531': {'input': '1000 ng', 'line': 'K-562', 'type': 'CML', 'state': 'fragmented'}, 'GSM999530': {'input': '1000 ng', 'line': 'K-562', 'type': 'CML', 'state': 'fragmented'}, 'GSM999537': {'input': '1 ng', 'line': 'K-562', 'type': 'CML', 'state': 'fragmented'}, 'GSM999536': {'input': '1 ng', 'line': 'K-562', 'type': 'CML', 'state': 'intact'}, 'GSM999535': {'input': '1 ng', 'line': 'K-562', 'type': 'CML', 'state': 'intact'}, 'GSM999534': {'input': '1000 ng', 'line': 'K-562', 'type': 'CML', 'state': 'fragmented'}, 'GSM1479565': {'index': '25', 'diagnosis': '--', 'cellcount': '1708523', 'samplename': '58_NK', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '58', 'collectiondate': 'September 12 2012', 'celltype': 'NK', 'diseasestatus': 'ALS'}, 'GSM1479564': {'index': '20', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '58_CD8T', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '58', 'collectiondate': 'September 12 2012', 'celltype': 'CD8', 'diseasestatus': 'ALS'}, 'GSM1479566': {'index': '10', 'diagnosis': '--', 'cellcount': '--', 'samplename': '58_Tempus', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '58', 'collectiondate': 'September 12 2012', 'celltype': 'Whole Blood', 'diseasestatus': 'ALS'}, 'GSM1479561': {'index': '8', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '58_Monocytes', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '58', 'collectiondate': 'September 12 2012', 'celltype': 'Monocytes', 'diseasestatus': 'ALS'}, 'GSM1479560': {'index': '12', 'diagnosis': '--', 'cellcount': '12375000', 'samplename': '58_Neutrophils', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '58', 'collectiondate': 'September 12 2012', 'celltype': 'Neutrophils', 'diseasestatus': 'ALS'}, 'GSM1479563': {'index': '5', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '58_CD4T', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '58', 'collectiondate': 'September 12 2012', 'celltype': 'CD4', 'diseasestatus': 'ALS'}, 'GSM1479562': {'index': '11', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '58_Bcells', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '58', 'collectiondate': 'September 12 2012', 'celltype': 'B-cells', 'diseasestatus': 'ALS'}, 'GSM2632491': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632490': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632493': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632492': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632495': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632494': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632497': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632496': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1956049': {'a': '55652', 'cd38': '1045', 'cd49f': '745', 'w': '67241', 'h': '54241', 'lin': '567', 'cd34': '13278', 'cd90': '5779', 'cd7': '332', 'cd10': '806', 'time': '16637', 'cd135': '1305', 'cd45ra': '133'}, 'GSM2548622': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 10 uM IPA-3'}, 'GSM1395393': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 vorinostat', 'timepoint': '4hr'}, 'GSM2242866': {'line': 'A375', 'replicate': '4'}, 'GSM1395392': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 DMSO', 'timepoint': '8hr'}, 'GSM1831602': {'line': 'SMMC-7721', 'passages': 'P3', 'type': 'liver cancer'}, 'GSM2242864': {'line': 'A375', 'replicate': '4'}, 'GSM2287558': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287559': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287554': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1831604': {'line': 'SMMC-7721', 'passages': 'P3', 'type': 'liver cancer'}, 'GSM2287556': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287557': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287550': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287551': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287552': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287553': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610914': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610915': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610916': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610917': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610910': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610911': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610912': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610913': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM1395395': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 DMSO', 'timepoint': '8hr'}, 'GSM2610918': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610919': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2432783': {'line': 'LNCap-C4-2', 'type': 'human prostate cancer cell line'}, 'GSM1395394': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 vorinostat', 'timepoint': '8hr'}, 'GSM3190711': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'Yes', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.367245'}, 'GSM2492513': {'status': 'Positive', 'tissue': 'lung', 'type': 'CD4'}, 'GSM2432787': {'source': 'androgen-dependent (AD) human prostate cancer LuCaP 35 cell line', 'type': 'xenograft tumors', 'strain': 'SCID mice'}, 'GSM2432785': {'source': 'androgen-dependent (AD) human prostate cancer LuCaP 35 cell line', 'type': 'xenograft tumors', 'strain': 'SCID mice'}, 'GSM2644612': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-PolII serum (Wade lab)'}, 'GSM2432789': {'source': 'androgen-dependent (AD) human prostate cancer LuCaP 35 cell line', 'type': 'xenograft tumors', 'strain': 'SCID mice'}, 'GSM1395396': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSDM13 DMSO', 'timepoint': '12hr'}, 'GSM2644613': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-PolII serum (Wade lab)'}, 'GSM2533682': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533683': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533680': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533681': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533686': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533687': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533684': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533685': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533688': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533689': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2086252': {'subtype': 'mitochondrial RNA', 'tissue': 'fibroblasts', 'variation': 'TRMT10C:c.[542G>T];[814A>G]'}, 'GSM2086253': {'subtype': 'mitochondrial RNA', 'tissue': 'fibroblasts', 'variation': 'TRMT10C:c.[542G>T];[542G>T]'}, 'GSM2086250': {'subtype': 'mitochondrial RNA', 'tissue': 'fibroblasts', 'variation': 'wild type'}, 'GSM2086251': {'subtype': 'mitochondrial RNA', 'tissue': 'fibroblasts', 'variation': 'wild type'}, 'GSM2480399': {'type': 'cell culture', 'tissue': 'Fibroblasts', 'patient': 'C025'}, 'GSM2093170': {'bin': '10', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093173': {'bin': '16', 'group': 'case (TB progressor)', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093172': {'bin': '20', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093175': {'bin': '32', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': '14', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2093174': {'bin': '19', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '23', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2093177': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093176': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093179': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093178': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2480393': {'type': 'cell culture', 'tissue': 'Melanocytes', 'patient': 'C002'}, 'GSM2480392': {'type': 'cell culture', 'tissue': 'Fibroblasts', 'patient': 'C026'}, 'GSM2480395': {'type': 'cell culture', 'tissue': 'Melanocytes', 'patient': 'C022'}, 'GSM2480394': {'type': 'cell culture', 'tissue': 'Melanocytes', 'patient': 'C026'}, 'GSM2480397': {'type': 'biopsy material', 'tissue': 'Whole skin', 'patient': 'C011'}, 'GSM2480396': {'type': 'cell culture', 'tissue': 'Keratinocytes', 'patient': 'C024'}, 'GSM1861853': {'subtype': 'memory (CD45RA+) CD4', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM2476789': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476788': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476783': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476782': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476781': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476780': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476787': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476786': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476785': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476784': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM1327339': {'stage': 'embryonic stem cells', 'type': 'H1', 'time': '0 days'}, 'GSM1683269': {'type': 'U87 human glioma cells'}, 'GSM3032603': {'line': 'MKN45', 'type': 'adenocarcinoma, poorly differentiated', 'treatment': 'control'}, 'GSM3032602': {'line': 'MKN45', 'type': 'adenocarcinoma, poorly differentiated', 'treatment': 'Apocynin 100μM treated'}, 'GSM3032601': {'line': 'MKN45', 'type': 'adenocarcinoma, poorly differentiated', 'treatment': 'control'}, 'GSM3032604': {'line': 'MKN45', 'type': 'adenocarcinoma, poorly differentiated', 'treatment': 'Apocynin 100μM treated'}, 'GSM2204739': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2093169': {'bin': '10', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1808043': {'tissue': 'Adipose'}, 'GSM2607533': {'line': 'WA26'}, 'GSM1969343': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM2204738': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1917101': {'transduction': 'cotransduced with pWZL-Hygro and shp65', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM2175064': {'line': 'K562'}, 'GSM2175065': {'line': 'K562'}, 'GSM2175066': {'line': 'K562'}, 'GSM2175067': {'line': 'K562'}, 'GSM2175060': {'line': 'K562'}, 'GSM2175061': {'line': 'K562'}, 'GSM2175062': {'line': 'K562'}, 'GSM2175063': {'line': 'K562'}, 'GSM1808045': {'tissue': 'Adipose'}, 'GSM2175068': {'line': 'K562'}, 'GSM2175069': {'line': 'K562'}, 'GSM1357238': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357239': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357230': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357231': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357232': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357233': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357234': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357235': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357236': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357237': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM3417909': {'protocol': '10%FBS/F12/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '27-34', 'strain': 'mock', 'treatment': 'N/A', 'time': '48', 'type': 'ARPE19'}, 'GSM3417908': {'protocol': '10%FBS/F12/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '27-34', 'strain': 'mock', 'treatment': 'N/A', 'time': '48', 'type': 'ARPE19'}, 'GSM2316968': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316969': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316964': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM3417900': {'protocol': '10%FBS/DMEM', 'number': 'KF297339', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'CMV/TB40', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM2316966': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316967': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316960': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM3417904': {'protocol': '10%FBS/DMEM', 'number': 'FJ527563', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'CMV/AD169', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM2316962': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316963': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1697206': {'number': '54'}, 'GSM1697207': {'number': '45'}, 'GSM1697204': {'number': '16'}, 'GSM1697205': {'number': '88'}, 'GSM1697202': {'number': '58'}, 'GSM1697203': {'number': '84'}, 'GSM2689338': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1697201': {'number': '63'}, 'GSM2689336': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689337': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689334': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689335': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689332': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689333': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689330': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1697209': {'number': '68'}, 'GSM1159904': {'with': '100 nM DHT', 'type': 'LNCaP cells'}, 'GSM1159902': {'with': '100 nM DHT', 'type': 'LNCaP cells'}, 'GSM1159903': {'with': '100 nM DHT', 'type': 'LNCaP cells'}, 'GSM1159900': {'with': 'siPCGEM1', 'type': 'LNCaP cells'}, 'GSM1159901': {'with': 'siPRNCR1', 'type': 'LNCaP cells'}, 'GSM2390809': {'disease': 'Healthy Control'}, 'GSM2589388': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589389': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2350067': {'culture': '4 days', 'line': 'ARPE-19', 'type': 'retinal pigment epithelial (RPE) cell line'}, 'GSM2350066': {'culture': '4 days', 'line': 'ARPE-19', 'type': 'retinal pigment epithelial (RPE) cell line'}, 'GSM2390808': {'disease': 'Healthy Control'}, 'GSM2425035': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425034': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2589380': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2350068': {'culture': '4 days', 'line': 'ARPE-19', 'type': 'retinal pigment epithelial (RPE) cell line'}, 'GSM2589386': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2425030': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425033': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425032': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1969346': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1177209': {'tissue': 'Prostate Tumour', 'point': 'Pre-treament'}, 'GSM1177208': {'tissue': 'Prostate Tumour', 'point': 'Pre-treament'}, 'GSM1603045': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603044': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Harvard'}, 'GSM1603047': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603046': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603041': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Harvard'}, 'GSM1603040': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Harvard'}, 'GSM1603043': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Harvard'}, 'GSM1603042': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Harvard'}, 'GSM2109302': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2047479': {'well': 'E12', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047478': {'well': 'E11', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047475': {'well': 'E08', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047474': {'well': 'E07', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047477': {'well': 'E10', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047476': {'well': 'E09', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047471': {'well': 'E04', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047470': {'well': 'E03', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047473': {'well': 'E06', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047472': {'well': 'E05', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1708023': {'status': 'BWS', 'genotype': 'KvDMR+'}, 'GSM1708022': {'status': 'BWS', 'genotype': 'CDKN1C+'}, 'GSM1708025': {'status': 'healthy', 'type': 'fibroblast', 'genotype': 'wild type'}, 'GSM1708024': {'status': 'BWS', 'genotype': 'KvDMR-'}, 'GSM2543869': {'library_id': 'lib8001', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543868': {'library_id': 'lib8000', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1875329': {'line': 'H2087', 'type': 'established lung cancer cell line', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875328': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM2543861': {'library_id': 'lib7989', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543860': {'library_id': 'lib7988', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543863': {'library_id': 'lib7991', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543862': {'library_id': 'lib7990', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543865': {'library_id': 'lib7995', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543864': {'library_id': 'lib7994', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543867': {'library_id': 'lib7997', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543866': {'library_id': 'lib7996', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2607531': {'line': 'WA26'}, 'GSM2451223': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451222': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451221': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451220': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451226': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451225': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451224': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2467446': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467447': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467448': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM2467449': {'status': 'healthy, proliferative phase', 'passages': '2-4', 'type': 'primary human endometrial cells'}, 'GSM1957309': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1946283': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19257', 'for': '60min'}, 'GSM1946282': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19257', 'for': '30min'}, 'GSM1957302': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957303': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957300': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2840265': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840264': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840267': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM1295104': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '0 hours'}, 'GSM2840261': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840260': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840263': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840262': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2536025': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8483', 'samplename': '1*_T1D#5_C64', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31803', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8483', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C64'}, 'GSM1957306': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2536027': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8485', 'samplename': '1*_T1D#5_C78', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31805', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8485', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C78'}, 'GSM2536026': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8484', 'samplename': '1_T1D#5_C70', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31804', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8484', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C70'}, 'GSM2536021': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8474', 'samplename': '1*_T1D#5_C23', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31794', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8474', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C23'}, 'GSM2536020': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8473', 'samplename': '1*_T1D#5_C05', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31793', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8473', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C05'}, 'GSM2536023': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8476', 'samplename': '1*_T1D#5_C41', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31796', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8476', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C41'}, 'GSM2536022': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8475', 'samplename': '1*_T1D#5_C29', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31795', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8475', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C29'}, 'GSM1295101': {'strain': 'BF', 'tissue': 'normal breast'}, 'GSM1295100': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'none'}, 'GSM2665859': {'age': 'Day 175', 'well': 'A9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665858': {'age': 'Day 175', 'well': 'H9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM1955918': {'a': '60176', 'cd38': '474', 'cd49f': '382', 'w': '64901', 'h': '60764', 'lin': '399', 'cd34': '12880', 'cd90': '3076', 'cd7': '453', 'cd10': '874', 'time': '7183', 'cd135': '5597', 'cd45ra': '350'}, 'GSM2665855': {'age': 'Day 175', 'well': 'H2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665854': {'age': 'Day 175', 'well': 'A7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665857': {'age': 'Day 175', 'well': 'B4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665856': {'age': 'Day 175', 'well': 'B5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665851': {'age': 'Day 175', 'well': 'B11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665850': {'age': 'Day 175', 'well': 'C2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665853': {'age': 'Day 175', 'well': 'H11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665852': {'age': 'Day 175', 'well': 'A4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM1521619': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521618': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521611': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521610': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521613': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521612': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521615': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521614': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521617': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521616': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2671278': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671279': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671270': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671271': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671272': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671273': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671274': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671275': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671276': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671277': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1020215': {'age': 'gestation age 16-18wk', 'type': 'corneal endothelial cells'}, 'GSM1533407': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '20 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM2607537': {'line': 'WA26'}, 'GSM1020216': {'age': 'gestation age 16-18wk', 'type': 'corneal endothelial cells'}, 'GSM1020213': {'age': '56y', 'type': 'corneal endothelial cells'}, 'GSM1533406': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '10 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM1533405': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '5 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM1533404': {'antibody': 'Homemade Anti-Pol II Monoclonal', 'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'untreated'}, 'GSM2088052': {'status': 'Dysplasia', 'ratio': '1.14341137262245', 'age': '60', 'years': '32.5', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '49267684', 'alignment': '30459674'}, 'GSM2088053': {'status': 'Dysplasia', 'ratio': '1.16515602485256', 'age': '67', 'years': '35.5', 'content': '50.51', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '90668722', 'alignment': '56095036'}, 'GSM2374139': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2088051': {'status': 'Normal', 'ratio': '1.24362037665203', 'age': '59', 'years': '42.66', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '63351188', 'alignment': '39266881'}, 'GSM2088056': {'status': 'Normal', 'ratio': '1.13699902042154', 'age': '64', 'years': '31.5', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '56653108', 'alignment': '35022242'}, 'GSM2088057': {'status': 'Dysplasia', 'ratio': '1.70681513724919', 'age': '68', 'years': '69', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '54404310', 'alignment': '33496385'}, 'GSM2088054': {'status': 'Dysplasia', 'ratio': '1.46725054647729', 'age': '64', 'years': '50.6', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '62586924', 'alignment': '38346995'}, 'GSM2088055': {'status': 'Normal', 'ratio': '1.49527866521827', 'age': '67', 'years': '51', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '60317240', 'alignment': '36867039'}, 'GSM2374133': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374132': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2088058': {'status': 'Dysplasia', 'ratio': '1.09829976108716', 'age': '74', 'years': '36.8', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '76050914', 'alignment': '46672686'}, 'GSM2088059': {'status': 'Dysplasia', 'ratio': '1.15379541776734', 'age': '77', 'years': '48', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '74018776', 'alignment': '45404476'}, 'GSM2374137': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374136': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374135': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374134': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1646730': {'status': 'Tumor', 'gender': 'M', 'age': '0', 'tissue': 'liver'}, 'GSM1646731': {'status': 'Tumor', 'gender': 'M', 'age': '71', 'tissue': 'liver'}, 'GSM1646732': {'status': 'Tumor', 'gender': 'M', 'age': '36', 'tissue': 'liver'}, 'GSM1646733': {'status': 'Tumor', 'gender': 'M', 'age': '44', 'tissue': 'liver'}, 'GSM2459072': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '16.17'}, 'GSM2459073': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '16.42'}, 'GSM2459070': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.50'}, 'GSM2459071': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.83'}, 'GSM1334732': {'with': 'control siRNA', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1334733': {'with': 'control siRNA', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1334730': {'with': 'ADAR1 siRNA', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1334731': {'with': 'ADAR1 siRNA', 'line': 'U87MG', 'passages': '7', 'type': 'Glioblastoma (Astrocytoma) cells', 'subtype': 'small RNA'}, 'GSM1888828': {'activated': 'FALSE', 'activation': '0', 'type': 'Memory', 'id': '5291', 'batch': '1'}, 'GSM1888829': {'activated': 'TRUE', 'activation': '1', 'type': 'Memory', 'id': '4659', 'batch': '2'}, 'GSM1401346': {'rin': '9.69', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-05-28'}, 'GSM2188721': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-213', 'er': 'negative'}, 'GSM2759502': {'tissue': 'dermal fibroblast', 'genotype': 'control', 'condition': 'control'}, 'GSM2759501': {'tissue': 'dermal fibroblast', 'genotype': 'control', 'condition': 'control'}, 'GSM2759500': {'tissue': 'dermal fibroblast', 'genotype': 'control', 'condition': 'control'}, 'GSM2545244': {'line': 'UACC812', 'type': 'Luminal B Breast Cancer Cell line'}, 'GSM2577220': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '16h'}, 'GSM2287024': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287025': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287026': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287027': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287020': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287021': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287022': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287023': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1526935': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3K4me2 (Millipore)', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1526934': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3K4me2 (Millipore)', 'treatment': 'DMSO (6hrs)'}, 'GSM1715067': {'differentiation': 'Day 0', 'line': 'H9 hESC'}, 'GSM1715069': {'differentiation': 'Day 0', 'line': 'H9 hESC'}, 'GSM1715068': {'differentiation': 'Day 0', 'line': 'H9 hESC'}, 'GSM2302110': {'timepoint': 'Pre', 'id': '46', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302111': {'timepoint': 'Post', 'id': '46', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2802972': {'line': 'hMSC-TERT4', 'variation': 'siHSF1', 'stage': 'D1'}, 'GSM2302113': {'timepoint': 'Post', 'id': '47', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302114': {'timepoint': 'Pre', 'id': '48', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302115': {'timepoint': 'Post', 'id': '48', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302116': {'timepoint': 'Pre', 'id': '49', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302117': {'timepoint': 'Post', 'id': '49', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302118': {'timepoint': 'Pre', 'id': '50', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302119': {'timepoint': 'Post', 'id': '50', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM1888827': {'activated': 'FALSE', 'activation': '0', 'type': 'Memory', 'id': '5131', 'batch': '1'}, 'GSM2243693': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243692': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243691': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243690': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243697': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243696': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243695': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243694': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243699': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243698': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2551367': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM1166108': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Brain'}, 'GSM1166109': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166104': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166105': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Brain'}, 'GSM1166106': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Brain'}, 'GSM1166107': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Brain'}, 'GSM1166100': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166101': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166102': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166103': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1254458': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'SENCR_knockdown'}, 'GSM1254459': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'SENCR_knockdown'}, 'GSM1254457': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'SENCR_knockdown'}, 'GSM2359262': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '100nM', 'drug': 'THZ1'}, 'GSM2359263': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '1 uM', 'drug': 'BGJ398'}, 'GSM2359260': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '100nM', 'drug': 'THZ1'}, 'GSM2359261': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '100nM', 'drug': 'THZ1'}, 'GSM2031982': {'type': 'Keratinocytes', 'stage': 'Undifferentiated'}, 'GSM1163059': {'patient': 'Healthy_N253', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1163058': {'patient': 'Healthy_N253', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Untreated', 'id': '1'}, 'GSM1163055': {'patient': 'Healthy_N252', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1163054': {'patient': 'Healthy_N252', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Untreated', 'id': '1'}, 'GSM1163057': {'patient': 'Healthy_N252', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Antagonist', 'id': '4'}, 'GSM1163056': {'patient': 'Healthy_N252', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163051': {'patient': 'Healthy_N250', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1163050': {'patient': 'Healthy_N250', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Untreated', 'id': '1'}, 'GSM1163053': {'patient': 'Healthy_N250', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Antagonist', 'id': '4'}, 'GSM1163052': {'patient': 'Healthy_N250', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Agonist', 'id': '3'}, 'GSM2666198': {'age': 'Day 130', 'well': 'C6', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2178975': {'stimulation': '7', 'type': 'CD8aa', 'derivation': 'Regenerated from LMP2 T-iPSCs', 'method': 'LCL pulsed with LMP2 peptide with IL-2 and IL-7'}, 'GSM2178977': {'stimulation': '7', 'type': 'CD8aa', 'derivation': 'Regenerated from LMP2 T-iPSCs', 'method': 'LCL pulsed with LMP2 peptide with IL-2 and IL-7'}, 'GSM2178976': {'stimulation': '7', 'type': 'CD8aa', 'derivation': 'Regenerated from LMP2 T-iPSCs', 'method': 'LCL pulsed with LMP2 peptide with IL-2 and IL-7'}, 'GSM2178979': {'stimulation': '7', 'type': 'CD8ab', 'derivation': 'Regenerated from LMP2 T-iPSCs', 'method': 'LCL pulsed with LMP2 peptide with IL-7 and IL-21'}, 'GSM2178978': {'stimulation': '7', 'type': 'CD8ab', 'derivation': 'Regenerated from LMP2 T-iPSCs', 'method': 'LCL pulsed with LMP2 peptide with IL-7 and IL-21'}, 'GSM2666193': {'age': 'Day 130', 'well': 'B2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666192': {'age': 'Day 130', 'well': 'H10', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666195': {'age': 'Day 130', 'well': 'F9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666194': {'age': 'Day 130', 'well': 'F10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666197': {'age': 'Day 130', 'well': 'A7', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666196': {'age': 'Day 130', 'well': 'H4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM1892650': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892651': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892652': {'tissue': 'FFPE', 'antibody': 'H3K36me3 (Abcam ab9050)'}, 'GSM1892653': {'tissue': 'FFPE', 'antibody': 'H3K4me3 (Diagenode C15410003)'}, 'GSM1892654': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892655': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892656': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892657': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892658': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892659': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1576444': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human T cells', 'time': '1 d'}, 'GSM1576445': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human T cells', 'time': '3 d'}, 'GSM1576446': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human T cells', 'time': '7 d'}, 'GSM2072071': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gCIC-2', 'treatment': '100 nM Trametinib'}, 'GSM2072070': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gCIC-2', 'treatment': 'DMSO'}, 'GSM2072072': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gCIC-2', 'treatment': '100 nM Trametinib'}, 'GSM1576440': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human PBMC', 'time': '1 d'}, 'GSM1576441': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human PBMC', 'time': '3 d'}, 'GSM2877898': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM1539043': {'donor': 'Miff', 'in': 'ERCC ExFold mix 1', 'type': 'stranded 51bp PE reads', 'genotype': 'Control', 'gender': 'male'}, 'GSM2877899': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM1576443': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human T cells', 'time': '0 d'}, 'GSM2172348': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172349': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2877890': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2312069': {'culture': '12', 'line': 'DCX+'}, 'GSM2312068': {'culture': '12', 'line': 'DCX+'}, 'GSM2877891': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2312065': {'culture': '12', 'line': 'DCX+'}, 'GSM2312064': {'culture': '12', 'line': 'DCX+'}, 'GSM2312067': {'culture': '12', 'line': 'DCX+'}, 'GSM2312066': {'culture': '12', 'line': 'DCX+'}, 'GSM2312061': {'culture': '12', 'line': 'DCX+'}, 'GSM2877892': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2312063': {'culture': '12', 'line': 'DCX+'}, 'GSM2312062': {'culture': '12', 'line': 'DCX+'}, 'GSM2251715': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM2877893': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM1937842': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM2251714': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM2877894': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2455940': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2172341': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM3586636': {'origin': 'UNCLASSIFIED', 'pfstt': '1483', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1648', 'cycles': '6', 'oscs': '0'}, 'GSM3586637': {'origin': 'ABC', 'pfstt': '32', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '32', 'cycles': '6', 'oscs': '1'}, 'GSM3586634': {'origin': 'ABC', 'pfstt': '1625', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1625', 'cycles': '6', 'oscs': '0'}, 'GSM3586635': {'origin': 'GCB', 'pfstt': '191', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '430', 'cycles': '6', 'oscs': '1'}, 'GSM3586632': {'origin': 'UNCLASSIFIED', 'pfstt': '562', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1396', 'cycles': '6', 'oscs': '0'}, 'GSM3586633': {'origin': 'ABC', 'pfstt': '1647', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1647', 'cycles': '6', 'oscs': '0'}, 'GSM3586630': {'origin': 'ABC', 'pfstt': '275', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '462', 'cycles': '6', 'oscs': '1'}, 'GSM3586631': {'origin': 'GCB', 'pfstt': '712', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '716', 'cycles': '6', 'oscs': '0'}, 'GSM2455946': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1901496': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM3586638': {'origin': 'GCB', 'pfstt': '183', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '475', 'cycles': '6', 'oscs': '1'}, 'GSM3586639': {'origin': 'UNCLASSIFIED', 'pfstt': '1483', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1483', 'cycles': '6', 'oscs': '0'}, 'GSM2392068': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM1937827': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1937826': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1937828': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM819489': {'type': 'Melanocytes over-expressing red fluorescent protein (RFP) - control sample'}, 'GSM2220770': {'type': 'BEAS-2B', 'treatment': 'Hg+TCDD-2.5uM+10nM for 3 weeks'}, 'GSM3304328': {'tissue': 'cerebral organoids', 'genotype': 'E4E4_CTR'}, 'GSM2649798': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1963028': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963029': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM2649799': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1963024': {'tissue': 'ZR75', 'treatment': 'Control'}, 'GSM1963025': {'tissue': 'ZR75', 'treatment': 'ESR1 Coregulator Binding Site Inhibitors'}, 'GSM1963026': {'tissue': 'ZR75', 'treatment': 'ESR1 Coregulator Binding Site Inhibitors'}, 'GSM1963027': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'AMS', 'ethnicity': 'Chinese Han'}, 'GSM3304324': {'tissue': 'cerebral organoids', 'genotype': 'E4E4_CTR'}, 'GSM3304325': {'tissue': 'cerebral organoids', 'genotype': 'E4E4_CTR'}, 'GSM3304326': {'tissue': 'cerebral organoids', 'genotype': 'E3E3_ISO'}, 'GSM3304327': {'tissue': 'cerebral organoids', 'genotype': 'E3E3_ISO'}, 'GSM2324255': {'group': 'HighA422', 'type': 'PBMC', 'day': '0', 'subjectid': '7724'}, 'GSM2157910': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157911': {'gender': 'M', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2157912': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157913': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157914': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157915': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157916': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157917': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157918': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157919': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2649790': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1125253': {'type': 'monocyte', 'passage': '5-10'}, 'GSM1125252': {'type': 'promyeloblast', 'passage': '5-10'}, 'GSM2649791': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649792': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649793': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649794': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649795': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM424343': {'identifier': 'GM12043'}, 'GSM424342': {'identifier': 'GM12006'}, 'GSM424341': {'identifier': 'GM12005'}, 'GSM424340': {'identifier': 'GM12004'}, 'GSM424347': {'identifier': 'GM12144'}, 'GSM424346': {'identifier': 'GM12057'}, 'GSM424345': {'identifier': 'GM12056'}, 'GSM424344': {'identifier': 'GM12044'}, 'GSM2734296': {'line': 'LNCaP'}, 'GSM424349': {'identifier': 'GM12155'}, 'GSM424348': {'identifier': 'GM12145'}, 'GSM2734297': {'line': 'LNCaP'}, 'GSM2943839': {'passages': '<25', 'treatment': 'TCEP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '25 uM'}, 'GSM2734294': {'line': 'LNCaP'}, 'GSM2734295': {'line': 'LNCaP'}, 'GSM998958': {'line': 'breast cancer cell line MCF-7/S0.5', 'genotype': 'tamoxifen sensitive'}, 'GSM2454017': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2108309': {'tissue': 'human melanocytes', 'sirna': 'control'}, 'GSM2108308': {'tissue': 'human melanocytes', 'sirna': 'control'}, 'GSM2454016': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM1234179': {'replicate': '2', 'line': '2588', 'antibody': 'SA1'}, 'GSM1234178': {'replicate': '1', 'line': '2588', 'antibody': 'SA1'}, 'GSM1521761': {'antibody': 'Abcam,Ab21990,GR139309-4Â\\xa0', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521760': {'antibody': 'Abcam,Ab21990,GR139309-4Â\\xa0', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1957070': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957071': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM2815984': {'line': 'H9'}, 'GSM2815985': {'line': 'H9'}, 'GSM2815982': {'line': 'H9'}, 'GSM2815983': {'line': 'H9'}, 'GSM2815980': {'line': 'H9'}, 'GSM2815981': {'line': 'H9'}, 'GSM1957078': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957079': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM2454010': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2815988': {'line': 'H9'}, 'GSM2815989': {'line': 'H9'}, 'GSM3189174': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.950924', 'percentaligned': '0.953258299', 'Sex': 'M', 'nl63': 'No', 'libcounts': '15.589223', 'original': 'Control'}, 'GSM2653276': {'type': 'Diffuse Intrinsic Pontine Glioma cell culture'}, 'GSM2653277': {'type': 'Diffuse Intrinsic Pontine Glioma cell culture'}, 'GSM3189175': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.601832', 'percentaligned': '0.958658662', 'Sex': 'M', 'nl63': 'No', 'libcounts': '14.459834', 'original': 'Control'}, 'GSM3189176': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-Cpat24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '18', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.545624', 'percentaligned': '0.947518303', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.175152', 'original': 'Control'}, 'GSM1581055': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581054': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581057': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM3189177': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-Cpat24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '22', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.694742', 'percentaligned': '0.926010036', 'Sex': 'M', 'nl63': 'No', 'libcounts': '2.71706', 'original': 'Control'}, 'GSM1581051': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581050': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581053': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581052': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1521769': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1581059': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581058': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1521768': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM485524': {'line': 'NA19200'}, 'GSM1234174': {'replicate': '2', 'line': '2588', 'antibody': 'H3K4me3'}, 'GSM2549749': {'sequence': 'AGATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CGATGTA', 'infection': 'Uninfected', 'treatment': 'none', 'line': 'WI-38'}, 'GSM2257728': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '7.5 minutes labeling'}, 'GSM2257729': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '7.5 minutes labeling'}, 'GSM2791583': {'line': 'MDA-MB-231', 'barcode': 'U781', 'replicate': 'Biological replicate 1', 'treatment': 'Hypoxia+PP242', 'fraction': 'Polysomal mRNA'}, 'GSM2791582': {'line': 'MDA-MB-231', 'barcode': 'U780', 'replicate': 'Biological replicate 1', 'treatment': 'Normoxia+PP242', 'fraction': 'Polysomal mRNA'}, 'GSM2791581': {'line': 'MDA-MB-231', 'barcode': 'U779', 'replicate': 'Biological replicate 1', 'treatment': 'Hypoxia', 'fraction': 'Polysomal mRNA'}, 'GSM2791580': {'line': 'MDA-MB-231', 'barcode': 'U778', 'replicate': 'Biological replicate 1', 'treatment': 'Normoxia', 'fraction': 'Polysomal mRNA'}, 'GSM2791587': {'line': 'MDA-MB-231', 'barcode': 'U785', 'replicate': 'Biological replicate 2', 'treatment': 'Hypoxia+PP242', 'fraction': 'Total mRNA'}, 'GSM2791586': {'line': 'MDA-MB-231', 'barcode': 'U784', 'replicate': 'Biological replicate 2', 'treatment': 'Normoxia+PP242', 'fraction': 'Total mRNA'}, 'GSM2791585': {'line': 'MDA-MB-231', 'barcode': 'U783', 'replicate': 'Biological replicate 2', 'treatment': 'Hypoxia', 'fraction': 'Total mRNA'}, 'GSM2791584': {'line': 'MDA-MB-231', 'barcode': 'U782', 'replicate': 'Biological replicate 2', 'treatment': 'Normoxia', 'fraction': 'Total mRNA'}, 'GSM2791589': {'line': 'MDA-MB-231', 'barcode': 'U787', 'replicate': 'Biological replicate 2', 'treatment': 'Hypoxia', 'fraction': 'Polysomal mRNA'}, 'GSM2791588': {'line': 'MDA-MB-231', 'barcode': 'U786', 'replicate': 'Biological replicate 2', 'treatment': 'Normoxia', 'fraction': 'Polysomal mRNA'}, 'GSM2172149': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2093034': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2607539': {'line': 'WA26'}, 'GSM2093035': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093036': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093037': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093030': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1708783': {'gender': 'male', 'age': '54', 'tissue': 'Ossified Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM2093031': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093032': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093033': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2643491': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM JQ1', 'time': '24 h'}, 'GSM2643490': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM JQ1', 'time': '24 h'}, 'GSM2643493': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM PA1', 'time': '24 h'}, 'GSM2643492': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM PA1', 'time': '24 h'}, 'GSM2643495': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM PA1', 'time': '24 h'}, 'GSM2643494': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM PA1', 'time': '24 h'}, 'GSM1980098': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980099': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2643499': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM PA1', 'time': '24 h'}, 'GSM1980097': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980094': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980095': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980092': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980093': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980090': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980091': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1704853': {'origin': 'bone marrow', 'type': 'CD34+ iPSC', 'description': 'iPSC'}, 'GSM2533729': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533728': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2256099': {'infected': 'common:TSS99142_-_128806798.23-P1P2', 'type': 'HeLa'}, 'GSM2256098': {'infected': 'cancer_common:TSS26355_-_92000200.23-P1P2', 'type': 'HeLa'}, 'GSM2256097': {'infected': 'common:TSS45950_+_72264765.23-P1P2', 'type': 'HeLa'}, 'GSM2533720': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533723': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533722': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2256093': {'infected': 'common:TSS11541_-_102133399.23-P1P2', 'type': 'HeLa'}, 'GSM2256092': {'infected': 'common:TSS2282_-_110950277.23-P2', 'type': 'HeLa'}, 'GSM2256091': {'infected': 'common:TSS2282_-_110950282.23-P2', 'type': 'HeLa'}, 'GSM2533726': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM3594668': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2581229': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581228': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM3594667': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2581221': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581220': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581223': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581222': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581225': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581224': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581227': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581226': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM3594665': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3190693': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.490304'}, 'GSM3594661': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM1940144': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1940145': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1940146': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1940147': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1940140': {'with': 'none (untreated)', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': 'n/a', 'variation': 'PU.1 overexpression'}, 'GSM1940141': {'with': 'none (untreated)', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': 'n/a', 'variation': 'PU.1 overexpression'}, 'GSM1940142': {'with': 'none (untreated)', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': 'n/a', 'variation': 'vector control (for PU.1 overexpression)'}, 'GSM1940143': {'with': 'none (untreated)', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': 'n/a', 'variation': 'vector control (for PU.1 overexpression)'}, 'GSM2565045': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM1940148': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1940149': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1703697': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703696': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703695': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703699': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703698': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1443832': {'antibody': 'H3K27ac (ab4729; Abcam)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells', 'transfection': 'Mature hMADS adipocytes (day 10) were incubated with lentivirus expressing shRNA against KLF11 for 24 hours.'}, 'GSM1443830': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells', 'transfection': 'Mature hMADS adipocytes (day 10) were incubated with lentivirus expressing shRNA against KLF11 for 24 hours.'}, 'GSM1443831': {'antibody': 'H3K27ac (ab4729; Abcam)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells', 'transfection': 'Mature hMADS adipocytes (day 10) were incubated with lentivirus expressing shRNA against Scramble for 24 hours.'}, 'GSM1608066': {'molecule': 'polyA RNA', 'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1608064': {'molecule': 'polyA RNA', 'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1608065': {'molecule': 'polyA RNA', 'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1608063': {'molecule': 'polyA RNA', 'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM3189361': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '12', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'Yes', 'mediancvcoverage': '0.544228', 'percentaligned': '0.951175517', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.018891', 'original': 'Control'}, 'GSM3189360': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.634284', 'percentaligned': '0.958560656', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.844346'}, 'GSM3189363': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.718365', 'percentaligned': '0.939218172', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.806627', 'original': 'Case'}, 'GSM3189362': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '39', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.691101', 'percentaligned': '0.842980672', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.361205', 'original': 'Control'}, 'GSM3189365': {'boca': 'Yes', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '29', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.605137', 'percentaligned': '0.955886155', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.301887', 'original': 'Control'}, 'GSM3189364': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '19', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.627697', 'percentaligned': '0.94824425', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.998692', 'original': 'Case'}, 'GSM3189367': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B06', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.55594', 'percentaligned': '0.954465835', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.845838', 'original': 'Control'}, 'GSM3189366': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '26', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.611973', 'percentaligned': '0.876702309', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.139636', 'original': 'Case'}, 'GSM3189369': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '97', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.603396', 'percentaligned': '0.93156459', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.713732', 'original': 'Control'}, 'GSM3189368': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '82', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.663974', 'percentaligned': '0.817574515', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.496204', 'original': 'Control'}, 'GSM1620349': {'type': 'U87 human glioma cells'}, 'GSM1620348': {'type': 'U87 human glioma cells'}, 'GSM2411850': {'line': '2945B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM1620347': {'type': 'U87 human glioma cells'}, 'GSM2304369': {'line': 'HeLa', 'treatment': '1hr recovery after 3hr ethanol treatment'}, 'GSM2304368': {'line': 'HeLa', 'treatment': '1hr recovery after 3hr ethanol treatment'}, 'GSM1642989': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': \"Crohn's disease-associated fibrosis\"}, 'GSM2304363': {'line': 'HeLa', 'treatment': 'mock treatment (growth medium only) for 3hrs'}, 'GSM2304362': {'line': 'HeLa', 'treatment': 'mock treatment (growth medium only) for 3hrs'}, 'GSM2304365': {'line': 'HeLa', 'treatment': '4.3% ethanol treatment for 3hrs'}, 'GSM2304364': {'line': 'HeLa', 'treatment': 'mock treatment (growth medium only) for 3hrs'}, 'GSM2304367': {'line': 'HeLa', 'treatment': '4.3% ethanol treatment for 3hrs'}, 'GSM2304366': {'line': 'HeLa', 'treatment': '4.3% ethanol treatment for 3hrs'}, 'GSM1550537': {'strain': 'HEK293 T-Rex FLAG:DICER1 FLP-IN', 'line': 'HEK293', 'transfection': 'DICER1 siRNA1, 18h'}, 'GSM1624665': {'tumor': 'PDX', 'material': 'Fresh Frozen', 'treatment': 'post-treatment Vemurafenib'}, 'GSM2491461': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491460': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM1953975': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM2627016': {'origin': 'pancreas', 'patient_id': '52', 'type': 'primary', 'tumor_id': 'YC92'}, 'GSM2701946': {'stimulation': '50ng/ml LPS+1µM SB-747561+10nM C5a', 'donor': '6', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701944': {'stimulation': '50ng/ml LPS+10nM C5a', 'donor': '6', 'type': 'monocyte-derived dendritic cells'}, 'GSM2491462': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2701942': {'stimulation': '10nM C5a', 'donor': '6', 'type': 'monocyte-derived dendritic cells'}, 'GSM1953977': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM2701940': {'stimulation': '50ng/ml LPS+1µM SB-747561+10nM C5a', 'donor': '5', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701941': {'stimulation': 'no stimulation', 'donor': '6', 'type': 'monocyte-derived dendritic cells'}, 'GSM2565044': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM1624662': {'tumor': 'Patient material', 'material': 'FFPE', 'treatment': 'pre-treatment'}, 'GSM1093229': {'type': 'human embryonic stem cells'}, 'GSM2627013': {'origin': 'pancreas', 'patient_id': '50', 'type': 'primary', 'tumor_id': 'YC85'}, 'GSM1953970': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM2456051': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2456050': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2456053': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2456052': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2320006': {'induction': 'PMA', 'treatment': 'siRNA PU.1', 'time': '24 hr'}, 'GSM2595243': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '88'}, 'GSM2595240': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '104'}, 'GSM2595241': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '99'}, 'GSM2456059': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1550538': {'strain': 'HEK293 T-Rex FLAG:DICER1 FLP-IN', 'line': 'HEK293', 'transfection': 'DICER1 siRNA2, 18h'}, 'GSM2320008': {'induction': 'Vitamin D3', 'treatment': 'siRNA Control', 'time': '24 hr'}, 'GSM2320009': {'induction': 'Vitamin D3', 'treatment': 'siRNA Control', 'time': '24 hr'}, 'GSM2595248': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '88'}, 'GSM1550539': {'strain': 'HEK293 T-Rex FLAG:DICER1 FLP-IN', 'line': 'HEK293', 'transfection': 'DROSHA siRNA1, 18h'}, 'GSM2390890': {'disease': 'Healthy Control'}, 'GSM2186794': {'stimulation': 'TLR2/1 ligand', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2390891': {'disease': 'Healthy Control'}, 'GSM2592202': {'line': '201B7', 'type': 'hiPSC'}, 'GSM2592201': {'line': '201B7', 'type': 'hiPSC'}, 'GSM2592207': {'line': '585B1-868', 'type': 'iMeLC'}, 'GSM2592206': {'line': '585B1-868', 'type': 'hiPSC'}, 'GSM2056019': {'line': 'MRC-5', 'doublings': '32', 'agent': 'irradiation 20GY'}, 'GSM2324271': {'tumor': 'healthy control', 'tissue': 'peripheral blood'}, 'GSM2186792': {'stimulation': 'interferon gamma', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2361959': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2324272': {'tumor': 'healthy control', 'tissue': 'peripheral blood'}, 'GSM2361957': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361956': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361955': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2592204': {'line': '201B7', 'type': 'iMeLC'}, 'GSM2361953': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361952': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361951': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361950': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2592208': {'line': '585A1', 'type': 'hiPSC'}, 'GSM2537178': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2811250': {'line': 'H9', 'point': '16 hours'}, 'GSM2537179': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2166235': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166234': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166237': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166236': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166231': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166230': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166233': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166232': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166239': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166238': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM1888338': {'gender': 'female', 'age': '48', 'tissue': 'nomral lung tissue adjacent to benign pulmonary tumors'}, 'GSM1888330': {'gender': 'male', 'age': '64', 'tissue': 'idiopathic pulmonary fibrosis'}, 'GSM1888331': {'gender': 'female', 'age': '52', 'tissue': 'idiopathic nonspecific interstitial pneumonia'}, 'GSM1888332': {'gender': 'female', 'age': '43', 'tissue': 'idiopathic nonspecific interstitial pneumonia'}, 'GSM1888333': {'gender': 'female', 'age': '48', 'tissue': 'idiopathic nonspecific interstitial pneumonia'}, 'GSM1888334': {'gender': 'male', 'age': '66', 'tissue': 'nomral lung tissue adjacent to benign pulmonary tumors'}, 'GSM1888335': {'gender': 'male', 'age': '52', 'tissue': 'nomral lung tissue adjacent to benign pulmonary tumors'}, 'GSM1888336': {'gender': 'male', 'age': '61', 'tissue': 'nomral lung tissue adjacent to benign pulmonary tumors'}, 'GSM1888337': {'gender': 'male', 'age': '53', 'tissue': 'nomral lung tissue adjacent to benign pulmonary tumors'}, 'GSM1648879': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CHAP_1_5', 'biopsy': 'n/a', 'years': '2.57', 'volume': '1184', 'type': 'iPSCs', 'id': 'CHAP'}, 'GSM1648878': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CHAP_1_2', 'biopsy': 'n/a', 'years': '2.57', 'volume': '1184', 'type': 'iPSCs', 'id': 'CHAP'}, 'GSM1648871': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_6', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSCs', 'id': 'ARCH'}, 'GSM1648870': {'group': 'ASD', 'gender': 'Male', 'clone': 'AQUA_3_9', 'biopsy': '13 (Fluent Speech -Chld/Adolescent)', 'years': '4.05', 'volume': '1409', 'type': 'iPSCs', 'id': 'AQUA'}, 'GSM1648873': {'group': 'ASD', 'gender': 'Male', 'clone': 'AVID_5_20', 'biopsy': '16 (Fluent Speech - Child/Adolescent)', 'years': '4.21', 'volume': '1361', 'type': 'iPSCs', 'id': 'AVID'}, 'GSM1648872': {'group': 'ASD', 'gender': 'Male', 'clone': 'ARCH_1_2', 'biopsy': '18 (Pre-verbal/Single Words)', 'years': '3.41', 'volume': '1257', 'type': 'iPSCs', 'id': 'ARCH'}, 'GSM1648875': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CAPE_1_8', 'biopsy': 'n/a', 'years': 'n/a', 'volume': 'n/a', 'type': 'iPSCs', 'id': 'CAPE'}, 'GSM1648874': {'group': 'ASD', 'gender': 'Male', 'clone': 'AVID_5_5', 'biopsy': '16 (Fluent Speech - Child/Adolescent)', 'years': '4.21', 'volume': '1361', 'type': 'iPSCs', 'id': 'AVID'}, 'GSM1648877': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CENT_3_6', 'biopsy': 'n/a', 'years': '3.58', 'volume': '1389', 'type': 'iPSCs', 'id': 'CENT'}, 'GSM1648876': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CENT_3_3', 'biopsy': 'n/a', 'years': '3.58', 'volume': '1389', 'type': 'iPSCs', 'id': 'CENT'}, 'GSM1626581': {'type': 'alveolar epithelial type 2'}, 'GSM1626583': {'type': 'alveolar epithelial type 1'}, 'GSM1626582': {'type': 'alveolar epithelial type 2'}, 'GSM1626584': {'type': 'alveolar epithelial type 1'}, 'GSM1905018': {'with': 'shEBNA1 lentivirus', 'line': 'LCL', 'type': 'EBV positive B-cell'}, 'GSM1905011': {'antibody': 'IgG', 'line': 'Raji', 'type': 'EBV positive B-cell'}, 'GSM1905010': {'antibody': 'EBNA1', 'line': 'C6661', 'type': 'EBV positive nasopharyngeal carcinoma (NPC) line'}, 'GSM1905013': {'antibody': 'IgG', 'line': 'LCL', 'type': 'EBV positive B-cell'}, 'GSM1905012': {'antibody': 'IgG', 'line': 'MutuI', 'type': 'EBV positive B-cell'}, 'GSM1905015': {'with': 'pLKO.1 control shRNA', 'line': 'LCL', 'type': 'EBV positive B-cell'}, 'GSM1905014': {'antibody': 'IgG', 'line': 'C6661', 'type': 'EBV positive nasopharyngeal carcinoma (NPC) line'}, 'GSM1905017': {'with': 'shEBNA1 lentivirus', 'line': 'LCL', 'type': 'EBV positive B-cell'}, 'GSM1905016': {'with': 'pLKO.1 control shRNA', 'line': 'LCL', 'type': 'EBV positive B-cell'}, 'GSM2225752': {'tissue': 'pancreas'}, 'GSM485379': {'line': 'NA19098'}, 'GSM485378': {'line': 'NA19239'}, 'GSM485377': {'line': 'NA19238'}, 'GSM485376': {'line': 'NA18520'}, 'GSM485375': {'line': 'NA18499'}, 'GSM485374': {'line': 'NA18498'}, 'GSM485373': {'line': 'NA19108'}, 'GSM485372': {'line': 'NA18511'}, 'GSM485371': {'line': 'NA19152'}, 'GSM485370': {'line': 'NA18909'}, 'GSM2597662': {'antibody': 'Input', 'treatment': 'DAC+SB'}, 'GSM2597663': {'antibody': 'H3K23ac', 'treatment': 'DMSO'}, 'GSM2597660': {'antibody': 'H2AK9ac', 'treatment': 'DAC+SB'}, 'GSM2597661': {'antibody': 'H2BK5ac', 'treatment': 'DAC+SB'}, 'GSM2597666': {'antibody': 'H3K18ac', 'treatment': 'DMSO'}, 'GSM2597667': {'antibody': 'H4K12ac', 'treatment': 'DMSO'}, 'GSM2597664': {'antibody': 'H4K8ac', 'treatment': 'DMSO'}, 'GSM2597665': {'antibody': 'H3K14ac', 'treatment': 'DMSO'}, 'GSM2597668': {'antibody': 'H3K4ac', 'treatment': 'DMSO'}, 'GSM2597669': {'antibody': 'H2AK9ac', 'treatment': 'DMSO'}, 'GSM2666050': {'age': 'Day 450', 'well': 'D11', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666051': {'age': 'Day 450', 'well': 'E4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2325896': {'type': 'Human embryonic stem cell'}, 'GSM2325897': {'type': 'Human embryonic stem cell'}, 'GSM2672101': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2455771': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455770': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455773': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1395356': {'type': 'Primary fibroblast'}, 'GSM2455775': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455774': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455777': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455776': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455779': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2325892': {'type': 'Human embryonic stem cell'}, 'GSM2877921': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2672105': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2616649': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2325891': {'type': 'Human embryonic stem cell'}, 'GSM1576945': {'with': 'pcDNA-IGFBP5', 'line': 'A375', 'type': 'Melanoma cell line', 'variation': 'IGFBP5 overexpression'}, 'GSM1576946': {'with': 'pcDNA empty plasmid', 'line': 'A375', 'type': 'Melanoma cell line', 'variation': 'vector control'}, 'GSM2486502': {'variation': 'control', 'condition': 'control'}, 'GSM2632601': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632602': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632603': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2486506': {'variation': 'mutant IDH1 and p53 knockdown', 'condition': 'R132H-IDH1 and P53 shRNA'}, 'GSM2632605': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632606': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2486505': {'variation': 'mutant IDH1 and p53 knockdown', 'condition': 'R132H-IDH1 and P53 shRNA'}, 'GSM2632608': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632609': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2486508': {'variation': 'mutant-IDH1 and P53 knockdown and ATRX knockdown', 'condition': 'R132H-IDH1 and P53 shRNA and ATRX shRNA'}, 'GSM2595255': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM1862179': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shNS', 'treatment': 'none'}, 'GSM1862177': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shNS', 'treatment': 'none'}, 'GSM2285769': {'status': 'healthy volunteer', 'gender': 'female', 'age': '21', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285768': {'status': 'healthy volunteer', 'gender': 'female', 'age': '65', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285765': {'status': 'healthy volunteer', 'gender': 'female', 'age': '61', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285764': {'status': 'healthy volunteer', 'gender': 'female', 'age': '26', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285767': {'status': 'healthy volunteer', 'gender': 'female', 'age': '72', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285766': {'status': 'healthy volunteer', 'gender': 'female', 'age': '63', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285761': {'status': 'healthy volunteer', 'gender': 'female', 'age': '83', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285760': {'status': 'healthy volunteer', 'gender': 'female', 'age': '75', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285763': {'status': 'healthy volunteer', 'gender': 'female', 'age': '72', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285762': {'status': 'healthy volunteer', 'gender': 'female', 'age': '83', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2595257': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM1482951': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '26T2'}, 'GSM569412': {'vendor': 'Abcam', 'antibody': 'anti-Lin28 antibody', 'passages': '30-50', 'type': 'Lin28 immunoprecipitated fractioni', 'chromosome': 'diploid'}, 'GSM569411': {'antibody': 'n/a', 'passages': '30-50', 'type': 'pre_IP', 'chromosome': 'diploid'}, 'GSM2100037': {'rin': '9.6', 'Sex': 'Female', 'sspg': '189', 'age': '68', 'bmi': '28.1', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '250', 'method': 'Qiagen:trizol'}, 'GSM1694207': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2486464': {'line': 'KOPN-8'}, 'GSM1624234': {'lineage': 'Trophectoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM2595250': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '110'}, 'GSM1694206': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2754948': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': '10', 'type': 'Tcells'}, 'GSM2754949': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_1119', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2100035': {'rin': '9.6', 'Sex': 'Female', 'sspg': '189', 'age': '68', 'bmi': '28.1', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '250', 'method': 'Qiagen:trizol'}, 'GSM2840169': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2048869': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'APC-R876'}, 'GSM2048868': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2754940': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0257', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754941': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_0257', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754942': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0229', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754943': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0229', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754944': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0229', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754945': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': '8', 'type': 'Tcells'}, 'GSM2754946': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0692', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM2754947': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2130858': {'type': 'Z138 stable cell transfected with small hairpin targeting BTK, and induced with Doxycyclin for 48H'}, 'GSM2413562': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413563': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413560': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413561': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2130856': {'type': 'Mino stable cell transfected with small hairpin targeting BTK, and induced with Doxycyclin for 48H'}, 'GSM2130857': {'type': 'Z138 stable cell transfected with control vectctor, and induced with Doxycyclin for 48H'}, 'GSM2413564': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2130855': {'type': 'Mino stable cell transfected with control vectctor, and induced with Doxycyclin for 48H'}, 'GSM2287727': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287726': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287725': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287724': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287723': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287722': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287721': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287720': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287729': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287728': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2172272': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2136454': {'line': 'human colorectal cancer cell line RKO', 'variation': 'DIP2C +/-'}, 'GSM2136455': {'line': 'human colorectal cancer cell line RKO', 'variation': 'DIP2C +/-'}, 'GSM2136456': {'line': 'human colorectal cancer cell line RKO', 'variation': 'DIP2C +/-'}, 'GSM2136450': {'line': 'human colorectal cancer cell line RKO', 'variation': 'DIP2C -/-'}, 'GSM2136451': {'line': 'human colorectal cancer cell line RKO', 'variation': 'DIP2C -/-'}, 'GSM2136452': {'line': 'human colorectal cancer cell line RKO', 'variation': 'DIP2C +/-'}, 'GSM2136453': {'line': 'human colorectal cancer cell line RKO', 'variation': 'DIP2C +/-'}, 'GSM2158146': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158147': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158144': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158145': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158142': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158143': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158140': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158141': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158148': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158149': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM1105819': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105818': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105811': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105810': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105813': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105812': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105815': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105814': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105817': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105816': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2100031': {'rin': '10', 'Sex': 'Male', 'sspg': '272', 'age': '68', 'bmi': '34.8', 'batch': '1-90', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '239', 'method': 'Life-Tech GITC'}, 'GSM2172275': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM3319634': {'region': 'Prefrontal cortex', 'age': '61', 'id': 'C'}, 'GSM3319635': {'region': 'Thalamus', 'age': '64', 'id': 'A'}, 'GSM3319636': {'region': 'Prefrontal cortex', 'age': '64', 'id': 'B'}, 'GSM2287180': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1249128': {'type': 'RTT5 fibroblast', 'mutation': 'X487W', 'treatment': 'no', 'passage': '11'}, 'GSM1249129': {'type': 'RTT3 fibroblast', 'mutation': 'E235fs', 'treatment': 'no', 'passage': '8'}, 'GSM3319632': {'region': 'Hippocampus', 'age': '64', 'id': 'B'}, 'GSM3319633': {'region': 'Cerebellum', 'age': '61', 'id': 'C'}, 'GSM1249124': {'type': 'Detroit551', 'mutation': 'no', 'treatment': 'no', 'passage': '5'}, 'GSM1249125': {'type': 'RTT1 fibroblast', 'mutation': 'T158M', 'treatment': 'no', 'passage': '9'}, 'GSM2287189': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1249127': {'type': 'RTT4 fibroblast', 'mutation': 'R306C', 'treatment': 'no', 'passage': '8'}, 'GSM1249120': {'type': 'H7', 'mutation': 'no', 'treatment': 'no', 'passage': '53'}, 'GSM1249121': {'type': 'H9', 'mutation': 'no', 'treatment': 'no', 'passage': '48'}, 'GSM1249122': {'type': 'PGP1', 'mutation': 'no', 'treatment': 'no', 'passage': '34'}, 'GSM1249123': {'type': 'PGP9', 'mutation': 'no', 'treatment': 'no', 'passage': '12'}, 'GSM1509300': {'line': 'Hela', 'transfection': 'U2AF35 siRNA'}, 'GSM2653491': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM1012771': {'phase': 'M', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM2047654': {'well': 'D05', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1155380': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1155381': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1155382': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1155383': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1155384': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1155385': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1155386': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM2597187': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '1', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM1334293': {'strain': 'HEK293 T-Rex FLAG:DICER1 FLP-IN', 'line': 'HEK293'}, 'GSM1334295': {'strain': 'HEK293 T-Rex FLAG:DICER1 FLP-IN', 'line': 'HEK293'}, 'GSM1334294': {'strain': 'HEK293 T-Rex FLAG:DICER1 FLP-IN', 'line': 'HEK293'}, 'GSM2597186': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '1', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM3594690': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM1863703': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM2877924': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM1892599': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1949047': {'type': 'none', 'treatment': 'none'}, 'GSM1892597': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2361371': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'GTGAAA'}, 'GSM2816161': {'line': 'H9'}, 'GSM2816160': {'line': 'H9'}, 'GSM2535673': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1138', 'samplename': '1_413UNST_C10', 'seqsite': 'BRI', 'sampleID': 'S13217', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1138', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C10'}, 'GSM2535672': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1137', 'samplename': '1_413UNST_C47', 'seqsite': 'BRI', 'sampleID': 'S13192', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1137', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C47'}, 'GSM2816165': {'line': 'H9'}, 'GSM2816164': {'line': 'H9'}, 'GSM2816167': {'line': 'H9'}, 'GSM2816166': {'line': 'H9'}, 'GSM2535679': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1145', 'samplename': '1_413UNST_C53', 'seqsite': 'BRI', 'sampleID': 'S13202', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1145', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C53'}, 'GSM2287154': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2361376': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells'}, 'GSM2361375': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells'}, 'GSM2361374': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells'}, 'GSM1376033': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376032': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376031': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376030': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376037': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376036': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376035': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376034': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1603318': {'cl': '105', 'ca': '143', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '1.05', 'id': 'S04', 'co2': '28', 'rr': '--', 'plavix': 'Yes', 'na': '141', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '--', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '19', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '--', 'gender': 'M', 'k': '4.2', 'batch': '3', 'prasugrel': '--', 'cad': 'Yes'}, 'GSM1376039': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376038': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2779589': {'duration': '2 day', 'line': 'M229DDR', 'type': 'Melanoma cell line', 'cells': 'PD-1', 'treatment': '20 min of STP, 0.5 uM'}, 'GSM2285746': {'status': 'healthy volunteer', 'gender': 'female', 'age': '54', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2212652': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM1281889': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Primary Cells', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'NA', 'device': 'NA', 'lvad': 'NA'}, 'GSM1281888': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '71', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281887': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Female', 'age': '51', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281886': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '65', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281885': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '42', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281884': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281883': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '67', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281882': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '63', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281881': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281880': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '52', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': 'NA', 'race': 'Asian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1939614': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'RORC-siRNA'}, 'GSM1939615': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line T-47D', 'treatment': 'control-siRNA'}, 'GSM1939616': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line T-47D', 'treatment': 'control-siRNA'}, 'GSM1939617': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line T-47D', 'treatment': 'control-siRNA'}, 'GSM1939610': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'control-siRNA'}, 'GSM1939611': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'control-siRNA'}, 'GSM1939612': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'RORC-siRNA'}, 'GSM1939613': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'RORC-siRNA'}, 'GSM1939618': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line T-47D', 'treatment': 'RORC-siRNA'}, 'GSM1939619': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line T-47D', 'treatment': 'RORC-siRNA'}, 'GSM2680229': {'line': 'TPC1', 'type': 'papillary thyroid cancer cells', 'transfection': 'C1orf106'}, 'GSM2680228': {'line': 'TPC1', 'type': 'papillary thyroid cancer cells', 'transfection': 'C1orf106'}, 'GSM2680227': {'line': 'TPC1', 'type': 'papillary thyroid cancer cells', 'transfection': 'Vector'}, 'GSM2680226': {'line': 'TPC1', 'type': 'papillary thyroid cancer cells', 'transfection': 'Vector'}, 'GSM2779584': {'duration': '1 day', 'line': 'M229DDR', 'type': 'Melanoma cell line', 'cells': 'GFP', 'treatment': '20 min of STP, 0.5 uM'}, 'GSM2274875': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34321', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10354', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C61', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10354', 'studysiteshort': 'YALE'}, 'GSM2274874': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34319', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10352', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C45', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10352', 'studysiteshort': 'YALE'}, 'GSM2274877': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34328', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10361', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C75', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10361', 'studysiteshort': 'YALE'}, 'GSM2274876': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34322', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10355', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C67', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10355', 'studysiteshort': 'YALE'}, 'GSM2274871': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34314', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10347', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C20', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10347', 'studysiteshort': 'YALE'}, 'GSM2274870': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34312', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10345', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C14', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10345', 'studysiteshort': 'YALE'}, 'GSM2274873': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34318', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10351', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C07', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10351', 'studysiteshort': 'YALE'}, 'GSM2274872': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34317', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10350', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C38', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10350', 'studysiteshort': 'YALE'}, 'GSM2779586': {'duration': '1 day', 'line': 'M229DDR', 'type': 'Melanoma cell line', 'cells': 'PD-1', 'treatment': 'none'}, 'GSM2274879': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34629', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10555', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C56', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10555', 'studysiteshort': 'YALE'}, 'GSM2274878': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34330', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10363', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C87', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10363', 'studysiteshort': 'YALE'}, 'GSM2665931': {'age': 'Day 130', 'well': 'D9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM909242': {'line': 'HEK293', 'sirna': 'none'}, 'GSM909243': {'line': 'HEK293', 'sirna': 'scrambled-A'}, 'GSM909244': {'line': 'HEK293', 'sirna': \"5'-NNCCUGAAUG GGCGCGAAUUC-3' dsRNA oligo from Dharmacon\"}, 'GSM909245': {'line': 'HEK293', 'sirna': \"5'-NNGACCGAGA UUACAUGGAUA-3' dsRNA oligo from Dharmacon\"}, 'GSM1395698': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1521555': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1172890': {'subtype': 'Luminal', 'line': 'MDAMB361', 'type': 'breast cancer'}, 'GSM1395699': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1898278': {'gender': 'male', 'age': '70', 'number': '7', 'source': 'liver parenchyma', 'state': 'control (clean resection edge liver metastasis)', 'mutation': 'none', 'type': 'Normal biliary stem cells'}, 'GSM1898279': {'gender': 'male', 'age': '65', 'number': '6', 'source': 'liver parenchyma', 'state': 'control (clean resection edge liver metastasis)', 'mutation': 'none', 'type': 'Normal biliary stem cells'}, 'GSM1208969': {'gender': 'female', 'source': 'second trimester amniotic fluid supernatant'}, 'GSM1208968': {'gender': 'female', 'source': 'second trimester amniotic fluid supernatant'}, 'GSM2722909': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.187', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.229', 'age': '53', 'tcga_subtype_dif': '0.258', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.208', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM3208684': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM984354': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM2722900': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.089', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.277', 'age': '42', 'tcga_subtype_dif': '0.268', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.157', 'outcome': 'Optimal', 'review': 'Not available', 'stage': 'III'}, 'GSM2722902': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '0.005', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.409', 'age': '59', 'tcga_subtype_dif': '-0.023', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.487', 'outcome': 'Suboptimal', 'review': 'Not available', 'stage': 'III'}, 'GSM2722905': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.259', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.375', 'age': '60', 'tcga_subtype_dif': '0.071', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.62', 'outcome': 'Optimal', 'review': 'Not available', 'stage': 'III'}, 'GSM984357': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM2722907': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.155', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.168', 'age': '62', 'tcga_subtype_dif': '0.47', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '-0.088', 'outcome': 'Suboptimal', 'review': 'Not available', 'stage': 'III'}, 'GSM1536198': {'type': 'H7 hESC cell line', 'point': '15 days'}, 'GSM3208687': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1536192': {'type': 'Adult heart', 'point': 'adult'}, 'GSM1536193': {'type': 'Adult heart', 'point': 'adult'}, 'GSM2197743': {'passages': '25-30'}, 'GSM2197742': {'passages': '25-30'}, 'GSM1536196': {'type': 'H7 hESC cell line', 'point': '1 year'}, 'GSM1536197': {'type': 'H7 hESC cell line', 'point': '15 days'}, 'GSM1536194': {'type': 'H7 hESC cell line', 'point': '1 year'}, 'GSM1536195': {'type': 'H7 hESC cell line', 'point': '1 year'}, 'GSM984353': {'grade': '3', 'recurrence': '1', 'size': '1', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM3208683': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2565168': {'construction': 'PLATE-Seq', 'drug': 'Daunorubicin hydrochloride'}, 'GSM2565169': {'construction': 'PLATE-Seq', 'drug': 'Toremifene'}, 'GSM2565164': {'construction': 'PLATE-Seq', 'drug': 'Bosutinib'}, 'GSM2565165': {'construction': 'PLATE-Seq', 'drug': 'Octreotide in Water'}, 'GSM2565166': {'construction': 'PLATE-Seq', 'drug': 'Vinorelbine'}, 'GSM2565167': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine'}, 'GSM2565160': {'construction': 'PLATE-Seq', 'drug': 'Folinic acid calcium salt'}, 'GSM2565161': {'construction': 'PLATE-Seq', 'drug': 'Cisplatin'}, 'GSM2565162': {'construction': 'PLATE-Seq', 'drug': 'Mitotane'}, 'GSM3594340': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1416621': {'type': 'HUVEC', 'replicate': 'biological replicate #1', 'details': 'Sample from 1 individual', 'treatment': 'no treatment control', 'passage': 'passage 5'}, 'GSM1965158': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM984359': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM1965159': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1551980': {'replicate': '2', 'synchronization': '20', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM984358': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM1293570': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1293571': {'tissue': 'peripheral blood mononuclear cells', 'group': 'young', 'years': '30'}, 'GSM1293572': {'tissue': 'peripheral blood mononuclear cells', 'group': 'old', 'years': '64'}, 'GSM1416622': {'type': 'HUVEC', 'replicate': 'biological replicate #2', 'details': 'Pool of at least 3 individuals', 'treatment': 'no treatment control', 'passage': 'passage 9'}, 'GSM1293574': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1293575': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1293576': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1293577': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1293578': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1293579': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1678791': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM1678790': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'whole cell'}, 'GSM1678797': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM1965154': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1678795': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'whole cell'}, 'GSM1678794': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM1624309': {'gender': 'M', 'age': '43', 'tissue': 'skin', 'disease': 'C', 'subject': '18'}, 'GSM1965155': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2454089': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1965152': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965153': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2303139': {'race': 'White', 'age': '56', 'bmi': '26.6', 'disease': 'Non-diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Intact', 'id': 'ACIB065'}, 'GSM2303138': {'race': 'African American', 'age': '30', 'bmi': '55', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Intact', 'id': 'ACHY057'}, 'GSM2303131': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Dissociated', 'id': 'ACCR015A'}, 'GSM2303130': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Dissociated', 'id': 'ACCG268'}, 'GSM2303133': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Dissociated', 'id': 'ACEL337'}, 'GSM2303132': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Dissociated', 'id': 'ACEK420A'}, 'GSM2303135': {'race': 'White', 'age': '56', 'bmi': '26.6', 'disease': 'Non-diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Dissociated', 'id': 'ACIB065'}, 'GSM2303134': {'race': 'African American', 'age': '30', 'bmi': '55', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Dissociated', 'id': 'ACHY057'}, 'GSM2303137': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Dissociated', 'id': 'ACJV399'}, 'GSM2303136': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Dissociated', 'id': 'ACIW009'}, 'GSM2454080': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454081': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454082': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1888680': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888681': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM2454083': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454084': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454085': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454086': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1624306': {'gender': 'M', 'age': '30', 'tissue': 'skin', 'disease': 'C', 'subject': '15'}, 'GSM1920680': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT08'}, 'GSM2630233': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM1634449': {'type': 'U2OS', 'treatment': 'Torin-1'}, 'GSM1634448': {'type': 'U2OS', 'treatment': 'Myc activation (36 hr)'}, 'GSM1634443': {'type': 'U2OS', 'treatment': 'control'}, 'GSM1634447': {'type': 'U2OS', 'treatment': 'Myc activation (36 hr)'}, 'GSM1634446': {'type': 'U2OS', 'treatment': 'control'}, 'GSM1634445': {'type': 'U2OS', 'treatment': 'control'}, 'GSM1634444': {'type': 'U2OS', 'treatment': 'Myc activation (36 hr)'}, 'GSM1872847': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872846': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1950231': {'line': 'PANC1', 'treatment': 'KMT2D siRNA1'}, 'GSM1872844': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872843': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872842': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872841': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872840': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1950239': {'line': 'PANC1', 'treatment': 'KMT2C siRNA3'}, 'GSM1872849': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872848': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2194469': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194468': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194461': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194460': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194463': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194462': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194465': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194464': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194467': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194466': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2719738': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719739': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719734': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719735': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719736': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'scrambled control'}, 'GSM2719737': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'scrambled control'}, 'GSM2719730': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719731': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719732': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'scrambled control'}, 'GSM2719733': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'scrambled control'}, 'GSM1337342': {'source': 'Cells obtained from trachea of adult lung transplant donor', 'type': 'Airway epithelial cells', 'treatment': 'control'}, 'GSM1337343': {'source': 'Cells obtained from trachea of adult lung transplant donor', 'type': 'Airway epithelial cells', 'treatment': 'flagellin'}, 'GSM1337340': {'source': 'Cells obtained from trachea of adult lung transplant donor', 'type': 'Airway epithelial cells', 'treatment': 'flagellin'}, 'GSM1337341': {'source': 'Cells obtained from trachea of adult lung transplant donor', 'type': 'Airway epithelial cells', 'treatment': 'control'}, 'GSM1337344': {'source': 'Cells obtained from trachea of adult lung transplant donor', 'type': 'Airway epithelial cells', 'treatment': 'flagellin'}, 'GSM3104689': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104688': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2209819': {'line': 'HepG2.2.15', 'lentivirus': 'CD36 overexpression'}, 'GSM2209818': {'line': 'HepG2.2.15', 'lentivirus': 'CD36 overexpression'}, 'GSM2209817': {'line': 'HepG2.2.15', 'lentivirus': 'vector'}, 'GSM2209816': {'line': 'HepG2.2.15', 'lentivirus': 'vector'}, 'GSM2209815': {'line': 'HepG2.2.15', 'lentivirus': 'vector'}, 'GSM3104687': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM1464365': {'status': 'small cell lung cancer'}, 'GSM2333025': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Nulliparous'}, 'GSM2333026': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Nulliparous'}, 'GSM2333027': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Nulliparous'}, 'GSM1395708': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395709': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395706': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395707': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395704': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395705': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395702': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395703': {'subtype': 'Pro+Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395700': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2333021': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Parous'}, 'GSM1821968': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM2398405': {'line': 'BXPC3', 'type': 'SV40 large T antigen immortalized'}, 'GSM2643518': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '0.1% DMSO', 'time': '24 h'}, 'GSM2333022': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Parous'}, 'GSM2147891': {'patient': 'P503', 'age': '30', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2643514': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM Syn-TEF1', 'time': '24 h'}, 'GSM2643515': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM Syn-TEF1', 'time': '24 h'}, 'GSM2643516': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '0.1% DMSO', 'time': '24 h'}, 'GSM2333023': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Parous'}, 'GSM2643510': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM Syn-TEF1', 'time': '24 h'}, 'GSM2398407': {'line': 'BXPC3', 'type': 'SV40 large T antigen immortalized'}, 'GSM2643512': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM Syn-TEF1', 'time': '24 h'}, 'GSM1821967': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM2147893': {'patient': 'P503', 'age': '30', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2667981': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2_enhancer_KO#2'}, 'GSM3465593': {'type': 'mature keratinocyte differentiated from hESC', 'genotype': 'Differentiation from wild type hESC', 'stage': 'mature keratinocyte from terminal differentiation'}, 'GSM2147894': {'patient': 'P503', 'age': '30', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM3465591': {'type': 'Epidermal differentitation at Day 45', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 45'}, 'GSM3465590': {'type': 'Epidermal differentitation at Day 21', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 21'}, 'GSM3465594': {'type': 'mature keratinocyte differentiated from hESC', 'genotype': 'Differentiation from wild type hESC', 'stage': 'mature keratinocyte from terminal differentiation'}, 'GSM2398403': {'line': 'BXPC3', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398402': {'line': 'BXPC3', 'type': 'SV40 large T antigen immortalized'}, 'GSM2784484': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '24h'}, 'GSM2784485': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '24h'}, 'GSM2784486': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '24h'}, 'GSM2784487': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '24h'}, 'GSM2784480': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '0h'}, 'GSM2784481': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '24h'}, 'GSM2784482': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '24h'}, 'GSM2784483': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '24h'}, 'GSM2784488': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '24h'}, 'GSM2784489': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '24h'}, 'GSM1412719': {'gender': 'Female', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412718': {'gender': 'Female', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412715': {'gender': 'Female', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412714': {'gender': 'Female', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412717': {'gender': 'Male', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412716': {'gender': 'Male', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412711': {'gender': 'Male', 'tissue': 'FSHD2 Muscle biopsy'}, 'GSM1412710': {'gender': 'Male', 'tissue': 'FSHD2 Muscle biopsy'}, 'GSM1412713': {'gender': 'Male', 'tissue': 'FSHD2 Muscle biopsy'}, 'GSM1412712': {'gender': 'Female', 'tissue': 'FSHD2 Muscle biopsy'}, 'GSM2771602': {'line': \"LNAR' tumor\", 'treatment': 'JQ1'}, 'GSM2771603': {'line': \"LNAR' tumor\", 'treatment': 'JQ1'}, 'GSM2771600': {'line': \"LNAR' tumor\", 'treatment': 'veh'}, 'GSM2771601': {'line': \"LNAR' tumor\", 'treatment': 'veh'}, 'GSM2771606': {'line': \"LREX' tumor\", 'treatment': 'veh'}, 'GSM2771607': {'line': \"LREX' tumor\", 'treatment': 'veh'}, 'GSM2771604': {'line': \"LNAR' tumor\", 'treatment': 'JQ1'}, 'GSM2771605': {'line': \"LREX' tumor\", 'treatment': 'JQ1'}, 'GSM2771608': {'line': \"LREX' tumor\", 'treatment': 'veh'}, 'GSM2771609': {'line': \"LREX' tumor\", 'treatment': 'veh'}, 'GSM2858956': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS55, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858957': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 10 ng/mL doxycycline', 'type': 'mature endothelial progeny of eAEP line MS55, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858954': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 10 ng/mL doxycycline', 'type': 'mature endothelial progeny of eAEP line MS53, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858955': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature endothelial progeny of eAEP line MS53, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858952': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature endothelial progeny of eAEP line MS49, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858953': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS53, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858950': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS49, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858951': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 10 ng/mL doxycycline', 'type': 'mature endothelial progeny of eAEP line MS49, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858958': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature endothelial progeny of eAEP line MS55, obtained by the downregulation of MYCN and SOX17 for four days'}, 'GSM2858959': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eMP line MS5, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2357929': {'condition': 'Microvesicle treated'}, 'GSM2357928': {'condition': 'HDM treated'}, 'GSM2357927': {'condition': 'Control'}, 'GSM2357926': {'condition': 'HDM+Microvesicle treated'}, 'GSM2357925': {'condition': 'Microvesicle treated'}, 'GSM2357924': {'condition': 'HDM treated'}, 'GSM2357923': {'condition': 'Control'}, 'GSM2357922': {'condition': 'HDM+Microvesicle treated'}, 'GSM2357921': {'condition': 'Microvesicle treated'}, 'GSM2357920': {'condition': 'HDM treated'}, 'GSM2932908': {'pucai': '60', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '7'}, 'GSM2932909': {'pucai': '55', 'score': '3', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '12'}, 'GSM2932906': {'pucai': '85', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2932907': {'pucai': '75', 'score': '1', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2932904': {'pucai': '30', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2932905': {'pucai': '80', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '13'}, 'GSM2932902': {'pucai': '65', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '9'}, 'GSM2932903': {'pucai': '60', 'score': '10', 'remission': 'Yes', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2932900': {'pucai': '50', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM1647051': {'illumina_index': '18', 'point': '18', 'batch': '8', 'agent': 'GC', 'rin': '6.7', 'individual': 'M375'}, 'GSM2052396': {'differentiation': '14', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052397': {'differentiation': '14', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052394': {'differentiation': '11', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052395': {'differentiation': '14', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052392': {'differentiation': '11', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052393': {'differentiation': '11', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052390': {'differentiation': '8', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052391': {'differentiation': '8', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052398': {'differentiation': '17', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052399': {'differentiation': '17', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2108499': {'stages': 'myotube nucleus'}, 'GSM2108498': {'stages': 'myotube nucleus'}, 'GSM2108491': {'stages': 'myotube nucleus'}, 'GSM2108490': {'stages': 'myotube nucleus'}, 'GSM2108493': {'stages': 'myotube nucleus'}, 'GSM2108492': {'stages': 'myotube nucleus'}, 'GSM2247363': {'line': 'H1 (WA-01)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2108494': {'stages': 'myotube nucleus'}, 'GSM2108497': {'stages': 'myotube nucleus'}, 'GSM2108496': {'stages': 'myotube nucleus'}, 'GSM1945969': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18510', 'for': '30min'}, 'GSM1945968': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18510', 'for': '30min'}, 'GSM1945961': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '60min'}, 'GSM1945960': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '60min'}, 'GSM1945963': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18505', 'for': '60min'}, 'GSM1945962': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18505', 'for': '30min'}, 'GSM1945965': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18507', 'for': '60min'}, 'GSM1945964': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18507', 'for': '30min'}, 'GSM1945967': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18508', 'for': '60min'}, 'GSM2575306': {'line': 'WM989', 'subclone': 'C2', 'condition': 'NoDrug'}, 'GSM2085709': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085708': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085705': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085704': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2247362': {'line': 'H1 (WA-01)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2085706': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085701': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085700': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085703': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085702': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM1482488': {'with': '1 uM MG132', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM2649113': {'fusion': 'SID4x-dCas9-KRAB', 'tissue': 'Ishikawa endometrial cancer', 'transfected': 'pool of 42 gRNAs targeting 10 ERBS', 'treatment': 'estradiol, 8 hr 10 nM E2'}, 'GSM2649116': {'fusion': 'SID4x-dCas9-KRAB', 'tissue': 'Ishikawa endometrial cancer', 'transfected': 'pool of 4 gRNAs targeting IL1RN promoter', 'treatment': 'control'}, 'GSM2649117': {'fusion': 'SID4x-dCas9-KRAB', 'tissue': 'Ishikawa endometrial cancer', 'transfected': 'pool of 42 gRNAs targeting 10 ERBS', 'treatment': 'estradiol, 8 hr 10 nM E2'}, 'GSM2649114': {'fusion': 'SID4x-dCas9-KRAB', 'tissue': 'Ishikawa endometrial cancer', 'transfected': 'pool of 42 gRNAs targeting 10 ERBS', 'treatment': 'control'}, 'GSM2649115': {'fusion': 'SID4x-dCas9-KRAB', 'tissue': 'Ishikawa endometrial cancer', 'transfected': 'pool of 4 gRNAs targeting IL1RN promoter', 'treatment': 'estradiol, 8 hr 10 nM E2'}, 'GSM1482480': {'with': 'none', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM1482481': {'with': 'none', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM1482482': {'with': '0.5uM Reversine', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM2649119': {'fusion': 'SID4x-dCas9-KRAB', 'tissue': 'Ishikawa endometrial cancer', 'transfected': 'pool of 4 gRNAs targeting IL1RN promoter', 'treatment': 'estradiol, 8 hr 10 nM E2'}, 'GSM1482484': {'with': '0.5uM Reversine', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM1482485': {'with': '0.1uM BafA1', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM1482486': {'with': '0.1uM BafA1', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM1482487': {'with': '0.1uM BafA1', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM2247361': {'line': 'H1 (WA-01)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2242170': {'type': 'IMR90 iPSC derived cardiac progenitor cells', 'condition': 'Microgravity', 'stage': 'Day 8 differentiated cells'}, 'GSM2170464': {'stage': 'Definitive endoderm 1'}, 'GSM1946123': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '60min'}, 'GSM2048884': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2259869': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259868': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259867': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259866': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': '0'}, 'GSM2259865': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259864': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259863': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259862': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259861': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259860': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2390773': {'disease': 'Healthy Control'}, 'GSM2390772': {'disease': 'Healthy Control'}, 'GSM2361858': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390770': {'disease': 'Healthy Control'}, 'GSM2390777': {'disease': 'Healthy Control'}, 'GSM2390776': {'disease': 'Healthy Control'}, 'GSM2390775': {'disease': 'Healthy Control'}, 'GSM2482835': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM2361852': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361853': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390779': {'disease': 'Healthy Control'}, 'GSM2390778': {'disease': 'Healthy Control'}, 'GSM2361856': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361857': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361854': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361855': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705279': {'pcr': 'KAPA Pol', 'inactivation': 'heat', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '15.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2247365': {'line': 'H1 (WA-01)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2427815': {'type': 'iPSC-derived neurons'}, 'GSM2463223': {'line': 'HepG2 HCC cell line', 'expressing': 'NC TuD'}, 'GSM2427817': {'type': 'iPSC-derived neurons'}, 'GSM2463221': {'line': 'HepG2 HCC cell line', 'expressing': 'NC TuD'}, 'GSM2463226': {'line': 'SK-Hep1 HCC cell line', 'expressing': 'miR-17 TuD'}, 'GSM2463227': {'line': 'SK-Hep1 HCC cell line', 'expressing': 'miR-17 TuD'}, 'GSM2463224': {'line': 'SK-Hep1 HCC cell line', 'expressing': 'NC TuD'}, 'GSM2463225': {'line': 'SK-Hep1 HCC cell line', 'expressing': 'NC TuD'}, 'GSM2125781': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM2427819': {'type': 'iPSC-derived neurons'}, 'GSM2427818': {'type': 'iPSC-derived neurons'}, 'GSM2068663': {'line': 'MCF7', 'with': 'EtOH', 'passage': 'p10'}, 'GSM2068662': {'line': 'MCF7', 'with': '10nM E2 for 24hr', 'passage': 'p9'}, 'GSM2068661': {'line': 'MCF7', 'with': '10nM E2 for 12hr', 'passage': 'p9'}, 'GSM1105769': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2068660': {'line': 'MCF7', 'with': '10nM E2 for 8hr', 'passage': 'p9'}, 'GSM1844543': {'gender': 'Male', 'tissue': 'skin', 'diagnosis': 'Malignant melanoma'}, 'GSM1105767': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105766': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2407513': {'line': 'HCT116', 'transfection': 'SiChe-1'}, 'GSM2407510': {'line': 'HCT116', 'transfection': 'siControl'}, 'GSM2248148': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248149': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248146': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248147': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248144': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2407511': {'line': 'HCT116', 'transfection': 'SiChe-1'}, 'GSM2248142': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248143': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248140': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248141': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM3594415': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594414': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594417': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594416': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594411': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594410': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594413': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594412': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594419': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594418': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2176188': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176189': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176186': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176187': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176184': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176185': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176182': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176183': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176180': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176181': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2630303': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630302': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630301': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630300': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630307': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630306': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630305': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630304': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630309': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630308': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2410317': {'antibody': 'anti-FLAG(M2) (Sigma-1804, Lot# SLBK1346V)', 'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'WT EBF3-FLAG'}, 'GSM2344518': {'gender': 'Female', 'age': '14', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Schizophrenic Patient'}, 'GSM2344519': {'gender': 'Female', 'age': '14', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Schizophrenic Patient'}, 'GSM2344516': {'enteritis': 'no', 'tissue': 'sigmoid colon', 'infected': 'no'}, 'GSM2344517': {'gender': 'Female', 'age': '14', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Schizophrenic Patient'}, 'GSM2344514': {'enteritis': 'no', 'tissue': 'sigmoid colon', 'infected': 'no'}, 'GSM2344515': {'enteritis': 'no', 'tissue': 'sigmoid colon', 'infected': 'no'}, 'GSM2344512': {'enteritis': 'yes', 'tissue': 'sigmoid colon', 'infected': 'yes'}, 'GSM2344513': {'enteritis': 'no', 'tissue': 'sigmoid colon', 'infected': 'no'}, 'GSM2344510': {'enteritis': 'yes', 'tissue': 'sigmoid colon', 'infected': 'yes'}, 'GSM2344511': {'enteritis': 'no', 'tissue': 'sigmoid colon', 'infected': 'no'}, 'GSM2184761': {'status': 'unfed', 'age': '2 month', 'diagnosis': 'necrotizing enterocolitis'}, 'GSM2430230': {'with': 'JQ1 treated (500 nM)', 'tissue': 'skin squamous cell carcinoma', 'type': 'primary cancer associated fibroblasts', 'passage': '5'}, 'GSM2184760': {'status': 'fed', 'age': '2 month', 'diagnosis': 'necrotizing enterocolitis'}, 'GSM2107859': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2486200': {'line': 'U266', 'type': 'Multiple Myeloma cell line', 'condition': 'CMLD010509-treated 50nM 6 hours'}, 'GSM2496033': {'type': 'iPSC-derived motor neurons', 'genotype': 'SOD1+/+', 'days': 'after 12 days of differentiation'}, 'GSM2649938': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2496036': {'type': 'iPSC-derived motor neurons', 'genotype': 'SOD1+/A272C', 'days': 'after 12 days of differentiation'}, 'GSM2496035': {'type': 'iPSC-derived motor neurons', 'genotype': 'SOD1+/A272C', 'days': 'after 12 days of differentiation'}, 'GSM2496034': {'type': 'iPSC-derived motor neurons', 'genotype': 'SOD1+/+', 'days': 'after 12 days of differentiation'}, 'GSM2649934': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649935': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649936': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649937': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649930': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649931': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649932': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649933': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM957430': {'sample': 'GM11993', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1362'}, 'GSM957431': {'sample': 'GM11994', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1362'}, 'GSM957432': {'sample': 'GM11995', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1362'}, 'GSM957433': {'sample': 'GM11996', 'protocol': 'non-directional', 'relation': 'son', 'family': '1362'}, 'GSM957434': {'sample': 'GM10838', 'protocol': 'non-directional', 'relation': 'father', 'family': '1420'}, 'GSM957435': {'sample': 'GM10839', 'protocol': 'non-directional', 'relation': 'mother', 'family': '1420'}, 'GSM957436': {'sample': 'GM11997', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1420'}, 'GSM957437': {'sample': 'GM11998', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1420'}, 'GSM957438': {'sample': 'GM11999', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1420'}, 'GSM957439': {'sample': 'GM12000', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1420'}, 'GSM1588877': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM2390889': {'disease': 'Healthy Control'}, 'GSM2142264': {'type': 'live sorted cells', 'library': '3'}, 'GSM2142265': {'type': 'live sorted cells', 'library': '4'}, 'GSM2142266': {'type': 'exocrine fraction, live sorted cells'}, 'GSM2142267': {'type': 'live sorted cells', 'library': '1'}, 'GSM2142260': {'type': 'TGFBR3+ sorted cells'}, 'GSM2142261': {'type': 'exocrine fraction, live sorted cells'}, 'GSM2142262': {'type': 'live sorted cells', 'library': '1'}, 'GSM2142263': {'type': 'live sorted cells', 'library': '2'}, 'GSM1381989': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1381988': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2142268': {'type': 'live sorted cells', 'library': '2'}, 'GSM2136958': {'subtype': '2', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '1'}, 'GSM1846921': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM1846920': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM2316629': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316628': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316623': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316622': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316621': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316620': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316627': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316626': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316625': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316624': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1668468': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with SMAD3 siRNA.', 'genotype': 'SMAD3 Knock-down'}, 'GSM1084147': {'with': 'siRNA against Nsun2', 'line': 'HEK293', 'type': 'Human Embryonic Kidney cells'}, 'GSM1084146': {'with': 'siRNA against Nsun2', 'line': 'HEK293', 'type': 'Human Embryonic Kidney cells'}, 'GSM1084145': {'with': 'scrambled control sequence', 'line': 'HEK293', 'type': 'Human Embryonic Kidney cells'}, 'GSM2102533': {'information': 'Control', 'type': 'Amnion', 'gender': 'Male'}, 'GSM1084143': {'with': 'scrambled control sequence', 'line': 'HEK293', 'type': 'Human Embryonic Kidney cells'}, 'GSM2102535': {'information': 'Control', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102536': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102537': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102538': {'information': 'Control', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102539': {'information': 'Control', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2536409': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36α'}, 'GSM2536408': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36α'}, 'GSM1084149': {'with': 'siRNA against Nsun2', 'line': 'HEK293', 'type': 'Human Embryonic Kidney cells'}, 'GSM1084148': {'with': 'siRNA against Nsun2', 'line': 'HEK293', 'type': 'Human Embryonic Kidney cells'}, 'GSM2232198': {'status': 'HCV', 'patient_identifier': 'A609', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 4h', 'endogenous_ifn': 'low ISG'}, 'GSM2232199': {'status': 'HCV', 'patient_identifier': 'A764', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 4h', 'endogenous_ifn': 'low ISG'}, 'GSM2232194': {'status': 'HCV', 'patient_identifier': 'B215', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2232195': {'status': 'HCV', 'patient_identifier': 'B320', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'high ISG'}, 'GSM2232196': {'status': 'HCV', 'patient_identifier': 'B346', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2232197': {'status': 'HCV', 'patient_identifier': 'A584', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 4h', 'endogenous_ifn': 'low ISG'}, 'GSM2232190': {'status': 'HCV', 'patient_identifier': 'B136', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2232191': {'status': 'HCV', 'patient_identifier': 'B283', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2232192': {'status': 'HCV', 'patient_identifier': 'A707', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2232193': {'status': 'HCV', 'patient_identifier': 'A972', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM3108335': {'line': 'A549', 'type': 'lung adenocarcinoma', 'variation': 'siNrf2'}, 'GSM3108334': {'line': 'A549', 'type': 'lung adenocarcinoma', 'variation': 'siNrf2'}, 'GSM3108336': {'line': 'A549', 'type': 'lung adenocarcinoma', 'variation': 'siNrf2'}, 'GSM3108331': {'line': 'A549', 'type': 'lung adenocarcinoma', 'variation': 'siControl'}, 'GSM2414778': {'line': 'HT29', 'type': 'epithelial colorectal cancer cell line'}, 'GSM3108333': {'line': 'A549', 'type': 'lung adenocarcinoma', 'variation': 'siControl'}, 'GSM3108332': {'line': 'A549', 'type': 'lung adenocarcinoma', 'variation': 'siControl'}, 'GSM2414779': {'line': 'HT55', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414776': {'line': 'HRA19', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2700360': {'line': 'MDA-MB-231', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM2452510': {'with': 'shRNA against KDM6B', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2452511': {'with': 'shRNA against KDM6B', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2452512': {'with': 'shRNA against KDM6B', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2414774': {'line': 'HCT15', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2212651': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212650': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212653': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2414775': {'line': 'HCT8', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2212655': {'gender': 'male', 'condition': 'control'}, 'GSM2212654': {'gender': 'female', 'condition': 'control'}, 'GSM2212657': {'gender': 'female', 'condition': 'control'}, 'GSM2212656': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2212659': {'gender': 'female', 'condition': 'control'}, 'GSM2212658': {'gender': 'male', 'condition': 'control'}, 'GSM2394447': {'individual': 'donor2', 'type': 'HAEC', 'treatment': 'siERG, 4h', 'passage': '6 to 10'}, 'GSM2394446': {'individual': 'donor2', 'type': 'HAEC', 'treatment': 'siERG, 4h', 'passage': '6 to 10'}, 'GSM2394441': {'individual': 'donor2', 'type': 'HAEC', 'treatment': 'mock, 4h', 'passage': '6 to 10'}, 'GSM2394440': {'individual': 'donor2', 'type': 'HAEC', 'treatment': 'mock, 4h', 'passage': '6 to 10'}, 'GSM2394443': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siCEBPD, TNFa, 4h', 'passage': '6 to 10'}, 'GSM2394442': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siCEBPD, control, 4h', 'passage': '6 to 10'}, 'GSM1664600': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP9'}, 'GSM1664601': {'tissue': 'matched normal from the same patient', 'id': 'LP7'}, 'GSM1664602': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP7'}, 'GSM1664603': {'tissue': 'matched normal from the same patient', 'id': 'LP10'}, 'GSM1664604': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP10'}, 'GSM1664605': {'tissue': 'matched normal from the same patient', 'id': 'LP8'}, 'GSM1664606': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP8'}, 'GSM1664607': {'tissue': 'matched normal from the same patient', 'id': 'LP6'}, 'GSM1664608': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP6'}, 'GSM1664609': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP1'}, 'GSM2543167': {'line': 'HeLa', 'variation': 'WT'}, 'GSM2543168': {'line': 'HeLa', 'variation': 'WT'}, 'GSM2543169': {'line': 'HeLa', 'variation': 'WT'}, 'GSM2535662': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1125', 'samplename': '1_413UNST_C79', 'seqsite': 'BRI', 'sampleID': 'S13229', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1125', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C79'}, 'GSM1704803': {'line': 'H1 embryonic stem cells', 'type': 'day 6 ES cells differentiating along the cardiac lineage', 'variation': 'ZNF503 shRNA knockdown'}, 'GSM2341173': {'state': 'control', 'individual': 'patient 7', 'type': 'cell culture of endometrial stromal cells', 'sites': 'Endometrial stroma'}, 'GSM2341172': {'state': 'control', 'individual': 'patient 6', 'type': 'cell culture of endometrial stromal cells', 'sites': 'Endometrial stroma'}, 'GSM2816170': {'line': 'H9'}, 'GSM2331236': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-LPS'}, 'GSM2331235': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-LPS'}, 'GSM2331234': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-LPS'}, 'GSM2331233': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-LPS'}, 'GSM2331232': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-LPS'}, 'GSM2331231': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-LPS'}, 'GSM2331230': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-LPS'}, 'GSM2816171': {'line': 'H9'}, 'GSM2564990': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2375018': {'line': 'RPMI8226', 'shRNA': 'Gapdh', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM1980449': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980448': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980445': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980444': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980447': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980446': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980441': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980440': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980443': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980442': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1546371': {'status': 'Non-proliferating, differentiated for 3 days', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546370': {'status': 'Non-proliferating, differentiated for 9 days', 'antibody': 'anti-Lamin A/C Santa Cruz sc7292', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546372': {'status': 'Non-proliferating, differentiated for 9 days', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM2266832': {'line': 'LAN-1', 'replicate': '1', 'treatment': 'GSK126 [2uM]', 'time': '5 days'}, 'GSM2266833': {'line': 'LAN-1', 'replicate': '2', 'treatment': 'GSK126 [2uM]', 'time': '5 days'}, 'GSM2266830': {'line': 'LAN-1', 'replicate': '1', 'treatment': 'GSK126 [2uM]', 'time': '2 days'}, 'GSM2266831': {'line': 'LAN-1', 'replicate': '2', 'treatment': 'GSK126 [2uM]', 'time': '2 days'}, 'GSM2204149': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2699690': {'type': 'hESCs-derived hepatic lineage cells'}, 'GSM2699691': {'type': 'hESCs-derived hepatic lineage cells'}, 'GSM2699692': {'type': 'hESCs-derived hepatic lineage cells'}, 'GSM1697177': {'number': '22'}, 'GSM1697178': {'number': '91'}, 'GSM1697179': {'number': '60'}, 'GSM2214068': {'line': 'RH4', 'type': 'rhabdomyosarcoma', 'treatment': 'DMSO', 'time': '6 hours'}, 'GSM2214069': {'line': 'RH4', 'type': 'rhabdomyosarcoma', 'treatment': 'doxycyclin inducible shRNA agaisnt PAX3-FOXO1', 'time': '48 hours'}, 'GSM2214061': {'line': '7250', 'type': 'fibroblast', 'treatment': 'NA', 'time': 'NA'}, 'GSM2214062': {'line': '7250', 'type': 'fibroblast', 'treatment': 'NA', 'time': 'NA'}, 'GSM2214063': {'line': 'RH4', 'type': 'rhabdomyosarcoma', 'treatment': 'JQ1 500 nM', 'time': '6 hours'}, 'GSM2214064': {'line': 'RH4', 'type': 'rhabdomyosarcoma', 'treatment': 'JQ1 5000 nM', 'time': '6 hours'}, 'GSM2214065': {'line': 'RH4', 'type': 'rhabdomyosarcoma', 'treatment': 'JQ1 500 nM', 'time': '6 hours'}, 'GSM2214066': {'line': 'RH4', 'type': 'rhabdomyosarcoma', 'treatment': 'DMSO', 'time': '6 hours'}, 'GSM2214067': {'line': 'RH4', 'type': 'rhabdomyosarcoma', 'treatment': 'DMSO', 'time': '6 hours'}, 'GSM1323651': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2', 'site': 'Moffitt Cancer Center', 'prepsa': '5.02', 'reads': '20,244,858', 'tissue': 'prostate', 'u': '69', 'mapped': '64.4%', 'id': 'MCC-PT199', 'bcr': '0'}, 'GSM1323650': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Negative', 'pstage': 'pT3', 'site': 'Moffitt Cancer Center', 'prepsa': '8.2', 'reads': '30,200,054', 'tissue': 'prostate', 'u': '98', 'mapped': '67.0%', 'id': 'MCC-PT184', 'bcr': '0'}, 'GSM1323653': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2', 'site': 'Moffitt Cancer Center', 'prepsa': '6.6', 'reads': '33,452,206', 'tissue': 'prostate', 'u': '50', 'mapped': '62.1%', 'id': 'MCC-PT243', 'bcr': '0'}, 'GSM1323652': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2', 'site': 'Moffitt Cancer Center', 'prepsa': '7.8', 'reads': '22,822,922', 'tissue': 'prostate', 'u': '57', 'mapped': '66.2%', 'id': 'MCC-PT236', 'bcr': '0'}, 'GSM1323655': {'tgleason': '8', 'race': 'NA', 'score': '448', 'sms': 'Negative', 'pstage': 'pT2B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '29.73', 'reads': '85,311,334', 'tissue': 'prostate', 'u': '85', 'mapped': '56.9%', 'id': 'UTPC020', 'bcr': '0'}, 'GSM1323654': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Negative', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '8', 'reads': '146,440,614', 'tissue': 'prostate', 'u': '72', 'mapped': '69.0%', 'id': 'UTPC008', 'bcr': '0'}, 'GSM1323657': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Negative', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '7.35', 'reads': '26,114,500', 'tissue': 'prostate', 'u': '82', 'mapped': '63.8%', 'id': 'UTPC162', 'bcr': '0'}, 'GSM1323656': {'tgleason': '6', 'race': 'NA', 'score': '336', 'sms': 'Positive', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '5.25', 'reads': '96,754,580', 'tissue': 'prostate', 'u': '63', 'mapped': '62.7%', 'id': 'UTPC107', 'bcr': '0'}, 'GSM1323659': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2', 'site': 'Atlanta VA Medical Center', 'prepsa': '1.83', 'reads': '56,712,230', 'tissue': 'prostate', 'u': '68.0', 'mapped': '46.5%', 'id': 'VA-PC-00-90', 'bcr': '0'}, 'GSM1323658': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '6.25', 'reads': '80,944,386', 'tissue': 'prostate', 'u': '69.5', 'mapped': '72.9%', 'id': 'VA-PC-00-87', 'bcr': '0'}, 'GSM2153181': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153180': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153187': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153186': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153185': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2523080': {'type': 'cell line', 'genotype': 'DNMT3BA603T/STP807ins'}, 'GSM1712135': {'line': 'MR49F', 'treatment': 'JQ1-Enzalutamide: CSM'}, 'GSM2674871': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Female', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '3', 'laboratory': 'MCRI', 'line': 'HES3/MIXL1 GFP/w', 'sex': 'Female'}, 'GSM2674870': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Female', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '2', 'laboratory': 'MCRI', 'line': 'HES3/MIXL1 GFP/w', 'sex': 'Female'}, 'GSM2674873': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Male', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '2', 'laboratory': 'MCRI', 'line': 'MEL1/INS GFP/w', 'sex': 'Female'}, 'GSM2674872': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Male', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '1', 'laboratory': 'MCRI', 'line': 'MEL1/INS GFP/w', 'sex': 'Female'}, 'GSM2674875': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Male', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '1', 'laboratory': 'MCRI', 'line': 'iPSC RM3.5', 'sex': 'Female'}, 'GSM2674874': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Male', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '3', 'laboratory': 'MCRI', 'line': 'MEL1/INS GFP/w', 'sex': 'Female'}, 'GSM2674877': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Male', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '3', 'laboratory': 'MCRI', 'line': 'iPSC RM3.5', 'sex': 'Female'}, 'GSM2674876': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Male', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '2', 'laboratory': 'MCRI', 'line': 'iPSC RM3.5', 'sex': 'Female'}, 'GSM2674879': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Female', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '3', 'laboratory': 'MCRI', 'line': 'H9 (MCRI)', 'sex': 'Female'}, 'GSM2674878': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Female', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '1', 'laboratory': 'MCRI', 'line': 'H9 (MCRI)', 'sex': 'Female'}, 'GSM1369063': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock'}, 'GSM2392595': {'treatment': 'Estrogen', 'genotype': 'Wild type'}, 'GSM2092918': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092919': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '11', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092914': {'bin': '15', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2092915': {'bin': '26', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2092916': {'bin': '26', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2092917': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '0', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092910': {'bin': '16', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092911': {'bin': '5', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092912': {'bin': '2', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092913': {'bin': '5', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': '20', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2584550': {'duration': '4h', 'with': 'BSA', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584551': {'duration': '4h', 'with': 'BSA', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584552': {'duration': '1h', 'with': 'IFNg', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584553': {'duration': '1h', 'with': 'IFNg', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584554': {'duration': '4h', 'with': 'IFNg', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584555': {'duration': '4h', 'with': 'IFNg', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584556': {'duration': '1h', 'with': 'Ly29002', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584557': {'duration': '1h', 'with': 'Ly29002', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584558': {'duration': '4h', 'with': 'Ly29002', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584559': {'duration': '4h', 'with': 'Ly29002', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM1369064': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siBEGAIN'}, 'GSM1963888': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963889': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963882': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963883': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963880': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963881': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963886': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963887': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963884': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963885': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM2931815': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '40190446', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precursor miR-181ab1', 'id': 'cs128'}, 'GSM2535669': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1133', 'samplename': '1_413UNST_C17', 'seqsite': 'BRI', 'sampleID': 'S13203', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1133', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C17'}, 'GSM2931814': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '41176850', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precursor miR-181ab1', 'id': 'cs128'}, 'GSM2931817': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '41455087', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing a non-silencing (NS) control precursor RNA', 'id': 'cs128'}, 'GSM1369065': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siCCNK'}, 'GSM2225819': {'tissue': 'pancreas'}, 'GSM2225818': {'tissue': 'pancreas'}, 'GSM2931816': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '38736066', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing a non-silencing (NS) control precursor RNA', 'id': 'cs128'}, 'GSM3711692': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '13'}, 'GSM3711693': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '13'}, 'GSM3711690': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '10'}, 'GSM3711691': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '10'}, 'GSM2225811': {'tissue': 'pancreas'}, 'GSM2225810': {'tissue': 'pancreas'}, 'GSM2225813': {'tissue': 'pancreas'}, 'GSM2225812': {'tissue': 'pancreas'}, 'GSM2225815': {'tissue': 'pancreas'}, 'GSM2225814': {'tissue': 'pancreas'}, 'GSM2225817': {'tissue': 'pancreas'}, 'GSM2225816': {'tissue': 'pancreas'}, 'GSM2565432': {'construction': 'PLATE-Seq', 'drug': 'Triapine'}, 'GSM2931813': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '48933934', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precuror miR-138', 'id': 'cs128'}, 'GSM2565433': {'construction': 'PLATE-Seq', 'drug': 'Zibotentan (ZD4054)'}, 'GSM2931812': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '39972990', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precuror miR-138', 'id': 'cs128'}, 'GSM2565430': {'construction': 'PLATE-Seq', 'drug': 'Sofrastaurin'}, 'GSM2565431': {'construction': 'PLATE-Seq', 'drug': 'Tariquidar'}, 'GSM2565436': {'construction': 'PLATE-Seq', 'drug': 'RS 17053 hydrochloride'}, 'GSM2565437': {'construction': 'PLATE-Seq', 'drug': 'IKK 16'}, 'GSM2565434': {'construction': 'PLATE-Seq', 'drug': '4 -METHOXYCHALCONE'}, 'GSM2931819': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '41809653', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precuror miR-138', 'id': 'cs131'}, 'GSM2565435': {'construction': 'PLATE-Seq', 'drug': 'THYMOQUINONE'}, 'GSM2931818': {'passages': 'P4-5', 'type': 'De-differentiated chondrocytes (DDCs)', 'reads': '43301479', 'tissue': 'Human osteoarthritic articular cartilage', 'with': 'lentivirus expressing precuror miR-138', 'id': 'cs131'}, 'GSM2397383': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2397382': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2397381': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2397380': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2397387': {'status': 'RA patient', 'group': 'Established RA', 'treatment': 'YES'}, 'GSM2397386': {'status': 'RA patient', 'group': 'Established RA', 'treatment': 'YES'}, 'GSM2397385': {'status': 'RA patient', 'group': 'Established RA', 'treatment': 'YES'}, 'GSM2397384': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2397389': {'status': 'RA patient', 'group': 'Established RA', 'treatment': 'YES'}, 'GSM2397388': {'status': 'RA patient', 'group': 'Established RA', 'treatment': 'YES'}, 'GSM2565438': {'construction': 'PLATE-Seq', 'drug': 'CGP 71683 hydrochloride'}, 'GSM2565439': {'construction': 'PLATE-Seq', 'drug': 'PF-04691502'}, 'GSM2144551': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2287752': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2756179': {'status': 'healthy donor (HD)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756178': {'status': 'healthy donor (HD)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2317009': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2144557': {'markers': 'not sorted'}, 'GSM2756177': {'status': 'healthy donor (HD)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756176': {'status': 'healthy donor (HD)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756175': {'status': 'healthy donor (HD)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756174': {'status': 'healthy donor (HD)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM1896250': {'individual': 'EU74', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1906399': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq (NC, negative control)', 'treatment': 'Cells serum starved (5 hrs) + DMSO for 5h', 'passage': '6-13'}, 'GSM1906398': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq (NC, negative control)', 'treatment': 'Cells serum starved (5 hrs) + DMSO for 5h', 'passage': '6-13'}, 'GSM1906397': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq (NC, negative control)', 'treatment': 'Cells serum starved (5 hrs) + DMSO for 5h', 'passage': '6-13'}, 'GSM1906396': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq', 'treatment': 'Cells serum starved (5 hrs) + 0.25 mM 5-ethynyl uridine (Life Technologies, E-10345) for 5h', 'passage': '6-13'}, 'GSM1906395': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq', 'treatment': 'Cells serum starved (5 hrs) + 0.25 mM 5-ethynyl uridine (Life Technologies, E-10345) for 5h', 'passage': '6-13'}, 'GSM1906394': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq', 'treatment': 'Cells serum starved (5 hrs) + 0.25 mM 5-ethynyl uridine (Life Technologies, E-10345) for 5h', 'passage': '6-13'}, 'GSM1906393': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq (NC, negative control)', 'treatment': 'Cells grown in fetal bovine serum + DMSO for 5h', 'passage': '6-13'}, 'GSM1906392': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq (NC, negative control)', 'treatment': 'Cells grown in fetal bovine serum + DMSO for 5h', 'passage': '6-13'}, 'GSM1906391': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq (NC, negative control)', 'treatment': 'Cells grown in fetal bovine serum + DMSO for 5h', 'passage': '6-13'}, 'GSM1906390': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq', 'treatment': 'Cells grown in fetal bovine serum + 0.25 mM 5-ethynyl uridine (Life Technologies, E-10345) for 5h', 'passage': '6-13'}, 'GSM1896253': {'individual': 'EU76', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896254': {'individual': 'EU76', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896255': {'individual': 'EU78', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896256': {'individual': 'EU78', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896257': {'individual': 'EU78', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2317002': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1015453': {'line': 'BCBL-1', 'antibody': 'anti-Argonaute 2A8', 'virus': 'KSHV'}, 'GSM1015452': {'line': 'BC-3', 'antibody': 'anti-Argonaute 2A8', 'virus': 'KSHV'}, 'GSM1015451': {'line': 'BC-3', 'antibody': 'anti-Argonaute 2A8', 'virus': 'KSHV'}, 'GSM1015450': {'line': 'BC-3', 'antibody': 'anti-Argonaute 2A8', 'virus': 'KSHV'}, 'GSM1015454': {'line': 'BCBL-1', 'antibody': 'anti-Argonaute 2A8', 'virus': 'KSHV'}, 'GSM2806216': {'tissue': 'lateral temporal lobe', 'group': 'Young'}, 'GSM2806217': {'tissue': 'lateral temporal lobe', 'group': 'Young'}, 'GSM2806214': {'tissue': 'lateral temporal lobe', 'group': 'Young'}, 'GSM2806215': {'tissue': 'lateral temporal lobe', 'group': 'Young'}, 'GSM1477602': {'variation': 'FOX2'}, 'GSM1477603': {'variation': 'WT'}, 'GSM2806218': {'tissue': 'lateral temporal lobe', 'group': 'Young'}, 'GSM1477601': {'variation': 'FOX2'}, 'GSM1477604': {'variation': 'WT'}, 'GSM1868769': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868768': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2653618': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2653619': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2653612': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2653613': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2653610': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM1868762': {'type': 'Memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2653616': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2653617': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2653614': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2653615': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2058172': {'line': 'V703', 'tissue': 'colorectal cancer cell line'}, 'GSM2642562': {'control': 'Cocaine Dependence', 'death': 'acute cocaine overdose; hypertensive cardiac disease', 'age': '34', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.31', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642563': {'control': 'Cocaine Use Disorder', 'death': 'cocaine intoxication', 'age': '39', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.48', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642560': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '45', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.26', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642561': {'control': 'Cocaine Dependence', 'death': 'cocaine toxicity; cerebrovascular accident', 'age': '44', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.07', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642566': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '21', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '5.64', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642564': {'control': 'Cocaine Dependence', 'death': 'acute cocaine toxicity', 'age': '28', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.40', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642565': {'control': 'Cocaine Dependence', 'death': 'cocaine toxicity', 'age': '35', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.76', 'ethnicity': 'Hispanic or Latino'}, 'GSM1470388': {'line': 'U-2 OS', 'type': 'total RNA'}, 'GSM2357069': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 5', 'point': '03h'}, 'GSM2357066': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM1470387': {'line': 'U-2 OS', 'type': 'total RNA'}, 'GSM1294967': {'line': 'MCF7'}, 'GSM2170704': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1294968': {'line': 'MCF7'}, 'GSM1294969': {'line': 'MCF7'}, 'GSM2565268': {'construction': 'PLATE-Seq', 'drug': 'Fludarabine'}, 'GSM1368021': {'line': 'HEK293', 'transfection': 'mock', 'purification': 'oligo(dT) beads'}, 'GSM2577206': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '0h'}, 'GSM2577207': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '0h'}, 'GSM2577204': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '22h'}, 'GSM2577205': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '22h'}, 'GSM1649199': {'tissue': 'alpha cells', 'stage': 'adult'}, 'GSM1649198': {'tissue': 'alpha cells', 'stage': 'adult'}, 'GSM2577200': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '18h'}, 'GSM2577201': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '18h'}, 'GSM1649195': {'tissue': 'beta cells', 'stage': 'adult'}, 'GSM1649194': {'tissue': 'beta cells', 'stage': 'adult'}, 'GSM1649197': {'tissue': 'beta cells', 'stage': 'adult'}, 'GSM1649196': {'tissue': 'beta cells', 'stage': 'adult'}, 'GSM1649191': {'tissue': 'beta cells', 'stage': 'adult'}, 'GSM2731749': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2577208': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '3h'}, 'GSM1649192': {'tissue': 'beta cells', 'stage': 'adult'}, 'GSM2875689': {'line': 'MRC-5 fibroblasts', 'infection': '0.1', 'point': '9 days'}, 'GSM2875688': {'line': 'MRC-5 fibroblasts', 'infection': '0.1', 'point': '9 days'}, 'GSM2875683': {'line': 'THP-1 macrophages', 'infection': '0.1', 'point': '9 days'}, 'GSM2875682': {'line': 'THP-1 macrophages', 'infection': '0.1', 'point': '9 days'}, 'GSM2252680': {'stimulation': '6 hour stimulation with founder M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2875680': {'line': 'MRC-5 fibroblasts', 'infection': '0.1', 'point': '9 days'}, 'GSM2875687': {'line': 'MRC-5 fibroblasts', 'infection': '0.1', 'point': '9 days'}, 'GSM2875686': {'line': 'MRC-5 fibroblasts', 'infection': '0.1', 'point': '9 days'}, 'GSM2875685': {'line': 'THP-1 macrophages', 'infection': '0.1', 'point': '9 days'}, 'GSM2875684': {'line': 'THP-1 macrophages', 'infection': '0.1', 'point': '9 days'}, 'GSM3148634': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148635': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148636': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148637': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148630': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148631': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148632': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148633': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM2565267': {'construction': 'PLATE-Seq', 'drug': 'Osimertinib (AZD9291)'}, 'GSM3148638': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148639': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM2553018': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'lung', 'Sex': 'female'}, 'GSM2243442': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2170708': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2731742': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2565264': {'construction': 'PLATE-Seq', 'drug': 'Daunorubicin hydrochloride'}, 'GSM2731741': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM1866103': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866102': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866101': {'line': 'Gliobmastoma cell line'}, 'GSM1866100': {'line': 'Gliobmastoma cell line'}, 'GSM1866107': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866106': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866105': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866104': {'tissue': 'Gliobmastoma biopsy'}, 'GSM2731747': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM1866109': {'line': 'Gliobmastoma cell line'}, 'GSM2747932': {'type': 'iPSC derived astrocytes', 'mutation': 'SOD1 D90A', 'variation': 'SOD1 D90A mutation'}, 'GSM2731746': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2373954': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373955': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373956': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373957': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373950': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373951': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373952': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373953': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2535654': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1116', 'samplename': '1_413UNST_C50', 'seqsite': 'BRI', 'sampleID': 'S13227', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1116', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C50'}, 'GSM2373958': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373959': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1104018': {'type': 'Triple Negative Breast Tumor'}, 'GSM2800829': {'treatment': 'non treated (solvent control)'}, 'GSM2387522': {'line': 'DBTRG-05MG', 'tissue': 'Brain glioma'}, 'GSM2387523': {'line': 'DBTRG-05MG', 'tissue': 'Brain glioma'}, 'GSM2387520': {'line': 'DBTRG-05MG', 'tissue': 'Brain glioma'}, 'GSM2387521': {'line': 'DBTRG-05MG', 'tissue': 'Brain glioma'}, 'GSM2387524': {'line': 'DBTRG-05MG', 'tissue': 'Brain glioma'}, 'GSM1412698': {'gender': 'Male', 'tissue': 'Control Muscle biopsy'}, 'GSM1412699': {'gender': 'Male', 'tissue': 'Control Muscle biopsy'}, 'GSM921009': {'barcode': 'GTGGTA', 'type': 'Fibroblasts', 'treatment': 'Noninduced', 'name': 'Charlotte', 'day': 'd0'}, 'GSM2325922': {'type': 'Human embryonic stem cell'}, 'GSM2325923': {'type': 'Human embryonic stem cell'}, 'GSM2325920': {'type': 'Human embryonic stem cell'}, 'GSM2325921': {'type': 'Human embryonic stem cell'}, 'GSM2325926': {'type': 'Human embryonic stem cell'}, 'GSM2325927': {'type': 'Human embryonic stem cell'}, 'GSM2672079': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2672078': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2672077': {'type': 'Trophectoderm biopsy', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672076': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672075': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672074': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672073': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672072': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672071': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672070': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2745939': {'status': 'Autism spectrum disorder (ASD)', 'race': 'AA', 'totalnumreads': '92,586,356', 'totalnummappedreads': '83,493,327', 'age': '4.060343', 'percentexonicmapping': '24.144452', 'Sex': 'Female', 'rin': '8.9', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.26', 'brainid': '2250'}, 'GSM2745938': {'status': 'Autism spectrum disorder (ASD)', 'race': 'AA', 'totalnumreads': '150,163,116', 'totalnummappedreads': '136,083,856', 'age': '10.434235', 'percentexonicmapping': '23.423892', 'Sex': 'Male', 'rin': '8.8', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.23', 'brainid': '2247'}, 'GSM2745933': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '115,980,298', 'totalnummappedreads': '106,642,525', 'age': '22.711094', 'percentexonicmapping': '22.792428', 'Sex': 'Male', 'rin': '8.1', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.57', 'brainid': '848'}, 'GSM2745932': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '106,537,208', 'totalnummappedreads': '101,901,579', 'age': '16.684919', 'percentexonicmapping': '22.990727', 'Sex': 'Female', 'rin': '9.1', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.72', 'brainid': '1856'}, 'GSM2745931': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '122,301,206', 'totalnummappedreads': '115,735,585', 'age': '14.092103', 'percentexonicmapping': '23.174124', 'Sex': 'Male', 'rin': '8.5', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.25', 'brainid': '1848'}, 'GSM2745930': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '126,953,086', 'totalnummappedreads': '121,155,466', 'age': '22.158033', 'percentexonicmapping': '24.470389', 'Sex': 'Male', 'rin': '8.7', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.61', 'brainid': '1250'}, 'GSM2745937': {'status': 'Autism spectrum disorder (ASD)', 'race': 'CAUC', 'totalnumreads': '107,509,730', 'totalnummappedreads': '102,466,686', 'age': '26.653707', 'percentexonicmapping': '23.231231', 'Sex': 'Male', 'rin': '9', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.6', 'brainid': '2239'}, 'GSM2745936': {'status': 'Autism spectrum disorder (ASD)', 'race': 'CAUC', 'totalnumreads': '126,867,020', 'totalnummappedreads': '117,417,073', 'age': '34.621071', 'percentexonicmapping': '22.515363', 'Sex': 'Female', 'rin': '8.3', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.24', 'brainid': '1948'}, 'GSM2745935': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '94,159,548', 'totalnummappedreads': '88,951,830', 'age': '45.947869', 'percentexonicmapping': '25.416206', 'Sex': 'Male', 'rin': '8.3', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.92', 'brainid': '2180'}, 'GSM2745934': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '115,141,636', 'totalnummappedreads': '101,943,443', 'age': '13.161209', 'percentexonicmapping': '23.363337', 'Sex': 'Male', 'rin': '8.5', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '5.83', 'brainid': '1968'}, 'GSM2550238': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550239': {'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550230': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550231': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550232': {'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550233': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550234': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550235': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550236': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550237': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2355688': {'line': 'hiPSC-CM line 202', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': 'Control'}, 'GSM2355689': {'line': 'hiPSC-CM line 78', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': 'Control'}, 'GSM2355684': {'knockdown': 'RNF20 siRNA 2 tranfected', 'line': 'H460', 'tissue': 'Lung cancer cell lines'}, 'GSM2355685': {'line': 'hiPSC-CM line 112', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': 'Control'}, 'GSM2355686': {'line': 'hiPSC-CM line 113', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': 'Control'}, 'GSM2355687': {'line': 'hiPSC-CM line 116', 'type': 'Induced Pluripotent Stem Cell Cardiomyocytes', 'treatment': 'Control'}, 'GSM2355680': {'knockdown': 'RNF20 siRNA 2 tranfected', 'line': 'H1299', 'tissue': 'Lung cancer cell lines'}, 'GSM2355681': {'knockdown': 'Control siRNA 1 transfected', 'line': 'H460', 'tissue': 'Lung cancer cell lines'}, 'GSM2355682': {'knockdown': 'Control siRNA 2 transfected', 'line': 'H460', 'tissue': 'Lung cancer cell lines'}, 'GSM2355683': {'knockdown': 'RNF20 siRNA 1 tranfected', 'line': 'H460', 'tissue': 'Lung cancer cell lines'}, 'GSM2170870': {'stage': 'Liver bud 1'}, 'GSM2170871': {'stage': 'Liver bud 1'}, 'GSM2170872': {'stage': 'Liver bud 1'}, 'GSM2170873': {'stage': 'Liver bud 1'}, 'GSM2170874': {'stage': 'Liver bud 1'}, 'GSM2170875': {'stage': 'Liver bud 1'}, 'GSM2170876': {'stage': 'Liver bud 1'}, 'GSM2170877': {'stage': 'Liver bud 1'}, 'GSM2170878': {'stage': 'Liver bud 1'}, 'GSM2170879': {'stage': 'Liver bud 2'}, 'GSM2886597': {'age': '77', 'cytorisk': 'intermed1', 'state': 'AML', 'tissue': 'Blood', 'cr': 'unknown', 'npm1': 'not done', 'flt3': 'not done'}, 'GSM2453914': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453913': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453912': {'code': '404'}, 'GSM2886593': {'age': '73', 'cytorisk': 'intermed1', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': '-'}, 'GSM2886592': {'age': '73', 'cytorisk': 'intermed1', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': '-'}, 'GSM2411330': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2210925': {'status': 'adjacent normal tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '60'}, 'GSM2210924': {'status': 'adjacent normal tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '60'}, 'GSM2878310': {'type': 'ESA+CD24lowCD44+ cells', 'variation': 'shPRMT5', 'background': 'MCF7'}, 'GSM2142582': {'gender': 'male', 'age': '59', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2142585': {'gender': 'female', 'age': '68', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '1'}, 'GSM2210920': {'status': 'tumor tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '53'}, 'GSM2210923': {'status': 'tumor tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '55'}, 'GSM2210922': {'status': 'adjacent normal tissue', 'protocol': 'primary culture Passage 2', 'tissue': 'breast', 'type': 'fibroblasts', 'id': '55'}, 'GSM2344897': {'line': 'Patient-derived neurosphere line GSC4', 'treatment': 'none'}, 'GSM1842496': {'duration': '12h', 'line': 'SUM149R', 'treatment': 'JQ1'}, 'GSM1842495': {'duration': '12h', 'line': 'SUM149R', 'treatment': 'JQ1'}, 'GSM1842494': {'duration': '12h', 'line': 'SUM149R', 'treatment': 'DMSO'}, 'GSM1842493': {'duration': '12h', 'line': 'SUM149R', 'treatment': 'DMSO'}, 'GSM2515512': {'line': 'Co100', 'location': 'edge'}, 'GSM2515510': {'line': 'Co100', 'location': 'centre'}, 'GSM2515511': {'line': 'Co100', 'location': 'edge'}, 'GSM2544242': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2565199': {'construction': 'PLATE-Seq', 'drug': 'Mitoxanthrone dihydrochloride'}, 'GSM1473812': {'origin': 'Skin', 'with': 'Serum-starved', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into quiescence'}, 'GSM2348699': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1383675': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383674': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383677': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383676': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383679': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383678': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM2411762': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'BCG', 'id': '33'}, 'GSM2176024': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176027': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2411761': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'Media', 'id': '33'}, 'GSM2176021': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176020': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176023': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176022': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2411768': {'line': '1441G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411769': {'line': '1649A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2176029': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176028': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2632231': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632230': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632233': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632232': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1607399': {'tissue': 'Foreskin', 'antibody': '5-Hydroxymethylcytosine (Active Motif, Cat: 39769)', 'passage': '2'}, 'GSM1607398': {'tissue': 'Foreskin', 'antibody': '5-Methylcytosine (Eurogentec. Cat: BI-MECY-0100)', 'passage': '2'}, 'GSM2632237': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632236': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1607395': {'tissue': 'Foreskin', 'antibody': 'H3K4me1(Abcam. Cat: ab8895)', 'passage': '2'}, 'GSM2632238': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1607397': {'tissue': 'Foreskin', 'antibody': 'H3K4me3 (Diagenode. Cat: C15410003-50)', 'passage': '2'}, 'GSM1607396': {'tissue': 'Foreskin', 'antibody': 'H3K27ac (Merck Millipore. Cat 07-360)', 'passage': '2'}, 'GSM1607391': {'tissue': 'Foreskin', 'antibody': 'none, input', 'passage': '2'}, 'GSM1607390': {'tissue': 'Foreskin', 'antibody': '5-Hydroxymethylcytosine (Active Motif, Cat: 39769)', 'passage': '2'}, 'GSM1607393': {'tissue': 'Foreskin', 'antibody': 'Dnmt3b (Novus Biotechnology. Cat: NB100-266)', 'passage': '2'}, 'GSM1607392': {'tissue': 'Foreskin', 'antibody': 'Dnmt3a (SantaCruz H-295', 'passage': '2'}, 'GSM1726465': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726464': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726467': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726466': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726461': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726460': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726463': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726462': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726469': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726468': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1376050': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1553162': {'duration': '3h', 'line': 'SUM159', 'treatment': 'JQ1'}, 'GSM1553163': {'duration': '3h', 'line': 'SUM159', 'treatment': 'JQ1'}, 'GSM1553160': {'duration': '24h', 'line': 'SUM159', 'treatment': 'JQ1'}, 'GSM1553161': {'duration': '24h', 'line': 'SUM159', 'treatment': 'JQ1'}, 'GSM2589408': {'point': '2hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589400': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM1836548': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836549': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836542': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM2538901': {'line': 'PC9', 'treatment': 'control'}, 'GSM2538902': {'line': 'H1933', 'treatment': 'control'}, 'GSM2538903': {'line': 'PC9', 'treatment': 'control'}, 'GSM1836546': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836547': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836544': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836545': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1715526': {'replicates': '2', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715527': {'replicates': '2', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715524': {'replicates': '2', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM1715525': {'replicates': '2', 'treatment': 'Dox', 'construct': 'pInducer21-empty'}, 'GSM1715522': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715523': {'replicates': '2', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM1715520': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-empty'}, 'GSM1715521': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715528': {'replicates': '1', 'sirna': 'siCtrl', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715529': {'replicates': '1', 'sirna': 'siCtrl', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM2300034': {'line': 'MCF7', 'treatment': '10nM estradiol', 'infection': 'lentivirally infected with constructs against shCtrl'}, 'GSM2434154': {'status': 'waterpipe smoker', 'type': 'small airway epithelium brushing'}, 'GSM2565356': {'construction': 'PLATE-Seq', 'drug': 'PX 12'}, 'GSM2565355': {'construction': 'PLATE-Seq', 'drug': 'Picoplatin'}, 'GSM2565354': {'construction': 'PLATE-Seq', 'drug': 'Nebivolol hydrochloride'}, 'GSM2565353': {'construction': 'PLATE-Seq', 'drug': '2,3-DCPE hydrochloride'}, 'GSM2565352': {'construction': 'PLATE-Seq', 'drug': 'WIN 64338 hydrochloride'}, 'GSM2565351': {'construction': 'PLATE-Seq', 'drug': 'KINETIN RIBOSIDE'}, 'GSM2565350': {'construction': 'PLATE-Seq', 'drug': 'TETRACHLOROISOPHTHALONITRILE'}, 'GSM2565359': {'construction': 'PLATE-Seq', 'drug': 'Tasquinimod'}, 'GSM2565358': {'construction': 'PLATE-Seq', 'drug': 'TAK-733'}, 'GSM2200879': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2310254': {'shRNA': 'shTFAM', 'type': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM2310255': {'shRNA': 'shTFAM', 'type': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM1498827': {'cytogenetics': '46,XY', 'gender': 'male', 'age': '67', 'leukemia': 'CMML-1', 'mutation': 'mutant', 'decitabine': 'responder', 'type': 'bone marrow mononuclear cells (BM MNC)'}, 'GSM1642796': {'line': 'AsPC1', 'type': 'Pancreatic adenocarcinoma cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM2310257': {'shRNA': 'shPHB2', 'type': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'bone marrow'}, 'GSM2590519': {'differentiation': '0', 'type': 'iPSC cell', 'id': 'MUT 2', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R155C'}, 'GSM2590518': {'differentiation': '0', 'type': 'iPSC cell', 'id': 'MUT 1', 'diagnosis': 'amyotrophic lateral dystrophy (ALS)', 'genotype': 'VCP: R155C'}, 'GSM1642797': {'line': 'AsPC1', 'type': 'Pancreatic adenocarcinoma cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1612315': {'imortalization': 'none', 'medium': 'none', 'type': 'endothelial'}, 'GSM1612314': {'imortalization': 'none', 'medium': 'none', 'type': 'endothelial'}, 'GSM1544683': {'protocol': 'PDX was established in NSG mice for 4 passages', 'tool': 'EdgeR', 'type': 'PDX cells', 'treatment': '80mg/kg/b.i.d ribavarin IP for 10 days', 'basecalling': 'CASAVA 1.8.2'}, 'GSM1544682': {'protocol': 'PDX was established in NSG mice for 4 passages', 'tool': 'EdgeR', 'type': 'PDX cells', 'treatment': '80mg/kg/b.i.d ribavarin IP for 10 days', 'basecalling': 'CASAVA 1.8.2'}, 'GSM1544681': {'protocol': 'PDX was established in NSG mice for 4 passages', 'tool': 'EdgeR', 'type': 'PDX cells', 'treatment': 'Sterile PBS b.i.d. IP for 10 days', 'basecalling': 'CASAVA 1.8.2'}, 'GSM1544680': {'protocol': 'PDX was established in NSG mice for 4 passages', 'tool': 'EdgeR', 'type': 'PDX cells', 'treatment': 'Sterile PBS b.i.d. IP for 10 days', 'basecalling': 'CASAVA 1.8.2'}, 'GSM1642798': {'line': 'HeLa', 'type': 'Cervical cancer cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1131563': {'line': 'HeLa', 'construct': 'empty'}, 'GSM1612318': {'imortalization': 'none', 'medium': 'F99', 'type': 'endothelial'}, 'GSM1131564': {'line': 'HeLa', 'construct': 'TIA1-shRNA-pSUPER'}, 'GSM1131565': {'line': 'HeLa', 'construct': 'TIAR-shRNA-pSUPER'}, 'GSM1356709': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 10'}, 'GSM1356708': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 0'}, 'GSM2277359': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277358': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277355': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277354': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277357': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2493833': {'tissue': 'Dental pulp', 'treatment': 'Pretreatment with a gamma secretase inhibitor before exposing to recombinant human Jagged1/Fc immobilization'}, 'GSM2277351': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277350': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277353': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277352': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM3711328': {'mediancvcoverage': '0.661063', 'percentaligned': '0.886482677', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '13'}, 'GSM3711326': {'mediancvcoverage': '0.816741', 'percentaligned': '0.929781518', 'visit': 'Visit 2a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '11'}, 'GSM3711327': {'mediancvcoverage': '0.96164', 'percentaligned': '0.946276582', 'visit': 'Visit 2a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '9'}, 'GSM3711324': {'mediancvcoverage': '0.668292', 'percentaligned': '0.956719337', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '11'}, 'GSM3711325': {'mediancvcoverage': '0.73796', 'percentaligned': '0.951974672', 'visit': 'Visit 2b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '11'}, 'GSM3711322': {'mediancvcoverage': '0.66609', 'percentaligned': '0.946102782', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '12'}, 'GSM3711323': {'mediancvcoverage': '0.646871', 'percentaligned': '0.949874265', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '12'}, 'GSM3711320': {'mediancvcoverage': '0.92032', 'percentaligned': '0.949750649', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '12'}, 'GSM3711321': {'mediancvcoverage': '0.741435', 'percentaligned': '0.961668851', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '12'}, 'GSM2616365': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616364': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2058098': {'line': 'COLO205', 'tissue': 'colorectal cancer cell line'}, 'GSM2616367': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2481921': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2616366': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2481920': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2616361': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2481923': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2562601': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1521558': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2058094': {'tissue': 'normal colon crypt'}, 'GSM2616363': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2058093': {'tissue': 'primary colorectal cancer tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2616362': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2058092': {'tissue': 'primary colorectal cancer tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1521559': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM3896371': {'isolation': 'total RNA', 'induction': '4h before harvesting', 'treatment': '1h before harvesting'}, 'GSM3896370': {'isolation': 'total RNA', 'induction': '2h before harvesting', 'treatment': '1h before harvesting'}, 'GSM3896372': {'isolation': 'total RNA', 'induction': '8h before harvesting', 'treatment': '1h before harvesting'}, 'GSM2616368': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2374278': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374279': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374270': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374271': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374272': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374273': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374274': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374275': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374276': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374277': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2523148': {'line': 'HNE1', 'condition': 'siRNA targeting ETS2'}, 'GSM2862927': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862924': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862925': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862922': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862923': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862920': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862921': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2523140': {'line': 'C666-1', 'condition': 'DMSO treated'}, 'GSM2523141': {'line': 'C666-1', 'condition': 'treated with 200nM THZ1 for 6 hours'}, 'GSM2523142': {'line': 'HK1', 'condition': 'DMSO treated'}, 'GSM2523143': {'line': 'HK1', 'condition': 'treated with 200nM THZ1 for 6 hours'}, 'GSM2523144': {'line': 'HNE1', 'condition': 'DMSO treated'}, 'GSM2523145': {'line': 'HNE1', 'condition': 'treated with 200nM THZ1 for 6 hours'}, 'GSM2862928': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2523147': {'line': 'HNE1', 'condition': 'siRNA targeting ETS2'}, 'GSM1695262': {'perfusion': 'yes', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'yes'}, 'GSM1514012': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1695260': {'perfusion': 'yes', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'yes'}, 'GSM1695261': {'perfusion': 'yes', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'yes'}, 'GSM1216829': {'gender': 'Female', 'age': '56', 'bmi': '24.2', 'hba1c': '6.1', 'tissue': 'pancreatic islets', 'birth': '1955'}, 'GSM1216828': {'gender': 'Male', 'age': '68', 'bmi': '24.6', 'hba1c': '6.1', 'tissue': 'pancreatic islets', 'birth': '1943'}, 'GSM1514015': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1514014': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1216825': {'gender': 'Female', 'age': '68', 'bmi': '29.4', 'hba1c': '5.7', 'tissue': 'pancreatic islets', 'birth': '1943'}, 'GSM1216824': {'gender': 'Male', 'age': '70', 'bmi': '26.3', 'hba1c': '5.8', 'tissue': 'pancreatic islets', 'birth': '1941'}, 'GSM1216827': {'gender': 'Male', 'age': '64', 'bmi': '25.1', 'hba1c': '5.7', 'tissue': 'pancreatic islets', 'birth': '1947'}, 'GSM1216826': {'gender': 'Female', 'age': '63', 'bmi': '28', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1948'}, 'GSM1216821': {'gender': 'Male', 'age': '69', 'bmi': '24.5', 'hba1c': '5.4', 'tissue': 'pancreatic islets', 'birth': '1942'}, 'GSM1216820': {'gender': 'Male', 'age': '65', 'bmi': '26', 'hba1c': '5.2', 'tissue': 'pancreatic islets', 'birth': '1946'}, 'GSM1216823': {'gender': 'Female', 'age': '61', 'bmi': '28.7', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1949'}, 'GSM1216822': {'gender': 'Female', 'age': '53', 'bmi': '25.4', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1958'}, 'GSM1004068': {'technique': 'MethylCap-sequencing', 'tissue': 'tumor colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM1004069': {'technique': 'MethylCap-sequencing', 'tissue': 'tumor colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM2192678': {'type': 'Human mammary epithelial cells'}, 'GSM2192679': {'type': 'Human mammary epithelial cells'}, 'GSM2192676': {'type': 'Human mammary epithelial cells'}, 'GSM2192677': {'type': 'Human mammary epithelial cells'}, 'GSM2192674': {'type': 'Human mammary epithelial cells'}, 'GSM2192675': {'type': 'Human mammary epithelial cells'}, 'GSM2192672': {'type': 'Human mammary epithelial cells'}, 'GSM2192673': {'type': 'Human mammary epithelial cells'}, 'GSM2192670': {'type': 'Human mammary epithelial cells'}, 'GSM2192671': {'type': 'Human mammary epithelial cells'}, 'GSM1945966': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18508', 'for': '30min'}, 'GSM2610789': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610788': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610785': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610784': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610787': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303547': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM2610781': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610780': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610783': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303543': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM2194630': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2511545': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2194632': {'type': 'duct', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194633': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194634': {'type': 'duct', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194635': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194636': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194637': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194638': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194639': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2414784': {'line': 'LIM1863', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2543636': {'library_id': 'lib5753', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543637': {'library_id': 'lib5754', 'stim': 'NS', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1917153': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'senescent'}, 'GSM1917152': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'senescent'}, 'GSM1917151': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'quiescent'}, 'GSM1917150': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'quiescent'}, 'GSM2543630': {'library_id': 'lib5747', 'stim': 'DM', 'group': 'Case', 'classification': 'Not Included', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2277414': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2511540': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2277415': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2543632': {'library_id': 'lib5749', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511542': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM1917638': {'primary': 'No', 'agent': 'TSLP', 'xenograft': 'Yes'}, 'GSM1053785': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NPAF signature'}, 'GSM1053784': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'PF signature'}, 'GSM2151482': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1053786': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NPAF signature'}, 'GSM1053781': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'PF signature'}, 'GSM2151485': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1053783': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'PF signature'}, 'GSM1053782': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'PF signature'}, 'GSM2151488': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151489': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1053789': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NPAF signature'}, 'GSM1053788': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NPAF signature'}, 'GSM2543639': {'library_id': 'lib5756', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2611258': {'tissue': 'CVS', 'stage': 'Second trimester'}, 'GSM1617984': {'replicates': '1', 'sorting': 'Unsorted', 'treatment': 'Dox', 'construct': 'pInducer21 empty'}, 'GSM1617986': {'replicates': '2', 'sorting': 'Unsorted', 'treatment': 'Dox', 'construct': 'pInducer21 empty'}, 'GSM1617981': {'replicates': '2', 'sorting': 'CD44low/CD24high', 'treatment': 'Dox', 'construct': 'pInducer21-HA-MYC'}, 'GSM1617980': {'replicates': '2', 'sorting': 'CD44high/CD24low', 'treatment': 'EtOH', 'construct': 'pInducer21-HA-MYC'}, 'GSM1617983': {'replicates': '1', 'sorting': 'Unsorted', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-HA'}, 'GSM1617982': {'replicates': '2', 'sorting': 'CD44low/CD24high', 'treatment': 'EtOH', 'construct': 'pInducer21-HA-MYC'}, 'GSM2611250': {'tissue': 'Placenta villi', 'stage': 'Third trimester'}, 'GSM2611251': {'tissue': 'Placenta', 'stage': 'Third trimester'}, 'GSM2611252': {'tissue': 'Placenta', 'stage': 'Third trimester'}, 'GSM2611253': {'tissue': 'Placenta', 'stage': 'Third trimester'}, 'GSM2611254': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2611255': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2611256': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM2611257': {'tissue': 'CVS', 'stage': 'First trimester'}, 'GSM1922708': {'status': 'WT', 'tissue': 'breast', 'treatment': 'ReACp53', 'line': 'MCF7', 'type': 'breast cancer', 'stage': 'N/A'}, 'GSM1820480': {'type': 'HEK293', 'genotype': 'WT DIS3'}, 'GSM1820481': {'type': 'HEK293', 'genotype': 'WT DIS3'}, 'GSM1820482': {'type': 'HEK293', 'genotype': 'WT DIS3'}, 'GSM1922709': {'status': 'R248Q', 'tissue': 'ovary', 'treatment': 'vehicle', 'line': 'OVCAR3', 'type': 'ovarian cancer', 'stage': 'N/A'}, 'GSM1820484': {'type': 'HEK293', 'genotype': 'PIN RNB mutant DIS3'}, 'GSM1820485': {'type': 'HEK293', 'genotype': 'PIN RNB mutant DIS3'}, 'GSM1820486': {'type': 'HEK293', 'genotype': 'PIN RNB mutant DIS3'}, 'GSM1820487': {'type': 'HEK293', 'genotype': 'PIN RNB mutant DIS3'}, 'GSM1820488': {'type': 'HEK293', 'genotype': 'PIN RNB mutant DIS3'}, 'GSM2476354': {'line': 'SKmel147', 'antibodies': 'macroH2A1 (Abcam, ab37264)', 'passage': 'N/A'}, 'GSM2476355': {'line': 'SKmel147', 'antibodies': 'macroH2A2 (Bernstein lab, in house)', 'passage': 'N/A'}, 'GSM2476356': {'line': 'SKmel147', 'antibodies': 'BRD2 (Bethyl Laboratories, A302-583A)', 'passage': 'N/A'}, 'GSM2476357': {'line': 'SKmel147', 'antibodies': 'BRD2 (Bethyl Laboratories, A302-583A)', 'passage': 'N/A'}, 'GSM2476350': {'line': '501MEL', 'antibodies': 'H3K27ac (Abcam, ab177178)', 'passage': 'N/A'}, 'GSM2476351': {'line': 'SKmel239', 'antibodies': 'H3K27ac (Abcam, ab177178)', 'passage': 'N/A'}, 'GSM2476352': {'line': 'SKmel2', 'antibodies': 'H3K27ac (Abcam, ab177178)', 'passage': 'N/A'}, 'GSM2476353': {'line': 'SKmel147', 'antibodies': 'H3K4me3 (Abcam, ab1012)', 'passage': 'N/A'}, 'GSM2731748': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2476358': {'line': 'SKmel147', 'antibodies': 'BRD4 (Bethyl Laboratories, A301-985A)', 'passage': 'N/A'}, 'GSM2476359': {'line': 'SKmel147', 'antibodies': 'BRD4 (Bethyl Laboratories, A301-985A)', 'passage': 'N/A'}, 'GSM1922703': {'status': 'WT', 'tissue': 'breast', 'treatment': 'vehicle', 'line': 'MCF7', 'type': 'breast cancer', 'stage': 'N/A'}, 'GSM1620414': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1613656': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1922706': {'status': 'WT', 'tissue': 'breast', 'treatment': 'ReACp53', 'line': 'MCF7', 'type': 'breast cancer', 'stage': 'N/A'}, 'GSM1656077': {'patient': '13', 'group': 'PN', 'gender': 'female'}, 'GSM2108600': {'replicate': '1', 'treatment': '100 nM LNA30bcd', 'point': '24H'}, 'GSM2108601': {'replicate': '2', 'treatment': '100 nM LNA30bcd', 'point': '24H'}, 'GSM2108602': {'replicate': '3', 'treatment': '100 nM LNA30bcd', 'point': '24H'}, 'GSM2108603': {'replicate': '1', 'treatment': 'Mock', 'point': '24H'}, 'GSM2108604': {'replicate': '2', 'treatment': 'Mock', 'point': '24H'}, 'GSM2108605': {'replicate': '3', 'treatment': 'Mock', 'point': '24H'}, 'GSM2108606': {'replicate': '1', 'treatment': '100 nM LNA30bcd', 'point': '48H'}, 'GSM2108607': {'replicate': '2', 'treatment': '100 nM LNA30bcd', 'point': '48H'}, 'GSM2108608': {'replicate': '3', 'treatment': '100 nM LNA30bcd', 'point': '48H'}, 'GSM2108609': {'replicate': '1', 'treatment': 'Mock', 'point': '48H'}, 'GSM1922705': {'status': 'WT', 'tissue': 'breast', 'treatment': 'vehicle', 'line': 'MCF7', 'type': 'breast cancer', 'stage': 'N/A'}, 'GSM2159813': {'line': 'MCF-7', 'transfection': 'Pre-miR-29a'}, 'GSM2305821': {'tissue': 'colon'}, 'GSM2159811': {'line': 'MCF-7', 'transfection': 'Anti-miR-29a'}, 'GSM2159810': {'line': 'MCF-7', 'transfection': 'Anti-miR-29a'}, 'GSM2159815': {'line': 'MCF-7', 'transfection': 'Pre-miR-29a'}, 'GSM2159814': {'line': 'MCF-7', 'transfection': 'Pre-miR-29a'}, 'GSM2274858': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33343', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9745', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C65', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9745', 'studysiteshort': 'YALE'}, 'GSM2305823': {'tissue': 'colon'}, 'GSM2348822': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2251246': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251245': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251244': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251243': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251242': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251241': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251240': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2339282': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2251249': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251248': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2153226': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153227': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153224': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153225': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153222': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153223': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153220': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153221': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2339281': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2153228': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153229': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2385652': {'line': 'G21', 'type': 'glioblastoma stem cell'}, 'GSM2385653': {'line': 'G21', 'type': 'glioblastoma stem cell'}, 'GSM2385650': {'line': 'G19', 'type': 'glioblastoma stem cell'}, 'GSM2385651': {'line': 'G21', 'type': 'glioblastoma stem cell'}, 'GSM2385656': {'line': 'G26', 'type': 'glioblastoma stem cell'}, 'GSM2385657': {'line': 'G7', 'type': 'glioblastoma stem cell'}, 'GSM2385654': {'line': 'G26', 'type': 'glioblastoma stem cell'}, 'GSM2385655': {'line': 'G26', 'type': 'glioblastoma stem cell'}, 'GSM2385658': {'line': 'G7', 'type': 'glioblastoma stem cell'}, 'GSM2385659': {'line': 'G7', 'type': 'glioblastoma stem cell'}, 'GSM1113328': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 5 post-vaccine'}, 'GSM1113329': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 6 post-vaccine'}, 'GSM2595198': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2339288': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM1947378': {'line': 'HeLa'}, 'GSM1947376': {'line': 'HeLa'}, 'GSM1947377': {'line': 'HeLa'}, 'GSM1947374': {'line': 'HeLa'}, 'GSM1947375': {'line': 'HeLa'}, 'GSM1947372': {'line': 'HeLa'}, 'GSM1947373': {'line': 'HeLa'}, 'GSM2731743': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM1947371': {'line': 'HeLa'}, 'GSM2326901': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'African American', 'Sex': 'Female'}, 'GSM2326900': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2326903': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2326902': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'African American', 'Sex': 'Female'}, 'GSM2326905': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2326904': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2326907': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'African American', 'Sex': 'Female'}, 'GSM2326906': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2326909': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Female'}, 'GSM2326908': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2739419': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739418': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739413': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739412': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739411': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739410': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739417': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739416': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739415': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739414': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2307377': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307376': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM937160': {'line': 'T-47D', 'replicate': '1', 'treatment': '8 hour 100 nM bisphenol A'}, 'GSM1126670': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM2706148': {'variation': 'vector'}, 'GSM2706143': {'antibody': 'H3K4me1(ABclonal, A2355)', 'variation': 'vector'}, 'GSM2706142': {'antibody': 'none', 'variation': 'wild type'}, 'GSM2706141': {'antibody': 'H3K27Ac(Cell Signaling Technology, 8173)', 'variation': 'wild type'}, 'GSM2706140': {'antibody': 'none', 'variation': 'KDM5C overexpression'}, 'GSM2706147': {'variation': 'KDM5C overexpression'}, 'GSM2706146': {'variation': 'vector'}, 'GSM2706145': {'antibody': 'H3K27Ac(Cell Signaling Technology, 8173)', 'variation': 'vector'}, 'GSM2706144': {'antibody': 'H3K4me3(ABclonal, A2357)', 'variation': 'vector'}, 'GSM2307371': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307370': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1603230': {'transgene': 'Tat', 'line': 'Jurkat', 'type': 'T Cells'}, 'GSM2731740': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM937162': {'line': 'T-47D', 'replicate': '1', 'treatment': '8 hour 0.02% DMSO'}, 'GSM1603231': {'transgene': 'Tat', 'line': 'Jurkat', 'type': 'T Cells'}, 'GSM2584699': {'tissue': 'ex vivo derived cells', 'type': 'mesenchymal stem cells', 'passage': '30+4'}, 'GSM2584698': {'tissue': 'ex vivo derived cells', 'type': 'mesenchymal stem cells', 'passage': '30+4'}, 'GSM2584697': {'tissue': 'ex vivo derived cells', 'type': 'mesenchymal stem cells', 'passage': '30+4'}, 'GSM2584696': {'tissue': 'ex vivo derived cells', 'type': 'Ectoderm cells', 'passage': '30+1'}, 'GSM2584695': {'tissue': 'ex vivo derived cells', 'type': 'Ectoderm cells', 'passage': '30+1'}, 'GSM2584694': {'tissue': 'ex vivo derived cells', 'type': 'Ectoderm cells', 'passage': '30+1'}, 'GSM2584693': {'tissue': 'ex vivo derived cells', 'type': 'Mesoderm cells', 'passage': '30+1'}, 'GSM2584692': {'tissue': 'ex vivo derived cells', 'type': 'Mesoderm cells', 'passage': '30+1'}, 'GSM2584691': {'tissue': 'ex vivo derived cells', 'type': 'Endoderm cells', 'passage': '30+1'}, 'GSM2584690': {'tissue': 'ex vivo derived cells', 'type': 'Endoderm cells', 'passage': '30+1'}, 'GSM2253674': {'line': 'MKN7', 'tissue': 'stomach', 'variation': 'EBV infected'}, 'GSM2253675': {'line': 'MKN7', 'tissue': 'stomach', 'variation': 'EBV infected'}, 'GSM2253676': {'line': 'MKN7', 'tissue': 'stomach', 'variation': 'EBV infected'}, 'GSM2253670': {'line': 'GES1', 'tissue': 'stomach', 'variation': 'Mock vector'}, 'GSM955108': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM2253672': {'line': 'GES1', 'tissue': 'stomach', 'antibody': '5-mC (#33D3, Diagenode lot#GF-003)', 'variation': 'EBV infected'}, 'GSM2253673': {'line': 'MKN7', 'tissue': 'stomach', 'variation': 'wild type'}, 'GSM2306027': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '12 week gestation'}, 'GSM1098418': {'line': 'CN34; Human breast carcinoma cell line', 'tissue': 'human metastatic pleural effusion', 'stage': 'Stage IV', 'passage': 'low passage (<15X)'}, 'GSM1098419': {'line': 'CN34; Human breast carcinoma cell line', 'tissue': 'human metastatic pleural effusion', 'stage': 'Stage IV', 'passage': 'low passage (<15X)'}, 'GSM1098414': {'line': 'MDA-MB-231; Human breast carcinoma cell line', 'tissue': 'human metastatic pleural effusion', 'stage': 'Stage IV', 'passage': 'low passage (<15X)'}, 'GSM1401733': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1098416': {'line': 'MDA-LM2; in vivo selected highly metastatic human breast cancer cell line', 'tissue': 'in vivo selected lung metastasic sub-line', 'stage': 'N/A - derivitive line', 'passage': 'low passage (<20X)'}, 'GSM1098417': {'line': 'MDA-LM2; in vivo selected highly metastatic human breast cancer cell line', 'tissue': 'in vivo selected lung metastasic sub-line', 'stage': 'N/A - derivitive line', 'passage': 'low passage (<20X)'}, 'GSM1421200': {'line': 'K562 erythroleukemia cell line', 'variation': 'U2AF1_Q157P'}, 'GSM937164': {'line': 'T-47D', 'replicate': '1', 'treatment': '8 hour 100 nM genistein'}, 'GSM2042142': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2042143': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2042140': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2042141': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2042148': {'type': 'adult HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM2042149': {'type': 'adult HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM2731745': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2361669': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361668': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361665': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361664': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361667': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361666': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361661': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361660': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361663': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361662': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2391001': {'disease': 'Pulmonary Hypertension'}, 'GSM937166': {'line': 'T-47D', 'replicate': '2', 'treatment': '8 hour 100 nM bisphenol A'}, 'GSM1253394': {'cluster': 'CL', 'as': 'Brx52_CL1_020413', 'patient': 'Patient#4'}, 'GSM1253395': {'cluster': 'CL', 'as': 'Brx52_CL2_020413', 'patient': 'Patient#4'}, 'GSM1253396': {'cluster': 'CL', 'as': 'Brx12_CL_012913', 'patient': 'Patient#3'}, 'GSM1253397': {'cluster': 'SC', 'as': 'BrTr11_SC1_022513', 'patient': 'Patient#10'}, 'GSM2391006': {'disease': 'Pulmonary Hypertension'}, 'GSM1253391': {'cluster': 'CL', 'as': 'Brx17_CL1_020713', 'patient': 'Patient#5'}, 'GSM1253392': {'cluster': 'SC', 'as': 'Brx52_SC1_020413', 'patient': 'Patient#4'}, 'GSM1253393': {'cluster': 'CL', 'as': 'Brx52_CL5_020413', 'patient': 'Patient#4'}, 'GSM2122741': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2122740': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2122742': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM1253398': {'cluster': 'CL', 'as': 'BrTr11_CL1_022513', 'patient': 'Patient#10'}, 'GSM1253399': {'cluster': 'CL', 'as': 'BrTr11_CL2_022513', 'patient': 'Patient#10'}, 'GSM1980243': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1955979': {'a': '55881', 'cd38': '341', 'cd49f': '514', 'w': '64223', 'h': '57024', 'lin': '69', 'cd34': '3554', 'cd90': '1268', 'cd7': '26', 'cd10': '847', 'time': '21760', 'cd135': '2171', 'cd45ra': '100'}, 'GSM1955978': {'a': '49068', 'cd38': '415', 'cd49f': '452', 'w': '69978', 'h': '45953', 'lin': '88', 'cd34': '5459', 'cd90': '327', 'cd7': '291', 'cd10': '536', 'time': '22007', 'cd135': '2868', 'cd45ra': '0'}, 'GSM1955977': {'a': '50211', 'cd38': '1068', 'cd49f': '272', 'w': '63802', 'h': '51576', 'lin': '-121', 'cd34': '13655', 'cd90': '2228', 'cd7': '123', 'cd10': '791', 'time': '22256', 'cd135': '5104', 'cd45ra': '1065'}, 'GSM1955976': {'a': '47294', 'cd38': '85', 'cd49f': '464', 'w': '65483', 'h': '47332', 'lin': '-24', 'cd34': '5107', 'cd90': '221', 'cd7': '51', 'cd10': '621', 'time': '19624', 'cd135': '556', 'cd45ra': '130'}, 'GSM1955975': {'a': '56326', 'cd38': '536', 'cd49f': '526', 'w': '67004', 'h': '55092', 'lin': '-127', 'cd34': '3745', 'cd90': '1194', 'cd7': '830', 'cd10': '469', 'time': '19410', 'cd135': '3154', 'cd45ra': '165'}, 'GSM1955974': {'a': '50802', 'cd38': '-309', 'cd49f': '605', 'w': '65959', 'h': '50476', 'lin': '429', 'cd34': '3923', 'cd90': '1023', 'cd7': '220', 'cd10': '525', 'time': '19176', 'cd135': '3002', 'cd45ra': '315'}, 'GSM1955973': {'a': '74578', 'cd38': '501', 'cd49f': '477', 'w': '67170', 'h': '72764', 'lin': '751', 'cd34': '5298', 'cd90': '509', 'cd7': '-18', 'cd10': '790', 'time': '18971', 'cd135': '3515', 'cd45ra': '397'}, 'GSM1955972': {'a': '48923', 'cd38': '958', 'cd49f': '409', 'w': '66457', 'h': '48245', 'lin': '456', 'cd34': '4316', 'cd90': '1242', 'cd7': '21', 'cd10': '904', 'time': '18767', 'cd135': '2522', 'cd45ra': '177'}, 'GSM1955971': {'a': '69745', 'cd38': '608', 'cd49f': '433', 'w': '67442', 'h': '67774', 'lin': '-237', 'cd34': '12332', 'cd90': '197', 'cd7': '544', 'cd10': '679', 'time': '18558', 'cd135': '1575', 'cd45ra': '359'}, 'GSM1955970': {'a': '56284', 'cd38': '95', 'cd49f': '421', 'w': '68399', 'h': '53928', 'lin': '80', 'cd34': '6869', 'cd90': '1978', 'cd7': '315', 'cd10': '900', 'time': '18358', 'cd135': '4190', 'cd45ra': '2405'}, 'GSM1980247': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980245': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980244': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2391004': {'disease': 'Pulmonary Hypertension'}, 'GSM2581180': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2857621': {'line': 'HCT116', 'shRNA': 'control'}, 'GSM2581181': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581182': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM1071439': {'line': 'HEK293T'}, 'GSM2581183': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581184': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2391005': {'disease': 'Pulmonary Hypertension'}, 'GSM2581185': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581186': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2126110': {'line': 'PATU', 'tissue': 'PDAC xenograft tumor'}, 'GSM2126111': {'line': 'PATU', 'tissue': 'PDAC xenograft tumor'}, 'GSM2126112': {'line': 'PATU', 'tissue': 'PDAC xenograft tumor'}, 'GSM2126113': {'line': 'PATU', 'tissue': 'PDAC xenograft tumor'}, 'GSM1234075': {'replicate': '2', 'line': '19193', 'antibody': 'RNA-seq'}, 'GSM1819229': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'control', 'protein': 'Rluc control'}, 'GSM1440619': {'info': 'shRNAs targeting Chr5q35 loci; TMED9 at Â\\xa0Chr5:177,019,213', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'TMED9 shRNA', 'id': 'TRCN0000072801'}, 'GSM1440618': {'info': 'shRNAs targeting Chr5q35 loci; TMED9 at Â\\xa0Chr5:177,019,213', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'TMED9 shRNA', 'id': 'TRCN0000072801'}, 'GSM1440617': {'info': 'shRNAs targeting Chr5q35 loci; N4BP3 at Chr5:177,540,556', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'N4BP3 shRNA', 'id': 'TRCN0000020943'}, 'GSM1440616': {'info': 'shRNAs targeting Chr5q35 loci; N4BP3 at Chr5:177,540,556', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'N4BP3 shRNA', 'id': 'TRCN0000020943'}, 'GSM1440615': {'info': 'shRNAs targeting Chr5q35 loci; N4BP3 at Chr5:177,540,556', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'N4BP3 shRNA', 'id': 'TRCN0000020943'}, 'GSM1440614': {'info': 'control shRNA for engagement of the RNAi pathway; ASNA1 encoded on Chr19', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'ASNA1 shRNA', 'id': 'TRCN0000042961'}, 'GSM1440613': {'info': 'control shRNA for engagement of the RNAi pathway; ASNA1 encoded on Chr19', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'ASNA1 shRNA', 'id': 'TRCN0000042961'}, 'GSM1440612': {'info': 'control shRNA for engagement of the RNAi pathway; ASNA1 encoded on Chr19', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'ASNA1 shRNA', 'id': 'TRCN0000042961'}, 'GSM1440611': {'info': 'negative control shRNA (Addgene #10879)', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'non-hairpin 18-mer'}, 'GSM1440610': {'info': 'negative control shRNA (Addgene #10879)', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'non-hairpin 18-mer'}, 'GSM2107407': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'depleted for USP27x'}, 'GSM2107406': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'depleted for USP27x'}, 'GSM2107405': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'depleted for USP22'}, 'GSM2107404': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'depleted for USP22'}, 'GSM2107403': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'control (expressing pLKO)'}, 'GSM2107402': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'control (expressing pLKO)'}, 'GSM2107401': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'control (expressing pGIPZ)'}, 'GSM2107400': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'control (expressing pGIPZ)'}, 'GSM2107409': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'depleted for USP51'}, 'GSM2107408': {'line': 'Cultured MCF7 cells (ATCC HTB-22)', 'type': 'luminal epithelial', 'variation': 'depleted for USP51'}, 'GSM1708830': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1480819': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1480818': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1915005': {'line': 'MG63', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1915004': {'line': 'MG63', 'antibody': 'NA'}, 'GSM1915003': {'line': 'MG63.3', 'antibody': 'NA'}, 'GSM1915002': {'line': 'MG63.3', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1915001': {'line': 'MG63.3', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1212200': {'tissue': 'human kidney', 'type': 'Ambion'}, 'GSM2204380': {'type': 'Small airway P9', 'tissue': 'lung', 'patient': '3'}, 'GSM2204381': {'treatment': 'untreated'}, 'GSM2204382': {'treatment': 'untreated'}, 'GSM2204383': {'treatment': 'untreated'}, 'GSM2204384': {'treatment': 'untreated'}, 'GSM1480814': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM1480817': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM1480816': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM2243891': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G7', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243890': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D7', 'cluster': '8', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243893': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D5', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243892': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B8', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243895': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E6', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM3301489': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM2243897': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B6', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243896': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C1', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243899': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E4', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243898': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F12', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1212207': {'tissue': 'human thymus', 'type': 'Ambion'}, 'GSM1212206': {'tissue': 'human testis', 'type': 'Ambion'}, 'GSM1539038': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-306', 'type': 'stranded 51bp PE reads'}, 'GSM1539039': {'genotype': 'AtWBS', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-192', 'type': 'stranded 51bp PE reads'}, 'GSM1539034': {'genotype': 'Control', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-339-1', 'type': 'stranded 51bp PE reads'}, 'GSM1539035': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-316', 'type': 'stranded 51bp PE reads'}, 'GSM1539036': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-316', 'type': 'stranded 51bp PE reads'}, 'GSM1539037': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-306', 'type': 'stranded 51bp PE reads'}, 'GSM1539030': {'genotype': '7dupASD', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-Cf', 'type': 'stranded 51bp PE reads'}, 'GSM1539031': {'genotype': '7dupASD', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-242', 'type': 'stranded 51bp PE reads'}, 'GSM1539032': {'genotype': '7dupASD', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-242', 'type': 'stranded 51bp PE reads'}, 'GSM1539033': {'genotype': 'Control', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-339-1', 'type': 'stranded 51bp PE reads'}, 'GSM1234142': {'replicate': '1', 'line': '19240', 'antibody': 'SA1'}, 'GSM1234143': {'replicate': '2', 'line': '19240', 'antibody': 'SA1'}, 'GSM1234140': {'replicate': '1', 'line': '19240', 'antibody': 'RNA-seq'}, 'GSM1234141': {'replicate': '2', 'line': '19240', 'antibody': 'RNA-seq'}, 'GSM1234146': {'replicate': '2', 'line': '2255', 'antibody': 'CTCF'}, 'GSM1234147': {'replicate': '1', 'line': '2255', 'antibody': 'H3K27Ac'}, 'GSM1234144': {'replicate': '1', 'line': '2255', 'antibody': 'CTCF'}, 'GSM1234145': {'replicate': '2.2', 'line': '2255', 'antibody': 'CTCF'}, 'GSM1234148': {'replicate': '2', 'line': '2255', 'antibody': 'H3K27Ac'}, 'GSM1234149': {'replicate': '1', 'line': '2255', 'antibody': 'H3K27me3'}, 'GSM2754678': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0229', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754679': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': '8', 'type': 'Tcells'}, 'GSM2754676': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0229', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754677': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0229', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754674': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0811', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754675': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0257', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754672': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0218', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754673': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0257', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754670': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0218', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754671': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': '19', 'type': 'Tcells'}, 'GSM2626995': {'origin': 'pancreas', 'patient_id': '196', 'type': 'primary', 'tumor_id': 'YC042312T'}, 'GSM678043': {'type': 'CD8+ T-cells'}, 'GSM2626997': {'origin': 'pancreas', 'patient_id': '56', 'type': 'primary', 'tumor_id': 'YC103'}, 'GSM2626996': {'origin': 'pancreas', 'patient_id': '169', 'type': 'primary', 'tumor_id': 'YC100'}, 'GSM2626991': {'origin': 'pancreas', 'patient_id': '122', 'type': 'primary', 'tumor_id': '96'}, 'GSM2626990': {'origin': 'pancreas', 'patient_id': '121', 'type': 'primary', 'tumor_id': '95'}, 'GSM2626993': {'origin': 'pancreas', 'patient_id': '124', 'type': 'primary', 'tumor_id': '98'}, 'GSM2626992': {'origin': 'pancreas', 'patient_id': '123', 'type': 'primary', 'tumor_id': '97'}, 'GSM2626999': {'origin': 'pancreas', 'patient_id': '57', 'type': 'primary', 'tumor_id': 'YC108'}, 'GSM2626998': {'origin': 'pancreas', 'patient_id': '170', 'type': 'primary', 'tumor_id': 'YC104'}, 'GSM1890007': {'status': 'overexpress hTERTmut', 'line': 'VA-13', 'type': 'immortalized fibroblast'}, 'GSM1890006': {'status': 'overexpress hTERT', 'line': 'VA-13', 'type': 'immortalized fibroblast'}, 'GSM1890005': {'status': 'control', 'line': 'VA-13', 'type': 'immortalized fibroblast'}, 'GSM1890004': {'status': 'overexpress hTERTmut', 'line': 'U2OS', 'type': 'osteosarcoma cancer cell'}, 'GSM1890003': {'status': 'overexpress hTERT', 'line': 'U2OS', 'type': 'osteosarcoma cancer cell'}, 'GSM1890002': {'status': 'control', 'line': 'U2OS', 'type': 'osteosarcoma cancer cell'}, 'GSM2627028': {'origin': 'rectum', 'patient_id': '65', 'type': 'liver metastasis', 'tumor_id': '39'}, 'GSM2627029': {'origin': 'rectum', 'patient_id': '66', 'type': 'liver metastasis', 'tumor_id': '40'}, 'GSM2627026': {'origin': 'rectum', 'patient_id': '183', 'type': 'liver metastasis', 'tumor_id': '142'}, 'GSM2627027': {'origin': 'rectum', 'patient_id': '208', 'type': 'liver metastasis', 'tumor_id': '153'}, 'GSM2627024': {'origin': 'rectum', 'patient_id': '181', 'type': 'liver metastasis', 'tumor_id': '140'}, 'GSM2627025': {'origin': 'rectum', 'patient_id': '182', 'type': 'liver metastasis', 'tumor_id': '141'}, 'GSM2627022': {'origin': 'rectum', 'patient_id': '158', 'type': 'liver metastasis', 'tumor_id': '132'}, 'GSM2627023': {'origin': 'rectum', 'patient_id': '159', 'type': 'liver metastasis', 'tumor_id': '133'}, 'GSM2627020': {'origin': 'pancreas', 'patient_id': '54', 'type': 'primary', 'tumor_id': 'YC98'}, 'GSM1545029': {'protocol': 'AdCMV 48h', 'replicate': 'biological replicate #1', 'details': 'Sample from 1 individual', 'passage': 'passage 5'}, 'GSM2537129': {'media': 'none', 'tissue': 'lung', 'type': 'alveolar epithelial type II cells', 'method': 'sorted HT2-280 antibody positive cells', 'stage': '77 years'}, 'GSM2537128': {'media': 'none', 'tissue': 'lung', 'type': 'alveolar epithelial type II cells', 'method': 'sorted HT2-280 antibody positive cells', 'stage': '62 years'}, 'GSM2537123': {'media': '4 days Dexamethasone, cAMP, IBMX (DCI)', 'tissue': 'lung explant', 'type': 'distal alveolar epithelial progenitors', 'method': 'enriched for epithelial cells by overnight culture, RNA isolated from DCI-cultured cells', 'stage': 'gestational week 21'}, 'GSM2537122': {'media': '4 days Dexamethasone, cAMP, IBMX (DCI)', 'tissue': 'lung explant', 'type': 'distal alveolar epithelial progenitors', 'method': 'enriched for epithelial cells by overnight culture, RNA isolated from DCI-cultured cells', 'stage': 'gestational week 21'}, 'GSM2537121': {'media': '4 days Dexamethasone, cAMP, IBMX (DCI)', 'tissue': 'lung explant', 'type': 'distal alveolar epithelial progenitors', 'method': 'enriched for epithelial cells by overnight culture, RNA isolated from DCI-cultured cells', 'stage': 'gestational week 21'}, 'GSM2537120': {'media': 'mTeSR1 (StemCell Technologies)', 'type': 'pluripotent stem cell', 'method': 'cultured cells', 'stage': 'pluripotent stem cell'}, 'GSM2537127': {'media': 'none', 'tissue': 'lung', 'type': 'alveolar epithelial type II cells', 'method': 'sorted HT2-280 antibody positive cells', 'stage': '43 years'}, 'GSM2537126': {'media': '20 days Chir, Kgf, DCI (CK+DCI)', 'method': 'sorted SFTPC-tdTomato reporter positive cells', 'stage': 'Day 35 in-vitro differentiation'}, 'GSM2537125': {'media': '20 days Chir, Kgf, DCI (CK+DCI)', 'method': 'sorted SFTPC-tdTomato reporter positive cells', 'stage': 'Day 35 in-vitro differentiation'}, 'GSM2537124': {'media': '20 days Chir, Kgf, DCI (CK+DCI)', 'method': 'sorted SFTPC-tdTomato reporter positive cells', 'stage': 'Day 35 in-vitro differentiation'}, 'GSM2158234': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158235': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158236': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158237': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158230': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158231': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158232': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158233': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158238': {'gender': 'M', 'age': '29', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2158239': {'gender': 'M', 'age': '29', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM1930419': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic basal cells cultured in PrEGM', 'id': 'HPCa167N'}, 'GSM1930418': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM2287452': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1930411': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930410': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930413': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930412': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930415': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930414': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930417': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930416': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM2630681': {'line': 'HCC1143', 'treatment': '1uM Trametinib + 1uM JQ1'}, 'GSM1941570': {'line': 'BCPAP', 'type': 'Thyroid cancer'}, 'GSM1941571': {'line': 'BCPAP', 'type': 'Thyroid cancer'}, 'GSM2170819': {'stage': 'iPSC line'}, 'GSM1489619': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '5U3'}, 'GSM2948437': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2298998': {'age': '47', 'type': 'Stem cell'}, 'GSM2298999': {'age': '39', 'type': 'Stem cell'}, 'GSM2298990': {'age': '25', 'type': 'Fibroblasts'}, 'GSM2298991': {'age': '32', 'type': 'Fibroblasts'}, 'GSM2298992': {'age': '34', 'type': 'Fibroblasts'}, 'GSM2298993': {'age': '19', 'line': 'IMR-90'}, 'GSM2298994': {'age': '55', 'line': 'IMR-90'}, 'GSM2298995': {'age': '43', 'type': 'Stem cell'}, 'GSM2298996': {'age': '42', 'type': 'Stem cell'}, 'GSM2298997': {'age': '44', 'type': 'Stem cell'}, 'GSM2948436': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2753945': {'type': 'purified human CD14+ cells', 'infection': 'Mock infected control', 'time': 'control'}, 'GSM2753947': {'type': 'purified human CD14+ cells', 'infection': 'ZIKV virus, PRVABC59', 'time': '12hpi'}, 'GSM2753946': {'type': 'purified human CD14+ cells', 'infection': 'Mock infected control', 'time': 'control'}, 'GSM2753949': {'type': 'purified human CD14+ cells', 'infection': 'ZIKV virus, IBH30656', 'time': '12hpi'}, 'GSM2753948': {'type': 'purified human CD14+ cells', 'infection': 'ZIKV virus, PRVABC59', 'time': '12hpi'}, 'GSM1334167': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334166': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334165': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334164': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334163': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334162': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334161': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334160': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM2436528': {'protocol': 'induction of NANOG and KLF2 for 14 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM1334169': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334168': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'asthmatic'}, 'GSM2453898': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453899': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453896': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453897': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453895': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1466932': {'origin': 'female caucasian with ductal carcinoma', 'with': 'HER2-specific siRNAs', 'line': 'BT-474', 'type': 'breast cancer cell line'}, 'GSM1466933': {'origin': 'female caucasian with ductal carcinoma', 'with': 'HER2-specific siRNAs', 'line': 'BT-474', 'type': 'breast cancer cell line'}, 'GSM1466930': {'origin': 'female caucasian with ductal carcinoma', 'with': 'negative control siRNAs', 'line': 'BT-474', 'type': 'breast cancer cell line'}, 'GSM1466931': {'origin': 'female caucasian with ductal carcinoma', 'with': 'HER2-specific siRNAs', 'line': 'BT-474', 'type': 'breast cancer cell line'}, 'GSM1202460': {'tissue': 'blood'}, 'GSM1202461': {'tissue': 'bone marrow'}, 'GSM1855853': {'antibody': 'None', 'type': 'human colon cancer', 'media': '(-) Methionine'}, 'GSM1855852': {'antibody': 'None', 'type': 'human colon cancer', 'media': '(+) Methionine'}, 'GSM1855851': {'antibody': 'None', 'type': 'human colon cancer', 'media': '(+) Methionine'}, 'GSM1855850': {'antibody': 'None', 'type': 'human colon cancer', 'media': '(-) Methionine'}, 'GSM1202462': {'tissue': 'blood'}, 'GSM1855854': {'antibody': 'None', 'type': 'human colon cancer', 'media': '(-) Methionine'}, 'GSM1202463': {'tissue': 'bone marrow'}, 'GSM2401349': {'transfection': 'BRD4 #1 (labeled as BRD4 1) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '2'}, 'GSM2401348': {'transfection': 'Control (labeled as CON 3) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '2'}, 'GSM2401345': {'transfection': 'Control (labeled as CON 3) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '1'}, 'GSM3586844': {'origin': 'UNCLASSIFIED', 'pfstt': '663', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '736', 'cycles': '6', 'oscs': '0'}, 'GSM2401347': {'transfection': 'BRD4 #2 (labeled as BRD4 4) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '1'}, 'GSM2401346': {'transfection': 'BRD4 #1 (labeled as BRD4 1) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '1'}, 'GSM3586841': {'origin': 'GCB', 'pfstt': '758', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '760', 'cycles': '6', 'oscs': '0'}, 'GSM3586840': {'origin': 'GCB', 'pfstt': '93', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '761', 'cycles': '6', 'oscs': '0'}, 'GSM3586843': {'origin': 'GCB', 'pfstt': '541', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '655', 'cycles': '6', 'oscs': '1'}, 'GSM3586842': {'origin': 'GCB', 'pfstt': '801', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '801', 'cycles': '6', 'oscs': '0'}, 'GSM1197615': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM1202468': {'tissue': 'blood'}, 'GSM1202469': {'tissue': 'blood'}, 'GSM1376128': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1712255': {'state': 'healthy', 'tissue': 'Umbilical cord blood', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM1712257': {'state': 'healthy', 'tissue': 'Bone marrow', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM1712256': {'state': 'healthy', 'tissue': 'Umbilical cord blood', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM1499789': {'treatment': '1 hour'}, 'GSM1499788': {'treatment': '1 hour'}, 'GSM1499787': {'treatment': '1 hour'}, 'GSM1499786': {'treatment': 'None'}, 'GSM1499785': {'treatment': 'None'}, 'GSM1499784': {'treatment': 'None'}, 'GSM2184758': {'status': 'fed', 'age': '3 month', 'diagnosis': 'focal intestinal perforation'}, 'GSM2184759': {'status': 'unfed', 'age': '3 month', 'diagnosis': 'focal intestinal perforation'}, 'GSM2747052': {'status': 'Control', 'individual': 'mother', 'variation': '-'}, 'GSM1961278': {'line': 'BEAS2B', 'type': 'immortalized human bronchial epithelial cell', 'transfection': 'pcDNA3.1-SATB2 transfected'}, 'GSM1961277': {'line': 'BEAS2B', 'type': 'immortalized human bronchial epithelial cell', 'transfection': 'pcDNA3.1-SATB2 transfected'}, 'GSM1961276': {'line': 'BEAS2B', 'type': 'immortalized human bronchial epithelial cell', 'transfection': 'pcDNA3.1 vector transfected'}, 'GSM1961275': {'line': 'BEAS2B', 'type': 'immortalized human bronchial epithelial cell', 'transfection': 'pcDNA3.1 vector transfected'}, 'GSM2410318': {'antibody': 'anti-FLAG(M2) (Sigma-1804, Lot# SLBK1346V)', 'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'WT EBF3-FLAG'}, 'GSM1197612': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM1545675': {'strain': 'HCT116', 'type': 'human colon cancer cell', 'serum': 'starved'}, 'GSM1380878': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2A'}, 'GSM1380879': {'type': 'Primary fibroblast', 'mutation': 'SAMHD1'}, 'GSM1545674': {'strain': 'HCT116', 'type': 'human colon cancer cell', 'serum': 'starved'}, 'GSM1380872': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2B'}, 'GSM1380873': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2B'}, 'GSM2125171': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10nM Estradiol + 10 nM Dexamethasone', 'time': '75 minutes (15 min E2 and 60 min E2+Dexamethasone)'}, 'GSM1380871': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2B'}, 'GSM1380876': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2A'}, 'GSM1380877': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2A'}, 'GSM1380874': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2B'}, 'GSM1380875': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2A'}, 'GSM2747050': {'status': 'Schizoaffective (SA) Disorder Diagnosis', 'individual': 'proband', 'variation': 'CNTNAP2 del'}, 'GSM1545676': {'strain': 'HCT116', 'type': 'human colon cancer cell', 'serum': 'starved'}, 'GSM3526878': {'tissue': 'placenta', 'type': 'Cytotrophoblast', 'Stage': 'Term'}, 'GSM1197613': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM3526876': {'tissue': 'placenta', 'type': 'Cytotrophoblast', 'Stage': 'Mid-trimester'}, 'GSM3526877': {'tissue': 'placenta', 'type': 'Cytotrophoblast', 'Stage': 'Term'}, 'GSM3526874': {'tissue': 'placenta', 'type': 'Cytotrophoblast', 'Stage': 'Mid-trimester'}, 'GSM3526875': {'tissue': 'placenta', 'type': 'Cytotrophoblast', 'Stage': 'Mid-trimester'}, 'GSM3526873': {'tissue': 'placenta', 'type': 'Cytotrophoblast', 'Stage': 'Mid-trimester'}, 'GSM1545670': {'strain': 'HCT116', 'by': 'shNELF-A', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'serum': 'starved'}, 'GSM2153301': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1545673': {'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'CTD Ser5P rat monoclonal 3E8 (Millipore, 04-1572-I)', 'serum': 'starved'}, 'GSM1981199': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM1545672': {'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'CTD Ser5P rat monoclonal 3E8 (Millipore, 04-1572-I)', 'serum': 'starved'}, 'GSM2394526': {'id': 'IonXpress_049', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'MB', 'point': 'after 12h of compound treatment'}, 'GSM2394527': {'id': 'IonXpress_050', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'media_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2287183': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2394524': {'id': 'IonXpress_047', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'U-74389G', 'point': 'after 12h of compound treatment'}, 'GSM1981190': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM2394525': {'id': 'IonXpress_048', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Rolipram', 'point': 'after 12h of compound treatment'}, 'GSM1981191': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM1528384': {'line': 'M255', 'type': 'Melanoma'}, 'GSM1528385': {'line': 'M262', 'type': 'Melanoma'}, 'GSM2394520': {'id': 'IonXpress_043', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Betulinic acid', 'point': 'after 12h of compound treatment'}, 'GSM2394521': {'id': 'IonXpress_044', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Nigericin', 'point': 'after 12h of compound treatment'}, 'GSM2274709': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32760', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9350', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C38', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9350', 'studysiteshort': 'UCSF'}, 'GSM2274708': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32759', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9349', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C08', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9349', 'studysiteshort': 'UCSF'}, 'GSM2058039': {'line': 'V432', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058038': {'line': 'V429', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058035': {'line': 'V389', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058034': {'line': 'V206', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058037': {'line': 'V411', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058036': {'line': 'V410', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058031': {'line': 'V1058', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058030': {'line': 'V1051', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058033': {'line': 'V1106', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058032': {'line': 'V1074', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2545227': {'line': 'MCF10A', 'type': 'Mammary Gland Fibrocystic'}, 'GSM2536948': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'DNMT3A mutated'}, 'GSM2574999': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2574998': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2170759': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170758': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1264338': {'line': 'MCF-7', 'replicates': '1', 'variation': 'control'}, 'GSM2536949': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'DNMT3A mutated'}, 'GSM2170751': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170750': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170753': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170752': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170755': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170754': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170757': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170756': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2565252': {'construction': 'PLATE-Seq', 'drug': 'Palbociclib (PD-0332991) HCl'}, 'GSM2565253': {'construction': 'PLATE-Seq', 'drug': 'Omacetaxine / Homoharringtonine'}, 'GSM2565250': {'construction': 'PLATE-Seq', 'drug': 'Cladribine'}, 'GSM2565251': {'construction': 'PLATE-Seq', 'drug': 'Romidepsin'}, 'GSM2565256': {'construction': 'PLATE-Seq', 'drug': 'Folinic acid calcium salt'}, 'GSM2565257': {'construction': 'PLATE-Seq', 'drug': 'Cisplatin'}, 'GSM2565254': {'construction': 'PLATE-Seq', 'drug': 'Imatinib'}, 'GSM2565255': {'construction': 'PLATE-Seq', 'drug': 'Nilotinib (AMN-107)'}, 'GSM2565258': {'construction': 'PLATE-Seq', 'drug': 'Mitotane'}, 'GSM2565259': {'construction': 'PLATE-Seq', 'drug': 'Trametinib (GSK1120212)'}, 'GSM1965228': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965229': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965224': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965225': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965226': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965227': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965220': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965221': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965222': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965223': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2287518': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1620647': {'type': 'MCF10a human breast cancer cells'}, 'GSM2151817': {'status': 'healthy control', 'subtype': 'cuadate nucleus', 'tissue': 'Brain'}, 'GSM2093066': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1089288': {'donor': 'C44', 'variation': 'DN-GRHL2-Expressing'}, 'GSM1505849': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '07-01'}, 'GSM1620642': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620643': {'type': 'MCF10a human breast cancer cells'}, 'GSM2535954': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6756', 'samplename': '1*_Ctl_RO+_C34', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30119', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6756', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C34'}, 'GSM2535955': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6757', 'samplename': '1*_Ctl_RO+_C40', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30120', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6757', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C40'}, 'GSM2616428': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2535957': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6759', 'samplename': '1*_Ctl_RO+_C41', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30122', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6759', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C41'}, 'GSM2535950': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6751', 'samplename': '1_Ctl_RO+_C93', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30114', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6751', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C93'}, 'GSM2535951': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6752', 'samplename': '1*_Ctl_RO+_C86', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30115', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6752', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C86'}, 'GSM2535952': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6754', 'samplename': '1_Ctl_RO+_C12', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30117', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6754', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C12'}, 'GSM2535953': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6755', 'samplename': '1*_Ctl_RO+_C28', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30118', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6755', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C28'}, 'GSM2616422': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616423': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616420': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616421': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2535958': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6760', 'samplename': '1_Ctl_RO+_C04', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30123', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6760', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C04'}, 'GSM2535959': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6761', 'samplename': '1_Ctl_RO+_C16', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30124', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6761', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C16'}, 'GSM2616424': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2125274': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'agent': 'JNK Inhibitor', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM1505842': {'gender': 'female', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '03-02'}, 'GSM2679508': {'line': 'BLCL (165)'}, 'GSM2679509': {'line': 'BLCL (165)'}, 'GSM2679506': {'line': 'BLCL (165)'}, 'GSM2679507': {'line': 'BLCL (165)'}, 'GSM2679504': {'line': 'BLCL (165)'}, 'GSM2679505': {'line': 'BLCL (165)'}, 'GSM2679502': {'line': 'BLCL (165)'}, 'GSM2112559': {'line': 'HaCat', 'vector': 'none', 'treatment': 'control siRNA'}, 'GSM2679500': {'line': 'BLCL (165)'}, 'GSM2679501': {'line': 'BLCL (165)'}, 'GSM2142608': {'gender': 'male', 'age': '76', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '3'}, 'GSM2142609': {'gender': 'female', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '2', 'smoking': '1'}, 'GSM2024759': {'donor': 'C', 'time': '24', 'id': '767', 'treatment': 'RPMI'}, 'GSM2142602': {'gender': 'male', 'age': '67', 'who': '1', 'dead': '0', 'date': '2013-04-10', 'histology': '1', 'tnm': '2', 'smoking': '2'}, 'GSM2142603': {'gender': 'female', 'age': '73', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM2142600': {'gender': 'female', 'age': '73', 'who': '0', 'dead': '1', 'date': '2009-09-12', 'histology': '2', 'tnm': '3', 'smoking': '2'}, 'GSM2142601': {'gender': 'female', 'age': '76', 'who': '0', 'dead': '1', 'date': '2012-06-19', 'histology': '1', 'tnm': '5', 'smoking': '2'}, 'GSM2142606': {'gender': 'male', 'age': '70', 'who': '0', 'dead': '1', 'date': '2012-02-27', 'histology': '2', 'tnm': '4', 'smoking': '2'}, 'GSM2142607': {'gender': 'female', 'age': '68', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '4', 'smoking': '3'}, 'GSM2142604': {'gender': 'male', 'age': '70', 'who': '1', 'dead': '1', 'date': '2010-02-16', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142605': {'gender': 'female', 'age': '45', 'who': '0', 'dead': '1', 'date': '2011-09-04', 'histology': '2', 'tnm': '7', 'smoking': '3'}, 'GSM1505828': {'gender': 'female', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '07-02'}, 'GSM1505829': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '07-03'}, 'GSM1505844': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '03-03'}, 'GSM1505820': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '03-03'}, 'GSM1505821': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '03-04'}, 'GSM1505822': {'gender': 'male', 'state': 'unaffected', 'conditions': '0', 'type': 'iPSC-derived neural progenitors', 'id': '1123-01'}, 'GSM1505823': {'gender': 'female', 'state': 'unaffected', 'conditions': '0', 'type': 'iPSC-derived neural progenitors', 'id': '1123-02'}, 'GSM1505824': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '0', 'type': 'iPSC-derived neural progenitors', 'id': '1123-03'}, 'GSM1505825': {'gender': 'male', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '1123-01'}, 'GSM1505826': {'gender': 'female', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '1123-02'}, 'GSM1505827': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '1123-03'}, 'GSM3348027': {'tissue': 'amnionic membrane', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM2141559': {'individual': 'EU122', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141558': {'individual': 'EU120', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141557': {'individual': 'EU120', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141556': {'individual': 'EU120', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141555': {'individual': 'EU118', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141554': {'individual': 'EU118', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141553': {'individual': 'EU118', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141552': {'individual': 'EU110', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141551': {'individual': 'EU110', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141550': {'individual': 'EU110', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2758949': {'line': 'MCF-7', 'transfection': 'pLenti-HA-EZH2', 'treatment': 'Tamoxifen'}, 'GSM849346': {'lineage': 'ectoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'I70', 'sex': 'U', 'rnaextract': 'longNonPolyA', 'labversion': 'Delve version 0.9', 'karyotype': 'normal', 'biorep': 'gen0155C'}, 'GSM849347': {'lineage': 'ectoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'I71', 'sex': 'U', 'rnaextract': 'longNonPolyA', 'labversion': 'Delve version 0.9', 'karyotype': 'normal', 'biorep': 'gen0157N'}, 'GSM849344': {'lineage': 'endoderm', 'description': 'Total RNA extract (longer than 200 nt)', 'localization': 'nucleolus', 'datatype': 'Cage', 'labexpid': 'I68', 'sex': 'M', 'rnaextract': 'total', 'karyotype': 'cancer', 'biorep': 'gen0127NL'}, 'GSM849345': {'lineage': 'endoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'I44', 'sex': 'M', 'rnaextract': 'longNonPolyA', 'labversion': 'Delve version 0.9', 'biorep': 'gen0128N'}, 'GSM849342': {'lineage': 'ectoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'J80', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '011WC'}, 'GSM849343': {'description': 'tier 1', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'J89', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '013C'}, 'GSM849340': {'lineage': 'mesoderm', 'description': 'Total RNA extract (longer than 200 nt)', 'localization': 'nucleoplasm', 'datatype': 'Cage', 'labexpid': 'I34', 'sex': 'F', 'rnaextract': 'total', 'labversion': 'Delve version 0.9', 'karyotype': 'cancer', 'biorep': 'gen0147NP'}, 'GSM849341': {'lineage': 'mesoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'J59', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'karyotype': 'normal', 'biorep': 'gen0110N'}, 'GSM849348': {'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'J93', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '003N'}, 'GSM849349': {'description': 'tier 1', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'J84', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '003C'}, 'GSM922199': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922198': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922197': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922196': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922195': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922194': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922193': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922192': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922191': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922190': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2339039': {'group': 'Bisphenol A', 'time': '48h', 'replicate': '2', 'factor': '0.995134', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339038': {'group': 'Glyphosate', 'time': '48h', 'replicate': '2', 'factor': '0.990714', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2862288': {'line': 'AD2-01', 'type': 'Differentiated sensory neurons'}, 'GSM2339031': {'group': 'Bisphenol A', 'time': '48h', 'replicate': '3', 'factor': '1.04797', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339030': {'group': 'Glyphosate', 'time': '48h', 'replicate': '3', 'factor': '1.01369', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339033': {'group': 'Glyphosate', 'time': '48h', 'replicate': '1', 'factor': '1.00704', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339032': {'group': 'Bisphenol AF', 'time': '48h', 'replicate': '3', 'factor': '1.06154', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339035': {'group': 'Bisphenol AF', 'time': '48h', 'replicate': '1', 'factor': '0.982189', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339034': {'group': 'Bisphenol A', 'time': '48h', 'replicate': '1', 'factor': '1.00175', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339037': {'group': 'Estradiol', 'time': '48h', 'replicate': '2', 'factor': '1.01058', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339036': {'group': 'Negative', 'time': '48h', 'replicate': '2', 'factor': '0.968758', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM3348029': {'tissue': 'amnionic membrane', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348028': {'tissue': 'amnionic membrane', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM2061703': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061702': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061701': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061700': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061707': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061706': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1401708': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM2061704': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1401706': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401707': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM2061709': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061708': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1401702': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401703': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401700': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401701': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM2433128': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433129': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433124': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433125': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433126': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433127': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433120': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433121': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433122': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433123': {'state': 'Control', 'tissue': 'lung'}, 'GSM2391165': {'disease': 'NSCLC'}, 'GSM2391164': {'disease': 'NSCLC'}, 'GSM2100179': {'rin': '10', 'Sex': 'Male', 'sspg': '106', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '32', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '65', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '21214', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '649', 'method': 'Life-Tech GITC'}, 'GSM1557568': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM2588930': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'CCACGCTCCCAGAAAGCAAA'}, 'GSM2588931': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'TCTGAAGGAGGTATCTATTT'}, 'GSM2391161': {'disease': 'NSCLC'}, 'GSM2391160': {'disease': 'NSCLC'}, 'GSM2391163': {'disease': 'NSCLC'}, 'GSM2574347': {'line': 'breast cancer cell line MCF7', 'protocol': 'grown in high glucose and then shifted in low glucose'}, 'GSM2391162': {'disease': 'NSCLC'}, 'GSM2257577': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257576': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257575': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257574': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257573': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257572': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257571': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257570': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'INTS11 siRNA transfection, 3 days', 'background': 'BRAF mutation'}, 'GSM2257578': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2227054': {'tissue': 'Heart', 'stage': 'Adult'}, 'GSM2227052': {'tissue': 'Heart', 'stage': 'Adult'}, 'GSM2720318': {'passages': 'p10', 'type': 'MSC'}, 'GSM1297670': {'differentiation': 'Differentiation 3, full confluency', 'material': 'extracted RNA', 'point': 'Day 7'}, 'GSM2350199': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM3711300': {'mediancvcoverage': '0.759174', 'percentaligned': '0.702080671', 'visit': 'Visit 2b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '13'}, 'GSM2350198': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM1113421': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 10 post-vaccine'}, 'GSM1113420': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 9 post-vaccine'}, 'GSM3486132': {'line': 'SU.86.86', 'sampling': '57Y', 'type': 'Pancreatic adenocarcinoma', 'disease': 'Derived from metastatic site: Liver', 'Sex': 'Female'}, 'GSM3486133': {'line': 'SW1990', 'sampling': '56Y', 'type': 'Pancreatic adenocarcinoma', 'Sex': 'Male'}, 'GSM3486130': {'line': 'Panc 03.27', 'sampling': '65Y', 'type': 'Pancreatic adenocarcinoma', 'Sex': 'Female'}, 'GSM3486131': {'line': 'PANC-1', 'sampling': '56Y', 'type': 'Pancreatic ductal adenocarcinoma', 'Sex': 'Male'}, 'GSM3711301': {'mediancvcoverage': '0.632459', 'percentaligned': '0.949237468', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM2350193': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2044649': {'age': '47', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044648': {'age': '47', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044647': {'age': '43', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044646': {'age': '43', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044645': {'age': '0.1', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044644': {'age': '0.1', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044643': {'age': '37', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044642': {'age': '37', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044641': {'age': '85', 'race': 'Cauc', 'Sex': 'F'}, 'GSM2044640': {'age': '85', 'race': 'Cauc', 'Sex': 'F'}, 'GSM2326000': {'type': 'Human embryonic stem cell'}, 'GSM2326001': {'type': 'Human embryonic stem cell'}, 'GSM2326002': {'type': 'Human embryonic stem cell'}, 'GSM2326003': {'type': 'Human embryonic stem cell'}, 'GSM2326004': {'type': 'Human embryonic stem cell'}, 'GSM2326005': {'type': 'Human embryonic stem cell'}, 'GSM2326006': {'type': 'Human embryonic stem cell'}, 'GSM2326007': {'type': 'Human embryonic stem cell'}, 'GSM2326008': {'type': 'Human embryonic stem cell'}, 'GSM2326009': {'type': 'Human embryonic stem cell'}, 'GSM3711302': {'mediancvcoverage': '0.604775', 'percentaligned': '0.962737706', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM1489607': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '28U2'}, 'GSM1489606': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '27U4'}, 'GSM1489605': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '27U3'}, 'GSM1489604': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '27U2'}, 'GSM1489603': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '27T4'}, 'GSM1489602': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '27T3'}, 'GSM1489601': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '26U4'}, 'GSM1489600': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '26U3'}, 'GSM1489609': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '3T3'}, 'GSM1489608': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '2U2'}, 'GSM2790802': {'status': 'Healthy', 'donor': '24', 'type': 'Monocyte', 'treatment': 'None', 'point': 'Baseline'}, 'GSM2082559': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM1571088': {'stage': 'mesoderm'}, 'GSM2082555': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM1571084': {'stage': 'mesoderm'}, 'GSM2082557': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM1571086': {'stage': 'mesoderm'}, 'GSM2082551': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM2082550': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM2082553': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM1571082': {'stage': 'mesoderm'}, 'GSM1228039': {'line': 'GM12892', 'type': 'rRNA depleted'}, 'GSM1228038': {'line': 'GM12892', 'type': 'rRNA depleted'}, 'GSM1228037': {'line': 'GM12891', 'type': 'rRNA depleted'}, 'GSM1228036': {'line': 'GM12891', 'type': 'rRNA depleted'}, 'GSM1228035': {'line': 'GM12878', 'type': 'rRNA depleted'}, 'GSM1228034': {'line': 'GM12878', 'type': 'rRNA depleted'}, 'GSM2823136': {'group': 'untreated', 'number': '79'}, 'GSM2823137': {'group': 'untreated', 'number': '82'}, 'GSM2823135': {'group': 'untreated', 'number': '76'}, 'GSM1963758': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2823138': {'group': 'untreated', 'number': '84'}, 'GSM2823139': {'group': 'untreated', 'number': '86'}, 'GSM1963759': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2361588': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1378016': {'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1378015': {'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1378014': {'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM3362553': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM3362552': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM3362551': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM3362550': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM2361584': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM3362556': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM1378019': {'line': 'IVF Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1378018': {'line': 'IVF Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1968489': {'preparation': 'UMI-seq', 'type': 'reference RNA'}, 'GSM1968488': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1968487': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1968486': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1968485': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1968484': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1968483': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1968482': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1968481': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM1968480': {'preparation': 'Smart-seq2', 'type': 'reference RNA'}, 'GSM2649780': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM742925': {'deviation': '26', 'length': '75', 'type': 'paired-end', 'size': '243'}, 'GSM742921': {'deviation': '33', 'length': '75', 'type': 'paired-end', 'size': '258'}, 'GSM742928': {'deviation': '23', 'length': '75', 'type': 'paired-end', 'size': '179'}, 'GSM1955838': {'a': '62113', 'cd38': '1051', 'cd49f': '333', 'w': '66684', 'h': '61044', 'lin': '139', 'cd34': '5395', 'cd90': '1715', 'cd7': '396', 'cd10': '473', 'time': '11415', 'cd135': '1498', 'cd45ra': '203'}, 'GSM1955839': {'a': '59412', 'cd38': '-203', 'cd49f': '539', 'w': '65483', 'h': '59460', 'lin': '-292', 'cd34': '6420', 'cd90': '4647', 'cd7': '258', 'cd10': '701', 'time': '11152', 'cd135': '3939', 'cd45ra': '318'}, 'GSM1955832': {'a': '60409', 'cd38': '803', 'cd49f': '558', 'w': '68186', 'h': '58061', 'lin': '-69', 'cd34': '7401', 'cd90': '1232', 'cd7': '-59', 'cd10': '2386', 'time': '9862', 'cd135': '3998', 'cd45ra': '2890'}, 'GSM1955833': {'a': '59516', 'cd38': '45', 'cd49f': '580', 'w': '67659', 'h': '57648', 'lin': '-18', 'cd34': '8354', 'cd90': '4086', 'cd7': '-9', 'cd10': '879', 'time': '12498', 'cd135': '3973', 'cd45ra': '51'}, 'GSM1955830': {'a': '54870', 'cd38': '938', 'cd49f': '152', 'w': '67033', 'h': '53644', 'lin': '154', 'cd34': '3885', 'cd90': '2655', 'cd7': '-160', 'cd10': '832', 'time': '9459', 'cd135': '2250', 'cd45ra': '168'}, 'GSM1955831': {'a': '66589', 'cd38': '633', 'cd49f': '1945', 'w': '72495', 'h': '60197', 'lin': '-75', 'cd34': '5978', 'cd90': '387', 'cd7': '426', 'cd10': '736', 'time': '9651', 'cd135': '7035', 'cd45ra': '955'}, 'GSM1955836': {'a': '45302', 'cd38': '181', 'cd49f': '470', 'w': '64609', 'h': '45952', 'lin': '-230', 'cd34': '5419', 'cd90': '531', 'cd7': '342', 'cd10': '608', 'time': '11861', 'cd135': '2055', 'cd45ra': '108'}, 'GSM1955837': {'a': '57909', 'cd38': '334', 'cd49f': '919', 'w': '67891', 'h': '55900', 'lin': '99', 'cd34': '6194', 'cd90': '1142', 'cd7': '493', 'cd10': '135', 'time': '11667', 'cd135': '6916', 'cd45ra': '1790'}, 'GSM1955834': {'a': '44694', 'cd38': '467', 'cd49f': '969', 'w': '64559', 'h': '45370', 'lin': '224', 'cd34': '4599', 'cd90': '1962', 'cd7': '292', 'cd10': '145', 'time': '12294', 'cd135': '2251', 'cd45ra': '17'}, 'GSM1955835': {'a': '59984', 'cd38': '565', 'cd49f': '359', 'w': '67275', 'h': '58434', 'lin': '167', 'cd34': '4366', 'cd90': '416', 'cd7': '159', 'cd10': '834', 'time': '12079', 'cd135': '913', 'cd45ra': '159'}, 'GSM1697518': {'with': 'B. pseudomallei for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697519': {'with': 'B. pseudomallei for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697512': {'with': 'none (control) for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697513': {'with': 'none (control) for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697510': {'with': 'B. pseudomallei for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697511': {'with': 'none (control) for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697516': {'with': 'none (control) for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697517': {'with': 'B. pseudomallei for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697514': {'with': 'none (control) for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697515': {'with': 'none (control) for 2h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM2689242': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689243': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689240': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689241': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689246': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689247': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689244': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689245': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689248': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689249': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2471151': {'lineage': 'granulomonocytic', 'transduction': 'U2AF1 S34F', 'type': 'CFU-G'}, 'GSM2471150': {'lineage': 'granulomonocytic', 'transduction': 'U2AF1 S34F', 'type': 'CFU-G'}, 'GSM3586541': {'origin': 'ABC', 'pfstt': '883', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '883', 'cycles': '8', 'oscs': '0'}, 'GSM2172289': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172288': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2172281': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172280': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2522360': {'with': 'GW9662', 'tissue': 'cord blood', 'type': 'CD34+ cells', 'passage': 'day4-culture'}, 'GSM2172282': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172285': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172284': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172287': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172286': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2889460': {'state': 'control', 'type': 'iPSC-derived motor neuros'}, 'GSM2782550': {'genotype': 'WT', 'treatment_time': 'GSK3i for 24h, Wnt inhibitor for 48h', 'treatment': 'GSK3i+Wnt/β-catenin inhibitor'}, 'GSM2782551': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'Activin'}, 'GSM2782552': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'Activin'}, 'GSM2889461': {'state': 'control', 'type': 'iPSC-derived motor neuros'}, 'GSM2889462': {'state': 'SMA', 'type': 'iPSC-derived motor neuros'}, 'GSM2889463': {'state': 'SMA', 'type': 'iPSC-derived motor neuros'}, 'GSM2451319': {'compartment': 'Stroma', 'id': 'CUMC_037', 'library': 'NuGEN'}, 'GSM2750929': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2451317': {'compartment': 'Stroma', 'id': 'CUMC_036', 'library': 'NuGEN'}, 'GSM2451316': {'compartment': 'Epithelium', 'id': 'CUMC_036', 'library': 'NuGEN'}, 'GSM2451315': {'compartment': 'Stroma', 'id': 'CUMC_035', 'library': 'NuGEN'}, 'GSM2451314': {'compartment': 'Epithelium', 'id': 'CUMC_035', 'library': 'NuGEN'}, 'GSM2451313': {'compartment': 'Stroma', 'id': 'CUMC_034', 'library': 'NuGEN'}, 'GSM2451312': {'compartment': 'Epithelium', 'id': 'CUMC_034', 'library': 'NuGEN'}, 'GSM2451311': {'compartment': 'Stroma', 'id': 'CUMC_033', 'library': 'NuGEN'}, 'GSM2750921': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM1957285': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957284': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1480735': {'line': 'TSU-1621-MT', 'vendor': 'Santa Cruz', 'target': 'ERG'}, 'GSM2741995': {'disease': 'atopic dermatitis (AD)', 'mutation': 'FLG mutation'}, 'GSM2741994': {'disease': 'atopic dermatitis (AD)', 'mutation': 'FLG mutation'}, 'GSM2741997': {'disease': 'ichthyosis vulgaris (IV)', 'mutation': 'FLG mutation'}, 'GSM2741996': {'disease': 'atopic dermatitis (AD)', 'mutation': 'FLG mutation'}, 'GSM2741991': {'disease': 'atopic dermatitis (AD)', 'mutation': 'WT'}, 'GSM2741990': {'disease': 'atopic dermatitis (AD)', 'mutation': 'WT'}, 'GSM2741993': {'disease': 'atopic dermatitis (AD)', 'mutation': 'WT'}, 'GSM2741992': {'disease': 'atopic dermatitis (AD)', 'mutation': 'WT'}, 'GSM2741999': {'disease': 'ichthyosis vulgaris (IV)', 'mutation': 'FLG mutation'}, 'GSM2741998': {'disease': 'ichthyosis vulgaris (IV)', 'mutation': 'FLG mutation'}, 'GSM2882995': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject6', 'drug': 'Metformin'}, 'GSM1957478': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957479': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2882994': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject5', 'drug': 'Metformin'}, 'GSM1957474': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957475': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957476': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957477': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957470': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2882997': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject6', 'drug': 'Metformin'}, 'GSM1957472': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957473': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2153391': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2882991': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject3', 'drug': 'Metformin'}, 'GSM2882990': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject2', 'drug': 'Metformin'}, 'GSM2153394': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2944134': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'ES2'}, 'GSM2153395': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2166082': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'Santa Cruz sc-7292', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166083': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166080': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'Santa Cruz sc-7292', 'genotype': 'normal'}, 'GSM2166081': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'normal'}, 'GSM2166086': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'Santa Cruz sc-7292', 'genotype': 'normal'}, 'GSM2166087': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'normal'}, 'GSM2166084': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'Santa Cruz sc-7292', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166085': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166088': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'Santa Cruz sc-7292', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166089': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2108449': {'stages': 'myoblast nucleus'}, 'GSM1624301': {'gender': 'F', 'age': '57', 'tissue': 'skin', 'disease': 'NLP', 'subject': '11'}, 'GSM2194445': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM860031': {'length': '50', 'line': '293T', 'treatment': 'Control siRNA'}, 'GSM860030': {'length': '50', 'line': '293T', 'treatment': 'Control siRNA'}, 'GSM1624300': {'gender': 'F', 'age': '57', 'tissue': 'skin', 'disease': 'LP', 'subject': '11'}, 'GSM2561579': {'line': 'H929', 'type': 'Multiple myeloma'}, 'GSM2561578': {'line': 'H929', 'type': 'Multiple myeloma'}, 'GSM2536674': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 1', 'treatment': 'on-treatment'}, 'GSM1624303': {'gender': 'F', 'age': '58', 'tissue': 'skin', 'disease': 'NLP', 'subject': '12'}, 'GSM2147658': {'status': 'control', 'cohort': '1', 'condition': 'age-matched control'}, 'GSM2147659': {'status': 'control', 'cohort': '1', 'condition': 'age-matched control'}, 'GSM2147656': {'status': 'control', 'cohort': '1', 'condition': 'age-matched control'}, 'GSM2147657': {'status': 'control', 'cohort': '1', 'condition': 'age-matched control'}, 'GSM2147654': {'status': 'control', 'cohort': '1', 'condition': 'age-matched control'}, 'GSM2147655': {'status': 'control', 'cohort': '1', 'condition': 'age-matched control'}, 'GSM2147653': {'status': 'control', 'cohort': '1', 'condition': 'age-matched control'}, 'GSM1579290': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'FGF2'}, 'GSM1579291': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'Nodal/Activin/TGFb inhibitor and FGF2'}, 'GSM1579292': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'Nodal/Activin/TGFb inhibitor and FGF2'}, 'GSM1579293': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'Nodal/Activin/TGFb inhibitor and FGF2'}, 'GSM2243918': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F5', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243919': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1579296': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'Nodal/Activin/TGFb inhibitor and FGF2 then FGF2 alone'}, 'GSM2243914': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D2', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243915': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G6', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243916': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243917': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G2', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243910': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B2', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243911': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243912': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243913': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E2', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2840319': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840318': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840311': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840310': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840313': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840312': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840315': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840314': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840317': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840316': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1556635': {'state': 'healthy', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556634': {'state': 'healthy', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556636': {'state': 'healthy', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556631': {'state': 'healthy', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556630': {'state': 'asthma', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556633': {'state': 'healthy', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556632': {'state': 'healthy', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM2777327': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM1396738': {'lane': '7', 'librarybatch': 'B', 'replicate': '3', 'treatment': 'DMSO', 'time': '7 days', 'type': 'WAT', 'multiplex': '2'}, 'GSM1396739': {'lane': '5', 'librarybatch': 'B', 'replicate': '1', 'treatment': 'JAK3i', 'time': '7 days', 'type': 'WAT', 'multiplex': '3'}, 'GSM2777326': {'type': 'human colon carcinoma cell lines', 'passage': 'passage 5-6'}, 'GSM1396732': {'lane': '2', 'librarybatch': 'A', 'replicate': '3', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'MPC', 'multiplex': '2'}, 'GSM1396733': {'lane': '4', 'librarybatch': 'A', 'replicate': '1', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'BAT', 'multiplex': '1'}, 'GSM1396730': {'lane': '1', 'librarybatch': 'A', 'replicate': '1', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'MPC', 'multiplex': '3'}, 'GSM1396731': {'lane': '3', 'librarybatch': 'A', 'replicate': '2', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'MPC', 'multiplex': '4'}, 'GSM1396736': {'lane': '8', 'librarybatch': 'B', 'replicate': '1', 'treatment': 'DMSO', 'time': '7 days', 'type': 'WAT', 'multiplex': '1'}, 'GSM1396737': {'lane': '6', 'librarybatch': 'B', 'replicate': '2', 'treatment': 'DMSO', 'time': '7 days', 'type': 'WAT', 'multiplex': '4'}, 'GSM1396734': {'lane': '2', 'librarybatch': 'A', 'replicate': '2', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'BAT', 'multiplex': '4'}, 'GSM1396735': {'lane': '1', 'librarybatch': 'A', 'replicate': '3', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'BAT', 'multiplex': '2'}, 'GSM1386599': {'line': 'H1944', 'tissue': 'Lung', 'type': 'Adenocarcinoma (NSCLC)'}, 'GSM1386598': {'line': 'H1792', 'tissue': 'Lung', 'type': 'Adenocarcinoma (NSCLC)'}, 'GSM1624307': {'gender': 'M', 'age': '32', 'tissue': 'skin', 'disease': 'C', 'subject': '16'}, 'GSM1386593': {'line': 'HBE2', 'tissue': 'Lung', 'type': 'Immortalized bronchial epithelial'}, 'GSM1386597': {'line': 'H1437', 'tissue': 'Lung', 'type': 'Adenocarcinoma (NSCLC)'}, 'GSM1386596': {'line': 'H522', 'tissue': 'Lung', 'type': 'Adenocarcinoma (NSCLC)'}, 'GSM1386595': {'line': 'HBE4', 'tissue': 'Lung', 'type': 'Immortalized bronchial epithelial'}, 'GSM1386594': {'line': 'HBE3', 'tissue': 'Lung', 'type': 'Immortalized bronchial epithelial'}, 'GSM1561639': {'type': 'Uninvolved skin'}, 'GSM1561638': {'type': 'Uninvolved skin'}, 'GSM1561637': {'type': 'Uninvolved skin'}, 'GSM1561636': {'type': 'Uninvolved skin'}, 'GSM1561635': {'type': 'Uninvolved skin'}, 'GSM1561634': {'type': 'Uninvolved skin'}, 'GSM1561633': {'type': 'Uninvolved skin'}, 'GSM1561632': {'type': 'Uninvolved skin'}, 'GSM1561631': {'type': 'Uninvolved skin'}, 'GSM1561630': {'type': 'Uninvolved skin'}, 'GSM2143624': {'passages': '6-10', 'type': 'Thyrocyte', 'variation': 'BRAFV600E overexpression'}, 'GSM2143623': {'passages': '6-10', 'type': 'Thyrocyte', 'variation': 'Normal'}, 'GSM2143622': {'passages': '6-10', 'type': 'Thyrocyte', 'variation': 'BRAFV600E overexpression'}, 'GSM2143621': {'passages': '6-10', 'type': 'Thyrocyte', 'variation': 'Normal'}, 'GSM1126631': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM2616749': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616748': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616743': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616742': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616741': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616740': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616747': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616746': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616745': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616744': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM1233909': {'replicate': '1', 'line': '12878', 'antibody': 'RNA-seq'}, 'GSM1233908': {'replicate': '1', 'line': '12878', 'antibody': 'Input'}, 'GSM1233903': {'replicate': '2', 'line': '12878', 'antibody': 'H3K4me1'}, 'GSM1233902': {'replicate': '1', 'line': '12878', 'antibody': 'H3K4me1'}, 'GSM1233901': {'replicate': '2', 'line': '12878', 'antibody': 'H3K36me3'}, 'GSM1233900': {'replicate': '1', 'line': '12878', 'antibody': 'H3K36me3'}, 'GSM1233907': {'replicate': '3', 'line': '12878', 'antibody': 'H3K4me3'}, 'GSM1233906': {'replicate': '2', 'line': '12878', 'antibody': 'H3K4me3'}, 'GSM1233905': {'replicate': '1', 'line': '12878', 'antibody': 'H3K4me3'}, 'GSM1233904': {'replicate': '3', 'line': '12878', 'antibody': 'H3K4me1'}, 'GSM1081535': {'line': 'HEK293T RAD21cv'}, 'GSM1081534': {'line': 'HEK293T RAD21cv'}, 'GSM1081537': {'line': 'HEK293T RAD21cv'}, 'GSM1081536': {'line': 'HEK293T RAD21cv'}, 'GSM1081531': {'line': 'HEK293T'}, 'GSM1081530': {'line': 'HEK293T'}, 'GSM1081533': {'line': 'HEK293T'}, 'GSM1081532': {'line': 'HEK293T'}, 'GSM1081539': {'line': 'HEK293T'}, 'GSM1081538': {'line': 'HEK293T'}, 'GSM823382': {'antibody': 'BRD4 (Abcam; Cat no. ab46199; Lot no. 613288)', 'type': 'Embryonic Stem Cells', 'treatment': 'untreated'}, 'GSM823383': {'type': 'CD4+ T cells'}, 'GSM823380': {'antibody': 'PolII4H8 (Abcam; Cat no. ab5408; Lot no. 722997)', 'type': 'CD4+ T cells', 'treatment': 'JQ1 treated'}, 'GSM823381': {'antibody': 'PolIISer2 (Abcam; Cat no. ab5095; Lot no. 782031)', 'type': 'CD4+ T cells', 'treatment': 'JQ1 treated'}, 'GSM2303337': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303336': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303335': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303334': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303333': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303332': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303331': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303330': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303339': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303338': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2302064': {'timepoint': 'Pre', 'id': '23', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302065': {'timepoint': 'Post', 'id': '23', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302066': {'timepoint': 'Pre', 'id': '24', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302067': {'timepoint': 'Post', 'id': '24', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302060': {'timepoint': 'Pre', 'id': '21', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302061': {'timepoint': 'Post', 'id': '21', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302062': {'timepoint': 'Pre', 'id': '22', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302063': {'timepoint': 'Post', 'id': '22', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302068': {'timepoint': 'Pre', 'id': '25', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302069': {'timepoint': 'Post', 'id': '25', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2459102': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2459103': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2459100': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2459101': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2459106': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2459107': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2459104': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2459105': {'line': 'NALM-6', 'type': 'B-Cell'}, 'GSM2459108': {'line': 'LALB (ALL-B patient-derived cell line)', 'type': 'B-Cell'}, 'GSM2459109': {'line': 'LALB (ALL-B patient-derived cell line)', 'type': 'B-Cell'}, 'GSM2339330': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339331': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM1548058': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548059': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548052': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548053': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548050': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548051': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM2287150': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1548057': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548054': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548055': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM2458857': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.50'}, 'GSM2458856': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.08'}, 'GSM2458855': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.00'}, 'GSM2519357': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2458853': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.50'}, 'GSM2458852': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.83'}, 'GSM2458851': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.50'}, 'GSM2458850': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.25'}, 'GSM1848824': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 7', 'point': 'immediately after exercise'}, 'GSM1848825': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 7', 'point': '3 hours after exercise'}, 'GSM1848826': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 7', 'point': 'pre exercise'}, 'GSM2519358': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2519359': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2458859': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.50'}, 'GSM2458858': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.67'}, 'GSM2287151': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1896135': {'individual': 'AF57', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896134': {'individual': 'AF53', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896137': {'individual': 'AF57', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896136': {'individual': 'AF57', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896131': {'individual': 'AF49', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896130': {'individual': 'AF49', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896133': {'individual': 'AF53', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896132': {'individual': 'AF53', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896139': {'individual': 'AF59', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896138': {'individual': 'AF59', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM800464': {'input': '5 ng', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM800466': {'input': '1 ng', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM800462': {'input': '10 ng', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM800468': {'input': '500 pg', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM800469': {'input': '100 pg', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM2480935': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'DDX6', 'fraction': 'none'}, 'GSM2480934': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'DDX6', 'fraction': 'none'}, 'GSM2480937': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480936': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'DDX6', 'fraction': 'none'}, 'GSM2480931': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'eIF4A2', 'fraction': 'none'}, 'GSM2480930': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'eIF4A1', 'fraction': 'none'}, 'GSM2101159': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib Treated'}, 'GSM2101158': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2101157': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2101156': {'line': 'HCC827', 'type': 'NSCLC', 'treatment': 'Gefitinib Treated'}, 'GSM2101155': {'line': 'HCC827', 'type': 'NSCLC', 'treatment': 'Gefitinib Treated'}, 'GSM2101154': {'line': 'HCC827', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2101153': {'line': 'HCC827', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2480938': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM1969185': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 3', 'description': '24h Overexpression of WT human RNase L', 'variation': '24h Overexpression of WT human RNase L'}, 'GSM1969184': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 3', 'description': '24h Overexpression of H672N RNase-inactive human RNase L', 'variation': '24h Overexpression of WT human RNase L'}, 'GSM1969187': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 4', 'description': '36h RNAi for RNase L', 'variation': '36h RNAi for RNase L'}, 'GSM1969186': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 3', 'description': '24h Overexpression of H672N RNase-inactive human RNase L', 'variation': '24h Overexpression of WT human RNase L'}, 'GSM1969181': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 2', 'description': 'HeLa S10 extract treated with recombinant human RNase L + 2-5A for 5 seconds', 'variation': 'wild type'}, 'GSM1969180': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 2', 'description': 'Control HeLa RNA from S10 extracts', 'variation': 'wild type'}, 'GSM1969183': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 3', 'description': '24h Overexpression of WT human RNase L', 'variation': '24h Overexpression of WT human RNase L'}, 'GSM1969182': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 2', 'description': 'HeLa S10 extract treated with recombinant human RNase L + 2-5A for 5 seconds', 'variation': 'wild type'}, 'GSM2481044': {'passages': 'p39', 'type': 'NT2D1', 'genotype': '46 XY +complex'}, 'GSM2481045': {'antibody': 'anti-POLR3G (SZ3070, Prof. Nouria Hernandez)', 'passages': 'p39', 'type': 'NT2D1', 'genotype': '46 XY +complex'}, 'GSM2481042': {'antibody': 'anti-POLR3G (SZ3070, Prof. Nouria Hernandez)', 'passages': 'p37', 'type': 'NT2D1', 'genotype': '46 XY +complex'}, 'GSM2481043': {'antibody': 'anti-H3K4me3 (C15410003, Diagenode)', 'passages': 'p37', 'type': 'NT2D1', 'genotype': '46 XY +complex'}, 'GSM2481040': {'passages': 'p38', 'type': 'H9', 'genotype': '46 XX, POLR3G siRNA knockdown'}, 'GSM2481041': {'passages': 'p37', 'type': 'NT2D1', 'genotype': '46 XY +complex'}, 'GSM1724092': {'type': 'Human Umbilical Vein Endothelial Cells (HUVECs)', 'condition': 'hypoxia (0.1-0.2% O2)'}, 'GSM1724090': {'type': 'Human Umbilical Vein Endothelial Cells (HUVECs)', 'condition': 'hypoxia (0.1-0.2% O2)'}, 'GSM1724091': {'type': 'Human Umbilical Vein Endothelial Cells (HUVECs)', 'condition': 'hypoxia (0.1-0.2% O2)'}, 'GSM2332450': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2332451': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2627202': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': '7p15.2 risk region deleted'}, 'GSM2526836': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2248269': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'acinar', 'ercc_dilution': '1000000'}, 'GSM2248268': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'undefined', 'ercc_dilution': '1000000'}, 'GSM2248267': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'beta', 'ercc_dilution': '1000000'}, 'GSM2248266': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'duct', 'ercc_dilution': '1000000'}, 'GSM2248265': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2248264': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'acinar', 'ercc_dilution': '1000000'}, 'GSM2248263': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'pp', 'ercc_dilution': '1000000'}, 'GSM2248262': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'pp', 'ercc_dilution': '1000000'}, 'GSM2248261': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'undefined', 'ercc_dilution': '1000000'}, 'GSM2248260': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2627203': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': '7p15.2 risk region deleted'}, 'GSM1131193': {'protocol': 'GnRH antagonist, rFSH, hCG', 'type': 'cumulus granulosa cells', 'infertility': 'male factor'}, 'GSM1131192': {'protocol': 'GnRH antagonist, rFSH, hCG', 'type': 'cumulus granulosa cells', 'infertility': 'male factor'}, 'GSM1657147': {'differentiation': '21', 'treated': 'control', 'stage': 'immature hepatocytes'}, 'GSM1657146': {'differentiation': '15', 'treated': 'IFN-treated', 'stage': 'post differentiation hepatoblast'}, 'GSM1131197': {'protocol': 'GnRH antagonist, rFSH, hCG', 'type': 'mural granulosa cells', 'infertility': 'male factor'}, 'GSM1131196': {'protocol': 'GnRH antagonist, rFSH, hCG', 'type': 'mural granulosa cells', 'infertility': 'male factor'}, 'GSM1131195': {'protocol': 'GnRH antagonist, rFSH, hCG', 'type': 'mural granulosa cells', 'infertility': 'male factor'}, 'GSM1131194': {'protocol': 'GnRH antagonist, rFSH, hCG', 'type': 'cumulus granulosa cells', 'infertility': 'male factor'}, 'GSM1657149': {'differentiation': '21', 'treated': 'IFN-treated', 'stage': 'immature hepatocytes'}, 'GSM1657148': {'differentiation': '21', 'treated': 'control', 'stage': 'immature hepatocytes'}, 'GSM2048449': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048448': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048441': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2048440': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2048443': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2048442': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2048445': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048444': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2048447': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048446': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2641088': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2641089': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2229954': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS21'}, 'GSM2229955': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS21'}, 'GSM2229956': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS21'}, 'GSM2229957': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS21'}, 'GSM2229950': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS17'}, 'GSM2229951': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS17'}, 'GSM2229952': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS17'}, 'GSM2229953': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS17'}, 'GSM2100204': {'rin': '10', 'Sex': 'Female', 'sspg': '286', 'age': '58', 'bmi': '26.8', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '762', 'method': 'Life-Tech GITC'}, 'GSM2100205': {'rin': '6.9', 'Sex': 'Male', 'sspg': '178', 'age': '69', 'bmi': '27.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '767', 'method': 'Qiagen:trizol'}, 'GSM2100206': {'rin': '7.9', 'Sex': 'Male', 'sspg': '178', 'age': '69', 'bmi': '27.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '767', 'method': 'Qiagen:trizol'}, 'GSM2100207': {'rin': '8.2', 'Sex': 'Male', 'sspg': '178', 'age': '69', 'bmi': '27.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '767', 'method': 'Qiagen:trizol'}, 'GSM2100200': {'rin': '9.4', 'Sex': 'Female', 'sspg': '60', 'age': '41', 'bmi': '27', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '756', 'method': 'Qiagen:trizol'}, 'GSM2100201': {'rin': '9.5', 'Sex': 'Female', 'sspg': '60', 'age': '41', 'bmi': '27', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '756', 'method': 'Qiagen:trizol'}, 'GSM2100202': {'rin': '10', 'Sex': 'Female', 'sspg': '286', 'age': '58', 'bmi': '26.8', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '762', 'method': 'Life-Tech GITC'}, 'GSM2100203': {'rin': '10', 'Sex': 'Female', 'sspg': '286', 'age': '58', 'bmi': '26.8', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '762', 'method': 'Life-Tech GITC'}, 'GSM2641080': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2641081': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2748202': {'status': 'without HCV subgenomic replicon', 'line': 'human hepatoma cell line Huh 7.5', 'agent': 'Actinomycin D', 'point': '6h'}, 'GSM2748203': {'status': 'with HCV subgenomic replicon', 'line': 'Huh 7.5 SI cell line', 'agent': 'Actinomycin D', 'point': '0h'}, 'GSM2748200': {'status': 'without HCV subgenomic replicon', 'line': 'human hepatoma cell line Huh 7.5', 'agent': 'Actinomycin D', 'point': '0h'}, 'GSM2748201': {'status': 'without HCV subgenomic replicon', 'line': 'human hepatoma cell line Huh 7.5', 'agent': 'Actinomycin D', 'point': '3h'}, 'GSM2748206': {'status': 'without HCV subgenomic replicon', 'line': 'human hepatoma cell line Huh 7.5', 'antibody': 'IP using anit-NS5A antibody'}, 'GSM2748207': {'status': 'with HCV subgenomic replicon', 'line': 'Huh 7.5 SI cell line', 'antibody': 'IP using anit-NS5A antibody'}, 'GSM2748204': {'status': 'with HCV subgenomic replicon', 'line': 'Huh 7.5 SI cell line', 'agent': 'Actinomycin D', 'point': '3h'}, 'GSM2748205': {'status': 'with HCV subgenomic replicon', 'line': 'Huh 7.5 SI cell line', 'agent': 'Actinomycin D', 'point': '6h'}, 'GSM2312111': {'culture': '12', 'line': 'DCX-'}, 'GSM2312110': {'culture': '12', 'line': 'DCX-'}, 'GSM2312113': {'culture': '12', 'line': 'DCX-'}, 'GSM2312112': {'culture': '12', 'line': 'DCX-'}, 'GSM2312115': {'culture': '12', 'line': 'DCX-'}, 'GSM2312114': {'culture': '12', 'line': 'DCX-'}, 'GSM2312117': {'culture': '12', 'line': 'DCX-'}, 'GSM2312116': {'culture': '12', 'line': 'DCX-'}, 'GSM2312119': {'culture': '12', 'line': 'DCX-'}, 'GSM2312118': {'culture': '12', 'line': 'DCX-'}, 'd': {'code': '200'}, 'GSM2109424': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2172131': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2837083': {'selected': 'FALSE', 'treatment': '24 hr'}, 'GSM2837082': {'selected': 'TRUE', 'treatment': '24 hr'}, 'GSM2837081': {'selected': 'TRUE', 'treatment': '12 hr'}, 'GSM2837080': {'selected': 'TRUE', 'treatment': '8 hr'}, 'GSM2837087': {'with': 'hsa-miR-371a-5p inhibitor', 'line': 'JEG-3', 'type': 'choriocarcinoma cells'}, 'GSM2837086': {'with': 'control inhibitor', 'line': 'JEG-3', 'type': 'choriocarcinoma cells'}, 'GSM2837085': {'with': 'hsa-miR-371a-5p inhibitor', 'line': 'JAR', 'type': 'choriocarcinoma cells'}, 'GSM2837084': {'with': 'control inhibitor', 'line': 'JAR', 'type': 'choriocarcinoma cells'}, 'GSM2837089': {'with': 'hsa-miR-371a-5p inhibitor', 'line': 'BeWo', 'type': 'choriocarcinoma cells'}, 'GSM2837088': {'with': 'control inhibitor', 'line': 'BeWo', 'type': 'choriocarcinoma cells'}, 'GSM2285369': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM2285368': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM1894188': {'line': 'WI-38', 'fraction': 'Mitoplast'}, 'GSM1894189': {'line': 'WI-38', 'fraction': 'Mitoplast'}, 'GSM3586742': {'origin': 'GCB', 'pfstt': '78', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '215', 'cycles': '6', 'oscs': '0'}, 'GSM3586743': {'origin': 'ABC', 'pfstt': '1282', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1285', 'cycles': '6', 'oscs': '0'}, 'GSM2285363': {'differentiation': 'commercial purification', 'conditions': 'grown in basal medium'}, 'GSM2285362': {'differentiation': 'commercial purification', 'conditions': 'grown in basal medium'}, 'GSM1894186': {'line': 'WI-38', 'fraction': 'Whole cells'}, 'GSM1894187': {'line': 'WI-38', 'fraction': 'Whole cells'}, 'GSM2285367': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM2285366': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM802412': {'passages': '6 to 10', 'target': 'none', 'type': 'contact-inhibited IMR90', 'infection': 'e1a-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'none'}, 'GSM802411': {'passages': '6 to 10', 'target': 'none', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'none'}, 'GSM802410': {'passages': '6 to 10', 'target': 'none', 'type': 'contact-inhibited IMR90', 'infection': 'e1a-infected', 'line': 'IMR90 human primary lung embryo fibroblasts', 'antibody': 'none'}, 'GSM2772515': {'group': 'exvivo', 'disease': 'SYS', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'SYS-68', 'cdna': 'cDNA2029'}, 'GSM1872832': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2560277': {'with': 'siRNA anti-TDP-43', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2560276': {'with': 'siRNA anti-Luciferase', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM1872833': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2560279': {'with': 'siRNA anti-Luciferase', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2560278': {'with': 'siRNA anti-DAZAP1', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM1872830': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1365969': {'source': 'peripheral blood', 'line': 'U266', 'treatment': '5.AZA', 'timepoint': '24hr'}, 'GSM1365968': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'LBH.589', 'timepoint': '24hr'}, 'GSM1872831': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2492522': {'status': 'Negative', 'tissue': 'lung', 'type': 'CD8'}, 'GSM1365961': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'NMP', 'timepoint': '4hr'}, 'GSM1872836': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1365963': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'LBH.589', 'timepoint': '24hr'}, 'GSM1365962': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Control', 'timepoint': '24hr'}, 'GSM1365965': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Combo', 'timepoint': '24hr'}, 'GSM1365964': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': '5.AZA', 'timepoint': '24hr'}, 'GSM1365967': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Control', 'timepoint': '24hr'}, 'GSM1872837': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872834': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872835': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2172134': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2141458': {'individual': 'AF147', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141459': {'individual': 'AF149', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141452': {'individual': 'AF143', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141453': {'individual': 'AF145', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141450': {'individual': 'AF143', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141451': {'individual': 'AF143', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141456': {'individual': 'AF147', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141457': {'individual': 'AF147', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141454': {'individual': 'AF145', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141455': {'individual': 'AF145', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1872839': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1816162': {'patient': 'P001', 'disease': 'oral squamous cell carcinoma tissue'}, 'GSM1816163': {'patient': 'P002', 'disease': 'normal oral mucosa tissue'}, 'GSM1816160': {'patient': 'P001', 'disease': 'normal oral mucosa tissue'}, 'GSM1816161': {'patient': 'P001', 'disease': 'oral lichen planus tissue'}, 'GSM1816164': {'patient': 'P002', 'disease': 'oral lichen planus tissue'}, 'GSM1816165': {'patient': 'P002', 'disease': 'oral squamous cell carcinoma tissue'}, 'GSM2098655': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098654': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098657': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098656': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098651': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098650': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098653': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098652': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098659': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098658': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2526486': {'tissue': 'peripheral blood', 'type': 'CD4+ T naive cells'}, 'GSM2526487': {'tissue': 'peripheral blood', 'type': 'CD4+ T naive cells'}, 'GSM2526484': {'tissue': 'peripheral blood', 'type': 'CD4+ T naive cells'}, 'GSM2526485': {'tissue': 'peripheral blood', 'type': 'CD4+ T naive cells'}, 'GSM2264342': {'line': 'DU-145', 'tissue': 'prostate cancer', 'transfection': 'cells were transfected using lipofectamine (Thermo Fisher) with 60nM of miR-26a duplex (ds-miR-26aCT)'}, 'GSM2264343': {'line': 'DU-145', 'tissue': 'prostate cancer', 'transfection': 'cells were transfected using lipofectamine (Thermo Fisher) with 60nM of miR-26a duplex (ds-miR-26aCT)'}, 'GSM2264344': {'line': 'DU-145', 'tissue': 'prostate cancer', 'transfection': 'cells were transfected using lipofectamine (Thermo Fisher) with 60nM of a mix of 3â\\x80\\x99 biotin-tagged miR-26a 7tU (nucleotide 7 was a thiouridine) and miR-26a 17tU duplexes (ds-miR-26aBIO)'}, 'GSM2264345': {'line': 'DU-145', 'tissue': 'prostate cancer', 'transfection': 'cells were transfected using lipofectamine (Thermo Fisher) with 60nM of a mix of 3â\\x80\\x99 biotin-tagged miR-26a 7tU (nucleotide 7 was a thiouridine) and miR-26a 17tU duplexes (ds-miR-26aBIO)'}, 'GSM1556702': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'variation': 'SLE'}, 'GSM1706620': {'line': 'K562', 'genotype': 'FLT3 haplo-insufficiency'}, 'GSM1709516': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + DMSO'}, 'GSM1709517': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + DMSO'}, 'GSM1709515': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + DMSO'}, 'GSM1709518': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709519': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM3186711': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '62', 'sample_id': '32-0018', 'tissue': 'muscle biopsy', 'batch': 'IV', 'rank': '3', 't1': '0', 'score': '4.24823', 'fraction': '0.0074023', 'inflam': '0', 'active': '0', 'stir': '1'}, 'GSM3186710': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '42', 'sample_id': '32-0017', 'tissue': 'muscle biopsy', 'batch': 'IV', 'rank': '3', 't1': '1', 'score': '7.62118', 'fraction': '0.088913', 'inflam': '1', 'active': '1', 'stir': '2'}, 'GSM3186712': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '75', 'sample_id': '32-0019', 'tissue': 'muscle biopsy', 'batch': 'IV', 'rank': '3', 't1': '1', 'score': '4.41812', 'fraction': '0.071467', 'inflam': '0', 'active': '0', 'stir': '2'}, 'GSM1698574': {'donors': '1', 'vendor': 'Origene', 'gender': 'Female', 'age': '44 years old', 'isolate': 'Cat no.: CR560288', 'tissue': 'Stomach'}, 'GSM1634279': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1697521': {'with': 'B. pseudomallei for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697520': {'with': 'B. pseudomallei for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM2532928': {'condition': 'Preterm Delivery'}, 'GSM2532929': {'condition': 'Preterm Delivery'}, 'GSM2532924': {'condition': 'Preterm Delivery'}, 'GSM2532925': {'condition': 'Preterm Delivery'}, 'GSM2532926': {'condition': 'Preterm Delivery'}, 'GSM2532927': {'condition': 'Preterm Delivery'}, 'GSM2532920': {'condition': 'Preterm Delivery'}, 'GSM2532921': {'condition': 'Preterm Delivery'}, 'GSM2532922': {'condition': 'Preterm Delivery'}, 'GSM2532923': {'condition': 'Preterm Delivery'}, 'GSM2194256': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194257': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194254': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194255': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2256387': {'line': 'JJN3', 'type': 'Multiple Myeloma'}, 'GSM2256386': {'line': 'JJN3', 'type': 'Multiple Myeloma'}, 'GSM2256385': {'line': 'AMO1', 'type': 'Multiple Myeloma'}, 'GSM2256384': {'line': 'AMO1', 'type': 'Multiple Myeloma'}, 'GSM2256389': {'line': 'XG7', 'type': 'Multiple Myeloma'}, 'GSM2256388': {'line': 'XG7', 'type': 'Multiple Myeloma'}, 'GSM2194258': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194259': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2689098': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1697528': {'with': 'none (control) for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1943701': {'line': 'T47D', 'type': 'Breast cancer', 'classification': 'ER pos', 'condition': 'co-culture'}, 'GSM1943700': {'line': 'T47D', 'type': 'Breast cancer', 'classification': 'ER pos', 'condition': 'co-culture'}, 'GSM2471085': {'status': 'HIV', 'donorid': 'BC046', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2471084': {'status': 'Healthy', 'donorid': 'BC049', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471087': {'status': 'HIV', 'donorid': 'BC046', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2471086': {'status': 'HIV', 'donorid': 'BC046', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2471081': {'status': 'Healthy', 'donorid': 'BC049', 'subset': 'Naive', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471080': {'status': 'Healthy', 'donorid': 'BC047', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471083': {'status': 'Healthy', 'donorid': 'BC049', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471082': {'status': 'Healthy', 'donorid': 'BC049', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM1572233': {'tissue': 'coronary artery', 'disease': 'untreated Kawasaki Disease'}, 'GSM2471089': {'status': 'HIV', 'donorid': 'BC047', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM1572236': {'tissue': 'coronary artery', 'disease': 'untreated Kawasaki Disease'}, 'GSM1572235': {'tissue': 'coronary artery', 'disease': 'untreated Kawasaki Disease'}, 'GSM1572234': {'tissue': 'coronary artery', 'disease': 'untreated Kawasaki Disease'}, 'GSM2858978': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS68 sorted by FACS for low expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858979': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS69, spontaneously undergoing an EndoMT'}, 'GSM2225796': {'tissue': 'pancreas'}, 'GSM2225797': {'tissue': 'pancreas'}, 'GSM2225794': {'tissue': 'pancreas'}, 'GSM2225795': {'tissue': 'pancreas'}, 'GSM2225792': {'tissue': 'pancreas'}, 'GSM2225793': {'tissue': 'pancreas'}, 'GSM2225790': {'tissue': 'pancreas'}, 'GSM2225791': {'tissue': 'pancreas'}, 'GSM1624280': {'gender': 'M', 'age': '19', 'tissue': 'skin', 'disease': 'LP', 'subject': '1'}, 'GSM1624281': {'gender': 'M', 'age': '19', 'tissue': 'skin', 'disease': 'NLP', 'subject': '1'}, 'GSM1624282': {'gender': 'M', 'age': '25', 'tissue': 'skin', 'disease': 'LP', 'subject': '2'}, 'GSM1624283': {'gender': 'M', 'age': '25', 'tissue': 'skin', 'disease': 'NLP', 'subject': '2'}, 'GSM1624284': {'gender': 'M', 'age': '27', 'tissue': 'skin', 'disease': 'LP', 'subject': '3'}, 'GSM1624285': {'gender': 'M', 'age': '27', 'tissue': 'skin', 'disease': 'NLP', 'subject': '3'}, 'GSM2225798': {'tissue': 'pancreas'}, 'GSM2225799': {'tissue': 'pancreas'}, 'GSM1384776': {'type': 'Cord blood CD34+ cells', 'agent': 'SR1 [500nM]+UM171[48.8nM]', 'time': '16 hour culture'}, 'GSM1511119': {'line': 'HUES-7', 'age': '23 DIV'}, 'GSM1632193': {'type': 'U2OS', 'treatment': 'Torin-1'}, 'GSM2858973': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS42 sorted by FACS for mid expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM1511118': {'line': 'HUES-7', 'age': '23 DIV'}, 'GSM1632192': {'type': 'U2OS', 'treatment': 'Myc activation (36 hr)'}, 'GSM2425379': {'state': 'healthy control', 'type': 'neutrophils'}, 'GSM2295867': {'type': 'HeLa cells', 'rescue': 'UPF1', 'kd': 'UPF1'}, 'GSM2350104': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2295865': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'UPF1'}, 'GSM2027320': {'tissue': 'Blood', 'type': 'BDCA2+CD2- pDCs', 'id': '1009', 'point': 'Steady state'}, 'GSM2295863': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'scramble'}, 'GSM2295862': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'scramble'}, 'GSM2295861': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'scramble'}, 'GSM2350105': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2425374': {'state': 'active disease', 'type': 'neutrophils', 'treatment': 'untreated'}, 'GSM2295869': {'type': 'HeLa cells', 'rescue': 'UPF1', 'kd': 'UPF1'}, 'GSM2295868': {'type': 'HeLa cells', 'rescue': 'UPF1', 'kd': 'UPF1'}, 'GSM2425375': {'state': 'active disease', 'type': 'neutrophils', 'treatment': 'MTX (methotrexate)'}, 'GSM2425372': {'state': 'active disease', 'type': 'neutrophils', 'treatment': 'untreated'}, 'GSM2359189': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '1 uM / 50 nM', 'drug': 'Vemurafenib / THZ1'}, 'GSM2359188': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '1 uM / 50 nM', 'drug': 'Vemurafenib / THZ1'}, 'GSM2476739': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM1632190': {'type': 'U2OS', 'treatment': 'Myc activation (36 hr)'}, 'GSM3189295': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.779555', 'percentaligned': '0.901943181', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.810197', 'original': 'Control'}, 'GSM3189294': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B97', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.585393', 'percentaligned': '0.955812976', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.559303', 'original': 'Control'}, 'GSM1203317': {'tissue': 'bone marrow'}, 'GSM1203316': {'tissue': 'blood'}, 'GSM3189291': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '27', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.681194', 'percentaligned': '0.921761367', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.170359', 'original': 'Case'}, 'GSM3189290': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.67177', 'percentaligned': '0.889697921', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.735599', 'original': 'Case'}, 'GSM3189293': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '19', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.662825', 'percentaligned': '0.950801793', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.191263'}, 'GSM1203312': {'tissue': 'bone marrow'}, 'GSM3189299': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A66', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.659508', 'percentaligned': '0.953001698', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.409209'}, 'GSM3189298': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.080869', 'percentaligned': '0.70654547', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.337432', 'original': 'Control'}, 'GSM2186529': {'origin': 'hESC derived Colonic organoids', 'culture': '4 weeks', 'genotype': 'wt'}, 'GSM2205668': {'line': 'Huh-1 epithelial liver cancer cell line', 'tissue': 'liver'}, 'GSM2205669': {'line': 'Huh-1 epithelial liver cancer cell line', 'tissue': 'liver'}, 'GSM1405884': {'type': 'A549 (human lung epithelial cells)'}, 'GSM1405887': {'type': 'A549 (human lung epithelial cells)'}, 'GSM2579315': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM1405883': {'type': 'A549 (human lung epithelial cells)'}, 'GSM2932920': {'pucai': '40', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '11'}, 'GSM2932921': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '11'}, 'GSM2932922': {'pucai': '75', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2422325': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'untreated', 'dose': 'NA'}, 'GSM2422326': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'untreated', 'dose': 'NA'}, 'GSM2422327': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'untreated', 'dose': 'NA'}, 'GSM2932924': {'pucai': '80', 'score': '3', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '4'}, 'GSM2422328': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'trastuzumab', 'dose': '100ug/ml'}, 'GSM2422329': {'type': 'iPSC-derived cardiomyocytes', 'treatment': 'trastuzumab', 'dose': '100ug/ml'}, 'GSM2932925': {'pucai': '45', 'score': '1', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932926': {'pucai': '65', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '14'}, 'GSM2932927': {'pucai': '65', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '11'}, 'GSM1647078': {'illumina_index': '4', 'point': '48', 'batch': '11', 'agent': 'Rv', 'rin': '8.9', 'individual': 'M376'}, 'GSM2932929': {'pucai': '45', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2112738': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '48 Hours'}, 'GSM2047488': {'well': 'F09', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047489': {'well': 'F10', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047484': {'well': 'F05', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047485': {'well': 'F06', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047486': {'well': 'F07', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047487': {'well': 'F08', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047480': {'well': 'F01', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047481': {'well': 'F02', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047482': {'well': 'F03', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047483': {'well': 'F04', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2407543': {'line': 'MDA-MB-231', 'treatment': 'CDK12 siRNA-1'}, 'GSM1906458': {'transfection': 'pEGFP-VP55', 'type': 'HEK 293T Dicer -/-'}, 'GSM1906459': {'transfection': 'pEGFP-VP55', 'type': 'HEK 293T Dicer -/-'}, 'GSM1906456': {'transfection': 'pEGFP', 'type': 'HEK 293T Dicer -/-'}, 'GSM1906457': {'transfection': 'pEGFP', 'type': 'HEK 293T Dicer -/-'}, 'GSM1087267': {'line': 'NB1', 'shRNA': 'DHX9', 'plasmid': 'KIF1Bbeta(600-1400)'}, 'GSM1087266': {'line': 'NB1', 'shRNA': 'DHX9', 'plasmid': 'KIF1Bbeta(600-1400)'}, 'GSM1087265': {'line': 'NB1', 'shRNA': 'DHX9', 'plasmid': 'empty pcDNA3.1 vector'}, 'GSM1087264': {'line': 'NB1', 'shRNA': 'DHX9', 'plasmid': 'empty pcDNA3.1 vector'}, 'GSM1087263': {'line': 'NB1', 'shRNA': 'DHX9', 'plasmid': 'empty pcDNA3.1 vector'}, 'GSM1087262': {'line': 'NB1', 'shRNA': 'scrambled control', 'plasmid': 'KIF1Bbeta(600-1400)'}, 'GSM1087261': {'line': 'NB1', 'shRNA': 'scrambled control', 'plasmid': 'KIF1Bbeta(600-1400)'}, 'GSM1087260': {'line': 'NB1', 'shRNA': 'scrambled control', 'plasmid': 'KIF1Bbeta(600-1400)'}, 'GSM1326472': {'with': 'none (control)', 'type': 'Primary Human Aortic Endothelial Cells (HAECs)', 'passage': 'Passage 4-6'}, 'GSM1326473': {'with': 'none (control)', 'type': 'Primary Human Aortic Endothelial Cells (HAECs)', 'passage': 'Passage 4-6'}, 'GSM1326470': {'with': 'suberoylanilide hydroxamic acid (SAHA)', 'type': 'Primary Human Aortic Endothelial Cells (HAECs)', 'passage': 'Passage 4-6'}, 'GSM1326471': {'with': 'suberoylanilide hydroxamic acid (SAHA)', 'type': 'Primary Human Aortic Endothelial Cells (HAECs)', 'passage': 'Passage 4-6'}, 'GSM1326474': {'with': 'none (control)', 'type': 'Primary Human Aortic Endothelial Cells (HAECs)', 'passage': 'Passage 4-6'}, 'GSM1087268': {'line': 'NB1', 'shRNA': 'DHX9', 'plasmid': 'KIF1Bbeta(600-1400)'}, 'GSM984210': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984211': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984212': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984213': {'status': 'normal', 'tissue': 'colon', 'method': 'FFPE', 'stage': 'adult'}, 'GSM2451298': {'compartment': 'Stroma', 'id': 'CUMC_027', 'library': 'NuGEN'}, 'GSM2451299': {'compartment': 'Stroma', 'id': 'CUMC_028', 'library': 'NuGEN'}, 'GSM2451292': {'compartment': 'Epithelium', 'id': 'CUMC_024', 'library': 'NuGEN'}, 'GSM2451293': {'compartment': 'Stroma', 'id': 'CUMC_024', 'library': 'NuGEN'}, 'GSM2451290': {'compartment': 'Epithelium', 'id': 'CUMC_023', 'library': 'NuGEN'}, 'GSM2451291': {'compartment': 'Stroma', 'id': 'CUMC_023', 'library': 'NuGEN'}, 'GSM2451296': {'compartment': 'Epithelium', 'id': 'CUMC_026', 'library': 'NuGEN'}, 'GSM2451297': {'compartment': 'Epithelium', 'id': 'CUMC_027', 'library': 'NuGEN'}, 'GSM2451294': {'compartment': 'Epithelium', 'id': 'CUMC_025', 'library': 'NuGEN'}, 'GSM2451295': {'compartment': 'Stroma', 'id': 'CUMC_025', 'library': 'NuGEN'}, 'GSM984218': {'status': 'normal', 'tissue': 'kidney', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984219': {'status': 'normal', 'tissue': 'uterus', 'method': 'FFPE', 'stage': 'adult'}, 'GSM1965097': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965096': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965095': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965094': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965093': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965092': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965091': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965090': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965099': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965098': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1849375': {'line': 'MIHA', 'transfection': 'C-terminal truncated HBx mutants (delta 35)'}, 'GSM2100594': {'type': 'human cervical cancer cell line'}, 'GSM2100595': {'type': 'human cervical cancer cell line'}, 'GSM2100596': {'type': 'human cervical cancer cell line'}, 'GSM1849374': {'line': 'MIHA', 'transfection': 'C-terminal truncated HBx mutants (delta 14)'}, 'GSM2100590': {'type': 'human cervical cancer cell line'}, 'GSM2100591': {'type': 'human cervical cancer cell line'}, 'GSM2100592': {'type': 'human cervical cancer cell line'}, 'GSM2100593': {'type': 'human cervical cancer cell line'}, 'GSM1849373': {'line': 'MIHA', 'transfection': 'empty vector control'}, 'GSM2100598': {'type': 'human cervical cancer cell line'}, 'GSM2100599': {'type': 'human cervical cancer cell line'}, 'GSM2840438': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840439': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840430': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840431': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840432': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840433': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840434': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840435': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840436': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840437': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2170540': {'stage': 'Endothelial cells'}, 'GSM2170541': {'stage': 'Endothelial cells'}, 'GSM2170542': {'stage': 'Endothelial cells'}, 'GSM2170543': {'stage': 'Endothelial cells'}, 'GSM2170544': {'stage': 'Endothelial cells'}, 'GSM2170545': {'stage': 'Endothelial cells'}, 'GSM2170546': {'stage': 'Endothelial cells'}, 'GSM2170547': {'stage': 'Endothelial cells'}, 'GSM2170548': {'stage': 'Endothelial cells'}, 'GSM2170549': {'stage': 'Endothelial cells'}, 'GSM2284028': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM1372903': {'tissue': 'Endometrial stromal cells', 'condition': 'control (without any induction)'}, 'GSM1372902': {'tissue': 'Endometrial stromal cells', 'condition': 'induction with estradiol (10-8 M) and medroxyprogesterone acetate (10-6 M)'}, 'GSM1372901': {'tissue': 'Endometrial stromal cells', 'condition': 'control (without any induction)'}, 'GSM1372900': {'tissue': 'Endometrial stromal cells', 'condition': 'induction with estradiol (10-8 M) and medroxyprogesterone acetate (10-6 M)'}, 'GSM1945943': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '30min'}, 'GSM1945942': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '30min'}, 'GSM1945941': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '30min'}, 'GSM1945940': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '30min'}, 'GSM1945947': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '60min'}, 'GSM1945946': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '60min'}, 'GSM2632514': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632515': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632516': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632517': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632510': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632511': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632512': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2374769': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374766': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374767': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374764': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM1945944': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '30min'}, 'GSM2632518': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632519': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1543651': {'transfection': 'si-lncRNA67-2', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543650': {'transfection': 'si-lncRNA67-1', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543653': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'Untreated'}, 'GSM1543652': {'transfection': 'si-lncRNA67-2', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543655': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'E2 treated'}, 'GSM1543654': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'Untreated'}, 'GSM1543657': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'Untreated'}, 'GSM1543656': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'E2 treated'}, 'GSM1543659': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'E2 treated'}, 'GSM1543658': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'Untreated'}, 'GSM2172167': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1945949': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '60min'}, 'GSM1945948': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '60min'}, 'GSM1432460': {'protocol': 'differentiated with calcium chloride for 5 days with recombinant human IL-4', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1955755': {'a': '74021', 'cd38': '10', 'cd49f': '620', 'w': '62507', 'h': '77608', 'lin': '290', 'cd34': '7241', 'cd90': '269', 'cd7': '582', 'cd10': '410', 'time': '13254', 'cd135': '6892', 'cd45ra': '2950'}, 'GSM2712762': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'largazole 150nM', 'disease': 'colorectal carcinoma'}, 'GSM2712763': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'largazole 300nM', 'disease': 'colorectal carcinoma'}, 'GSM2186950': {'sensitivity': 'sensitive', 'type': '3D culture'}, 'GSM2186951': {'sensitivity': 'sensitive', 'type': '3D culture'}, 'GSM2186956': {'length': '13', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - modified'}, 'GSM2186957': {'length': '13', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - modified'}, 'GSM1914598': {'type': 'cerebral organoid'}, 'GSM1914599': {'type': 'cerebral organoid'}, 'GSM1914596': {'type': 'cerebral organoid'}, 'GSM1914597': {'type': 'cerebral organoid'}, 'GSM1914594': {'type': 'cerebral organoid'}, 'GSM2186959': {'length': '13', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - modified'}, 'GSM1914592': {'type': 'cerebral organoid'}, 'GSM1914593': {'type': 'cerebral organoid'}, 'GSM1914590': {'type': 'cerebral organoid'}, 'GSM1914591': {'type': 'cerebral organoid'}, 'GSM2303272': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303273': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303270': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303271': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACJV399'}, 'GSM2303276': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303277': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303274': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303275': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303278': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303279': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2374188': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374189': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374182': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374183': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374180': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374181': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374186': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374187': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374184': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374185': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1957405': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2297707': {'tissue': 'brain tissue', 'Sex': 'male'}, 'GSM1957404': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1955753': {'a': '53326', 'cd38': '468', 'cd49f': '561', 'w': '67330', 'h': '51905', 'lin': '482', 'cd34': '11616', 'cd90': '8199', 'cd7': '346', 'cd10': '278', 'time': '12866', 'cd135': '2239', 'cd45ra': '29'}, 'GSM2544224': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM1957406': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957401': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957400': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2458952': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.75'}, 'GSM2458953': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.67'}, 'GSM2458950': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.00'}, 'GSM2458951': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.67'}, 'GSM2458956': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.83'}, 'GSM2458957': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.25'}, 'GSM1955752': {'a': '62248', 'cd38': '493', 'cd49f': '615', 'w': '69562', 'h': '58645', 'lin': '-27', 'cd34': '7252', 'cd90': '1126', 'cd7': '225', 'cd10': '647', 'time': '12615', 'cd135': '4809', 'cd45ra': '803'}, 'GSM2458955': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '16.67'}, 'GSM2458958': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.67'}, 'GSM2458959': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.00'}, 'GSM1980484': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1519618': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'not available'}, 'GSM1519619': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'not available'}, 'GSM1955751': {'a': '71796', 'cd38': '1029', 'cd49f': '1064', 'w': '67038', 'h': '70188', 'lin': '690', 'cd34': '5070', 'cd90': '1006', 'cd7': '352', 'cd10': '733', 'time': '12411', 'cd135': '5818', 'cd45ra': '1216'}, 'GSM1957409': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1519616': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'autism spectrum disorder'}, 'GSM1519617': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'autism spectrum disorder'}, 'GSM1957408': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2311950': {'culture': '12', 'line': 'DCX+'}, 'GSM2311951': {'culture': '12', 'line': 'DCX+'}, 'GSM2287619': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287618': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2311954': {'culture': '12', 'line': 'DCX+'}, 'GSM2311955': {'culture': '12', 'line': 'DCX+'}, 'GSM2311956': {'culture': '12', 'line': 'DCX+'}, 'GSM2311957': {'culture': '12', 'line': 'DCX+'}, 'GSM2287613': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287612': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287611': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1906581': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'none'}, 'GSM2287617': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287616': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287615': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287614': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1955750': {'a': '51859', 'cd38': '599', 'cd49f': '890', 'w': '68438', 'h': '49660', 'lin': '76', 'cd34': '9002', 'cd90': '784', 'cd7': '490', 'cd10': '1630', 'time': '12207', 'cd135': '4141', 'cd45ra': '2519'}, 'GSM1342904': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'liver tumor', 'patient': '1306706'}, 'GSM2653456': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653457': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653458': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653459': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2306994': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306995': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306996': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306997': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306990': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306991': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306992': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306993': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306998': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306999': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2664328': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664329': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664324': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664325': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664326': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664327': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664320': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664321': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664322': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664323': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2152539': {'line': 'RWPE1', 'expression': 'NKX3.1 (T164A)'}, 'GSM2152538': {'line': 'RWPE1', 'expression': 'NKX3.1 (T164A)'}, 'GSM2692389': {'donor': 'AKJ', 'type': 'sorted CD45RA+ CCR7+ CD8 T cells', 'day': 'Day 3630 post YFV-17D'}, 'GSM1275065': {'type': 'tubular epithelial cells', 'treatment': 'high glucose'}, 'GSM2100909': {'line': 'PANC-1', 'sensitivity': 'Resistant'}, 'GSM2100908': {'line': 'L3.6pl', 'sensitivity': 'Sensitive'}, 'GSM2100907': {'line': 'CFPAC-1', 'sensitivity': 'Sensitive'}, 'GSM1395791': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2100905': {'line': 'S2-013', 'sensitivity': 'Sensitive'}, 'GSM2100904': {'line': 'S2-LM7-YB', 'sensitivity': 'Sensitive'}, 'GSM2100903': {'line': 'S2-LM7-AA', 'sensitivity': 'Sensitive'}, 'GSM2100902': {'line': 'SUIT-2', 'sensitivity': 'Sensitive'}, 'GSM2100901': {'status': 'no', 'gender': 'male', 'age': '70', 'race': 'white'}, 'GSM1395790': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2652064': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + SB431542'}, 'GSM2358072': {'tissue': 'fetal cortex', 'treatment': 'SOX5 Overexpression', 'construct': 'pLVU-SOX5-GFP'}, 'GSM2358073': {'tissue': 'fetal cortex', 'treatment': 'SOX5 Overexpression', 'construct': 'pLVU-SOX5-GFP'}, 'GSM1892683': {'tissue': 'FFPE'}, 'GSM2204155': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM1892681': {'tissue': 'Snap-frozen tissue'}, 'GSM1892680': {'tissue': 'FFPE'}, 'GSM1892687': {'tissue': 'Snap-frozen tissue'}, 'GSM1892686': {'tissue': 'Snap-frozen tissue'}, 'GSM1892685': {'tissue': 'Snap-frozen tissue'}, 'GSM1892684': {'tissue': 'Snap-frozen tissue'}, 'GSM1892689': {'tissue': 'FFPE'}, 'GSM1892688': {'tissue': 'Snap-frozen tissue'}, 'GSM1668820': {'line': 'HEK293T', 'with': 'TALE-activator targeting HBG1'}, 'GSM1668821': {'line': 'HEK293T', 'with': 'GFP control'}, 'GSM2543659': {'library_id': 'lib5788', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1395570': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2309465': {'number': 'Exp 3', 'time': '18 hours', 'replicate': '2', 'treatment': 'Meayamycin', 'dose': '80 nM'}, 'GSM2309464': {'number': 'Exp 3', 'time': '18 hours', 'replicate': '1', 'treatment': 'Meayamycin', 'dose': '80 nM'}, 'GSM2816097': {'line': 'H9'}, 'GSM2816096': {'line': 'H9'}, 'GSM2816091': {'line': 'H9'}, 'GSM2816090': {'line': 'H9'}, 'GSM2816093': {'line': 'H9'}, 'GSM2816092': {'line': 'H9'}, 'GSM1588900': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM2204151': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM1588902': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588903': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM2309469': {'number': 'Exp 4', 'time': '18 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309468': {'number': 'Exp 4', 'time': '18 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM1588906': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM2573278': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM1281717': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '51', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281716': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281715': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281714': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281713': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '80', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281712': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '2', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281711': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '40', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'Asian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281710': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '57', 'gender': 'Male', 'age': '56', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM2204152': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM1281719': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '41', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281718': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '51', 'tissue': 'Serum', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM2123928': {}, 'GSM2195058': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2123926': {}, 'GSM2195056': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195055': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2123925': {}, 'GSM2195053': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195052': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195051': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2123921': {}, 'GSM2392058': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392059': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2475194': {'line': 'HeLa', 'treatment': 'siZC3H18'}, 'GSM2475193': {'line': 'HeLa', 'treatment': 'siZC3H18'}, 'GSM2475192': {'line': 'HeLa', 'treatment': 'siZC3H18'}, 'GSM2475191': {'line': 'HeLa', 'treatment': 'siPHAX'}, 'GSM2475190': {'line': 'HeLa', 'treatment': 'siPHAX'}, 'GSM2392050': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392051': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392052': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392053': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392054': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392055': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392056': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2413448': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2705420': {'Sex': 'Female', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.4', 'pmi': '19'}, 'GSM2304743': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2413445': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413444': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2652068': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + AG1478'}, 'GSM2413447': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1620565': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620564': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620567': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620566': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620561': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620560': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620563': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620562': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1681928': {'gender': 'female', 'age': '63', 'tissue': 'Control'}, 'GSM2705426': {'Sex': 'Male', 'rin': '7.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6', 'pmi': '18'}, 'GSM1620569': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620568': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1533231': {'enrichment': 'TRA-1-60-', 'treatment': 'DOX days 0-24'}, 'GSM2042234': {'type': 'ES-derived immature hepatocytes', 'line': 'H9', 'protocol': 'directed in-vitro differentiation'}, 'GSM2042235': {'type': 'ES-derived mature hepatocytes', 'line': 'H9', 'protocol': 'directed in-vitro differentiation'}, 'GSM2042236': {'type': 'IPS cells', 'line': 'HDF-iPSCs', 'protocol': 'control'}, 'GSM2042237': {'type': 'IPS-derived definitive endoderm cells', 'line': 'HDF-iPSCs', 'protocol': 'directed in-vitro differentiation'}, 'GSM2042230': {'type': 'ES cells', 'line': 'H9', 'protocol': 'control'}, 'GSM2042231': {'type': 'ES-derived definitive endoderm cells', 'line': 'H9', 'protocol': 'directed in-vitro differentiation'}, 'GSM2042232': {'type': 'ES-derived foregut endoderm cells', 'line': 'H9', 'protocol': 'directed in-vitro differentiation'}, 'GSM2042233': {'type': 'ES-derived hepatic endoderm cells', 'line': 'H9', 'protocol': 'directed in-vitro differentiation'}, 'GSM2312094': {'culture': '12', 'line': 'DCX-'}, 'GSM2312095': {'culture': '12', 'line': 'DCX-'}, 'GSM2312096': {'culture': '12', 'line': 'DCX-'}, 'GSM2312097': {'culture': '12', 'line': 'DCX-'}, 'GSM2312090': {'culture': '12', 'line': 'DCX-'}, 'GSM2312091': {'culture': '12', 'line': 'DCX-'}, 'GSM2312092': {'culture': '12', 'line': 'DCX-'}, 'GSM2312093': {'culture': '12', 'line': 'DCX-'}, 'GSM1099816': {'cells': 'hESC H9 line - derived RPE', 'resistance': '49± 4 ohm*cm^2'}, 'GSM1099815': {'cells': 'hESC H9 line - derived RPE', 'resistance': '37± 4 ohm*cm^2'}, 'GSM1099814': {'cells': 'hESC H1 line - derived RPE', 'resistance': '41±1 ohm*cm^2'}, 'GSM1099813': {'cells': 'RPE isolated from 16 weeks gestation human fetus', 'resistance': '730 ± 10 ohm*cm^2'}, 'GSM2711146': {'line': 'HCT116 (ATCC)', 'treatment': 'pre-treated with 0.1% DMSO (vehicle control) for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2551706': {'type': 'iMGL', 'treatment': 'TGFB withdrawl'}, 'GSM2551705': {'type': 'iMGL', 'treatment': 'TGFB withdrawl'}, 'GSM2551704': {'type': 'iMGL', 'treatment': 'TGFB withdrawl'}, 'GSM1622589': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM1622588': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM1901477': {'count': '1', 'ercc_mix': 'mix2', 'type': 'NA', 'ercc_dilution': '1000000', 'pass': 'FALSE'}, 'GSM1369209': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1901475': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901474': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901473': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901472': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901471': {'count': '1', 'ercc_mix': 'mix2', 'type': 'NA', 'ercc_dilution': '1000000', 'pass': 'FALSE'}, 'GSM1901470': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1369200': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Deep Layer Formation'}, 'GSM1369201': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Deep Layer Formation'}, 'GSM1369202': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Upper Layer Formation'}, 'GSM1369203': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Upper Layer Formation'}, 'GSM1369204': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Upper Layer Formation'}, 'GSM1369205': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Upper Layer Formation'}, 'GSM1901479': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901478': {'count': '1', 'ercc_mix': 'mix2', 'type': 'duct', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2433988': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433989': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433982': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433983': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433980': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433981': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433986': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433987': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433984': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433985': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1363460': {'type': 'Mesenchymal stem cell', 'variation': 'KO'}, 'GSM2586927': {'replicate': '1', 'microrna': 'miR873WT', 'treatment': 'PD - pulldown'}, 'GSM2586929': {'replicate': '3', 'microrna': 'miR873WT', 'treatment': 'PD - pulldown'}, 'GSM2586928': {'replicate': '2', 'microrna': 'miR873WT', 'treatment': 'PD - pulldown'}, 'GSM1327857': {'line': 'BTR50', 'type': 'HER2-positive breast cancer', 'treatment': 'no drug', 'resistance': 'induced trastuzumab resistance'}, 'GSM1327856': {'line': 'HCC1954', 'type': 'HER2-positive breast cancer', 'treatment': 'trastuzumab', 'resistance': 'trastuzumab resistance'}, 'GSM1327855': {'line': 'HCC1954', 'type': 'HER2-positive breast cancer', 'treatment': 'no drug', 'resistance': 'trastuzumab resistance'}, 'GSM1327854': {'line': 'BT474', 'type': 'HER2-positive breast cancer', 'treatment': 'trastuzumab', 'resistance': 'no trastuzumab resistance'}, 'GSM1327853': {'line': 'BT474', 'type': 'HER2-positive breast cancer', 'treatment': 'no drug', 'resistance': 'no trastuzumab resistance'}, 'GSM1327858': {'line': 'BTR50', 'type': 'HER2-positive breast cancer', 'treatment': 'trastuzumab', 'resistance': 'induced trastuzumab resistance'}, 'GSM2877843': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM1944751': {'variation': 'Cas9 knock-in'}, 'GSM1944750': {'variation': 'Cas9 knock-in'}, 'GSM2877842': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM3189141': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.585732', 'percentaligned': '0.942690475', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '6.46115', 'original': 'Case'}, 'GSM2374026': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM3633019': {'strain': 'MDA-MB-231-SETKO-Clone1', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633018': {'strain': 'MDA-MB-231-SETKO-Clone1', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633017': {'strain': 'MDA-MB-231-Control', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633016': {'strain': 'MDA-MB-231-Control', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM1613618': {'line': 'CRL2097', 'type': 'large live'}, 'GSM3189140': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C8', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '8', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.58921', 'percentaligned': '0.953028692', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.827993', 'original': 'Control'}, 'GSM2293560': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '2', 'drug': 'untreated'}, 'GSM2293561': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '2', 'drug': 'untreated'}, 'GSM2293562': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '3', 'drug': 'untreated'}, 'GSM2293563': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '3', 'drug': 'untreated'}, 'GSM2293564': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '1', 'drug': 'CytochalasinD'}, 'GSM2293565': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '1', 'drug': 'CytochalasinD'}, 'GSM2293566': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '2', 'drug': 'CytochalasinD'}, 'GSM2293567': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '2', 'drug': 'CytochalasinD'}, 'GSM2293568': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '3', 'drug': 'CytochalasinD'}, 'GSM2293569': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '3', 'drug': 'CytochalasinD'}, 'GSM2877840': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2049404': {'culture': '4 weeks', 'type': 'control-iPSC derived Colonic organoids', 'genotype': 'wt'}, 'GSM2361879': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2722167': {'line': 'HCT116', 'antibody': 'rabbit anti H3K36me3 (Kim et al PNAS 108:13564, 2011 )', 'genotype': 'Cdk7as mutant'}, 'GSM2643286': {'gender': 'male', 'line': 'LNCaP-APIPC human prostate tumor cell line', 'type': 'prostate cancer', 'media': 'pheno-red free RPMI-1640 + 5% CSS (Charcoal Dextran stripped FBS) (Gemini) + 1% PenStrep'}, 'GSM2643287': {'gender': 'male', 'line': 'LNCaP-APIPC human prostate tumor cell line', 'type': 'prostate cancer', 'media': 'pheno-red free RPMI-1640 + 5% CSS (Charcoal Dextran stripped FBS) (Gemini) + 1% PenStrep + 1nM R1881'}, 'GSM2309858': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': \"Wegener's Granulomatosis\", 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '33.91'}, 'GSM2309859': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': \"Wegener's Granulomatosis\", 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '33.91'}, 'GSM2330095': {'individual': 'patient T35', 'type': 'Eomes positive NK cells'}, 'GSM2309854': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'FSGS-Focal sclerosing GN', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '52.22'}, 'GSM2309855': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'FSGS-Focal sclerosing GN', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '52.22'}, 'GSM2309856': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'FSGS-Focal sclerosing GN', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '52.22'}, 'GSM2193067': {'sirna': 'non-transfection control', 'line': 'FT246', 'type': 'Immortalized fallopian tube secretory cell'}, 'GSM2309850': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '51.47'}, 'GSM2643289': {'gender': 'male', 'line': 'LNCaP-shAR/pATK human prostate tumor cell line', 'type': 'prostate cancer', 'media': 'pheno-red free RPMI-1640 + 5% CSS (Charcoal Dextran stripped FBS) (Gemini) + 1% PenStrep'}, 'GSM2309852': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Unknown', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '40.87'}, 'GSM2193063': {'sirna': 'PAX8 siRNA 403', 'line': 'FT194', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15403, Ambion'}, 'GSM3586555': {'origin': 'UNCLASSIFIED', 'pfstt': '1355', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1355', 'cycles': '8', 'oscs': '0'}, 'GSM2877847': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM1613612': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2361870': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361871': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2757498': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM2877846': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM3189145': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '25', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.698288', 'percentaligned': '0.931234407', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.873614', 'original': 'Control'}, 'GSM2649871': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM1173124': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Transformed to Mesenchymal Phenotype'}, 'GSM2649873': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649872': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649875': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649874': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649877': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649876': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649879': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649878': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2757491': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM1173127': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Mesenchymal with OVOL1 overexpression'}, 'GSM1872939': {'10': 'Remitter', 'name': 'HF-37225', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872938': {'10': 'Remitter', 'name': 'HF-37235', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM2877844': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2757495': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM1872933': {'10': 'Non-remitter', 'name': 'HF-35356', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872932': {'10': 'Non-remitter', 'name': 'HF-35645', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872931': {'10': 'Non-remitter', 'name': 'HF-34747', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872930': {'10': 'Non-remitter', 'name': 'HF-37223', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872937': {'10': 'Non-remitter', 'name': 'HF-37288', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872936': {'10': 'Non-remitter', 'name': 'HF-37390', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872935': {'10': 'Non-remitter', 'name': 'HF-37286', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872934': {'10': 'N/A', 'name': 'HF-35412', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM3586551': {'origin': 'ABC', 'pfstt': '1093', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1093', 'cycles': '8', 'oscs': '0'}, 'GSM3189129': {'boca': 'Yes', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.664101', 'percentaligned': '0.940155175', 'Sex': 'M', 'nl63': 'No', 'libcounts': '14.140261', 'original': 'Control'}, 'GSM3189128': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'Yes', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.060269', 'percentaligned': '0.943256321', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.936953', 'original': 'Control'}, 'GSM3189127': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'Yes', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.807075', 'percentaligned': '0.950039102', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.593369', 'original': 'Control'}, 'GSM3189126': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '10', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.658745', 'percentaligned': '0.942964644', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.65433', 'original': 'Control'}, 'GSM3189125': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '16', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.55855', 'percentaligned': '0.957172432', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.617399', 'original': 'Control'}, 'GSM3189124': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.650801', 'percentaligned': '0.95740212', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.711661'}, 'GSM3189123': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.930675', 'percentaligned': '0.934667697', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.172794'}, 'GSM3189122': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.602006', 'percentaligned': '0.957510278', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.282467', 'original': 'Case'}, 'GSM3189121': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '21', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.596688', 'percentaligned': '0.938626955', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.913261', 'original': 'Case'}, 'GSM3189120': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '16', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.645068', 'percentaligned': '0.950919505', 'Sex': 'F', 'nl63': 'No', 'libcounts': '16.458992', 'original': 'Control'}, 'GSM2840180': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840181': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840182': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840183': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1401328': {'rin': '8', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-11-13'}, 'GSM1401329': {'rin': '8.9', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-11-20'}, 'GSM2093069': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093068': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1401324': {'rin': '9.3', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-10-16'}, 'GSM1946187': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19144', 'for': '60min'}, 'GSM1946184': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19143', 'for': '60min'}, 'GSM1946185': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19143', 'for': '60min'}, 'GSM2093063': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093062': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093061': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093060': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1946072': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19092', 'for': '30min'}, 'GSM2486477': {'line': 'NOMO-1'}, 'GSM1857483': {'protocol': 'IN528 cells from a primary patient derived GBM tumor model were injected subcutaneously into the flank of a immunocomprimised athymic nude mouse and allowed to grow into a tumor.', 'characterization': 'Cells were dissociated from the tumor and sorted on CD133 to collect the cancer stem cell population.'}, 'GSM1946070': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '60min'}, 'GSM1857484': {'protocol': \"Normal, non-neoplastic cells were derived from patient tissue specimens of neurosurgical resection in accordance with a Cleveland Clinic Institutional Review Board-approved protocol. Informed consent was obtained by the tissue bank, which provided de-identified excess tissue to the laboratory immediately following surgical resection. Specimens used for cell culture were dissociated with a Papain dissociation kit (Worthington). Cells were cultured adherently in media containing 50% Neurobasal medium (Gibco) and 50% Dulbecco's modified Eagle medium (DMEM) with B27 (without vitamin A, Invitrogen, basic fibroblast growth factor (10 ng/ml), epidermal growth factor (10 ng/ml), sodium pyruvate and L-glutamine, and 5% FBS. All cultured cells were used within five passages of dissociation.\", 'characterization': 'Single cells were sorted using anti-A2B5 MicroBeads (130-093-388, Miltenyi Biotec) according to manufacturerâ\\x80\\x99s protocol. In brief, live cells were incubated first with FcR Blocking Reagent (Miltenyi) for 10 mins then A2B5 antibody for 15 min at 4oC (2.5 μg A2B5 antibody per million cells). Cells positive for A2B5 were double enriched by passing through magnetic field (MACS Separator) twice. Both A2B5 positive and negative fractions were collected, lysed with TRIzol (Invitrogen) for RNA isolation. A population of A2B5+ cells were plated and allowed to attach overnight before fixing and staining with standard immunofluorescence techniques. A2B5+ cells stained positive for GFAP (DAKO, 1:5000) and Nestin (DSHB, 1:200).'}, 'GSM1857485': {'protocol': 'Human OPCs were differentiated from the human embryonic stem cell line H7 over a 154 day protocol (NIH Human Embryonic Stem Cell Registry WA07; NIH Approval Number: NIHhESC-10-0061) as previously demonstrated (Hu et al., 2009; Wang et al., 2013).', 'characterization': 'hESC-derived OPCs were characterized by co-staining of Sox10 (R&D Systems,AF2864; 1:100) and Olig2 (Millipore,AB9610 1:500).'}, 'GSM1946071': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18913', 'for': '60min'}, 'GSM2229000': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1-CD80+ sorted'}, 'GSM2486472': {'line': 'NOMO-1'}, 'GSM2486473': {'line': 'NOMO-1'}, 'GSM1946074': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19092', 'for': '30min'}, 'GSM2689008': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2486471': {'line': 'NOMO-1'}, 'GSM2449060': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'Primed cells (NK2 line)'}, 'GSM2689009': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2358179': {'media': 'NASH', 'type': 'Hepatocyte'}, 'GSM2358178': {'media': 'NASH', 'type': 'Hepatocyte'}, 'GSM2358175': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358174': {'media': 'NASH', 'type': 'Hepatocyte'}, 'GSM2358177': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358176': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358171': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358170': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358173': {'media': 'NASH', 'type': 'Hepatocyte'}, 'GSM2358172': {'media': 'NASH', 'type': 'Hepatocyte'}, 'GSM1980049': {'line': 'SW480'}, 'GSM1937851': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1937852': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1937853': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM2455919': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455918': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1937856': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1937857': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM2455915': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1937859': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM2455917': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455916': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455911': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2689006': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2455913': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455912': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2689007': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2147661': {'status': 'control', 'cohort': '2', 'condition': 'age-matched control'}, 'GSM2082558': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2-/-', 'id': '19'}, 'GSM1948929': {'line': 'IMR90', 'passage': 'p13', 'variation': 'control', 'time': '6 days after infection'}, 'GSM2247662': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247663': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247660': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247661': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2509773': {'type': 'primary human airway smooth muscle cells', 'variation': 'transduced with KLF15-expressing adenovirus (Ad-KLF15)', 'passage': '5'}, 'GSM2509772': {'type': 'primary human airway smooth muscle cells', 'variation': 'transduced with KLF15-expressing adenovirus (Ad-KLF15)', 'passage': '5'}, 'GSM2509771': {'type': 'primary human airway smooth muscle cells', 'variation': 'transduced with control adenovirus (Ad-GFP)', 'passage': '5'}, 'GSM2509770': {'type': 'primary human airway smooth muscle cells', 'variation': 'transduced with control adenovirus (Ad-GFP)', 'passage': '5'}, 'GSM2331847': {'line': 'SQ20B', 'cancer': 'head and neck squamous cell carcinoma'}, 'GSM2509775': {'type': 'primary human airway smooth muscle cells', 'variation': 'transduced with KLF15-expressing adenovirus (Ad-KLF15)', 'passage': '5'}, 'GSM2509774': {'type': 'primary human airway smooth muscle cells', 'variation': 'transduced with KLF15-expressing adenovirus (Ad-KLF15)', 'passage': '5'}, 'GSM2247664': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247665': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1980188': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2326020': {'type': 'Human embryonic stem cell'}, 'GSM2359222': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '250nM', 'drug': 'Crizotinib'}, 'GSM2359223': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '250nM', 'drug': 'Crizotinib'}, 'GSM2258224': {'group': 'KLF4/TRAF7', 'grade': '1', 'gender': 'F', 'age': '76', 'tissue': 'meningioma', 'histology': 'secretory+meningothelial', 'radiated': 'N'}, 'GSM2359221': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '250nM', 'drug': 'Crizotinib'}, 'GSM2359226': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2258223': {'group': 'AKT1/TRAF7', 'grade': '1', 'gender': 'F', 'age': '66', 'tissue': 'meningioma', 'histology': 'unknown', 'radiated': 'U'}, 'GSM2258220': {'group': 'KLF4/TRAF7', 'grade': '1', 'gender': 'F', 'age': '73', 'tissue': 'meningioma', 'histology': 'secretory', 'radiated': 'N'}, 'GSM2359225': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359228': {'duration': '7D', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '250nM', 'drug': 'Crizotinib'}, 'GSM2359229': {'duration': '7D', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '250nM', 'drug': 'Crizotinib'}, 'GSM2183700': {'vector': 'pLKO-shPHF20'}, 'GSM2183701': {'vector': 'pLKO-shPHF20'}, 'GSM2183702': {'vector': 'pLKO-shPHF20'}, 'GSM3124791': {'individual': 'mi548', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM2845461': {'line': 'RUES2', 'type': 'mesodermal cells (MES)', 'point': 'Day 2 of differentiation'}, 'GSM3124793': {'individual': 'mi334', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM2845463': {'line': 'RUES2', 'type': 'cardiac progenitor (CP)', 'point': 'Day 5 of differentiation'}, 'GSM3124795': {'individual': 'mi751', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM2845465': {'line': 'RUES2', 'type': 'cardiomyocyte (CM)', 'point': 'Day 14 of differentiation'}, 'GSM2845466': {'tissue': 'Whole Fetal Heart', 'stage': 'Gestational Age 67 days'}, 'GSM2845467': {'tissue': 'Whole Fetal Heart', 'stage': 'Gestational Age 57 days'}, 'GSM3124799': {'individual': 'mi323', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124798': {'individual': 'mi708', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3586558': {'origin': 'UNCLASSIFIED', 'pfstt': '1092', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1092', 'cycles': '8', 'oscs': '0'}, 'GSM1906579': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'starvation', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1941367': {'tissue': 'Blood', 'type': 'BDCA1+CD14+', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM1941366': {'tissue': 'Blood', 'type': 'BDCA1+CD14+', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM1941364': {'tissue': 'Blood', 'type': 'BDCA1+ DC', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM2361727': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2393556': {'cell': 'exosome', 'type': 'long RNA', 'line': 'HUVEC', 'replicate': '4', 'treatment': 'Treatment 2 hr'}, 'GSM2393557': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '1a', 'treatment': 'RNY5 untreated'}, 'GSM2393554': {'cell': 'exosome', 'type': 'long RNA', 'line': 'HUVEC', 'replicate': '2', 'treatment': 'Treatment 2 hr'}, 'GSM2393555': {'cell': 'exosome', 'type': 'long RNA', 'line': 'HUVEC', 'replicate': '3', 'treatment': 'Treatment 2 hr'}, 'GSM2393552': {'cell': 'exosome', 'type': 'long RNA', 'line': 'HUVEC', 'replicate': '2', 'treatment': 'Treatment 24 hr'}, 'GSM2393553': {'cell': 'exosome', 'type': 'long RNA', 'line': 'HUVEC', 'replicate': '1', 'treatment': 'Treatment 2 hr'}, 'GSM2393550': {'cell': 'exosome', 'type': 'long RNA', 'line': 'HUVEC', 'replicate': '2', 'treatment': 'untreated'}, 'GSM2393551': {'cell': 'exosome', 'type': 'long RNA', 'line': 'HUVEC', 'replicate': '1', 'treatment': 'Treatment 24 hr'}, 'GSM2071857': {'type': 'breast cancer'}, 'GSM2393558': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '1b', 'treatment': 'RNY5 untreated'}, 'GSM2393559': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '2a', 'treatment': 'RNY5 untreated'}, 'GSM2085631': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085630': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085633': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085632': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085635': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085634': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085637': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085636': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085639': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085638': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1977029': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1145138': {'line': 'HEK293T', 'replicate': '1', 'rna': 'IL1RN'}, 'GSM1145139': {'line': 'HEK293T', 'replicate': '2', 'rna': 'IL1RN'}, 'GSM2491429': {'disease': 'Other Febrile Illness', 'condition': 'Other Febrile Illness'}, 'GSM2491428': {'disease': 'Other Febrile Illness', 'condition': 'Other Febrile Illness'}, 'GSM2176215': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2563987': {'line': 'G1S-CCMP-Cas9 U2OS cells', 'tissue': 'bone osteosarcoma'}, 'GSM1977028': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM2491425': {'disease': 'Other Febrile Illness', 'condition': 'Other Febrile Illness'}, 'GSM2491424': {'disease': 'Other Febrile Illness', 'condition': 'Other Febrile Illness'}, 'GSM2491427': {'disease': 'Other Febrile Illness', 'condition': 'Other Febrile Illness'}, 'GSM2491426': {'disease': 'Other Febrile Illness', 'condition': 'Other Febrile Illness'}, 'GSM2243718': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243719': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H9', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243716': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243717': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243714': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243715': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243712': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B3', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243713': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243710': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243711': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2200454': {'state': \"Crohn's disease\", 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'C/C rs6716753'}, 'GSM2666014': {'age': 'Day 130', 'well': 'E3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2666015': {'age': 'Day 130', 'well': 'D3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2200455': {'state': \"Crohn's disease\", 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'T/T rs6716753'}, 'GSM2666017': {'age': 'Day 130', 'well': 'B3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM1395838': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2840348': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2666012': {'age': 'Day 130', 'well': 'D10', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2666013': {'age': 'Day 130', 'well': 'E6', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM1395834': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395835': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395836': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2840349': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1395830': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395831': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395832': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395833': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2200456': {'state': \"Crohn's disease\", 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'C/C rs6716753'}, 'GSM2711701': {'type': 'SOX10+ neural crest'}, 'GSM2711700': {'type': 'SOX10+ neural crest'}, 'GSM2711703': {'type': 'SIX1+ cranial placodes'}, 'GSM2295912': {'time': '24 hours', 'line': 'TF-1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2747363': {'line': 'NHDF Line 3', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM2747364': {'line': 'NHDF Line 3', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM1977027': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM2747365': {'line': 'NHDF Line 3', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM2049921': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM2049920': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM2049923': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM2049922': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049925': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM2049924': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM2049927': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM2049926': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2711706': {'type': 'non-neural ectoderm'}, 'GSM3594437': {'cluster': '6', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM1683264': {'type': 'U87 human glioma cells'}, 'GSM1977405': {'tissue': 'neonatal cord blood', 'type': 'CMP++'}, 'GSM1646979': {'illumina_index': '18', 'point': '18', 'batch': '2', 'agent': 'Yers', 'rin': '9.7', 'individual': 'M375'}, 'GSM1659554': {'subtype': 'control HUVEC', 'type': 'Human Umbilical Vein Cell', 'passage': 'p4-7'}, 'GSM1646976': {'illumina_index': '14', 'point': '4', 'batch': '2', 'agent': 'Staph', 'rin': '8.9', 'individual': 'M373'}, 'GSM1659550': {'source': 'skin', 'subtype': 'Dermal Normal Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM1659551': {'source': 'skin', 'subtype': 'Dermal Normal Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM1659552': {'subtype': 'control HUVEC', 'type': 'Human Umbilical Vein Cell', 'passage': 'p4-7'}, 'GSM1659553': {'subtype': 'control HUVEC', 'type': 'Human Umbilical Vein Cell', 'passage': 'p4-7'}, 'GSM3594301': {'cluster': '6', 'disease': 'Remission', 'batch': 'Apr4'}, 'GSM3594300': {'cluster': '5', 'disease': 'Remission', 'batch': 'Apr4'}, 'GSM3594303': {'cluster': '5', 'disease': 'Remission', 'batch': 'Apr4'}, 'GSM3594302': {'cluster': '5', 'disease': 'Remission', 'batch': 'Apr4'}, 'GSM3594305': {'cluster': '4', 'disease': 'Remission', 'batch': 'Apr4'}, 'GSM1646974': {'illumina_index': '12', 'point': '4', 'batch': '2', 'agent': 'Staph', 'rin': '8.8', 'individual': 'M375'}, 'GSM3594307': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594306': {'cluster': '1', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM1965112': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965113': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965110': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1646975': {'illumina_index': '13', 'point': '48', 'batch': '2', 'agent': 'none', 'rin': '7.3', 'individual': 'M374'}, 'GSM1965116': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965117': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965114': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965115': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1646972': {'illumina_index': '6', 'point': '48', 'batch': '2', 'agent': 'Rv+', 'rin': '8', 'individual': 'M377'}, 'GSM1965118': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965119': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1646973': {'illumina_index': '7', 'point': '18', 'batch': '2', 'agent': 'BCG', 'rin': '8.7', 'individual': 'M376'}, 'GSM2436486': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM1646970': {'illumina_index': '4', 'point': '18', 'batch': '2', 'agent': 'Yers', 'rin': '10', 'individual': 'M372'}, 'GSM1646971': {'illumina_index': '5', 'point': '48', 'batch': '2', 'agent': 'Rv+', 'rin': '8.5', 'individual': 'M373'}, 'GSM1624302': {'gender': 'F', 'age': '58', 'tissue': 'skin', 'disease': 'LP', 'subject': '12'}, 'GSM1462860': {'type': 'Mesenchymal stromal cells', 'passage': 'Passage 4'}, 'GSM1462861': {'type': 'Mesenchymal stromal cells', 'passage': 'Passage 13'}, 'GSM1462862': {'type': 'Mesenchymal stromal cells', 'passage': 'Passage 13'}, 'GSM1462863': {'type': 'Mesenchymal stromal cells', 'passage': 'Passage 13'}, 'GSM2830961': {'selection': 'FACS sorted cells', 'type': 'shRNA targeting NAP1L3', 'genotype': 'NAP1L3 Knockdown', 'markers': 'Lin-CD34+CD38-'}, 'GSM2830960': {'selection': 'FACS sorted cells', 'type': 'Negative control vector', 'genotype': 'control', 'markers': 'Lin-CD34+CD38-'}, 'GSM2830963': {'selection': 'FACS sorted cells', 'type': 'shRNA targeting NAP1L3', 'genotype': 'NAP1L3 Knockdown', 'markers': 'Lin-CD34+CD38-'}, 'GSM2830962': {'selection': 'FACS sorted cells', 'type': 'shRNA targeting NAP1L3', 'genotype': 'NAP1L3 Knockdown', 'markers': 'Lin-CD34+CD38-'}, 'GSM2700069': {'line': 'Parental HeyA8', 'tissue': 'Ovaries', 'genotype': 'WT', 'transfection': 'Treated cells with 25nM siL3 siRNA (IDT)', 'point': 'for 2 days'}, 'GSM3416489': {'compartment': 'Stroma', 'id': 'CUMC_105', 'library': 'NuGEN'}, 'GSM3416488': {'compartment': 'Stroma', 'id': 'CUMC_104', 'library': 'NuGEN'}, 'GSM3586579': {'origin': 'GCB', 'pfstt': '1465', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1472', 'cycles': '6', 'oscs': '0'}, 'GSM3586578': {'origin': 'GCB', 'pfstt': '741', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '741', 'cycles': '6', 'oscs': '0'}, 'GSM3416483': {'compartment': 'Stroma', 'id': 'CUMC_099', 'library': 'NuGEN'}, 'GSM3416482': {'compartment': 'Stroma', 'id': 'CUMC_098', 'library': 'NuGEN'}, 'GSM3416481': {'compartment': 'Stroma', 'id': 'CUMC_097', 'library': 'NuGEN'}, 'GSM3416480': {'compartment': 'Stroma', 'id': 'CUMC_096', 'library': 'NuGEN'}, 'GSM3416487': {'compartment': 'Stroma', 'id': 'CUMC_103', 'library': 'NuGEN'}, 'GSM3416486': {'compartment': 'Stroma', 'id': 'CUMC_102', 'library': 'NuGEN'}, 'GSM3416485': {'compartment': 'Stroma', 'id': 'CUMC_101', 'library': 'NuGEN'}, 'GSM3416484': {'compartment': 'Stroma', 'id': 'CUMC_100', 'library': 'NuGEN'}, 'GSM2374362': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2316719': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316718': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316717': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316716': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316715': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316714': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316713': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316712': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316711': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316710': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2374361': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM1919090': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'Mock', 'point': '48 hours'}, 'GSM2374367': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374364': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374843': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374365': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374842': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2024869': {'line': 'MCF-7', 'transfection': 'siZNF143', 'treatment': 'vehicle'}, 'GSM2024868': {'line': 'MCF-7', 'transfection': 'siZNF143', 'treatment': 'vehicle'}, 'GSM2024865': {'line': 'MCF-7', 'transfection': 'scrambled control siRNA', 'treatment': '10 uM 17-beta oestradiol for 3 hours'}, 'GSM2024864': {'line': 'MCF-7', 'transfection': 'scrambled control siRNA', 'treatment': '10 uM 17-beta oestradiol for 3 hours'}, 'GSM2024867': {'line': 'MCF-7', 'transfection': 'siZNF143', 'treatment': 'vehicle'}, 'GSM2024866': {'line': 'MCF-7', 'transfection': 'scrambled control siRNA', 'treatment': '10 uM 17-beta oestradiol for 3 hours'}, 'GSM2024861': {'line': 'MCF-7', 'transfection': 'scrambled control siRNA', 'treatment': 'vehicle'}, 'GSM2024863': {'line': 'MCF-7', 'transfection': 'scrambled control siRNA', 'treatment': 'vehicle'}, 'GSM2024862': {'line': 'MCF-7', 'transfection': 'scrambled control siRNA', 'treatment': 'vehicle'}, 'GSM2771573': {'line': \"LNAR'\", 'antibody': 'Abcam ab4729'}, 'GSM2815829': {'line': 'H9'}, 'GSM2815828': {'line': 'H9'}, 'GSM1275066': {'type': 'tubular epithelial cells', 'treatment': 'control'}, 'GSM2665792': {'age': 'Day 175', 'well': 'H2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM1275064': {'type': 'mesangial cells', 'treatment': 'control'}, 'GSM2815826': {'line': 'H9'}, 'GSM2815821': {'line': 'H9'}, 'GSM2815820': {'line': 'H9'}, 'GSM2815823': {'line': 'H9'}, 'GSM2665793': {'age': 'Day 175', 'well': 'G6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM1706470': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '72h'}, 'GSM1706471': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '72h'}, 'GSM1706472': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '96h'}, 'GSM1706473': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '96h'}, 'GSM2771576': {'line': \"LNAR'\", 'antibody': 'Abcam ab8895'}, 'GSM2665791': {'age': 'Day 175', 'well': 'H3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM1126629': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126628': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126625': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126624': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM2285796': {'status': 'healthy volunteer', 'gender': 'female', 'age': '52', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1126626': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126621': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126620': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126623': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126622': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM2576212': {'tissue': 'breast cancer xenograft'}, 'GSM2576213': {'tissue': 'breast cancer xenograft'}, 'GSM2576210': {'tissue': 'breast cancer xenograft'}, 'GSM2576211': {'tissue': 'breast cancer xenograft'}, 'GSM2576216': {'tissue': 'breast cancer xenograft'}, 'GSM2576217': {'tissue': 'breast cancer xenograft'}, 'GSM2576214': {'tissue': 'breast cancer xenograft'}, 'GSM2576215': {'tissue': 'breast cancer xenograft'}, 'GSM2576218': {'tissue': 'breast cancer xenograft'}, 'GSM2576219': {'tissue': 'breast cancer xenograft'}, 'GSM1614656': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM2287796': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287797': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287794': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM1614657': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM2287792': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287793': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2481439': {'line': 'Hct116', 'treatment': 'DMSO'}, 'GSM2287791': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM1364041': {'type': 'induced pluripotent stem cell TIG108-4f3 subclone 6'}, 'GSM2653799': {'cell_line': 'K562', 'cell_type': 'immortalized tumor cells', 'transgene': 'Tet-On-neo-anti-BORIS-shRNA'}, 'GSM2653798': {'cell_line': 'K562', 'cell_type': 'immortalized tumor cells', 'transgene': 'Tet-On-neo-anti-BORIS-shRNA'}, 'GSM2653797': {'cell_line': 'K562', 'cell_type': 'immortalized tumor cells', 'transgene': 'Tet-On-neo-anti-BORIS-shRNA'}, 'GSM2653796': {'cell_line': 'K562', 'cell_type': 'immortalized tumor cells', 'transgene': 'Tet-On-neo-anti-BORIS-shRNA'}, 'GSM2653795': {'cell_line': 'K562', 'cell_type': 'immortalized tumor cells', 'transgene': 'pLKO-Tet-On-neo'}, 'GSM2653794': {'cell_line': 'K562', 'cell_type': 'immortalized tumor cells', 'transgene': 'pLKO-Tet-On-neo'}, 'GSM2653793': {'cell_line': 'K562', 'cell_type': 'immortalized tumor cells', 'transgene': 'pLKO-Tet-On-neo'}, 'GSM2653792': {'profile': 'CD326+/CD49fHI/CD26-', 'phenotype': 'non-BCH'}, 'GSM2653791': {'profile': 'CD326+/CD49fHI/CD26-', 'phenotype': 'non-BCH'}, 'GSM2653790': {'profile': 'CD326+/CD49fHI/CD26-', 'phenotype': 'non-BCH'}, 'GSM1540646': {'agent': 'Vehicle', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'HNRNPC KD'}, 'GSM1540644': {'agent': 'Vehicle', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'HNRNPC KD'}, 'GSM1540641': {'agent': 'Vehicle', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'Control'}, 'GSM1540649': {'agent': 'Vehicle', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'HNRNPC KD'}, 'GSM2561593': {'variation': 'isogenic corrected MCT8-deficient'}, 'GSM2561592': {'variation': 'isogenic corrected MCT8-deficient'}, 'GSM1095142': {'subset': 'RBM10 bound RNA', 'antibody': 'monoclonal anti-FLAG (Sigma, F1804)', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM2086410': {'line': 'HEK293'}, 'GSM2086411': {'line': 'HEK293'}, 'GSM2086412': {'line': 'HEK293'}, 'GSM2086413': {'line': 'HEK293'}, 'GSM2086414': {'line': 'HEK293'}, 'GSM2086415': {'line': 'HEK293'}, 'GSM2086416': {'line': 'HEK293'}, 'GSM2086417': {'line': 'HEK293'}, 'GSM2086418': {'line': 'HEK293'}, 'GSM2086419': {'line': 'HEK293'}, 'GSM2720341': {'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2262792': {'tissue': 'pancreas'}, 'GSM2720343': {'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2720342': {'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2262797': {'tissue': 'pancreas'}, 'GSM2262796': {'tissue': 'pancreas'}, 'GSM2262795': {'tissue': 'pancreas'}, 'GSM2262794': {'tissue': 'pancreas'}, 'GSM2720349': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2563827': {'status': 'healthy', 'gender': 'female', 'tissue': 'decidual tissues', 'type': 'CD4+ T cells', 'pregnancy': 'early'}, 'GSM2262799': {'tissue': 'pancreas'}, 'GSM2262798': {'tissue': 'pancreas'}, 'GSM2451003': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2563826': {'status': 'healthy', 'gender': 'female', 'tissue': 'peripheral blood', 'type': 'CD4+ T cells', 'pregnancy': 'early'}, 'GSM1217929': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH070'}, 'GSM1217928': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH070'}, 'GSM2563825': {'status': 'healthy', 'gender': 'female', 'tissue': 'peripheral blood', 'type': 'CD4+ T cells', 'pregnancy': 'early'}, 'GSM1217923': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH068'}, 'GSM1217922': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH068'}, 'GSM1217921': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH068'}, 'GSM1217920': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH053'}, 'GSM1217927': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH053'}, 'GSM1217926': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH053'}, 'GSM1217925': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH053'}, 'GSM1217924': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH068'}, 'GSM1703718': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703719': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703716': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703717': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703714': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703715': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703712': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703713': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703710': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703711': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM2051658': {'subtype': 'adenocarcinoma', 'line': 'PC9', 'metastasis': 'general Metastasis', 'knockdown': 'scrambled shRNA'}, 'GSM2051659': {'subtype': 'adenocarcinoma', 'line': 'PC9', 'metastasis': 'general Metastasis', 'knockdown': 'ABL1/ABL2-specific shRNAs'}, 'GSM2051656': {'subtype': 'adenocarcinoma', 'line': 'PC9', 'metastasis': 'general Metastasis', 'knockdown': 'DMSO'}, 'GSM2051657': {'subtype': 'adenocarcinoma', 'line': 'PC9', 'metastasis': 'general Metastasis', 'knockdown': 'GNF5'}, 'GSM1538103': {'resection': '20.4', 'id': '28', 'sex': 'F'}, 'GSM1538102': {'resection': '30.7', 'id': '27', 'sex': 'M'}, 'GSM1538101': {'resection': '30.7', 'id': '27', 'sex': 'M'}, 'GSM1538100': {'resection': '29.5', 'id': '26', 'sex': 'M'}, 'GSM3190558': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C38', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.345116'}, 'GSM3190559': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C38', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.586858'}, 'GSM3190554': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.211873'}, 'GSM3190555': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.899845'}, 'GSM3190556': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'Yes', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.711454'}, 'GSM3190557': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'Yes', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.241862'}, 'GSM3190550': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C16', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.052865'}, 'GSM3190551': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C16', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.798772'}, 'GSM3190552': {'boca': 'Yes', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.511516'}, 'GSM3190553': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.289565'}, 'GSM2579553': {'status': 'undifferentiated', 'tissue': 'human embryonic stem cells'}, 'GSM2579554': {'status': 'differentiated', 'tissue': 'human MGE organoids'}, 'GSM2579555': {'status': 'differentiated', 'tissue': 'human cortex organoids'}, 'GSM2579556': {'status': 'differentiated', 'tissue': 'human MGE organoids'}, 'GSM2579557': {'status': 'differentiated', 'tissue': 'human cortex organoids'}, 'GSM1920179': {'age': '69 year old', 'tissue': 'adjacent normal tissue from patient with lobular carcinoma in situ', 'Sex': 'female'}, 'GSM2195158': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195159': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1808109': {'tissue': 'LCLs'}, 'GSM1808108': {'tissue': 'LCLs'}, 'GSM2195152': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1808106': {'tissue': 'LCLs'}, 'GSM1808105': {'tissue': 'LCLs'}, 'GSM2195151': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195156': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1808102': {'tissue': 'LCLs'}, 'GSM2195154': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195155': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2526882': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526883': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526880': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526881': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526886': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526887': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526884': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526885': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526888': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526889': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1900669': {'line': 'HEK293'}, 'GSM1900668': {'line': 'HEK293'}, 'GSM1900665': {'line': 'HEK293'}, 'GSM1900664': {'line': 'HEK293'}, 'GSM1900667': {'line': 'HEK293'}, 'GSM1900666': {'line': 'HEK293'}, 'GSM1900663': {'line': 'HEK293'}, 'GSM1900662': {'line': 'HEK293'}, 'GSM1708784': {'gender': 'male', 'age': '59', 'tissue': 'Ossified Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM1708785': {'gender': 'male', 'age': '63', 'tissue': 'Ossified Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM2790804': {'status': 'Healthy', 'donor': '28', 'type': 'Monocyte', 'treatment': 'None', 'point': 'Baseline'}, 'GSM1695868': {'tissue': 'Thymus', 'markers': 'CD3+CD4neg CD8+'}, 'GSM1695869': {'tissue': 'Thymus', 'markers': 'CD3+CD4neg CD8+'}, 'GSM1695860': {'tissue': 'Thymus', 'markers': 'CD34+CD7+CD1aneg CD4negCD8neg'}, 'GSM1708780': {'gender': 'male', 'age': '63', 'tissue': 'Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM1695862': {'tissue': 'Thymus', 'markers': 'CD34+CD7+CD1a+CD4negCD8neg'}, 'GSM1695863': {'tissue': 'Thymus', 'markers': 'CD34+CD7+CD1a+CD4negCD8neg'}, 'GSM1695864': {'tissue': 'Thymus', 'markers': 'CD4+CD8+'}, 'GSM1695865': {'tissue': 'Thymus', 'markers': 'CD4+CD8+'}, 'GSM1695866': {'tissue': 'Thymus', 'markers': 'CD3+CD4+CD8neg'}, 'GSM1695867': {'tissue': 'Thymus', 'markers': 'CD3+CD4+CD8neg'}, 'GSM1708782': {'gender': 'male', 'age': '66', 'tissue': 'Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM2153079': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153078': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153077': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153076': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153075': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153074': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153073': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153072': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153071': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153070': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2262910': {'protocol': 'Culture only for 6 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262913': {'protocol': 'LPS exposed 24 hours, BG exposed for 24 hours, culture for 4 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2649959': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM1401330': {'rin': '8', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-11-27'}, 'GSM2790800': {'status': 'Healthy', 'donor': '20', 'type': 'Monocyte', 'treatment': 'None', 'point': 'Baseline'}, 'GSM2259818': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259819': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2048485': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048484': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048487': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2166370': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166371': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166372': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166373': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166374': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166375': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166376': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166377': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166378': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166379': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2048480': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2259814': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM1607114': {'gender': 'F', 'age': '59', 'tissue': 'non-lesional skin'}, 'GSM1888653': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888652': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888651': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888650': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1888657': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888656': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1863146': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'highDBZ_R1984A', 'passage': '<20'}, 'GSM1863147': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'mig', 'passage': '<20'}, 'GSM1863148': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'mig_highDBZ', 'passage': '<20'}, 'GSM1863149': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'highDBZ_ICN', 'passage': '<20'}, 'GSM1888659': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888658': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1395584': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395585': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2862926': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM1395587': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395580': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395581': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395582': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395583': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395588': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395589': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2705450': {'Sex': 'Male', 'rin': '8.7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.63', 'pmi': '15'}, 'GSM2705451': {'Sex': 'Female', 'rin': '8.1', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '5.7', 'pmi': '15'}, 'GSM1835020': {'phase': 'G1 (2c)', 'status': 'Undifferentiated', 'line': 'd-pES12', 'type': 'Diploid pES12 cells', 'passage': '18'}, 'GSM2348577': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2636205': {'type': 'primed embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2170689': {'stage': 'Hepatic endoderm 2'}, 'GSM2636207': {'type': 'primed embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2643363': {'donor': '1', 'day': '1', 'infection': 'EBOV'}, 'GSM2643367': {'donor': '1', 'day': '1', 'infection': 'Mock'}, 'GSM2643366': {'donor': '1', 'day': '4', 'infection': 'LPS'}, 'GSM2643365': {'donor': '1', 'day': '1', 'infection': 'LPS'}, 'GSM2643364': {'donor': '1', 'day': '4', 'infection': 'EBOV'}, 'GSM2643369': {'donor': '2', 'day': '1', 'infection': 'EBOV'}, 'GSM2643368': {'donor': '1', 'day': '4', 'infection': 'Mock'}, 'GSM1946025': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18858', 'for': '60min'}, 'GSM1946024': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18858', 'for': '60min'}, 'GSM1946027': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18859', 'for': '30min'}, 'GSM1946026': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18859', 'for': '30min'}, 'GSM1946021': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18856', 'for': '60min'}, 'GSM1946020': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18856', 'for': '60min'}, 'GSM1946023': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18858', 'for': '30min'}, 'GSM1946022': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18858', 'for': '30min'}, 'GSM1930375': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1946029': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18859', 'for': '30min'}, 'GSM1946028': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18859', 'for': '30min'}, 'GSM2247635': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247634': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247637': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247636': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247631': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247630': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247633': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247632': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247639': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247638': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2082069': {'line': 'IMR-5', 'sirna': 'siCTR'}, 'GSM2082068': {'line': 'IMR-5', 'sirna': 'siCTR'}, 'GSM2082061': {'line': 'IMR-5', 'antibody': 'GTF3C5 (Bethyl, A301-242A)', 'treatment': 'CD532'}, 'GSM2082060': {'line': 'IMR-5', 'antibody': 'GTF3C5 (Bethyl, A301-242A)', 'treatment': 'DMSO'}, 'GSM2082063': {'line': 'IMR-5', 'sirna': 'siCTR'}, 'GSM2082062': {'line': 'IMR-5', 'sirna': 'siCTR'}, 'GSM2082065': {'line': 'IMR-5', 'sirna': 'siCTR'}, 'GSM2082064': {'line': 'IMR-5', 'sirna': 'siCTR'}, 'GSM2082067': {'line': 'IMR-5', 'sirna': 'siCTR'}, 'GSM2082066': {'line': 'IMR-5', 'sirna': 'siCTR'}, 'GSM2455898': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455899': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2204113': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204112': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204115': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204114': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204117': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204116': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2337059': {'origin': 'cells in vitro', 'line': 'COLO858', 'type': 'melanoma cell line', 'treatment': 'DMSO (vehicle)'}, 'GSM2455891': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455892': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455893': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455894': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455895': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455896': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455897': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2431669': {'number': '1_22', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D5', 'concentration': '10μM'}, 'GSM1673638': {'differentiation': 'M-CSF', 'protocol': 'Additional 51mM NaCl for 24 hours', 'individual': 'Donor 3', 'type': 'macrophage'}, 'GSM2431661': {'number': '1_15', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D5', 'concentration': '10μM'}, 'GSM2431660': {'number': '1_14', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D5', 'concentration': '100ng/ml'}, 'GSM2431663': {'number': '1_17', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D5', 'concentration': '100ng/ml'}, 'GSM2431662': {'number': '1_16', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D5'}, 'GSM2431665': {'number': '1_19', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D5', 'concentration': '10μM'}, 'GSM1673634': {'differentiation': 'M-CSF', 'protocol': 'Additional 51mM NaCl for 24 hours', 'individual': 'Donor 1', 'type': 'macrophage'}, 'GSM2431667': {'number': '1_20', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D5', 'concentration': '100ng/ml'}, 'GSM2431666': {'number': '1_2', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D4', 'concentration': '100ng/ml'}, 'GSM1395604': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2256145': {'infected': 'common:TSS39739_-_33895261.23-ENST00000592381', 'type': 'U87'}, 'GSM2256144': {'infected': 'common:TSS39739_-_33895581.23-ENST00000592381', 'type': 'U87'}, 'GSM2256147': {'infected': 'cancer_common:TSS95782_-_100450240.23-P1P2', 'type': 'U87'}, 'GSM2256146': {'infected': 'cancer_common:TSS95782_+_100450208.23-P1P2', 'type': 'U87'}, 'GSM2256141': {'infected': 'u87_hek:TSS99143_+_128808419.23-P1P2', 'type': 'U87'}, 'GSM2256140': {'infected': 'u87_hek:TSS99143_+_128808391.23-P1P2', 'type': 'U87'}, 'GSM2256143': {'infected': 'common:TSS99142_-_128807059.23-P1P2', 'type': 'U87'}, 'GSM2256142': {'infected': 'common:TSS99142_-_128807040.23-P1P2', 'type': 'U87'}, 'GSM2256149': {'infected': 'cancer_common:TSS21351_-_89919495.23-ENST00000605233', 'type': 'U87'}, 'GSM2256148': {'infected': 'cancer_common:TSS21351_-_89919785.23-ENST00000605233', 'type': 'U87'}, 'GSM2390899': {'disease': 'Healthy Control'}, 'GSM2087112': {'line': 'HeLa', 'genotype': 'Wild-type'}, 'GSM2087113': {'line': 'HeLa', 'genotype': 'Wild-type'}, 'GSM2087110': {'line': 'HeLa', 'genotype': 'CstF64 knockdown'}, 'GSM2087111': {'line': 'HeLa', 'genotype': 'CstF64 knockdown'}, 'GSM1876245': {'line': 'A549', 'expression': 'stable cell line', 'treatment': 'control'}, 'GSM1876247': {'line': 'A549', 'expression': 'stable cell line', 'treatment': 'TPyP4-Pt'}, 'GSM1876246': {'line': 'A549', 'expression': 'stable cell line', 'treatment': 'TMPyP4'}, 'GSM2459139': {'type': 'human liver stellate cells', 'genotype': 'synectin knock down'}, 'GSM1564635': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '3.3', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2459138': {'type': 'human liver stellate cells', 'genotype': 'synectin knock down'}, 'GSM1562856': {'line': 'CACO-2', 'replicate': '1', 'treatment': 'lactose-grown B. breve'}, 'GSM1562857': {'line': 'CACO-2', 'replicate': '2', 'treatment': 'lactose-grown B. breve'}, 'GSM1562858': {'line': 'CACO-2', 'replicate': '3', 'treatment': 'lactose-grown B. breve'}, 'GSM1562859': {'line': 'CACO-2', 'replicate': '1', 'treatment': 'glucose-grown B. breve'}, 'GSM2175899': {'subtype': 'Central Memory T Cell (TCM)', 'age': '17 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Resting Latently Infected'}, 'GSM2175898': {'subtype': 'Central Memory T Cell (TCM)', 'age': '19 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Activated Uninfected'}, 'GSM2175895': {'subtype': 'Central Memory T Cell (TCM)', 'age': '17 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Resting Latently Infected'}, 'GSM2175894': {'subtype': 'Central Memory T Cell (TCM)', 'age': '19 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Activated Uninfected'}, 'GSM2175897': {'subtype': 'Central Memory T Cell (TCM)', 'age': '17 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Resting Uninfected'}, 'GSM2175896': {'subtype': 'Central Memory T Cell (TCM)', 'age': '19 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Activated Latently Infected'}, 'GSM2175891': {'subtype': 'Central Memory T Cell (TCM)', 'age': '17 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Resting Latently Infected'}, 'GSM2175890': {'subtype': 'Central Memory T Cell (TCM)', 'age': '19 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Activated Uninfected'}, 'GSM2175893': {'subtype': 'Central Memory T Cell (TCM)', 'age': '17 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Resting Uninfected'}, 'GSM2175892': {'subtype': 'Central Memory T Cell (TCM)', 'age': '19 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Activated Latently Infected'}, 'GSM2275110': {'area_under_the_curve': '0.519514844', 'siteandparticipantcode': '283344', 'baseline_area_under_the_curve': '0.548115313', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '94.78203435', 'auc_percent_of_baseline': '94.78203435', 'trunkbarcode': '939539', 'sampleID': 'S12647', 'flowcellid': 'D27JJACXX', 'status': 'R', 'samplelabel': 'lib1527', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_283344', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib1527', 'studysiteshort': 'YALE'}, 'GSM2374339': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374338': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2454177': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2374335': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374334': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374337': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374336': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374331': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374330': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374333': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374332': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1899790': {'line': 'HeLa cells', 'genotype': 'wild-type'}, 'GSM1899791': {'line': 'HeLa cells', 'genotype': 'wild-type'}, 'GSM1899792': {'line': 'HeLa cells', 'genotype': 'Paf1 knockdown'}, 'GSM1899793': {'line': 'HeLa cells', 'genotype': 'Paf1 knockdown'}, 'GSM1899794': {'line': 'HeLa cells', 'genotype': 'Paf1 knockdown'}, 'GSM1899795': {'line': 'HeLa cells', 'genotype': 'Ski8 knockdown'}, 'GSM1899796': {'line': 'HeLa cells', 'genotype': 'Ski8 knockdown'}, 'GSM1899797': {'line': 'HeLa cells', 'genotype': 'Ski8 knockdown'}, 'GSM1899798': {'line': 'HeLa cells', 'genotype': 'Rtf1 knockdown'}, 'GSM1899799': {'line': 'HeLa cells', 'genotype': 'Rtf1 knockdown'}, 'GSM1397515': {'tissue': 'osteoblasts'}, 'GSM1274271': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '48hr'}, 'GSM1274272': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '48hr'}, 'GSM1397516': {'tissue': 'osteoblasts'}, 'GSM1274274': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '6days'}, 'GSM1274275': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '6days'}, 'GSM1274276': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '6days'}, 'GSM2339301': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2429930': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f3', 'treatment': 'none'}, 'GSM1647089': {'illumina_index': '2', 'point': '48', 'batch': '12', 'agent': 'Yers', 'rin': '6.8', 'individual': 'M374'}, 'GSM1647088': {'illumina_index': '19', 'point': '18', 'batch': '11', 'agent': 'Rv+', 'rin': '3.6', 'individual': 'M374'}, 'GSM1647081': {'illumina_index': '7', 'point': '48', 'batch': '11', 'agent': 'Rv', 'rin': '3.6', 'individual': 'M374'}, 'GSM1647080': {'illumina_index': '6', 'point': '48', 'batch': '11', 'agent': 'Salm', 'rin': '9.3', 'individual': 'M377'}, 'GSM1647083': {'illumina_index': '13', 'point': '4', 'batch': '11', 'agent': 'none', 'rin': '8', 'individual': 'M373'}, 'GSM1647082': {'illumina_index': '12', 'point': '4', 'batch': '11', 'agent': 'Yers', 'rin': '6.8', 'individual': 'M375'}, 'GSM1647085': {'illumina_index': '15', 'point': '48', 'batch': '11', 'agent': 'Salm', 'rin': '9.6', 'individual': 'M372'}, 'GSM1647084': {'illumina_index': '14', 'point': '18', 'batch': '11', 'agent': 'Smeg', 'rin': '8.8', 'individual': 'M376'}, 'GSM1647087': {'illumina_index': '18', 'point': '4', 'batch': '11', 'agent': 'none', 'rin': '8.8', 'individual': 'M377'}, 'GSM1647086': {'illumina_index': '16', 'point': '18', 'batch': '11', 'agent': 'Smeg', 'rin': '3.5', 'individual': 'M374'}, 'GSM2495979': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495978': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2495977': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2100900': {'status': 'yes', 'gender': 'female', 'age': '68', 'race': 'white'}, 'GSM1866073': {'tissue': 'Gliobmastoma biopsy'}, 'GSM2429933': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f9', 'treatment': 'none'}, 'GSM2334771': {'type': 'Low grade'}, 'GSM2334770': {'type': 'Low grade'}, 'GSM2334773': {'type': 'Undifferentiated'}, 'GSM2334772': {'type': 'Low grade'}, 'GSM2334775': {'type': 'Undifferentiated'}, 'GSM2334774': {'type': 'Undifferentiated'}, 'GSM2334777': {'type': 'Undifferentiated'}, 'GSM2334776': {'type': 'Undifferentiated'}, 'GSM2334779': {'type': 'Undifferentiated'}, 'GSM2334778': {'type': 'Undifferentiated'}, 'GSM1548068': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1395608': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1691198': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1691199': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1691196': {'treatment': 'untreated', 'lline': 'MM1.S'}, 'GSM1691197': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1250456': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '52 Years', 'onset': 'Bulbar', 'course': '4 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Familial ALS and Dementia'}, 'GSM1250457': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '52 Years', 'onset': 'Bulbar', 'course': '4 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'Transfection Control - Cells were treated with a control ASO which does not have any human genomic target.', 'diagnosis': 'Familial ALS and Dementia'}, 'GSM1250454': {'genotype': 'Unknown Mutation', 'gender': 'Male', 'age': '46 Years', 'onset': 'Bulbar', 'course': '2 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Sporadic ALS'}, 'GSM1250455': {'genotype': 'Unknown Mutation', 'gender': 'Male', 'age': '54 Years', 'onset': 'Bulbar', 'course': '2.5 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Sporadic ALS'}, 'GSM1642309': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM1250453': {'genotype': 'Unknown Mutation', 'gender': 'Male', 'age': '54 Years', 'onset': 'Arm', 'course': '10 months at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Sporadic ALS'}, 'GSM1642305': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM1642304': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM1642307': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM1642306': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM1642301': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM1642300': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM1642303': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM1250459': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '52 Years', 'onset': 'Distal UE', 'course': '1 year at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Sporadic ALS (C9orf72 expansion)'}, 'GSM2041818': {'lineage': 'lymphoid', 'etiology': 'PBPC', 'genotype': 'MLL-Af4'}, 'GSM2041813': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'Ctrl'}, 'GSM2041815': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'Ctrl'}, 'GSM2041814': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'Ctrl'}, 'GSM2041817': {'lineage': 'lymphoid', 'etiology': 'PBPC', 'genotype': 'MLL-Af4'}, 'GSM2429936': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f9', 'treatment': 'none'}, 'GSM2948443': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2948440': {'type': 'hESC-H9(WA09)', 'system': '3D PEG hydrogel'}, 'GSM2948441': {'type': 'hESC-H9(WA09)', 'system': '3D PEG hydrogel'}, 'GSM2948446': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2948447': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2948444': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2948445': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2948448': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2948449': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2940631': {'line': 'H1299', 'p72rpolymorphism': 'R', 'hotspot': 'R175H', 'batch': 'b2'}, 'GSM1550728': {'line': 'LNCaP', 'treatment': 'siCTCF/lane 4'}, 'GSM2940633': {'line': 'H1299', 'p72rpolymorphism': 'P', 'hotspot': 'R273H', 'batch': 'b1'}, 'GSM2940632': {'line': 'H1299', 'p72rpolymorphism': 'P', 'hotspot': 'R273H', 'batch': 'b2'}, 'GSM2940635': {'line': 'H1299', 'p72rpolymorphism': 'P', 'hotspot': 'R273H', 'batch': 'b1'}, 'GSM2940634': {'line': 'H1299', 'p72rpolymorphism': 'P', 'hotspot': 'R273H', 'batch': 'b1'}, 'GSM2940636': {'line': 'H1299', 'p72rpolymorphism': 'R', 'hotspot': 'R273H', 'batch': 'b2'}, 'GSM1550723': {'line': 'LNCaP', 'treatment': 'control'}, 'GSM1550725': {'line': 'LNCaP', 'treatment': 'control/lane 3'}, 'GSM1550724': {'line': 'LNCaP', 'treatment': 'siCTCF'}, 'GSM1550727': {'line': 'LNCaP', 'treatment': 'control/lane4'}, 'GSM1550726': {'line': 'LNCaP', 'treatment': 'siCTCF/lane 3'}, 'GSM2632590': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2176159': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176158': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176151': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176150': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176153': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176152': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176155': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176154': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176157': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176156': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2101777': {'1': 'shRNA #1 against RBPJ', 'model': '4121', '2': 'DMSO'}, 'GSM2101776': {'1': 'Nontargeting shRNA', 'model': '4121', '2': 'DMSO'}, 'GSM2101775': {'1': '10uM DAPT', 'model': '3691'}, 'GSM2632125': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2632127': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2101774': {'1': '5uM DAPT', 'model': '3691'}, 'GSM2101773': {'1': 'DMSO', 'model': '3691'}, 'GSM2632129': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2632128': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM1841259': {'tissue': 'Heart', 'diagnosis': 'healthy'}, 'GSM2101771': {'1': 'shRNA #1 against RBPJ', 'model': '3691'}, 'GSM1841251': {'tissue': 'Heart', 'diagnosis': 'healthy'}, 'GSM2101770': {'1': 'Nontargeting shRNA', 'model': '3691'}, 'GSM2125780': {'cancer': 'gastric cancer', 'stage': '1'}, 'GSM1598027': {'vendor': 'active motif', 'tissue': 'fetal heart', 'antibody': 'H3K27ac', 'stage': '12 weeks after gestation'}, 'GSM2125782': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125783': {'cancer': 'gastric cancer', 'stage': '4'}, 'GSM2125784': {'cancer': 'gastric cancer', 'stage': '4'}, 'GSM2125785': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125786': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM2125787': {'cancer': 'gastric cancer', 'stage': '1'}, 'GSM2125788': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125789': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2700503': {'line': 'HeyA8 CD95 k.o. cells clone #11', 'tissue': 'Ovaries', 'infection': 'Cells were infected with empty pLenti-GIII-CMV-RFP-2A-Puro and selected with 3 ug/mL puromycin for 2 days. Total RNA was isolated 50hrs after puromycin selection.'}, 'GSM2700505': {'line': 'HeyA8 CD95 k.o. cells clone #11', 'tissue': 'Ovaries', 'infection': 'Cells were infected with pLenti-GIII-CMV-RFP-2A-Puro-CD95L and selected with 3 ug/mL puromycin for 2 days. Total RNA was isolated 50hrs after puromycin selection.'}, 'GSM2700504': {'line': 'HeyA8 CD95 k.o. cells clone #11', 'tissue': 'Ovaries', 'infection': 'Cells were infected with empty pLenti-GIII-CMV-RFP-2A-Puro and selected with 3 ug/mL puromycin for 2 days. Total RNA was isolated 50hrs after puromycin selection.'}, 'GSM1598028': {'tissue': 'fetal heart', 'antibody': 'H3K4me3 (Abcam, ab8580)', 'stage': '12 weeks after gestation'}, 'GSM1598029': {'tissue': 'fetal heart', 'antibody': 'H3K4me3 (Abcam, ab8580)', 'stage': '12 weeks after gestation'}, 'GSM2248199': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248198': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2266298': {'with': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM2248191': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248190': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248193': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2266299': {'with': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM2248195': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248194': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248197': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248196': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM1666035': {'race': 'African American', 'age': '36', 'tissue': 'LCM-dissected vaginal epithelium', 'contraception': 'None'}, 'GSM1666034': {'race': 'Caucasian', 'age': '27', 'tissue': 'LCM-dissected vaginal epithelium', 'contraception': 'None'}, 'GSM1666037': {'race': 'African American', 'age': '28', 'tissue': 'LCM-dissected vaginal epithelium', 'contraception': 'None'}, 'GSM1666036': {'race': 'Caucasian', 'age': '22', 'tissue': 'LCM-dissected vaginal epithelium', 'contraception': 'None'}, 'GSM1666033': {'line': 'MCF7 breast tumor cell line'}, 'GSM1666032': {'line': 'MCF7 breast tumor cell line'}, 'GSM1666039': {'race': 'African American', 'age': '30', 'tissue': 'LCM-dissected vaginal epithelium', 'contraception': 'DMPA 2 years'}, 'GSM1666038': {'race': 'African American', 'age': '26', 'tissue': 'LCM-dissected vaginal epithelium', 'contraception': 'DMPA 6 months-1 year'}, 'GSM2455669': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455668': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455667': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455666': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455665': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455664': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455663': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455662': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455661': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455660': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2221626': {'genes': 'None', 'tissue': 'nontumorous fresh thyroid tissue', 'stage': 'thyroid primary cells on Day 5'}, 'GSM2221624': {'genes': 'None', 'tissue': 'nontumorous fresh thyroid tissue', 'stage': 'thyroid primary cells on Day 5'}, 'GSM2221625': {'genes': 'None', 'tissue': 'nontumorous fresh thyroid tissue', 'stage': 'thyroid primary cells on Day 5'}, 'GSM2221622': {'genes': 'FOXE1', 'tissue': 'nontumorous fresh thyroid tissue', 'stage': 'thyroid primary cells on Day 5'}, 'GSM2221623': {'genes': 'FOXE1', 'tissue': 'nontumorous fresh thyroid tissue', 'stage': 'thyroid primary cells on Day 5'}, 'GSM2221621': {'genes': 'FOXE1', 'tissue': 'nontumorous fresh thyroid tissue', 'stage': 'thyroid primary cells on Day 5'}, 'GSM2493900': {'line': 'Hap1', 'variation': 'WT'}, 'GSM2493901': {'line': 'Hap1', 'variation': 'WaplKO_1.14'}, 'GSM2493902': {'line': 'Hap1', 'variation': 'WaplKO_1.14'}, 'GSM2493903': {'line': 'Hap1', 'variation': 'WaplKO_1.14'}, 'GSM2348749': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348748': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348747': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348746': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348745': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348744': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348743': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348742': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348741': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348740': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2324269': {'tumor': 'healthy control', 'tissue': 'peripheral blood'}, 'GSM2674619': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674618': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2170619': {'stage': 'Hepatic endoderm 1'}, 'GSM2674615': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674614': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674617': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674616': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM1277969': {'line': 'LLC12PH', 'type': 'Human Parthenogenic Stem Cells'}, 'GSM1277968': {'line': 'LLC12PH', 'type': 'Human Parthenogenic Stem Cells'}, 'GSM2674613': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674612': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2316698': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316699': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316692': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316693': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316690': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316691': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316696': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316697': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316694': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316695': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1356677': {'tissue': 'skeletal muscle', 'variation': 'normal control'}, 'GSM1356676': {'tissue': 'skeletal muscle', 'variation': 'c.40_41delGA dystrophin mutation'}, 'GSM1356675': {'tissue': 'skeletal muscle', 'variation': 'normal control'}, 'GSM1356674': {'tissue': 'skeletal muscle', 'variation': 'c.40_41delGA dystrophin mutation'}, 'GSM2170610': {'stage': 'Hepatic endoderm 1'}, 'GSM2170611': {'stage': 'Hepatic endoderm 1'}, 'GSM2262911': {'protocol': 'LPS exposed 24 hours, BG exposed for 24 hours, culture for 4 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2170612': {'stage': 'Hepatic endoderm 1'}, 'GSM1084155': {'with': 'myc-tagged NSUN2 C271A construct', 'line': 'HEK293', 'type': 'Embryonic kidney cells', 'antibody': 'anti-myc antibody'}, 'GSM2170613': {'stage': 'Hepatic endoderm 1'}, 'GSM2170614': {'stage': 'Hepatic endoderm 1'}, 'GSM2124746': {'rin': '6.5', 'Sex': 'male'}, 'GSM1694221': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694220': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM1694223': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM1964949': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM2479728': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479729': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479724': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479725': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479726': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479727': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479720': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM1964947': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2479722': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479723': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM1275184': {'line': 'HEK 293T', 'variation': 'expressing shRNA DAZAP1 (plKO.1); DAZAP1 knockdown'}, 'GSM1275183': {'line': 'HEK 293T', 'variation': 'expressing control shRNA; wild type'}, 'GSM1561651': {'type': 'psoriatic skin'}, 'GSM2307269': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307268': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1561650': {'type': 'psoriatic skin'}, 'GSM2307265': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307264': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307267': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307266': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307261': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307260': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307263': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307262': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2192702': {'type': 'Human mammary epithelial cells'}, 'GSM2192703': {'type': 'Human mammary epithelial cells'}, 'GSM2192700': {'type': 'Human mammary epithelial cells'}, 'GSM2192701': {'type': 'Human mammary epithelial cells'}, 'GSM2192706': {'type': 'Human mammary epithelial cells'}, 'GSM2192704': {'type': 'Human mammary epithelial cells'}, 'GSM2192705': {'type': 'Human mammary epithelial cells'}, 'o': {'code': '200'}, 'GSM2243559': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2233221': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM1374126': {'line': 'PC-3M-luc', 'passages': '17-20', 'type': 'human prostate carcinoma cell line', 'variation': 'RNAi LSD1'}, 'GSM1374125': {'line': 'PC-3M-luc', 'passages': '17-20', 'type': 'human prostate carcinoma cell line', 'variation': 'RNAi LSD1'}, 'GSM1374124': {'line': 'PC-3M-luc', 'passages': '17-20', 'type': 'human prostate carcinoma cell line', 'variation': 'RNAi Control'}, 'GSM1374123': {'line': 'PC-3M-luc', 'passages': '17-20', 'type': 'human prostate carcinoma cell line', 'variation': 'RNAi Control'}, 'GSM1964998': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964995': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964994': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964996': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM3335818': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'not treated with extra DNAse'}, 'GSM3335819': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'not treated with extra DNAse'}, 'GSM1540562': {'state': 'Lyme disease', 'individual': 'patient 01-46', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540563': {'state': 'Lyme disease', 'individual': 'patient 01-47', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540560': {'state': 'Lyme disease', 'individual': 'patient 01-44', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540561': {'state': 'Lyme disease', 'individual': 'patient 01-45', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540566': {'state': 'Lyme disease', 'individual': 'patient 01-50', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540567': {'state': 'Lyme disease', 'individual': 'patient 01-51', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540564': {'state': 'Lyme disease', 'individual': 'patient 01-48', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540565': {'state': 'Lyme disease', 'individual': 'patient 01-49', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540568': {'state': 'Lyme disease', 'individual': 'patient 01-52', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540569': {'state': 'Lyme disease', 'individual': 'patient 01-53', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM863382': {'type': '293T', 'treatment': 'siRNA transfection with 5nM siCTL'}, 'GSM1946199': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19153', 'for': '30min'}, 'GSM2303350': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM1479469': {'index': '13', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'M', 'age': '80', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '43', 'collectiondate': 'June 22 2012', 'samplename': '43_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Sepsis'}, 'GSM2303357': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM863385': {'type': '293T', 'treatment': 'siRNA transfection with 5nM siGPS2'}, 'GSM2095432': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM2092580': {'repertoire': 'TCR-beta', 'individual': 'patient 6 (low-grade glioma)', 'tissue': 'brain'}, 'GSM3025229': {'line': 'MCF7', 'treatment': 'Control', 'batch': 'batch1'}, 'GSM3025228': {'line': 'MCF7', 'treatment': 'Control', 'batch': 'batch1'}, 'GSM2026542': {'gender': 'male', 'type': 'neuroepithelia aggregates', 'genotype': 'FXS patient'}, 'GSM2026543': {'gender': 'male', 'type': 'neuron', 'genotype': 'FXS patient'}, 'GSM2519379': {'with': 'HSV1 K220A mutated', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'pulldown', 'passage': 'p5-15'}, 'GSM1566001': {'type': 'Monocyte-derived dendritic cells', 'condition': 'MTB-infected'}, 'GSM1566000': {'type': 'Monocyte-derived dendritic cells', 'condition': 'Non-infected'}, 'GSM1566002': {'type': 'Monocyte-derived dendritic cells', 'condition': 'Non-infected'}, 'GSM1566005': {'treatment': 'none'}, 'GSM3025227': {'line': 'MCF7', 'treatment': 'Control', 'batch': 'batch1'}, 'GSM1566006': {'treatment': '10ng/ml IL-1alpha for 1 h'}, 'GSM2080918': {'line': 'RWPE1', 'antibody': 'H3K27Ac'}, 'GSM2535769': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1254', 'samplename': '1gr_413tetr_C30', 'seqsite': 'BRI', 'sampleID': 'S13422', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1254', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C30'}, 'GSM2535768': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1253', 'samplename': '1gr_413tetr_C22', 'seqsite': 'BRI', 'sampleID': 'S13421', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1253', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C22'}, 'GSM2535767': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1252', 'samplename': '1gr_413tetr_C16', 'seqsite': 'BRI', 'sampleID': 'S13420', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1252', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C16'}, 'GSM2535766': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1251', 'samplename': '1gr_413tetr_C10', 'seqsite': 'BRI', 'sampleID': 'S13419', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1251', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C10'}, 'GSM2535765': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1249', 'samplename': '1gr_413tetr_C47', 'seqsite': 'BRI', 'sampleID': 'S13417', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1249', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C47'}, 'GSM2535764': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1247', 'samplename': '1gr_413tetr_C23', 'seqsite': 'BRI', 'sampleID': 'S13415', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1247', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C23'}, 'GSM2535763': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1246', 'samplename': '1gr_413tetr_C11', 'seqsite': 'BRI', 'sampleID': 'S13414', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1246', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C11'}, 'GSM2080916': {'line': 'C42B', 'antibody': 'none'}, 'GSM2535761': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1244', 'samplename': '1gr_413tetr_C40', 'seqsite': 'BRI', 'sampleID': 'S13412', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1244', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C40'}, 'GSM2535760': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1243', 'samplename': '1gr_413tetr_C34', 'seqsite': 'BRI', 'sampleID': 'S13411', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1243', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C34'}, 'GSM2644308': {'replication': 'biological replicate 2', 'type': 'epithelial', 'treatment': 'HCMV-infected'}, 'GSM2204219': {'status': 'ex vivo; unstimulated', 'type': 'LN_EM', 'phenotype': 'EM(CD3+CD20-CD14/CD11c-CD8-CD27-)'}, 'GSM2644300': {'replication': 'biological replicate 2', 'type': 'epithelial', 'treatment': 'HCMV-infected'}, 'GSM2644301': {'replication': 'biological replicate 1', 'type': 'fibroblast', 'treatment': 'mock'}, 'GSM2644302': {'replication': 'biological replicate 2', 'type': 'fibroblast', 'treatment': 'mock'}, 'GSM2644303': {'replication': 'biological replicate 1', 'type': 'fibroblast', 'treatment': 'HCMV-infected'}, 'GSM2644304': {'replication': 'biological replicate 2', 'type': 'fibroblast', 'treatment': 'HCMV-infected'}, 'GSM2644305': {'replication': 'biological replicate 1', 'type': 'epithelial', 'treatment': 'mock'}, 'GSM2644306': {'replication': 'biological replicate 2', 'type': 'epithelial', 'treatment': 'mock'}, 'GSM2644307': {'replication': 'biological replicate 1', 'type': 'epithelial', 'treatment': 'HCMV-infected'}, 'GSM2029291': {'type': 'Heterologous pronuclear transfer embryo 8'}, 'GSM2029290': {'type': 'Heterologous pronuclear transfer embryo 7'}, 'GSM2029293': {'type': 'Heterologous pronuclear transfer embryo 8'}, 'GSM2029292': {'type': 'Heterologous pronuclear transfer embryo 8'}, 'GSM2029295': {'type': 'Heterologous pronuclear transfer embryo 1'}, 'GSM2029294': {'type': 'Heterologous pronuclear transfer embryo 1'}, 'GSM2029297': {'type': 'Heterologous pronuclear transfer embryo 20'}, 'GSM2029296': {'type': 'Heterologous pronuclear transfer embryo 20'}, 'GSM2029299': {'type': 'Heterologous pronuclear transfer embryo 20'}, 'GSM2029298': {'type': 'Heterologous pronuclear transfer embryo 20'}, 'GSM2204213': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2204210': {'status': 'ex vivo; unstimulated', 'type': 'LN_EM', 'phenotype': 'EM(CD3+CD20-CD14/CD11c-CD8-CD27-)'}, 'GSM2204211': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2387340': {'genotype': 'HCT116 with genetic PPARD-KO'}, 'GSM2387341': {'genotype': 'HCT116 with genetic PPARD-KO'}, 'GSM1369187': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Neural Differentation'}, 'GSM2204215': {'status': 'ex vivo; unstimulated', 'type': 'LN_N', 'phenotype': 'Naive(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO-)'}, 'GSM2108514': {'stages': 'mononucleated cell nucleus'}, 'GSM2434064': {'line': 'MDA-MB-231', 'protocol': '1 kPa', 'point': '24 hours'}, 'GSM2108516': {'stages': 'mononucleated cell nucleus'}, 'GSM2108517': {'stages': 'mononucleated cell nucleus'}, 'GSM2108510': {'stages': 'myotube nucleus'}, 'GSM2108511': {'stages': 'myotube nucleus'}, 'GSM2108512': {'stages': 'mononucleated cell nucleus'}, 'GSM2565086': {'construction': 'PLATE-Seq', 'drug': 'Belinostat'}, 'GSM2817702': {'type': 'MIA PACA-2', 'treatment': 'untreated'}, 'GSM2817703': {'type': 'MIA PACA-2', 'treatment': 'untreated'}, 'GSM2817701': {'type': 'MIA PACA-2', 'treatment': 'untreated'}, 'GSM2108518': {'stages': 'mononucleated cell nucleus'}, 'GSM2565085': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin'}, 'GSM2817704': {'type': 'MIA PACA-2', 'treatment': 'untreated'}, 'GSM2817705': {'type': 'MIA PACA-2', 'treatment': 'CM03 6h'}, 'GSM2251339': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2565084': {'construction': 'PLATE-Seq', 'drug': 'Thioguanine'}, 'GSM2251333': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251332': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251331': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251330': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251337': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251336': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251335': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251334': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2312256': {'culture': '12', 'line': 'DCX-'}, 'GSM2816767': {'Sex': 'Male', 'type': 'Primary Human Bronchial/Tracheal Epithelial Cells (HBTEC)', 'passage': '<10'}, 'GSM2312254': {'culture': '12', 'line': 'DCX-'}, 'GSM2312255': {'culture': '12', 'line': 'DCX-'}, 'GSM2312252': {'culture': '12', 'line': 'DCX-'}, 'GSM2312253': {'culture': '12', 'line': 'DCX-'}, 'GSM2312250': {'culture': '12', 'line': 'DCX-'}, 'GSM2312251': {'culture': '12', 'line': 'DCX-'}, 'GSM2153132': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153133': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153130': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153131': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153136': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153137': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2312258': {'culture': '12', 'line': 'DCX-'}, 'GSM2153135': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM1624974': {'line': 'A549', 'tissue': 'lung carcinoma'}, 'GSM1624972': {'line': 'A549', 'tissue': 'lung carcinoma'}, 'GSM1624973': {'line': 'A549', 'tissue': 'lung carcinoma'}, 'GSM1624970': {'line': 'A549', 'tissue': 'lung carcinoma'}, 'GSM1624971': {'line': 'A549', 'tissue': 'lung carcinoma'}, 'GSM1821689': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9500'}, 'GSM2095435': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM1376149': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2392277': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2331840': {'line': 'SQ20B', 'cancer': 'head and neck squamous cell carcinoma'}, 'GSM1166075': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2915389': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM1376146': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2915387': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915386': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915385': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915384': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915383': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915382': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915381': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915380': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2331843': {'line': 'SQ20B', 'cancer': 'head and neck squamous cell carcinoma'}, 'GSM2331844': {'line': 'SQ20B', 'cancer': 'head and neck squamous cell carcinoma'}, 'GSM2616507': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2331845': {'line': 'SQ20B', 'cancer': 'head and neck squamous cell carcinoma'}, 'GSM2616506': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2331846': {'line': 'SQ20B', 'cancer': 'head and neck squamous cell carcinoma'}, 'GSM2816768': {'Sex': 'Male', 'type': 'Primary Human Bronchial/Tracheal Epithelial Cells (HBTEC)', 'passage': '<10'}, 'GSM1957286': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1317641': {'expression': 'miR-424 over-expressed', 'line': 'MCF12A', 'type': 'breast cancer cancer cell line'}, 'GSM1317640': {'expression': 'miR-424 over-expressed', 'line': 'MCF12A', 'type': 'breast cancer cancer cell line'}, 'GSM1166077': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2361711': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361710': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361713': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361712': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361715': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361714': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361717': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361716': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361719': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2616509': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2552857': {'gender': 'male', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'MFN2(R707W)'}, 'GSM2138489': {'line': 'M229AR', 'state': 'Melanoma'}, 'GSM2138488': {'line': 'M406', 'state': 'Melanoma'}, 'GSM2469569': {'status': 'resistant', 'gender': 'male', 'individual': 'r16', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469568': {'status': 'resistant', 'gender': 'male', 'individual': 'r16', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469563': {'status': 'resistant', 'gender': 'male', 'individual': 'r13', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469562': {'status': 'resistant', 'gender': 'male', 'individual': 'r13', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469561': {'status': 'resistant', 'gender': 'male', 'individual': 'r12', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2138482': {'line': 'M410', 'state': 'Melanoma'}, 'GSM2469567': {'status': 'resistant', 'gender': 'male', 'individual': 'r15', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469566': {'status': 'resistant', 'gender': 'male', 'individual': 'r15', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469565': {'status': 'resistant', 'gender': 'male', 'individual': 'r14', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469564': {'status': 'resistant', 'gender': 'male', 'individual': 'r14', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM1939018': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL wild type'}, 'GSM1939019': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL mutant'}, 'GSM1166071': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1939016': {'state': 'renal cell carcinoma', 'type': 'Tumor', 'genotype': 'Tumor'}, 'GSM1939017': {'state': 'renal cell carcinoma', 'type': 'Tumor', 'genotype': 'Tumor'}, 'GSM2411869': {'line': '12022C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2596479': {'state': 'wild type(Corrected)', 'type': 'iPSC-derived macrophage', 'treatment': 'Yes'}, 'GSM1166072': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1104131': {'line': 'TIB-152'}, 'GSM1104130': {'line': 'TIB-152'}, 'GSM1933872': {'status': 'androgen independent (AI)', 'course': 'day 7', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1933873': {'status': 'androgen independent (AI)', 'course': 'day 7', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1933870': {'status': 'androgen dependent (AD)', 'course': 'day 12', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1933871': {'status': 'androgen dependent (AD)', 'course': 'day 12', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1933876': {'status': 'androgen independent (AI)', 'course': 'day 7', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1933877': {'status': 'androgen independent (AI)', 'course': 'day 7', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1933874': {'status': 'androgen independent (AI)', 'course': 'day 7', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1933875': {'status': 'androgen independent (AI)', 'course': 'day 7', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1523636': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1933879': {'status': 'androgen independent (AI)', 'course': 'day 22', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM2053751': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053750': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053752': {'type': 'glioblastoma (Grade IV)'}, 'GSM1166073': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1853594': {'line': 'HeLa', 'treatment': '20nM RRP6/ 20nM DIS3 siRNA - Dharmacon'}, 'GSM2571064': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2527246': {'age': '7 post conception weeks (pcw)', 'type': 'Cultured embryonic lung stalk epithelium', 'number': '1'}, 'GSM2717626': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM2527245': {'age': '7 post conception weeks (pcw)', 'type': 'Cultured embryonic lung stalk epithelium', 'number': '11'}, 'GSM2361522': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2571067': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2527243': {'age': '6 post conception weeks (pcw)', 'type': 'Cultured embryonic lung tip epithelium', 'number': '7'}, 'GSM1509292': {'line': 'Hela'}, 'GSM2607521': {'line': 'WA26'}, 'GSM2551364': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2607523': {'line': 'WA26'}, 'GSM2551366': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2607525': {'line': 'WA26'}, 'GSM2607524': {'line': 'WA26'}, 'GSM2551363': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2607526': {'line': 'WA26'}, 'GSM2607529': {'line': 'WA26'}, 'GSM2607528': {'line': 'WA26'}, 'GSM2571063': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2551369': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551368': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2172078': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172079': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1554642': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554643': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554640': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554641': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554646': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554647': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554644': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554645': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1440503': {'type': 'non-neoplastic brain'}, 'GSM1440502': {'type': 'non-neoplastic brain'}, 'GSM1440501': {'type': 'non-neoplastic brain'}, 'GSM1440500': {'type': 'non-neoplastic brain'}, 'GSM2304733': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2052402': {'differentiation': '0', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052403': {'differentiation': '0', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM1395461': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395460': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2052406': {'differentiation': '4', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052407': {'differentiation': '8', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052404': {'differentiation': '4', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052405': {'differentiation': '4', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052408': {'differentiation': '8', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052409': {'differentiation': '8', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM3594590': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594591': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2544044': {'library_id': 'lib8362', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3594593': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594594': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594595': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594596': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594597': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594598': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594599': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2544048': {'library_id': 'lib8368', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '7.266', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544049': {'library_id': 'lib8369', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '7.266', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2411908': {'line': '1660E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411909': {'line': '1660F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411906': {'line': '1649A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411907': {'line': '1649B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411904': {'line': '1441F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411905': {'line': '1441G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411902': {'line': '1293A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411903': {'line': '1293B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411900': {'line': '12569A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411901': {'line': '12569B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2126068': {'line': 'SK-BR-3', 'treatment': 'scrambled siRNA'}, 'GSM2126069': {'line': '184-hTert', 'treatment': 'CDK12 siRNA-1'}, 'GSM2126064': {'line': 'SK-BR-3', 'treatment': 'CDK12 siRNA-1'}, 'GSM2126065': {'line': 'SK-BR-3', 'treatment': 'CDK12 siRNA-1'}, 'GSM2126066': {'line': 'SK-BR-3', 'treatment': 'scrambled siRNA'}, 'GSM2126067': {'line': 'SK-BR-3', 'treatment': 'scrambled siRNA'}, 'GSM2126063': {'line': 'SK-BR-3', 'treatment': 'CDK12 siRNA-1'}, 'GSM2204630': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204631': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204632': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204633': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204634': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204635': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204636': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204637': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204638': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2141492': {'individual': 'AF171', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2218672': {'line': 'WIBR3', 'medium': 't2i/L+DOX+RI', 'state': 'naive TD'}, 'GSM1538078': {'resection': '23.4', 'id': '5', 'sex': 'F'}, 'GSM1576787': {'status': 'J6/JFH1 Clone2', 'line': 'Huh7.5'}, 'GSM1576786': {'status': 'Mock', 'line': 'Huh7.5'}, 'GSM1576785': {'status': 'Mock', 'line': 'Huh7.5'}, 'GSM1576789': {'status': 'Mock', 'line': 'Huh7.5'}, 'GSM1576788': {'status': 'J6/JFH1 Clone2', 'line': 'Huh7.5'}, 'GSM2486744': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486745': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486746': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486747': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486740': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486741': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486742': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486743': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2284050': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284051': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284052': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284053': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2486748': {'tissue': 'esophageal adenocarcinoma'}, 'GSM1901497': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2284056': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284057': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2746693': {'gender': 'Female', 'pathology': 'FSHD', 'batch': '3'}, 'GSM2746692': {'gender': 'Female', 'pathology': 'FSHD', 'batch': '3'}, 'GSM2454171': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2100270': {'rin': '10', 'Sex': 'Female', 'sspg': '244', 'age': '65', 'bmi': '34', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '987', 'method': 'Life-Tech GITC'}, 'GSM2746695': {'gender': 'Female', 'pathology': 'Control', 'batch': '3'}, 'GSM2746694': {'gender': 'Female', 'pathology': 'Control', 'batch': '3'}, 'GSM2204098': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204099': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204094': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204095': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204096': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204097': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204090': {'model': 'CTG-0771, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204091': {'model': 'CTG-0771, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204092': {'model': 'CTG-0771, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204093': {'model': 'CTG-0771, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM1556368': {'gender': 'male', 'id': 'BJ', 'diagnosis': 'Control'}, 'GSM785393': {'type': 'transitional', 'normal': 'cancer'}, 'GSM1873004': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM1873005': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM1873006': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM1873007': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM1873000': {'infection': 'Uninfected control'}, 'GSM1873001': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM1873002': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM1873003': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM1873008': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM1873009': {'infection': 'M. abscessus Rough (MAB-R)-infected'}, 'GSM785394': {'type': 'transitional', 'normal': 'normal'}, 'GSM2141610': {'individual': 'EU186', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2069848': {'status': 'Alive', 'rnaseq': 'stranded', 'time': 'pre-treatment', 'gender': 'F', 'mapki': 'Y', 'site': 'VIC', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'Flank', 'treatment': 'Pembrolizumab', 'id': 'Pt35', 'braf': 'V600E'}, 'GSM2141612': {'individual': 'EU186', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141613': {'individual': 'EU190', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141614': {'individual': 'EU190', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141615': {'individual': 'EU190', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141616': {'individual': 'EU200', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141617': {'individual': 'EU200', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141618': {'individual': 'EU200', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141619': {'individual': 'EU202', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1649160': {'culture': 'with stromal cells', 'line': 'ALL leukemia cell line REH', 'replicate': '1', 'time': '48 h'}, 'GSM1649161': {'culture': 'with differentiated (A) stromal cells', 'line': 'ALL leukemia cell line REH', 'replicate': '1', 'time': '24 h'}, 'GSM1649162': {'culture': 'with differentiated (O) stromal cells', 'line': 'ALL leukemia cell line REH', 'replicate': '1', 'time': '24 h'}, 'GSM1574784': {'concentration': '6129.7', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Diclofenac', 'conc': '21.042'}, 'GSM1574781': {'concentration': '11441.3', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Compound 10uM', 'conc': '24.712'}, 'GSM1574780': {'concentration': '7552.2', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Compound 10uM', 'conc': '18.336'}, 'GSM1574783': {'concentration': '9357.6', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Diclofenac', 'conc': '20.136'}, 'GSM1574782': {'concentration': '26330.7', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Diclofenac', 'conc': '20.66'}, 'GSM2194488': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2754702': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': '13', 'type': 'Tcells'}, 'GSM2754703': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754700': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0392', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754701': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754706': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_1158', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754707': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_1158', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754704': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754705': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_1158', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754708': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1003', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM2754709': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_1003', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2842506': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2842507': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2842504': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM2842505': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM2130698': {'source': 'prostate', 'line': 'PC3'}, 'GSM2130699': {'source': 'prostate', 'line': 'PC3'}, 'GSM2842500': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM2842501': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM2130694': {'source': 'Lymphoblast-like+prostate', 'line': 'RAJI+PC3'}, 'GSM2130695': {'source': 'Lymphoblast-like+prostate', 'line': 'RAJI+PC3'}, 'GSM2130696': {'source': 'Lymphoblast-like', 'line': 'RAJI'}, 'GSM2130697': {'source': 'Lymphoblast-like', 'line': 'RAJI'}, 'GSM2130692': {'source': 'prostate'}, 'GSM2130693': {'source': 'prostate'}, 'GSM2069846': {'status': 'Alive', 'rnaseq': 'stranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'N', 'site': 'VIC', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'Sigmoid colon', 'treatment': 'Pembrolizumab', 'id': 'Pt31', 'braf': 'V600E'}, 'GSM2069847': {'status': 'Dead', 'rnaseq': 'stranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'Y', 'site': 'VIC', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'Abdominal wall', 'treatment': 'Pembrolizumab', 'id': 'Pt32', 'braf': 'V600E'}, 'GSM2632271': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2158308': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158309': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158300': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158301': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158302': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158303': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158304': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158305': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158306': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158307': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM1964906': {'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'Infected cells were selected with puromycin (1mg/mL) for 5 days', 'infection': 'Scrambled control shRNA_2'}, 'GSM1700785': {'antibody': 'c-Jun Antibody (H-79) from Santa Cruz Biotechnology', 'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM2881033': {'donor': 'Donor_4', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM1700786': {'antibody': 'c-Jun Antibody (H-79) from Santa Cruz Biotechnology', 'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM2881031': {'donor': 'Donor_4', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2881030': {'donor': 'Donor_4', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2188228': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'JQ1'}, 'GSM2188229': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'JQ1'}, 'GSM2188222': {'protocol': 'undifferentiated', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'DMSO'}, 'GSM2188223': {'protocol': 'undifferentiated', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'DMSO'}, 'GSM2188220': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siCNTR'}, 'GSM2188221': {'protocol': 'undifferentiated', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'DMSO'}, 'GSM2188226': {'protocol': 'undifferentiated', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siCNTR'}, 'GSM2188227': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'JQ1'}, 'GSM2188224': {'protocol': 'undifferentiated', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siCNTR'}, 'GSM2188225': {'protocol': 'undifferentiated', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siCNTR'}, 'GSM1466842': {'line': 'H9', 'antibody': 'Pol II Santa cruz (N20)'}, 'GSM1466840': {'line': 'H9', 'antibody': 'BRD3 Bethyl (A302-368A)'}, 'GSM1466841': {'line': 'H9', 'antibody': 'Pol II Santa cruz (N20)'}, 'GSM2889031': {'tissue': 'pancreatic islets'}, 'GSM1700783': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM907549': {'gender': 'M', 'age': '66', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907548': {'gender': 'M', 'age': '64', 'histologics': 'Diffuse', 'Stage': 'IV'}, 'GSM2130413': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM907541': {'gender': 'F', 'age': '60', 'histologics': 'Mixed', 'Stage': 'IV'}, 'GSM907540': {'gender': 'M', 'age': '56', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907543': {'gender': 'M', 'age': '52', 'histologics': 'unknown', 'Stage': 'II'}, 'GSM907542': {'gender': 'M', 'age': '69', 'histologics': 'Diffuse', 'Stage': 'IV'}, 'GSM907545': {'gender': 'F', 'age': '73', 'histologics': 'Intestine', 'Stage': 'III'}, 'GSM907544': {'gender': 'F', 'age': '32', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907547': {'gender': 'M', 'age': '66', 'histologics': 'Intestine', 'Stage': 'II'}, 'GSM907546': {'gender': 'F', 'age': '66', 'histologics': 'Diffuse', 'Stage': 'I'}, 'GSM2871643': {'tissue': 'ankle', 'stage': '2-18 y/o'}, 'GSM2871642': {'tissue': 'Knee', 'stage': '2-18 y/o'}, 'GSM2871641': {'tissue': 'hind limb bud', 'stage': '6 wks'}, 'GSM2871640': {'tissue': 'hind limb bud', 'stage': '6 wks'}, 'GSM2871647': {'tissue': 'Knee', 'stage': '18-60 y/o'}, 'GSM2871646': {'tissue': 'Knee', 'stage': '18-60 y/o'}, 'GSM2871645': {'tissue': 'Knee', 'stage': '18-60 y/o'}, 'GSM2871644': {'tissue': 'Knee', 'stage': '2-18 y/o'}, 'GSM1364034': {'type': 'TRA-1-60(+) cells on day 15'}, 'GSM2871649': {'tissue': 'ESC-H9', 'stage': '14 day differentiation'}, 'GSM2871648': {'tissue': 'ESC-H9', 'stage': '14 day differentiation'}, 'GSM2130417': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM2889039': {'tissue': 'pancreatic islets'}, 'GSM2889038': {'tissue': 'pancreatic islets'}, 'GSM2265671': {'antibody': 'H3K27ac (CST, 8173)', 'type': 'Colon cancer ectopically expressing H3.3K27M'}, 'GSM1655577': {'line': 'HFF', 'treatment': 'Bub3 siRNA transfection for 48 h'}, 'GSM2265673': {'antibody': 'H3K27M (Millipore, ABE419)', 'type': 'Colon cancer ectopically expressing H3.3K27M'}, 'GSM2265672': {'antibody': 'H3K27ac (CST, 8173)', 'type': 'Colon cancer ectopically expressing H3.3K27M (expression inhibited by doxyxyclin withdrawal)'}, 'GSM2265675': {'antibody': 'none', 'type': 'Colon cancer'}, 'GSM2265674': {'antibody': 'H3K27M (Millipore, ABE419)', 'type': 'Colon cancer ectopically expressing H3.3K27M (expression inhibited by doxyxyclin withdrawal)'}, 'GSM2265677': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '6h'}, 'GSM2265676': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '3h'}, 'GSM2265679': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '24h'}, 'GSM2265678': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '12h'}, 'GSM1655578': {'line': 'HFF', 'treatment': 'Bub3 siRNA transfection for 48 h'}, 'GSM1655579': {'line': 'HFF', 'treatment': 'BuGZ siRNA transfection for 48 h'}, 'GSM2284054': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2037128': {'type': 'HUVEC', 'experiment': 'experiment 1', 'run': '1st Run', 'condition': 'Normoxia_24h'}, 'GSM2778479': {'type': 'none', 'treatment': 'none'}, 'GSM2902789': {'replicate': '3', 'treatment': 'pU/UC', 'point': '16h'}, 'GSM2902788': {'replicate': '2', 'treatment': 'pU/UC', 'point': '16h'}, 'GSM2902787': {'replicate': '1', 'treatment': 'pU/UC', 'point': '16h'}, 'GSM2902786': {'replicate': '3', 'treatment': 'noRNA', 'point': '6h'}, 'GSM2902785': {'replicate': '2', 'treatment': 'noRNA', 'point': '6h'}, 'GSM2902784': {'replicate': '1', 'treatment': 'noRNA', 'point': '6h'}, 'GSM2902783': {'replicate': '3', 'treatment': 'noRNA', 'point': '16h'}, 'GSM2902782': {'replicate': '2', 'treatment': 'noRNA', 'point': '16h'}, 'GSM2902781': {'replicate': '1', 'treatment': 'noRNA', 'point': '16h'}, 'GSM1479550': {'index': '8', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '55', 'collectiondate': 'August 23 2012', 'samplename': '55_CD4T', 'celltype': 'CD4', 'diseasestatus': 'MS pretreatment'}, 'GSM1915629': {'donorid': 'SU070', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1274122': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line', 'treatment': 'RON and MSP'}, 'GSM2037129': {'type': 'HUVEC', 'experiment': 'experiment 1', 'run': '1st Run', 'condition': 'Normoxia_24h'}, 'GSM2137714': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib Treated'}, 'GSM2275146': {'area_under_the_curve': '0.106075156', 'siteandparticipantcode': '642173', 'baseline_area_under_the_curve': '0.435523594', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '24.35577722', 'auc_percent_of_baseline': '24.35577722', 'trunkbarcode': '953125', 'sampleID': 'S13156', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1564', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_642173', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib1564', 'studysiteshort': 'BRI-VM'}, 'GSM1963833': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2275144': {'area_under_the_curve': '0.308036875', 'siteandparticipantcode': '555647', 'baseline_area_under_the_curve': '0.847411719', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '36.35032042', 'auc_percent_of_baseline': '36.35032042', 'trunkbarcode': '948696', 'sampleID': 'S13154', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1562', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'Control', 'name': 'AbATE_555647', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib1562', 'studysiteshort': 'BRI-VM'}, 'GSM2275145': {'area_under_the_curve': '0.351946094', 'siteandparticipantcode': '785228', 'baseline_area_under_the_curve': '0.578939688', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '60.79149544', 'auc_percent_of_baseline': '60.79149544', 'trunkbarcode': '947554', 'sampleID': 'S13155', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1563', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_785228', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1563', 'studysiteshort': 'BRI-VM'}, 'GSM2275142': {'area_under_the_curve': '0.25859375', 'siteandparticipantcode': '289534', 'baseline_area_under_the_curve': '0.818449219', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '31.59557662', 'auc_percent_of_baseline': '31.59557662', 'trunkbarcode': '947553', 'sampleID': 'S13152', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1560', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_289534', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib1560', 'studysiteshort': 'BRI-VM'}, 'GSM2275143': {'area_under_the_curve': '0.131365625', 'siteandparticipantcode': '214040', 'baseline_area_under_the_curve': '0.782711563', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '16.78340161', 'auc_percent_of_baseline': '16.78340161', 'trunkbarcode': '948695', 'sampleID': 'S13153', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1561', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_214040', 'gender': 'Female', 'age': '10', 'race': 'American Indian or Alaska Native; White', 'libraryid': 'lib1561', 'studysiteshort': 'BRI-VM'}, 'GSM2275140': {'area_under_the_curve': '0.646122344', 'siteandparticipantcode': '800847', 'baseline_area_under_the_curve': '0.776763906', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '83.18130368', 'auc_percent_of_baseline': '83.18130368', 'trunkbarcode': '948324', 'sampleID': 'S13150', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1558', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_800847', 'gender': 'Male', 'age': '10', 'race': 'White', 'libraryid': 'lib1558', 'studysiteshort': 'COLORADO'}, 'GSM2275141': {'area_under_the_curve': '1.018807656', 'siteandparticipantcode': '770569', 'baseline_area_under_the_curve': '1.236491875', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '82.39501422', 'auc_percent_of_baseline': '82.39501422', 'trunkbarcode': '946465', 'sampleID': 'S13151', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1559', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_770569', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1559', 'studysiteshort': 'BRI-VM'}, 'GSM1658375': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM2275148': {'area_under_the_curve': '0.959796563', 'siteandparticipantcode': '666079', 'baseline_area_under_the_curve': '0.789331563', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '121.5961211', 'auc_percent_of_baseline': '121.5961211', 'trunkbarcode': '928876', 'sampleID': 'S13158', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1566', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_666079', 'gender': 'Male', 'age': '16', 'race': 'White; American Indian or Alaska Native', 'libraryid': 'lib1566', 'studysiteshort': 'PNRI'}, 'GSM2275149': {'area_under_the_curve': '0.068010156', 'siteandparticipantcode': '693516', 'baseline_area_under_the_curve': '0.498775625', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '13.63542099', 'auc_percent_of_baseline': '13.63542099', 'trunkbarcode': '928877', 'sampleID': 'S13159', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1567', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_693516', 'gender': 'Male', 'age': '15', 'race': 'White', 'libraryid': 'lib1567', 'studysiteshort': 'PNRI'}, 'GSM2071856': {'type': 'breast cancer'}, 'GSM2137715': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib Treated'}, 'GSM2071854': {'type': 'breast cancer'}, 'GSM2071855': {'type': 'breast cancer'}, 'GSM2071852': {'type': 'breast cancer'}, 'GSM2071853': {'type': 'breast cancer'}, 'GSM2071850': {'type': 'breast cancer'}, 'GSM2071851': {'type': 'breast cancer'}, 'GSM1963837': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2071858': {'type': 'breast cancer'}, 'GSM1963836': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963835': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2137716': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'AZ1366 Treated'}, 'GSM1273824': {'subtype': 'rRNA depleted total RNA', 'tissue': 'whole semen', 'phenotype': 'Normozoospermic'}, 'GSM1273825': {'subtype': 'rRNA depleted total RNA', 'tissue': 'whole semen', 'phenotype': 'Normozoospermic'}, 'GSM3190727': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.797415'}, 'GSM3190726': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.642649'}, 'GSM3190725': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.637053'}, 'GSM2187264': {'antibody': 'H3K4me3 (Millipore, 07-473, lot 2664283), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shJARID1D'}, 'GSM2278048': {'line': 'MDA-MB-468', 'type': 'MDA-MB-468 (Human adenocarcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278049': {'line': 'MDA-MB-468', 'type': 'MDA-MB-468 (Human adenocarcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM3190721': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '3.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.544697'}, 'GSM3190720': {'boca': 'Yes', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '3.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.531634'}, 'GSM2278044': {'line': 'MDA-MB-157', 'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278045': {'line': 'MDA-MB-157', 'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278046': {'line': 'MDA-MB-157', 'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278047': {'line': 'MDA-MB-157', 'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278040': {'line': 'HCC1143', 'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278041': {'line': 'HCC1143', 'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278042': {'line': 'MDA-MB-157', 'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM3190728': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.624024'}, 'GSM2790169': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'control'}, 'GSM2394449': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siERG, control, 4h', 'passage': '6 to 10'}, 'GSM2730063': {'with': 'FGF13 siRNAs', 'line': 'H460', 'type': 'Non-small cell lung cancer cell line (NSCLC)'}, 'GSM1846918': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM2069849': {'status': 'Alive', 'rnaseq': 'stranded', 'time': 'pre-treatment', 'gender': 'F', 'mapki': 'Y', 'site': 'VIC', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'Small bowel', 'treatment': 'Pembrolizumab', 'id': 'Pt37', 'braf': 'K483T, D594N'}, 'GSM1963921': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1704855': {'origin': 'fibroblast', 'type': 'mesoderm differentiated cells', 'description': 'Mesodermal differentiated iPSC'}, 'GSM1963923': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963922': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963925': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963924': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963927': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963926': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963929': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963928': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1704858': {'origin': 'cord blood', 'type': 'mesoderm differentiated cells', 'description': 'Mesodermal differentiated iPSC'}, 'GSM2840186': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM3190791': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.648011'}, 'GSM2816769': {'Sex': 'Male', 'type': 'Primary Human Bronchial/Tracheal Epithelial Cells (HBTEC)', 'passage': '<10'}, 'GSM1508001': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM2840187': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1508003': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508002': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508005': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508004': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508007': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508006': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508009': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508008': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1933883': {'status': 'androgen independent (AI)', 'course': 'day 22', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1277020': {'type': 'ER32 IMR90', 'treatment': 'ethanol'}, 'GSM2252632': {'line': 'U2OS', 'type': 'Osteosarcoma', 'treatment': '0.2μM Paclitaxel for 8 hours'}, 'GSM2840188': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1933882': {'status': 'androgen independent (AI)', 'course': 'day 22', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM2679479': {'line': 'BLCL (165)'}, 'GSM2840189': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1697493': {'line': 'HAP1', 'treatment': '2 mM histidinol, 24 hours', 'variation': 'ATF4 KO'}, 'GSM1697492': {'line': 'HAP1', 'treatment': '2 mM histidinol, 24 hours', 'variation': 'WT'}, 'GSM1697491': {'line': 'HAP1', 'treatment': 'untreated', 'variation': 'ATF4 KO'}, 'GSM1697490': {'line': 'HAP1', 'treatment': 'untreated', 'variation': 'WT'}, 'GSM2348468': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348469': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348462': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348463': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348460': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348461': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348466': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348467': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348464': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348465': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2179767': {'condition': 'Tissue Culture Polystyrene', 'donro': 'Donor A'}, 'GSM1308331': {'line': 'MDA-MB-435S', 'type': 'Breast cancer'}, 'GSM1308330': {'line': 'MCF-7', 'type': 'Breast cancer'}, 'GSM2179769': {'condition': 'Tissue Culture Polystyrene', 'donro': 'Donor B'}, 'GSM2179768': {'condition': 'Peptide Hydrogel Puramatrix', 'donro': 'Donor A'}, 'GSM2307188': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307189': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM1523648': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM2307180': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307181': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307182': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307183': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307184': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307185': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307186': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307187': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1960278': {'derivative': 'PC9 gefitinib-tolerant', 'line': 'PC9 NSCLC cell line', 'treatment': 'Gefitinib'}, 'GSM1960279': {'derivative': 'PC9 gefitinib-tolerant', 'line': 'PC9 NSCLC cell line', 'treatment': 'Gefitinib'}, 'GSM1960270': {'derivative': 'PC9-GR2', 'line': 'PC9 NSCLC cell line', 'treatment': 'WZ4002'}, 'GSM1960271': {'derivative': 'PC9-GR2', 'line': 'PC9 NSCLC cell line', 'treatment': 'WZ4002'}, 'GSM1960272': {'derivative': 'PC9-GR3', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM1960273': {'derivative': 'PC9-GR3', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM1960274': {'derivative': 'PC9-GR3', 'line': 'PC9 NSCLC cell line', 'treatment': 'WZ4002'}, 'GSM1960275': {'derivative': 'PC9-GR3', 'line': 'PC9 NSCLC cell line', 'treatment': 'WZ4002'}, 'GSM1960276': {'derivative': 'PC9 gefitinib-tolerant', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM1960277': {'derivative': 'PC9 gefitinib-tolerant', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM2396995': {'cell': 'Fetal fibroblast', 'source': 'HFL1 (ATCC-CCL-153), obtained from the American Type Culture Collection (ATCC)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE'}, 'GSM2396994': {'cell': 'Fetal fibroblast', 'source': 'HFL1 (ATCC-CCL-153), obtained from the American Type Culture Collection (ATCC)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE'}, 'GSM2396996': {'cell': 'Fetal fibroblast', 'source': 'HFL1 (ATCC-CCL-153), obtained from the American Type Culture Collection (ATCC)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE'}, 'GSM2396991': {'cell': 'Fetal fibroblast', 'source': 'HFL1 (ATCC-CCL-153), obtained from the American Type Culture Collection (ATCC)', 'vector': 'none'}, 'GSM2396990': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE + u6.shRNA-REST.WPRE'}, 'GSM2396993': {'cell': 'Fetal fibroblast', 'source': 'HFL1 (ATCC-CCL-153), obtained from the American Type Culture Collection (ATCC)', 'vector': 'none'}, 'GSM2396992': {'cell': 'Fetal fibroblast', 'source': 'HFL1 (ATCC-CCL-153), obtained from the American Type Culture Collection (ATCC)', 'vector': 'none'}, 'GSM1425775': {'grade': 'Sarcomatoid', 'pretreatment': 'None', 'type': 'S', 'Stage': 'IV'}, 'GSM1425774': {'grade': 'Epithelioid', 'pretreatment': 'None', 'type': 'E', 'Stage': 'IV'}, 'GSM1425777': {'grade': 'Sarcomatoid', 'pretreatment': 'None', 'type': 'S', 'Stage': 'III'}, 'GSM1425776': {'grade': 'Epithelioid', 'pretreatment': 'None', 'type': 'E', 'Stage': 'IV'}, 'GSM1425771': {'grade': 'Sarcomatoid', 'pretreatment': 'None', 'type': 'S', 'Stage': 'IV'}, 'GSM1425770': {'grade': 'Epithelioid', 'pretreatment': 'Sutent', 'type': 'E', 'Stage': 'IV'}, 'GSM1425773': {'grade': 'Rhabdoid', 'pretreatment': 'None', 'type': 'R', 'Stage': 'IV'}, 'GSM1425772': {'grade': 'Epithelioid', 'pretreatment': 'None', 'type': 'E', 'Stage': 'IV'}, 'GSM2035748': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035749': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035742': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035743': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035740': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035741': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035746': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035747': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035744': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035745': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2112665': {'culture': 'cerebral organoids', 'time': '54 days from the beginning of organoid culture'}, 'GSM2112664': {'culture': 'cerebral organoids', 'time': '40 days from the beginning of organoid culture'}, 'GSM2112667': {'culture': 'cerebral organoids', 'time': '54 days from the beginning of organoid culture'}, 'GSM2112666': {'culture': 'cerebral organoids', 'time': '54 days from the beginning of organoid culture'}, 'GSM2112661': {'culture': 'cerebral organoids', 'time': '40 days from the beginning of organoid culture'}, 'GSM2112660': {'culture': 'cerebral organoids', 'time': '40 days from the beginning of organoid culture'}, 'GSM2112663': {'culture': 'cerebral organoids', 'time': '40 days from the beginning of organoid culture'}, 'GSM2112662': {'culture': 'cerebral organoids', 'time': '40 days from the beginning of organoid culture'}, 'GSM2112669': {'culture': 'cerebral organoids', 'time': '54 days from the beginning of organoid culture'}, 'GSM2112668': {'culture': 'cerebral organoids', 'time': '54 days from the beginning of organoid culture'}, 'GSM2113398': {'with': 'non-targeting siRNA', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113399': {'with': 'non-targeting siRNA', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113396': {'with': 'Lipofecatmine', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113397': {'with': 'Lipofecatmine', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113395': {'with': 'Lipofecatmine', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2391077': {'disease': 'Chronic Pancreatitis'}, 'GSM2391076': {'disease': 'Chronic Pancreatitis'}, 'GSM2391075': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391074': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391073': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391072': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391071': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391070': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391079': {'disease': 'NSCLC'}, 'GSM2391078': {'disease': 'NSCLC'}, 'GSM1234168': {'replicate': '2', 'line': '2588', 'antibody': 'H3K27me3'}, 'GSM1695855': {'tissue': 'Bone marrow', 'markers': 'CD34+CD38+CD10+CD45RA+linneg'}, 'GSM1234169': {'replicate': '1', 'line': '2588', 'antibody': 'H3K36me3'}, 'GSM1980467': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1955779': {'a': '53653', 'cd38': '247', 'cd49f': '868', 'w': '68095', 'h': '51637', 'lin': '-171', 'cd34': '6128', 'cd90': '7659', 'cd7': '-105', 'cd10': '1002', 'time': '18388', 'cd135': '4458', 'cd45ra': '386'}, 'GSM1955778': {'a': '50069', 'cd38': '315', 'cd49f': '698', 'w': '67571', 'h': '48561', 'lin': '856', 'cd34': '8901', 'cd90': '4290', 'cd7': '-188', 'cd10': '1255', 'time': '18186', 'cd135': '2368', 'cd45ra': '209'}, 'GSM1980466': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1955775': {'a': '57672', 'cd38': '696', 'cd49f': '235', 'w': '67123', 'h': '56308', 'lin': '1063', 'cd34': '11831', 'cd90': '8158', 'cd7': '588', 'cd10': '228', 'time': '17519', 'cd135': '5244', 'cd45ra': '315'}, 'GSM1955774': {'a': '55030', 'cd38': '1146', 'cd49f': '951', 'w': '67672', 'h': '53293', 'lin': '281', 'cd34': '8162', 'cd90': '1496', 'cd7': '-340', 'cd10': '700', 'time': '17296', 'cd135': '645', 'cd45ra': '57'}, 'GSM1955777': {'a': '46215', 'cd38': '528', 'cd49f': '346', 'w': '66841', 'h': '45313', 'lin': '172', 'cd34': '3375', 'cd90': '713', 'cd7': '253', 'cd10': '109', 'time': '17992', 'cd135': '488', 'cd45ra': '295'}, 'GSM1955776': {'a': '69604', 'cd38': '628', 'cd49f': '976', 'w': '69341', 'h': '65784', 'lin': '-245', 'cd34': '3698', 'cd90': '5250', 'cd7': '127', 'cd10': '898', 'time': '17766', 'cd135': '4868', 'cd45ra': '615'}, 'GSM1955771': {'a': '54711', 'cd38': '976', 'cd49f': '423', 'w': '69144', 'h': '51856', 'lin': '-88', 'cd34': '4836', 'cd90': '102', 'cd7': '319', 'cd10': '836', 'time': '14725', 'cd135': '1115', 'cd45ra': '3059'}, 'GSM1955770': {'a': '51153', 'cd38': '374', 'cd49f': '850', 'w': '68545', 'h': '48908', 'lin': '-267', 'cd34': '9800', 'cd90': '3017', 'cd7': '18', 'cd10': '473', 'time': '14916', 'cd135': '3234', 'cd45ra': '1948'}, 'GSM1955773': {'a': '46895', 'cd38': '162', 'cd49f': '1383', 'w': '67017', 'h': '45859', 'lin': '490', 'cd34': '9005', 'cd90': '2510', 'cd7': '-25', 'cd10': '922', 'time': '17046', 'cd135': '1327', 'cd45ra': '171'}, 'GSM1955772': {'a': '73525', 'cd38': '667', 'cd49f': '1440', 'w': '64971', 'h': '74165', 'lin': '257', 'cd34': '7991', 'cd90': '832', 'cd7': '247', 'cd10': '3020', 'time': '14529', 'cd135': '7816', 'cd45ra': '2840'}, 'GSM1704036': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'D-001206-14-05'}, 'GSM1704037': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'D-001206-14-05'}, 'GSM1704034': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'D-001206-14-05'}, 'GSM1704035': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'D-001206-14-05'}, 'GSM1704032': {'vendor': 'Life Technologies', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': '4392420-s47042'}, 'GSM1704033': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'D-001206-14-05'}, 'GSM1704030': {'vendor': 'Life Technologies', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': '4392420-s47042'}, 'GSM1704031': {'vendor': 'Life Technologies', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': '4392420-s47042'}, 'GSM1704038': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'D-001206-14-05'}, 'GSM2312145': {'culture': '12', 'line': 'DCX-'}, 'GSM2610909': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610908': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2898871': {'line': 'NA19257', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898870': {'line': 'NA19160', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM1922953': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': '4 day 1 µM dasatinib, 4 day 1.5 µM GSKJ4'}, 'GSM1862664': {'line': 'Jeu_3', 'condition': 'hypoxic', 'Stage': '4h'}, 'GSM2214010': {'from': 'human induced pluripotent stem cells', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM2610901': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610900': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2309484': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'CYT387', 'dose': '30 uM'}, 'GSM1957125': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2610778': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610779': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610774': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610775': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610776': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610777': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610770': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610771': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610772': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610773': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2095427': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM1354578': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM S-equol', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354579': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM S-equol', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354576': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM liquiritigenin', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354577': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM liquiritigenin', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354574': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM S-equol', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354575': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM S-equol', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354572': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM genistein', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354573': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM genistein', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354570': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': '10 nM E2', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354571': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': '10 nM E2', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1956082': {'a': '54628', 'cd38': '756', 'cd49f': '470', 'w': '67609', 'h': '52953', 'lin': '186', 'cd34': '5916', 'cd90': '954', 'cd7': '291', 'cd10': '531', 'time': '19849', 'cd135': '860', 'cd45ra': '206'}, 'GSM1956083': {'a': '55484', 'cd38': '727', 'cd49f': '557', 'w': '67825', 'h': '53611', 'lin': '237', 'cd34': '6551', 'cd90': '618', 'cd7': '-167', 'cd10': '1079', 'time': '19590', 'cd135': '5994', 'cd45ra': '869'}, 'GSM1956080': {'a': '61954', 'cd38': '389', 'cd49f': '973', 'w': '66955', 'h': '60641', 'lin': '395', 'cd34': '8283', 'cd90': '2047', 'cd7': '456', 'cd10': '604', 'time': '20302', 'cd135': '3977', 'cd45ra': '114'}, 'GSM1956081': {'a': '61599', 'cd38': '551', 'cd49f': '803', 'w': '65365', 'h': '61760', 'lin': '51', 'cd34': '6301', 'cd90': '3376', 'cd7': '-180', 'cd10': '14697', 'time': '20083', 'cd135': '2295', 'cd45ra': '7542'}, 'GSM1956086': {'a': '50447', 'cd38': '723', 'cd49f': '560', 'w': '68613', 'h': '48185', 'lin': '147', 'cd34': '9863', 'cd90': '1134', 'cd7': '170', 'cd10': '541', 'time': '2101', 'cd135': '4380', 'cd45ra': '138'}, 'GSM1956087': {'a': '62210', 'cd38': '539', 'cd49f': '681', 'w': '65090', 'h': '62636', 'lin': '229', 'cd34': '4841', 'cd90': '85', 'cd7': '-69', 'cd10': '1182', 'time': '2301', 'cd135': '5172', 'cd45ra': '4345'}, 'GSM1956084': {'a': '57162', 'cd38': '399', 'cd49f': '344', 'w': '67836', 'h': '55224', 'lin': '1484', 'cd34': '8031', 'cd90': '8062', 'cd7': '538', 'cd10': '720', 'time': '19371', 'cd135': '3789', 'cd45ra': '358'}, 'GSM1956085': {'a': '63157', 'cd38': '785', 'cd49f': '404', 'w': '64734', 'h': '63940', 'lin': '-273', 'cd34': '6952', 'cd90': '2222', 'cd7': '517', 'cd10': '241', 'time': '1865', 'cd135': '3971', 'cd45ra': '1684'}, 'GSM1956088': {'a': '52618', 'cd38': '23', 'cd49f': '25147', 'w': '67508', 'h': '51081', 'lin': '-222', 'cd34': '3151', 'cd90': '-105', 'cd7': '242', 'cd10': '17', 'time': '2529', 'cd135': '264', 'cd45ra': '115'}, 'GSM1956089': {'a': '60306', 'cd38': '1118', 'cd49f': '736', 'w': '67669', 'h': '58405', 'lin': '126', 'cd34': '4912', 'cd90': '828', 'cd7': '-89', 'cd10': '852', 'time': '2770', 'cd135': '3793', 'cd45ra': '3575'}, 'GSM2742749': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve'}, 'GSM2742748': {'type': 'immortalized human keratinocytes', 'treatment': 'single'}, 'GSM1481566': {'subtype': 'small RNA', 'line': 'U87MG', 'passages': '7', 'with': ': ADAR1E912A'}, 'GSM1481567': {'subtype': 'small RNA', 'line': 'U87MG', 'passages': '7', 'with': ': ADAR1E912A'}, 'GSM2742747': {'type': 'immortalized human keratinocytes', 'treatment': 'single'}, 'GSM2742746': {'type': 'immortalized human keratinocytes', 'treatment': 'single'}, 'GSM2802964': {'line': 'hMSC-TERT4', 'variation': 'siControl', 'stage': 'D0'}, 'GSM2802965': {'line': 'hMSC-TERT4', 'variation': 'siControl', 'stage': 'D1'}, 'GSM2802966': {'line': 'hMSC-TERT4', 'variation': 'siControl', 'stage': 'D1'}, 'GSM2802967': {'line': 'hMSC-TERT4', 'variation': 'siControl', 'stage': 'D7'}, 'GSM2802960': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D14'}, 'GSM2802961': {'line': 'hMSC-TERT4', 'stage': 'D0'}, 'GSM2802962': {'line': 'hMSC-TERT4', 'stage': 'D1'}, 'GSM2802963': {'line': 'hMSC-TERT4', 'variation': 'siControl', 'stage': 'D0'}, 'GSM2526786': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2802969': {'line': 'hMSC-TERT4', 'variation': 'siHSF1', 'stage': 'D0'}, 'GSM2420335': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420334': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420337': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420336': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420331': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420333': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420332': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420339': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420338': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2029318': {'type': 'Control embryo c'}, 'GSM2029319': {'type': 'Control embryo g'}, 'GSM2029314': {'type': 'Control embryo e'}, 'GSM2029315': {'type': 'Control embryo e'}, 'GSM2029316': {'type': 'Control embryo f'}, 'GSM2029317': {'type': 'Control embryo c'}, 'GSM2029310': {'type': 'Heterologous pronuclear transfer embryo 27'}, 'GSM2029311': {'type': 'Heterologous pronuclear transfer embryo 27'}, 'GSM2029312': {'type': 'Control embryo d'}, 'GSM2029313': {'type': 'Control embryo e'}, 'GSM2285790': {'status': 'healthy volunteer', 'gender': 'female', 'age': '58', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1659029': {'patient': 'Brx-11'}, 'GSM2565010': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2348715': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348716': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348717': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348710': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348711': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348712': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2248200': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2285793': {'status': 'healthy volunteer', 'gender': 'female', 'age': '64', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1695859': {'tissue': 'Thymus', 'markers': 'CD34+CD7neg CD1aneg CD4negCD8neg'}, 'GSM2649754': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649755': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649756': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649757': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649750': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649751': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649752': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649753': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649758': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649759': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM3711623': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '11'}, 'GSM1695858': {'tissue': 'Thymus', 'markers': 'CD34+CD7neg CD1aneg CD4negCD8neg'}, 'GSM2350347': {'tissue': 'Blood', 'type': 'BDCA-1+DCs'}, 'GSM2182787': {'used': 'GATC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182786': {'used': 'CGTA', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182785': {'used': 'TACG', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182784': {'used': 'AGTC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182783': {'used': 'TGCA', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182782': {'used': 'AGCT', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182781': {'used': 'CTGA, TGAC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182780': {'used': 'ACTG, GTCA', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2350349': {'tissue': 'Blood', 'type': 'BDCA-1+DCs'}, 'GSM2995488': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995489': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995480': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995481': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995482': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995483': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995484': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995485': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995486': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995487': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2153470': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1558382': {'conditions': 'MPEC', 'line': 'HUES8', 'type': 'sorted Pdx1-EGFP+ pancreatic progenitors derived from Pdx1-EGFP HUES8'}, 'GSM1558381': {'conditions': 'none/before', 'line': 'HUES8', 'type': 'sorted Pdx1-EGFP+ pancreatic progenitors derived from Pdx1-EGFP HUES8'}, 'GSM1558380': {'conditions': 'BJ', 'line': 'HUES8', 'type': 'sorted Pdx1-EGFP+ pancreatic progenitors derived from Pdx1-EGFP HUES8'}, 'GSM2361698': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361699': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2303615': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2361694': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361695': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361696': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361697': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361690': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361691': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361692': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361693': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2303617': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM3190620': {'boca': 'Yes', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.146577'}, 'GSM3190621': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C27', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.535287'}, 'GSM2040326': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2307239': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2040327': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM3190628': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.342704'}, 'GSM3190629': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A47', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.306179'}, 'GSM442020': {'type': 'Cervical cancer cell line', 'line': 'HeLa', 'replicate': '2', 'treatment': 'EGF'}, 'GSM442021': {'type': 'Cervical cancer cell line', 'line': 'HeLa', 'replicate': '3', 'treatment': 'EGF'}, 'GSM2741464': {'strain': 'T47D CRISPR control (CRctrl) cells', 'passages': '<10'}, 'GSM2741461': {'strain': 'T47D wt/R330fsl tumors', 'passages': '7 weeks'}, 'GSM2741460': {'strain': 'T47D wt/R330fsl tumors', 'passages': '7 weeks'}, 'GSM2741463': {'strain': 'T47D CRISPR control (CRctrl) cells', 'passages': '<10'}, 'GSM2741462': {'strain': 'T47D CRISPR control (CRctrl) cells', 'passages': '<10'}, 'GSM2047615': {'well': 'A02', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047614': {'well': 'A01', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047617': {'well': 'A04', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047616': {'well': 'A03', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047611': {'well': 'H11', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047610': {'well': 'H10', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047613': {'well': 'bulk', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047612': {'well': 'H12', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047619': {'well': 'A06', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047618': {'well': 'A05', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1972976': {'line': 'HUES8', 'type': 'ESCs', 'variation': 'wild type'}, 'GSM1972977': {'line': 'HUES8', 'type': 'ESCs', 'variation': 'wild type'}, 'GSM1972978': {'line': 'HUES8', 'type': 'ESCs', 'variation': 'GATA6-/+'}, 'GSM1972979': {'line': 'HUES8', 'type': 'ESCs', 'variation': 'GATA6-/+'}, 'GSM602557': {'tissue': 'kidney normal'}, 'GSM2100161': {'rin': '8.5', 'Sex': 'Female', 'sspg': '48', 'age': '58', 'bmi': '26', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Hispanic', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '553', 'method': 'Qiagen:trizol'}, 'GSM2451002': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451001': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100162': {'rin': '8', 'Sex': 'Female', 'sspg': '48', 'age': '58', 'bmi': '26', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Hispanic', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '553', 'method': 'Qiagen:trizol'}, 'GSM2451007': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100164': {'rin': '9.3', 'Sex': 'Female', 'sspg': '171', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '29', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '41', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '558', 'method': 'Life-Tech GITC'}, 'GSM2100167': {'rin': '8.9', 'Sex': 'Male', 'sspg': '260', 'age': '61', 'bmi': '33.2', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '589', 'method': 'Life-Tech GITC'}, 'GSM2100166': {'rin': '10', 'Sex': 'Female', 'sspg': '171', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '29', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '41', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '558', 'method': 'Life-Tech GITC'}, 'GSM2100169': {'rin': '9.6', 'Sex': 'Male', 'sspg': '260', 'age': '61', 'bmi': '33.2', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '589', 'method': 'Life-Tech GITC'}, 'GSM2100168': {'rin': '10', 'Sex': 'Male', 'sspg': '260', 'age': '61', 'bmi': '33.2', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '589', 'method': 'Life-Tech GITC'}, 'GSM2451009': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451008': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM618489': {'status': 'ETV1+', 'name': 'LNCaP CDS3', 'site': 'Lymph node', 'state': 'cancer', 'line': 'LNCaP CDS3', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618488': {'status': 'ETV1+', 'name': 'LNCaP CDS2', 'site': 'Lymph node', 'state': 'cancer', 'line': 'LNCaP CDS2', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618485': {'status': 'ETV1+', 'name': 'LNCaP', 'site': 'None', 'state': 'cancer', 'line': 'LNCaP', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618484': {'status': 'ETV1+', 'name': 'LNCaP', 'site': 'None', 'state': 'cancer', 'line': 'LNCaP', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618487': {'status': 'ETV1+', 'name': 'LNCaP CDS1', 'site': 'Lymph node', 'state': 'cancer', 'line': 'LNCaP CDS1', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618486': {'status': 'ETV1+', 'name': 'LNCaP CDS parent', 'site': 'Lymph node', 'state': 'cancer', 'line': 'LNCaP CDS parent', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618481': {'status': 'ETV1+', 'name': 'LNCaP', 'site': 'None', 'state': 'cancer', 'line': 'LNCaP', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618480': {'status': 'ETV1+', 'name': 'LNCaP', 'site': 'None', 'state': 'cancer', 'line': 'LNCaP', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618483': {'status': 'ETV1+', 'name': 'LNCaP', 'site': 'None', 'state': 'cancer', 'line': 'LNCaP', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618482': {'status': 'ETV1+', 'name': 'LNCaP', 'site': 'None', 'state': 'cancer', 'line': 'LNCaP', 'type': 'Cell Line', 'id': 'NA'}, 'GSM2364552': {'type': 'Presentation ALL patient sample engrafred in mice and harvested from spleen'}, 'GSM2364553': {'antibody': 'MLL1 (Bethyl, A300-086A)', 'type': 'Mononuclear cells from full-term cord blood'}, 'GSM2316986': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2901754': {'type': 'HeLa', 'variation': 'STAT3 KO'}, 'GSM2901757': {'wth': 'none', 'type': 'HeLa'}, 'GSM2141463': {'individual': 'AF151', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2392174': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2141462': {'individual': 'AF151', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2901751': {'type': 'HeLa', 'variation': 'Wild type'}, 'GSM1323676': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '15.9', 'reads': '117,376,166', 'tissue': 'prostate', 'u': '118.3', 'mapped': '69.9%', 'id': 'VA-PC-94-28', 'bcr': '0'}, 'GSM2901753': {'type': 'HeLa', 'variation': 'STAT3 KO'}, 'GSM2901752': {'type': 'HeLa', 'variation': 'Wild type'}, 'GSM2552999': {'point': 'Baseline', 'age': '33', 'number': 'AP3', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '40', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2552998': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP3', 'Sex': 'M'}, 'GSM2552993': {'point': 'Baseline', 'age': '63', 'number': 'AP25', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '22', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2552992': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP25', 'Sex': 'M'}, 'GSM2552991': {'point': 'Baseline', 'age': '57', 'number': 'AP23', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '30', 'Sex': 'F', 'positivity': 'Positive'}, 'GSM2552990': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP23', 'Sex': 'F'}, 'GSM2552997': {'point': 'Baseline', 'age': '55', 'number': 'AP27', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '6', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2552996': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP27', 'Sex': 'M'}, 'GSM2552995': {'point': 'Baseline', 'age': '49', 'number': 'AP26', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '8', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2552994': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP26', 'Sex': 'M'}, 'GSM2263389': {'group': 'RASP', 'gender': 'F', 'age': '21', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263388': {'group': 'RASP', 'gender': 'F', 'age': '37', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263387': {'group': 'RASP', 'gender': 'F', 'age': '25', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263386': {'group': 'RASP', 'gender': 'F', 'age': '21', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263385': {'group': 'RASP', 'gender': 'F', 'age': '24', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263384': {'group': 'RASNP', 'gender': 'F', 'age': '36', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263383': {'group': 'RASNP', 'gender': 'M', 'age': '22', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263382': {'group': 'RASNP', 'gender': 'M', 'age': '35', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263381': {'group': 'RASNP', 'gender': 'M', 'age': '38', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263380': {'group': 'RASNP', 'gender': 'F', 'age': '33', 'tissue': 'blood', 'time': 'Diagnosis', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM3124818': {'individual': 'mi058', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124819': {'individual': 'mi058', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124816': {'individual': 'mi686', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124817': {'individual': 'mi686', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124814': {'individual': 'mi609', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124815': {'individual': 'mi686', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124812': {'individual': 'mi306', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124813': {'individual': 'mi411', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124810': {'individual': 'mi379', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM3124811': {'individual': 'mi270', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM2441037': {'culture': '5', 'line': 'H9', 'set': 'Data Set 1-Differentiation', 'run': 'run1466', 'treatment': '0'}, 'GSM2441036': {'culture': '0', 'line': 'H9', 'set': 'Data Set 1-Differentiation', 'run': 'run1466', 'treatment': '0'}, 'GSM1614706': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'normal'}, 'GSM1614707': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'normal'}, 'GSM1614704': {'tissues': 'Blood', 'type': 'CD19+/ IgD+ naïve B-cells', 'tissue': 'normal'}, 'GSM1614705': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'normal'}, 'GSM1614702': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614703': {'tissues': 'Blood', 'type': 'CD19+/CD27+ memory B-cells', 'tissue': 'normal'}, 'GSM1614700': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614701': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM2046849': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K36me3 (2ug Abcam, AB9050)', 'agasga': 'SGA'}, 'GSM2046848': {'type': 'Mesenchymal stem cells', 'cells': '3 million', 'antibody': 'H3K27me3 (20ug Millipore, 07-449)', 'agasga': 'AGA'}, 'GSM1901476': {'count': '1', 'ercc_mix': 'mix2', 'type': 'duct', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2157100': {'type': 'adjacent non-tumor tissue', 'stage': 'stage II'}, 'GSM2049079': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049078': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049077': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049076': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049075': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049074': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049073': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049072': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049071': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049070': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM686919': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Santa Cruz', 'agent': 'vehicle', 'line': 'LNCaP', 'antibody': 'AR', 'transgenes': 'none'}, 'GSM2322530': {'replicate': '1', 'line': 'A2EN', 'group': 'infected with CpoS-deficient C .trachomatis', 'time': '18 h'}, 'GSM2322531': {'replicate': '2', 'line': 'A2EN', 'group': 'infected with CpoS-deficient C .trachomatis', 'time': '18 h'}, 'GSM2322532': {'replicate': '3', 'line': 'A2EN', 'group': 'infected with CpoS-deficient C .trachomatis', 'time': '18 h'}, 'GSM686917': {'transfection': 'siCTRL (1027280)', 'vendor': 'Santa Cruz', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'AR', 'transgenes': 'none'}, 'GSM1898285': {'gender': 'female', 'age': '61', 'number': '5', 'source': 'cyst epithelium', 'state': 'ADPLD', 'mutation': 'unknown', 'type': 'Polycystic biliary stem cells'}, 'GSM1898284': {'gender': 'female', 'age': '70', 'number': '4', 'source': 'cyst fluid', 'state': 'ADPLD', 'mutation': 'unknown', 'type': 'Polycystic biliary stem cells'}, 'GSM1898287': {'gender': 'female', 'age': '47', 'number': '6', 'source': 'cyst epithelium', 'state': 'ADPLD', 'mutation': 'unknown', 'type': 'Polycystic biliary stem cells'}, 'GSM1898286': {'gender': 'female', 'age': '52', 'number': '6', 'source': 'cyst fluid', 'state': 'ADPKD', 'mutation': 'Undetermined', 'type': 'Polycystic biliary stem cells'}, 'GSM1898281': {'gender': 'female', 'age': '54', 'number': '6', 'source': 'cyst epithelium', 'state': 'solitary cyst', 'mutation': 'none', 'type': 'Polycystic biliary stem cells'}, 'GSM1898280': {'gender': 'male', 'age': '69', 'number': '10', 'source': 'liver parenchyma', 'state': 'control (clean resection edge liver metastasis)', 'mutation': 'none', 'type': 'Normal biliary stem cells'}, 'GSM1898283': {'gender': 'female', 'age': '47', 'number': '6', 'source': 'cyst epithelium', 'state': 'ADPLD', 'mutation': 'PRKCSH 1362-2A>G', 'type': 'Polycystic biliary stem cells'}, 'GSM1898282': {'gender': 'female', 'age': '56', 'number': '6', 'source': 'cyst epithelium', 'state': 'ADPLD', 'mutation': 'unknown', 'type': 'Polycystic biliary stem cells'}, 'GSM1898288': {'gender': 'female', 'age': '43', 'number': '6', 'source': 'cyst fluid', 'state': 'solitary cyst', 'mutation': 'none', 'type': 'Polycystic biliary stem cells'}, 'GSM2098686': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098687': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM1446866': {'line': 'U2OS'}, 'GSM1446867': {'line': 'U2OS'}, 'GSM1446868': {'line': 'U2OS'}, 'GSM1446869': {'line': 'U2OS'}, 'GSM2064629': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064628': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064623': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064622': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064621': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064620': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064627': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064626': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064625': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064624': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM1561123': {'line': 'CACO-2', 'with': 'lactose-grown B. infantis'}, 'GSM1561122': {'line': 'CACO-2', 'with': 'lactose-grown B. infantis'}, 'GSM1561121': {'line': 'CACO-2', 'with': 'lactose-grown B. infantis'}, 'GSM1561127': {'line': 'CACO-2', 'with': 'HMO-grown B. infantis'}, 'GSM1561126': {'line': 'CACO-2', 'with': 'glucose-grown B. infantis'}, 'GSM1561125': {'line': 'CACO-2', 'with': 'glucose-grown B. infantis'}, 'GSM1561124': {'line': 'CACO-2', 'with': 'glucose-grown B. infantis'}, 'GSM1561129': {'line': 'CACO-2', 'with': 'HMO-grown B. infantis'}, 'GSM1561128': {'line': 'CACO-2', 'with': 'HMO-grown B. infantis'}, 'GSM2048507': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2111095': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 9', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM1599012': {'type': 'iPSC derived motor neuron', 'treatment': 'none'}, 'GSM1654548': {'type': 'peripheral blood mononuclear cells', 'condition': 'chronic ischemic heart failure'}, 'GSM1654544': {'type': 'peripheral blood mononuclear cells', 'condition': 'healthy'}, 'GSM1654546': {'type': 'peripheral blood mononuclear cells', 'condition': 'healthy'}, 'GSM1654540': {'type': 'peripheral blood mononuclear cells', 'condition': 'healthy'}, 'GSM1654542': {'type': 'peripheral blood mononuclear cells', 'condition': 'healthy'}, 'GSM1807999': {'tissue': 'Kidney'}, 'GSM1807998': {'tissue': 'Kidney'}, 'GSM1807991': {'tissue': 'Liver'}, 'GSM1807990': {'tissue': 'Liver'}, 'GSM1807993': {'tissue': 'Liver'}, 'GSM1807992': {'tissue': 'Liver'}, 'GSM1807995': {'tissue': 'Liver'}, 'GSM1807994': {'tissue': 'Liver'}, 'GSM1807997': {'tissue': 'Kidney'}, 'GSM1807996': {'tissue': 'Liver'}, 'GSM2816238': {'line': 'H9'}, 'GSM1384777': {'type': 'Cord blood CD34+ cells', 'agent': 'UM171[11.9nM]', 'time': '16 hour culture'}, 'GSM2274959': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-11', 'trunkbarcode': '928616', 'sampleID': 'S33286', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9805', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9805', 'studysiteshort': 'YALE'}, 'GSM2793992': {'protocol': 'cultured in media (RPMI) with 10ng/mL LPS for 24 hours', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_2', 'type': 'Monocyte'}, 'GSM2793993': {'protocol': 'none', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_3', 'type': 'Monocyte'}, 'GSM2793990': {'protocol': 'none', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_2', 'type': 'Monocyte'}, 'GSM2793991': {'protocol': 'cultured in media (RPMI) for 24 hours', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_2', 'type': 'Monocyte'}, 'GSM2793996': {'protocol': 'none', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_1', 'type': 'Monocyte'}, 'GSM2793997': {'protocol': 'cultured in media (RPMI) for 24 hours', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_1', 'type': 'Monocyte'}, 'GSM2793994': {'protocol': 'cultured in media (RPMI) for 24 hours', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_3', 'type': 'Monocyte'}, 'GSM2793995': {'protocol': 'cultured in media (RPMI) with 10ng/mL LPS for 24 hours', 'antibody': 'none', 'disease': 'healthy', 'tissue': 'Adult Peripheral Blood', 'donor': 'Control_3', 'type': 'Monocyte'}, 'GSM2793998': {'protocol': 'cultured in media (RPMI) with 10ng/mL LPS for 24 hours', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_1', 'type': 'Monocyte'}, 'GSM2793999': {'protocol': 'none', 'antibody': 'none', 'disease': 'Hyper IgD Syndrome (HIDS)', 'tissue': 'Adult Peripheral Blood', 'donor': 'HIDS_patient_2', 'type': 'Monocyte'}, 'GSM2274951': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-3', 'trunkbarcode': '928616', 'sampleID': 'S33278', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9797', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9797', 'studysiteshort': 'YALE'}, 'GSM1967864': {'line': 'K562', 'passage': '3-5'}, 'GSM1967865': {'line': 'K562', 'passage': '3-5'}, 'GSM1967866': {'line': 'K562', 'passage': '3-5'}, 'GSM1967867': {'line': 'K562', 'passage': '3-5'}, 'GSM2092978': {'bin': '7', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM1967863': {'line': 'K562', 'passage': '3-5'}, 'GSM2303423': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303422': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303421': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303420': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303427': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303426': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303425': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303424': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2730049': {'tissue': 'LNCaP', 'conditions': 'Hormone starvation + 16 h EtOH', 'variation': 'C-terminal mutant (K231A, K232A, K279A)'}, 'GSM2730048': {'tissue': 'LNCaP', 'conditions': 'Hormone starvation + 16 h DHT', 'variation': 'wildtype'}, 'GSM1704548': {'protocol': 'Interferon treatment', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704549': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2730043': {'tissue': 'Fetal liver', 'type': 'CD34+ derived erythroblasts', 'stage': 'Day 14'}, 'GSM2730042': {'tissue': 'Fetal liver', 'type': 'CD34+ derived erythroblasts', 'stage': 'Day 11'}, 'GSM2730041': {'tissue': 'Fetal liver', 'type': 'CD34+ derived erythroblasts', 'stage': 'Day 11'}, 'GSM2730040': {'tissue': 'Adult peripheral blood', 'type': 'CD34+ derived erythroblasts', 'stage': 'Day 14'}, 'GSM2730047': {'tissue': 'LNCaP', 'conditions': 'Hormone starvation + 16 h DHT', 'variation': 'wildtype'}, 'GSM2730046': {'tissue': 'LNCaP', 'conditions': 'Hormone starvation + 16 h EtOH', 'variation': 'wildtype'}, 'GSM2730045': {'tissue': 'LNCaP', 'conditions': 'Hormone starvation + 16 h EtOH', 'variation': 'wildtype'}, 'GSM2730044': {'tissue': 'Fetal liver', 'type': 'CD34+ derived erythroblasts', 'stage': 'Day 14'}, 'GSM2679959': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2339242': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339243': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339240': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339241': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339246': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305868': {'tissue': 'colon'}, 'GSM2339244': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339245': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305865': {'tissue': 'colon'}, 'GSM2305864': {'tissue': 'colon'}, 'GSM2305867': {'tissue': 'colon'}, 'GSM2305866': {'tissue': 'colon'}, 'GSM2305861': {'tissue': 'colon'}, 'GSM1537293': {'gender': 'Female', 'line': 'HMEC', 'type': 'Normal Cells', 'antibody': 'Santa Cruz; sc-9001; H-224'}, 'GSM2305863': {'tissue': 'colon'}, 'GSM2305862': {'tissue': 'colon'}, 'GSM2125762': {'cancer': 'adjacent normal'}, 'GSM2474458': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2679957': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM1334185': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM2760059': {'tissue': 'Whole blood', 'condition': 'hyperthyroid'}, 'GSM2760058': {'tissue': 'Whole blood', 'condition': 'hyperthyroid'}, 'GSM1383769': {'donor': 'A2736', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM1383768': {'donor': 'A2735', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM2760055': {'tissue': 'Whole blood', 'condition': 'hyperthyroid'}, 'GSM2760054': {'tissue': 'Whole blood', 'condition': 'hyperthyroid'}, 'GSM2760057': {'tissue': 'Whole blood', 'condition': 'hyperthyroid'}, 'GSM2760056': {'tissue': 'Whole blood', 'condition': 'hyperthyroid'}, 'GSM2760051': {'tissue': 'Whole blood', 'condition': 'hypothyroid'}, 'GSM2760050': {'tissue': 'Whole blood', 'condition': 'hypothyroid'}, 'GSM2760053': {'tissue': 'Whole blood', 'condition': 'hyperthyroid'}, 'GSM1383760': {'donor': 'A2737', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM2696569': {'status': '0', 'grade': '2', 'age': '70', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.2'}, 'GSM2696568': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2679953': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2696563': {'status': '3+ (100)', 'grade': '3', 'age': '53', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '3'}, 'GSM2696562': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Normal Breast', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696561': {'status': '0', 'grade': '2', 'age': '50', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '3.7'}, 'GSM2696560': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Normal Breast', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696567': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696566': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696565': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696564': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1896229': {'individual': 'EU60', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896228': {'individual': 'EU60', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1980205': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980204': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980203': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980202': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980201': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980200': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1896221': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896220': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896223': {'individual': 'EU54', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896222': {'individual': 'EU54', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896225': {'individual': 'EU58', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896224': {'individual': 'EU54', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896227': {'individual': 'EU58', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896226': {'individual': 'EU58', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2194359': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194358': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1340576': {'line': 'MCF10A', 'antibody': 'anti-BRCA1 mouse monoclonal D-9'}, 'GSM2194353': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194352': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194351': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194350': {'type': 'delta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194357': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194356': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194355': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194354': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1909480': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'METTL14 Knockdown'}, 'GSM2374389': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2535700': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1168', 'samplename': '1gr_413CD3_C61', 'seqsite': 'BRI', 'sampleID': 'S13295', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1168', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C61'}, 'GSM1436340': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM1436341': {'type': 'HS181-derived embryoid bodies'}, 'GSM1436342': {'type': 'HS181-derived embryoid bodies'}, 'GSM1436343': {'type': 'HS181-derived embryoid bodies'}, 'GSM1436344': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM1436345': {'type': 'HS181-derived embryoid bodies'}, 'GSM1436346': {'type': 'HS181-derived embryoid bodies'}, 'GSM1436347': {'type': 'human embryonic stem cells (HESCs)'}, 'GSM1436348': {'type': 'HS181-derived embryoid bodies'}, 'GSM2816232': {'line': 'H9'}, 'GSM2153349': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153348': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153345': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153344': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153347': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153346': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153341': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2228762': {'donor': '9', 'treatment': 'mock', 'infection': '6'}, 'GSM2153343': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153342': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1908612': {'line': 'H1', 'type': 'eGFP-CD34+CD31+CD43- endothelial cells', 'genotype': 'GATA2/eGFP knockin'}, 'GSM2535705': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1175', 'samplename': '1gr_413CD3_C74', 'seqsite': 'BRI', 'sampleID': 'S13302', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1175', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C74'}, 'GSM1399412': {'line': 'MDA-MB-231 breast cancer cell line', 'treatment': 'CIP2A siRNA'}, 'GSM1399413': {'line': 'MDA-MB-231 breast cancer cell line', 'treatment': 'PBS control-12hr'}, 'GSM1399410': {'line': 'MDA-MB-231 breast cancer cell line', 'treatment': 'control siRNA-48hr'}, 'GSM1399411': {'line': 'MDA-MB-231 breast cancer cell line', 'treatment': 'SET siRNA-48hr'}, 'GSM1399414': {'line': 'MDA-MB-231 breast cancer cell line', 'treatment': '1μMOP449-12hr'}, 'GSM2303298': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2794429': {'age': '36 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794428': {'age': '44 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794427': {'age': '37 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794426': {'age': '28 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794425': {'age': '33 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794424': {'age': '30 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794423': {'age': '13 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794422': {'age': '19 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794421': {'age': '31 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794420': {'age': '47 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2816237': {'line': 'H9'}, 'GSM1435495': {'type': 'monocyte'}, 'GSM1435497': {'type': 'monocyte'}, 'GSM1435496': {'type': 'monocyte'}, 'GSM1435499': {'type': 'monocyte'}, 'GSM1435498': {'type': 'monocyte'}, 'GSM2575030': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM1369091': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siTGM5'}, 'GSM1369090': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siSAP130'}, 'GSM1369093': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock'}, 'GSM1369092': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siTOX4'}, 'GSM2374383': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM1369094': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siBEGAIN'}, 'GSM1369097': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siDPPA5'}, 'GSM1369096': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siCDK10'}, 'GSM1369099': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1'}, 'GSM1369098': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siEIF3L'}, 'GSM2433713': {'sample_label': 'MO1043-ICN1-HA-2', 'tissue': 'Chronic Lymphocytic Leukemia (CLL) cell line', 'conditions': 'MO1043 CLL cells induced to express ICN1-HA'}, 'GSM2433712': {'sample_label': 'MO1043-ICN1-HA-1', 'tissue': 'Chronic Lymphocytic Leukemia (CLL) cell line', 'conditions': 'MO1043 CLL cells induced to express ICN1-HA'}, 'GSM2433711': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'inducible knockout of EED', 'treatment': '+DOX'}, 'GSM2433710': {'line': 'H1', 'time': 'day 28', 'type': 'Human embryonic stem cell', 'genotype': 'inducible knockout of EED', 'treatment': '-DOX'}, 'GSM2433717': {'sample_label': 'MO1043-eGFP-2', 'tissue': 'Chronic Lymphocytic Leukemia (CLL) cell line', 'conditions': 'MO1043 CLL cells induced to express eGFP'}, 'GSM2433716': {'sample_label': 'MO1043-eGFP-1', 'tissue': 'Chronic Lymphocytic Leukemia (CLL) cell line', 'conditions': 'MO1043 CLL cells induced to express eGFP'}, 'GSM2433715': {'sample_label': 'MO1043-ICN1-HA-4', 'tissue': 'Chronic Lymphocytic Leukemia (CLL) cell line', 'conditions': 'MO1043 CLL cells induced to express ICN1-HA'}, 'GSM2433714': {'sample_label': 'MO1043-ICN1-HA-3', 'tissue': 'Chronic Lymphocytic Leukemia (CLL) cell line', 'conditions': 'MO1043 CLL cells induced to express ICN1-HA'}, 'GSM2433719': {'sample_label': 'MO1043-eGFP-4', 'tissue': 'Chronic Lymphocytic Leukemia (CLL) cell line', 'conditions': 'MO1043 CLL cells induced to express eGFP'}, 'GSM2433718': {'sample_label': 'MO1043-eGFP-3', 'tissue': 'Chronic Lymphocytic Leukemia (CLL) cell line', 'conditions': 'MO1043 CLL cells induced to express eGFP'}, 'GSM1545628': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545622': {'count': '4', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545623': {'count': '1', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545620': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545621': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545626': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545627': {'count': '3', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545624': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545625': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM2795887': {'code': 'P029', 'age': '18-22', 'Sex': 'Male', 'tissue': 'Placenta', 'treatment': 'Mock', 'compartment': 'Chorionic villus'}, 'GSM1693123': {'line': 'SK-N-SH', 'type': 'human neuroblastoma cells', 'clone': 'SD3.23', 'treatment': '1uM Retinoic acid'}, 'GSM1693122': {'line': 'SK-N-SH', 'type': 'human neuroblastoma cells', 'clone': 'SD3.23', 'treatment': 'Untreated'}, 'GSM2011520': {'line': 'HEK293FT', 'variation': 'Transfected with wild type FOXE3 expression vector'}, 'GSM2011521': {'line': 'HEK293FT', 'variation': 'Transfected with wild type FOXE3 expression vector'}, 'GSM2011522': {'line': 'HEK293FT', 'variation': 'Transfected with wild type FOXE3 expression vector'}, 'GSM2011523': {'line': 'HEK293FT', 'variation': 'Transfected with wild type FOXE3 expression vector'}, 'GSM2011524': {'line': 'HEK293FT', 'variation': 'Transfected with wild type FOXE3 expression vector'}, 'GSM2011525': {'line': 'HEK293FT', 'variation': 'Transfected with wild type FOXE3 expression vector'}, 'GSM2391132': {'disease': 'NSCLC'}, 'GSM2391133': {'disease': 'NSCLC'}, 'GSM2391130': {'disease': 'NSCLC'}, 'GSM2391131': {'disease': 'NSCLC'}, 'GSM2391136': {'disease': 'NSCLC'}, 'GSM2391137': {'disease': 'NSCLC'}, 'GSM2391134': {'disease': 'NSCLC'}, 'GSM2391135': {'disease': 'NSCLC'}, 'GSM2391138': {'disease': 'NSCLC'}, 'GSM2391139': {'disease': 'NSCLC'}, 'GSM2674233': {'line': 'MKL-1 line with Dox inducible scramble shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674232': {'line': 'MKL-1 line with Dox inducible scramble shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674237': {'line': 'MKL-1 line with Dox inducible EP400 shRNA #2', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674236': {'line': 'MKL-1 line with Dox inducible EP400 shRNA #2', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674235': {'line': 'MKL-1 line with Dox inducible EP400 shRNA #2', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674234': {'line': 'MKL-1 line with Dox inducible scramble shRNA', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2543995': {'library_id': 'lib8301', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543994': {'library_id': 'lib8300', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2674239': {'line': 'MKL-1 line with Dox inducible EP400 shRNA #3', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2674238': {'line': 'MKL-1 line with Dox inducible EP400 shRNA #3', 'tissue': 'Merkel cell carcinoma cell line', 'mcpyv': 'positive', 'treatment': '+'}, 'GSM2543991': {'library_id': 'lib8295', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543990': {'library_id': 'lib8294', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543993': {'library_id': 'lib8297', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543992': {'library_id': 'lib8296', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2324190': {'group': 'LowA422', 'type': 'PBMC', 'day': '84', 'subjectid': '1704'}, 'GSM2324191': {'group': 'LowA422', 'type': 'PBMC', 'day': '0', 'subjectid': '1803'}, 'GSM2324192': {'group': 'LowA422', 'type': 'PBMC', 'day': '14', 'subjectid': '1803'}, 'GSM2324193': {'group': 'LowA422', 'type': 'PBMC', 'day': '28', 'subjectid': '1803'}, 'GSM2565301': {'construction': 'PLATE-Seq', 'drug': 'Volasertib (BI 6727)'}, 'GSM2324194': {'group': 'LowA422', 'type': 'PBMC', 'day': '56', 'subjectid': '1803'}, 'GSM2324195': {'group': 'LowA422', 'type': 'PBMC', 'day': '84', 'subjectid': '1803'}, 'GSM854368': {'patient': '7', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM854369': {'patient': '7', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM2324196': {'group': 'LowA422', 'type': 'PBMC', 'day': '84', 'subjectid': '2408'}, 'GSM854362': {'patient': '5', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM854363': {'patient': '6', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854360': {'patient': '5', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM854361': {'patient': '5', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM854366': {'patient': '6', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM854367': {'patient': '7', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854364': {'patient': '6', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM854365': {'patient': '6', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM1582569': {'replicate': '1', 'type': 'iNSC'}, 'GSM1957258': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957259': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957250': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957251': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957252': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957253': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957254': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957255': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957256': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957257': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1956129': {'a': '56481', 'cd38': '315', 'cd49f': '644', 'w': '67706', 'h': '54671', 'lin': '-294', 'cd34': '7558', 'cd90': '10489', 'cd7': '-122', 'cd10': '931', 'time': '10396', 'cd135': '5832', 'cd45ra': '499'}, 'GSM1956128': {'a': '50564', 'cd38': '1166', 'cd49f': '505', 'w': '68852', 'h': '48129', 'lin': '280', 'cd34': '7665', 'cd90': '372', 'cd7': '197', 'cd10': '310', 'time': '10596', 'cd135': '3981', 'cd45ra': '386'}, 'GSM1956121': {'a': '53126', 'cd38': '843', 'cd49f': '1037', 'w': '65692', 'h': '52999', 'lin': '-160', 'cd34': '4958', 'cd90': '2033', 'cd7': '-61', 'cd10': '928', 'time': '12071', 'cd135': '1576', 'cd45ra': '457'}, 'GSM1956120': {'a': '40918', 'cd38': '551', 'cd49f': '828', 'w': '66867', 'h': '40103', 'lin': '20', 'cd34': '5835', 'cd90': '190', 'cd7': '48', 'cd10': '2519', 'time': '9584', 'cd135': '9443', 'cd45ra': '4533'}, 'GSM1956123': {'a': '63557', 'cd38': '195', 'cd49f': '477', 'w': '64239', 'h': '64840', 'lin': '373', 'cd34': '7703', 'cd90': '3123', 'cd7': '514', 'cd10': '731', 'time': '11691', 'cd135': '6433', 'cd45ra': '362'}, 'GSM1956122': {'a': '43784', 'cd38': '1080', 'cd49f': '3749', 'w': '75051', 'h': '38233', 'lin': '309', 'cd34': '3497', 'cd90': '-592', 'cd7': '527', 'cd10': '436', 'time': '11881', 'cd135': '3779', 'cd45ra': '7978'}, 'GSM1956125': {'a': '50363', 'cd38': '-89', 'cd49f': '419', 'w': '66800', 'h': '49410', 'lin': '390', 'cd34': '10589', 'cd90': '619', 'cd7': '466', 'cd10': '957', 'time': '11210', 'cd135': '2308', 'cd45ra': '165'}, 'GSM1956124': {'a': '62942', 'cd38': '916', 'cd49f': '580', 'w': '69368', 'h': '59465', 'lin': '-357', 'cd34': '3573', 'cd90': '246', 'cd7': '434', 'cd10': '980', 'time': '11435', 'cd135': '4563', 'cd45ra': '1457'}, 'GSM1956127': {'a': '53707', 'cd38': '304', 'cd49f': '403', 'w': '65735', 'h': '53545', 'lin': '748', 'cd34': '9883', 'cd90': '611', 'cd7': '250', 'cd10': '1157', 'time': '10795', 'cd135': '5482', 'cd45ra': '622'}, 'GSM1956126': {'a': '51159', 'cd38': '946', 'cd49f': '454', 'w': '69574', 'h': '48190', 'lin': '668', 'cd34': '5550', 'cd90': '1330', 'cd7': '336', 'cd10': '679', 'time': '11009', 'cd135': '2143', 'cd45ra': '4'}, 'GSM1482174': {'point': 'Day 4 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM1482170': {'point': 'Day 3 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM1482171': {'point': 'Day 3 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM1482172': {'point': 'Day 4 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM1482173': {'point': 'Day 4 post NGN induction', 'type': 'Fibroblast derived iPS cells', 'variation': 'harboring doxycycline inducible Neurogenin vectors', 'source': 'Personal Genome Project iPS cell line PGP1 (hu43860C)', 'subtype': 'Fibroblast derived iPS cells, differentiated neurons', 'with': '0.5ug/ml doxycycline'}, 'GSM2177863': {'status': 'Hepatoblastoma', 'Sex': 'Female', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM2687228': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day14'}, 'GSM2687229': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day14'}, 'GSM1624198': {'line': 'H1', 'treatment': 'ETOH'}, 'GSM1624199': {'line': 'H1', 'treatment': 'DAPT'}, 'GSM2687222': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day14'}, 'GSM2687223': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day14'}, 'GSM2687220': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day10'}, 'GSM2687221': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day14'}, 'GSM2687226': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day14'}, 'GSM2687227': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day14'}, 'GSM2687224': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day14'}, 'GSM2687225': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day14'}, 'GSM1538429': {'antibody': 'CREB1', 'line': 'LNCaP-abl', 'group': 'androgen independent', 'number': '62-64'}, 'GSM1863647': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863646': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863645': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863644': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863643': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863642': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863641': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863640': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863649': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863648': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM2565309': {'construction': 'PLATE-Seq', 'drug': 'Refametinib (RDEA119, Bay 86-9766)'}, 'GSM2177860': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM2689048': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689049': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2944138': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'A673'}, 'GSM2944139': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'A673'}, 'GSM2689040': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689041': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689042': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689043': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689044': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2944133': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'ES2'}, 'GSM2689046': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689047': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2188679': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-129', 'er': 'negative'}, 'GSM2188678': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-129', 'er': 'negative'}, 'GSM2188675': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-111', 'er': 'negative'}, 'GSM2188674': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-111', 'er': 'negative'}, 'GSM2188677': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-111', 'er': 'negative'}, 'GSM2188676': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-111', 'er': 'negative'}, 'GSM2358960': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2231436': {'type': 'Adipose-derived Mesenchymal Stromal Cell'}, 'GSM2391903': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391902': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391901': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391900': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM1571078': {'stage': 'mesoderm'}, 'GSM1571079': {'stage': 'mesoderm'}, 'GSM2391905': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391904': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM1571074': {'stage': 'undifferentiated'}, 'GSM1571075': {'stage': 'undifferentiated'}, 'GSM1571076': {'stage': 'mesoderm'}, 'GSM2391908': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM1571070': {'stage': 'undifferentiated'}, 'GSM1571071': {'stage': 'undifferentiated'}, 'GSM1571072': {'stage': 'undifferentiated'}, 'GSM1571073': {'stage': 'undifferentiated'}, 'GSM2183591': {'line': 'HepG2', 'treatment': 'none'}, 'GSM2183590': {'line': 'HepG2', 'treatment': 'none'}, 'GSM2183593': {'line': 'HepG2', 'treatment': '2,5 µM ACF'}, 'GSM2183592': {'line': 'HepG2', 'treatment': 'none'}, 'GSM2183595': {'line': 'HepG2', 'treatment': '2,5 µM ACF'}, 'GSM2183594': {'line': 'HepG2', 'treatment': '2,5 µM ACF'}, 'GSM2183597': {'line': 'HepG2', 'treatment': '5 µM ACF'}, 'GSM2183596': {'line': 'HepG2', 'treatment': '2,5 µM ACF'}, 'GSM2752353': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752352': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752351': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752350': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752357': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752356': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752355': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752354': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM1009528': {'lineage': 'mesoderm', 'description': 'tier 1', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'IHG024', 'lab': 'GIS', 'sex': 'F', 'cell': 'GM12878', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'karyotype': 'normal', 'organism': 'human', 'biorep': 'gen0107C'}, 'GSM2741788': {'sirna': 'siZFX', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741789': {'sirna': 'siZFX', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM1495421': {'index': 'TGACCA', 'line': '1833/MRC5', 'type': 'co-culture'}, 'GSM1495424': {'index': 'CTTGTA', 'line': '1833/MRC5', 'type': 'co-culture'}, 'GSM2741780': {'sirna': 'none', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM2741781': {'sirna': 'siZFX', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM2741782': {'sirna': 'siZFX', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM2741783': {'sirna': 'siZFX', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM2741784': {'sirna': 'siCtrl', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM2741785': {'sirna': 'siCtrl', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM2741786': {'sirna': 'siCtrl', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM2741787': {'sirna': 'siZFX', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM823522': {'tissue': 'liver', 'phenotype': 'non-tumor'}, 'GSM823523': {'tissue': 'liver', 'phenotype': 'hepatocellular carcinoma'}, 'GSM823520': {'tissue': 'liver', 'phenotype': 'non-tumor'}, 'GSM823521': {'tissue': 'liver', 'phenotype': 'hepatocellular carcinoma'}, 'GSM1482905': {'with': 'si RNAs against Integrator 11', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM1482904': {'with': 'si RNAs against Integrator 11', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM1482907': {'with': 'si RNAs against NELF', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM1482906': {'with': 'si RNAs against NELF', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM1482901': {'with': 'si RNAs against control (scrambled)', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM1482900': {'with': 'si RNAs against control (scrambled)', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM1482903': {'with': 'si RNAs against Integrator 11', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM1482902': {'with': 'si RNAs against control (scrambled)', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM1482909': {'with': 'si RNAs against control (scrambled)', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM2175071': {'line': 'K562'}, 'GSM2175070': {'line': 'K562'}, 'GSM2109292': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM1519560': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519561': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519562': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519563': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519564': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519565': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519566': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519567': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519568': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM1519569': {'gender': 'female', 'type': 'ovarian granulosa cells'}, 'GSM2243587': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243586': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'D9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243585': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243584': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243583': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243582': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243581': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243580': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243589': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1857418': {'transduction': 'Control Lentivirus', 'line': 'V852', 'type': 'Colorectal cancer', 'Sex': 'Male'}, 'GSM2928286': {'transfection': 'control siRNA (n.c.)', 'passages': '6', 'type': 'gastric cancer cells'}, 'GSM1617355': {'patient': '3', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617356': {'patient': '4', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617357': {'patient': '5', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM618520': {'status': 'ETS-', 'name': 'WPMY-1', 'site': 'None', 'state': 'benign', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'NA'}, 'GSM1617353': {'patient': '1', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617358': {'patient': '6', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617359': {'patient': '7', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM2928288': {'transfection': 'YAP siRNA (siYAP)', 'passages': '6', 'type': 'gastric cancer cells'}, 'GSM1830788': {'type': 'Cultured erythroid progenitors'}, 'GSM1830789': {'type': 'Cultured erythroid progenitors'}, 'GSM1830782': {'type': 'Erythrocyte'}, 'GSM1830783': {'type': 'Erythrocyte'}, 'GSM1830786': {'type': 'Peripheral Blood Mononuclear Cell (PBMC)'}, 'GSM1830787': {'type': 'Peripheral Blood Mononuclear Cell (PBMC)'}, 'GSM1830784': {'type': 'Erythrocyte'}, 'GSM1830785': {'type': 'Peripheral Blood Mononuclear Cell (PBMC)'}, 'GSM2842535': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2109296': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2463767': {'type': 'Human heart tissue isolated from 3 pooled samples'}, 'GSM2463766': {'type': 'ES-cell derived human cardiac organoids'}, 'GSM2463765': {'type': 'ES-cell derived human cardiac organoids'}, 'GSM2463764': {'type': 'ES-cell derived human cardiac organoids'}, 'GSM2463763': {'type': 'ES-cell derived human cardiac organoids'}, 'GSM2463762': {'type': 'ES-cell derived human cardiac organoids'}, 'GSM2463761': {'type': 'ES-cell derived human cardiac organoids'}, 'GSM2463760': {'type': 'ES-cell derived human cardiac organoids'}, 'GSM1683232': {'type': 'U87 human glioma cells'}, 'GSM1683233': {'type': 'U87 human glioma cells'}, 'GSM1683230': {'type': 'U87 human glioma cells'}, 'GSM1683231': {'type': 'U87 human glioma cells'}, 'GSM1613589': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613588': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1683234': {'type': 'U87 human glioma cells'}, 'GSM1683235': {'type': 'U87 human glioma cells'}, 'GSM1613585': {'line': 'CRL2097', 'type': 'no cell'}, 'GSM1613584': {'line': 'CRL2097', 'type': 'no cell'}, 'GSM1613587': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613586': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613581': {'line': 'CRL2097', 'type': 'no cell'}, 'GSM1613583': {'line': 'CRL2097', 'type': 'no cell'}, 'GSM1613582': {'line': 'CRL2097', 'type': 'no cell'}, 'GSM2390995': {'disease': 'Multiple Sclerosis'}, 'GSM2390994': {'disease': 'Multiple Sclerosis'}, 'GSM2124707': {'origin': 'central nervous system'}, 'GSM2124706': {'origin': 'central nervous system'}, 'GSM2124705': {'origin': 'breast tumor'}, 'GSM2124704': {'origin': 'breast tumor', 'line': 'SUM149PT', 'type': 'triple-negative'}, 'GSM2124703': {'origin': 'breast tumor', 'line': 'SUM149PT', 'type': 'triple-negative'}, 'GSM2124702': {'origin': 'breast metastatic site: pericardial effusion', 'line': 'MDA-MB-453', 'type': 'HER2 positive'}, 'GSM2124701': {'origin': 'breast metastatic site: pericardial effusion', 'line': 'MDA-MB-453', 'type': 'HER2 positive'}, 'GSM2124700': {'origin': 'xenograft of breast tumorigenic cell line MCF10AT', 'line': 'MCF10DCIS', 'type': 'triple-negative'}, 'GSM2124709': {'origin': 'breast metastatic site in brain'}, 'GSM2124708': {'origin': 'breast metastatic site in brain'}, 'GSM1965389': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965388': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965383': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965382': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965381': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965380': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965387': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965386': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965385': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965384': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM2833261': {'line': 'A549', 'isolate': 'CCL-185', 'agent': '30 nM A2M', 'provider': 'ATCC'}, 'GSM2833260': {'line': 'A549', 'isolate': 'CCL-185', 'agent': 'none', 'provider': 'ATCC'}, 'GSM2390999': {'disease': 'Pulmonary Hypertension'}, 'GSM2390998': {'disease': 'Pulmonary Hypertension'}, 'GSM2455599': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455598': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2049138': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049139': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2455591': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455590': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455593': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455592': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455595': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455594': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2049134': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049135': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM3594233': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594232': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM2316979': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2840508': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840509': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM3576158': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM3576159': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM2840506': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840507': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840500': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840501': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840502': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840503': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2492583': {'status': 'healthy donor', 'with': 'none (unstimulated control)', 'type': 'primary human monocytes', 'id': 'Donor 2'}, 'GSM2492582': {'status': 'healthy donor', 'with': 'none (unstimulated control)', 'type': 'primary human monocytes', 'id': 'Donor 1'}, 'GSM2492581': {'status': 'healthy donor', 'with': 'none (unstimulated control)', 'type': 'primary human monocytes', 'id': 'Donor 4'}, 'GSM2492580': {'status': 'healthy donor', 'with': 'none (unstimulated control)', 'type': 'primary human monocytes', 'id': 'Donor 3'}, 'GSM2492587': {'status': 'healthy donor', 'with': '10ng/mL of LPS', 'type': 'primary human monocytes', 'id': 'Donor 2'}, 'GSM2492586': {'status': 'healthy donor', 'with': '10ng/mL of LPS', 'type': 'primary human monocytes', 'id': 'Donor 1'}, 'GSM2492585': {'status': 'healthy donor', 'with': 'none (unstimulated control)', 'type': 'primary human monocytes', 'id': 'Donor 4'}, 'GSM2492584': {'status': 'healthy donor', 'with': 'none (unstimulated control)', 'type': 'primary human monocytes', 'id': 'Donor 3'}, 'GSM2492589': {'status': 'healthy donor', 'with': '10ng/mL of LPS', 'type': 'primary human monocytes', 'id': 'Donor 4'}, 'GSM2492588': {'status': 'healthy donor', 'with': '10ng/mL of LPS', 'type': 'primary human monocytes', 'id': 'Donor 3'}, 'GSM2806238': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806239': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2147689': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147688': {'status': 'non-responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147681': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147680': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147683': {'status': 'non-responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147682': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147685': {'status': 'non-responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147684': {'status': 'non-responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147687': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147686': {'status': 'non-responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2194267': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1528198': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM2252630': {'line': 'U2OS', 'type': 'Osteosarcoma', 'treatment': '20μM Etoposide for 8 hours'}, 'GSM1697211': {'number': '11'}, 'GSM1697210': {'number': '72'}, 'GSM2141276': {'individual': 'AF43', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141277': {'individual': 'AF43', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141274': {'individual': 'AF41', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141275': {'individual': 'AF43', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141272': {'individual': 'AF41', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141273': {'individual': 'AF41', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141270': {'individual': 'AF39', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141271': {'individual': 'AF39', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141278': {'individual': 'AF47', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2792927': {'protocol': 'Monocytes cultured for 6 days in media (RPMI) only', 'type': 'Monocyte', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'donor': 'Donor_1'}, 'GSM1697219': {'number': '73'}, 'GSM1697218': {'number': '69'}, 'GSM1498124': {'type': 'senescent cells', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM1498125': {'type': 'senescent cells expressing ZFP36L1wt', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM1498126': {'type': 'senescent cells expressing ZFP36L1mut', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM1498127': {'type': 'Non-senescent cells', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM1498120': {'type': 'senescent cells', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM1473764': {'origin': 'Skin', 'with': 'None (spontaneously immortal)', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'spontaneously immortal cells'}, 'GSM1473767': {'origin': 'Skin', 'with': 'None (spontaneously immortal)', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'spontaneously immortal cells'}, 'GSM2177865': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM922250': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922251': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922252': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922253': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922254': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922255': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922256': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922257': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2311824': {'culture': '12', 'line': 'DCX+'}, 'GSM2311825': {'culture': '12', 'line': 'DCX+'}, 'GSM2311826': {'culture': '12', 'line': 'DCX+'}, 'GSM2311827': {'culture': '12', 'line': 'DCX+'}, 'GSM2311820': {'culture': '12', 'line': 'DCX+'}, 'GSM2311821': {'culture': '12', 'line': 'DCX+'}, 'GSM2311822': {'culture': '12', 'line': 'DCX+'}, 'GSM2311823': {'culture': '12', 'line': 'DCX+'}, 'GSM2287507': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287506': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287505': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287504': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2311828': {'culture': '12', 'line': 'DCX+'}, 'GSM2287502': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287501': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287500': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2303386': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303387': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303384': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2610944': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610943': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2303383': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303380': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2610940': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610949': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303389': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2690847': {'model': 'TM00096', 'population': 'Unsorted tumor cells'}, 'GSM2690848': {'model': 'TM00096', 'population': 'Unsorted tumor cells'}, 'GSM2690849': {'model': 'TM00096', 'population': 'Human-only tumor cells depleted of mouse cells'}, 'GSM1377962': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'timepoint': '7', 'diagnosis': 'NLRC4-Macrophage Activation Syndrome (MAS)'}, 'GSM1377963': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377960': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'timepoint': '5', 'diagnosis': 'NLRC4-Macrophage Activation Syndrome (MAS)'}, 'GSM1377961': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'timepoint': '6', 'diagnosis': 'NLRC4-Macrophage Activation Syndrome (MAS)'}, 'GSM1377966': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377967': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377964': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377965': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM2816208': {'line': 'H9'}, 'GSM1377968': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM1377969': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'diagnosis': 'Neonatal-Onset Multisystem Inflammatory Disease (NOMID)'}, 'GSM2535739': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1214', 'samplename': '1gr_413tetr_C25', 'seqsite': 'BRI', 'sampleID': 'S13382', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1214', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C25'}, 'GSM2653524': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653525': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653526': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653527': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653520': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653521': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653522': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653523': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653528': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653529': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2114212': {'line': 'HUES9', 'agent': 'actD', 'time': '4 hours since actD treatment'}, 'GSM2392731': {'type': 'Induced pluripotent stem cell'}, 'GSM2114210': {'line': 'HUES9', 'agent': 'actD', 'time': '4 hours since actD treatment'}, 'GSM1708992': {'line': 'H1', 'type': 'Embryonic stem cells', 'genotype': 'wildtype'}, 'GSM2114216': {'line': 'K562', 'agent': 'control', 'time': '0 hours since actD treatment'}, 'GSM2114217': {'line': 'K562', 'agent': 'control', 'time': '0 hours since actD treatment'}, 'GSM2114214': {'line': 'HUES9', 'agent': 'actD', 'time': '8 hours since actD treatment'}, 'GSM2392730': {'type': 'Induced pluripotent stem cell'}, 'GSM2653638': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2114218': {'line': 'K562', 'agent': 'control', 'time': '0 hours since actD treatment'}, 'GSM2114219': {'line': 'K562', 'agent': 'actD', 'time': '0.5 hours since actD treatment'}, 'GSM1977034': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM2653639': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM1360870': {'line': '70', 'days_differentiated': '56', 'variation': 'N398', 'subline': 'SB'}, 'GSM2425000': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1360872': {'line': 'ATR1', 'days_differentiated': '0', 'variation': 'WT', 'passage_number': '12'}, 'GSM1977035': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1360874': {'line': 'ATR2', 'days_differentiated': '0', 'variation': 'WT', 'passage_number': '5'}, 'GSM1360875': {'line': 'ATR2', 'days_differentiated': '0', 'variation': 'WT', 'passage_number': '8'}, 'GSM2425001': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1977032': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1868744': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1977033': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM2611012': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611013': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611010': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611011': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611016': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM1977030': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM2611014': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611015': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611018': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM1977031': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1500852': {'line': 'HCT116'}, 'GSM1868749': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1500850': {'line': 'HCT116'}, 'GSM1500851': {'line': 'HCT116'}, 'GSM1855981': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855980': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855983': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3(126-444) truncation mutant (TA1del) expressed'}, 'GSM1855982': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3(126-444) truncation mutant (TA1del) expressed'}, 'GSM1855985': {'passages': '3-7', 'antibody': 'anti-H3K4me1 (ab8895)', 'variation': 'Control cells (vector control)'}, 'GSM1855984': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3(126-444) truncation mutant (TA1del) expressed'}, 'GSM1855987': {'passages': '3-7', 'antibody': 'anti-H3K4me1 (ab8895)', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1855986': {'passages': '3-7', 'antibody': 'anti-H3K4me1 (ab8895)', 'variation': 'Control cells (vector control)'}, 'GSM1855989': {'passages': '3-7', 'antibody': 'anti-H3K4me1 (ab8895)', 'variation': 'Ty1-TA1del expressed'}, 'GSM1855988': {'passages': '3-7', 'antibody': 'anti-H3K4me1 (ab8895)', 'variation': 'Ty1-GATA3 expressed'}, 'GSM2644430': {'with': 'Non-targeting control siRNA', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM2644431': {'with': 'NFATC2 siRNA', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM2589391': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589390': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM1902618': {'line': 'PrEC', 'tissue': 'prostate'}, 'GSM1902619': {'line': 'PrEC', 'tissue': 'prostate'}, 'GSM2093100': {'bin': '13', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2069838': {'status': 'Dead', 'rnaseq': 'unstranded', 'gender': 'F', 'mapki': 'N', 'nras': 'Q61R', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'L clavicle', 'nf1': 'K615K Splice Site', 'time': 'pre-treatment', 'id': 'Pt20', 'treatment': 'Pembrolizumab'}, 'GSM2093102': {'bin': '13', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': '12', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093103': {'bin': '13', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093104': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'negative', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093105': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'negative', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': '19', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093106': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093107': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2069831': {'status': 'Alive', 'rnaseq': 'unstranded', 'gender': 'M', 'mapki': 'Y', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'Neck, SC', 'time': 'pre-treatment', 'id': 'Pt10', 'treatment': 'Pembrolizumab'}, 'GSM2069830': {'status': 'Alive', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'N', 'site': 'UCLA', 'response': 'Complete Response', 'tissue': 'Melanoma biopsies', 'location': 'L forearm, SC', 'treatment': 'Pembrolizumab', 'id': 'Pt9', 'braf': 'V600K'}, 'GSM2069833': {'status': 'Alive', 'rnaseq': 'unstranded', 'gender': 'F', 'mapki': 'N', 'site': 'UCLA', 'response': 'Complete Response', 'tissue': 'Melanoma biopsies', 'location': 'Lower back, SC', 'time': 'pre-treatment', 'id': 'Pt13', 'treatment': 'Pembrolizumab'}, 'GSM2069832': {'status': 'Dead', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'N', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'L lower abdomen, SC', 'treatment': 'Pembrolizumab', 'id': 'Pt12', 'braf': 'V600E'}, 'GSM2069835': {'status': 'Dead', 'rnaseq': 'unstranded', 'gender': 'M', 'mapki': 'Y', 'nras': 'G13D', 'site': 'UCLA', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'R clavicle, LN', 'nf1': 'Q1255*', 'time': 'pre-treatment', 'id': 'Pt15', 'treatment': 'Pembrolizumab'}, 'GSM2069834': {'status': 'Alive', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'F', 'mapki': 'N', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'R neck, SC', 'nf1': 'R2349C', 'treatment': 'Pembrolizumab', 'id': 'Pt14', 'braf': 'V600E'}, 'GSM2069837': {'status': 'Alive', 'rnaseq': 'unstranded', 'gender': 'M', 'mapki': 'N', 'nras': 'Q61K', 'site': 'UCLA', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'Chest, SC', 'time': 'pre-treatment', 'id': 'Pt19', 'treatment': 'Pembrolizumab'}, 'GSM2069836': {'status': 'Dead', 'rnaseq': 'unstranded', 'time': 'on-treatment', 'gender': 'M', 'mapki': 'Y', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'Lung', 'treatment': 'Pembrolizumab', 'id': 'Pt16', 'braf': 'V600E'}, 'GSM2062117': {'line': 'NB4', 'shRNA': 'shRNA targeting human ARID1B gene'}, 'GSM2062116': {'line': 'NB4', 'shRNA': 'shRNA targeting human ARID1B gene'}, 'GSM2062115': {'line': 'NB4', 'shRNA': 'control/non-target shRNA'}, 'GSM2100873': {'status': 'no', 'gender': 'male', 'age': '67', 'race': 'white'}, 'GSM2100872': {'status': 'yes', 'gender': 'male', 'age': '54', 'race': 'white'}, 'GSM2100871': {'status': 'no', 'gender': 'female', 'age': '63', 'race': 'white'}, 'GSM2100870': {'status': 'yes', 'gender': 'male', 'age': '77', 'race': 'white'}, 'GSM2100877': {'status': 'yes', 'gender': 'female', 'age': '28', 'race': 'white'}, 'GSM2100876': {'status': 'yes', 'gender': 'male', 'age': '69', 'race': 'white'}, 'GSM2100875': {'status': 'yes', 'gender': 'male', 'age': '49', 'race': 'black'}, 'GSM2100874': {'status': 'no', 'gender': 'male', 'age': '67', 'race': 'white'}, 'GSM2100879': {'status': 'no', 'gender': 'female', 'age': '71', 'race': 'white'}, 'GSM2100878': {'status': 'yes', 'gender': 'male', 'age': '64', 'race': 'black'}, 'GSM3577499': {'line': 'Human Intrahepatic Biliary Epithelial Cells (HIBEC)', 'agent': 'Vehicle (Control)', 'passage': 'P4-6'}, 'GSM2152779': {'antibody': 'anti-Acinus antibody (Calbiochem, ab-2 PC552)'}, 'GSM2152778': {'antibody': 'anti-Acinus antibody (Calbiochem, ab-2 PC552)'}, 'GSM2152773': {'transfection': 'pCG', 'antibody': 'T7 Tag antibody Agarose (Novagen, 69026)'}, 'GSM2152772': {'transfection': 'pCG', 'antibody': 'T7 Tag antibody Agarose (Novagen, 69026)'}, 'GSM2152771': {'transfection': 'pCG', 'antibody': 'T7 Tag antibody Agarose (Novagen, 69026)'}, 'GSM2152770': {'transfection': 'T7-Acinus S* construct', 'antibody': 'T7 Tag antibody Agarose (Novagen, 69026)'}, 'GSM2152777': {'antibody': 'Rabbit IgG (Millipore 12-370, Lot DAM1795389)'}, 'GSM2152776': {'antibody': 'Rabbit IgG (Millipore 12-370, Lot DAM1795389)'}, 'GSM2093092': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2152774': {'antibody': 'anti-Acinus antibody (Calbiochem, ab-2 PC552)'}, 'GSM1446792': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'vehicle', 'passage': '--'}, 'GSM1853600': {'line': 'HeLa', 'treatment': '20nM Ctrl siRNA - Dharmacon'}, 'GSM1155168': {'tnm': 'T1N0M0', 'gender': 'M', 'age': '63', 'tissue': 'renal pelvis'}, 'GSM1155160': {'tnm': 'T3N0M0', 'gender': 'F', 'age': '56', 'tissue': 'renal pelvis'}, 'GSM1155161': {'tnm': 'T3N0M0', 'gender': 'M', 'age': '68', 'tissue': 'renal pelvis'}, 'GSM1155162': {'tnm': 'T3N0M0', 'gender': 'M', 'age': '68', 'tissue': 'renal pelvis'}, 'GSM1155163': {'tnm': 'T3N0M0', 'gender': 'F', 'age': '53', 'tissue': 'renal pelvis'}, 'GSM1155164': {'tnm': 'T3N0M0', 'gender': 'F', 'age': '53', 'tissue': 'renal pelvis'}, 'GSM1155165': {'tnm': 'T2N0M0', 'gender': 'F', 'age': '57', 'tissue': 'renal pelvis'}, 'GSM1155166': {'tnm': 'T2N0M0', 'gender': 'F', 'age': '57', 'tissue': 'renal pelvis'}, 'GSM1155167': {'tnm': 'T1N0M0', 'gender': 'M', 'age': '63', 'tissue': 'renal pelvis'}, 'GSM1358451': {'type': 'BJ foreskin fibroblasts', 'treatment': 'none', 'stage': 'senescent'}, 'GSM1358450': {'type': 'BJ foreskin fibroblasts', 'treatment': '48 hours with p38-MAPK inhibitor SB203580 (Millipore)', 'stage': 'senescent'}, 'GSM2029249': {'type': 'Heterologous pronuclear transfer embryo 3'}, 'GSM1358452': {'type': 'BJ foreskin fibroblasts', 'treatment': 'none', 'stage': 'young'}, 'GSM2309519': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Bicep muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309518': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Bicep muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2112820': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2309511': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'TBCA', 'dose': '30 uM'}, 'GSM2309510': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'TBCA', 'dose': '30 uM'}, 'GSM2309513': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'Tunicamycin', 'dose': '30 uM'}, 'GSM2581289': {'race': 'African American', 'patient': '5342', 'area': 'BA6', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170310B', 'histology': 'Coronal sample, Section 11', 'age': '23 years'}, 'GSM2309515': {'number': 'Exp 6', 'time': '6 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309514': {'number': 'Exp 6', 'time': '6 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309517': {'number': 'Exp 6', 'time': '6 hours', 'replicate': '2', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2309516': {'number': 'Exp 6', 'time': '6 hours', 'replicate': '1', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2666125': {'age': 'Day 130', 'well': 'H7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000288'}, 'GSM2175037': {'line': 'K562'}, 'GSM2175036': {'line': 'K562'}, 'GSM2175035': {'line': 'K562'}, 'GSM2175034': {'line': 'K562'}, 'GSM1435518': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'lymphoblastic cell line'}, 'GSM1435519': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'lymphoblastic cell line'}, 'GSM1435514': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'lymphoblastic cell line'}, 'GSM1435515': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'lymphoblastic cell line'}, 'GSM1435516': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'lymphoblastic cell line'}, 'GSM1435517': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'lymphoblastic cell line'}, 'GSM1435510': {'type': 'Fibroblast primary cell line'}, 'GSM1435511': {'type': 'Fibroblast primary cell line'}, 'GSM2175039': {'line': 'K562'}, 'GSM1435513': {'type': 'Fibroblast primary cell line'}, 'GSM987822': {'donor': 'healthy donor 2', 'state': 'healthy', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987823': {'donor': 'healthy donor 3', 'state': 'healthy', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM2475289': {'age': '62', 'tissue': 'Peripheral Retina', 'Sex': 'Female'}, 'GSM987821': {'donor': 'healthy donor 2', 'state': 'healthy', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM987826': {'donor': 'healthy donor 4', 'state': 'healthy', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987827': {'donor': 'pancreatic cancer patient 2', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM987824': {'donor': 'healthy donor 3', 'state': 'healthy', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987825': {'donor': 'healthy donor 4', 'state': 'healthy', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM987828': {'donor': 'pancreatic cancer patient 2', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987829': {'donor': 'pancreatic cancer patient 3', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM2475287': {'age': '79', 'tissue': 'Macular Retina', 'Sex': 'Male'}, 'GSM2475286': {'age': '79', 'tissue': 'Peripheral RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2475285': {'age': '79', 'tissue': 'Peripheral Retina', 'Sex': 'Male'}, 'GSM2316939': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316938': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316937': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316936': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316935': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316934': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316933': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316932': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316931': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316930': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2211609': {'information': 'p53 WT, SET knocking-down', 'line': 'U2OS-derived cell line', 'replicates': '#2'}, 'GSM2211608': {'information': 'p53 WT, SET knocking-down', 'line': 'U2OS-derived cell line', 'replicates': '#1'}, 'GSM2211607': {'information': 'p53 WT', 'line': 'U2OS-derived cell line', 'replicates': '#3'}, 'GSM2211606': {'information': 'p53 WT', 'line': 'U2OS-derived cell line', 'replicates': '#2'}, 'GSM2211605': {'information': 'p53 WT', 'line': 'U2OS-derived cell line', 'replicates': '#1'}, 'GSM1620419': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620418': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2424979': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424978': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424973': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620410': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2424971': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424970': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424977': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424976': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424975': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620416': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2160171': {'line': 'HeLa'}, 'GSM1677846': {'used': 'pH1-con', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1677847': {'used': 'pH1-shGP', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1649209': {'tissue': 'beta cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1677848': {'used': 'pH1-shGP-LC', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1677849': {'used': 'pH1-saiGP-RZ', 'type': 'HEK293', 'dosage': '400 ng plasmids per well in 6-well cell culture plate', 'time': '48 hours'}, 'GSM1649208': {'tissue': 'alpha cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM2772504': {'group': 'exvivo', 'disease': 'H', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'H-391', 'cdna': 'cDNA2032'}, 'GSM2325824': {'type': 'Differentiated embryonic stem cell'}, 'GSM2081424': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081426': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM1832779': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM2081427': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2772505': {'group': 'exvivo', 'disease': 'H', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'H-392', 'cdna': 'cDNA2065'}, 'GSM1832778': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1649203': {'tissue': 'alpha cells', 'stage': 'adult'}, 'GSM2298940': {'type': 'CW738 cells'}, 'GSM1649202': {'tissue': 'alpha cells', 'stage': 'adult'}, 'GSM1085706': {'line': 'MRC-5', 'type': 'humanÂ\\xa0fetalÂ\\xa0lungÂ\\xa0fibroblastÂ\\xa0Cell'}, 'GSM1085707': {'line': 'MRC-5', 'type': 'humanÂ\\xa0fetalÂ\\xa0lungÂ\\xa0fibroblastÂ\\xa0Cell'}, 'GSM1085704': {'line': 'MRC-5', 'type': 'humanÂ\\xa0fetalÂ\\xa0lungÂ\\xa0fibroblastÂ\\xa0Cell', 'method': 'The Hydroxymethyl Collectorâ\\x84¢ Kit'}, 'GSM1085705': {'line': 'MRC-5', 'type': 'humanÂ\\xa0fetalÂ\\xa0lungÂ\\xa0fibroblastÂ\\xa0Cell', 'method': 'The Hydroxymethyl Collectorâ\\x84¢ Kit'}, 'GSM2098688': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2304839': {'used': 'CTGA, TGAC', 'type': 'T lymphocyte', 'treatment': 'input (DMSO)', 'analysis': '29'}, 'GSM2304838': {'used': 'CGTA, GATC', 'type': 'T lymphocyte', 'treatment': 'input (DMSO)', 'analysis': '29'}, 'GSM2304831': {'used': 'TCAG, TCGA', 'type': 'T lymphocyte', 'treatment': 'PHA', 'analysis': '29'}, 'GSM2304830': {'used': 'AGCT, TGCA', 'type': 'T lymphocyte', 'treatment': 'PHA', 'analysis': '29'}, 'GSM2304833': {'used': 'GACT, GCTA', 'type': 'T lymphocyte', 'treatment': 'VOR', 'analysis': '29'}, 'GSM2304832': {'used': 'GTAC, TAGC', 'type': 'T lymphocyte', 'treatment': 'VOR', 'analysis': '29'}, 'GSM2304835': {'used': 'ACTG, GTCA', 'type': 'T lymphocyte', 'treatment': 'VOR', 'analysis': '29'}, 'GSM2304834': {'used': 'AGTC, TACG', 'type': 'T lymphocyte', 'treatment': 'VOR', 'analysis': '29'}, 'GSM2304837': {'used': 'ATCG, ATGC', 'type': 'T lymphocyte', 'treatment': 'input (DMSO)', 'analysis': '29'}, 'GSM2462655': {'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '50P/S'}, 'GSM2150388': {'treatment': 'DMSO'}, 'GSM2150389': {'treatment': 'SB939'}, 'GSM2150380': {'antibody': 'H3K36me3', 'treatment': 'SB939'}, 'GSM2186944': {'sensitivity': 'sensitive', 'type': '3D culture'}, 'GSM2150382': {'antibody': 'H3K4me3', 'treatment': 'SB939'}, 'GSM2150383': {'antibody': 'H3K9ac', 'treatment': 'SB939'}, 'GSM2150384': {'antibody': 'H3K9me3', 'treatment': 'SB939'}, 'GSM2150385': {'antibody': 'Input', 'treatment': 'SB939'}, 'GSM2150386': {'treatment': 'DAC'}, 'GSM2150387': {'treatment': 'DACSB'}, 'GSM2462658': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '100P/S'}, 'GSM2593365': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a', 'variation': 'IGFL2-AS1 knockdown'}, 'GSM2593364': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a', 'variation': 'IGFL2-AS1 knockdown'}, 'GSM2593363': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a', 'variation': 'IGFL2-AS1 knockdown'}, 'GSM2593362': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a', 'variation': 'control'}, 'GSM2593361': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a', 'variation': 'control'}, 'GSM2462659': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '100P/S'}, 'GSM2772501': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'SYS-208', 'cdna': 'cDNA2046'}, 'GSM2337058': {'origin': 'cells in vitro', 'line': 'COLO858', 'type': 'melanoma cell line', 'treatment': 'DMSO (vehicle)'}, 'GSM1674768': {'type': 'multiple myeloma'}, 'GSM1674769': {'type': 'multiple myeloma'}, 'GSM2772502': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'SYS-37', 'cdna': 'cDNA2052'}, 'GSM1674767': {'type': 'multiple myeloma'}, 'GSM2309591': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM1701346': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HET SNP13/HET SNP8 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM2186946': {'sensitivity': 'sensitive', 'type': '3D culture'}, 'GSM2772503': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'SYS-68', 'cdna': 'cDNA2031'}, 'GSM2309590': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM2186949': {'sensitivity': 'resisitant', 'type': '3D culture'}, 'GSM3594262': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594263': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594260': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594261': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594266': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594267': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594264': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594265': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594268': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594269': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM2186948': {'sensitivity': 'resisitant', 'type': '3D culture'}, 'GSM1293750': {'tissue': 'prostate'}, 'GSM2543818': {'library_id': 'lib7930', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543819': {'library_id': 'lib7931', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1864246': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T1'}, 'GSM1864247': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T2'}, 'GSM1864245': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T3'}, 'GSM2543810': {'library_id': 'lib7918', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543811': {'library_id': 'lib7919', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1864248': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T3'}, 'GSM2543813': {'library_id': 'lib7925', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543814': {'library_id': 'lib7926', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543815': {'library_id': 'lib7927', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543816': {'library_id': 'lib7928', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543817': {'library_id': 'lib7929', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2309595': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM1563138': {'type': 'mesenchymal stem cells'}, 'GSM1563139': {'type': 'mesenchymal stem cells'}, 'GSM1563136': {'type': 'mesenchymal stem cells'}, 'GSM1563137': {'type': 'mesenchymal stem cells'}, 'GSM1563135': {'type': 'alveolar rhabdomyosarcoma'}, 'GSM1919223': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'control empty vector (pcDNA) with stimulation with recombinant WNT5A'}, 'GSM2309594': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM1295092': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'Mouse Mab from H. Koseki'}, 'GSM755027': {'knockdown': 'ELAVL1/HuR siRNA1 (see Lebedeva et. Al 2011)', 'line': 'HeLa'}, 'GSM755026': {'knockdown': 'ELAVL1/HuR siRNA1 (see Lebedeva et. Al 2011)', 'line': 'HeLa'}, 'GSM755025': {'knockdown': 'none', 'line': 'HeLa'}, 'GSM2545881': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2545880': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2545883': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2545882': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2247486': {'control': 'overexpressing', 'number': '2', 'passage': '5'}, 'GSM2247487': {'control': 'control', 'number': '2', 'passage': '5'}, 'GSM2545887': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2247485': {'control': 'control', 'number': '1', 'passage': '10'}, 'GSM2545889': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2545888': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2247488': {'control': 'overexpressing', 'number': '3', 'passage': '4'}, 'GSM2247489': {'control': 'control', 'number': '3', 'passage': '4'}, 'GSM1290220': {'vendor': 'Zymo Research', 'antibody': 'Anti-5-Methlycytosine', 'line': 'MCF-10A', 'type': 'Mammary Epithelial cells'}, 'GSM1937924': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM1937925': {'status': 'HPV35', 'gender': 'M', 'stage': 'IVa'}, 'GSM1679688': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '55'}, 'GSM1679689': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '57'}, 'GSM1937920': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM1937921': {'status': 'HPV16', 'gender': 'M', 'stage': 'III or IV'}, 'GSM1937922': {'status': 'HPV16', 'gender': 'M', 'stage': 'III'}, 'GSM1937923': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM1679682': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '87'}, 'GSM1679683': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '86'}, 'GSM1679680': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '76'}, 'GSM1679681': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '78'}, 'GSM1679686': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '52'}, 'GSM3189240': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '58', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.661399', 'percentaligned': '0.879981138', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.9116', 'original': 'Case'}, 'GSM1679684': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '54'}, 'GSM1679685': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '68'}, 'GSM3189241': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A75', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '46', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.639462', 'percentaligned': '0.891407392', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.400527', 'original': 'Control'}, 'GSM2209497': {'line': 'IMR90 cells', 'tissue': 'Lung fibroblast', 'treatment': 'Fluc siRNA transfection'}, 'GSM2209496': {'line': 'HepG2 cells', 'tissue': 'Liver', 'treatment': 'Fluc siRNA transfection'}, 'GSM2652069': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + AG1478'}, 'GSM2209495': {'line': 'HepG2 cells', 'tissue': 'Liver', 'treatment': 'sPom121 siRNA transfection'}, 'GSM485429': {'line': 'NA18504'}, 'GSM485428': {'line': 'NA18507'}, 'GSM485427': {'line': 'NA19114'}, 'GSM485426': {'line': 'NA18502'}, 'GSM485425': {'line': 'NA19138'}, 'GSM485424': {'line': 'NA18505'}, 'GSM485423': {'line': 'NA19127'}, 'GSM485422': {'line': 'NA18519'}, 'GSM485421': {'line': 'NA18508'}, 'GSM485420': {'line': 'NA19140'}, 'GSM2840294': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840295': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840296': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840297': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840290': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840291': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840292': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840293': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840298': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1363510': {'grade': 'NA', 'alb': '41.6', 'tb': '20.4', 'individual': 'HCC2', 'alt': '19', 'pt': '11.9', 'hbvdna': '6210', 'ca199': '<0.8', 'hgb': '140', 'method': 'RFA', 'ggt': '123.4', 'cea': '4.41', 'ast': '33', 'rna': 'Yes', 'db': '6.7', 'cirrhosis': 'NA', 'afp': '1461.1', 'hbsag': '>240ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '43', 'ltx': 'B', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.42'}, 'GSM1363511': {'grade': 'NA', 'alb': '33.9', 'tb': '34.8', 'individual': 'HCC3', 'alt': '30', 'pt': '12.3', 'hbvdna': '<500', 'ca199': '119.8', 'hgb': '144', 'method': 'RFA', 'ggt': '198.7', 'cea': '3.3', 'ast': '56', 'rna': 'Yes', 'db': '15.5', 'cirrhosis': 'Yes', 'afp': '>3000', 'hbsag': '>240ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '42', 'ltx': 'B', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '7.23'}, 'GSM2303572': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM2087387': {'line': 'VU-1729', 'type': 'human oral cavity carcinoma cell line', 'variation': 'parental'}, 'GSM2093097': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2087389': {'line': 'VU-1729', 'type': 'human oral cavity carcinoma cell line', 'variation': 'parental'}, 'GSM2087388': {'line': 'VU-1729', 'type': 'human oral cavity carcinoma cell line', 'variation': 'parental'}, 'GSM3148591': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148590': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148593': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148592': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148595': {'tissue': 'lymph node', 'type': 'CD45+ leukocytes'}, 'GSM3148594': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148597': {'tissue': 'lymph node', 'type': 'CD45+ leukocytes'}, 'GSM3148596': {'tissue': 'lymph node', 'type': 'CD45+ leukocytes'}, 'GSM3148599': {'tissue': 'lymph node', 'type': 'CD45+ leukocytes'}, 'GSM3148598': {'tissue': 'lymph node', 'type': 'CD45+ leukocytes'}, 'GSM2390979': {'disease': 'Multiple Sclerosis'}, 'GSM2390978': {'disease': 'Multiple Sclerosis'}, 'GSM2390971': {'disease': 'Multiple Sclerosis'}, 'GSM2390970': {'disease': 'Multiple Sclerosis'}, 'GSM2390973': {'disease': 'Multiple Sclerosis'}, 'GSM2390972': {'disease': 'Multiple Sclerosis'}, 'GSM2390975': {'disease': 'Multiple Sclerosis'}, 'GSM2390974': {'disease': 'Multiple Sclerosis'}, 'GSM2390977': {'disease': 'Multiple Sclerosis'}, 'GSM2390976': {'disease': 'Multiple Sclerosis'}, 'GSM1919224': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'control empty vector (pcDNA) with stimulation with recombinant WNT5A'}, 'GSM2543851': {'library_id': 'lib7973', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2188718': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-183', 'er': 'negative'}, 'GSM1312725': {'line': 'HGDP01081', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mbuti Pygmy'}, 'GSM2088009': {'status': 'Dysplasia', 'ratio': '2.11856797913312', 'age': '52', 'years': '65', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '49273138', 'alignment': '30019301'}, 'GSM2088008': {'status': 'Dysplasia', 'ratio': '1.3970620452197', 'age': '55', 'years': '50', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '53837800', 'alignment': '33140085'}, 'GSM1312724': {'line': 'HGDP00476', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Mbuti Pygmy'}, 'GSM2088005': {'status': 'Dysplasia', 'ratio': '1.19256385989773', 'age': '57', 'years': '40', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '81588658', 'alignment': '50331635'}, 'GSM2088004': {'status': 'Dysplasia', 'ratio': '1.20885950984169', 'age': '49', 'years': '35', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '87409558', 'alignment': '54166611'}, 'GSM2088007': {'status': 'Dysplasia', 'ratio': '1.59076821602087', 'age': '69', 'years': '65', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '82209624', 'alignment': '50968636'}, 'GSM2088006': {'status': 'Dysplasia', 'ratio': '1.35446505556543', 'age': '64', 'years': '37.58', 'content': '47.47', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '54941698', 'alignment': '34059849'}, 'GSM2088003': {'status': 'Dysplasia', 'ratio': '1.25508564705863', 'age': '50', 'years': '34', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '70579486', 'alignment': '43331210'}, 'GSM2088002': {'status': 'Dysplasia', 'ratio': '1.34213035203572', 'age': '69', 'years': '58', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '66570222', 'alignment': '41171302'}, 'GSM2585373': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585372': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585371': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585370': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585377': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585376': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585375': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585374': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585379': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585378': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM1395684': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395429': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1256809': {'marker': 'unsorted', 'tissue': 'peripheral blood', 'type': 'Total white blood cells'}, 'GSM1395428': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395427': {'subtype': 'Pro+Neu', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395426': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395425': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395424': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2666122': {'age': 'Day 130', 'well': 'D12', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1312729': {'line': 'HGDP01264', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mozabite'}, 'GSM1322954': {'subtype': 'MLPS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1395421': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395420': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2287077': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2544082': {'library_id': 'lib8406', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2287075': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287074': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287073': {'gender': 'male', 'type': 'Pooled'}, 'GSM2287072': {'gender': 'male', 'type': 'Pooled'}, 'GSM2287071': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2756187': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2544080': {'library_id': 'lib8404', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2287079': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287078': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2544081': {'library_id': 'lib8405', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544086': {'library_id': 'lib8416', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544087': {'library_id': 'lib8417', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544084': {'library_id': 'lib8408', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544085': {'library_id': 'lib8409', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1917641': {'primary': 'No', 'agent': 'None', 'xenograft': 'Yes'}, 'GSM1897301': {'line': 'HCC1599', 'type': 'breast cancer cell line'}, 'GSM1897300': {'line': 'HCC1569', 'type': 'breast cancer cell line'}, 'GSM1897303': {'line': 'HCC1937', 'type': 'breast cancer cell line'}, 'GSM1897302': {'line': 'HCC1806', 'type': 'breast cancer cell line'}, 'GSM1897305': {'line': 'HCC202', 'type': 'breast cancer cell line'}, 'GSM1897304': {'line': 'HCC1954', 'type': 'breast cancer cell line'}, 'GSM1897307': {'line': 'HCC2218', 'type': 'breast cancer cell line'}, 'GSM1897306': {'line': 'HCC2185', 'type': 'breast cancer cell line'}, 'GSM1897309': {'line': 'HCC3153', 'type': 'breast cancer cell line'}, 'GSM1897308': {'line': 'HCC2688', 'type': 'breast cancer cell line'}, 'GSM2480876': {'line': 'MDA-MB-231'}, 'GSM2480877': {'line': 'MDA-MB-231'}, 'GSM2480878': {'line': 'MDA-MB-231'}, 'GSM2243622': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'B8', 'cluster': '9', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'OPC', 'id': 'BT_S2'}, 'GSM2243623': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243620': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'G6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243621': {'type': 'Differentiated ES cells'}, 'GSM2243626': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243627': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243624': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243625': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243628': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243629': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'G9', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2193048': {'sirna': 'PAX8 siRNA pool', 'line': 'Kurmomachi', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15403, s15404, s15405, Ambion'}, 'GSM2171882': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171883': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171880': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171881': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171886': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171887': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171884': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171885': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1711854': {'expression': '+', 'line': 'MKL-1', 'type': 'Merkel cell carcinoma', 'polyomavirus': 'positive', 'treatment': '+'}, 'GSM2171889': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM1711852': {'expression': '+', 'line': 'MKL-1', 'type': 'Merkel cell carcinoma', 'polyomavirus': 'positive', 'treatment': '+'}, 'GSM1711853': {'expression': '+', 'line': 'MKL-1', 'type': 'Merkel cell carcinoma', 'polyomavirus': 'positive', 'treatment': '+'}, 'GSM1711850': {'expression': '-', 'line': 'MKL-1', 'type': 'Merkel cell carcinoma', 'polyomavirus': 'positive', 'treatment': '-'}, 'GSM1711851': {'expression': '-', 'line': 'MKL-1', 'type': 'Merkel cell carcinoma', 'polyomavirus': 'positive', 'treatment': '-'}, 'GSM2193049': {'sirna': 'non-transfection control', 'line': 'FT33', 'type': 'Immortalized fallopian tube secretory cell'}, 'GSM2370649': {'antibodies': 'H3K4me1 (Abcam ab8895)', 'type': 'Resting TEM CD4 purified cells', 'ids': '1153'}, 'GSM2414769': {'line': 'GEO', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2370648': {'antibodies': 'H3K4me1 (Abcam ab8895)', 'type': 'Resting TEM CD4 purified cells', 'ids': '394'}, 'GSM2390909': {'disease': 'Healthy Control'}, 'GSM2414768': {'line': 'DLD1', 'type': 'epithelial colorectal cancer cell line'}, 'GSM1540510': {'state': 'Lyme disease', 'individual': 'patient 01-49', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM2370641': {'antibodies': 'H3K4me1 (Abcam ab8895)', 'type': 'Resting TCM CD4 purified cells', 'ids': '481'}, 'GSM2747290': {'line': 'L21', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'IL3IgG from blood donor #2'}, 'GSM2747291': {'line': 'L21', 'passages': '5-10', 'type': 'Lung-derived fibroblasts', 'phenotype': 'non-fibrotic', 'treatment': 'IL5IgG from blood donor #2'}, 'GSM2370640': {'antibodies': 'H3K4me1 (Abcam ab8895)', 'type': 'Resting TCM CD4 purified cells', 'ids': '395'}, 'GSM2170593': {'stage': 'Hepatic endoderm 1'}, 'GSM2170592': {'Error': \"('Connection aborted.', error(104, 'Connection reset by peer'))\"}, 'GSM2170591': {'stage': 'Hepatic endoderm 1'}, 'GSM2170590': {'stage': 'Hepatic endoderm 1'}, 'GSM2170597': {'stage': 'Hepatic endoderm 1'}, 'GSM2170596': {'stage': 'Hepatic endoderm 1'}, 'GSM2170595': {'connection': \"[Errno 101] Network is unreachable',))\", 'Error': \"HTTPSConnectionPool(host='www.ncbi.nlm.nih.gov', port=443): Max retries exceeded with url: /geo/query/acc.cgi?acc=GSM2170595 (Caused by NewConnectionError('\"}, 'GSM2170594': {'stage': 'Hepatic endoderm 1'}, 'GSM2348390': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348391': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2170599': {'stage': 'Hepatic endoderm 1'}, 'GSM2170598': {'stage': 'Hepatic endoderm 1'}, 'GSM2348394': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348395': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348396': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348397': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1965026': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965027': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965024': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965025': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965022': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965023': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965020': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965021': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965028': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965029': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1666282': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'sirna': 'siTP53'}, 'GSM1666283': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'sirna': 'siTP53'}, 'GSM1666286': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'sirna': 'siCTRL'}, 'GSM1666287': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'sirna': 'siCTRL'}, 'GSM2222368': {'type': 'HEK Gibco'}, 'GSM1666285': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'sirna': 'siCTRL'}, 'GSM2573761': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573760': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2581281': {'race': 'Caucasian', 'patient': '4590', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170215A', 'histology': 'Coronal sample, Section 31', 'age': '20 years'}, 'GSM1980106': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980107': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2262818': {'tissue': 'pancreas'}, 'GSM2262819': {'tissue': 'pancreas'}, 'GSM2262814': {'tissue': 'pancreas'}, 'GSM2092565': {'individual': 'patient 12 (glioblastoma)', 'tissue': 'brain'}, 'GSM2262816': {'tissue': 'pancreas'}, 'GSM2262817': {'tissue': 'pancreas'}, 'GSM2262810': {'tissue': 'pancreas'}, 'GSM2262811': {'tissue': 'pancreas'}, 'GSM2262812': {'tissue': 'pancreas'}, 'GSM2092564': {'repertoire': 'TCR-beta', 'individual': 'patient 12 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2339855': {'type': 'neural crest cells', 'infection': 'ZIKV-PRVABC59'}, 'GSM2339854': {'type': 'neural crest cells', 'infection': 'ZIKV-PRVABC59'}, 'GSM2339853': {'type': 'neural crest cells', 'infection': 'mock'}, 'GSM2339852': {'type': 'neural crest cells', 'infection': 'mock'}, 'GSM2339851': {'type': 'peripheral neurons', 'infection': 'ZIKV-PRVABC59'}, 'GSM2339850': {'type': 'peripheral neurons', 'infection': 'ZIKV-PRVABC59'}, 'GSM2573766': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2142448': {'gender': 'male', 'age': '71', 'who': '0', 'dead': '1', 'date': '2008-09-09', 'histology': '3', 'tnm': '2', 'smoking': '1'}, 'GSM2142449': {'gender': 'male', 'age': '65', 'who': '0', 'dead': '1', 'date': '2007-03-15', 'histology': '3', 'tnm': '2', 'smoking': '1'}, 'GSM2142444': {'gender': 'male', 'age': '74', 'who': '1', 'dead': '1', 'date': '2011-05-01', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142445': {'gender': 'female', 'age': '74', 'who': '0', 'dead': '1', 'date': '2012-09-19', 'histology': '2', 'tnm': '3', 'smoking': '2'}, 'GSM2142446': {'gender': 'male', 'age': '64', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142447': {'gender': 'female', 'age': '72', 'who': '0', 'dead': '1', 'date': '2008-02-03', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142443': {'gender': 'male', 'age': '78', 'who': '1', 'dead': '1', 'date': '2010-02-19', 'histology': '2', 'tnm': '3', 'smoking': '3'}, 'GSM2430833': {'duration': '1 hr', 'pattern': 'Pulsatile', 'type': 'HUVEC', 'batch': '1'}, 'GSM1333754': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM2430832': {'duration': '24 hr', 'pattern': 'Static', 'type': 'HUVEC', 'batch': '1'}, 'GSM2416842': {'antibody': 'None', 'line': 'HeLa', 'type': 'steady-state ribo-/poly(A)- RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM2430831': {'duration': '12 hr', 'pattern': 'Static', 'type': 'HUVEC', 'batch': '1'}, 'GSM2430830': {'duration': '4 hr', 'pattern': 'Static', 'type': 'HUVEC', 'batch': '1'}, 'GSM2430837': {'duration': '1 hr', 'pattern': 'Oscillatory', 'type': 'HUVEC', 'batch': '1'}, 'GSM2193046': {'sirna': 'PAX8 siRNA 404', 'line': 'Kurmomachi', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15404, Ambion'}, 'GSM2430836': {'duration': '24 hr', 'pattern': 'Pulsatile', 'type': 'HUVEC', 'batch': '1'}, 'GSM2430835': {'duration': '12 hr', 'pattern': 'Pulsatile', 'type': 'HUVEC', 'batch': '1'}, 'GSM2416843': {'antibody': 'None', 'line': 'HeLa', 'type': 'steady-state ribo-/poly(A)- RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM2430834': {'duration': '4 hr', 'pattern': 'Pulsatile', 'type': 'HUVEC', 'batch': '1'}, 'GSM1281591': {'line': 'A673', 'type': 'Ewing Sarcoma cells', 'variation': 'stably expressing shRNA targeting EWS-FLI1'}, 'GSM2193047': {'sirna': 'PAX8 siRNA 405', 'line': 'Kurmomachi', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15405, Ambion'}, 'GSM3190819': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.019452'}, 'GSM3190818': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'No', 'visit': 'None', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'F', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', '4': 'No', '2': 'No', 'years': '9', 'libcounts': '6.150533', 'event': 'Case', '229e': 'No', 'nl63': 'No'}, 'GSM2562545': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1958518': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM1958519': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM3190811': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'Yes', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.705996'}, 'GSM3190810': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-Cpat19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.227918'}, 'GSM1958514': {'type': 'Calvarial osteoblast', 'Sex': 'F'}, 'GSM3190812': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', '229e': 'Yes', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.744069'}, 'GSM3190815': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A12', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'F', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', '4': 'No', '2': 'No', 'years': '7', 'libcounts': '6.004617', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM3190814': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.209029'}, 'GSM3190817': {'boca': 'NA', 'years': '16', 'tissue': 'Peripheral Blood', 'adv': 'NA', 'hrv': 'NA', 'visit': 'NA', '1': 'NA', '3': 'NA', '2': 'NA', 'flowcell': 'CB5HFANXX', '4': 'NA', 'count': '4.7', 'mpv': 'NA', 'hku1': 'NA', '229e': 'NA', 'a': 'NA', 'v0': 'Control', 'b': 'NA', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'NA', 'libcounts': '7.222611'}, 'GSM3190816': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.2', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.299656'}, 'GSM1281590': {'line': 'A673', 'type': 'Ewing Sarcoma cells', 'variation': 'stably expressing shRNA targeting EWS-FLI1'}, 'GSM2299878': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299879': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299874': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299875': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299876': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299877': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299870': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299871': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299872': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299873': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2486700': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486701': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2414762': {'line': 'C70', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2486702': {'tissue': 'esophageal adenocarcinoma'}, 'GSM1281593': {'line': 'A673', 'type': 'Ewing Sarcoma cells', 'variation': 'stably expressing shRNA targeting Luciferase gene'}, 'GSM2815951': {'line': 'H9'}, 'GSM2815950': {'line': 'H9'}, 'GSM2815953': {'line': 'H9'}, 'GSM2486703': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2815955': {'line': 'H9'}, 'GSM2815954': {'line': 'H9'}, 'GSM2815957': {'line': 'H9'}, 'GSM2815956': {'line': 'H9'}, 'GSM2815959': {'line': 'H9'}, 'GSM2815958': {'line': 'H9'}, 'GSM2464652': {'with': 'BCL11B knockdown shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '2', 'populatione': 'CD45+GFP+CD7+CD1a- T-cell precursors'}, 'GSM1551279': {'tissue': 'Normal Thyroid', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM2486706': {'tissue': 'esophageal adenocarcinoma'}, 'GSM1551270': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551271': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551272': {'tissue': 'Normal Thyroid', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551273': {'tissue': 'Normal Thyroid', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551274': {'tissue': 'Normal Thyroid', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551275': {'tissue': 'Normal Thyroid', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551276': {'tissue': 'Normal Thyroid', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551277': {'tissue': 'Normal Thyroid', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM2451044': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM3186694': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'III', 'sample_id': '01-0044'}, 'GSM3186695': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'III', 'sample_id': '01-0045'}, 'GSM3186696': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'III', 'sample_id': '01-0048'}, 'GSM3186697': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '20', 'sample_id': '32-0010', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '3', 't1': '0', 'score': '8.54647', 'fraction': '0.035925', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM3186690': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '65', 'sample_id': '01-0035', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '3', 't1': '1', 'score': '9.3605', 'fraction': '0.17475', 'inflam': '1', 'active': '1', 'stir': '2'}, 'GSM3186691': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'III', 'sample_id': '01-0041'}, 'GSM3186692': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'III', 'sample_id': '01-0042'}, 'GSM3186693': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'III', 'sample_id': '01-0043'}, 'GSM1281595': {'line': 'A673', 'type': 'Ewing Sarcoma cells', 'variation': 'stably expressing shRNA targeting Luciferase gene'}, 'GSM3186698': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'score': '0.48166', 'gender': 'female', 'age': '52', 'batch': 'III', 'rank': '1', 't1': '1', 'tissue': 'muscle biopsy', 'fraction': '0.22601', 'sample_id': '32-0011', 'stir': '2'}, 'GSM3186699': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '67', 'sample_id': '32-0012', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '1', 't1': '0', 'score': '0.35207', 'fraction': '0.055386', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM2311983': {'culture': '12', 'line': 'DCX+'}, 'GSM2311982': {'culture': '12', 'line': 'DCX+'}, 'GSM2311981': {'culture': '12', 'line': 'DCX+'}, 'GSM2311980': {'culture': '12', 'line': 'DCX+'}, 'GSM2311987': {'culture': '12', 'line': 'DCX+'}, 'GSM2050867': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2311985': {'culture': '12', 'line': 'DCX+'}, 'GSM2311984': {'culture': '12', 'line': 'DCX+'}, 'GSM2028115': {'with': 'control vector containing shRNA oligonucleotides targeting luciferase', 'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2672095': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2028117': {'with': 'TBX3-shRNA encoding retrovirus for 48hrs', 'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2028116': {'with': 'TBX3-shRNA encoding retrovirus for 48hrs', 'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2325901': {'type': 'Human embryonic stem cell'}, 'GSM2200887': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2672097': {'type': 'Single cell', 'number': 'CRISPR 24', 'stage': 'Blastocyst'}, 'GSM2200886': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM1281594': {'line': 'A673', 'type': 'Ewing Sarcoma cells', 'variation': 'stably expressing shRNA targeting Luciferase gene'}, 'GSM2325903': {'type': 'Human embryonic stem cell'}, 'GSM2467189': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM2200884': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200883': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM1513187': {'gender': 'Male', 'line': 'GM18486', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2200882': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2562558': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2200881': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2562554': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562555': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562556': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2200880': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2562550': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562551': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562552': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562553': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2653483': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653482': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653481': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653480': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653487': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653486': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653485': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653484': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653489': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653488': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2202553': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2093099': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2467187': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM2467186': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM2467185': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM2467184': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM1616925': {'classification': 'A1L3B2', 'disease_stage': 'B2/stricturing', 'age': '21', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1150596': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5574', 'number': '14'}, 'GSM1150597': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5575', 'number': '14'}, 'GSM1150594': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5572', 'number': '13'}, 'GSM1150595': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5573', 'number': '14'}, 'GSM1150592': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5570', 'number': '13'}, 'GSM1150593': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5571', 'number': '13'}, 'GSM1150590': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5567', 'number': '12'}, 'GSM1150591': {'state': 'ductal carcinoma in situ', 'tissue': 'breast', 'id': 'STT5568', 'number': '12'}, 'GSM1150598': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5576', 'number': '15'}, 'GSM1150599': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5577', 'number': '15'}, 'GSM2533758': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533759': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2141647': {'individual': 'EU240', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2194599': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194598': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2533750': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533751': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533752': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533753': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533754': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533755': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2194593': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2533757': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2464655': {'with': 'scrambled control shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '3', 'populatione': 'CD45+GFP+CD7+CD1a+ T-cell precursors'}, 'GSM2581258': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581259': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2392629': {'treatment': 'Estrogen', 'genotype': 'D538G'}, 'GSM2392628': {'treatment': 'Estrogen', 'genotype': 'D538G'}, 'GSM2581250': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM644993': {'vendor': 'Abcam mixed with in-house antibody', 'antibody': 'anti-H3K79me2', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells', 'number': 'ab3594'}, 'GSM644990': {'vendor': 'Abcam', 'antibody': 'anti-H3K4me3', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells', 'number': 'ab8580'}, 'GSM2392624': {'treatment': 'Estrogen', 'genotype': 'Y537S'}, 'GSM2392623': {'treatment': 'Estrogen', 'genotype': 'Y537S'}, 'GSM2448996': {'line': 'HMEC-1', 'drug': 'AMI-5 100μM in DMSO, 16 h'}, 'GSM2581256': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2392620': {'treatment': 'Estrogen', 'genotype': 'Wild type'}, 'GSM2543748': {'library_id': 'lib5889', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543749': {'library_id': 'lib5890', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543744': {'library_id': 'lib5885', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543745': {'library_id': 'lib5886', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543746': {'library_id': 'lib5887', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543747': {'library_id': 'lib5888', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543740': {'library_id': 'lib5881', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543741': {'library_id': 'lib5882', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543742': {'library_id': 'lib5883', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543743': {'library_id': 'lib5884', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2274686': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32734', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9324', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C08', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9324', 'studysiteshort': 'UCSF'}, 'GSM659442': {'line': 'ES cell line H1', 'timepoint': 'Day8'}, 'GSM659440': {'line': 'ES cell line H1', 'timepoint': 'Day4'}, 'GSM659441': {'line': 'ES cell line H1', 'timepoint': 'Day6'}, 'GSM2730429': {'age': '52', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'White', 'Sex': 'M'}, 'GSM2730428': {'age': '38', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'White', 'Sex': 'M'}, 'GSM2839724': {'cohort': 'Original', 'age': '77', 'id': 'C4', 'Sex': 'Male'}, 'GSM2730425': {'age': '58', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2730427': {'age': '27', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2202554': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM1431880': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '12h, ZNA, 30 uM'}, 'GSM2839725': {'cohort': 'Original', 'age': '36', 'id': 'C5', 'Sex': 'Female'}, 'GSM3189310': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C42', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.621795', 'percentaligned': '0.950376532', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.799509'}, 'GSM3189311': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A39', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.809793', 'percentaligned': '0.937695285', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.504492', 'original': 'Control'}, 'GSM3189312': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A39', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.672654', 'percentaligned': '0.948272468', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.588611', 'original': 'Control'}, 'GSM3189313': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.609277', 'percentaligned': '0.947914943', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.220733', 'original': 'Control'}, 'GSM3189314': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '15', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.593433', 'percentaligned': '0.9431595', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.274355', 'original': 'Control'}, 'GSM3189315': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.5752', 'percentaligned': '0.950718797', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.920139'}, 'GSM3189316': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.653185', 'percentaligned': '0.929078672', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.628364'}, 'GSM3189317': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '18', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.575287', 'percentaligned': '0.951306961', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.011605', 'original': 'Control'}, 'GSM1228235': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228234': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228237': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228236': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228231': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228230': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228233': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228232': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1982285': {'type': 'expanded CD4+ iNKT', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982284': {'type': 'expanded DN iNKT', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982287': {'type': 'NK', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM2153189': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2536016': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8466', 'samplename': '1_T1D#5_C91', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31786', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8466', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C91'}, 'GSM1982283': {'type': 'expanded re-iNKT', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM2536017': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8467', 'samplename': '1_T1D#5_C06', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31787', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8467', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C06'}, 'GSM1982289': {'type': 'expanded DN iNKT', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982288': {'type': 'CD4 T', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM2536018': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8471', 'samplename': '1*_T1D#5_C40', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31791', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8471', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C40'}, 'GSM2042809': {'type': 'human colon carcinoma cell line', 'treatment': 'PBS'}, 'GSM2536019': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8472', 'samplename': '1_T1D#5_C46', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31792', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8472', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C46'}, 'GSM2042807': {'type': 'human colon carcinoma cell line', 'treatment': 'Combination'}, 'GSM2042806': {'type': 'human colon carcinoma cell line', 'treatment': '5-Aza-CdR'}, 'GSM2042805': {'type': 'human colon carcinoma cell line', 'treatment': 'Vitamin C'}, 'GSM2042804': {'type': 'human colon carcinoma cell line', 'treatment': 'PBS'}, 'GSM2153188': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1261112': {'state': 'ALS', 'barcode': 'TACTCTA', 'type': 'iPSC derived motor neuron culture'}, 'GSM1862660': {'line': 'BeWo', 'condition': 'normal', 'Stage': '8h'}, 'GSM1261110': {'state': 'ALS', 'barcode': 'ATCGAGC', 'type': 'iPSC derived motor neuron culture'}, 'GSM1862666': {'line': 'Jeu_3', 'condition': 'normal', 'Stage': '16h'}, 'GSM1862667': {'line': 'Jeu_3', 'condition': 'normal', 'Stage': '24h'}, 'GSM1808073': {'tissue': 'LCLs'}, 'GSM2420649': {'line': 'HEK293T'}, 'GSM1808071': {'tissue': 'LCLs'}, 'GSM1808070': {'tissue': 'LCLs'}, 'GSM1808077': {'tissue': 'LCLs'}, 'GSM1808076': {'tissue': 'LCLs'}, 'GSM1808075': {'tissue': 'LCLs'}, 'GSM2420648': {'line': 'HEK293T'}, 'GSM1808079': {'tissue': 'LCLs'}, 'GSM1808078': {'tissue': 'LCLs'}, 'GSM2316878': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316879': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316872': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316873': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316870': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316871': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316876': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316877': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316874': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316875': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM3100462': {'treatment': 'Imatinib 24 hours'}, 'GSM1261890': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'non-invasive adenocarcinoma in situ (ais)', 'id': '3'}, 'GSM3100465': {'treatment': 'JQ1 24 hours'}, 'GSM3100464': {'treatment': 'JQ1 24 hours'}, 'GSM2420641': {'line': 'HEK293T'}, 'GSM2676835': {'passages': 'Primary', 'type': 'Chondrocytes', 'tissue': 'Cartilage'}, 'GSM2420640': {'line': 'HEK293T'}, 'GSM1709003': {'line': 'H1', 'type': 'ES derived Hematopoietic progenitor cells', 'genotype': 'GATA2-/-'}, 'GSM2420643': {'line': 'HEK293T'}, 'GSM2420642': {'line': 'HEK293T'}, 'GSM2420645': {'line': 'HEK293T'}, 'GSM2420644': {'line': 'HEK293T'}, 'GSM1978262': {'donor': 'CITH070', 'type': 'beta'}, 'GSM2420647': {'line': 'HEK293T'}, 'GSM2420646': {'line': 'HEK293T'}, 'GSM2185732': {'line': 'BJAB', 'type': 'Burkitt lymphoma cell line'}, 'GSM2185731': {'line': 'BJAB', 'type': 'Burkitt lymphoma cell line'}, 'GSM2071072': {'type': 'activated naive CD4 T cells', 'with': 'TGFb'}, 'GSM1978263': {'donor': 'ICRH025', 'type': 'beta'}, 'GSM2071073': {'type': 'activated naive CD4 T cells', 'with': 'TGFb+IL12'}, 'GSM1978260': {'donor': 'CITH053', 'type': 'beta'}, 'GSM2456020': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456021': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2595293': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'E5', 'unit': '7', '280': '1.55', 'concentration': '1 uM', 'type': 'cardiac myocytes', 'id': '3', 'condition': 'Sorafenib'}, 'GSM2595292': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'C12', 'unit': '6', '280': '1.61', 'concentration': '1 uM', 'type': 'cardiac myocytes', 'id': '5', 'condition': 'Sorafenib'}, 'GSM2456024': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2595294': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'E6', 'unit': '7', '280': '1.52', 'concentration': '1 uM', 'type': 'cardiac myocytes', 'id': '4', 'condition': 'Sorafenib'}, 'GSM2595297': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'D4', 'unit': '6', '280': '1.71', 'concentration': '0.1 uM', 'type': 'cardiac myocytes', 'id': '9', 'condition': 'Sunitinib'}, 'GSM2595296': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'D3', 'unit': '6', '280': '1.81', 'concentration': '0.1 uM', 'type': 'cardiac myocytes', 'id': '8', 'condition': 'Sunitinib'}, 'GSM2595299': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'F4', 'unit': '7', '280': '1.83', 'concentration': '0.1 uM', 'type': 'cardiac myocytes', 'id': '14', 'condition': 'Sunitinib'}, 'GSM2595298': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'F3', 'unit': '7', '280': '1.85', 'concentration': '0.1 uM', 'type': 'cardiac myocytes', 'id': '13', 'condition': 'Sunitinib'}, 'GSM1375214': {'donor': 'adult donor 1', 'tissue': 'sperm'}, 'GSM1375215': {'donor': 'adult donor 2', 'tissue': 'sperm'}, 'GSM1978261': {'donor': 'CITH068', 'type': 'beta'}, 'GSM1185129': {'with': 'Sulforaphane (SFN)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '6 hours'}, 'GSM1185128': {'with': 'Sulforaphane (SFN)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '6 hours'}, 'GSM1969334': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM1185125': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '6 hours'}, 'GSM1573662': {'line': 'LNCaP prostate cancer cells', 'passages': '10', 'genotype': 'WT', 'treatment': 'DHT'}, 'GSM1185127': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '6 hours'}, 'GSM1185126': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '6 hours'}, 'GSM2877861': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877860': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877863': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877862': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877865': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877864': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877867': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877866': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877869': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877868': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2047561': {'well': 'D09', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2773438': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL mutant', 'batch': '3/5/2015'}, 'GSM2047567': {'well': 'E03', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047566': {'well': 'E02', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047565': {'well': 'E01', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047564': {'well': 'D12', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2324284': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'R-2HG'}, 'GSM2324285': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'PBS'}, 'GSM2324286': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'R-2HG'}, 'GSM2324287': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'PBS'}, 'GSM2324280': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'R-2HG'}, 'GSM2324281': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'PBS'}, 'GSM2324282': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'R-2HG'}, 'GSM2324283': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'PBS'}, 'GSM2324288': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'R-2HG'}, 'GSM2324289': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'PBS'}, 'GSM2287470': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1171549': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM2242801': {'line': 'A375', 'replicate': '4'}, 'GSM2242800': {'line': 'A375', 'replicate': '4'}, 'GSM2242803': {'line': 'A375', 'replicate': '4'}, 'GSM2242802': {'line': 'A375', 'replicate': '4'}, 'GSM2242805': {'line': 'A375', 'replicate': '4'}, 'GSM2242804': {'line': 'A375', 'replicate': '4'}, 'GSM2242807': {'line': 'A375', 'replicate': '4'}, 'GSM2242806': {'line': 'A375', 'replicate': '4'}, 'GSM2242809': {'line': 'A375', 'replicate': '4'}, 'GSM2242808': {'line': 'A375', 'replicate': '4'}, 'GSM2462646': {'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '50P/S'}, 'GSM1978264': {'donor': 'ICRH041', 'type': 'beta'}, 'GSM980645': {'assay': 'global run-on', 'individual': 'GM12750', 'type': 'B-cells'}, 'GSM980644': {'assay': 'global run-on', 'individual': 'GM12004', 'type': 'B-cells'}, 'GSM2462645': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '1', 'condition': '50P/S'}, 'GSM1955888': {'a': '73578', 'cd38': '387', 'cd49f': '544', 'w': '67577', 'h': '71356', 'lin': '316', 'cd34': '5761', 'cd90': '545', 'cd7': '245', 'cd10': '370', 'time': '21341', 'cd135': '2721', 'cd45ra': '400'}, 'GSM1978265': {'donor': 'ICRH057', 'type': 'beta'}, 'GSM2597639': {'antibody': 'H3K18ac', 'treatment': 'DAC'}, 'GSM2597638': {'antibody': 'H3K14ac', 'treatment': 'DAC'}, 'GSM2467590': {'line': 'HEK293', 'overexpression': 'GFP Control'}, 'GSM2467591': {'line': 'HEK293', 'overexpression': 'GFP - SAHH'}, 'GSM2597637': {'antibody': 'H4K8ac', 'treatment': 'DAC'}, 'GSM2597636': {'antibody': 'H3K23ac', 'treatment': 'DAC'}, 'GSM2705524': {'condition': 'hypoxia (1% O2 24hrs)', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': '3MB-PP1', 'variation': 'CDK8as/as'}, 'GSM2705525': {'condition': 'hypoxia (1% O2 24hrs)', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': '3MB-PP1', 'variation': 'CDK8as/as'}, 'GSM2705520': {'condition': 'hypoxia (1% O2 24hrs)', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': 'DMSO', 'variation': 'CDK8as/as'}, 'GSM2705521': {'condition': 'hypoxia (1% O2 24hrs)', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': 'DMSO', 'variation': 'CDK8as/as'}, 'GSM2705522': {'condition': 'normoxia', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': '3MB-PP1', 'variation': 'CDK8as/as'}, 'GSM2705523': {'condition': 'normoxia', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': '3MB-PP1', 'variation': 'CDK8as/as'}, 'GSM1648803': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_8', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSC-derived neurons', 'id': 'ABLE'}, 'GSM1648804': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_6', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSC-derived neurons', 'id': 'ABLE'}, 'GSM1648805': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_12', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSC-derived neurons', 'id': 'ABLE'}, 'GSM1648806': {'group': 'ASD', 'gender': 'Male', 'clone': 'ACAI_1_1', 'biopsy': '13 (Fluent Speech - Child/Adolescent)', 'years': '4.5', 'volume': '1458', 'type': 'iPSC-derived neurons', 'id': 'ACAI'}, 'GSM1648807': {'group': 'ASD', 'gender': 'Male', 'clone': 'AERO_3_6', 'biopsy': '20 (Fluent Speech - Child/Adolescent)', 'years': '3.2', 'volume': '1338', 'type': 'iPSC-derived neurons', 'id': 'AERO'}, 'GSM1872988': {'tissue': 'Human normal mucosa'}, 'GSM1872989': {'tissue': 'Human colon adenoma'}, 'GSM1872982': {'tissue': 'Human normal mucosa'}, 'GSM1872983': {'tissue': 'Human colon adenoma'}, 'GSM1872980': {'tissue': 'Human normal mucosa'}, 'GSM1872981': {'tissue': 'Human colon adenoma'}, 'GSM1872986': {'tissue': 'Human normal mucosa'}, 'GSM1872987': {'tissue': 'Human colon adenoma'}, 'GSM1872984': {'tissue': 'Human normal mucosa'}, 'GSM1872985': {'tissue': 'Human colon adenoma'}, 'GSM2455700': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455701': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455702': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455703': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455704': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455705': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455706': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455707': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455708': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455709': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1585225': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1528658': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '146'}, 'GSM1528659': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '145'}, 'GSM1528652': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '136'}, 'GSM1528653': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '135'}, 'GSM1528650': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '153'}, 'GSM1528651': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '153'}, 'GSM1528656': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '149'}, 'GSM1528657': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '151'}, 'GSM1528654': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '146'}, 'GSM1528655': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '147'}, 'GSM2840153': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1946158': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '60min'}, 'GSM2840151': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840150': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840157': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840156': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840155': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1239119': {'status': '- / - / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB144', 'size': '6cm'}, 'GSM1946151': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '30min'}, 'GSM1946150': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '30min'}, 'GSM2840159': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840158': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1946155': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '30min'}, 'GSM1946154': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '30min'}, 'GSM1946157': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '60min'}, 'GSM1946156': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '60min'}, 'GSM2509928': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509929': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509926': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509927': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509924': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509925': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509922': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509923': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509920': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2509921': {'type': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2665909': {'age': 'Day 130', 'well': 'E6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665908': {'age': 'Day 130', 'well': 'E4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665903': {'age': 'Day 130', 'well': 'C12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665902': {'age': 'Day 130', 'well': 'D12', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665901': {'age': 'Day 130', 'well': 'E5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665900': {'age': 'Day 130', 'well': 'E12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665907': {'age': 'Day 130', 'well': 'F8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665906': {'age': 'Day 130', 'well': 'D2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665905': {'age': 'Day 130', 'well': 'C9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665904': {'age': 'Day 130', 'well': 'D8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2723054': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.642', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.069', 'age': '73', 'tcga_subtype_dif': '-0.317', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.259', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIA'}, 'GSM2723056': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.125', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.5', 'age': '64', 'tcga_subtype_dif': '-0.371', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.355', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2723050': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.399', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.279', 'age': '43', 'tcga_subtype_dif': '0.192', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.535', 'outcome': 'Suboptimal', 'review': 'Ovarian Ca', 'stage': 'IV'}, 'GSM2723052': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.184', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.103', 'age': '63', 'tcga_subtype_dif': '0.587', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.243', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IA'}, 'GSM1585229': {'type': 'Ribosomal profiling', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM2454071': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1885081': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM2322020': {'tissue': 'hematopoietic systerm', 'batch': 'batch1', 'stage': 'Monocytic late stage'}, 'GSM2454072': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454075': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454074': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454077': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1574748': {'concentration': '8514.8', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Diclofenac', 'conc': '42.1'}, 'GSM2454079': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454078': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2374021': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374020': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374023': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374022': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374025': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374024': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374027': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1936751': {'line': 'IMR90'}, 'GSM2374029': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374028': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1936752': {'line': 'IMR90'}, 'GSM1936753': {'line': 'IMR90'}, 'GSM2635307': {'line': 'MNNG', 'antibody': 'rabbit anti-c-Fos (Santa Cruz #sc-52)'}, 'GSM2635308': {'line': 'MNNG', 'antibody': 'rabbit anti-FOSL1/Fra-1 (Santa Cruz #sc-605)'}, 'GSM2635309': {'line': '143B', 'antibody': 'rabbit anti-c-Fos (Santa Cruz #sc-52)'}, 'GSM2462057': {'strain': 'V. parahaemolyticus POR3', 'time': '60 minutes'}, 'GSM1936756': {'line': 'IMR90'}, 'GSM1865470': {'line': 'DLD-1', 'type': 'exosomes'}, 'GSM1936757': {'line': 'IMR90'}, 'GSM2743715': {'line': 'HES2', 'type': 'human embryonic stem cell (ESC)', 'variation': 'expressing PB-Tfcp2l1{delta}CP2'}, 'GSM2743714': {'line': 'HES2', 'type': 'human embryonic stem cell (ESC)', 'variation': 'expressing PB'}, 'GSM1936758': {'line': 'IMR90'}, 'GSM2360286': {'type': 'iMGL', 'treatment': 'Rat hippocampal neurons'}, 'GSM2360287': {'type': 'iMGL', 'treatment': 'Rat hippocampal neurons'}, 'GSM650474': {'line': 'HeLa', 'variation': \"SmB/B' knockdown\"}, 'GSM650475': {'line': 'HeLa', 'variation': 'SRSF1 knockdown'}, 'GSM2754991': {'bin': '5', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '04_0030', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754990': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0030', 'previousdiagnosisoftb': 'No', 'tst': '15', 'type': 'Tcells'}, 'GSM2754995': {'bin': '5', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0197', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM650473': {'line': 'HeLa', 'variation': 'control'}, 'GSM1387802': {'line': \"modified Burkitt's lymphoma cell line (Akata)\", 'construct': 'pRTS-CD2-BZLF1-reverse', 'variation': 'harboring control tet inducible gene'}, 'GSM1387803': {'line': \"modified Burkitt's lymphoma cell line (Akata)\", 'construct': 'pRTS-CD2-BZLF1', 'variation': 'harboring BZLF1 tet inducible gene'}, 'GSM1387801': {'line': \"modified Burkitt's lymphoma cell line (Akata)\", 'construct': 'pRTS-CD2-BZLF1-reverse', 'variation': 'harboring control tet inducible gene'}, 'GSM1387804': {'line': \"modified Burkitt's lymphoma cell line (Akata)\", 'construct': 'pRTS-CD2-BZLF1', 'variation': 'harboring BZLF1 tet inducible gene'}, 'GSM1969333': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM2413535': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413534': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413537': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413536': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413531': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413530': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413533': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413532': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413539': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413538': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM927323': {'patient': '3', 'gender': 'female', 'age': '53 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIB'}, 'GSM927322': {'patient': '3', 'gender': 'female', 'age': '53 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927321': {'patient': '1', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIA'}, 'GSM927320': {'patient': '1', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927327': {'patient': '5', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIA'}, 'GSM927326': {'patient': '5', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927325': {'patient': '4', 'gender': 'female', 'age': '60 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IA'}, 'GSM927324': {'patient': '4', 'gender': 'female', 'age': '60 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM1880783': {'preparation': '5.16.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM927329': {'patient': '6', 'gender': 'female', 'age': '70 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIB'}, 'GSM927328': {'patient': '6', 'gender': 'female', 'age': '70 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM2069660': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'SPOP F133V'}, 'GSM2069661': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'SPOP F133V'}, 'GSM2069662': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'SPOP F133V'}, 'GSM2069663': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'SPOP F133V'}, 'GSM2158191': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158190': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158193': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158192': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158195': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158194': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158197': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158196': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158199': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158198': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM1133339': {'status': 'MSS', 'age': '66', 'Sex': 'female', 'state': 'metastasis', 'tissue': 'metastasis biopsy, liver', 'subject': 'P6'}, 'GSM1133338': {'status': 'MSS', 'age': '66', 'Sex': 'female', 'state': 'tumor', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P6'}, 'GSM1133331': {'status': 'MSS', 'age': '49', 'Sex': 'female', 'state': 'benign', 'tissue': 'colorectal biopsy, rectum/sigma', 'subject': 'P4'}, 'GSM1133330': {'status': 'MSI', 'age': '44', 'Sex': 'male', 'state': 'metastasis', 'tissue': 'metastasis biopsy, liver', 'subject': 'P3'}, 'GSM1133333': {'status': 'MSS', 'age': '49', 'Sex': 'female', 'state': 'metastasis', 'tissue': 'metastasis biopsy, liver', 'subject': 'P4'}, 'GSM1105863': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1133335': {'status': 'MSI', 'age': '80', 'Sex': 'female', 'state': 'tumor', 'tissue': 'colorectal biopsy, colon', 'subject': 'P5'}, 'GSM1133334': {'status': 'MSI', 'age': '80', 'Sex': 'female', 'state': 'benign', 'tissue': 'colorectal biopsy, colon', 'subject': 'P5'}, 'GSM1133337': {'status': 'MSS', 'age': '66', 'Sex': 'female', 'state': 'benign', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P6'}, 'GSM1133336': {'status': 'MSI', 'age': '80', 'Sex': 'female', 'state': 'metastasis', 'tissue': 'metastasis biopsy, lymph node', 'subject': 'P5'}, 'GSM2390939': {'disease': 'Multiple Sclerosis'}, 'GSM1880785': {'preparation': '5.16.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM2287132': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287133': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287130': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287131': {'gender': 'male', 'type': 'Pooled'}, 'GSM2287136': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287137': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287134': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287135': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2335516': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'ASCL1-/-'}, 'GSM2335517': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'ASCL1-/-'}, 'GSM2335514': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'ASCL1-/-'}, 'GSM2335515': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'ASCL1-/-'}, 'GSM2335512': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'wildtype'}, 'GSM2335513': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'ASCL1-/-'}, 'GSM2335510': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'wildtype'}, 'GSM2335511': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'wildtype'}, 'GSM2081124': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2515730': {'line': 'HCT116'}, 'GSM2515731': {'line': 'HCT116'}, 'GSM3152931': {'line': 'EMM1', 'type': 'multiple myeloma'}, 'GSM3152932': {'line': 'EMM1', 'type': 'multiple myeloma'}, 'GSM1166059': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor'}, 'GSM2816110': {'line': 'H9'}, 'GSM2816111': {'line': 'H9'}, 'GSM2816112': {'line': 'H9'}, 'GSM2535603': {'treatment': 'baseline DMSO'}, 'GSM2535604': {'treatment': 'baseline DMSO'}, 'GSM2535605': {'treatment': 'baseline DMSO'}, 'GSM2535606': {'treatment': 'baseline DMSO'}, 'GSM2816117': {'line': 'H9'}, 'GSM2535608': {'treatment': 'ET1 DMSO'}, 'GSM2535609': {'treatment': 'ET1 DMSO'}, 'GSM1588867': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588866': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588865': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588864': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588863': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1552206': {'line': 'HeLa', 'antibody': 'AGO2 (ab57113, Abcam)'}, 'GSM1588861': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588860': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM2496140': {'line': 'UMRC6', 'variation': 'FLAG-BAP', 'point': 'T4; no glucose in the growth medium for 4hr'}, 'GSM1588869': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588868': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM2411368': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411369': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411366': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411367': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411364': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411365': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411362': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411363': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411360': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411361': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1376082': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376083': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376080': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376081': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376086': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376087': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376084': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376085': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376088': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376089': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2794845': {'status': 'poorly differentiated', 'tissue': 'tumor', 'infection': 'HBV-infected', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2591'}, 'GSM1228220': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM2402797': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2829441': {'treatment': 'Jeko cell line transduced with the CRISPR/cas9 empty vector as a control, and induced with Doxycyclin for 48H'}, 'GSM2829442': {'treatment': 'Jeko cell line transduced with NR4A1 sgRNA#1, and induced with Doxycyclin for 48H'}, 'GSM2829443': {'treatment': 'Jeko cell line transduced with NR4A1 sgRNA#2, and induced with Doxycyclin for 48H'}, 'GSM2829444': {'treatment': 'Rec-1 cell line transduced with the CRISPR/cas9 empty vector as a control, and induced with Doxycyclin for 48H'}, 'GSM2829445': {'treatment': 'Rec-1 cell line transduced with NR4A1 sgRNA#1, and induced with Doxycyclin for 48H'}, 'GSM2829446': {'treatment': 'Rec-1 cell line transduced with NR4A1 sgRNA#2, and induced with Doxycyclin for 48H'}, 'GSM1505583': {'tissue': 'Muscle'}, 'GSM1505582': {'tissue': 'Prostate'}, 'GSM1505581': {'tissue': 'Placenta'}, 'GSM1505580': {'tissue': 'Ovary'}, 'GSM1505587': {'tissue': 'Thymus'}, 'GSM1505586': {'tissue': 'Testes'}, 'GSM1505585': {'tissue': 'Spleen'}, 'GSM1505584': {'tissue': 'Intestine'}, 'GSM2171929': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171928': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171921': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171920': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171923': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171922': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171925': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171924': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171927': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171926': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2109383': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM1281838': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '14', 'gender': 'Male', 'age': '54', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '620'}, 'GSM1281839': {'status': '3 months LVAD support', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Male', 'age': '73', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1997', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '536'}, 'GSM1281836': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '13', 'gender': 'Male', 'age': '54', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281837': {'status': '6 months LVAD support', 'pacemaker': 'Yes', 'fraction': '14', 'gender': 'Male', 'age': '54', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '620'}, 'GSM1281834': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Male', 'age': '66', 'tissue': 'Serum', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281835': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '21', 'gender': 'Male', 'age': '66', 'tissue': 'Serum', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281832': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '21', 'gender': 'Male', 'age': '66', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281833': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '21', 'gender': 'Male', 'age': '66', 'tissue': 'Skeletal Muscle', 'disease': 'None', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281830': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Male', 'age': '66', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM1281831': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Male', 'age': '66', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '166'}, 'GSM2411588': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411589': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411582': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411583': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411580': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411581': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411586': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411587': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411584': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411585': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM925772': {'transfection': 'HOXA1 knockdown', 'tissue': 'lung fibroblasts'}, 'GSM925773': {'transfection': 'HOXA1 knockdown', 'tissue': 'lung fibroblasts'}, 'GSM2072161': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROlow'}, 'GSM925771': {'transfection': 'HOXA1 knockdown', 'tissue': 'lung fibroblasts'}, 'GSM2072167': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROhighCCR7highCXCR5low'}, 'GSM2072166': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROhighCCR7highCXCR5low'}, 'GSM2072165': {'status': 'HIV-', 'tissue': 'Tonsil', 'phenotype': 'CD27highCD45ROhighCCR7highCXCR5low'}, 'GSM2072164': {'status': 'HIV-', 'tissue': 'Tonsil', 'phenotype': 'CD27highCD45ROhighCCR7highCXCR5low'}, 'GSM2072169': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROhighCCR7highCXCR5low'}, 'GSM2072168': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROhighCCR7highCXCR5low'}, 'GSM2274884': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34637', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10563', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C91', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10563', 'studysiteshort': 'YALE'}, 'GSM2274885': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34638', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10564', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C06', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10564', 'studysiteshort': 'YALE'}, 'GSM2274886': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34639', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10565', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C12', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10565', 'studysiteshort': 'YALE'}, 'GSM2274887': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34640', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10566', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C18', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10566', 'studysiteshort': 'YALE'}, 'GSM2274880': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34630', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10556', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C62', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10556', 'studysiteshort': 'YALE'}, 'GSM2274881': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34632', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10558', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C74', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10558', 'studysiteshort': 'YALE'}, 'GSM2274882': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34633', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10559', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C92', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10559', 'studysiteshort': 'YALE'}, 'GSM2274883': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34635', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10561', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C63', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10561', 'studysiteshort': 'YALE'}, 'GSM1001394': {'line': 'P493-6', 'type': 'B-cell lymphoma'}, 'GSM2274888': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34641', 'c1captureannotation': 'single cell', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10567', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C28', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10567', 'studysiteshort': 'YALE'}, 'GSM2274889': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34645', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10571', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C46', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10571', 'studysiteshort': 'YALE'}, 'GSM1001393': {'line': 'P493-6', 'type': 'B-cell lymphoma'}, 'GSM2125494': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'scrambled_D-siRNA'}, 'GSM2125495': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'scrambled_D-siRNA'}, 'GSM2125496': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'scrambled_D-siRNA'}, 'GSM2125497': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'INTS12_D-siRNA_A'}, 'GSM2125490': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'INTS12_D-siRNA_C'}, 'GSM2125491': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'none (untransfected)'}, 'GSM1963798': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963799': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963796': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963797': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963794': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963795': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963792': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963793': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963790': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963791': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1620680': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620681': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620682': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620683': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620684': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620685': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620686': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620687': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620688': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620689': {'type': 'MCF10a human breast cancer cells'}, 'GSM2105092': {'gender': 'Male', 'age': '21 Year old', 'batch': '1F', 'condition': 'Trisomic'}, 'GSM2640636': {'line': 'A549', 'agent': 'hRSV WT', 'infection': '96'}, 'GSM2033148': {'type': 'human umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scramble G)', 'passage': 'passage 3'}, 'GSM2033149': {'type': 'human umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scramble G)', 'passage': 'passage 3'}, 'GSM2231179': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM2033142': {'type': 'human umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scramble G)', 'passage': 'passage 3'}, 'GSM2033143': {'type': 'human umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scramble G)', 'passage': 'passage 3'}, 'GSM2033141': {'type': 'human umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scramble G)', 'passage': 'passage 3'}, 'GSM2033146': {'type': 'human umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM2033147': {'type': 'human umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scramble G)', 'passage': 'passage 3'}, 'GSM2033144': {'type': 'human umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM2033145': {'type': 'human umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM2231177': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM3586588': {'origin': 'ABC', 'pfstt': '974', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '980', 'cycles': '6', 'oscs': '0'}, 'GSM3586589': {'origin': 'GCB', 'pfstt': '729', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '803', 'cycles': '6', 'oscs': '0'}, 'GSM2231176': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM3586584': {'origin': 'ABC', 'pfstt': '1513', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1513', 'cycles': '6', 'oscs': '0'}, 'GSM3586585': {'origin': 'ABC', 'pfstt': '202', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1443', 'cycles': '6', 'oscs': '1'}, 'GSM3586586': {'origin': 'GCB', 'pfstt': '1303', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1303', 'cycles': '6', 'oscs': '0'}, 'GSM3586587': {'origin': 'GCB', 'pfstt': '993', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1150', 'cycles': '6', 'oscs': '0'}, 'GSM3586580': {'origin': 'GCB', 'pfstt': '1485', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1485', 'cycles': '6', 'oscs': '0'}, 'GSM3586581': {'origin': 'GCB', 'pfstt': '1398', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1398', 'cycles': '6', 'oscs': '0'}, 'GSM3586582': {'origin': 'GCB', 'pfstt': '1341', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1341', 'cycles': '6', 'oscs': '0'}, 'GSM3586583': {'origin': 'GCB', 'pfstt': '1496', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1532', 'cycles': '6', 'oscs': '0'}, 'GSM2222281': {'line': 'HCT116', 'genotype': 'hIDO1 overexpressing'}, 'GSM2222280': {'line': 'HCT116', 'genotype': 'hIDO1 overexpressing'}, 'GSM1401347': {'rin': '9.69', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-06-11'}, 'GSM1498309': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM2197738': {'passages': '25-30'}, 'GSM2197739': {'passages': '25-30'}, 'GSM1128650': {'tissue': 'adipose', 'treatment': 'control'}, 'GSM1128651': {'tissue': 'adipose', 'treatment': 'LPS'}, 'GSM2197730': {'passages': '25-30'}, 'GSM2197731': {'passages': '25-30'}, 'GSM2197732': {'passages': '25-30'}, 'GSM2197733': {'passages': '25-30'}, 'GSM2197734': {'passages': '25-30'}, 'GSM2197735': {'passages': '25-30'}, 'GSM2197736': {'passages': '25-30'}, 'GSM2197737': {'passages': '25-30'}, 'GSM2348633': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348632': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348631': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348630': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348637': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348636': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565139': {'construction': 'PLATE-Seq', 'drug': 'Topotecan hydrochloride'}, 'GSM2565138': {'construction': 'PLATE-Seq', 'drug': 'Lapatinib Ditosylate (Tykerb)'}, 'GSM2565137': {'construction': 'PLATE-Seq', 'drug': 'Dabrafenib (GSK2118436)'}, 'GSM2565136': {'construction': 'PLATE-Seq', 'drug': 'Carmustine'}, 'GSM2565135': {'construction': 'PLATE-Seq', 'drug': 'Vandetanib (ZD6474)'}, 'GSM2565134': {'construction': 'PLATE-Seq', 'drug': 'Mitomycin C'}, 'GSM2565133': {'construction': 'PLATE-Seq', 'drug': 'Cabazitaxel (Jevtana)'}, 'GSM2565132': {'construction': 'PLATE-Seq', 'drug': 'UNTREATED'}, 'GSM2565131': {'construction': 'PLATE-Seq', 'drug': 'UNTREATED'}, 'GSM2565130': {'construction': 'PLATE-Seq', 'drug': 'Gefitinib'}, 'GSM2307311': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1467798': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM2307313': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307312': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307315': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307314': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307317': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307316': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM1467791': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM2307318': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM1467793': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467792': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467795': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467794': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467797': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467796': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM2098419': {'line': 'HeLa S3', 'sirna': 'siRNA2_CTCF', 'passage': '5 to 8'}, 'GSM2098418': {'line': 'HeLa S3', 'sirna': 'siRNA2_CTCF', 'passage': '5 to 8'}, 'GSM2098417': {'line': 'HeLa S3', 'sirna': 'siRNA1_CTCF', 'passage': '5 to 8'}, 'GSM2098416': {'line': 'HeLa S3', 'sirna': 'siRNA1_CTCF', 'passage': '5 to 8'}, 'GSM2098415': {'line': 'HeLa S3', 'sirna': 'siRNA1_CTCF', 'passage': '5 to 8'}, 'GSM2098414': {'line': 'HeLa S3', 'sirna': 'scrambled siRNA', 'passage': '5 to 8'}, 'GSM2098413': {'line': 'HeLa S3', 'sirna': 'scrambled siRNA', 'passage': '5 to 8'}, 'GSM2098412': {'line': 'HeLa S3', 'sirna': 'scrambled siRNA', 'passage': '5 to 8'}, 'GSM2232212': {'status': 'HCV', 'patient_identifier': 'B215', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 144h', 'endogenous_ifn': 'low ISG'}, 'GSM2712678': {'condition': 'TB'}, 'GSM2712679': {'condition': 'TB'}, 'GSM1466229': {'facs': 'Unsorted', 'line': 'TCam-2', 'gender': 'Male'}, 'GSM2712676': {'condition': 'TB'}, 'GSM2141249': {'individual': 'AF23', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2722978': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.255', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.28', 'age': '57', 'tcga_subtype_dif': '-0.119', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.181', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2722970': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.003', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.448', 'age': '64', 'tcga_subtype_dif': '-0.417', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.126', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722972': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.214', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.423', 'age': '72', 'tcga_subtype_dif': '0.097', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'ASIAN', 'tcga_subtype_imr': '-0.366', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722974': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.05', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.526', 'age': '74', 'tcga_subtype_dif': '-0.583', 'stic': 'No', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.017', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722976': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.318', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.01', 'age': '66', 'tcga_subtype_dif': '0.053', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.35', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM1084088': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084089': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084082': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Sigma'}, 'GSM1084083': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'hippuristanol', 'manufacturer': 'Sigma'}, 'GSM1084080': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Santa Cruz'}, 'GSM1084081': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'hippuristanol', 'manufacturer': 'Santa Cruz'}, 'GSM1084086': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084087': {'line': '293S', 'treatment': 'hippuristanol'}, 'GSM1084084': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084085': {'line': '293S', 'treatment': 'hippuristanol'}, 'GSM2473263': {'antibody': 'H3K27ac (Abcam, ab4729, lot GR238071-1)', 'genotype': 'rWT'}, 'GSM2473262': {'antibody': 'H3K4me3 (Abcam, ab8580, lot GR240214-1)', 'genotype': 'YFFF'}, 'GSM2473261': {'antibody': 'H3K4me3 (Abcam, ab8580, lot GR240214-1)', 'genotype': 'YFFF'}, 'GSM2473260': {'antibody': 'H3K4me3 (Abcam, ab8580, lot GR240214-1)', 'genotype': 'rWT'}, 'GSM2302899': {'tetracycline': 'TET(+)', 'id': '4', 'treatment': 'control'}, 'GSM2302898': {'tetracycline': 'TET(-)', 'id': '4', 'treatment': 'IL17+TNF'}, 'GSM2473265': {'antibody': 'H3K27ac (Abcam, ab4729, lot GR238071-1)', 'genotype': 'YFFF'}, 'GSM2473264': {'antibody': 'H3K27ac (Abcam, ab4729, lot GR238071-1)', 'genotype': 'rWT'}, 'GSM2302895': {'tetracycline': 'TET(-)', 'id': '4', 'treatment': 'control'}, 'GSM2302894': {'tetracycline': 'TET(+)', 'id': '3', 'treatment': 'IL17+TNF'}, 'GSM2302897': {'tetracycline': 'TET(-)', 'id': '4', 'treatment': 'TNF'}, 'GSM2473268': {'genotype': 'rWT'}, 'GSM2302891': {'tetracycline': 'TET(+)', 'id': '3', 'treatment': 'control'}, 'GSM2302890': {'tetracycline': 'TET(-)', 'id': '3', 'treatment': 'IL17+TNF'}, 'GSM2302893': {'tetracycline': 'TET(+)', 'id': '3', 'treatment': 'TNF'}, 'GSM2302892': {'tetracycline': 'TET(+)', 'id': '3', 'treatment': 'IL17'}, 'GSM2133925': {'type': 'breast adenocarcinoma', 'treatment': 'Wip1i'}, 'GSM2133924': {'type': 'breast adenocarcinoma', 'treatment': 'Wip1i'}, 'GSM2666133': {'age': 'Day 130', 'well': 'D11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2279939': {'passages': '20-30', 'type': 'iPS-derived cardiomyocytes', 'stage': 'Differentiation D32'}, 'GSM2279938': {'passages': '20-30', 'type': 'iPS-derived cardiomyocytes', 'stage': 'Differentiation D32'}, 'GSM2279937': {'passages': '20-30', 'type': 'iPS-derived cardiomyocytes', 'stage': 'Differentiation D15'}, 'GSM2279936': {'passages': '20-30', 'type': 'iPS-derived cardiomyocytes', 'stage': 'Differentiation D15'}, 'GSM2279935': {'passages': '20-30', 'type': 'iPS-derived cardiomyocytes', 'stage': 'Differentiation D15'}, 'GSM2279934': {'passages': '20-30', 'type': 'iPS-derived cardiomyocytes', 'stage': 'Differentiation D15'}, 'GSM2279933': {'passages': '20-30', 'type': 'iPS-derived cardiac progenitor cells', 'stage': 'Differentiation D7'}, 'GSM2279932': {'passages': '20-30', 'type': 'iPS-derived cardiac progenitor cells', 'stage': 'Differentiation D7'}, 'GSM2279931': {'passages': '20-30', 'type': 'iPS-derived cardiac progenitor cells', 'stage': 'Differentiation D7'}, 'GSM2279930': {'passages': '20-30', 'type': 'iPS-derived cardiac progenitor cells', 'stage': 'Differentiation D7'}, 'GSM1581103': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581102': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581101': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581100': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581107': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM2374148': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1350192': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'wild type'}, 'GSM1350193': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'wild type'}, 'GSM1581109': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM2374149': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1350198': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'METTL3 Knockdown'}, 'GSM1350199': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'METTL3 Knockdown'}, 'GSM2666136': {'age': 'Day 130', 'well': 'C1', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2374146': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2666135': {'age': 'Day 130', 'well': 'A3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000288'}, 'GSM2374147': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1401815': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM2303148': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303149': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM1656062': {'patient': '6', 'group': 'PP', 'gender': 'female'}, 'GSM2303140': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Intact', 'id': 'ACIW009'}, 'GSM2303141': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Intact', 'id': 'ACJV399'}, 'GSM2303142': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Intact', 'id': 'ACCG268'}, 'GSM2303143': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Intact', 'id': 'ACCR015A'}, 'GSM2303144': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Intact', 'id': 'ACEK420A'}, 'GSM2303145': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Intact', 'id': 'ACEL337'}, 'GSM2303146': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACIW009'}, 'GSM2303147': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM485690': {'line': 'GM19099', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM485691': {'line': 'GM19193', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM2719769': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719768': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719767': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719766': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719765': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719764': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719763': {'source': 'H3K27me3 (Active Motif, #39155)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719762': {'source': 'H3K27me3 (Active Motif, #39155)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719761': {'source': 'H3K27me3 (Active Motif, #39155)', 'RNAi': 'scrambled control'}, 'GSM2719760': {'source': 'H3K27me3 (Active Motif, #39155)', 'RNAi': 'scrambled control'}, 'GSM2436541': {'protocol': 'AICAR for 21 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM1646727': {'status': 'Tumor', 'gender': 'M', 'age': '23', 'tissue': 'liver'}, 'GSM1616458': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Depleted BUD31'}, 'GSM1616459': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Hyperactivated MYC and depleted BUD31'}, 'GSM1646726': {'status': 'Tumor', 'gender': 'F', 'age': '71', 'tissue': 'liver'}, 'GSM1616454': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Hyperactivated MYC'}, 'GSM1616455': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Hyperactivated MYC'}, 'GSM1616456': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Depleted BUD31'}, 'GSM1616457': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Depleted BUD31'}, 'GSM2459067': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.00'}, 'GSM1616452': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Control'}, 'GSM1616453': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Hyperactivated MYC'}, 'GSM2459066': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '10.75'}, 'GSM2459061': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.08'}, 'GSM2459060': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.50'}, 'GSM2459063': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.17'}, 'GSM1646720': {'status': 'Tumor', 'gender': 'M', 'age': '74', 'tissue': 'liver'}, 'GSM2144901': {'replicate': '1', 'line': 'ALL leukemia cell line REH', 'antibody': 'Pol2 Ser2P (Abcam, catalog# ab5095)'}, 'GSM2144900': {'replicate': '1', 'line': 'ALL leukemia cell line REH', 'antibody': 'none'}, 'GSM2194418': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194419': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194410': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194411': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194412': {'type': 'delta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194413': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194414': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194415': {'type': 'acinar', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194416': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194417': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM830531': {'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'DHH003', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0129N'}, 'GSM830530': {'description': 'tier 1', 'localization': 'cell', 'datatype': 'RnaPet', 'labexpid': 'RHH014', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': '011WC'}, 'GSM830533': {'description': 'tier 1', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'RHH002', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': 'gen0122C'}, 'GSM830532': {'description': 'tier 1', 'localization': 'cell', 'datatype': 'RnaPet', 'labexpid': 'IHE001', 'readtype': '2x36', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': 'gen0114WC'}, 'GSM830534': {'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'DHG002', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0111N'}, 'GSM830537': {'description': 'tier 1', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'IHK009010015', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': 'gen0138C'}, 'GSM830536': {'description': 'tier 1', 'localization': 'chromatin', 'datatype': 'RnaPet', 'labexpid': 'PHK001', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'clone-based', 'biorep': 'gen0135CH'}, 'GSM1464353': {'status': 'small cell lung cancer'}, 'GSM1971590': {'subtype': 'Primary Retinal Pericytes', 'type': 'Primary Cells'}, 'GSM2125809': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125808': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125807': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2252997': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-PKM2 and sip53'}, 'GSM2252994': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-PKM2'}, 'GSM2252995': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-PKM2 and sip53'}, 'GSM2252992': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-PKM2'}, 'GSM2125802': {'cancer': 'gastric cancer', 'stage': '1'}, 'GSM2252990': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-p53'}, 'GSM2252991': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-p53'}, 'GSM2858981': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS69 sorted by FACS for mid expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858980': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS69 sorted by FACS for high expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858983': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS15 cultured without exposure to PD173074, as a negative control for sample MS15_PD17_Day4'}, 'GSM2858982': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS69 sorted by FACS for low expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858985': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS15 matured for four days in the absence of doxycycline, as a negative control for sample MS15_PD17_Day8'}, 'GSM2858984': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES, 100 ng/mL doxycycline, and 100 nM PD173074 (Stemgent)', 'type': 'eAEP line MS15 cultured in the presence of 100 nM PD173074 for four days'}, 'GSM2858987': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS58 cultured without exposure to PD173074, as a negative control for sample MS58_PD17_Day4'}, 'GSM2858986': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS15 matured for four days in the absence of doxycycline after exposure to PD173074 for four days'}, 'GSM2858989': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS58 matured for four days in the absence of doxycycline, as a negative control for sample MS58_PD17_Day8'}, 'GSM2858988': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES, 100 ng/mL doxycycline, and 100 nM PD173074 (Stemgent)', 'type': 'eAEP line MS58 cultured in the presence of 100 nM PD173074 for four days'}, 'GSM2027529': {'line': 'H7 derived'}, 'GSM2027528': {'line': 'H7 derived'}, 'GSM2579327': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579326': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579325': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579324': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579323': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579322': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579321': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579320': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579329': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579328': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM873650': {'line': 'A2058', 'type': 'human metastatic melanoma'}, 'GSM2544705': {'line': 'K562'}, 'GSM2544704': {'line': 'K562'}, 'GSM2544707': {'line': 'K562'}, 'GSM2544706': {'line': 'K562'}, 'GSM2544701': {'line': 'K562'}, 'GSM2544700': {'line': 'K562'}, 'GSM2544703': {'line': 'K562'}, 'GSM2544702': {'line': 'K562'}, 'GSM2544709': {'line': 'K562'}, 'GSM2544708': {'line': 'K562'}, 'GSM2175460': {'type': 'D551-derived iPSC', 'treatment': 'control inhibitor'}, 'GSM2166322': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM4008616': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008617': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008614': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008615': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008612': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008613': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008610': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008611': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM1138787': {'line': 'A375'}, 'GSM1138786': {'line': 'A2058'}, 'GSM2735295': {'cohort': 'Paired', 'tils': '15', 'subtype': 'I', 'burden': '39', 'morphology': 'mixed (round & spindle)', 'event': 'Disease progression', 'stage': 'IV'}, 'GSM2735294': {'cohort': 'Paired', 'tils': '40', 'subtype': 'II', 'burden': '18', 'morphology': 'undifferentiated, round', 'event': 'Disease progression', 'stage': 'Unknown'}, 'GSM2735297': {'cohort': 'Unpaired', 'tils': 'Not evaluated', 'subtype': 'II', 'burden': '256', 'morphology': 'N/A', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735296': {'cohort': 'Paired', 'tils': '20', 'subtype': 'I', 'burden': '20', 'morphology': 'differentiated', 'event': 'Disease progression', 'stage': 'IV'}, 'GSM2735291': {'cohort': 'Paired', 'tils': '30', 'subtype': 'II', 'burden': '22', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735290': {'cohort': 'Paired', 'tils': '20', 'subtype': 'I', 'burden': '15', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735293': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '258', 'morphology': 'undifferentiated, spindle', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735292': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '257', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM1823311': {'line': '553.C2', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM2735299': {'cohort': 'Paired', 'tils': '20', 'subtype': 'II', 'burden': '70', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735298': {'cohort': 'Unpaired', 'tils': '40', 'subtype': 'II', 'burden': '270', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM1823316': {'line': '553.C2', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM1969202': {'source': 'epithelium', 'line': 'HAP1', 'group': 'EXPERIMENT 6', 'description': 'HAP1 cells, poly-A sequencing', 'variation': 'wild type'}, 'GSM2595318': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'D3', 'unit': '6', '280': '1.81', 'concentration': '0.1 uM', 'type': 'cardiac myocytes', 'id': '8', 'condition': 'Sunitinib'}, 'GSM2595319': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'D4', 'unit': '6', '280': '1.71', 'concentration': '0.1 uM', 'type': 'cardiac myocytes', 'id': '9', 'condition': 'Sunitinib'}, 'GSM2595314': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'C12', 'unit': '6', '280': '1.61', 'concentration': '1 uM', 'type': 'cardiac myocytes', 'id': '5', 'condition': 'Sorafenib'}, 'GSM2595315': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'E5', 'unit': '7', '280': '1.55', 'concentration': '1 uM', 'type': 'cardiac myocytes', 'id': '3', 'condition': 'Sorafenib'}, 'GSM2595316': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'E6', 'unit': '7', '280': '1.52', 'concentration': '1 uM', 'type': 'cardiac myocytes', 'id': '4', 'condition': 'Sorafenib'}, 'GSM2595317': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'F12', 'unit': '8', '280': '1.82', 'concentration': '1 uM', 'type': 'cardiac myocytes', 'id': '2', 'condition': 'Sorafenib'}, 'GSM2595310': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'C10', 'unit': '6', '280': '1.73', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '2', 'condition': 'Vehicle Control'}, 'GSM2595311': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'C11', 'unit': '6', '280': '1.82', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '3', 'condition': 'Vehicle Control'}, 'GSM2595312': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'E3', 'unit': '7', '280': '1.7', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM2595313': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'F11', 'unit': '8', '280': '1.89', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM3594572': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2287038': {'gender': 'male', 'type': 'Single Cell'}, 'GSM3594573': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594570': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594571': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2084203': {'status': 'Chronically KSHV-infected (Human herpesvirus 8)', 'concentration': 'Hypoxia (1% O2 for 24hrs)', 'type': 'SLKK cells'}, 'GSM2084202': {'status': 'Chronically KSHV-infected (Human herpesvirus 8)', 'concentration': 'Hypoxia (1% O2 for 24hrs)', 'type': 'SLKK cells'}, 'GSM2084201': {'status': 'Chronically KSHV-infected (Human herpesvirus 8)', 'concentration': 'Hypoxia (1% O2 for 24hrs)', 'type': 'SLKK cells'}, 'GSM2084200': {'status': 'Not infected', 'concentration': 'Hypoxia (1% O2 for 24hrs)', 'type': 'SLK cells'}, 'GSM2575378': {'line': 'WM983B', 'subclone': 'F9', 'condition': 'Drug'}, 'GSM2575379': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'Drug'}, 'GSM2287032': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2575370': {'line': 'WM983B', 'subclone': 'C6', 'condition': 'Drug'}, 'GSM2575371': {'line': 'WM983B', 'subclone': 'C10', 'condition': 'NoDrug'}, 'GSM2575372': {'line': 'WM983B', 'subclone': 'C10', 'condition': 'Drug'}, 'GSM2575373': {'line': 'WM983B', 'subclone': 'C10', 'condition': 'Drug'}, 'GSM2575374': {'line': 'WM983B', 'subclone': 'C10', 'condition': 'Drug'}, 'GSM1945915': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18486', 'for': '30min'}, 'GSM1945916': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18486', 'for': '60min'}, 'GSM2575377': {'line': 'WM983B', 'subclone': 'F9', 'condition': 'Drug'}, 'GSM2361805': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361804': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2185670': {'race': 'NB', 'staging': '5', 'total_grade': 'NA', 'cea': 'NA', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '39', 'focal_lytic_nec_apop': 'NA', 'batch': '1', 'sgpt': '235', 'Sex': 'F', 'confluent_necrosis': 'NA', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '93', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': 'NA', 'hcv_viral_load': '0'}, 'GSM2185671': {'race': 'NB', 'staging': '6', 'total_grade': '5', 'cea': '3', 'hcv_genotype': '4', 'hcv_activity': '2', 'age': '53', 'focal_lytic_nec_apop': '1', 'batch': '1', 'sgpt': '42', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': '2', 'sgot': '45', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': '2', 'afp': '12.7', 'hcv_viral_load': '0.1'}, 'GSM2185676': {'race': 'NB', 'staging': '0', 'total_grade': 'NA', 'cea': 'NA', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '42', 'focal_lytic_nec_apop': 'NA', 'batch': '1', 'sgpt': '748', 'Sex': 'F', 'confluent_necrosis': 'NA', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '928', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': '2.4', 'hcv_viral_load': '0'}, 'GSM2185677': {'race': 'B', 'staging': '4', 'total_grade': '2', 'cea': '7.8', 'hcv_genotype': '1', 'hcv_activity': '3', 'age': '56', 'focal_lytic_nec_apop': '0', 'batch': '1', 'sgpt': '42', 'Sex': 'F', 'confluent_necrosis': '0', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': '1', 'sgot': '75', 'ca19_9': '2084', 'differentiation': '0', 'portal_inflammation': '1', 'afp': '1450', 'hcv_viral_load': '226501'}, 'GSM2913039': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM2361802': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2185678': {'race': 'B', 'staging': '4', 'total_grade': '2', 'cea': '7.8', 'hcv_genotype': '1', 'hcv_activity': '3', 'age': '56', 'focal_lytic_nec_apop': '0', 'batch': '1', 'sgpt': '42', 'Sex': 'F', 'confluent_necrosis': '0', 'state': 'Tumor', 'tissue': 'liver', 'interface_necrosis': '1', 'sgot': '75', 'ca19_9': '2084', 'differentiation': '1', 'portal_inflammation': '1', 'afp': '1450', 'hcv_viral_load': '226501'}, 'GSM2185679': {'race': 'B', 'staging': '0', 'total_grade': 'NA', 'cea': '2.8', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '78', 'focal_lytic_nec_apop': 'NA', 'batch': '0', 'sgpt': '23', 'Sex': 'M', 'confluent_necrosis': 'NA', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '43', 'ca19_9': '165.5', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': 'NA', 'hcv_viral_load': '0'}, 'GSM2361809': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361808': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2477207': {'hypoxia': 'Hypoxia', 'infection': 'shMXI1_pGIPz (V3LHS_408351)'}, 'GSM2477206': {'hypoxia': 'Hypoxia', 'infection': 'shMXI1_pGIPz (V3LHS_408351)'}, 'GSM2175455': {'type': 'D551', 'treatment': 'miR29a/b/c sponge'}, 'GSM2175454': {'type': 'D551', 'treatment': 'Ctrl sponge'}, 'GSM2175457': {'type': 'D551-derived iPSC', 'treatment': 'Ctrl sponge'}, 'GSM2175456': {'type': 'D551-derived iPSC', 'treatment': 'Ctrl sponge'}, 'GSM2175453': {'type': 'D551', 'treatment': 'miR29a inhibitor'}, 'GSM2175452': {'type': 'D551', 'treatment': 'control inhibitor'}, 'GSM2175459': {'type': 'D551-derived iPSC', 'treatment': 'control inhibitor'}, 'GSM2175458': {'type': 'D551-derived iPSC', 'treatment': 'Ctrl sponge'}, 'GSM1087878': {'labexpid': '13274', 'line': 'GM12878'}, 'GSM1087879': {'labexpid': '13275', 'line': 'GM12878'}, 'GSM1968731': {'line': 'HSB-2', 'variation': 'expressing wild type LDB1'}, 'GSM1440299': {'line': 'Daoy', 'tissue': 'brain/cerebellum', 'type': 'cerebellar medulloblastoma', 'variation': 'ZNF423 knockdown'}, 'GSM1440298': {'line': 'Daoy', 'tissue': 'brain/cerebellum', 'type': 'cerebellar medulloblastoma', 'variation': 'control'}, 'GSM1968730': {'line': 'HSB-2', 'variation': 'expressing empty virus'}, 'GSM1440297': {'line': 'Daoy', 'tissue': 'brain/cerebellum', 'type': 'cerebellar medulloblastoma', 'variation': 'control'}, 'GSM1087874': {'labexpid': '12543', 'line': 'GM12878'}, 'GSM1834012': {'type': 'Erythroblasts', 'treatment': 'vehicle control'}, 'GSM1834013': {'type': 'Erythroblasts', 'treatment': 'UNC0638 0.25 uM'}, 'GSM1834010': {'type': 'Erythroblasts', 'treatment': 'vehicle control'}, 'GSM1087875': {'labexpid': '12818', 'line': 'GM12878'}, 'GSM1465029': {'vendor': 'Active Motif', 'antibody': 'H3K27ac', 'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1465028': {'vendor': 'Active Motif', 'antibody': 'H3K27ac', 'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1834014': {'type': 'Erythroblasts', 'treatment': 'UNC0638 0.25 uM'}, 'GSM1834015': {'type': 'Erythroblasts', 'treatment': 'UNC0638 0.25 uM'}, 'GSM1465025': {'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1087872': {'labexpid': '12541', 'line': 'GM12878'}, 'GSM1465027': {'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1465026': {'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1968734': {'line': 'HSB-2', 'variation': 'expressing wild type LDB1'}, 'GSM2348694': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1968737': {'line': 'HSB-2', 'variation': 'expressing LDB1 LI>AA'}, 'GSM1968736': {'line': 'HSB-2', 'variation': 'expressing LDB1 RLEN>AAAA'}, 'GSM2127427': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127426': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127425': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM3711662': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM2127429': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127428': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2048779': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048778': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048773': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048772': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2172100': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172101': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172106': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172107': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048775': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048774': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2453962': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453963': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1844471': {'line': 'SK-NO-1', 'agent': 'DMSO', 'point': '24h'}, 'GSM2453960': {'code': '404'}, 'GSM2616817': {'variation': 'G3BP1 overexpression', 'background': 'HeLa', 'point': '0h after ActinomycinD'}, 'GSM2616816': {'variation': 'FLAG control overexpression', 'background': 'HeLa', 'point': '6h after ActinomycinD'}, 'GSM2616815': {'variation': 'FLAG control overexpression', 'background': 'HeLa', 'point': '3h after ActinomycinD'}, 'GSM2616814': {'variation': 'FLAG control overexpression', 'background': 'HeLa', 'point': '0h after ActinomycinD'}, 'GSM2616813': {'variation': 'G3BP1 knockdown', 'background': 'HeLa', 'point': '6h after ActinomycinD'}, 'GSM2616812': {'variation': 'G3BP1 knockdown', 'background': 'HeLa', 'point': '3h after ActinomycinD'}, 'GSM2616811': {'variation': 'G3BP1 knockdown', 'background': 'HeLa', 'point': '0h after ActinomycinD'}, 'GSM2616810': {'variation': 'scrambled control knockdown', 'background': 'HeLa', 'point': '6h after ActinomycinD'}, 'GSM2453966': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2170520': {'stage': 'Endothelial cells'}, 'GSM2616819': {'variation': 'G3BP1 overexpression', 'background': 'HeLa', 'point': '6h after ActinomycinD'}, 'GSM2616818': {'variation': 'G3BP1 overexpression', 'background': 'HeLa', 'point': '3h after ActinomycinD'}, 'GSM2170521': {'stage': 'Endothelial cells'}, 'GSM2453964': {'code': '404'}, 'GSM2453965': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1619482': {'type': 'peripheral monocytes', 'id': '#11', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1619483': {'type': 'peripheral monocytes', 'id': '#12', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1619480': {'type': 'peripheral monocytes', 'id': '#09', 'procedure': 'adjustable gastric banding', 'point': 'T0; before bariatric surgery'}, 'GSM1619481': {'type': 'peripheral monocytes', 'id': '#10', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1619486': {'type': 'peripheral monocytes', 'id': '#16', 'procedure': 'adjustable gastric banding', 'point': 'T0; before bariatric surgery'}, 'GSM1619487': {'type': 'peripheral monocytes', 'id': '#17', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1619484': {'type': 'peripheral monocytes', 'id': '#13', 'procedure': 'adjustable gastric banding', 'point': 'T0; before bariatric surgery'}, 'GSM1619485': {'type': 'peripheral monocytes', 'id': '#15', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM2348698': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1619488': {'type': 'peripheral monocytes', 'id': '#18', 'procedure': 'adjustable gastric banding', 'point': 'T0; before bariatric surgery'}, 'GSM1619489': {'type': 'peripheral monocytes', 'id': '#19', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM2170528': {'stage': 'Endothelial cells'}, 'GSM2170529': {'stage': 'Endothelial cells'}, 'GSM2649969': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649968': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649967': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649966': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649965': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649964': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649963': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649962': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649961': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649960': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2786460': {'subtype': 'IL17A+GMCSF+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '1'}, 'GSM2786461': {'subtype': 'CD45RA+Cyt-', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '3'}, 'GSM2786462': {'subtype': 'IFN+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '2'}, 'GSM2786463': {'subtype': 'CSF+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '2'}, 'GSM2786464': {'subtype': 'IL17A+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '3'}, 'GSM2786465': {'subtype': 'IFN+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '3'}, 'GSM2786466': {'subtype': 'CD45RA+Cyt-', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '4'}, 'GSM2786467': {'subtype': 'CSF+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '4'}, 'GSM2786468': {'subtype': 'IL17A+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '4'}, 'GSM2786469': {'subtype': 'IFN+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '1'}, 'GSM921008': {'barcode': 'TCGGGT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd7'}, 'GSM2204704': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2186963': {'length': '11', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - unmodified'}, 'GSM2204706': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204707': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204700': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204701': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204702': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204703': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204708': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204709': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2186960': {'length': '11', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - unmodified'}, 'GSM2186967': {'length': '11', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - unmodified'}, 'GSM2186966': {'length': '11', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - unmodified'}, 'GSM1836564': {'expression_construct': 'FLAG-TOE1F148Y', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'F148 addback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM2186965': {'length': '11', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - unmodified'}, 'GSM2186964': {'length': '11', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - unmodified'}, 'GSM2142237': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH+34+43-'}, 'GSM2142236': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH+34-43-'}, 'GSM2142235': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH-34+43-'}, 'GSM2142234': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH-43-34-'}, 'GSM2142233': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH-43+'}, 'GSM2142232': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH+34+43-'}, 'GSM2142231': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH+34-43-'}, 'GSM2200938': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200937': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200936': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200935': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200934': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200933': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2753382': {'tissue': 'liver', 'type': 'Hepatocyte'}, 'GSM2200931': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200930': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM1836563': {'expression_construct': 'FLAG-TOE1A103T', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'A103 addback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1846992': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846993': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846990': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846991': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM2807848': {'line': 'H1'}, 'GSM2807849': {'line': 'H1'}, 'GSM2233278': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233279': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233276': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233277': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233274': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2406933': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2233272': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233273': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233270': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233271': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2306018': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '23 week gestation'}, 'GSM2406932': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM1379036': {'agent': 'UM171', 'time': '48hr'}, 'GSM1379037': {'agent': 'UM171+SR1', 'time': '72hr'}, 'GSM1379034': {'agent': 'DMSO', 'time': '48hr'}, 'GSM1379035': {'agent': 'SR1', 'time': '48hr'}, 'GSM1379032': {'agent': 'UM171', 'time': '3hr'}, 'GSM1379033': {'agent': 'UM171+SR1', 'time': '48hr'}, 'GSM1379030': {'agent': 'DMSO', 'time': '3hr'}, 'GSM1379031': {'agent': 'SR1', 'time': '3hr'}, 'GSM2286182': {'morphology': 'epithelial', 'line': 'UACC-812', 'protocol': \"Leibovitz's L-15 medium with 2 mM L-glutamine supplemented with 20 ng/ml human EGF and 20% fetal bovine serum.\", 'disease': 'Ductal Carcinoma'}, 'GSM2286183': {'morphology': 'epithelial', 'line': 'MDA-MB-415', 'protocol': \"Leibovitz's L-15 medium with 2mM L-glutamine supplemented with 10 mcg/ml insulin and 10 mcg/ml glutathione, 15% fetal bovine serum\", 'disease': 'Adenocarcinoma'}, 'GSM2286184': {'morphology': 'epithelial', 'line': 'SKBR3', 'protocol': 'RPMI 1640 medium with 20% fetal bovine serum.', 'disease': 'Adenocarcinoma'}, 'GSM2286185': {'morphology': 'epithelial', 'line': 'MDA-MB-453', 'protocol': 'IMEM medium with 20% fetal bovine serum.', 'disease': 'Metastatic Carcinoma'}, 'GSM1379038': {'agent': 'DMSO', 'time': '72hr'}, 'GSM1379039': {'agent': 'SR1', 'time': '72hr'}, 'GSM2754816': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0789', 'previousdiagnosisoftb': 'No', 'tst': '17', 'type': 'Tcells'}, 'GSM2754817': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0532', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754814': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0712', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754815': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0625', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754812': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1104', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754813': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0624', 'previousdiagnosisoftb': 'No', 'tst': '15', 'type': 'Tcells'}, 'GSM2754810': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0355', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754811': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0200', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1519054': {'line': 'KARPAS-422', 'treatment': 'GSK126'}, 'GSM1519055': {'line': 'KARPAS-422', 'treatment': 'GSK126'}, 'GSM1519050': {'line': 'KARPAS-422', 'treatment': 'CPI360'}, 'GSM1519051': {'line': 'KARPAS-422', 'treatment': 'CPI360'}, 'GSM2754818': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0578', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754819': {'bin': '7', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '03_0227', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM1269358': {'transfection': 'miR-155', 'type': 'RNA-seq fastq', 'line': 'Huh7 cells'}, 'GSM1899743': {'of': 'AKT1', 'type': 'mammary epithelial cells'}, 'GSM1899742': {'of': 'AKT1', 'type': 'mammary epithelial cells'}, 'GSM1899741': {'of': 'BAD', 'type': 'mammary epithelial cells'}, 'GSM1899740': {'of': 'BAD', 'type': 'mammary epithelial cells'}, 'GSM2158018': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158019': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM1899745': {'of': 'AKT1', 'type': 'mammary epithelial cells'}, 'GSM1899744': {'of': 'AKT1', 'type': 'mammary epithelial cells'}, 'GSM2158014': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158015': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158016': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM1899748': {'of': 'ERK1', 'type': 'mammary epithelial cells'}, 'GSM2158010': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158011': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158012': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158013': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2134302': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2134303': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2134300': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2134301': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM1859767': {'line': 'Jurkat', 'treatment': 'Vehicle (DMSO)'}, 'GSM2134304': {'tissue': 'patient-derived xenograft', 'type': 'HER2+'}, 'GSM2543137': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'NUT (anti-NUT, 15 ul per IP; Cell Signaling, catalog no. 3625)', 'agent': 'none'}, 'GSM2543136': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'NUT (anti-NUT, 15 ul per IP; Cell Signaling, catalog no. 3625)', 'agent': 'none'}, 'GSM2543135': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'H3K9me2 (anti-H3K9me2, 5 ul per IP, Abcam, catalog no. ab1220)', 'agent': 'none'}, 'GSM2543134': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'H3K9me2 (anti-H3K9me2, 5 ul per IP, Abcam, catalog no. ab1220)', 'agent': 'none'}, 'GSM2543133': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'H3K27me3 ( anti-H3K27me3, 10 ul per IP, Cell Signaling, catalog no. 9733)', 'agent': 'none'}, 'GSM2543132': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'H3K27me3 ( anti-H3K27me3, 10 ul per IP, Cell Signaling, catalog no. 9733)', 'agent': 'none'}, 'GSM2543131': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'H3K27ac (anti-H3K27ac , 10 ul per IP, Active Motif, catalog no. 39133)', 'agent': 'none'}, 'GSM2543130': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'H3K27ac (anti-H3K27ac , 10 ul per IP, Active Motif, catalog no. 39133)', 'agent': 'none'}, 'GSM1859761': {'line': 'Jurkat', 'treatment': 'Dox-induced TAL1-KD'}, 'GSM2543139': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'P300 (anti-P300 , 10 ul, Bethyl, catalog no. A300-358A)', 'agent': 'none'}, 'GSM2543138': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'P300 (anti-P300 , 10 ul, Bethyl, catalog no. A300-358A)', 'agent': 'none'}, 'GSM1700519': {'clone': 'NOMO1 parental', 'line': 'NOMO1', 'treatment': 'CPI203'}, 'GSM1700518': {'clone': 'NOMO1 parental', 'line': 'NOMO1', 'treatment': 'DMSO'}, 'GSM2316984': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2265634': {'antibody': 'Homemade (ref PMID: 25170156)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM1700515': {'clone': 'NOMO1 parental', 'line': 'NOMO1', 'treatment': 'CPI203'}, 'GSM1700514': {'clone': 'NOMO1 parental', 'line': 'NOMO1', 'treatment': 'DMSO'}, 'GSM1700517': {'clone': 'NOMO1 resistant clone', 'line': 'NOMO1', 'treatment': 'CPI203'}, 'GSM1700516': {'clone': 'NOMO1 resistant clone', 'line': 'NOMO1', 'treatment': 'DMSO'}, 'GSM1700511': {'clone': 'A375 resistant clone 4', 'line': 'A375', 'treatment': 'DMSO'}, 'GSM1700510': {'clone': 'A375 resistant clone 4', 'line': 'A375', 'treatment': 'DMSO'}, 'GSM1700513': {'clone': 'A375 resistant clone 4', 'line': 'A375', 'treatment': 'CPI203'}, 'GSM1700512': {'clone': 'A375 resistant clone 4', 'line': 'A375', 'treatment': 'CPI203'}, 'GSM2722229': {'line': 'GM02171', 'type': 'adult fibroblasts', 'treatment': 'No treatment', 'timepoint': 'd0'}, 'GSM1354554': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': '10 nM E2', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM2212622': {'gender': 'female', 'condition': 'control'}, 'GSM2212623': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212624': {'gender': 'female', 'condition': 'control'}, 'GSM2212625': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212626': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2212627': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2212628': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212629': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2265632': {'antibody': 'EZH2 (CST, 5246)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2472008': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2472009': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2472000': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2472001': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2472002': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2472003': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2472004': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2472005': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2472006': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2472007': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM1000986': {'line': 'OCI-LY1', 'treatment': 'siBCL6'}, 'GSM1000985': {'line': 'OCI-LY1', 'treatment': 'siBCL6'}, 'GSM1000984': {'line': 'OCI-LY1', 'treatment': 'siBCL6'}, 'GSM1000983': {'line': 'OCI-LY1', 'treatment': 'siNT'}, 'GSM1000982': {'line': 'OCI-LY1', 'treatment': 'siNT'}, 'GSM1000981': {'line': 'OCI-LY1', 'treatment': 'siNT'}, 'GSM1000980': {'type': 'Germinal center B cells', 'antibody': 'input'}, 'GSM1354557': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM genistein', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1938084': {'type': 'long-term estradiol deprived (LTED) MCF-7 cells'}, 'GSM1938085': {'type': 'long-term estradiol deprived (LTED) MCF-7 cells'}, 'GSM2316980': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1354559': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM S-equol', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM2454013': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM1969206': {'source': 'epithelium', 'line': 'HAP1', 'group': 'EXPERIMENT 7', 'description': 'RNase L-KO HAP1 cells, Ribo-Zero sequencing', 'variation': 'RNase L -/-'}, 'GSM2392213': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392210': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392211': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392216': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1969203': {'source': 'epithelium', 'line': 'HAP1', 'group': 'EXPERIMENT 6', 'description': 'RNase L-KO HAP1 cells, poly-A sequencing', 'variation': 'RNase L -/-'}, 'GSM2392214': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392215': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376121': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376120': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2392218': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392219': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376125': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376124': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376127': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376126': {'state': 'COPD', 'tissue': 'lung'}, 'GSM3190619': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.665595'}, 'GSM3190618': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.84947'}, 'GSM3190613': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '6.3', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.820292'}, 'GSM3190612': {'count': '6.4', 'visit': 'Visit 0', 'differential': '0', 'tissue': 'Peripheral Blood', 'analysis': 'Yes', 'Sex': 'M', 'v0': 'Case', 'construction': 'Yes', 'flowcell': 'C97JMANXX', 'years': '11', 'libcounts': '7.046086'}, 'GSM3190611': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.126934'}, 'GSM3190610': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.326348'}, 'GSM3190617': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.940028'}, 'GSM3190616': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.493017'}, 'GSM3190615': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '6.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '9.053486'}, 'GSM3190614': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.840781'}, 'GSM2332739': {'point': 'day 5', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2332738': {'point': 'day 5', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2332737': {'point': 'day 5', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 'GSM2332736': {'point': 'day 5', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 'GSM2332735': {'point': 'day 5', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 'GSM2332734': {'point': 'day 1', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2332733': {'point': 'day 1', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2332732': {'point': 'day 1', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2332731': {'point': 'day 1', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 'GSM2332730': {'point': 'day 1', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 'GSM2333464': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'type': 'epithelial', 'disease': 'adenocarcinoma', 'stage': 'grade IV'}, 'GSM1614896': {'line': 'LCL14', 'fraction': 'polysome'}, 'GSM2333460': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'type': 'epithelial', 'disease': 'adenocarcinoma', 'stage': 'grade IV'}, 'GSM2333461': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'type': 'epithelial', 'disease': 'adenocarcinoma', 'stage': 'grade IV'}, 'GSM2333462': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'type': 'epithelial', 'disease': 'adenocarcinoma', 'stage': 'grade IV'}, 'GSM2333463': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'type': 'epithelial', 'disease': 'adenocarcinoma', 'stage': 'grade IV'}, 'GSM1614897': {'line': 'LCL19', 'fraction': 'total'}, 'GSM2092949': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092948': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '13', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092947': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092946': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092945': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092944': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092943': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092942': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092941': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092940': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2274963': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-15', 'trunkbarcode': '928616', 'sampleID': 'S33290', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9809', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9809', 'studysiteshort': 'YALE'}, 'GSM2274962': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-14', 'trunkbarcode': '928616', 'sampleID': 'S33289', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9808', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9808', 'studysiteshort': 'YALE'}, 'GSM2274961': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-13', 'trunkbarcode': '928616', 'sampleID': 'S33288', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9807', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9807', 'studysiteshort': 'YALE'}, 'GSM2274960': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-12', 'trunkbarcode': '928616', 'sampleID': 'S33287', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9806', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9806', 'studysiteshort': 'YALE'}, 'GSM2274967': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-4', 'trunkbarcode': '930954', 'sampleID': 'S33350', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9813', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9813', 'studysiteshort': 'YALE'}, 'GSM2274966': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-3', 'trunkbarcode': '930954', 'sampleID': 'S33349', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9812', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9812', 'studysiteshort': 'YALE'}, 'GSM2274965': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-2', 'trunkbarcode': '930954', 'sampleID': 'S33348', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9811', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9811', 'studysiteshort': 'YALE'}, 'GSM2274964': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-1', 'trunkbarcode': '930954', 'sampleID': 'S33347', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9810', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9810', 'studysiteshort': 'YALE'}, 'GSM2274969': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-9', 'trunkbarcode': '930954', 'sampleID': 'S33352', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9815', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9815', 'studysiteshort': 'YALE'}, 'GSM2274968': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-5', 'trunkbarcode': '930954', 'sampleID': 'S33351', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9814', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9814', 'studysiteshort': 'YALE'}, 'GSM2125753': {'cancer': 'adjacent normal'}, 'GSM2125752': {'cancer': 'adjacent normal'}, 'GSM2125751': {'cancer': 'adjacent normal'}, 'GSM2125750': {'cancer': 'adjacent normal'}, 'GSM2125757': {'cancer': 'adjacent normal'}, 'GSM2125756': {'cancer': 'adjacent normal'}, 'GSM2125755': {'cancer': 'adjacent normal'}, 'GSM2125754': {'cancer': 'adjacent normal'}, 'GSM2125759': {'cancer': 'adjacent normal'}, 'GSM2125758': {'cancer': 'adjacent normal'}, 'GSM3711641': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM3711640': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '14'}, 'GSM3711643': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '10'}, 'GSM3711642': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '10'}, 'GSM3711645': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '10'}, 'GSM3711644': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '10'}, 'GSM3711647': {'Sex': 'M', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '8'}, 'GSM3711646': {'Sex': 'F', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '10'}, 'GSM3711649': {'Sex': 'M', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM3711648': {'Sex': 'M', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM1437684': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM1437685': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM2359811': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM1437683': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437680': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM2359812': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM2307430': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307431': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307432': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307433': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307434': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307435': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307436': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307437': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307438': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307439': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2101090': {'line': 'HEK293 cells', 'stress': 'control'}, 'GSM2101091': {'line': 'HEK293 cells', 'stress': 'control'}, 'GSM2158375': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2251296': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2158374': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM1387907': {'line': 'MRC5'}, 'GSM1507943': {'line': 'SK-MEL-147', 'type': 'Melanoma cell line', 'mutation': 'NRAS'}, 'GSM1944519': {'line': 'MCF7', 'tissue': 'breast', 'type': 'adenocarcinoma'}, 'GSM1944518': {'line': 'MCF7', 'tissue': 'breast', 'type': 'adenocarcinoma'}, 'GSM1944517': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease'}, 'GSM1944516': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease'}, 'GSM1944515': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease'}, 'GSM2158376': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2287640': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1279770': {'antibody': 'LSD1 antibody (Abcam, ab17721, lot # GR79477-2)', 'transfection': 'no treatment', 'type': 'VCaP', 'passage': '14-17'}, 'GSM1202514': {'tissue': 'bone marrow', 'agent': 'BIO_2µM', 'time': '16h'}, 'GSM1202515': {'tissue': 'bone marrow', 'agent': 'MeBIO_500nM', 'time': '16h'}, 'GSM1202516': {'tissue': 'bone marrow', 'agent': 'SR1_500nM+BIO_1µM', 'time': '16h'}, 'GSM1279771': {'transfection': 'control siRNA transfection', 'type': 'LNCaP', 'passage': '14-17'}, 'GSM1202511': {'tissue': 'bone marrow', 'agent': 'none', 'time': '0h'}, 'GSM2170616': {'stage': 'Hepatic endoderm 1'}, 'GSM1202513': {'tissue': 'bone marrow', 'agent': 'SR1_500nM', 'time': '16h'}, 'GSM2565072': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM2565073': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2565070': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2565071': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM1202518': {'tissue': 'peripheral blood', 'agent': 'none', 'time': '0h'}, 'GSM1202519': {'tissue': 'peripheral blood', 'agent': 'DMSO_0.1%', 'time': '16h'}, 'GSM2565074': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2287645': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1053800': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NF signature'}, 'GSM2303243': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM3594619': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2307298': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307299': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2303242': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2307294': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307295': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307296': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307297': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307290': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2303241': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2307292': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307293': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1546358': {'line': 'MDA-MB-231', 'variation': 'wild type'}, 'GSM2303240': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM1509262': {'tissue': 'skin', 'type': 'fibroblasts'}, 'GSM1509263': {'tissue': 'skin', 'type': 'fibroblasts'}, 'GSM1509264': {'tissue': 'skin', 'type': 'fibroblasts'}, 'GSM1509265': {'tissue': 'skin', 'type': 'fibroblasts'}, 'GSM1693178': {'subtype': 'Triple negative', 'line': '1833', 'metastasis': 'Bone metastasis', 'knockdown': 'Arg'}, 'GSM1693179': {'subtype': 'Triple negative', 'line': '1833', 'metastasis': 'Bone metastasis', 'knockdown': 'Both Abl and Arg'}, 'GSM1163063': {'patient': 'Healthy_N254', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1693176': {'subtype': 'Triple negative', 'line': '1833', 'metastasis': 'Bone metastasis', 'knockdown': 'Scramble'}, 'GSM1693177': {'subtype': 'Triple negative', 'line': '1833', 'metastasis': 'Bone metastasis', 'knockdown': 'Abl'}, 'GSM2806241': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806240': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806243': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806242': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2302918': {'status': 'Healthy Adult Control', 'subtype': 'CD161+ Treg', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302919': {'status': 'Healthy Adult Control', 'subtype': 'CD161- Treg', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302910': {'tetracycline': 'TET(+)', 'id': '5', 'treatment': 'IL17+TNF'}, 'GSM2112710': {'status': 'Healthy individuals', 'gender': 'female', 'age': '35', 'type': 'CD14-Positive Monocytes cells'}, 'GSM2302912': {'status': 'Healthy Adult Control', 'subtype': 'CD161- Treg', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302913': {'status': 'Healthy Adult Control', 'subtype': 'CD161+ Tconv', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302914': {'status': 'Healthy Adult Control', 'subtype': 'CD161- Tconv', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302915': {'status': 'Healthy Adult Control', 'subtype': 'CD161- Treg', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302916': {'status': 'Healthy Adult Control', 'subtype': 'CD161+ Tconv', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302917': {'status': 'Healthy Adult Control', 'subtype': 'CD161- Tconv', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2653641': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2653640': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2653642': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2648905': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM E2', 'time': '24 hours'}, 'GSM2642535': {'control': 'Unaffected Control', 'death': 'natural', 'age': '45', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.11', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642534': {'control': 'Unaffected Control', 'death': 'homicide', 'age': '21', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.66', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642537': {'control': 'Unaffected Control', 'death': 'homicide', 'age': '26', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.28', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642536': {'control': 'Unaffected Control', 'death': 'homicide', 'age': '21', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.68', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642531': {'control': 'Unaffected Control', 'death': 'homicide', 'age': '29', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.74', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642533': {'control': 'Unaffected Control', 'death': 'natural', 'age': '23', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.44', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642532': {'control': 'Unaffected Control', 'death': 'homicide', 'age': '20', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.88', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642539': {'control': 'Unaffected Control', 'death': 'natural', 'age': '48', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.24', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642538': {'control': 'Unaffected Control', 'death': 'natural', 'age': '46', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.59', 'ethnicity': 'Hispanic or Latino'}, 'GSM2883053': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject10', 'drug': 'Metformin'}, 'GSM2883052': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject9', 'drug': 'Metformin'}, 'GSM2081457': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081456': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2883057': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject12', 'drug': 'Metformin'}, 'GSM2081450': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081453': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081452': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM1521556': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521557': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2883059': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject13', 'drug': 'Metformin'}, 'GSM2883058': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject13', 'drug': 'Metformin'}, 'GSM1521552': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2081458': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM1521550': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521551': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM3711303': {'mediancvcoverage': '0.619909', 'percentaligned': '0.944150763', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM3305345': {'condition': 'Normoxia', 'agent': 'Cells were grown in 20% oxygen'}, 'GSM3305344': {'shRNA': 'Cells were treated with an shRNA targeting ALKBH1', 'condition': 'Hypoxia'}, 'GSM3711307': {'mediancvcoverage': '0.605489', 'percentaligned': '0.960114871', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM2186962': {'length': '11', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - unmodified'}, 'GSM2705978': {'tissue': '21N'}, 'GSM2247776': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3+CD4+', 'tissue': 'clear cell RCC tumor', 'type': 'CD4+ T cells', 'identifier': 'RCC290'}, 'GSM2247777': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3+CD4+', 'tissue': 'clear cell RCC tumor', 'type': 'CD4+ T cells', 'identifier': 'RCC344'}, 'GSM2705973': {'tissue': '6N'}, 'GSM2705972': {'tissue': '5N'}, 'GSM2705971': {'tissue': '2N'}, 'GSM2705970': {'tissue': '27D'}, 'GSM2705977': {'tissue': '19N'}, 'GSM2705976': {'tissue': '17N'}, 'GSM2705975': {'tissue': '15N'}, 'GSM2705974': {'tissue': '7N'}, 'GSM1395654': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395655': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395656': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395657': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395650': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395651': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395652': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395653': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395658': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395659': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2373909': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM3190861': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.3', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'Yes', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.691866'}, 'GSM3190863': {'boca': 'No', 'years': '17', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.930019'}, 'GSM2092536': {'repertoire': 'TCR-alpha', 'individual': 'patient 7 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092537': {'repertoire': 'TCR-beta', 'individual': 'patient 7 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092534': {'repertoire': 'TCR-beta', 'individual': 'patient 6 (low-grade glioma)', 'tissue': 'peripheral blood'}, 'GSM2092535': {'individual': 'patient 6 (low-grade glioma)', 'tissue': 'brain'}, 'GSM2092532': {'repertoire': 'TCR-beta', 'individual': 'patient 6 (low-grade glioma)', 'tissue': 'brain'}, 'GSM2092533': {'repertoire': 'TCR-alpha', 'individual': 'patient 6 (low-grade glioma)', 'tissue': 'peripheral blood'}, 'GSM2092530': {'individual': 'patient 5 (low-grade glioma)', 'tissue': 'brain'}, 'GSM2092531': {'repertoire': 'TCR-alpha', 'individual': 'patient 6 (low-grade glioma)', 'tissue': 'brain'}, 'GSM3190867': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.92304'}, 'GSM2092538': {'repertoire': 'TCR-alpha', 'individual': 'patient 7 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2212728': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2241568': {'batch': 'C', 'condition': 'Disomic'}, 'GSM2241567': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2251388': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251389': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2325979': {'type': 'Human embryonic stem cell'}, 'GSM2325978': {'type': 'Human embryonic stem cell'}, 'GSM2241566': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2325975': {'type': 'Human embryonic stem cell'}, 'GSM2325974': {'type': 'Human embryonic stem cell'}, 'GSM2251380': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2325976': {'type': 'Human embryonic stem cell'}, 'GSM2251386': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251387': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251384': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2325972': {'type': 'Human embryonic stem cell'}, 'GSM2241564': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2241563': {'batch': 'B', 'condition': 'Disomic'}, 'GSM2241562': {'batch': 'B', 'condition': 'Disomic'}, 'GSM2241561': {'batch': 'B', 'condition': 'Disomic'}, 'GSM1963969': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2212722': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM1963968': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2131569': {'tumor': 'nomal', 'step': 'BPH', 'site': 'prostate'}, 'GSM2131568': {'tumor': 'nomal', 'step': 'BPH', 'site': 'prostate'}, 'GSM2131565': {'tumor': 'nomal', 'step': 'BPH', 'site': 'prostate'}, 'GSM2131564': {'tumor': 'nomal', 'step': 'BPH', 'site': 'prostate'}, 'GSM2131567': {'tumor': 'nomal', 'step': 'BPH', 'site': 'prostate'}, 'GSM2131566': {'tumor': 'nomal', 'step': 'BPH', 'site': 'prostate'}, 'GSM2932854': {'pucai': '20', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '13'}, 'GSM2178496': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2648908': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM DHT', 'time': '24 hours'}, 'GSM2932857': {'pucai': '70', 'score': '4', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '13'}, 'GSM2932850': {'pucai': '50', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '7'}, 'GSM2932851': {'pucai': '40', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '10'}, 'GSM2932852': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2178497': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2932858': {'pucai': '30', 'score': '5', 'remission': 'Yes', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '6'}, 'GSM2178494': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM1963966': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2178492': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM2178493': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM1574121': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '26', 'treatment': '100 nM rotenone'}, 'GSM1574120': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '26', 'treatment': '100 nM rotenone'}, 'GSM1574123': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '26', 'treatment': 'none'}, 'GSM1574122': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '26', 'treatment': 'none'}, 'GSM1574125': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '30', 'treatment': '100 nM rotenone'}, 'GSM2178490': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM1574127': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '30', 'treatment': '100 nM rotenone'}, 'GSM1574126': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '30', 'treatment': '100 nM rotenone'}, 'GSM2738061': {'antibody': 'none', 'passages': 'Primary Cells', 'type': 'Activated B cells'}, 'GSM2738060': {'antibody': 'BACH2 (D3T3G)', 'transfection': 'siBACH2', 'passages': 'Primary Cells', 'type': 'Activated B cells'}, 'GSM2178491': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2640580': {'enrichment': 'MM1S cells were isolated from HS5 using Accutase and CD138+ magnetic beads'}, 'GSM2640581': {'enrichment': 'None'}, 'GSM2142412': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM1526678': {'source': 'circulating immune cells', 'type': 'Monocytes'}, 'GSM1526679': {'marker': 'CD4+ CD8- CD45RO+ and CD4- CD8+ CD45RO+', 'source': 'circulating immune cells', 'type': 'Memory T-cells'}, 'GSM1526676': {'marker': 'CD4- CD8- CD56/CD16+ CD19-', 'source': 'circulating immune cells', 'type': 'NK cells'}, 'GSM1526677': {'marker': 'CD4- CD8- CD56/CD16- CD19+', 'source': 'circulating immune cells', 'type': 'B-cells'}, 'GSM2101630': {'tissue': 'pancreatic islets', 'name': 'LG5'}, 'GSM2101631': {'tissue': 'pancreatic islets', 'name': 'LG8'}, 'GSM2043170': {'agent': 'BMP4', 'point': '24h'}, 'GSM1289021': {'line': 'HepG2', 'type': 'Liver', 'infection': 'Normal HepG2 cells'}, 'GSM2815923': {'line': 'H9'}, 'GSM2815929': {'line': 'H9'}, 'GSM2607514': {'line': 'WA26'}, 'GSM1896088': {'individual': 'AF19', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2390669': {'tissue': 'Undiff ES line', 'subject': 'H1 cell line'}, 'GSM2390668': {'tissue': 'Undiff ES line', 'subject': 'H7 cell line'}, 'GSM1964005': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1964004': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1964003': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1964002': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1964001': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1964000': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2390661': {'tissue': 'Undiff iPS from AML', 'subject': 'SU223'}, 'GSM2390660': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU042'}, 'GSM2390663': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU223'}, 'GSM2390662': {'tissue': 'Undiff iPS from AML', 'subject': 'SU223'}, 'GSM2390665': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU223'}, 'GSM2390664': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU223'}, 'GSM2390667': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU223'}, 'GSM2390666': {'tissue': 'Engrafted diff iPS from AML', 'subject': 'SU223'}, 'GSM1886927': {'type': 'Hepatic stem cells'}, 'GSM1886926': {'type': 'Hepatic stem cells'}, 'GSM1886925': {'type': 'Hepatoblasts'}, 'GSM1886924': {'type': 'Hepatoblasts'}, 'GSM1886923': {'type': 'Hepatoblasts'}, 'GSM1886922': {'type': 'Fibrolamellar hepatocellular carcinoma'}, 'GSM1886921': {'type': 'Fibrolamellar hepatocellular carcinoma'}, 'GSM1886920': {'type': 'Fibrolamellar hepatocellular carcinoma'}, 'GSM2631700': {'line': 'MCF7 breast carcinoma cell line', 'agent': 'control'}, 'GSM2631701': {'line': 'MCF7 breast carcinoma cell line', 'agent': 'control'}, 'GSM2631702': {'line': 'MCF7 breast carcinoma cell line', 'agent': 'control'}, 'GSM2631703': {'line': 'MCF7 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM2631704': {'line': 'MCF7 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM2631705': {'line': 'MCF7 breast carcinoma cell line', 'agent': 'abemaciclib'}, 'GSM1886928': {'type': 'Hepatic stem cells'}, 'GSM2462069': {'strain': 'V. parahaemolyticus POR3', 'time': '90 minutes'}, 'GSM2462068': {'strain': 'V. parahaemolyticus POR3', 'time': '90 minutes'}, 'GSM2607516': {'line': 'WA26'}, 'GSM2443377': {'gender': 'female', 'age': '57', 'type': 'A'}, 'GSM2462063': {'strain': 'V. parahaemolyticus POR3', 'time': '75 minutes'}, 'GSM2462062': {'strain': 'V. parahaemolyticus POR3', 'time': '75 minutes'}, 'GSM2462061': {'strain': 'V. parahaemolyticus POR3', 'time': '75 minutes'}, 'GSM2462060': {'strain': 'V. parahaemolyticus POR4', 'time': '60 minutes'}, 'GSM2462067': {'strain': 'V. parahaemolyticus POR3', 'time': '90 minutes'}, 'GSM2462066': {'strain': 'V. parahaemolyticus POR4', 'time': '75 minutes'}, 'GSM2462065': {'strain': 'V. parahaemolyticus POR4', 'time': '75 minutes'}, 'GSM2462064': {'strain': 'V. parahaemolyticus POR4', 'time': '75 minutes'}, 'GSM2429927': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f3', 'treatment': 'none'}, 'GSM2632241': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2429925': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': '500 nM JQ1'}, 'GSM2429924': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': '500 nM JQ1'}, 'GSM2632244': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2429922': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': '500 nM JQ1'}, 'GSM2632246': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632247': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632248': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632249': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2265816': {'line': 'HeLa', 'sirna': 'TUT3', 'timepoint': '0'}, 'GSM2265810': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '30'}, 'GSM2429929': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f3', 'treatment': 'none'}, 'GSM2265812': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '0'}, 'GSM3177236': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C15', 'cdai': 'N/A'}, 'GSM3177237': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C15', 'cdai': 'N/A'}, 'GSM3177234': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C14', 'cdai': 'N/A'}, 'GSM3177235': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C14', 'cdai': 'N/A'}, 'GSM3177232': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C12', 'cdai': 'N/A'}, 'GSM3177233': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C13', 'cdai': 'N/A'}, 'GSM3177230': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C11', 'cdai': 'N/A'}, 'GSM3177231': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C12', 'cdai': 'N/A'}, 'GSM1716888': {'stress': 'biaxial cyclic strain at 100 mHz', 'type': 'keratinocyte', 'genotype': 'wt'}, 'GSM1716889': {'stress': 'biaxial cyclic strain at 100 mHz', 'type': 'keratinocyte', 'genotype': 'wt'}, 'GSM2443371': {'gender': 'male', 'age': '58', 'type': 'A'}, 'GSM3177238': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C16', 'cdai': 'N/A'}, 'GSM3177239': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C16', 'cdai': 'N/A'}, 'GSM2664355': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2516818': {'death': '86', 'score': 'IV', 'post_mortem_interval': '2.16', 'caseid': '03-52', 'Sex': 'M', 'rin_score': '6.8', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655410'}, 'GSM2516819': {'death': '86', 'score': 'III', 'post_mortem_interval': '2.8', 'caseid': '02-38', 'Sex': 'M', 'rin_score': '6.1', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655507'}, 'GSM2516816': {'death': '88', 'score': 'IV', 'post_mortem_interval': '3.5', 'caseid': '04-03', 'Sex': 'F', 'rin_score': '6.5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655382'}, 'GSM2516817': {'death': '91', 'score': 'IV', 'post_mortem_interval': '1.92', 'caseid': '11-30', 'Sex': 'F', 'rin_score': '7.6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655400'}, 'GSM2516814': {'death': '94', 'score': 'V', 'post_mortem_interval': '3.75', 'caseid': '02-22', 'Sex': 'M', 'rin_score': '5.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655434'}, 'GSM2516815': {'death': '78', 'score': 'IV', 'post_mortem_interval': '3.33', 'caseid': '10-67', 'Sex': 'M', 'rin_score': '6.1', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655427'}, 'GSM2516812': {'death': '73', 'score': 'III', 'post_mortem_interval': '2', 'caseid': '99-50', 'Sex': 'M', 'rin_score': '5.1', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655509'}, 'GSM2516813': {'death': '93', 'score': 'IV', 'post_mortem_interval': '1.4', 'caseid': '01-22', 'Sex': 'F', 'rin_score': '6.2', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655389'}, 'GSM2516810': {'death': '80', 'score': 'V', 'post_mortem_interval': '2.5', 'caseid': '09-18', 'Sex': 'M', 'rin_score': '5.5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655435'}, 'GSM2516811': {'death': '101', 'score': 'VI', 'post_mortem_interval': '1.85', 'caseid': '11-14', 'Sex': 'F', 'rin_score': '6.9', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655429'}, 'GSM2689468': {'status': 'steroid-resistant asthma', 'type': 'CD8+T cells', 'id': '82', 'time': 'none'}, 'GSM1087880': {'labexpid': '13276', 'line': 'GM12878'}, 'GSM2689462': {'status': 'steroid-sensitive asthma', 'type': 'CD8+T cells', 'id': '103', 'time': 'none'}, 'GSM2689463': {'status': 'steroid-sensitive asthma', 'type': 'CD8+T cells', 'id': '103', 'time': '8 days'}, 'GSM2689460': {'status': 'healthy control', 'type': 'CD8+T cells', 'id': '102', 'time': 'none'}, 'GSM2689461': {'status': 'healthy control', 'type': 'CD8+T cells', 'id': '102', 'time': '8 days'}, 'GSM2689466': {'status': 'steroid-sensitive asthma', 'type': 'CD8+T cells', 'id': '77', 'time': 'none'}, 'GSM2689467': {'status': 'steroid-sensitive asthma', 'type': 'CD8+T cells', 'id': '77', 'time': '8 days'}, 'GSM2689464': {'status': 'steroid-sensitive asthma', 'type': 'CD8+T cells', 'id': '66', 'time': 'none'}, 'GSM2689465': {'status': 'steroid-sensitive asthma', 'type': 'CD8+T cells', 'id': '66', 'time': '8 days'}, 'GSM2664353': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664352': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2648915': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': '10 nM E2', 'time': '4 hours', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM2648914': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': 'Vehicle', 'time': '4 hours', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM2248016': {'line': 'YAPC', 'grnas': 'FOS'}, 'GSM3594540': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594547': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594546': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2248012': {'line': 'YAPC', 'grnas': 'FOSL1'}, 'GSM3594544': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594549': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594548': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2248018': {'line': 'YAPC', 'grnas': 'JUN'}, 'GSM2248019': {'line': 'YAPC', 'grnas': 'JUN'}, 'GSM1548437': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1133668': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM1548438': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548439': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1970068': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970069': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM957388': {'sample': 'GM12717', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1358'}, 'GSM957389': {'sample': 'GM12750', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1444'}, 'GSM957386': {'sample': 'GM12264', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1375'}, 'GSM957387': {'sample': 'GM12716', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1358'}, 'GSM957384': {'sample': 'GM12145', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1334'}, 'GSM957385': {'sample': 'GM12155', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1408'}, 'GSM957382': {'sample': 'GM12057', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1344'}, 'GSM957383': {'sample': 'GM12144', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1334'}, 'GSM957380': {'sample': 'GM12044', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1346'}, 'GSM957381': {'sample': 'GM12056', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1344'}, 'GSM2367769': {'with': '0.1% DMSO for 6hrs', 'line': 'MOLT4', 'barcode': 'TTAGGC', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM1836515': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836514': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836517': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836516': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1606099': {'line': 'HEK293T', 'treatment': 'untreated'}, 'GSM1836510': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM1836513': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U4'}, 'GSM1836512': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM2635739': {'genotype': 'YAP-', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635738': {'genotype': 'YAP-', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM1836519': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836518': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM2100095': {'rin': '9.3', 'Sex': 'Male', 'sspg': '100', 'age': '64', 'bmi': '28.2', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '411', 'method': 'Qiagen:trizol'}, 'GSM2100094': {'rin': '9.1', 'Sex': 'Male', 'sspg': '100', 'age': '64', 'bmi': '28.2', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '411', 'method': 'Qiagen:trizol'}, 'GSM2100097': {'rin': '9.4', 'Sex': 'Male', 'sspg': '100', 'age': '64', 'bmi': '28.2', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '411', 'method': 'Qiagen:trizol'}, 'GSM2100096': {'rin': '1.8', 'Sex': 'Male', 'sspg': '100', 'age': '64', 'bmi': '28.2', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '411', 'method': 'Qiagen:trizol'}, 'GSM2100091': {'rin': '10', 'Sex': 'Male', 'sspg': '61', 'age': '59', 'bmi': '21.8', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '410', 'method': 'Life-Tech GITC'}, 'GSM2100090': {'rin': '10', 'Sex': 'Male', 'sspg': '61', 'age': '59', 'bmi': '21.8', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '410', 'method': 'Life-Tech GITC'}, 'GSM2100093': {'rin': '8.7', 'Sex': 'Male', 'sspg': '100', 'age': '64', 'bmi': '28.2', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '411', 'method': 'Qiagen:trizol'}, 'GSM2100092': {'rin': '9.3', 'Sex': 'Male', 'sspg': '100', 'age': '64', 'bmi': '28.2', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '411', 'method': 'Qiagen:trizol'}, 'GSM2100099': {'rin': '9.7', 'Sex': 'Male', 'sspg': '67', 'age': '70', 'bmi': '25', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '420', 'method': 'Qiagen:trizol'}, 'GSM2100098': {'rin': '9.2', 'Sex': 'Male', 'sspg': '100', 'age': '64', 'bmi': '28.2', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '411', 'method': 'Qiagen:trizol'}, 'GSM2705364': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 15', 'dilution': '1:50'}, 'GSM1844477': {'line': 'SK-NO-1', 'agent': 'GSK690*_1uM', 'point': '24h'}, 'GSM1844476': {'line': 'SK-NO-1', 'agent': 'RN-1_1uM', 'point': '24h'}, 'GSM1844475': {'line': 'SK-NO-1', 'agent': 'DMSO', 'point': '24h'}, 'GSM1844474': {'line': 'SK-NO-1', 'agent': 'GSK690_1uM', 'point': '24h'}, 'GSM1131539': {'Sex': 'Female', 'location': 'Ascending colon', 'disease': 'sessile serrated polyp'}, 'GSM1131538': {'Sex': 'Male', 'location': 'Ascending colon', 'disease': 'sessile serrated polyp'}, 'GSM2166248': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM1844470': {'line': 'SK-NO-1', 'agent': 'GSK690_1uM', 'point': '72h'}, 'GSM2050839': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM1844479': {'line': 'Kasumi-1', 'agent': 'DMSO', 'point': '24h'}, 'GSM1844478': {'line': 'SK-NO-1', 'agent': 'GSK690_1uM', 'point': '24h'}, 'GSM2607518': {'line': 'WA26'}, 'GSM2312052': {'culture': '12', 'line': 'DCX+'}, 'GSM2142372': {'etiology': 'UCB', 'donor': '1', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'wildtype FOXO1'}, 'GSM2142373': {'etiology': 'UCB', 'donor': '2', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'wildtype FOXO1'}, 'GSM2142370': {'etiology': 'UCB', 'donor': '2', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'AML1-ETO'}, 'GSM2312053': {'culture': '12', 'line': 'DCX+'}, 'GSM2166249': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2142377': {'etiology': 'UCB', 'donor': '3', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'FOXO1 DNA binding deficient mutant'}, 'GSM2142374': {'etiology': 'UCB', 'donor': '3', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'wildtype FOXO1'}, 'GSM2142375': {'etiology': 'UCB', 'donor': '1', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'FOXO1 DNA binding deficient mutant'}, 'GSM2200872': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200873': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200870': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200871': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200876': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2311938': {'culture': '12', 'line': 'DCX+'}, 'GSM2200874': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200875': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2050836': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM1116000': {'line': 'MCF7', 'treatment': '1hr treatment with ethanol'}, 'GSM2312058': {'culture': '12', 'line': 'DCX+'}, 'GSM2312059': {'culture': '12', 'line': 'DCX+'}, 'GSM2453531': {'tissue': 'H1-EC1-PC'}, 'GSM2453530': {'tissue': 'H1-EC1-PC'}, 'GSM2453533': {'tissue': 'H1-EC1-PC'}, 'GSM2453532': {'tissue': 'H1-EC1-PC'}, 'GSM2453535': {'tissue': 'Pericyte'}, 'GSM2453534': {'tissue': 'H1-EC1'}, 'GSM2453537': {'tissue': 'H1-EC1-PC'}, 'GSM2453536': {'tissue': 'HUVEC1'}, 'GSM2453539': {'tissue': 'H1-EC1-PC'}, 'GSM2453538': {'tissue': 'H1-EC1-PC'}, 'GSM2031991': {'type': 'Keratinocytes', 'stage': 'differentiated for 5 days'}, 'GSM2031990': {'type': 'Keratinocytes', 'stage': 'differentiated for 5 days'}, 'GSM1545589': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545588': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545587': {'count': '2', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545586': {'count': '1', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545585': {'count': '1', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '1'}, 'GSM2560483': {'name': '3D6', 'antibody': 'none', 'type': 'column goblet cells', 'ko': 'LS174T_CDX2-/- Tet3G KO', 'cdx2opt': 'none', 'line': 'LS174T CL-188', 'induction': 'none'}, 'GSM2560484': {'name': '7D9', 'antibody': 'none', 'type': 'column goblet cells', 'ko': 'LS174T_CDX2-/- Tet3G KO', 'cdx2opt': '1x(pAAVS1-TRE3G-CDX2opt)', 'line': 'LS174T CL-188', 'induction': '4 ng/ml'}, 'GSM1545582': {'count': '3', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545581': {'count': '0', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545580': {'count': '0', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1908210': {'line': 'MT4', 'treatment': 'HIV-1 infected'}, 'GSM1908211': {'line': 'MT4', 'treatment': 'HIV-1 infected'}, 'GSM1908212': {'line': 'MT4', 'treatment': 'HIV-1 infected'}, 'GSM2304505': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2095704': {'line': 'HepG2', 'tissue': 'liver', 'type': 'HepG2 cells are adherent epithelial cells of hepatocellular carcinoma', 'state': 'HepG2 was derived from a liver hepatocellular carcinoma of a 15 year old Caucasian male.'}, 'GSM2095705': {'line': 'HepG2', 'tissue': 'liver', 'type': 'HepG2 cells are adherent epithelial cells of hepatocellular carcinoma', 'state': 'HepG2 was derived from a liver hepatocellular carcinoma of a 15 year old Caucasian male.'}, 'GSM2095706': {'line': 'HepG2', 'tissue': 'liver', 'type': 'HepG2 cells are adherent epithelial cells of hepatocellular carcinoma', 'state': 'HepG2 was derived from a liver hepatocellular carcinoma of a 15 year old Caucasian male.'}, 'GSM2095707': {'line': 'HepG2', 'tissue': 'liver', 'type': 'HepG2 cells are adherent epithelial cells of hepatocellular carcinoma', 'state': 'HepG2 was derived from a liver hepatocellular carcinoma of a 15 year old Caucasian male.'}, 'GSM2835496': {'tissue': 'quadriceps muscle', 'stage': '17 wks'}, 'GSM2835497': {'tissue': 'quadriceps muscle', 'stage': '17 wks'}, 'GSM2835494': {'tissue': 'quadriceps muscle', 'stage': '17 wks'}, 'GSM2835495': {'tissue': 'quadriceps muscle', 'stage': '17 wks'}, 'GSM2304504': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2131251': {'tissue': 'lung metastasis, DMSO control', 'protocol': '10% FBS', 'treatment': 'DMSO'}, 'GSM2610839': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303519': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303518': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACCR015A'}, 'GSM2303517': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303516': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303515': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2303514': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303513': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303512': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303511': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303510': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2565322': {'construction': 'PLATE-Seq', 'drug': 'Selinexor (KPT-330)'}, 'GSM2406941': {'line': 'A549', 'type': 'SV40 large T antigen immortalized'}, 'GSM2565323': {'construction': 'PLATE-Seq', 'drug': 'UNTREATED'}, 'GSM2100125': {'rin': '10', 'Sex': 'Male', 'sspg': '93', 'age': '50', 'bmi': '27.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '459', 'method': 'Life-Tech GITC'}, 'GSM2565320': {'construction': 'PLATE-Seq', 'drug': 'Pracinostat (SB939)'}, 'GSM1053774': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'IF signature'}, 'GSM1053775': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'IF signature'}, 'GSM1053776': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'IF signature'}, 'GSM2565321': {'construction': 'PLATE-Seq', 'drug': 'Resminostat'}, 'GSM1053770': {'prognosis': 'GOOD', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'EF signature'}, 'GSM1053771': {'prognosis': 'GOOD', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'EF signature'}, 'GSM1053772': {'prognosis': 'GOOD', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'EF signature'}, 'GSM1053773': {'prognosis': 'GOOD', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'EF signature'}, 'GSM2440805': {'line': 'MCF7', 'type': 'breast cancer cell line'}, 'GSM2440804': {'line': 'MCF7', 'type': 'breast cancer cell line'}, 'GSM2440807': {'line': 'MCF7', 'type': 'breast cancer cell line'}, 'GSM2440806': {'line': 'MCF7', 'type': 'breast cancer cell line'}, 'GSM1053778': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'PF signature'}, 'GSM1053779': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'PF signature'}, 'GSM2440803': {'line': 'MCF7', 'type': 'breast cancer cell line'}, 'GSM2226837': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM1700498': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'None'}, 'GSM1700499': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'None'}, 'GSM1617976': {'replicates': '1', 'sorting': 'CD44high/CD24low', 'treatment': 'EtOH', 'construct': 'pInducer21-HA-MYC'}, 'GSM1617977': {'replicates': '1', 'sorting': 'CD44low/CD24high', 'treatment': 'Dox', 'construct': 'pInducer21-HA-MYC'}, 'GSM1617970': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '65', 'Sex': 'F'}, 'GSM2565324': {'construction': 'PLATE-Seq', 'drug': 'UNTREATED'}, 'GSM1617972': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '60', 'Sex': 'M'}, 'GSM1916410': {'type': 'LCL-reprogrammed iPSC'}, 'GSM2565325': {'construction': 'PLATE-Seq', 'drug': 'XL147'}, 'GSM1617978': {'replicates': '1', 'sorting': 'CD44low/CD24high', 'treatment': 'EtOH', 'construct': 'pInducer21-HA-MYC'}, 'GSM1617979': {'replicates': '2', 'sorting': 'CD44high/CD24low', 'treatment': 'Dox', 'construct': 'pInducer21-HA-MYC'}, 'GSM1700496': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'None'}, 'GSM997550': {'subtype': 'total RNA - ribosome depleted', 'line': 'MCF10A', 'type': 'RNA-seq strand specific', 'variation': 'PALB2 knockdown (shRNAs)'}, 'GSM1916412': {'type': 'LCL-reprogrammed iPSC'}, 'GSM2454018': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM602558': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T1N0M0'}, 'GSM2226838': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM602559': {'tissue': 'kidney normal'}, 'GSM2565329': {'construction': 'PLATE-Seq', 'drug': 'NNC 05-2090 hydrochloride'}, 'GSM1916417': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM2687189': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2687188': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2687187': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2687186': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2687185': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM1969344': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM2687183': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2687182': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2687181': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2687180': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM1916419': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1916418': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM3059099': {'type': 'Lung progenitors'}, 'GSM1969349': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1376261': {'pathology': 'No', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM2305911': {'tissue': 'colon'}, 'GSM2305910': {'tissue': 'colon'}, 'GSM2305913': {'tissue': 'colon'}, 'GSM2305912': {'tissue': 'colon'}, 'GSM2305915': {'tissue': 'colon'}, 'GSM2305914': {'tissue': 'colon'}, 'GSM2305917': {'tissue': 'colon'}, 'GSM2305916': {'tissue': 'colon'}, 'GSM2305919': {'tissue': 'colon'}, 'GSM2305918': {'tissue': 'colon'}, 'GSM2307067': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM3190796': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B6', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.535034'}, 'GSM3190797': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '3.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.341288'}, 'GSM3190794': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A39', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.437578'}, 'GSM3190795': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.46814'}, 'GSM3190792': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.055896'}, 'GSM3190793': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A39', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.954567'}, 'GSM1827528': {'cinsarc': 'C1', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '2.66392881587953', 'quality': '3'}, 'GSM1827529': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'Yes', 'microarray': '--', 'time': '0', 'quality': '3'}, 'GSM1827526': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '1.59342915811088', 'quality': '2'}, 'GSM1827527': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '1.94934976043806', 'quality': '1'}, 'GSM1827524': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.454483230663929', 'quality': '2'}, 'GSM1827525': {'cinsarc': 'C1', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '1.52498288843258', 'quality': '4'}, 'GSM1827522': {'cinsarc': 'C1', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '1.38535249828884', 'quality': '3'}, 'GSM1827523': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'Yes', 'microarray': '--', 'time': '5.51950718685832', 'quality': '3'}, 'GSM1827520': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '1.77960301163587', 'quality': '3'}, 'GSM1827521': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'Yes', 'microarray': '--', 'time': '1.4757015742642', 'quality': '2'}, 'GSM2525731': {'line': 'HCC cells SMMC-7721', 'variation': 'Control'}, 'GSM2525732': {'line': 'HCC cells SMMC-7721', 'variation': 'MBNL3-Knockdown'}, 'GSM2307066': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2416868': {'type': 'Nascent Somites', 'stage': '5 weeks embryo'}, 'GSM2416869': {'type': 'Developed Somites at Forelimb Bud Level', 'stage': '4.5-5 weeks embryo'}, 'GSM1980379': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980378': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2311011': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Adjacent normal lung tissues', 'tissue': 'lung', 'id': 'Case2'}, 'GSM1980372': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2311013': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Adjacent normal lung tissues', 'tissue': 'lung', 'id': 'Case4'}, 'GSM2311012': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Adjacent normal lung tissues', 'tissue': 'lung', 'id': 'Case3'}, 'GSM2311015': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Adjacent normal lung tissues', 'tissue': 'lung', 'id': 'Case6'}, 'GSM2311014': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Adjacent normal lung tissues', 'tissue': 'lung', 'id': 'Case5'}, 'GSM1980375': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980374': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1333382': {'gender': 'Male', 'type': 'METOPIC'}, 'GSM1333383': {'gender': 'Male', 'type': 'METOPIC'}, 'GSM1333380': {'gender': 'Male', 'type': 'METOPIC'}, 'GSM1333381': {'gender': 'Male', 'type': 'METOPIC'}, 'GSM1333386': {'gender': 'Female', 'type': 'CORONAL'}, 'GSM1333387': {'gender': 'Female', 'type': 'CORONAL'}, 'GSM1333384': {'gender': 'Male', 'type': 'METOPIC'}, 'GSM1333385': {'gender': 'Female', 'type': 'CORONAL'}, 'GSM1333388': {'gender': 'Female', 'type': 'CORONAL'}, 'GSM1333389': {'gender': 'Female', 'type': 'CORONAL'}, 'GSM1113377': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 10 post-vaccine'}, 'GSM1113376': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 9 post-vaccine'}, 'GSM1113375': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 8 post-vaccine'}, 'GSM1113374': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 7 post-vaccine'}, 'GSM2385609': {'line': '1406', 'type': 'glioblastoma stem cell'}, 'GSM2385608': {'line': '1406', 'type': 'glioblastoma stem cell'}, 'GSM1113371': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 4 post-vaccine'}, 'GSM1113370': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 3 post-vaccine'}, 'GSM2385605': {'line': '1228', 'type': 'glioblastoma stem cell'}, 'GSM2385604': {'line': '827', 'type': 'glioblastoma stem cell'}, 'GSM2385607': {'line': '1228', 'type': 'glioblastoma stem cell'}, 'GSM2385606': {'line': '1228', 'type': 'glioblastoma stem cell'}, 'GSM2385601': {'line': '025T', 'type': 'glioblastoma stem cell'}, 'GSM2385600': {'line': '025T', 'type': 'glioblastoma stem cell'}, 'GSM1113379': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 1 post-vaccine'}, 'GSM2385602': {'line': '827', 'type': 'glioblastoma stem cell'}, 'GSM2290161': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290160': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290163': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290162': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290165': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290164': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290167': {'antibody': 'E2A (Cell Signaling, 12258/1)', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290166': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290169': {'antibody': 'p300 (Bethyl, A300-358A/3)', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290168': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM1868849': {'with': 'BAP-treatment', 'line': 'H1 (NIH code WA01)', 'type': 'ESC derived from human male blastocysts (H1, NIH code WA01)', 'age': '8-day culture', 'fraction': 'STB of larger 70 μm'}, 'GSM1482949': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '24T2'}, 'GSM1482948': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '24T1'}, 'GSM2357105': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '06h'}, 'GSM2307062': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2610835': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2250147': {'type': 'Adjacent normal lung tissue'}, 'GSM2250146': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM2250145': {'type': 'Adjacent normal lung tissue'}, 'GSM2250144': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM2250143': {'type': 'Adjacent normal lung tissue'}, 'GSM2250142': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM2250141': {'type': 'Adjacent normal lung tissue'}, 'GSM2250140': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM2250149': {'type': 'Adjacent normal lung tissue'}, 'GSM2250148': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM2195084': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195085': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2610834': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2123915': {}, 'GSM2307060': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2195087': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195080': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195081': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195082': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195083': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2411782': {'line': '2945B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM1864035': {'gender': 'female', 'line': 'MDA-MB-231', 'tissue': 'breast', 'genotype': 'ezh2-/-'}, 'GSM2359998': {'induction': 'Undifferentiated', 'antibody': 'H3K27ac (Diagenode , pAB-196)'}, 'GSM2359999': {'induction': 'Adipocyte differentiation', 'antibody': 'H3K27ac (Diagenode , pAB-196)'}, 'GSM2359990': {'induction': 'Osteoblast differentiation', 'antibody': 'CHD1 (Bethyl ,A301-218A)'}, 'GSM2359991': {'induction': 'Undifferentiated', 'antibody': 'CHD1 (Bethyl ,A301-218A)'}, 'GSM2359992': {'induction': 'Undifferentiated', 'antibody': 'H3K4me3 (Diagenode ,Mab-003)'}, 'GSM2359993': {'induction': 'Adipocyte differentiation', 'antibody': 'H3K4me3 (Diagenode ,Mab-003)'}, 'GSM2359994': {'induction': 'Osteoblast differentiation', 'antibody': 'H3K4me3 (Diagenode ,Mab-003)'}, 'GSM2359995': {'induction': 'Undifferentiated', 'antibody': 'H3K27me3 (Diagenode ,Mab-003)'}, 'GSM2359996': {'induction': 'Adipocyte differentiation', 'antibody': 'H3K27me3 (Diagenode ,Mab-003)'}, 'GSM2359997': {'induction': 'Osteoblast differentiation', 'antibody': 'H3K27me3 (Diagenode ,Mab-003)'}, 'GSM2316890': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1437721': {'tissue': 'Bladder', 'stage': 'unknown'}, 'GSM1437720': {'tissue': 'Bladder', 'stage': 'unknown'}, 'GSM2316891': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1864034': {'gender': 'female', 'line': 'MDA-MB-231', 'tissue': 'breast', 'genotype': 'ezh2-/-'}, 'GSM2862905': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2478943': {'line': 'A549', 'with': '1 micromolar pyridostatin for 24 hr', 'variation': 'wild type'}, 'GSM2478942': {'line': 'A549', 'with': '1 micromolar pyridostatin for 24 hr', 'variation': 'wild type'}, 'GSM2478941': {'line': 'A549', 'with': '1 micromolar pyridostatin for 24 hr', 'variation': 'wild type'}, 'GSM2478940': {'line': 'A549', 'with': 'vehicle', 'variation': 'PARP3-/-'}, 'GSM2478946': {'line': 'A549', 'with': '1 micromolar pyridostatin for 24 hr', 'variation': 'PARP3-/-'}, 'GSM2478945': {'line': 'A549', 'with': '1 micromolar pyridostatin for 24 hr', 'variation': 'PARP3-/-'}, 'GSM2478944': {'line': 'A549', 'with': '1 micromolar pyridostatin for 24 hr', 'variation': 'PARP3-/-'}, 'GSM1503905': {'line': 'HeLa', 'transfection': 'siSMG6 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503904': {'line': 'HeLa', 'transfection': 'siGL2 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503907': {'line': 'HeLa', 'transfection': 'siGL2 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503906': {'line': 'HeLa', 'transfection': 'siUPF1 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503901': {'line': 'HeLa', 'strategy': 'C-PARE', 'transfection': 'siGL2 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503900': {'line': 'HeLa', 'strategy': 'PARE', 'transfection': 'siUPF1 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503903': {'line': 'HeLa', 'strategy': 'C-PARE', 'transfection': 'siUPF1 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503902': {'line': 'HeLa', 'strategy': 'C-PARE', 'transfection': 'siSMG6 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1864037': {'gender': 'female', 'line': 'MDA-MB-231', 'tissue': 'breast', 'genotype': 'wild type; hotair overexpressed'}, 'GSM1503909': {'line': 'HeLa', 'transfection': 'siUPF1 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503908': {'line': 'HeLa', 'transfection': 'siSMG6 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1425782': {'grade': 'Sarcomatoid', 'pretreatment': 'None', 'type': 'S', 'Stage': 'IV'}, 'GSM1425783': {'grade': 'Epithelioid', 'pretreatment': 'None', 'type': 'E', 'Stage': 'IV'}, 'GSM2122738': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2122739': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM2889036': {'tissue': 'pancreatic islets'}, 'GSM2122730': {'age': '65', 'tissue': 'olfactory epithelium', 'Sex': 'male'}, 'GSM2122731': {'age': '61', 'tissue': 'olfactory epithelium', 'Sex': 'male'}, 'GSM2122734': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2122735': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2122736': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2122737': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM2598426': {'line': 'RPE1', 'sirna': 'control'}, 'GSM1622602': {'tissue': 'Adipose', 'phenotype': \"Cushing's\"}, 'GSM1622603': {'tissue': 'Adipose', 'phenotype': \"Cushing's\"}, 'GSM1622600': {'tissue': 'Adipose', 'phenotype': \"Cushing's\"}, 'GSM1622601': {'tissue': 'Adipose', 'phenotype': \"Cushing's\"}, 'GSM2528068': {'type': 'B lymphocyte cells', 'antibody': '-', 'conditions': '15 minutes with 0.05 % v/v solvent DMSO (Sigma); incl. 4sU-labeling during the last 5 minutes.', 'genotype': 'CDK9as', 'protocol': 'TT-seq (Schwalb et al., 2016)'}, 'GSM2528069': {'type': 'B lymphocyte cells', 'antibody': '-', 'conditions': '15 min of 5 µM of 1-NA-PP1 (CDK9as inhibitor) (Calbiochem, EMD Millipore); incl. 4sU-labeling during the last 5 minutes.', 'genotype': 'CDK9as', 'protocol': 'TT-seq (Schwalb et al., 2016)'}, 'GSM2598423': {'line': 'RPE1', 'sirna': 'control'}, 'GSM2528066': {'type': 'B lymphocyte cells', 'antibody': '-', 'conditions': '15 min of 5 µM of 1-NA-PP1 (CDK9as inhibitor) (Calbiochem, EMD Millipore); incl. 4sU-labeling during the last 5 minutes.', 'genotype': 'CDK9as', 'protocol': 'TT-seq (Schwalb et al., 2016)'}, 'GSM2528067': {'type': 'B lymphocyte cells', 'antibody': '-', 'conditions': '15 minutes with 0.05 % v/v solvent DMSO (Sigma); incl. 4sU-labeling during the last 5 minutes.', 'genotype': 'CDK9as', 'protocol': 'TT-seq (Schwalb et al., 2016)'}, 'GSM2158106': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2113349': {'type': 'THP-1', 'treatment': 'DMSO'}, 'GSM2113348': {'type': 'THP-1', 'treatment': 'Campothecin'}, 'GSM2889034': {'tissue': 'pancreatic islets'}, 'GSM2113345': {'type': 'THP-1', 'treatment': 'DMSO'}, 'GSM2113344': {'type': 'THP-1', 'treatment': 'Campothecin'}, 'GSM2113347': {'type': 'THP-1', 'treatment': 'DMSO'}, 'GSM2113346': {'type': 'THP-1', 'treatment': 'Campothecin'}, 'GSM2889033': {'tissue': 'pancreatic islets'}, 'GSM3332062': {'subtype': 'rRNA depleted RNA', 'type': 'Human umbilical vein endothelial cell (HUVEC)', 'treatment': 'normoxia'}, 'GSM3332063': {'subtype': 'rRNA depleted RNA', 'type': 'Human umbilical vein endothelial cell (HUVEC)', 'treatment': '6h under hypoxia'}, 'GSM3332060': {'subtype': 'rRNA depleted RNA', 'type': 'Human umbilical vein endothelial cell (HUVEC)', 'treatment': 'normoxia'}, 'GSM3332061': {'subtype': 'rRNA depleted RNA', 'type': 'Human umbilical vein endothelial cell (HUVEC)', 'treatment': '6h under hypoxia'}, 'GSM2889032': {'tissue': 'pancreatic islets'}, 'GSM2109328': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109329': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM597205': {'subtype': 'Prostate adenocarcinoma', 'sampleID': 'HF-23261-(1)', 'organ': 'Prostate'}, 'GSM597204': {'subtype': 'Prostate adenocarcinoma', 'sampleID': 'HF-23751-(1)', 'organ': 'Prostate'}, 'GSM2109320': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109321': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109322': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109323': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109324': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109325': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109326': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM597208': {'subtype': 'Adjacent normal prostate', 'sampleID': 'HF-23260-(1)', 'organ': 'Prostate'}, 'GSM2794861': {'status': 'well differentiated', 'tissue': 'tumor', 'infection': 'HBV-infected', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2858'}, 'GSM2251710': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 25 mM'}, 'GSM2533784': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1957328': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957329': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2740956': {'with': 'shBRG1 + shBRM', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1957325': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957326': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957327': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957320': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2740953': {'with': 'shBRG1 + shBRM', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1957322': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957323': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2251713': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM2830000': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1566738': {'type': 'SGBS adipocyte D10'}, 'GSM2251712': {'tissue': 'ES-derived cardiac progenitor cells'}, 'GSM1207924': {'line': 'HeLa-S3', 'barcode': 'ATGCAGCAG', 'variation': 'Mtr4 knock out (exosome)'}, 'GSM1566734': {'antibody': 'RELA (C-20, sc-372, Santa Cruz)', 'type': 'SGBS adipocyte D10'}, 'GSM1207922': {'transfection': 'mTET1-FL expression plasmid', 'line': 'HEK293T'}, 'GSM1566732': {'antibody': 'RELA (C-20, sc-372, Santa Cruz)', 'type': 'SGBS adipocyte D10'}, 'GSM1316401': {'line': 'Kasumi-1', 'genotype': 'siMM', 'treatment': 'transfection with scrambled siRNA'}, 'GSM1316402': {'line': 'Kasumi-1', 'genotype': 'siMM', 'treatment': 'transfection with scrambled siRNA'}, 'GSM1316403': {'line': 'Kasumi-1', 'genotype': 'siMM', 'treatment': 'transfection with scrambled siRNA'}, 'GSM1316404': {'line': 'Kasumi-1', 'genotype': 'siRE', 'treatment': 'transfection with RUNX1-ETO siRNA'}, 'GSM1207920': {'transfection': 'mTET1-CD expression plasmid', 'line': 'HEK293T'}, 'GSM1316406': {'line': 'Kasumi-1', 'genotype': 'siRE', 'treatment': 'transfection with RUNX1-ETO siRNA'}, 'GSM1207921': {'transfection': 'TET1-FL expression plasmid', 'line': 'HEK293T'}, 'GSM1955788': {'a': '57381', 'cd38': '1020', 'cd49f': '147', 'w': '68707', 'h': '54733', 'lin': '-309', 'cd34': '5692', 'cd90': '1', 'cd7': '779', 'cd10': '124', 'time': '21360', 'cd135': '1227', 'cd45ra': '74'}, 'GSM1955789': {'a': '74145', 'cd38': '475', 'cd49f': '1107', 'w': '66295', 'h': '73296', 'lin': '776', 'cd34': '7550', 'cd90': '94', 'cd7': '40', 'cd10': '1161', 'time': '21146', 'cd135': '6243', 'cd45ra': '2025'}, 'GSM1576428': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human monocytes', 'time': '1 d'}, 'GSM1576429': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human monocytes', 'time': '3 d'}, 'GSM1955784': {'a': '72633', 'cd38': '1098', 'cd49f': '663', 'w': '69355', 'h': '68633', 'lin': '76', 'cd34': '5821', 'cd90': '669', 'cd7': '46', 'cd10': '650', 'time': '19446', 'cd135': '15057', 'cd45ra': '3384'}, 'GSM1955785': {'a': '56402', 'cd38': '459', 'cd49f': '654', 'w': '67797', 'h': '54521', 'lin': '906', 'cd34': '6337', 'cd90': '1324', 'cd7': '388', 'cd10': '893', 'time': '22027', 'cd135': '6912', 'cd45ra': '911'}, 'GSM1955786': {'a': '48419', 'cd38': '-205', 'cd49f': '559', 'w': '65965', 'h': '48104', 'lin': '622', 'cd34': '8254', 'cd90': '3092', 'cd7': '470', 'cd10': '195', 'time': '21800', 'cd135': '1667', 'cd45ra': '221'}, 'GSM1955787': {'a': '47040', 'cd38': '882', 'cd49f': '-9', 'w': '68235', 'h': '45180', 'lin': '-575', 'cd34': '4903', 'cd90': '1708', 'cd7': '202', 'cd10': '96787', 'time': '21569', 'cd135': '4544', 'cd45ra': '7802'}, 'GSM1955780': {'a': '63067', 'cd38': '673', 'cd49f': '833', 'w': '68862', 'h': '60021', 'lin': '275', 'cd34': '5844', 'cd90': '1499', 'cd7': '361', 'cd10': '703', 'time': '18595', 'cd135': '7307', 'cd45ra': '368'}, 'GSM1955781': {'a': '59582', 'cd38': '712', 'cd49f': '617', 'w': '68164', 'h': '57285', 'lin': '619', 'cd34': '6272', 'cd90': '4282', 'cd7': '409', 'cd10': '671', 'time': '18783', 'cd135': '5276', 'cd45ra': '250'}, 'GSM1955782': {'a': '62780', 'cd38': '847', 'cd49f': '393', 'w': '69316', 'h': '59356', 'lin': '-52', 'cd34': '5676', 'cd90': '1982', 'cd7': '117', 'cd10': '749', 'time': '18976', 'cd135': '3094', 'cd45ra': '428'}, 'GSM1955783': {'a': '67446', 'cd38': '-121', 'cd49f': '570', 'w': '65209', 'h': '67785', 'lin': '201', 'cd34': '8585', 'cd90': '402', 'cd7': '284', 'cd10': '1128', 'time': '19191', 'cd135': '1682', 'cd45ra': '173'}, 'GSM2362558': {'line': 'HEK293'}, 'GSM2362559': {'line': 'HEK293'}, 'GSM2362552': {'line': 'HEK293'}, 'GSM2362553': {'line': 'HEK293'}, 'GSM2362550': {'line': 'HEK293'}, 'GSM2362551': {'line': 'HEK293'}, 'GSM2362556': {'line': 'HEK293'}, 'GSM2362557': {'line': 'HEK293'}, 'GSM2362554': {'line': 'HEK293'}, 'GSM2362555': {'line': 'HEK293'}, 'GSM2859878': {'line': 'H295R', 'vector': 'pcDNA5/FRT/TO', 'type': 'adrenocortical carcinoma cell line', 'method': 'electroporation', 'construct': 'p.Arg172Gln CLCN2'}, 'GSM2859879': {'line': 'H295R', 'vector': 'pcDNA5/FRT/TO', 'type': 'adrenocortical carcinoma cell line', 'method': 'electroporation', 'construct': 'p.Arg172Gln CLCN2'}, 'GSM1234119': {'replicate': '1', 'line': '19239', 'antibody': 'SA1'}, 'GSM1234118': {'replicate': '2', 'line': '19239', 'antibody': 'RNA-seq'}, 'GSM1234115': {'replicate': '3', 'line': '19239', 'antibody': 'H3K4me3'}, 'GSM1234114': {'replicate': '2', 'line': '19239', 'antibody': 'H3K4me3'}, 'GSM2859870': {'type': 'Endothelial cells', 'treatment': 'Normoxia 20% O2, 5% CO2 humidified atmosphere', 'passage': 'Passage 2'}, 'GSM2859871': {'type': 'Endothelial cells', 'treatment': 'Normoxia 20% O2, 5% CO2 humidified atmosphere', 'passage': 'Passage 2'}, 'GSM2859876': {'line': 'H295R', 'vector': 'pcDNA5/FRT/TO', 'type': 'adrenocortical carcinoma cell line', 'method': 'electroporation', 'construct': 'WT CLCN2'}, 'GSM2859877': {'line': 'H295R', 'vector': 'pcDNA5/FRT/TO', 'type': 'adrenocortical carcinoma cell line', 'method': 'electroporation', 'construct': 'WT CLCN2'}, 'GSM2859874': {'line': 'H295R', 'vector': 'pcDNA5/FRT/TO', 'type': 'adrenocortical carcinoma cell line', 'method': 'electroporation', 'construct': 'empty vector'}, 'GSM2859875': {'line': 'H295R', 'vector': 'pcDNA5/FRT/TO', 'type': 'adrenocortical carcinoma cell line', 'method': 'electroporation', 'construct': 'empty vector'}, 'GSM2300453': {'line': 'H2228', 'replicate': '2'}, 'GSM2300452': {'line': 'H2228', 'replicate': '2'}, 'GSM2745821': {'group': '3D/BSA', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745820': {'group': '3D/BSA', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745822': {'group': '3D/BSA', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2626964': {'origin': 'pancreas', 'patient_id': '163', 'type': 'primary', 'tumor_id': '137'}, 'GSM2626965': {'origin': 'pancreas', 'patient_id': '164', 'type': 'primary', 'tumor_id': '138'}, 'GSM2626966': {'origin': 'pancreas', 'patient_id': '14', 'type': 'primary', 'tumor_id': '14'}, 'GSM2626967': {'origin': 'pancreas', 'patient_id': '15', 'type': 'primary', 'tumor_id': '15'}, 'GSM2626960': {'origin': 'pancreas', 'patient_id': '155', 'type': 'primary', 'tumor_id': '129'}, 'GSM2626961': {'origin': 'pancreas', 'patient_id': '13', 'type': 'primary', 'tumor_id': '13'}, 'GSM2626962': {'origin': 'pancreas', 'patient_id': '160', 'type': 'primary', 'tumor_id': '134'}, 'GSM1609442': {'line': 'GM19240', 'type': 'polyA RNA'}, 'GSM2626968': {'origin': 'pancreas', 'patient_id': '16', 'type': 'primary', 'tumor_id': '16'}, 'GSM1609441': {'line': 'GM19239', 'type': 'polyA RNA'}, 'GSM1609440': {'line': 'GM19239', 'type': 'polyA RNA'}, 'GSM1953959': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM1239128': {'status': '- / - / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB144', 'size': '6cm'}, 'GSM2774138': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK343'}, 'GSM2774136': {'status': 'wild-type', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK669'}, 'GSM2774134': {'status': 'wild-type', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK669'}, 'GSM2774131': {'status': 'wild-type', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK343'}, 'GSM2158267': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158266': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158265': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158264': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158263': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158262': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158261': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158260': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158269': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158268': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2670985': {'line': 'HCT116', 'antibody': 'rat monoclonal anti-Ser2-P 3E10 (Chromotek)', 'genotype': 'wildtype'}, 'GSM2670984': {'line': 'HCT116', 'antibody': 'rat monoclonal anti-Ser5-P 3E8 (Chromotek)', 'genotype': 'Cdk7as mutant'}, 'GSM1863739': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863738': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM2670981': {'line': 'HCT116', 'antibody': 'rat monoclonal anti-Ser5-P 3E8 (Chromotek)', 'genotype': 'wildtype'}, 'GSM2670980': {'line': 'HCT116', 'antibody': 'rabbit anti pan CTD (Schroeder eta l Genes Dev. 14:2435, 2000)', 'genotype': 'wildtype'}, 'GSM2670983': {'line': 'HCT116', 'antibody': 'rat monoclonal anti-Ser5-P 3E8 (Chromotek)', 'genotype': 'wildtype'}, 'GSM2670982': {'line': 'HCT116', 'antibody': 'rat monoclonal anti-Ser5-P 3E8 (Chromotek)', 'genotype': 'Cdk7as mutant'}, 'GSM1863733': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863732': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863731': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863730': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863737': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863736': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863735': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1863734': {'status': 'healthy', 'tissue': 'whole blood', 'ro': 'control', 'ism': 'control'}, 'GSM1395379': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 vorinostat', 'timepoint': '4hr'}, 'GSM1395378': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 DMSO', 'timepoint': '8hr'}, 'GSM2177871': {'status': 'Hepatoblastoma', 'Sex': 'Missing', 'type': 'Hepatoblastoma', 'years': 'Missing'}, 'GSM2177870': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '2'}, 'GSM1395375': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '8hr'}, 'GSM1395374': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '4hr'}, 'GSM1395373': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '12hr'}, 'GSM1395372': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '8hr'}, 'GSM1395371': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '4hr'}, 'GSM1395370': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 vorinostat', 'timepoint': '12hr'}, 'GSM2563643': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2563642': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2476339': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2563641': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2348399': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2563640': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2563646': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2053456': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '35', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#6'}, 'GSM2053457': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '42', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#7'}, 'GSM2053454': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '49', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#26'}, 'GSM2298948': {'type': 'Primary GBM'}, 'GSM2053452': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '62', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#24'}, 'GSM2563645': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2053450': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '40', 'infection': 'NA', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#21'}, 'GSM2053451': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '53', 'infection': 'Yes', 'cirrhosis': 'No', 'tissue': 'adjacent normal', 'id': '#22'}, 'GSM2298943': {'type': 'Primary GBM'}, 'GSM2298942': {'type': 'RKI1 cells'}, 'GSM2298941': {'type': 'CW789 cells'}, 'GSM2563644': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2298947': {'type': 'Primary GBM'}, 'GSM2298946': {'type': 'Primary GBM'}, 'GSM2298945': {'type': 'Primary GBM'}, 'GSM2298944': {'type': 'Primary GBM'}, 'GSM1881559': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881558': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881553': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881552': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881551': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881550': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881557': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881556': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881555': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881554': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1105775': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1009638': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '12h'}, 'GSM1009639': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '0h'}, 'GSM1009632': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '1h', 'antibody': 'p300', 'manufactuer': 'Santa Cruz'}, 'GSM1009633': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h', 'antibody': 'p300', 'manufactuer': 'Santa Cruz'}, 'GSM1009630': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '12h', 'antibody': 'p300', 'manufactuer': 'Santa Cruz'}, 'GSM1009631': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '0h', 'antibody': 'p300', 'manufactuer': 'Santa Cruz'}, 'GSM1009636': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '1h'}, 'GSM1009637': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '4h'}, 'GSM1009634': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '12h', 'antibody': 'p300', 'manufactuer': 'Santa Cruz'}, 'GSM1009635': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells', 'treatment': 'VEGF', 'time': '0h'}, 'GSM2123896': {}, 'GSM1957067': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957066': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM2511633': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511632': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511631': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511630': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM1957065': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM2123897': {}, 'GSM1957064': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957063': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957062': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957061': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957060': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM2176393': {'line': 'K562'}, 'GSM2176392': {'line': 'K562'}, 'GSM2176391': {'line': 'K562'}, 'GSM2176390': {'line': 'K562'}, 'GSM2176397': {'line': 'K562'}, 'GSM2176396': {'line': 'K562'}, 'GSM2176395': {'line': 'K562'}, 'GSM2176394': {'line': 'K562'}, 'GSM2176399': {'line': 'K562'}, 'GSM2176398': {'line': 'K562'}, 'GSM2123895': {}, 'GSM2048716': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1937929': {'status': 'HPV16', 'gender': 'M', 'stage': 'II'}, 'GSM1832659': {'line': 'ZR-75-30', 'genotype': 'RACK7 knockout'}, 'GSM1105772': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2048711': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2700347': {'line': 'HFF', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM2700346': {'line': 'HFF', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM2700349': {'line': 'HFF', 'condition': '6 mg/mL collagen matrix'}, 'GSM2700348': {'line': 'HFF', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM2048710': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1502504': {'line': 'HEK293T', 'type': 'embryonic kidney cells', 'variation': 'METTL14 Knockdown'}, 'GSM1502505': {'line': 'HEK293T', 'type': 'embryonic kidney cells', 'variation': 'METTL14 Knockdown'}, 'GSM1502502': {'line': 'HEK293T', 'type': 'embryonic kidney cells', 'variation': 'METTL3 Knockdown'}, 'GSM1502503': {'line': 'HEK293T', 'type': 'embryonic kidney cells', 'variation': 'METTL3 Knockdown'}, 'GSM1502500': {'line': 'HEK293T', 'type': 'embryonic kidney cells', 'variation': 'HNRNPC Knockdown'}, 'GSM1502501': {'line': 'HEK293T', 'type': 'embryonic kidney cells', 'variation': 'HNRNPC Knockdown'}, 'GSM2026231': {'m': 'express Rbfox1 but not hnRNP M', 'type': 'Human embryonic kidney'}, 'GSM1892623': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1606110': {'line': 'HEK293T', 'treatment': 'ISRIB (200 nM) for 1 hour'}, 'GSM1606111': {'line': 'HEK293T', 'treatment': '1μg/ml of tunicamycin for 1 hour'}, 'GSM1606112': {'line': 'HEK293T', 'treatment': '1μg/ml of tunicamycin for 1 hour'}, 'GSM1606113': {'line': 'HEK293T', 'treatment': '1μg/ml of tunicamycin and ISRIB (200 nM) for 1 hour'}, 'GSM1606114': {'line': 'HEK293T', 'treatment': '1μg/ml of tunicamycin and ISRIB (200 nM) for 1 hour'}, 'GSM1414929': {'region': 'BA22', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM2170728': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170729': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2486697': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2170720': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170721': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2486698': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2170723': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170724': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170725': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170726': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170727': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2348501': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2417220': {'phenotype': 'neutralizer controllers'}, 'GSM2417223': {'phenotype': 'neutralizer controllers'}, 'GSM2417222': {'phenotype': 'neutralizer controllers'}, 'GSM2417225': {'phenotype': 'non-neutralizer controllers'}, 'GSM2417224': {'phenotype': 'non-neutralizer controllers'}, 'GSM2417227': {'phenotype': 'non-neutralizer controllers'}, 'GSM2417226': {'phenotype': 'non-neutralizer controllers'}, 'GSM1567921': {'weeks': '20'}, 'GSM2348508': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1567923': {'weeks': '10.3'}, 'GSM1567922': {'weeks': '20.3'}, 'GSM2565201': {'construction': 'PLATE-Seq', 'drug': 'Epirubicin Hydrochloride'}, 'GSM2565200': {'construction': 'PLATE-Seq', 'drug': 'Carfilzomib (PR-171)'}, 'GSM1567927': {'weeks': '17.1'}, 'GSM1567926': {'weeks': '15.3'}, 'GSM1556374': {'gender': 'male', 'id': 'GM02038 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556375': {'gender': 'male', 'id': 'GM02038 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556376': {'gender': 'male', 'id': 'GM01792 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556377': {'gender': 'male', 'id': 'GM01792 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556370': {'gender': 'female', 'id': 'GM03651 (Coriell)', 'diagnosis': 'Control'}, 'GSM1556371': {'gender': 'female', 'id': 'GM04506 (Coriell)', 'diagnosis': 'Control'}, 'GSM1556372': {'gender': 'female', 'id': 'AG09319 (Coriell)', 'diagnosis': 'Control'}, 'GSM1965278': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965277': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965276': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1276854': {'score': '9', 'sequence': 'CGATGT', 'targeted': 'SRSF9', 'number': '2', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1965274': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965273': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965272': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1276850': {'score': '9.7', 'sequence': 'GCCAAT', 'targeted': 'HNRPL', 'number': '6', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276851': {'score': '8.1', 'sequence': 'TTAGGC', 'targeted': 'HNRPL', 'number': '3', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1569563': {'knockdown': 'N/A', 'line': 'HMC-P6', 'antibody': 'H3K9me3'}, 'GSM1569562': {'knockdown': 'N/A', 'line': 'HMC-P6', 'antibody': 'H3K9me2'}, 'GSM1569561': {'knockdown': 'siKDM3A', 'line': 'HMC-LTR'}, 'GSM1569560': {'knockdown': 'negative control', 'line': 'HMC-LTR'}, 'GSM1569567': {'knockdown': 'N/A', 'line': 'HMC-L', 'antibody': 'H3K9me3'}, 'GSM1569566': {'knockdown': 'N/A', 'line': 'HMC-L', 'antibody': 'H3K9me2'}, 'GSM1569565': {'knockdown': 'N/A', 'line': 'HMC-P6', 'antibody': 'H3K4me3'}, 'GSM1569564': {'knockdown': 'N/A', 'line': 'HMC-P6', 'antibody': 'H3K27me3'}, 'GSM1569569': {'knockdown': 'N/A', 'line': 'HMC-L', 'antibody': 'H3K4me3'}, 'GSM1569568': {'knockdown': 'N/A', 'line': 'HMC-L', 'antibody': 'H3K27me3'}, 'GSM2535907': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5997', 'samplename': '1_HealthyCtl_RO+_C13', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28956', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5997', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C13'}, 'GSM2535906': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5996', 'samplename': '1_HealthyCtl_RO+_C07', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28955', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5996', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C07'}, 'GSM2535905': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5995', 'samplename': '1*_HealthyCtl_RO+_C32', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28954', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5995', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C32'}, 'GSM2535904': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5994', 'samplename': '1_HealthyCtl_RO+_C08', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28953', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5994', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C08'}, 'GSM2535903': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5993', 'samplename': '1_HealthyCtl_RO+_C02', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28952', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5993', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C02'}, 'GSM2535902': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5992', 'samplename': '1*_HealthyCtl_RO+_C37', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28951', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5992', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C37'}, 'GSM2535901': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5991', 'samplename': '1_HealthyCtl_RO+_C25', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28950', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5991', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C25'}, 'GSM2535900': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5990', 'samplename': '1_HealthyCtl_RO+_C15', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28949', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5990', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C15'}, 'GSM1297659': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297658': {'differentiation': 'Differentiation 3, full confluency', 'material': 'single cells', 'point': 'Day 3'}, 'GSM2535909': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5999', 'samplename': '1*_HealthyCtl_RO+_C33', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28958', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5999', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C33'}, 'GSM2535908': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib5998', 'samplename': '1_HealthyCtl_RO+_C19', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28957', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib5998', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C19'}, 'GSM2616475': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616474': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616477': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616476': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616471': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2616470': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616473': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616472': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616479': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616478': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2454736': {'subtype': 'Triple Negative Breast Cancer', 'line': 'MDA-MB-231', 'protocol': 'MDA-MB-231 cells grown into spheroids for 14 days, then replated onto TCPS', 'platform': 'Spheroids dissociated onto TCPS'}, 'GSM2454737': {'subtype': 'HER2-overexpressing Breast Cancer', 'line': 'SkBr3', 'protocol': 'SkBr3 cells grown into spheroids for 14 days, then replated onto TCPS', 'platform': 'Spheroids dissociated onto TCPS'}, 'GSM2454734': {'subtype': 'Triple Negative Breast Cancer', 'line': 'MDA-MB-231', 'protocol': 'MDA-MB-231 cells in vivo', 'platform': 'Mouse Xenograft'}, 'GSM2454735': {'subtype': 'HER2-overexpressing Breast Cancer', 'line': 'SkBr3', 'protocol': 'SkBr3 cells in vivo', 'platform': 'Mouse Xenograft'}, 'GSM2454732': {'subtype': 'Triple Negative Breast Cancer', 'line': 'MDA-MB-231', 'protocol': 'MDA-MB-231 cells cultured on a soft 2D gel', 'platform': '2D Gel - 10 kPa'}, 'GSM2454733': {'subtype': 'Triple Negative Breast Cancer', 'line': 'MDA-MB-231', 'protocol': 'MDA-MB-231 cells cultured on a stiff 2D gel', 'platform': '2D Gel - 33 kPa'}, 'GSM2454730': {'subtype': 'HER2-overexpressing Breast Cancer', 'line': 'SkBr3', 'protocol': 'SkBr3 cells cultured on a soft 2D gel', 'platform': '2D Gel - 10 kPa'}, 'GSM2454731': {'subtype': 'HER2-overexpressing Breast Cancer', 'line': 'SkBr3', 'protocol': 'SkBr3 cells cultured on a stiff 2D gel', 'platform': '2D Gel - 33 kPa'}, 'GSM2348800': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2454738': {'subtype': 'Triple Negative Breast Cancer', 'line': 'MDA-MB-231', 'protocol': 'MDA-MB-231 cells grown into spheroids for 14 days', 'platform': 'Spheroids in polyNIPAAM'}, 'GSM2454739': {'subtype': 'HER2-overexpressing Breast Cancer', 'line': 'SkBr3', 'protocol': 'SkBr3 cells grown into spheroids for 14 days', 'platform': 'Spheroids in polyNIPAAM'}, 'GSM2142655': {}, 'GSM2142654': {}, 'GSM2142657': {}, 'GSM2142656': {}, 'GSM2142651': {}, 'GSM2142650': {}, 'GSM2142653': {}, 'GSM2142652': {}, 'GSM2392699': {'type': 'Induced pluripotent stem cell'}, 'GSM2142659': {}, 'GSM2142658': {}, 'GSM1700902': {'status': 'knock-down', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM1700903': {'status': 'knock-down', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM1700900': {'status': 'knock-down', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM1700901': {'status': 'knock-down', 'line': 'HT29', 'type': 'colorectal adenocarcinoma cell line'}, 'GSM2392697': {'type': 'Induced pluripotent stem cell'}, 'GSM2309894': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Unknown', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '34.68'}, 'GSM1980348': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2257738': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '45 minutes labeling'}, 'GSM1980349': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2392692': {'type': 'Induced pluripotent stem cell'}, 'GSM2392693': {'type': 'Induced pluripotent stem cell'}, 'GSM1446215': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with GFP'}, 'GSM1446214': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with GFP'}, 'GSM1446217': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with EGFR'}, 'GSM1446216': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK'}, 'GSM1446211': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with EGFR'}, 'GSM1446210': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK and EGFR'}, 'GSM1446213': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK'}, 'GSM2257734': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '30 minutes labeling'}, 'GSM2392691': {'type': 'Induced pluripotent stem cell'}, 'GSM1446218': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK and EGFR'}, 'GSM1363453': {'antibody': 'H3K9me3 (Abcam, catalog# ab8898, lot# GR130994-1)'}, 'GSM3383899': {'tissue': 'normal pancreas', 'id': 'patient9', 'diagnosis': 'pancreatic cancer'}, 'GSM3383898': {'tissue': 'normal pancreas', 'id': 'patient8', 'diagnosis': 'pancreatic cancer'}, 'GSM1155629': {'antibody': 'CenH3 (Enzo life science, ADI-KAM-CC006-E) + H3 (Sigma Aldrich, H9289)', 'line': 'eCenH3 HeLa S3', 'type': 'Cervical cancer', 'variation': 'CenH3 over-expression'}, 'GSM1363452': {'antibody': 'H3K9me3 (Abcam, catalog# ab8898, lot# GR111948-1)'}, 'GSM3383893': {'tissue': 'normal pancreas', 'id': 'patient3', 'diagnosis': 'pancreatic cancer'}, 'GSM3383892': {'tissue': 'normal pancreas', 'id': 'patient2', 'diagnosis': 'pancreatic cancer'}, 'GSM3383891': {'tissue': 'normal pancreas', 'id': 'patient1', 'diagnosis': 'pancreatic cancer'}, 'GSM3383897': {'tissue': 'normal pancreas', 'id': 'patient7', 'diagnosis': 'pancreatic cancer'}, 'GSM2477382': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'cytokine'}, 'GSM3383895': {'tissue': 'normal pancreas', 'id': 'patient5', 'diagnosis': 'pancreatic cancer'}, 'GSM3383894': {'tissue': 'normal pancreas', 'id': 'patient4', 'diagnosis': 'pancreatic cancer'}, 'GSM1599915': {'procedure': 'adjustable gastric banding', 'time': 'T3'}, 'GSM1599914': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599917': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599916': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599911': {'procedure': 'adjustable gastric banding', 'time': 'T3'}, 'GSM1599910': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599913': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599912': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1479460': {'index': '18', 'diagnosis': '3', 'cellcount': '10237500', 'gender': 'F', 'age': '27', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '37', 'collectiondate': 'June 6 2012', 'samplename': '37_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479461': {'index': '25', 'diagnosis': '3', 'cellcount': '2000000', 'gender': 'F', 'age': '27', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '37', 'collectiondate': 'June 6 2012', 'samplename': '37_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479462': {'index': '19', 'diagnosis': '3', 'cellcount': '903409', 'gender': 'F', 'age': '27', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '37', 'collectiondate': 'June 6 2012', 'samplename': '37_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479463': {'index': '27', 'diagnosis': '3', 'cellcount': '2000000', 'gender': 'F', 'age': '27', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '37', 'collectiondate': 'June 6 2012', 'samplename': '37_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1599919': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599918': {'procedure': 'adjustable gastric banding', 'time': 'T3'}, 'GSM1479466': {'index': '2', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'M', 'age': '80', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '43', 'collectiondate': 'June 22 2012', 'samplename': '43_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Sepsis'}, 'GSM1479467': {'index': '3', 'diagnosis': '--', 'cellcount': '73307', 'gender': 'M', 'age': '80', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '43', 'collectiondate': 'June 22 2012', 'samplename': '43_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Sepsis'}, 'GSM2434038': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2477386': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'HTS'}, 'GSM2477387': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'HTS'}, 'GSM2141308': {'individual': 'AF77', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141309': {'individual': 'AF77', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141302': {'individual': 'AF69', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141303': {'individual': 'AF69', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2218673': {'line': 'WIBR3', 'medium': 't2i/L+DOX+RI', 'state': 'naive TD'}, 'GSM2141301': {'individual': 'AF67', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141306': {'individual': 'AF71', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141307': {'individual': 'AF71', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141304': {'individual': 'AF69', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141305': {'individual': 'AF71', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1980051': {'line': 'SW480'}, 'GSM2285831': {'status': 'healthy volunteer', 'gender': 'female', 'age': '70', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285830': {'status': 'healthy volunteer', 'gender': 'female', 'age': '66', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1669199': {'with': 'E2', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669198': {'with': 'E2+Progesterone_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669197': {'with': 'E2+R5020_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669196': {'with': 'E2+R5020_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669195': {'with': 'E2+Progesterone_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669194': {'with': 'E2+R5020_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669193': {'with': 'E2', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669192': {'with': 'E2+Progesterone_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669191': {'with': 'E2+R5020_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669190': {'with': 'E2', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM2576178': {'type': 'HAEC.ChIP.JUN.oxpapc.4h', 'antibody': 'Santa Cruz #sc-13032X', 'passage': '6 to 10'}, 'GSM2576177': {'type': 'HAEC.ChIP.JUN.IL1b.4h', 'antibody': 'Santa Cruz #sc-13032X', 'passage': '6 to 10'}, 'GSM2576176': {'type': 'HAEC.ChIP.JUN.TNFa.4h', 'antibody': 'Santa Cruz #sc-13032X', 'passage': '6 to 10'}, 'GSM2576175': {'type': 'HAEC.ChIP.ERG.TNFa.4h', 'antibody': 'Santa Cruz #sc354', 'passage': '6 to 10'}, 'GSM2287473': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1545047': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Distal'}, 'GSM2303498': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303499': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2287477': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287476': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287475': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287474': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610833': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610832': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303490': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2303491': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACCR015A'}, 'GSM2610837': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303497': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303494': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCR015A'}, 'GSM2303495': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM1437690': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1909468': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'METTL14 Knockdown'}, 'GSM1909469': {'line': 'embryonic kidney cell line HEK293T', 'genotype': 'wild type'}, 'GSM2305898': {'tissue': 'colon'}, 'GSM2305899': {'tissue': 'colon'}, 'GSM1909460': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'wild type'}, 'GSM1909461': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'wild type'}, 'GSM2305896': {'tissue': 'colon'}, 'GSM2305897': {'tissue': 'colon'}, 'GSM1909464': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'wild type'}, 'GSM1909465': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'METTL3 Knockdown'}, 'GSM1909466': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'METTL3 Knockdown'}, 'GSM1909467': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'METTL14 Knockdown'}, 'GSM1980055': {'tag': 'GFP+', 'type': 'human beta cells'}, 'GSM2151558': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151559': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151556': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151557': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151554': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151555': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151552': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151553': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151550': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151551': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2420270': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420271': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420272': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2366278': {'line': 'WSUDLCL2', 'type': 'B cell lymphoma', 'treatment': 'CUDC-907 5nM 6hr'}, 'GSM2420274': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420275': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420276': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420277': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420278': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420279': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2366277': {'line': 'WSUDLCL2', 'type': 'B cell lymphoma', 'treatment': 'control 6hr'}, 'GSM2212246': {'subtype': 'nascent RNA', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212247': {'subtype': 'nascent RNA', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212244': {'antibody': 'LEO1 (Bethyl, A300-175A/1)', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212245': {'subtype': 'nascent RNA', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212242': {'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212243': {'antibody': 'PAF1 (Bethyl, A300-172A/1)', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212240': {'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212241': {'antibody': 'Menin (Bethyl, A300-105A)', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212248': {'subtype': 'nascent RNA', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212249': {'antibody': 'H3K79me2 (Active Motif, 39143)', 'line': 'Leukemia cell line; ML-2', 'type': 'Adult monocytic cell line derived from AML M4 with t(6;11)(q27;q23) translocation'}, 'GSM1704599': {'protocol': '48 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704598': {'protocol': '24 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704591': {'protocol': '72 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704590': {'protocol': '6 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704593': {'protocol': '24 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704592': {'protocol': '12 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704595': {'protocol': '6 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704594': {'protocol': '48 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704597': {'protocol': '12 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704596': {'protocol': '72 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM2093214': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093215': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': '22', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093216': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': '18', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093217': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': '12', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093210': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093211': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093212': {'bin': '18', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093213': {'bin': '18', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2862283': {'line': 'AD2-01', 'type': 'IPSC'}, 'GSM2093218': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093219': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1354851': {'donor': 'donor No.6', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354850': {'donor': 'donor No.5', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354853': {'donor': 'donor No.7', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354852': {'donor': 'donor No.6', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354855': {'donor': 'donor No.8', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1523502': {'tumor': 'na', 'gender': 'female', 'tissue': 'Activated (IL4, anti-CD40, IgM, and IgD) peripheral blood', 'type': 'peripheral blood B cells', 'nhl': 'na'}, 'GSM1523501': {'tumor': 'na', 'gender': 'female', 'tissue': 'Activated (IL4, anti-CD40, IgM, and IgD) peripheral blood', 'type': 'peripheral blood B cells', 'nhl': 'na'}, 'GSM1523500': {'tumor': 'na', 'nhl': 'na', 'tissue': 'Tonsil', 'type': 'centrocyte'}, 'GSM1354858': {'donor': 'donor No.9', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM2862282': {'line': 'AD2-01', 'type': 'IPSC'}, 'GSM2159941': {'1': 'MYCN wild type', '2': 'p53 wild type', 'type': 'SY5Y', 'stage': 'high-risk'}, 'GSM2159940': {'1': 'MYCN wild type', '2': 'p53 wild type', 'type': 'SY5Y', 'stage': 'high-risk'}, 'GSM2159942': {'1': 'MYCN wild type', '2': 'p53 wild type', 'type': 'SY5Y', 'stage': 'high-risk'}, 'GSM2197628': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197629': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM554106': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM1484330': {'protocol': 'cells were treated with 10nM of scamble siRNA. Cells were harvested 72h after transfection.', 'type': 'low passage primary melanoma cultures'}, 'GSM1484331': {'protocol': 'cells were treated with 10nM of scamble siRNA. Cells were harvested 72h after transfection.', 'type': 'low passage primary melanoma cultures'}, 'GSM1484332': {'protocol': 'cells were treated with 10nM pool of siRNAs against all 4 TEADs. Cells were harvested 72h after transfection.', 'type': 'low passage primary melanoma cultures'}, 'GSM1581068': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1484333': {'protocol': 'cells were treated with 10nM pool of siRNAs against all 4 TEADs. Cells were harvested 72h after transfection.', 'type': 'low passage primary melanoma cultures'}, 'GSM1581069': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1484334': {'protocol': 'cells were treated with 10nM pool of siRNAs against all 4 TEADs. Cells were harvested 72h after transfection.', 'type': 'low passage primary melanoma cultures'}, 'GSM554108': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM1581064': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581065': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581066': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581067': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM2195031': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2123981': {}, 'GSM2123982': {}, 'GSM2157998': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2195032': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2157999': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2575375': {'line': 'WM983B', 'subclone': 'F9', 'condition': 'NoDrug'}, 'GSM1955865': {'a': '65295', 'cd38': '1164', 'cd49f': '553', 'w': '65374', 'h': '65457', 'lin': '316', 'cd34': '7390', 'cd90': '220', 'cd7': '-335', 'cd10': '760', 'time': '16074', 'cd135': '3554', 'cd45ra': '108'}, 'GSM1955864': {'a': '54878', 'cd38': '589', 'cd49f': '820', 'w': '68286', 'h': '52668', 'lin': '-347', 'cd34': '8221', 'cd90': '-330', 'cd7': '246', 'cd10': '377', 'time': '16300', 'cd135': '4284', 'cd45ra': '287'}, 'GSM1955867': {'a': '57068', 'cd38': '1130', 'cd49f': '176', 'w': '66161', 'h': '56529', 'lin': '-37', 'cd34': '3725', 'cd90': '395', 'cd7': '366', 'cd10': '424', 'time': '15551', 'cd135': '3051', 'cd45ra': '70'}, 'GSM1955866': {'a': '51343', 'cd38': '347', 'cd49f': '903', 'w': '66372', 'h': '50696', 'lin': '179', 'cd34': '4852', 'cd90': '-231', 'cd7': '232', 'cd10': '15422', 'time': '15816', 'cd135': '610', 'cd45ra': '5173'}, 'GSM1955861': {'a': '61559', 'cd38': '1107', 'cd49f': '42', 'w': '68750', 'h': '58681', 'lin': '170', 'cd34': '3333', 'cd90': '-10', 'cd7': '-237', 'cd10': '807', 'time': '16887', 'cd135': '1079', 'cd45ra': '84'}, 'GSM1955860': {'a': '61046', 'cd38': '882', 'cd49f': '324', 'w': '66067', 'h': '60556', 'lin': '-310', 'cd34': '8661', 'cd90': '1458', 'cd7': '187', 'cd10': '954', 'time': '17086', 'cd135': '4006', 'cd45ra': '229'}, 'GSM1955863': {'a': '62507', 'cd38': '67', 'cd49f': '25', 'w': '64974', 'h': '63048', 'lin': '241', 'cd34': '7079', 'cd90': '867', 'cd7': '284', 'cd10': '991', 'time': '16496', 'cd135': '2610', 'cd45ra': '153'}, 'GSM1955862': {'a': '62944', 'cd38': '334', 'cd49f': '-46', 'w': '70052', 'h': '58886', 'lin': '659', 'cd34': '5528', 'cd90': '325', 'cd7': '925', 'cd10': '417', 'time': '16686', 'cd135': '1665', 'cd45ra': '277'}, 'GSM1955869': {'a': '78294', 'cd38': '1173', 'cd49f': '1345', 'w': '68788', 'h': '74593', 'lin': '-91', 'cd34': '6736', 'cd90': '1637', 'cd7': '-89', 'cd10': '2003', 'time': '17958', 'cd135': '14714', 'cd45ra': '8884'}, 'GSM1955868': {'a': '56924', 'cd38': '83', 'cd49f': '748', 'w': '68700', 'h': '54302', 'lin': '304', 'cd34': '7371', 'cd90': '-113', 'cd7': '329', 'cd10': '1089', 'time': '15326', 'cd135': '2070', 'cd45ra': '291'}, 'GSM2157990': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2575088': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '03h'}, 'GSM2575089': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2689219': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689218': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2157991': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2689215': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689214': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2575080': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 2', 'point': '12h'}, 'GSM2575081': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2575086': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2157992': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2053519': {'state': 'severe familial dysautonomia', 'type': 'PSC-derived neural crest'}, 'GSM2575085': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM1631881': {'type': 'undifferentiated hESCs'}, 'GSM1631882': {'type': 'Day 4 differentiated cells with TSA treatment during days 0-4'}, 'GSM2157993': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1631884': {'type': 'Day 4 differentiated cells'}, 'GSM1631885': {'type': 'Day 8 differentiated cells'}, 'GSM2862289': {'line': 'AD2-01', 'type': 'Differentiated sensory neurons'}, 'GSM2157994': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2226734': {'treatment': 'mRNA with TEX in 293 cells,'}, 'GSM2350166': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350167': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350164': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350165': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2304585': {'type': 'HUVEC', 'treatment': 'miR-93-5p inhibitor control'}, 'GSM2350163': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350160': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350161': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2361553': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2304588': {'type': 'HUVEC', 'treatment': 'miR-93-5p inhibitor'}, 'GSM2361551': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2157997': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2361557': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361556': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2350168': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2350169': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM2307056': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307057': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307054': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307055': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307052': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307053': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307050': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307051': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM1326586': {'group': 'Exosome siRNA Pm\\\\Scl-100', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326587': {'group': 'Exosome siRNA Pm\\\\Scl-100', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326584': {'group': 'HU Time course - Controls', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326585': {'group': 'Exosome siRNA Pm\\\\Scl-100', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326582': {'group': '7mG IP - Combined', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326583': {'group': 'HU Time course - Controls', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM2307058': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307059': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM1980084': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2782501': {'age': 'd220', 'tissue': 'GFP positive neural retina cells', 'type': 'flow sorted CRXp-GFP positive cells at 220 days post neural retina induction'}, 'GSM2782500': {'age': 'd134', 'tissue': 'GFP positive neural retina cells', 'type': 'flow sorted CRXp-GFP positive cells at 134 days post neural retina induction'}, 'GSM1530730': {'genotype': 'GBA +/N370S', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': 'Healthy'}, 'GSM2109387': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM1980082': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2109384': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM699734': {'vendor': 'Millipore', 'number': '05-690', 'variation': 'Wild type', 'stimulation': 'none', 'program': 'ELAND', 'numbers': '1501782 and 17908001', 'line': 'HCT116', 'antibody': 'HP1 gamma'}, 'GSM699735': {'vendor': 'Millipore', 'number': '05-690', 'variation': 'Wild type', 'stimulation': 'TNF-alpha', 'program': 'ELAND', 'numbers': '1501782 and 17908001', 'line': 'HCT116', 'antibody': 'HP1 gamma'}, 'GSM699736': {'stimulation': 'TNF-alpha', 'line': 'HCT116', 'program': 'ELAND', 'antibody': 'none', 'variation': 'Wild type'}, 'GSM2109385': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM699730': {'stimulation': 'none', 'line': 'HCT116', 'program': 'Bowtie', 'variation': 'Wild type'}, 'GSM699731': {'stimulation': 'TNF-alpha', 'line': 'HCT116', 'program': 'Bowtie', 'variation': 'Wild type'}, 'GSM699732': {'stimulation': 'none', 'line': 'HCT116', 'program': 'Bowtie', 'variation': 'HP1 gamma knock down'}, 'GSM699733': {'stimulation': 'TNF-alpha', 'line': 'HCT116', 'program': 'Bowtie', 'variation': 'HP1 gamma knock down'}, 'GSM2109382': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM1530735': {'genotype': 'GBA +/N370S', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': \"Parkinson's Disease\"}, 'GSM2109381': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2047790': {'well': 'G08', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047791': {'well': 'G09', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047792': {'well': 'G10', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047793': {'well': 'G11', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047794': {'well': 'G12', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047795': {'well': 'H01', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1957429': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2047797': {'well': 'H03', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1957427': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2047799': {'well': 'H05', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1957425': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957424': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957423': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957422': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957421': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957420': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1241158': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2543968': {'library_id': 'lib8258', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543969': {'library_id': 'lib8259', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2133529': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133528': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133527': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133526': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133525': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133524': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2543960': {'library_id': 'lib8242', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2133522': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133521': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133520': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM720820': {'status': 'NA', 'line': 'MCF7', 'length': '35'}, 'GSM2098729': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM1707503': {'tissue': 'Colorectal cancer PDX', 'condition': 'ETC-159'}, 'GSM2176403': {'tissue': 'Heart (right atrial appendage)', 'type': 'Cardiosphere derived cells', 'ability': 'Poor', 'number': '63'}, 'GSM2176402': {'tissue': 'Heart (right atrial appendage)', 'type': 'Cardiosphere derived cells', 'ability': 'Poor', 'number': '59'}, 'GSM2176401': {'line': 'K562'}, 'GSM2176400': {'line': 'K562'}, 'GSM2176407': {'tissue': 'Heart (right atrial appendage)', 'type': 'Cardiosphere derived cells', 'ability': 'Good', 'number': '80'}, 'GSM2176406': {'tissue': 'Heart (right atrial appendage)', 'type': 'Cardiosphere derived cells', 'ability': 'Good', 'number': '49'}, 'GSM2176405': {'tissue': 'Heart (right atrial appendage)', 'type': 'Cardiosphere derived cells', 'ability': 'Good', 'number': '48'}, 'GSM2176404': {'tissue': 'Heart (right atrial appendage)', 'type': 'Cardiosphere derived cells', 'ability': 'Poor', 'number': '72'}, 'GSM2243944': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243943': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243942': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C1', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243941': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H7', 'cluster': '8', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243940': {'selection': 'Microglia(CD45)', 'neoplastic': 'Neoplastic', 'well': 'B12', 'cluster': '11', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2251238': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251239': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM721141': {'line': 'HMEC', 'type': 'primary human mammary epithelial cells'}, 'GSM721140': {'line': 'HCC1954', 'type': 'breast cancer'}, 'GSM2590133': {'level': 'mycnHigh', 'treatment': 'doxorubicin_washout', 'time': '72h_14d'}, 'GSM2590132': {'level': 'mycnLow', 'treatment': 'doxorubicin_washout', 'time': '72h_14d'}, 'GSM2590131': {'level': 'mycnHigh', 'treatment': 'doxorubicin_washout', 'time': '72h_14d'}, 'GSM2590130': {'level': 'mycnLow', 'treatment': 'doxorubicin_washout', 'time': '72h_8d'}, 'GSM1234098': {'replicate': '2', 'line': '19238', 'antibody': 'SA1'}, 'GSM1234099': {'replicate': '1', 'line': '19239', 'antibody': 'CTCF'}, 'GSM1234090': {'replicate': '3', 'line': '19238', 'antibody': 'H3K4me1'}, 'GSM1234091': {'replicate': '1', 'line': '19238', 'antibody': 'H3K4me3'}, 'GSM1234092': {'replicate': '2', 'line': '19238', 'antibody': 'H3K4me3'}, 'GSM1234093': {'replicate': '3', 'line': '19238', 'antibody': 'H3K4me3'}, 'GSM1234094': {'replicate': '1', 'line': '19238', 'antibody': 'Input'}, 'GSM1234095': {'replicate': '1', 'line': '19238', 'antibody': 'RNA-seq'}, 'GSM1234096': {'replicate': '2', 'line': '19238', 'antibody': 'RNA-seq'}, 'GSM1234097': {'replicate': '1', 'line': '19238', 'antibody': 'SA1'}, 'GSM2771592': {'line': \"LREX'\", 'treatment': 'Enz'}, 'GSM2771593': {'line': \"LREX'\", 'treatment': 'Enz'}, 'GSM2771590': {'line': \"LREX'\"}, 'GSM2771591': {'line': \"LREX'\"}, 'GSM2771596': {'line': \"LREX'\", 'antibody': 'Sigma HPA015055'}, 'GSM2771597': {'line': \"LREX'\", 'antibody': 'Sigma HPA015055', 'treatment': 'Enz'}, 'GSM2771594': {'line': \"LNAR'\", 'antibody': 'Sigma HPA015055'}, 'GSM2771595': {'line': \"LNAR'\", 'antibody': 'Sigma HPA015055', 'treatment': 'Enz'}, 'GSM2771598': {'line': \"LNAR' tumor\", 'treatment': 'veh'}, 'GSM2771599': {'line': \"LNAR' tumor\", 'treatment': 'veh'}, 'GSM2754544': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0712', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754545': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': '18.2', 'type': 'Tcells'}, 'GSM2754546': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0625', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754547': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0789', 'previousdiagnosisoftb': 'No', 'tst': '17', 'type': 'Tcells'}, 'GSM2754540': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0355', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754541': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0200', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754542': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1104', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754543': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0624', 'previousdiagnosisoftb': 'No', 'tst': '15', 'type': 'Tcells'}, 'GSM2754548': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0532', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754549': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0578', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2584671': {'tissue': 'fetal liver', 'type': 'Polychromatic normoblast', 'passage': '17 weeks'}, 'GSM2454248': {'line': 'SVGp12 +NEUROD1+ASCL1+LMX1A+mir218'}, 'GSM2454249': {'line': 'SVGp12 +NEUROD1+ASCL1+LMX1A+mir218'}, 'GSM2454246': {'line': 'SVGp12 +NEUROD1+ASCL1+LMX1A+mir218'}, 'GSM2454247': {'line': 'SVGp12 +NEUROD1+ASCL1+LMX1A+mir218'}, 'GSM2454244': {'line': 'SVGp12 +NEUROD1+ASCL1+LMX1A+mir218'}, 'GSM2454245': {'line': 'SVGp12 +NEUROD1+ASCL1+LMX1A+mir218'}, 'GSM2840368': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840369': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1953858': {'line': 'COLO679', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM1953859': {'line': 'LOXIMVI', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM2840360': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840361': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840362': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840363': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840364': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1953857': {'line': 'CJM', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM2840366': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840367': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2281044': {'tissue': 'Atypical Fibroxanthoma Tumor'}, 'GSM2391024': {'disease': 'Pulmonary Hypertension'}, 'GSM2391025': {'disease': 'Pulmonary Hypertension'}, 'GSM2391026': {'disease': 'Pulmonary Hypertension'}, 'GSM2438536': {'donor': 'BC2', 'tissue': 'peripheral blood', 'type': 'IL-10-APC', 'treatment': 'IL-10'}, 'GSM2438537': {'donor': 'BC2', 'tissue': 'peripheral blood', 'type': 'IL-10-APC', 'treatment': 'LPS_IL-10'}, 'GSM1395233': {'transformant': 'Epstein-Barr Virus', 'line': 'GM12878', 'tissue': 'Blood'}, 'GSM2438534': {'donor': 'BC2', 'tissue': 'peripheral blood', 'type': 'moDC', 'treatment': 'undiff'}, 'GSM1395234': {'transformant': 'Epstein-Barr Virus', 'line': 'GM12878', 'tissue': 'Blood'}, 'GSM2438535': {'donor': 'BC2', 'tissue': 'peripheral blood', 'type': 'moDC', 'treatment': 'LPS'}, 'GSM2242772': {'line': 'A375', 'replicate': '4'}, 'GSM823379': {'antibody': 'BRD4 (Abcam; Cat no. ab46199; Lot no. 613288)', 'type': 'CD4+ T cells', 'treatment': 'JQ1 treated'}, 'GSM823378': {'antibody': 'BRD4 (Abcam; Cat no. ab46199; Lot no. 613288)', 'type': 'CD4+ T cells', 'treatment': 'untreated'}, 'GSM2088131': {'status': 'Normal', 'ratio': '1.620214274', 'point': 't1', 'age': '64.34', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '54', 'alignments': '72056668', 'id': 'Patient_P20', 'alignment': '45172214'}, 'GSM2088130': {'status': 'Normal', 'ratio': '1.746217006', 'point': 't2', 'age': '52.349', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '65', 'alignments': '53622920', 'id': 'Patient_P1', 'alignment': '33322570'}, 'GSM2088133': {'status': 'Dysplasia', 'ratio': '1.703641945', 'point': 't1', 'age': '56.342', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'years': '34', 'alignments': '65233050', 'id': 'Patient_P25', 'alignment': '39925794'}, 'GSM2088132': {'status': 'Dysplasia', 'ratio': '1.708525319', 'point': 't1', 'age': '59.625', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '47', 'alignments': '81249732', 'id': 'Patient_P29', 'alignment': '50028628'}, 'GSM2088134': {'status': 'Dysplasia', 'ratio': '1.694975943', 'point': 't1', 'age': '54.348', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '57', 'alignments': '60517466', 'id': 'Patient_P14', 'alignment': '37443322'}, 'GSM2455611': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2430709': {'type': 'human foreskin keratinocytes', 'with': 'control vector'}, 'GSM2430708': {'state': 'MDS/AML', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM1095137': {'subset': 'poly A RNA', 'line': 'stable cell lines inducibly expressing FLAG/HA-tagged RBM10', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1948540': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM2455616': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2281040': {'tissue': 'Atypical Fibroxanthoma Tumor'}, 'GSM2527959': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM1548005': {'sample': 'embryo', 'age': '54 days', 'type': 'cKIT+ FACS sort'}, 'GSM1548004': {'sample': 'embryo', 'age': '113 days', 'type': 'cKIT+ FACS sort'}, 'GSM1548007': {'sample': 'embryo', 'age': '74 days', 'type': 'cKIT+ FACS sort'}, 'GSM2527958': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM1548001': {'sample': 'embryo', 'age': '94 days', 'type': 'cKIT+ FACS sort'}, 'GSM1548000': {'sample': 'embryo', 'age': '93 days', 'type': 'cKIT+ FACS sort'}, 'GSM1548003': {'sample': 'embryo', 'age': '110 days', 'type': 'cKIT+ FACS sort'}, 'GSM1548002': {'sample': 'embryo', 'age': '108 days', 'type': 'cKIT+ FACS sort'}, 'GSM1548009': {'sample': 'embryo', 'age': '122 days', 'type': 'cKIT+ FACS sort'}, 'GSM1548008': {'sample': 'embryo', 'age': '98 days', 'type': 'cKIT+ FACS sort'}, 'GSM2455617': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2281041': {'tissue': 'Atypical Fibroxanthoma Tumor'}, 'GSM1948542': {'replicates': '2', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM2573288': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM2455614': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2573289': {'type': 'induced pluripotent stem cells-derived neural precursor cells', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM1708289': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1948543': {'replicates': '2', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM2374838': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374839': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2409668': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409669': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409666': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409667': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409664': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409665': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409662': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409663': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2374834': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2409661': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2302037': {'timepoint': 'Post', 'id': '9', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2573282': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM2302035': {'timepoint': 'Post', 'id': '8', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302034': {'timepoint': 'Pre', 'id': '8', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302033': {'timepoint': 'Post', 'id': '7', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302032': {'timepoint': 'Pre', 'id': '7', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302031': {'timepoint': 'Post', 'id': '6', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2573283': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM2242774': {'line': 'A375', 'replicate': '4'}, 'GSM2573280': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM2302039': {'timepoint': 'Post', 'id': '10', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302038': {'timepoint': 'Pre', 'id': '10', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2243536': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243537': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243534': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1969177': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 1', 'description': 'Control HeLa RNA from S10 extracts', 'variation': 'wild type'}, 'GSM2243532': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243533': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243530': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243531': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1940157': {'with': '0.01% DMSO vehicle', 'line': 'GM12878', 'type': 'lymphoblasts', 'treatment': '72 hours'}, 'GSM1969178': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 1', 'description': 'Control HeLa RNA from S10 extracts exposed to room temperature for 1 hr', 'variation': 'wild type'}, 'GSM1969179': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 1', 'description': 'HeLa S10 extract treated with 2-5A for 1 hr', 'variation': 'wild type'}, 'GSM2243538': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243539': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'G12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1940155': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'vector control (for PU.1 depletion)'}, 'GSM1940154': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'vector control (for PU.1 depletion)'}, 'GSM1948545': {'replicates': '2', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM2332409': {'line': 'HUH7', 'point': '300'}, 'GSM2332408': {'line': 'HUH7', 'point': '300'}, 'GSM2332405': {'line': 'HUH7', 'point': '165'}, 'GSM2332404': {'line': 'HUH7', 'point': '165'}, 'GSM2332407': {'line': 'HUH7', 'point': '300'}, 'GSM2332406': {'line': 'HUH7', 'point': '165'}, 'GSM2332401': {'line': 'HUH7', 'point': '105'}, 'GSM2332400': {'line': 'HUH7', 'point': '80'}, 'GSM2332403': {'line': 'HUH7', 'point': '105'}, 'GSM2332402': {'line': 'HUH7', 'point': '105'}, 'GSM2477380': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'cytokine'}, 'GSM2464317': {'cell': 'THP-1', 'treatment': 'none'}, 'GSM2516321': {'status': 'primed', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2516322': {'status': 'primed', 'type': 'Human pluripotent stem cells (hPSCs)'}, 'GSM2304736': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM1643975': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643974': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643977': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa for 3h'}, 'GSM1643976': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa for 3h'}, 'GSM1643971': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b for 3h'}, 'GSM1643970': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b for 3h'}, 'GSM1643973': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b+ICI for 3h'}, 'GSM1643972': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b+ICI for 3h'}, 'GSM2477381': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'cytokine'}, 'GSM1643979': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa+ICI for 3h'}, 'GSM1643978': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa+ICI for 3h'}, 'GSM2048438': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2048439': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM1492711': {'status': 'EBV(+); naturally infected with EBV', 'line': 'SNU-719', 'type': 'human gastric cancer cell line with natural EBV infection'}, 'GSM2436495': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM1492712': {'status': 'EBV(+); naturally infected with EBV', 'line': 'YCCEL-1', 'type': 'human gastric cancer cell line with natural EBV infection'}, 'GSM2048430': {'subset': 'Xenograft', 'status': 'Early graft', 'variation': 'CSL -/-'}, 'GSM2048431': {'subset': 'Xenograft', 'status': 'Late graft', 'variation': 'CSL -/-'}, 'GSM2048432': {'subset': 'Xenograft', 'status': 'Late graft', 'variation': 'CSL -/-'}, 'GSM2048433': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2048434': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048435': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2048436': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048437': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL +/+'}, 'GSM2262808': {'tissue': 'pancreas'}, 'GSM2436499': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2229907': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS22'}, 'GSM2229906': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS22'}, 'GSM2229905': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS17'}, 'GSM2229904': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS17'}, 'GSM2229903': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS22'}, 'GSM2229902': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS22'}, 'GSM2229901': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS18'}, 'GSM2229900': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS18'}, 'GSM2100257': {'rin': '9.8', 'Sex': 'Female', 'sspg': '201', 'age': '60', 'bmi': '31.8', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '928', 'method': 'Qiagen:trizol'}, 'GSM2100256': {'rin': '8.8', 'Sex': 'Female', 'sspg': '201', 'age': '60', 'bmi': '31.8', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '928', 'method': 'Qiagen:trizol'}, 'GSM2100255': {'rin': '10', 'Sex': 'Female', 'sspg': '92', 'age': '62', 'bmi': '30.9', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '32015', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '912', 'method': 'Life-Tech GITC'}, 'GSM2100254': {'rin': '10', 'Sex': 'Female', 'sspg': '92', 'age': '62', 'bmi': '30.9', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '32015', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '912', 'method': 'Life-Tech GITC'}, 'GSM2100253': {'rin': '10', 'Sex': 'Female', 'sspg': '92', 'age': '62', 'bmi': '30.9', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '32015', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '912', 'method': 'Life-Tech GITC'}, 'GSM2100252': {'rin': '10', 'Sex': 'Female', 'sspg': '76', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '27', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '68', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '909', 'method': 'Life-Tech GITC'}, 'GSM2229909': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS22'}, 'GSM2100250': {'rin': '10', 'Sex': 'Female', 'sspg': '76', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '27', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '68', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '909', 'method': 'Life-Tech GITC'}, 'GSM3670779': {'status': 'Healthy Asian donor', 'with': 'VE-UHMWPE particles', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage'}, 'GSM2889019': {'tissue': 'pancreatic islets'}, 'GSM2477384': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'cytokine + HTS'}, 'GSM2348713': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1920788': {'type': 'hematopoietic', 'diagnosis': 'Langerhans Cell Histiocytosis'}, 'GSM1920789': {'type': 'hematopoietic', 'diagnosis': 'Langerhans Cell Histiocytosis'}, 'GSM2108039': {'type': 'AML cell line', 'translocation': 'MLL-AF4'}, 'GSM2811256': {'line': 'H9', 'point': '72 hours'}, 'GSM2811257': {'line': 'H9', 'point': '72 hours'}, 'GSM2811254': {'line': 'H9', 'point': '48 hours'}, 'GSM2811255': {'line': 'H9', 'point': '48 hours'}, 'GSM2811252': {'line': 'H9', 'point': '24 hours'}, 'GSM2811253': {'line': 'H9', 'point': '24 hours'}, 'GSM1920786': {'type': 'hematopoietic', 'diagnosis': 'Erdheim Chester Disease'}, 'GSM1920787': {'type': 'hematopoietic', 'diagnosis': 'Langerhans Cell Histiocytosis'}, 'GSM2477385': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'cytokine + HTS'}, 'GSM3096653': {'donor': 'E', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1hi'}, 'GSM3096650': {'donor': 'C', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1lo'}, 'GSM3096651': {'donor': 'D', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1hi'}, 'GSM3096656': {'donor': 'E', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1lo'}, 'GSM3096657': {'donor': 'F', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1hi'}, 'GSM3096654': {'donor': 'E', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}loKLRG1hi'}, 'GSM3096655': {'donor': 'E', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}loKLRG1lo'}, 'GSM3096658': {'donor': 'F', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}loKLRG1hi'}, 'GSM3096659': {'donor': 'F', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}loKLRG1lo'}, 'GSM1955728': {'a': '63515', 'cd38': '932', 'cd49f': '556', 'w': '67171', 'h': '61969', 'lin': '820', 'cd34': '5630', 'cd90': '1081', 'cd7': '-202', 'cd10': '1236', 'time': '7521', 'cd135': '4304', 'cd45ra': '991'}, 'GSM2194686': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2108034': {'type': 'AML blast cells', 'translocation': 'MLL-AF9'}, 'GSM2455389': {'individual': 'DONOR 21', 'type': 'endothelial cell', 'treatment': 'DMSO', 'time': '0 minutes'}, 'GSM2679454': {'line': 'BLCL (165)'}, 'GSM2679455': {'line': 'BLCL (165)'}, 'GSM2679456': {'line': 'BLCL (165)'}, 'GSM2679457': {'line': 'BLCL (165)'}, 'GSM2679452': {'line': 'BLCL (165)'}, 'GSM2679453': {'line': 'BLCL (165)'}, 'GSM2679458': {'line': 'BLCL (165)'}, 'GSM2679459': {'line': 'BLCL (165)'}, 'GSM1946209': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19159', 'for': '60min'}, 'GSM1946208': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19159', 'for': '60min'}, 'GSM2312160': {'culture': '12', 'line': 'DCX-'}, 'GSM2312161': {'culture': '12', 'line': 'DCX-'}, 'GSM2312162': {'culture': '12', 'line': 'DCX-'}, 'GSM2312163': {'culture': '12', 'line': 'DCX-'}, 'GSM2312164': {'culture': '12', 'line': 'DCX-'}, 'GSM2312165': {'culture': '12', 'line': 'DCX-'}, 'GSM2312166': {'culture': '12', 'line': 'DCX-'}, 'GSM2312167': {'culture': '12', 'line': 'DCX-'}, 'GSM1965332': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965333': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965330': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965331': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965336': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965337': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965334': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965335': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM3586715': {'origin': 'GCB', 'pfstt': '1379', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1535', 'cycles': '8', 'oscs': '0'}, 'GSM3586714': {'pfstt': '1422', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1584', 'cycles': '8', 'oscs': '0'}, 'GSM3586717': {'origin': 'GCB', 'pfstt': '1402', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1402', 'cycles': '8', 'oscs': '0'}, 'GSM3586716': {'origin': 'ABC', 'pfstt': '293', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '454', 'cycles': '8', 'oscs': '1'}, 'GSM3586711': {'origin': 'ABC', 'pfstt': '86', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '239', 'cycles': '8', 'oscs': '1'}, 'GSM3586710': {'origin': 'GCB', 'pfstt': '903', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '918', 'cycles': '8', 'oscs': '0'}, 'GSM3586713': {'origin': 'ABC', 'pfstt': '1206', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1288', 'cycles': '8', 'oscs': '1'}, 'GSM3586712': {'origin': 'GCB', 'pfstt': '33', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '33', 'cycles': '8', 'oscs': '1'}, 'GSM1946202': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19153', 'for': '60min'}, 'GSM3586719': {'origin': 'GCB', 'pfstt': '1387', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1387', 'cycles': '8', 'oscs': '0'}, 'GSM3586718': {'origin': 'GCB', 'pfstt': '1380', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1380', 'cycles': '8', 'oscs': '0'}, 'GSM1957380': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1415918': {'cohort': 'active EoE'}, 'GSM2898829': {'line': 'NA19192', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2300040': {'line': 'MCF7', 'treatment': 'DMSO'}, 'GSM2300041': {'line': 'MCF7', 'treatment': 'DMSO'}, 'GSM2300042': {'line': 'MCF7', 'treatment': '1mM of the menin inhibitor MI-2'}, 'GSM2300043': {'line': 'MCF7', 'treatment': '1mM of the menin inhibitor MI-2'}, 'GSM1415912': {'cohort': 'active EoE'}, 'GSM1415913': {'cohort': 'active EoE'}, 'GSM1415910': {'cohort': 'healthy control'}, 'GSM1415911': {'cohort': 'healthy control'}, 'GSM1415916': {'cohort': 'active EoE'}, 'GSM1415917': {'cohort': 'active EoE'}, 'GSM1415914': {'cohort': 'active EoE'}, 'GSM1415915': {'cohort': 'active EoE'}, 'GSM2248169': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2230828': {'line': 'A549', 'with': 'mock', 'point': '24 hours post infection'}, 'GSM2230829': {'line': 'A549', 'with': 'mock', 'point': '24 hours post infection'}, 'GSM2230822': {'line': 'A549', 'with': 'Dengue virus 2', 'point': '24 hours post infection'}, 'GSM2230823': {'line': 'A549', 'with': 'Dengue virus 2', 'point': '24 hours post infection'}, 'GSM2230826': {'line': 'A549', 'with': 'Dengue virus 2', 'point': '36 hours post infection'}, 'GSM2230827': {'line': 'A549', 'with': 'Dengue virus 2', 'point': '36 hours post infection'}, 'GSM2230824': {'line': 'A549', 'with': 'Dengue virus 2', 'point': '24 hours post infection'}, 'GSM2230825': {'line': 'A549', 'with': 'Dengue virus 2', 'point': '36 hours post infection'}, 'GSM1668464': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 8 days post induced OSKM viral Expression and treated with ENY2 siRNA.', 'genotype': 'ENY2 Knock-down'}, 'GSM1872969': {'10': 'Non-remitter', 'name': 'HF-37432', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1957388': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2157837': {'line': 'HCT116', 'passages': '8-10 passages', 'damage': '5-fluorouracil', 'genotype': 'p53 -/-'}, 'GSM2157836': {'line': 'HCT116', 'passages': '8-10 passages', 'damage': '5-fluorouracil', 'genotype': 'p53 -/-'}, 'GSM1957389': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2649711': {'tumor': 'NORMAL', 'barcode': 'BC4', 'Sex': 'female'}, 'GSM2157838': {'line': 'HCT116', 'passages': '8-10 passages', 'damage': '5-fluorouracil', 'genotype': 'p53 -/-'}, 'GSM2141405': {'individual': 'AF105', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141404': {'individual': 'AF105', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141407': {'individual': 'AF107', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141406': {'individual': 'AF107', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141401': {'individual': 'AF101', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141400': {'individual': 'AF101', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2433698': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'EZH1 and EZH2 knockout'}, 'GSM2433699': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'EZH2 knockout'}, 'GSM2433696': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'EZH1 knockout'}, 'GSM2433697': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'EZH1 and EZH2 knockout'}, 'GSM2433694': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'control'}, 'GSM2433695': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'EZH1 knockout'}, 'GSM2141409': {'individual': 'AF109', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2433693': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'control'}, 'GSM2649717': {'tumor': 'NORMAL', 'barcode': 'BC10', 'Sex': 'male'}, 'GSM1246819': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246818': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246815': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM1246814': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM1246817': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246816': {'tissue': 'primary skin fibroblast', 'point': 'late timepoint (L)'}, 'GSM1246811': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM1246810': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM1246813': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM1246812': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM3383916': {'tissue': 'normal pancreas', 'id': 'patient6', 'diagnosis': 'pancreatic cancer'}, 'GSM1587302': {'losses': '0', 'age': '31', 'bmi': '24', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+7'}, 'GSM1587301': {'losses': '0', 'age': '40', 'bmi': '25', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+8'}, 'GSM1587300': {'losses': '0', 'age': '38', 'bmi': '25', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+8'}, 'GSM1587307': {'losses': '5', 'age': '38', 'bmi': '33', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+7'}, 'GSM1587306': {'losses': '0', 'age': '40', 'bmi': '22', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+6'}, 'GSM1587305': {'losses': '0', 'age': '37', 'bmi': '24.5', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+9'}, 'GSM1587304': {'losses': '0', 'age': '44', 'bmi': '22', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+7'}, 'GSM1587309': {'losses': '0', 'age': '35', 'bmi': '18', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+9'}, 'GSM1587308': {'losses': '0', 'age': '31', 'bmi': '31', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+7'}, 'GSM3383918': {'tissue': 'normal pancreas', 'id': 'patient8', 'diagnosis': 'pancreatic cancer'}, 'GSM3383919': {'tissue': 'normal pancreas', 'id': 'patient9', 'diagnosis': 'pancreatic cancer'}, 'GSM1401654': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401655': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401656': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401657': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401650': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401651': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401652': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401653': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401658': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401659': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1706658': {'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1957196': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957195': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957194': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957193': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957192': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957191': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957190': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1706654': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1706655': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1957199': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957198': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1838412': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'globin HS2 enhancer'}, 'GSM1838413': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'globin HS2 enhancer'}, 'GSM1838410': {'line': 'K562', 'gene': 'dCas9', 'target': 'globin HS2 enhancer'}, 'GSM1838411': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'globin HS2 enhancer'}, 'GSM1838416': {'line': 'K562', 'gene': 'dCas9', 'target': 'globin HS2 enhancer'}, 'GSM1838417': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'globin HS2 enhancer'}, 'GSM1838414': {'line': 'K562', 'gene': 'dCas9', 'target': 'globin HS2 enhancer'}, 'GSM1838415': {'line': 'K562', 'gene': 'dCas9', 'target': 'globin HS2 enhancer'}, 'GSM1838418': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'globin HS2 enhancer'}, 'GSM1838419': {'line': 'K562', 'gene': 'dCas9-KRAB', 'target': 'globin HS2 enhancer'}, 'GSM1220552': {'rearrangement': 'non-IGH-FOXP1', 'ihc': 'negative', 'tissue': 'lymphoma', 'karyotype': '39-46,XX,X[7],der(3)t(3;3)(p21;q26),der(3)t(3;7)(p26;p22)inv(3)(p13q11)del(3)(q26),del(6)(q23),r(7),-8[3],- 11[3] del(13)(q22)[2],-17[3],+19[8],-21[6],+2-3mar[cp11]', 'diagnosis': 'MZL'}, 'GSM1848790': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 3', 'point': 'pre exercise'}, 'GSM2577127': {'line': 'RT4V6', 'type': 'bladder cancer cell line'}, 'GSM2577126': {'line': 'RT4', 'type': 'bladder cancer cell line'}, 'GSM2577125': {'line': 'RT112', 'type': 'bladder cancer cell line'}, 'GSM2577124': {'line': 'J82', 'type': 'bladder cancer cell line'}, 'GSM2577123': {'line': 'HT1376', 'type': 'bladder cancer cell line'}, 'GSM2577122': {'line': 'HT1197', 'type': 'bladder cancer cell line'}, 'GSM2577121': {'line': 'BV', 'type': 'bladder cancer cell line'}, 'GSM2577120': {'line': '5637', 'type': 'bladder cancer cell line'}, 'GSM2577129': {'line': 'SW780', 'type': 'bladder cancer cell line'}, 'GSM2577128': {'line': 'SCABER', 'type': 'bladder cancer cell line'}, 'GSM1709549': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709548': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709545': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709544': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709547': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709546': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709541': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709540': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709543': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709542': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM2471074': {'status': 'Healthy', 'donorid': 'BC046', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471075': {'status': 'Healthy', 'donorid': 'BC046', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471076': {'status': 'Healthy', 'donorid': 'BC046', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471077': {'status': 'Healthy', 'donorid': 'BC047', 'subset': 'Naive', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471070': {'status': 'HIV', 'donorid': 'BC044', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2471071': {'status': 'HIV', 'donorid': 'BC044', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM1904498': {'type': 'HFF cells', 'infection': 'HSV2', 'time': '8h'}, 'GSM2359403': {'with': 'Control eGFP mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '882', 'treatment': '3'}, 'GSM1904496': {'type': 'NPC cells (ES-derived)', 'infection': 'HCMV (strain TB40E)', 'time': '96h'}, 'GSM1904497': {'type': 'HFF cells', 'infection': 'mock', 'time': '8h'}, 'GSM1904494': {'type': 'NPC cells (ES-derived)', 'infection': 'mock', 'time': '48h'}, 'GSM1904495': {'type': 'NPC cells (ES-derived)', 'infection': 'HCMV (strain TB40E)', 'time': '48h'}, 'GSM2471078': {'status': 'Healthy', 'donorid': 'BC047', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM2471079': {'status': 'Healthy', 'donorid': 'BC047', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd0'}, 'GSM1904490': {'type': 'HFF cells', 'infection': 'HCMV (strain TB40E)', 'time': '96h'}, 'GSM1904491': {'type': 'EC cells', 'infection': 'mock', 'time': '48h'}, 'GSM2225741': {'status': 'healthy individual', 'subtype': 'CD77+ CD38high', 'tissue': 'tonsils', 'type': 'purified human germinal center B cells'}, 'GSM2225740': {'status': 'healthy individual', 'subtype': 'IgD+ CD38low', 'tissue': 'tonsils', 'type': 'purified human naive B cells'}, 'GSM2225743': {'status': 'healthy individual', 'subtype': 'IgD+ CD38low', 'tissue': 'tonsils', 'type': 'purified human naive B cells'}, 'GSM2225742': {'status': 'healthy individual', 'subtype': 'CD77+ CD38high', 'tissue': 'tonsils', 'type': 'purified human germinal center B cells'}, 'GSM2225745': {'status': 'healthy individual', 'subtype': 'CD77+ CD38high', 'tissue': 'tonsils', 'type': 'purified human germinal center B cells'}, 'GSM2225744': {'status': 'healthy individual', 'subtype': 'IgD+ CD38low', 'tissue': 'tonsils', 'type': 'purified human naive B cells'}, 'GSM2225747': {'tissue': 'pancreas'}, 'GSM2225746': {'status': 'healthy individual', 'subtype': 'CD77+ CD38high', 'tissue': 'tonsils', 'type': 'purified human germinal center B cells'}, 'GSM2225749': {'tissue': 'pancreas'}, 'GSM2225748': {'tissue': 'pancreas'}, 'GSM2359405': {'with': 'Control eGFP mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '3076', 'treatment': '3'}, 'GSM2194281': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194280': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194283': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194282': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194285': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194284': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194287': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194286': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194289': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194288': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2564967': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM960612': {'line': 'CCL30', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM960613': {'line': 'CCL30', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM960610': {'line': 'CCL30', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM960611': {'line': 'CCL30', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM2392713': {'type': 'Induced pluripotent stem cell'}, 'GSM2392712': {'type': 'Induced pluripotent stem cell'}, 'GSM2392711': {'type': 'Induced pluripotent stem cell'}, 'GSM2392710': {'type': 'Induced pluripotent stem cell'}, 'GSM2392717': {'type': 'Induced pluripotent stem cell'}, 'GSM2392716': {'type': 'Induced pluripotent stem cell'}, 'GSM2392715': {'type': 'Induced pluripotent stem cell'}, 'GSM2392714': {'type': 'Induced pluripotent stem cell'}, 'GSM2392719': {'type': 'Induced pluripotent stem cell'}, 'GSM2392718': {'type': 'Induced pluripotent stem cell'}, 'GSM1220558': {'rearrangement': 'FOXP1 neg by IHC', 'ihc': 'negative', 'tissue': 'lymphoma', 'karyotype': 'N/A', 'diagnosis': 'GC-DLBCL'}, 'GSM2136861': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 5 days, Control', 'batch': '1'}, 'GSM2044531': {'transduction': 'ad-MYOCD'}, 'GSM2044530': {'transduction': 'empty control'}, 'GSM2044532': {'transduction': 'ad-MYOCD'}, 'GSM2304930': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '48h'}, 'GSM1495937': {'line': 'SF210', 'vector': 'KLHL9', 'induction': 'doxycycline'}, 'GSM1220559': {'rearrangement': 'FOXP1 neg by IHC', 'ihc': 'negative', 'tissue': 'lymphoma', 'karyotype': 'N/A', 'diagnosis': 'ABC-DLBCL'}, 'GSM2112894': {'line': 'HSMM'}, 'GSM2112893': {'line': 'SEES-3'}, 'GSM1940201': {'vendor': 'Santa Cruz Biotech', 'antibody': 'rabbit anti-PU.1', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'line': 'K562', 'with': '0.5 mM NaBut'}, 'GSM1940200': {'vendor': 'Santa Cruz Biotech', 'antibody': 'rabbit anti-PU.1', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'line': 'K562', 'with': '0.5% 1xPBS vehicle'}, 'GSM1480743': {'vendor': 'Bethyl', 'line': 'TSU-1621-MT', 'with': '1 uM ATRA for 24 hrs', 'target': 'FUS'}, 'GSM2304931': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Untreated with Dox', 'time': '0h'}, 'GSM1480742': {'line': 'TSU-1621-MT', 'vendor': 'Bethyl', 'target': 'FUS'}, 'GSM2476765': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476764': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476767': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476766': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476761': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476760': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476763': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476762': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476769': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476768': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2058118': {'line': 'V852', 'tissue': 'colorectal cancer cell line'}, 'GSM2058119': {'line': 'V855', 'tissue': 'colorectal cancer cell line'}, 'GSM2058112': {'line': 'V456', 'tissue': 'colorectal cancer cell line'}, 'GSM2058113': {'line': 'V481', 'tissue': 'colorectal cancer cell line'}, 'GSM2058110': {'line': 'V411', 'tissue': 'colorectal cancer cell line'}, 'GSM2058111': {'line': 'V429', 'tissue': 'colorectal cancer cell line'}, 'GSM2058116': {'line': 'V576', 'tissue': 'colorectal cancer cell line'}, 'GSM2058117': {'line': 'V784', 'tissue': 'colorectal cancer cell line'}, 'GSM2058114': {'line': 'V5', 'tissue': 'colorectal cancer cell line'}, 'GSM2058115': {'line': 'V503', 'tissue': 'colorectal cancer cell line'}, 'GSM2304933': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '8h'}, 'GSM3189264': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C25', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.684761', 'percentaligned': '0.91994307', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.716788', 'original': 'Control'}, 'GSM3189265': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.646292', 'percentaligned': '0.949963953', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.521308', 'original': 'Control'}, 'GSM3189266': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '23', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.665186', 'percentaligned': '0.944689914', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.088382', 'original': 'Control'}, 'GSM3189267': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.604262', 'percentaligned': '0.946225992', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.252837'}, 'GSM3189260': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.656907', 'percentaligned': '0.944790001', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.142338', 'original': 'Case'}, 'GSM3189261': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B6', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '79', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.835607', 'percentaligned': '0.799408943', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.095091'}, 'GSM3189262': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.677399', 'percentaligned': '0.945902678', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.55154'}, 'GSM3189263': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C25', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.601576', 'percentaligned': '0.940826996', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.238975', 'original': 'Control'}, 'GSM1363534': {'grade': '0', 'alb': '30', 'tb': '64.9', 'individual': 'HCC-C16', 'alt': '52', 'pt': '14.9', 'hbvdna': '<500', 'ca199': '29.5', 'hgb': '92', 'method': '0', 'ggt': '68.9', 'cea': '2.11', 'ast': '140', 'rna': 'Yes', 'db': '23.2', 'cirrhosis': '0', 'afp': '128.9', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '49', 'ltx': 'A3', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.89'}, 'GSM1363535': {'grade': '0', 'alb': '39.2', 'tb': '16.3', 'individual': 'HCC-C18', 'alt': '43', 'pt': '13.4', 'hbvdna': '20100', 'ca199': '45.6', 'hgb': '150', 'method': '0', 'ggt': '139.9', 'cea': '1.85', 'ast': '38', 'rna': 'Yes', 'db': '6.5', 'cirrhosis': '0', 'afp': '6.6', 'hbsag': '>250', 'organ': '0', 'gender': 'M', 'age': '57', 'ltx': 'A2', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.95'}, 'GSM1363536': {'grade': '0', 'alb': '39.2', 'tb': '16.3', 'individual': 'HCC-C18', 'alt': '43', 'pt': '13.4', 'hbvdna': '20100', 'ca199': '45.6', 'hgb': '150', 'method': '0', 'ggt': '139.9', 'cea': '1.85', 'ast': '38', 'rna': 'Yes', 'db': '6.5', 'cirrhosis': '0', 'afp': '6.6', 'hbsag': '>250', 'organ': '0', 'gender': 'M', 'age': '57', 'ltx': 'A2', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.95'}, 'GSM1363537': {'grade': '0', 'alb': '46', 'tb': '21.5', 'individual': 'HCC-C19', 'alt': '12', 'pt': '12.9', 'hbvdna': '<500', 'ca199': '19', 'hgb': '142', 'method': '0', 'ggt': '21.1', 'cea': '2.01', 'ast': '16', 'rna': 'Yes', 'db': '7', 'cirrhosis': '0', 'afp': '220.9', 'hbsag': '219.91', 'organ': '0', 'gender': 'M', 'age': '41', 'ltx': 'B', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.85'}, 'GSM1363530': {'grade': '0', 'alb': '31.4', 'tb': '74.7', 'individual': 'HCC-C14', 'alt': '197', 'pt': '15.8', 'hbvdna': '9000000', 'ca199': '27.1', 'hgb': '118', 'method': '0', 'ggt': '53.6', 'cea': '0.87', 'ast': '296', 'rna': 'Yes', 'db': '25.1', 'cirrhosis': '0', 'afp': '240.7', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '59', 'ltx': 'B', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.46'}, 'GSM3189269': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.702022', 'percentaligned': '0.945353191', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.183741', 'original': 'Control'}, 'GSM1363532': {'grade': '0', 'alb': '45.6', 'tb': '33.3', 'individual': 'HCC-C15', 'alt': '34', 'pt': '11.5', 'hbvdna': '<500', 'ca199': 'NA', 'hgb': '146', 'method': '0', 'ggt': '171.6', 'cea': 'NA', 'ast': '24', 'rna': 'Yes', 'db': '10.5', 'cirrhosis': '0', 'afp': 'NA', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '49', 'ltx': 'B', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '8.64'}, 'GSM1363533': {'grade': '0', 'alb': '30', 'tb': '64.9', 'individual': 'HCC-C16', 'alt': '52', 'pt': '14.9', 'hbvdna': '<500', 'ca199': '29.5', 'hgb': '92', 'method': '0', 'ggt': '68.9', 'cea': '2.11', 'ast': '140', 'rna': 'Yes', 'db': '23.2', 'cirrhosis': '0', 'afp': '128.9', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '49', 'ltx': 'A3', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.89'}, 'GSM2776900': {'line': 'M229', 'type': 'BRAFi+MEKi', 'treatment': 'resistant'}, 'GSM2358888': {'type': 'Immature smooth Muscle Cells (imSMCs)'}, 'GSM2358885': {'type': 'Pericyte Type 2 PC2)'}, 'GSM2358884': {'type': 'Pericyte Type 2 PC2)'}, 'GSM2358887': {'type': 'Immature smooth Muscle Cells (imSMCs)'}, 'GSM2358886': {'type': 'Pericyte Type 2 PC2)'}, 'GSM2358881': {'type': 'Pericyte Type 1 (PC1)'}, 'GSM2358880': {'type': 'Immature Pericytes (imPCs)'}, 'GSM2358883': {'type': 'Pericyte Type 1 (PC1)'}, 'GSM2358882': {'type': 'Pericyte Type 1 (PC1)'}, 'GSM1831901': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'wild-type SRSF2'}, 'GSM2304935': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Untreated with Dox', 'time': '0h'}, 'GSM2425091': {'marker': 'SSEA4-/KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425090': {'marker': 'SSEA4-/KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM907017': {'donor': '2', 'type': 'M2 macrophages (alternatively activated)'}, 'GSM907016': {'donor': '1', 'type': 'M2 macrophages (alternatively activated)'}, 'GSM907015': {'donor': '3', 'type': 'M1 macrophages (classically activated)'}, 'GSM907014': {'donor': '2', 'type': 'M1 macrophages (classically activated)'}, 'GSM907013': {'donor': '1', 'type': 'M1 macrophages (classically activated)'}, 'GSM907018': {'donor': '3', 'type': 'M2 macrophages (alternatively activated)'}, 'GSM2550195': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550194': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2175084': {'line': 'K562'}, 'GSM2550196': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2175082': {'line': 'K562'}, 'GSM2175083': {'line': 'K562'}, 'GSM2550193': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550192': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550199': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550198': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2175088': {'line': 'K562'}, 'GSM2175089': {'line': 'K562'}, 'GSM2915408': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915409': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM1357258': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357259': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1831909': {'source': 'bone marrow', 'line': 'CML-derived K562', 'type': 'erythroleukemia cells', 'variation': 'mutant SRSF2 P95H'}, 'GSM2915400': {'antibody': 'none', 'type': 'MCF-7 cells'}, 'GSM1357253': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM1357250': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM2915403': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915404': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915405': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915406': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2915407': {'antibody': 'N/A', 'type': 'MCF-7 cells'}, 'GSM2304937': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '8h'}, 'GSM1494414': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shGFP'}, 'GSM1494415': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shEWS-FLI'}, 'GSM1494416': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shEWS-FLI'}, 'GSM1494417': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shEWS-FLI'}, 'GSM1494410': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shLNC-277'}, 'GSM1494411': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shGFP'}, 'GSM1494412': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shGFP'}, 'GSM1494413': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shGFP'}, 'GSM1494418': {'age': '15 year old', 'line': \"A673 Ewing's sarcoma cells\", 'treatment': 'shEWS-FLI'}, 'GSM2689398': {'immunophenotype': 'N/A', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'N/A'}, 'GSM2689390': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689391': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689392': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689393': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689394': {'immunophenotype': 'N/A', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'N/A'}, 'GSM2689395': {'immunophenotype': 'N/A', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'N/A'}, 'GSM2689396': {'immunophenotype': 'N/A', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'N/A'}, 'GSM2689397': {'immunophenotype': 'N/A', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'N/A'}, 'GSM2136868': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, ENL Knock Down plus F59A mutant rescue', 'batch': '2'}, 'GSM2456064': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2595254': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2456066': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1133667': {'tissue': 'whole blood', 'time': '180 days post LVAD'}, 'GSM1133666': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM1133665': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM2595256': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM1133663': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM1133662': {'tissue': 'whole blood', 'time': '180 days post LVAD'}, 'GSM1133661': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM1133660': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM2595251': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM1133669': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM2456061': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2595253': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595252': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2109376': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2759976': {'gender': 'female', 'age': '44', 'tissue': 'colon', 'transfection': 'pEF-BOS-EX vector'}, 'GSM2759977': {'gender': 'female', 'age': '44', 'tissue': 'colon', 'transfection': 'pEF-BOS-EX vector'}, 'GSM2759974': {'gender': 'female', 'age': '44', 'tissue': 'colon', 'transfection': 'pEF-BOS-BMP5'}, 'GSM2759975': {'gender': 'female', 'age': '44', 'tissue': 'colon', 'transfection': 'pEF-BOS-EX vector'}, 'GSM2759972': {'gender': 'female', 'age': '44', 'tissue': 'colon', 'transfection': 'pEF-BOS-BMP5'}, 'GSM2759973': {'gender': 'female', 'age': '44', 'tissue': 'colon', 'transfection': 'pEF-BOS-BMP5'}, 'GSM2259900': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': '0'}, 'GSM1716664': {'type': 'Neutrophils', 'method': 'Polymorphprep (poly)', 'treatment': 'Untreated 1h'}, 'GSM2242935': {'line': 'A375', 'replicate': '4'}, 'GSM2242934': {'line': 'A375', 'replicate': '4'}, 'GSM1612795': {'line': 'CUTLL1', 'type': 'leukemia'}, 'GSM1612794': {'line': 'CUTLL1', 'type': 'leukemia'}, 'GSM2242931': {'line': 'A375', 'replicate': '4'}, 'GSM2242930': {'line': 'A375', 'replicate': '4'}, 'GSM2242933': {'line': 'A375', 'replicate': '4'}, 'GSM2242932': {'line': 'A375', 'replicate': '4'}, 'GSM2242939': {'line': 'A375', 'replicate': '4'}, 'GSM2242938': {'line': 'A375', 'replicate': '4'}, 'GSM1550540': {'strain': 'HEK293 T-Rex FLAG:DICER1 FLP-IN', 'line': 'HEK293', 'transfection': 'DROSHA siRNA2, 18h'}, 'GSM1863099': {'line': 'C4-2B prostate cancer cell line', 'type': 'Bone metastatic LNCaP-derivative', 'agent': 'SR2211'}, 'GSM1716666': {'type': 'Neutrophils', 'method': 'Polymorphprep (poly)', 'treatment': 'GM-CSF (5ng/mL) 1h'}, 'GSM1848820': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 4', 'point': 'pre exercise'}, 'GSM2746169': {'treatment': 'SCC13 shCSL n 2'}, 'GSM2746168': {'treatment': 'SCC13 shCSL n 1'}, 'GSM2746165': {'treatment': 'HKC shCSL n 1 - replicate 2'}, 'GSM2746164': {'treatment': 'HKC shRNA control - replicate 2'}, 'GSM2746167': {'treatment': 'SCC13 shRNA control'}, 'GSM2746166': {'treatment': 'HKC shCSL n 2 - replicate 2'}, 'GSM2746161': {'treatment': 'HKC shRNA control - replicate 1'}, 'GSM2746163': {'treatment': 'HKC shCSL n 2 - replicate 1'}, 'GSM2746162': {'treatment': 'HKC shCSL n 1 - replicate 1'}, 'GSM1863328': {'state': 'healthy', 'type': 'peripheral blood monocytes', 'treatment': 'interferon-alpha', 'id': 'B'}, 'GSM1863329': {'state': 'healthy', 'type': 'peripheral blood monocytes', 'treatment': 'interferon-alpha', 'id': 'A'}, 'GSM1716667': {'type': 'Neutrophils', 'method': 'Negative selection (beads)', 'treatment': 'TNF-alpha (10ng/mL) 1h'}, 'GSM1848821': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 5', 'point': 'immediately after exercise'}, 'GSM1863320': {'clone': '1', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'IFNa', 'variation': 'Ro60 null'}, 'GSM1863321': {'clone': '2', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'none', 'variation': 'Ro60 null'}, 'GSM1863322': {'clone': '2', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'IFNa', 'variation': 'Ro60 null'}, 'GSM1863323': {'clone': '3', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'none', 'variation': 'Ro60 null'}, 'GSM1863324': {'clone': '3', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'IFNa', 'variation': 'Ro60 null'}, 'GSM1863325': {'state': 'healthy', 'type': 'peripheral blood monocytes', 'treatment': 'none', 'id': 'A'}, 'GSM1863326': {'state': 'healthy', 'type': 'peripheral blood monocytes', 'treatment': 'none', 'id': 'B'}, 'GSM1863327': {'state': 'healthy', 'type': 'peripheral blood monocytes', 'treatment': 'none', 'id': 'C'}, 'GSM2413456': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM591671': {'lineage': 'ectoderm', 'insertlength': 'ilNA', 'description': 'cervical carcinoma', 'localization': 'cell', 'readtype': '1x75D', 'sex': 'F', 'replicate': '2', 'line': 'HeLa-S3', 'karyotype': 'cancer', 'organism': 'Human'}, 'GSM2413457': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2325818': {'type': 'Differentiated embryonic stem cell'}, 'GSM1383907': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383906': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383905': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383904': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383903': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383902': {'passages': '17-20', 'type': 'Liposarcoma Cells', 'genotype': 'RNAi SPIN1'}, 'GSM1383901': {'passages': '17-20', 'type': 'Liposarcoma Cells', 'genotype': 'RNAi SPIN1'}, 'GSM1383900': {'passages': '17-20', 'type': 'Liposarcoma Cells', 'genotype': 'RNAi Control'}, 'GSM2413454': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1383909': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383908': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM2845396': {'replicate': 'Rep2', 'treatment': '4-OHT', 'time': '24hrs'}, 'GSM2845397': {'replicate': 'Rep1', 'treatment': 'VEH', 'time': '24hrs'}, 'GSM1520908': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)', 'line': 'THP1', 'antibody': 'CDC73'}, 'GSM1520909': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)', 'line': 'THP1', 'antibody': 'LEO1'}, 'GSM2845392': {'replicate': 'Rep2', 'treatment': '4-OHT', 'time': '24hrs'}, 'GSM2845393': {'replicate': 'Rep1', 'treatment': 'VEH', 'time': '24hrs'}, 'GSM1579168': {'origin': 'cells in vitro', 'line': 'UACC62', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579169': {'origin': 'cells in vitro', 'line': 'UACC62', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579166': {'origin': 'cells in vitro', 'line': 'Colo800', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_48h_1µM'}, 'GSM1520903': {'line': 'THP1', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)'}, 'GSM1579164': {'origin': 'cells in vitro', 'line': 'Colo800', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579165': {'origin': 'cells in vitro', 'line': 'Colo800', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579162': {'origin': 'xenograft tumours', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_10 doses_75mg/kg'}, 'GSM1520907': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)', 'line': 'THP1', 'antibody': 'PAF1'}, 'GSM2845398': {'replicate': 'Rep2', 'treatment': 'VEH', 'time': '24hrs'}, 'GSM1520905': {'line': 'THP1', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'PAF1 knockdown'}, 'GSM1295110': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '24 hours'}, 'GSM2455410': {'individual': 'DONOR 1', 'type': 'endothelial cell', 'treatment': 'DMSO + VEGF', 'time': '30 minutes'}, 'GSM2455411': {'individual': 'DONOR 2', 'type': 'endothelial cell', 'treatment': 'DMSO', 'time': '0 minutes'}, 'GSM2455412': {'individual': 'DONOR 2', 'type': 'endothelial cell', 'treatment': 'DMSO + VEGF', 'time': '30 minutes'}, 'GSM1295111': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '24 hours'}, 'GSM1295112': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '48 hours'}, 'GSM1639784': {'strain': 'tet-shLbc:Bcl-XL KhES-1', 'treatment': 'untreated'}, 'GSM1716663': {'type': 'Neutrophils', 'method': 'Negative selection (beads)', 'treatment': 'Untreated 1h'}, 'GSM2420368': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2632547': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632546': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632545': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2802996': {'line': 'hMSC-TERT4', 'variation': 'siTSHZ1', 'stage': 'D1'}, 'GSM2632543': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632542': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632541': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632540': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2536087': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10682', 'samplename': '1_T1D2-REDRAW _C35', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34782', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10682', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C35'}, 'GSM2536086': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10681', 'samplename': '1D_T1D2-REDRAW _C23', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34781', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10681', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C23'}, 'GSM2536085': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10680', 'samplename': '1_T1D2-REDRAW _C11', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34780', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10680', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C11'}, 'GSM2536084': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10678', 'samplename': '1D_T1D2-REDRAW _C40', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34778', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10678', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C40'}, 'GSM2536083': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10677', 'samplename': '1D_T1D2-REDRAW _C34', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34777', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10677', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C34'}, 'GSM2536082': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10675', 'samplename': '1_T1D2-REDRAW _C24', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34775', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10675', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C24'}, 'GSM2632549': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632548': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1354723': {'donor': '2', 'fraction': '40-100 nucleotide fraction'}, 'GSM1354722': {'donor': '1', 'fraction': '40-100 nucleotide fraction'}, 'GSM1354727': {'donor': '6', 'fraction': '40-100 nucleotide fraction'}, 'GSM1354726': {'donor': '5', 'fraction': '40-100 nucleotide fraction'}, 'GSM1354725': {'donor': '4', 'fraction': '40-100 nucleotide fraction'}, 'GSM1354724': {'donor': '3', 'fraction': '40-100 nucleotide fraction'}, 'GSM1354729': {'donor': '2', 'fraction': '20-40 nucleotide fraction'}, 'GSM1354728': {'donor': '1', 'fraction': '20-40 nucleotide fraction'}, 'GSM1234532': {'tissue': 'Prostate Tumour', 'point': 'Post-treatment'}, 'GSM1234531': {'tissue': 'Prostate Tumour', 'point': 'Post-treatment'}, 'GSM1234530': {'tissue': 'Prostate Tumour', 'point': 'Post-treatment'}, 'GSM2420366': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420367': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2413451': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1338771': {'start': 'Immediately after washout', 'type': 'K562', 'dna': 'NA', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM2070046': {'source': 'PDC', 'type': 'HCC'}, 'GSM2070047': {'source': 'cell line', 'type': 'HCC'}, 'GSM2070044': {'source': 'cell line', 'type': 'HCC'}, 'GSM2070045': {'source': 'primary HCC tissue', 'type': 'HCC'}, 'GSM2070042': {'source': 'cell line', 'type': 'HCC'}, 'GSM2070043': {'source': 'PDC', 'type': 'HCC'}, 'GSM2070040': {'source': 'cell line', 'type': 'HCC'}, 'GSM2070041': {'source': 'PDC', 'type': 'HCC'}, 'GSM2070048': {'source': 'primary HCC tissue', 'type': 'HCC'}, 'GSM2070049': {'source': 'PDC', 'type': 'HCC'}, 'GSM1533410': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '160 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM2671218': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671219': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1533411': {'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '320 min', 'line': 'MCF7', 'antibody': 'Homemade Anti-Pol II Monoclonal'}, 'GSM2671216': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671217': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671215': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1370585': {'line': 'MDA-MB-231', 'plasmid': 'pcDNA-Vector'}, 'GSM1370584': {'line': 'MDA-MB-231', 'plasmid': 'pcDNA-Vector'}, 'GSM1370587': {'line': 'MDA-MB-231', 'plasmid': 'pcDNA-FLAG-LKB1 wildtype'}, 'GSM1370586': {'line': 'MDA-MB-231', 'plasmid': 'pcDNA-FLAG-LKB1 wildtype'}, 'GSM1970054': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2133499': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM634765': {'strain': 'HES2'}, 'GSM2303229': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303228': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2303225': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2303224': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACIW009'}, 'GSM2303227': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303226': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACIW009'}, 'GSM2303221': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACIW009'}, 'GSM2303220': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303223': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303222': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2194215': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM701857': {'vendor': 'Millipore', 'line': 'HCT116', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701856': {'vendor': 'Millipore', 'line': 'MDA-MB-231', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701855': {'vendor': 'Millipore', 'line': 'K562', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701854': {'vendor': 'Millipore', 'line': 'HCT116', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701859': {'vendor': 'Millipore', 'line': 'MDA-MB-231', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701858': {'vendor': 'Millipore', 'line': 'K562', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM485396': {'line': 'NA19225'}, 'GSM545219': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'TNRC6B', 'recovered': 'ca. 200 kDa'}, 'GSM545218': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'TNRC6A', 'recovered': 'ca. 200 kDa'}, 'GSM545217': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'AGO2', 'recovered': '100 kDa'}, 'GSM545216': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'AGO2', 'recovered': '100 kDa'}, 'GSM545215': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'AGO4', 'recovered': '100 kDa'}, 'GSM545214': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'AGO3', 'recovered': '100 kDa'}, 'GSM545213': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'AGO2', 'recovered': '100 kDa'}, 'GSM545212': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'AGO1', 'recovered': '100 kDa'}, 'GSM545211': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'QKI', 'recovered': '50 kDa'}, 'GSM545210': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'Pumilio2', 'recovered': '130 kDa'}, 'GSM2458909': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.33'}, 'GSM2458908': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.83'}, 'GSM2458905': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.83'}, 'GSM2458904': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.75'}, 'GSM2458907': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.75'}, 'GSM2458906': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.92'}, 'GSM2458901': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.42'}, 'GSM2458900': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.75'}, 'GSM2458903': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.75'}, 'GSM2458902': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.83'}, 'GSM2159750': {'antibody': 'H3K27me3', 'treatment': 'Activin A + Wnt3a 2h'}, 'GSM2159751': {'antibody': 'H3K4me3', 'treatment': 'Activin A + Wnt3a 2h'}, 'GSM2159752': {'antibody': 'H3K27me3', 'treatment': 'Activin A + Wnt3a 6h'}, 'GSM2159753': {'antibody': 'H3K4me3', 'treatment': 'Activin A + Wnt3a 6h'}, 'GSM2159754': {'antibody': 'None', 'treatment': 'None'}, 'GSM2159755': {'antibody': 'None', 'treatment': 'Activin A + Wnt3a 2h'}, 'GSM2159756': {'antibody': 'None', 'treatment': 'Activin A + Wnt3a 6h'}, 'GSM3594342': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2147906': {'patient': 'P506', 'age': '30', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Africa American'}, 'GSM2147907': {'patient': 'P427', 'age': '30', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147904': {'patient': 'P506', 'age': '30', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Africa American'}, 'GSM2147905': {'patient': 'P506', 'age': '30', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Africa American'}, 'GSM2147902': {'patient': 'P506', 'age': '30', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Africa American'}, 'GSM2147903': {'patient': 'P506', 'age': '30', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Africa American'}, 'GSM2147900': {'patient': 'P505', 'age': '47', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'South Indian'}, 'GSM2147901': {'patient': 'P505', 'age': '47', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'South Indian'}, 'GSM1533218': {'treatment': 'DOX days 0-8'}, 'GSM2147908': {'patient': 'P507', 'age': '21', 'Sex': 'male', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147909': {'patient': 'P507', 'age': '21', 'Sex': 'male', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2664379': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664378': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664377': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma PDX', 'treatment': 'none'}, 'GSM2664376': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma PDX', 'treatment': 'none'}, 'GSM2664375': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma PDX', 'treatment': 'none'}, 'GSM2664374': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma PDX', 'treatment': 'none'}, 'GSM2664373': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma PDX', 'treatment': 'none'}, 'GSM2664372': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma PDX', 'treatment': 'none'}, 'GSM2664371': {'antibody': 'sc-9409 (goat polyclonal)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664370': {'antibody': 'sc-22206X (goat polyclonal)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1808038': {'tissue': 'Heart'}, 'GSM2359213': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '200 nM', 'drug': 'GSK1120212'}, 'GSM2359212': {'duration': '7D', 'line': 'A549', 'tissue': 'Lung', 'concentration': '200 nM', 'drug': 'GSK1120212'}, 'GSM2359211': {'duration': '7D', 'line': 'A549', 'tissue': 'Lung', 'concentration': '200 nM', 'drug': 'GSK1120212'}, 'GSM1892632': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892633': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892630': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892631': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892636': {'tissue': 'FFPE'}, 'GSM1892637': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892634': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892635': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2258213': {'group': 'NF2/Chr22_Loss', 'grade': '1', 'gender': 'F', 'age': '68', 'tissue': 'meningioma', 'histology': 'unknown', 'radiated': 'U'}, 'GSM1892638': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892639': {'tissue': 'FFPE'}, 'GSM2258212': {'group': 'NF2/Chr22_Loss', 'grade': '1', 'gender': 'M', 'age': 'U', 'tissue': 'meningioma', 'histology': 'unknown', 'radiated': 'U'}, 'GSM2309494': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'Go 6983', 'dose': '10 uM'}, 'GSM2816065': {'line': 'H9'}, 'GSM2309496': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'Isoginkgetin', 'dose': '100 uM'}, 'GSM2816067': {'line': 'H9'}, 'GSM2309490': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'Crizotinib', 'dose': '10 uM'}, 'GSM2258211': {'group': 'NF2/Chr22_Loss', 'grade': '1', 'gender': 'M', 'age': '62', 'tissue': 'meningioma', 'histology': 'meningothelial', 'radiated': 'N'}, 'GSM2309492': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'GF 109203X', 'dose': '10 uM'}, 'GSM2816063': {'line': 'H9'}, 'GSM2258210': {'group': 'NF2/Chr22_Loss', 'grade': '1', 'gender': 'F', 'age': '62', 'tissue': 'meningioma', 'histology': 'unknown', 'radiated': 'N'}, 'GSM2309498': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2309499': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2153507': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2620909': {'1': 'AGAGTAGA', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'C3', 'volume': '30uL', 'ul': '44.13', 's': 'S504', 'treatment': 'DMSO, followed by LPS', 'donor': '406', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'TCTACTCT'}, 'GSM2153505': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153504': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM1657677': {'substrate': 'Microporous support', 'density': '80,000 cells/cm2', 'number': '0', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-020207-2'}, 'GSM2153502': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153501': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153500': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2620900': {'1': 'TATCCTCT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'B4', 'volume': '30uL', 'ul': '42.79', 's': 'S503', 'treatment': 'IA, followed by LPS', 'donor': '1685', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'AGAGGATA'}, 'GSM1657679': {'substrate': 'Microporous support', 'density': '80,000 cells/cm2', 'number': '0', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM1657678': {'substrate': 'Microporous support', 'density': '80,000 cells/cm2', 'number': '0', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM2620904': {'1': 'TATCCTCT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'B6', 'volume': '30uL', 'ul': '41.23', 's': 'S503', 'treatment': 'IA, followed by LPS', 'donor': '1685', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'AGAGGATA'}, 'GSM2620905': {'1': 'AGAGTAGA', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'C1', 'volume': '30uL', 'ul': '52.23', 's': 'S504', 'treatment': 'DMSO, followed by LPS', 'donor': '406', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'TCTACTCT'}, 'GSM2153509': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2620907': {'1': 'AGAGTAGA', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'C2', 'volume': '30uL', 'ul': '41.24', 's': 'S504', 'treatment': 'DMSO, followed by LPS', 'donor': '406', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'TCTACTCT'}, 'GSM1366345': {'status': 'wt', 'line': 'HEK 293', 'antibody': 'Dicer'}, 'GSM1366346': {'status': 'wt', 'line': 'HEK 293'}, 'GSM1366347': {'status': 'knockdown', 'line': 'HEK 293', 'treatment': 'Dicer knockdown'}, 'GSM1399254': {'transduction': 'LV sh-TRIM28', 'type': 'H1-embryonic stem cells', 'point': '15 days post LV-sh transduction'}, 'GSM1399255': {'transduction': 'LV sh-non specific', 'type': 'H1-embryonic stem cells', 'point': '15 days post LV-sh transduction'}, 'GSM1399256': {'antibody': 'none', 'type': 'H1-embryonic stem cells'}, 'GSM1399257': {'antibody': 'none', 'type': 'H1-embryonic stem cells'}, 'GSM1399253': {'transduction': 'LV sh-empty', 'type': 'H1-embryonic stem cells', 'point': '15 days post LV-sh transduction'}, 'GSM1399258': {'vendor': 'Custom rabbit antibody, 60μl per IP', 'antibody': 'KAP1', 'type': 'H1-embryonic stem cells'}, 'GSM1399259': {'vendor': 'Diagenode, pAb-056-050, 1 mg/uL, 10ul per IP', 'antibody': 'H3K9me3', 'type': 'H1-embryonic stem cells'}, 'GSM1616919': {'classification': 'A2L3B3', 'disease_stage': 'B3/penetrating', 'age': '49', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616918': {'classification': 'A1L3B1', 'disease_stage': 'B1/non-strictuing, non-penetrating', 'age': '49', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616913': {'classification': 'A2L2B2', 'disease_stage': 'B2/stricturing', 'age': '51', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616912': {'classification': 'A1L1B2', 'disease_stage': 'B2/stricturing', 'age': '15', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616915': {'classification': 'A2L3B2', 'disease_stage': 'B2/stricturing', 'age': '30', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616914': {'classification': 'A2L3B3', 'disease_stage': 'B3/penetrating', 'age': '59', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616917': {'classification': 'A2L3B3', 'disease_stage': 'B3/penetrating', 'age': '45', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616916': {'classification': 'A1L2B1', 'disease_stage': 'B1/non-strictuing, non-penetrating', 'age': '20', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'male'}, 'GSM1704607': {'protocol': '72 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM752691': {'rin': '8.2', 'gender': 'Male', 'source': 'Commercial / AMS biotechnology'}, 'GSM1609397': {'line': 'GM18522', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609396': {'line': 'GM18519', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609395': {'line': 'GM18511', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609394': {'line': 'GM18505', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609393': {'line': 'GM18504', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609392': {'line': 'GM18504', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609391': {'line': 'GM18502', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609390': {'line': 'GM18501', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1216780': {'gender': 'Male', 'age': '55', 'bmi': '27.8', 'hba1c': '5.9', 'tissue': 'pancreatic islets', 'birth': '1955'}, 'GSM1216781': {'gender': 'Female', 'age': '65', 'bmi': '28.4', 'hba1c': '7', 'tissue': 'pancreatic islets', 'birth': '1945'}, 'GSM1216782': {'gender': 'Male', 'age': '70', 'bmi': '26.1', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1940'}, 'GSM1216783': {'gender': 'Male', 'age': '53', 'bmi': '26.2', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1957'}, 'GSM1216784': {'gender': 'Female', 'age': '55', 'bmi': '27', 'hba1c': '8.6', 'tissue': 'pancreatic islets', 'birth': '1955'}, 'GSM1216785': {'gender': 'Male', 'age': '52', 'bmi': '24.8', 'hba1c': '5.4', 'tissue': 'pancreatic islets', 'birth': '1958'}, 'GSM1609399': {'line': 'GM18523', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609398': {'line': 'GM18522', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1620594': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1901482': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1620596': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620597': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620590': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620591': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620592': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620593': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620598': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620599': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2815744': {'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'enrichment': 'No antibody enriched'}, 'GSM2251706': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 0 mM for 5 days and back to Glucose 25 mM for 5 days'}, 'GSM2815746': {'line': 'H9'}, 'GSM2815747': {'line': 'H9'}, 'GSM2815741': {'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'enrichment': 'No antibody enriched'}, 'GSM2815742': {'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'enrichment': 'No antibody enriched'}, 'GSM1414495': {'tissue': 'Human ovarian PDX tumor'}, 'GSM752693': {'rin': '8.6', 'gender': 'Male', 'source': 'Netherland Brain Bank, Netherlands'}, 'GSM2815748': {'line': 'H9'}, 'GSM1937830': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM2170675': {'stage': 'Hepatic endoderm 2'}, 'GSM1414497': {'tissue': 'Human ovarian PDX tumor'}, 'GSM2251702': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 0 mM'}, 'GSM2251703': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 0 mM'}, 'GSM2483538': {'line': 'A673 cells', 'rescue': 'mut9', 'RNAi': 'EWS/FLI', 'batch': '3'}, 'GSM1414492': {'tissue': 'Human ovarian PDX tumor'}, 'GSM2483534': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'Luciferase', 'batch': '1'}, 'GSM2483535': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'Luciferase', 'batch': '2'}, 'GSM2483536': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'Luciferase', 'batch': '3'}, 'GSM1414493': {'tissue': 'Human ovarian PDX tumor'}, 'GSM2483530': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'EWS/FLI', 'batch': '2'}, 'GSM2483531': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'EWS/FLI', 'batch': '3'}, 'GSM2483532': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'EWS/FLI', 'batch': '4'}, 'GSM2483533': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'EWS/FLI', 'batch': '5'}, 'GSM2103078': {'line': 'U2OS', 'treatment': 'NORAD plasmid'}, 'GSM2103079': {'line': 'U2OS', 'treatment': 'NORAD plasmid'}, 'GSM2103072': {'line': 'U2OS', 'treatment': 'siRNA pool against NORAD'}, 'GSM2103073': {'line': 'U2OS', 'treatment': 'siRNA pool against NORAD'}, 'GSM2103070': {'line': 'U2OS', 'treatment': 'Control plasmid'}, 'GSM2103071': {'line': 'U2OS', 'treatment': 'Control siRNA'}, 'GSM2103076': {'line': 'U2OS', 'treatment': 'siRNA1 against NORAD'}, 'GSM2103077': {'line': 'U2OS', 'treatment': 'siRNA2 against NORAD'}, 'GSM2103074': {'line': 'U2OS', 'treatment': 'Control siRNA'}, 'GSM2103075': {'line': 'U2OS', 'treatment': 'Control siRNA'}, 'GSM1585231': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1585230': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM1585233': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1585232': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM2197608': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197609': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM1585237': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM1585236': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM2197604': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197605': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197606': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197607': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197600': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197601': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197602': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197603': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2157972': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157973': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157970': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157971': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2226717': {'treatment': 'mRNA after TEX U2OS cell'}, 'GSM2226716': {'treatment': 'mRNA after TEX U2OS cell'}, 'GSM2226715': {'treatment': 'mRNA U2OS cell'}, 'GSM2226714': {'treatment': 'mRNA U2OS cell'}, 'GSM2226719': {'treatment': 'mRNA after 5prime-pulldown U2OS cell'}, 'GSM2226718': {'treatment': 'mRNA after TEX U2OS cell'}, 'GSM2278043': {'line': 'MDA-MB-157', 'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM1874588': {'line': '501Mel', 'type': 'melanoma'}, 'GSM1874589': {'line': '501Mel', 'type': 'melanoma'}, 'GSM1820129': {'type': 'CLL leukemic cells', 'genotype': 'IGVH mutated CLL'}, 'GSM1820128': {'type': 'CLL leukemic cells', 'genotype': 'IGVH mutated CLL'}, 'GSM1820127': {'type': 'CLL leukemic cells', 'genotype': 'IGVH mutated CLL'}, 'GSM1820126': {'type': 'CLL leukemic cells', 'genotype': 'IGVH mutated CLL'}, 'GSM1820125': {'type': 'CLL leukemic cells', 'genotype': 'IGVH non-mutated CLL'}, 'GSM1820124': {'type': 'CLL leukemic cells', 'genotype': 'IGVH non-mutated CLL'}, 'GSM1820123': {'type': 'CLL leukemic cells', 'genotype': 'IGVH non-mutated CLL'}, 'GSM1820122': {'type': 'CLL leukemic cells', 'genotype': 'IGVH non-mutated CLL'}, 'GSM1820121': {'type': 'CLL leukemic cells', 'genotype': 'IGVH non-mutated CLL'}, 'GSM1820120': {'type': 'CLL leukemic cells', 'genotype': 'IGVH non-mutated CLL'}, 'GSM2098703': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098702': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098701': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098700': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM424325': {'identifier': 'GM07034'}, 'GSM424324': {'identifier': 'GM07022'}, 'GSM2685248': {'acd27': 'no aCD27', 'type': 'CD8+ naive T cells', 'number': '1', 'subtype': 'total RNA from single cell', 'donor': 'Donor 1', 'protein': 'mRNA', 'with': 'aCD3 and aCD28', 'condition': 'AbBs and Blocking buffer'}, 'GSM424326': {'identifier': 'GM07055'}, 'GSM2685246': {'type': 'CD11b enriched PBMCs', 'number': '5', 'subtype': 'AbBs from single cell', 'donor': 'NA', 'protein': 'protein', 'with': 'none; untreated', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685247': {'type': 'CD19 enriched PBMCs', 'number': '6', 'subtype': 'AbBs from single cell', 'donor': 'NA', 'protein': 'protein', 'with': 'none; untreated', 'condition': 'AbBs and Blocking buffer'}, 'GSM2098709': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098708': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2685242': {'type': 'CD19 enriched PBMCs', 'number': '6', 'subtype': 'total RNA from single cell', 'donor': 'NA', 'protein': 'mRNA', 'with': 'none; untreated', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685243': {'type': 'PBMCs', 'number': '2', 'subtype': 'AbBs from single cell', 'donor': 'NA', 'protein': 'protein', 'with': 'none; untreated', 'condition': 'AbBs and No Blocking buffer'}, 'GSM2685240': {'type': 'CD3 enriched PBMCs', 'number': '4', 'subtype': 'total RNA from single cell', 'donor': 'NA', 'protein': 'mRNA', 'with': 'none; untreated', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685241': {'type': 'CD11b enriched PBMCs', 'number': '5', 'subtype': 'total RNA from single cell', 'donor': 'NA', 'protein': 'mRNA', 'with': 'none; untreated', 'condition': 'AbBs and Blocking buffer'}, 'GSM1269359': {'transfection': 'miR-155', 'type': 'RNA-seq fastq', 'line': 'Huh7 cells'}, 'GSM2451047': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2734266': {'experiment': '20170322C', 'area': 'Cerebellar Hemisphere', 'age': '49 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Male', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0009-IU'}, 'GSM1269351': {'transfection': 'miR-124', 'type': 'RNA-seq fastq', 'line': 'HEK293 cells'}, 'GSM1269350': {'transfection': 'miR-124', 'type': 'RNA-seq fastq', 'line': 'HEK293 cells'}, 'GSM1269353': {'transfection': 'miR-155', 'type': 'RNA-seq fastq', 'line': 'HEK293 cells'}, 'GSM1269352': {'transfection': 'miR-155', 'type': 'RNA-seq fastq', 'line': 'HEK293 cells'}, 'GSM1269355': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'HEK293 cells'}, 'GSM2100127': {'rin': '9.9', 'Sex': 'Male', 'sspg': '93', 'age': '50', 'bmi': '27.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '459', 'method': 'Life-Tech GITC'}, 'GSM1269357': {'transfection': 'miR-124', 'type': 'RNA-seq fastq', 'line': 'Huh7 cells'}, 'GSM2391850': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1521776': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2100126': {'rin': '10', 'Sex': 'Male', 'sspg': '93', 'age': '50', 'bmi': '27.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '459', 'method': 'Life-Tech GITC'}, 'GSM3189148': {'boca': 'No', 'years': '17', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '88', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.711949', 'percentaligned': '0.759921228', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.493895'}, 'GSM2734263': {'experiment': '20170322B', 'area': 'BA10', 'age': '35 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Frontal Cortex', 'id': '0008-CR'}, 'GSM1521774': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2451042': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2411953': {'line': '16939B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM1521775': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2451041': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2463219': {'line': 'HepG2 HCC cell line', 'expressing': 'miR-17 TuD'}, 'GSM1521772': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2734260': {'experiment': '20170322A', 'area': 'Cerebellar Hemisphere', 'age': '35 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0008-CR'}, 'GSM1521773': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521770': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521771': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2047347': {'well': 'C01', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047346': {'well': 'B12', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047345': {'well': 'B11', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047344': {'well': 'B10', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047343': {'well': 'B09', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047342': {'well': 'B08', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047341': {'well': 'B07', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1957015': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'CTRL'}, 'GSM1957019': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'RBM47 KD'}, 'GSM2047349': {'well': 'C03', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047348': {'well': 'C02', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2649800': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649801': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649802': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649803': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649804': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649805': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649806': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649807': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649808': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649809': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM3189147': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '83', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.583376', 'percentaligned': '0.903237486', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.696191', 'original': 'Control'}, 'GSM2685862': {'line': 'Hap1', 'genotype': 'RNase L -/-'}, 'GSM2685863': {'line': 'A549', 'genotype': 'wild-type'}, 'GSM2685860': {'line': 'T47D', 'genotype': 'wild-type'}, 'GSM2685861': {'line': 'Hap1', 'genotype': 'wild-type'}, 'GSM2685866': {'line': 'A549', 'genotype': 'wild-type'}, 'GSM2685864': {'line': 'A549', 'genotype': 'wild-type'}, 'GSM2685865': {'line': 'A549', 'genotype': 'wild-type'}, 'GSM2572304': {'tissue': 'Brain', 'stage': 'day 10 from hPSC'}, 'GSM2572305': {'tissue': 'Brain', 'stage': 'day 10 from hPSC'}, 'GSM2572306': {'tissue': 'Brain', 'stage': 'human adult'}, 'GSM2572302': {'tissue': 'Brain', 'stage': 'day 10 from hPSC'}, 'GSM2572303': {'tissue': 'Brain', 'stage': 'day 10 from hPSC'}, 'GSM2066429': {'source': 'H2087', 'type': 'lung adenocarcinoma cell line', 'antibody': 'none (Input)', 'subtype': 'Parental Population'}, 'GSM2393565': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '1', 'treatment': 'RNY5 6 hr'}, 'GSM1234161': {'replicate': '2', 'line': '2255', 'antibody': 'SA1'}, 'GSM1464335': {'status': 'small cell lung cancer'}, 'GSM2393564': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '2', 'treatment': 'RNY5 2 hr'}, 'GSM2194568': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194569': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3189198': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '45', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.696886', 'percentaligned': '0.922543013', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.138465'}, 'GSM3189199': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '38', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.657844', 'percentaligned': '0.858083123', 'Sex': 'F', 'nl63': 'No', 'libcounts': '16.888875', 'original': 'Case'}, 'GSM2194564': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194565': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194566': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194567': {'type': 'delta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194560': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3189193': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'Yes', 'mediancvcoverage': '0.569043', 'percentaligned': '0.966110284', 'Sex': 'M', 'nl63': 'No', 'libcounts': '21.763143', 'original': 'Control'}, 'GSM3189190': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C48', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.624048', 'percentaligned': '0.962199238', 'Sex': 'M', 'nl63': 'No', 'libcounts': '18.986975', 'original': 'Control'}, 'GSM2194563': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1946120': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '30min'}, 'GSM1401379': {'subtype': 'mesenchymal stem cells (MSCs) intermediate', 'type': 'patient-derived iPSCs', 'genotype': 'wildtype', 'point': 'day 14 of osteoblast differentiation treatment'}, 'GSM1401378': {'subtype': 'mesenchymal stem cells (MSCs) intermediate', 'type': 'patient-derived iPSCs', 'genotype': 'wildtype', 'point': 'day 7 of osteoblast differentiation treatment'}, 'GSM1401377': {'subtype': 'mesenchymal stem cells (MSCs)', 'type': 'patient-derived iPSCs', 'genotype': 'wildtype', 'point': 'day 0 of osteoblast differentiation treatment'}, 'GSM1401376': {'subtype': 'osteoblast', 'type': 'patient-derived iPSCs', 'genotype': 'Li-Fraumeni Syndrome (LFS) patient', 'point': 'day 17 of osteoblast differentiation treatment'}, 'GSM1401375': {'subtype': 'mesenchymal stem cells (MSCs) intermediate', 'type': 'patient-derived iPSCs', 'genotype': 'Li-Fraumeni Syndrome (LFS) patient', 'point': 'day 14 of osteoblast differentiation treatment'}, 'GSM1401374': {'subtype': 'mesenchymal stem cells (MSCs) intermediate', 'type': 'patient-derived iPSCs', 'genotype': 'Li-Fraumeni Syndrome (LFS) patient', 'point': 'day 7 of osteoblast differentiation treatment'}, 'GSM1401373': {'subtype': 'mesenchymal stem cells (MSCs)', 'type': 'patient-derived iPSCs', 'genotype': 'Li-Fraumeni Syndrome (LFS) patient', 'point': 'day 0 of osteoblast differentiation treatment'}, 'GSM1401372': {'subtype': 'osteoblast', 'type': 'patient-derived iPSCs', 'genotype': 'Li-Fraumeni Syndrome (LFS) patient', 'point': 'day 17 of osteoblast differentiation treatment'}, 'GSM1401371': {'subtype': 'mesenchymal stem cells (MSCs) intermediate', 'type': 'patient-derived iPSCs', 'genotype': 'Li-Fraumeni Syndrome (LFS) patient', 'point': 'day 14 of osteoblast differentiation treatment'}, 'GSM1401370': {'subtype': 'mesenchymal stem cells (MSCs) intermediate', 'type': 'patient-derived iPSCs', 'genotype': 'Li-Fraumeni Syndrome (LFS) patient', 'point': 'day 7 of osteoblast differentiation treatment'}, 'GSM1942108': {'line': 'MCF7'}, 'GSM1942109': {'line': 'MCF7'}, 'GSM1942102': {'line': 'MCF7'}, 'GSM1942103': {'line': 'MCF7'}, 'GSM1942100': {'line': 'MCF7'}, 'GSM1942101': {'line': 'MCF7'}, 'GSM1942106': {'line': 'MCF7'}, 'GSM1942107': {'line': 'MCF7'}, 'GSM1942104': {'line': 'MCF7'}, 'GSM1942105': {'line': 'MCF7'}, 'GSM3104748': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM3104749': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM3104744': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Non class switched memory B cell'}, 'GSM3104745': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Class switched memory B cell'}, 'GSM3104746': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Naive B cell'}, 'GSM3104747': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM3104740': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104741': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104742': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104743': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM1901295': {'treatment': 'GFP+IFN'}, 'GSM2449039': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N4â\\x80\\x93'}, 'GSM2449038': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N4â\\x80\\x93'}, 'GSM2449037': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N4â\\x80\\x93'}, 'GSM1930757': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1930754': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1901294': {'treatment': 'VP55 9 day'}, 'GSM1930752': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1930753': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1519976': {'to': '2 µM erlotinib+0.2 µM crizotinib combination', 'line': 'NSCLC cell line HCC827', 'treatment': 'The erlotinib-resistant HCC827 cell population was treated with 2 µM erlotinib+0.2 µM crizotinib combination for 10 days to enrich for erlotinib/crizotinib dual-resistant subpopulations.'}, 'GSM1901299': {'treatment': 'GFP+dsRNA'}, 'GSM2390834': {'disease': 'Healthy Control'}, 'GSM2390835': {'disease': 'Healthy Control'}, 'GSM2390836': {'disease': 'Healthy Control'}, 'GSM2390837': {'disease': 'Healthy Control'}, 'GSM2390830': {'disease': 'Healthy Control'}, 'GSM2390831': {'disease': 'Healthy Control'}, 'GSM2390832': {'disease': 'Healthy Control'}, 'GSM2390833': {'disease': 'Healthy Control'}, 'GSM2825127': {'line': 'HeLa (sh FBL integrated)', 'treatment': '+ doxycycline'}, 'GSM2825126': {'line': 'HeLa (sh FBL integrated)', 'treatment': '- doxycycline'}, 'GSM2825125': {'line': 'HeLa (sh FBL integrated)', 'treatment': '+ doxycycline'}, 'GSM2825124': {'line': 'HeLa (sh FBL integrated)', 'treatment': '- doxycycline'}, 'GSM2390838': {'disease': 'Healthy Control'}, 'GSM2825122': {'line': 'HeLa (sh FBL integrated)', 'treatment': '- doxycycline'}, 'GSM1679720': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '70'}, 'GSM1071441': {'line': 'HEK293T'}, 'GSM1187143': {'type': 'polyA RNA', 'genotype': '5556GA'}, 'GSM3496115': {'line': 'NHDF1', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons late plus serum'}, 'GSM3496114': {'line': 'AH017', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons late plus serum'}, 'GSM3496111': {'line': 'NHDF1', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons late'}, 'GSM3496110': {'line': 'AH017', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons late'}, 'GSM3496113': {'line': 'AD3-01', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons late plus serum'}, 'GSM3496112': {'line': 'AD2-01', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons late plus serum'}, 'GSM2228908': {'tissue': 'Foreskin', 'antibody': '5-Hydroxymethylcytosine (Active Motif, Cat: 39769)', 'passage': '5'}, 'GSM2228909': {'tissue': 'Foreskin', 'antibody': '5-Methylcytosine (Eurogentec BI-MECY-01000)', 'passage': '6'}, 'GSM1957505': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2228904': {'tissue': 'Foreskin', 'antibody': 'H3K36me3 (Abcam Cat: ab9050)', 'passage': '3'}, 'GSM2228905': {'tissue': 'Foreskin', 'antibody': 'H3K36me3 (Abcam Cat: ab9050)', 'passage': '3'}, 'GSM2228906': {'tissue': 'Foreskin', 'antibody': '5-Hydroxymethylcytosine (Active Motif, Cat: 39769)', 'passage': '5'}, 'GSM2228907': {'tissue': 'Foreskin', 'antibody': '5-Hydroxymethylcytosine (Active Motif, Cat: 39769)', 'passage': '5'}, 'GSM2228900': {'tissue': 'Foreskin', 'antibody': 'H3K4me1(Abcam. Cat: ab8895)', 'passage': '3'}, 'GSM2228901': {'tissue': 'Foreskin', 'antibody': 'H3K4me1(Abcam. Cat: ab8895)', 'passage': '3'}, 'GSM2228902': {'tissue': 'Foreskin', 'antibody': 'H3K27ac (Merck Millipore. Cat 07-360)', 'passage': '3'}, 'GSM2228903': {'tissue': 'Foreskin', 'antibody': 'H3K27ac (Merck Millipore. Cat 07-360)', 'passage': '3'}, 'GSM946850': {'line': 'MCF7', 'antibody': 'H3K27ac (Abcam, ab4729, lot#GR6802-1)', 'passage': '5'}, 'GSM946851': {'line': 'MCF7', 'antibody': 'H3K27me3 (CellSignalingTechnologies, 9733S, lot#5)', 'passage': '5'}, 'GSM946852': {'line': 'MCF7', 'antibody': 'H3K9me3 (CellSignalingTechnologies, 9754S, lot#1)', 'passage': '5'}, 'GSM946853': {'line': 'HCT116', 'antibody': 'H3K4me1 (CellSignalingTechnologies, 9723S, lot#1)', 'passage': '9'}, 'GSM946854': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729, lot#GR6802-1)', 'passage': '9'}, 'GSM1957501': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957503': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1261029': {'type': 'HER2 Positive Breast Tumor'}, 'GSM1261028': {'type': 'HER2 Positive Breast Tumor'}, 'GSM1261027': {'type': 'Non-TNBC Breast Tumor'}, 'GSM1261026': {'type': 'Non-TNBC Breast Tumor'}, 'GSM1261025': {'type': 'Non-TNBC Breast Tumor'}, 'GSM1261024': {'type': 'Non-TNBC Breast Tumor'}, 'GSM1261023': {'type': 'Non-TNBC Breast Tumor'}, 'GSM1261022': {'type': 'Non-TNBC Breast Tumor'}, 'GSM1261021': {'type': 'TNBC Breast Tumor'}, 'GSM1261020': {'type': 'TNBC Breast Tumor'}, 'GSM2359275': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '100nM', 'drug': 'THZ1'}, 'GSM2359274': {'duration': '7D', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '1 uM', 'drug': 'BGJ398'}, 'GSM2359277': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '100nM', 'drug': 'THZ1'}, 'GSM2359276': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '100nM', 'drug': 'THZ1'}, 'GSM2359271': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359270': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359273': {'duration': '7D', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '1 uM', 'drug': 'BGJ398'}, 'GSM2359272': {'duration': '7D', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '1 uM', 'drug': 'BGJ398'}, 'GSM1981349': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1981348': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1981341': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981340': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981343': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981342': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981345': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1981344': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1981347': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM1981346': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM3189454': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A11', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.799264', 'percentaligned': '0.946560505', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.238003', 'original': 'Case'}, 'GSM881822': {'condition': 'liposarcoma'}, 'GSM1955083': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM1955082': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1955081': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM1955080': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1955087': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM1955086': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1955085': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM1955084': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1576394': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human B cells', 'time': '7 d'}, 'GSM1955089': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM1955088': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1576395': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human myeloid DC', 'time': '0 d'}, 'GSM2759015': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'N/A', 'transfection': 'Control'}, 'GSM1576396': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human myeloid DC', 'time': '1 d'}, 'GSM2759017': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'N/A', 'transfection': 'Control'}, 'GSM881821': {'condition': 'liposarcoma'}, 'GSM2759019': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'N/A', 'transfection': 'Control'}, 'GSM2759018': {'strain': 'PV', 'line': 'HeLa', 'antibody': 'N/A', 'transfection': 'U1'}, 'GSM1576397': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human myeloid DC', 'time': '3 d'}, 'GSM2085640': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085641': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085642': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085643': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085644': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085645': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085646': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2411868': {'line': '12022B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2085648': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085649': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1480372': {'with': 'vehicle for 90min', 'type': 'SGBS adipocyte D10'}, 'GSM1480373': {'with': '10ng/ml TNFα for 90min', 'type': 'SGBS adipocyte D10'}, 'GSM1480374': {'with': '10ng/ml TNFα for 90min', 'type': 'SGBS adipocyte D10'}, 'GSM1480375': {'with': '10ng/ml TNFα for 90min', 'type': 'SGBS adipocyte D10'}, 'GSM1953966': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM2361399': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'GTCCGC'}, 'GSM2361398': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Regulatory T cells', 'barcode': 'CAGGCG'}, 'GSM1953967': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM2361395': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Regulatory T cells', 'barcode': 'CTTGTA'}, 'GSM2361394': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Regulatory T cells', 'barcode': 'TAGCTT'}, 'GSM2361397': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Regulatory T cells', 'barcode': 'CACCGG'}, 'GSM2361396': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Regulatory T cells', 'barcode': 'ATGAGC'}, 'GSM2361391': {'category': 'naïve', 'activation': 'CD45RA+', 'tissue': 'PBMC', 'type': 'Regulatory T cells'}, 'GSM2361390': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'PBMC', 'type': 'Regulatory T cells'}, 'GSM2361393': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Regulatory T cells', 'barcode': 'CCGTCC'}, 'GSM2361392': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'PBMC', 'type': 'Regulatory T cells'}, 'GSM2627003': {'origin': 'pancreas', 'patient_id': '61', 'type': 'primary', 'tumor_id': 'YC118'}, 'GSM1953962': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM1953963': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM1555731': {'line': 'C4-2', 'group': 'SiNTCONTROL'}, 'GSM1555730': {'line': 'C4-2', 'group': 'SiNTCONTROL'}, 'GSM1555732': {'line': 'C4-2', 'group': 'SiNTCONTROL'}, 'GSM1953961': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM1448989': {'line': 'HEK-293', 'treatment': 'siPTBP1'}, 'GSM1448988': {'line': 'HEK-293', 'treatment': 'siNS'}, 'GSM1448987': {'line': 'HEK-293', 'treatment': 'siNS'}, 'GSM2200891': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2232717': {'tissue': 'Bone marrow', 'genotype': 'wildtype', 'markers': 'ckit+ScaI+'}, 'GSM2688983': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688980': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688981': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688986': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688987': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688984': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2688985': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2758944': {'line': 'MCF-7', 'transfection': 'pLenti-CMV-hydro-GFP', 'treatment': 'Tamoxifen'}, 'GSM2758945': {'line': 'MCF-7', 'transfection': 'pLenti-CMV-hydro-GFP', 'treatment': 'Tamoxifen'}, 'GSM2758946': {'line': 'MCF-7', 'transfection': 'pLenti-CMV-hydro-GFP', 'treatment': 'Tamoxifen'}, 'GSM2758947': {'line': 'MCF-7', 'transfection': 'pLenti-CMV-hydro-GFP', 'treatment': 'Vehicle'}, 'GSM2758943': {'line': 'MCF-7', 'transfection': 'pLenti-CMV-hydro-GFP', 'treatment': 'Tamoxifen'}, 'GSM2232714': {'tissue': 'Peripheral blood', 'genotype': 'ASXL2 mutation'}, 'GSM1844561': {'tissue': 'skin', 'type': 'Cultured epidermal melanocytes'}, 'GSM2666046': {'age': 'Day 450', 'well': 'H9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666045': {'age': 'Day 450', 'well': 'F10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666044': {'age': 'Day 450', 'well': 'B12', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666043': {'age': 'Day 450', 'well': 'B3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666042': {'age': 'Day 130', 'well': 'B5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1395869': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395868': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395867': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395866': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395865': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395864': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2389821': {'tissue': 'SJSA - osteosarcoma'}, 'GSM2389820': {'tissue': 'SJSA - osteosarcoma'}, 'GSM1395861': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2389822': {'tissue': 'SJSA - osteosarcoma'}, 'GSM2361939': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361938': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705319': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705318': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705313': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 1 14 month at -20°C', 'date': '11.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2361930': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705311': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '11.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2361932': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361935': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361934': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705315': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2361936': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1931830': {'individual': '1104', 'tissue': 'derived cardiomyocytes (CMs) from hiPSC', 'treatment': 'without Endothelin stimulation'}, 'GSM1931831': {'individual': '1104', 'tissue': 'derived cardiomyocytes (CMs) from hiPSC', 'treatment': 'with Endothelin stimulation'}, 'GSM1881564': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881565': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM2491458': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491459': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2537144': {'line': 'MCF7', 'treatment': 'control'}, 'GSM2491450': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491451': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491452': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491453': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491454': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491455': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491456': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2491457': {'disease': 'Dengue shock syndrome', 'condition': 'Dengue Fever Group C'}, 'GSM2158255': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158252': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2747150': {'antibody': 'anti-MAF1 (Santa Cruz sc-365312 lot # G1411)', 'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2158253': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM1518059': {'line': 'CUTTL1', 'treatment': 'DMSO', 'time': '12h'}, 'GSM1518058': {'line': 'CUTTL1', 'treatment': 'GSI', 'time': '48h'}, 'GSM2158250': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2084559': {'line': 'H1299', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2158251': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1518057': {'line': 'CUTTL1', 'treatment': 'DMSO', 'time': '48h'}, 'GSM1518056': {'line': 'CUTTL1', 'treatment': 'GSI', 'time': '12h'}, 'GSM1518055': {'line': 'CUTTL1', 'treatment': 'DMSO', 'time': '12h'}, 'GSM3362558': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM2232710': {'tissue': 'Bone marrow', 'genotype': 'wildtype', 'markers': 'ckit+ScaI+'}, 'GSM2306036': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '21 week gestation'}, 'GSM2199530': {'age': '28', 'tissue': 'Subcutaneous fat', 'bmi': '50.1'}, 'GSM3594379': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2199532': {'age': '27', 'tissue': 'Subcutaneous fat', 'bmi': '44.9'}, 'GSM3594370': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594371': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594372': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594373': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2247370': {'line': 'H1 (WA-01) + WTC10 Phox2B null (Y14X/Y14X)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM2247371': {'line': 'H1 (WA-01) + WTC10 Phox2B null (Y14X/Y14X)', 'tissue': 'ES derived human intestinal organoid', 'type': 'in vitro', 'age': '28 days'}, 'GSM3594376': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594377': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2865071': {'tisue': 'retina', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'disease': 'normal', 'agent': 'largazole_37.5nM'}, 'GSM2865070': {'tisue': 'retina', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'disease': 'normal', 'agent': 'DMSO'}, 'GSM2865073': {'tisue': 'retina', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'disease': 'normal', 'agent': 'largazole_300nM'}, 'GSM2865072': {'tisue': 'retina', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'disease': 'normal', 'agent': 'largazole_75nM'}, 'GSM1965149': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965148': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2865076': {'tisue': 'retina', 'antibody': 'RNAPII (Santa Cruz, sc-899, lot K0111)', 'disease': 'normal', 'agent': 'largazole_300nM'}, 'GSM1965145': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965144': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965147': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965146': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965141': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965140': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965143': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965142': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2630246': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630247': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630244': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630245': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630242': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630243': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630240': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630241': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630248': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630249': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM1863702': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM977618': {'wavelength': '4-SU / 365 nm', 'line': 'FlpIn T-Rex Human embryonic kidney 293 stable cell line', 'antibody': 'anti-FLAG M2 [Sigma-Aldrich, cat# F1804, lot#101M6216]', 'protein': 'I304N FLAG-HA FMR1 iso7'}, 'GSM977619': {'wavelength': '4-SU / 365 nm', 'line': 'FlpIn T-Rex Human embryonic kidney 293 stable cell line', 'antibody': 'anti-FLAG M2 [Sigma-Aldrich, cat# F1804, lot#101M6216]', 'protein': 'wt FLAG-HA FXR1'}, 'GSM977616': {'wavelength': '4-SU / 365 nm', 'line': 'FlpIn T-Rex Human embryonic kidney 293 stable cell line', 'antibody': 'anti-FLAG M2 [Sigma-Aldrich, cat# F1804, lot#101M6216]', 'protein': 'wt FLAG-HA FMR1 iso7'}, 'GSM977617': {'wavelength': '4-SU / 365 nm', 'line': 'FlpIn T-Rex Human embryonic kidney 293 stable cell line', 'antibody': 'anti-FLAG M2 [Sigma-Aldrich, cat# F1804, lot#101M6216]', 'protein': 'I304N FLAG-HA FMR1 iso1'}, 'GSM977615': {'wavelength': '4-SU / 365 nm', 'line': 'FlpIn T-Rex Human embryonic kidney 293 stable cell line', 'antibody': 'anti-FLAG M2 [Sigma-Aldrich, cat# F1804, lot#101M6216]', 'protein': 'wt FLAG-HA FMR1 iso1'}, 'GSM1863700': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863701': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863707': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863704': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863705': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM2392208': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1647013': {'illumina_index': '15', 'point': '18', 'batch': '5', 'agent': 'none', 'rin': '5.1', 'individual': 'M373'}, 'GSM1668815': {'line': 'HEK293T', 'with': 'GFP control'}, 'GSM2374053': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2648907': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM Dexamethasone', 'time': '24 hours'}, 'GSM1969324': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM2263408': {'group': 'RASP', 'gender': 'F', 'age': '21', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2374059': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2263400': {'group': 'RASNP', 'gender': 'M', 'age': '38', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263401': {'group': 'RASNP', 'gender': 'M', 'age': '35', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263402': {'group': 'RASNP', 'gender': 'M', 'age': '22', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263403': {'group': 'RASNP', 'gender': 'F', 'age': '36', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263404': {'group': 'RASP', 'gender': 'F', 'age': '24', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263405': {'group': 'RASP', 'gender': 'F', 'age': '21', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263406': {'group': 'RASP', 'gender': 'F', 'age': '25', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263407': {'group': 'RASP', 'gender': 'F', 'age': '37', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2632662': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632663': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632660': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632661': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632666': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632667': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632664': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632665': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142523': {'gender': 'female', 'age': '80', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142522': {'gender': 'male', 'age': '73', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2632668': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142520': {'gender': 'male', 'age': '55', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142527': {'gender': 'female', 'age': '68', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142526': {'gender': 'male', 'age': '68', 'who': '0', 'dead': '1', 'date': '2009-07-06', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142525': {'gender': 'male', 'age': '54', 'who': '0', 'dead': '1', 'date': '2009-11-15', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142524': {'gender': 'male', 'age': '72', 'who': '1', 'dead': '1', 'date': '2008-10-05', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM1716949': {'tissue': 'liver', 'stage': 'normal'}, 'GSM1668816': {'line': 'HEK293T', 'with': 'TALE-activator targeting IL1RN'}, 'GSM1716948': {'tissue': 'liver', 'stage': 'tumor'}, 'GSM1244822': {'type': 'MCF7', 'treatment': 'Control ethanol 24h'}, 'GSM1244820': {'type': 'MCF7', 'treatment': 'Control ethanol 24h'}, 'GSM1244821': {'type': 'MCF7', 'treatment': 'Control ethanol 24h'}, 'GSM1716945': {'tissue': 'liver', 'stage': 'normal'}, 'GSM1716947': {'tissue': 'liver', 'stage': 'normal'}, 'GSM1716946': {'tissue': 'liver', 'stage': 'tumor'}, 'GSM1498326': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498327': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498324': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498325': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498322': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498323': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498320': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM1498321': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM1969320': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Trunk wall'}, 'GSM2287741': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287740': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287743': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287742': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287745': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287744': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2317019': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2287746': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2317017': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317016': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317015': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317014': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317013': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317012': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317011': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317010': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2437183': {'status': 'GDM', 'id': 'GD6'}, 'GSM1919102': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'PHF8', 'point': '48 hours'}, 'GSM1919103': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'PHF8', 'point': '72 hours'}, 'GSM3362554': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM1919101': {'line': 'MCF10A', 'treatment': 'TGFbeta1', 'variation': 'PHF8', 'point': '24 hours'}, 'GSM600349': {'type': 'HES2', 'size': '500-2000bp'}, 'GSM600348': {'type': 'HES2', 'size': '0-500bp'}, 'GSM2102457': {'with': 'Cas9 without guide RNA', 'line': 'JEG3', 'type': 'choriocarcinoma (trophoblast)'}, 'GSM2102456': {'with': 'Cas9 without guide RNA', 'line': 'JEG3', 'type': 'choriocarcinoma (trophoblast)'}, 'GSM2102455': {'with': 'Cas9 without guide RNA', 'line': 'JEG3', 'type': 'choriocarcinoma (trophoblast)'}, 'GSM2102454': {'with': 'N/A', 'line': 'JEG3', 'type': 'choriocarcinoma (trophoblast)'}, 'GSM2102453': {'with': 'N/A', 'line': 'JEG3', 'type': 'choriocarcinoma (trophoblast)'}, 'GSM2102459': {'with': 'Cas9 with guide RNA targeting Enhancer L', 'line': 'JEG3', 'type': 'choriocarcinoma (trophoblast)'}, 'GSM2102458': {'with': 'Cas9 with guide RNA targeting Enhancer L', 'line': 'JEG3', 'type': 'choriocarcinoma (trophoblast)'}, 'GSM2233302': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233303': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1273624': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273625': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2233306': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1273623': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2233304': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233305': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1969322': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM2233308': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233309': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1273628': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273629': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1133340': {'status': 'MSS', 'age': '76', 'Sex': 'female', 'state': 'benign', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P7'}, 'GSM2048809': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048808': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2754928': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0369', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754929': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0369', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754922': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0361', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754923': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0361', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754920': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0843', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754921': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_0843', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754926': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_1140', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754927': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0369', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754924': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0361', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754925': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_1140', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2047705': {'well': 'H08', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2752564': {'line': 'NCI-H358', 'agent': 'trametinib treated 50nM'}, 'GSM2752565': {'line': 'NCI-H358', 'agent': 'trametinib treated 50nM'}, 'GSM2752560': {'line': 'A549', 'agent': 'trametinib treated 50nM'}, 'GSM2752561': {'line': 'NCI-H358', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752562': {'line': 'NCI-H358', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752563': {'line': 'NCI-H358', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2616358': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616359': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2562619': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562618': {'gender': 'female', 'race': 'not reported', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2047704': {'well': 'H07', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2562613': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562612': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562611': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562610': {'gender': 'female', 'race': 'Bruneian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2616354': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616355': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2562615': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562614': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2511578': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2511579': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543629': {'library_id': 'lib5746', 'stim': 'TT', 'group': 'Case', 'classification': 'Not Included', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543628': {'library_id': 'lib5745', 'stim': 'CR', 'group': 'Case', 'classification': 'Not Included', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543623': {'library_id': 'lib5740', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543622': {'library_id': 'lib5739', 'stim': 'DM', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511572': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2511573': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543627': {'library_id': 'lib5744', 'stim': 'NS', 'group': 'Case', 'classification': 'Not Included', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543626': {'library_id': 'lib5743', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511576': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543624': {'library_id': 'lib5741', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1940180': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM2862455': {'death': 'Unknown', 'gender': 'Female', 'age': '90', 'delay': '5:50 hours', 'tissue': 'Circle of Willis', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'id': 'CoW3'}, 'GSM1922719': {'status': 'P72R', 'specimen': 'patient#8', 'tissue': 'ovary', 'treatment': 'ReACp53', 'type': 'endometrioid ovarian cancer', 'stage': 'I'}, 'GSM1922718': {'status': 'P72R', 'specimen': 'patient#8', 'tissue': 'ovary', 'treatment': 'ReACp53', 'type': 'endometrioid ovarian cancer', 'stage': 'I'}, 'GSM2374319': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1922711': {'status': 'R248Q', 'tissue': 'ovary', 'treatment': 'vehicle', 'line': 'OVCAR3', 'type': 'ovarian cancer', 'stage': 'N/A'}, 'GSM1922710': {'status': 'R248Q', 'tissue': 'ovary', 'treatment': 'vehicle', 'line': 'OVCAR3', 'type': 'ovarian cancer', 'stage': 'N/A'}, 'GSM1922713': {'status': 'R248Q', 'tissue': 'ovary', 'treatment': 'ReACp53', 'line': 'OVCAR3', 'type': 'ovarian cancer', 'stage': 'N/A'}, 'GSM1922712': {'status': 'R248Q', 'tissue': 'ovary', 'treatment': 'ReACp53', 'line': 'OVCAR3', 'type': 'ovarian cancer', 'stage': 'N/A'}, 'GSM1656065': {'patient': '7', 'group': 'PN', 'gender': 'male'}, 'GSM1922714': {'status': 'R248Q', 'tissue': 'ovary', 'treatment': 'ReACp53', 'line': 'OVCAR3', 'type': 'ovarian cancer', 'stage': 'N/A'}, 'GSM1922717': {'status': 'P72R', 'specimen': 'patient#8', 'tissue': 'ovary', 'treatment': 'vehicle', 'type': 'endometrioid ovarian cancer', 'stage': 'I'}, 'GSM1922716': {'status': 'P72R', 'specimen': 'patient#8', 'tissue': 'ovary', 'treatment': 'vehicle', 'type': 'endometrioid ovarian cancer', 'stage': 'I'}, 'GSM2047701': {'well': 'H04', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2712718': {'condition': 'latent TB infection'}, 'GSM1955725': {'a': '67595', 'cd38': '109', 'cd49f': '342', 'w': '69690', 'h': '63566', 'lin': '1032', 'cd34': '13070', 'cd90': '3016', 'cd7': '-43', 'cd10': '1115', 'time': '6906', 'cd135': '3335', 'cd45ra': '469'}, 'GSM2720330': {'passages': 'p5', 'type': 'WAPC', 'treatment': 'tunicamycin'}, 'GSM2720331': {'passages': 'p5', 'type': 'WAPC', 'treatment': 'tunicamycin'}, 'GSM2581195': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581194': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581193': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581192': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581191': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581190': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2720338': {'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM3594688': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2581199': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581198': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM759885': {'tissue': 'brain'}, 'GSM759887': {'tissue': 'liver'}, 'GSM759886': {'tissue': 'testes'}, 'GSM759889': {'tissue': 'placenta'}, 'GSM759888': {'line': 'HeLa'}, 'GSM2787553': {'type': 'DM1'}, 'GSM2597199': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2287169': {'gender': 'male', 'type': 'Single Cell'}, 'GSM3594686': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2287168': {'gender': 'male', 'type': 'Single Cell'}, 'GSM3594687': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM1359823': {'expression': 'no', 'treatment': 'TGF-beta', 'histology': 'lung adenocarcinoma'}, 'GSM1359822': {'expression': 'exogenous expression', 'treatment': 'none', 'histology': 'lung adenocarcinoma'}, 'GSM1359821': {'expression': 'no', 'treatment': 'none', 'histology': 'lung adenocarcinoma'}, 'GSM1359824': {'expression': 'exogenous expression', 'treatment': 'TGF-beta', 'histology': 'lung adenocarcinoma'}, 'GSM2287165': {'gender': 'male', 'type': 'Single Cell'}, 'GSM3594682': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM1633691': {'type': 'Human Kupffer cells', 'treatment': 'Treatment with BxPC-3 exosomes'}, 'GSM2787554': {'type': 'DM1'}, 'GSM2287167': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287166': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287161': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287160': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2195105': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195104': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195107': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195101': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195100': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195102': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2287162': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2195109': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2392320': {'line': 'H1 stem cell line', 'multiplex': '6 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM3190509': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'Yes', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.838017'}, 'GSM3190508': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.085868'}, 'GSM1620653': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620652': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620651': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620650': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620657': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620656': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620655': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620654': {'type': 'MCF10a human breast cancer cells'}, 'GSM2536951': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'wild type'}, 'GSM2536950': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'DNMT3A mutated'}, 'GSM2536953': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'DNMT3A mutated'}, 'GSM1620658': {'type': 'MCF10a human breast cancer cells'}, 'GSM2151862': {'tissue': 'stem cells', 'passage': '51'}, 'GSM2536954': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'DNMT3A mutated'}, 'GSM2151860': {'tissue': 'stem cells', 'passage': '51'}, 'GSM2151861': {'tissue': 'stem cells', 'passage': '51'}, 'GSM1395888': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM2197433': {'tissue': 'bone marrow', 'type': 'bone marrow plasma cells', 'markers': 'CD19+ CD138+'}, 'GSM2575087': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '03h'}, 'GSM2082836': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2082834': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2082835': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2082832': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2082833': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2082830': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2082831': {'line': 'HEK293T', 'type': 'pool-and-split averaged single cell'}, 'GSM2543996': {'library_id': 'lib8302', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2630193': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405844'}, 'GSM1410968': {'ercc_mix': '1', 'donor': 'AS070808-M59', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Vitamin-D'}, 'GSM1410969': {'ercc_mix': '1', 'donor': 'N080910-F16', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1963749': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963748': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1862191': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shSmad3', 'treatment': 'untreated'}, 'GSM1963743': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2630195': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405846'}, 'GSM1963745': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963744': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963747': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963746': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM936077': {'treatment': '4SU+6SG labeling and no UV', 'purification': 'oligo(dT)'}, 'GSM936076': {'treatment': 'no treatment (mRNA)', 'purification': 'oligo(dT)'}, 'GSM1559439': {'ir': '0.504286434694907', 'weight': 'non-obese', 'gender': 'male', 'age': '55', 'bmi': '23.7', 'disease': 'ngt', 'l': '0.06', 'h': '0', 'id': '34a'}, 'GSM936079': {'treatment': '4SU+6SG labeling and UV', 'purification': 'oligo(dT)'}, 'GSM936078': {'treatment': '4SU+6SG labeling and biotin-purified', 'purification': 'oligo(dT)'}, 'GSM2170472': {'stage': 'Definitive endoderm 1'}, 'GSM2199519': {'age': '47', 'tissue': 'Liver', 'bmi': '41.2'}, 'GSM2575084': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 2', 'point': '18h'}, 'GSM2199512': {'age': '39', 'tissue': 'Liver', 'bmi': '45.4'}, 'GSM2089921': {'derivative': 'brain', 'line': 'MDA231-BrM2', 'type': 'breast cancer cell line', 'coculture': 'with Astrocytes'}, 'GSM2089920': {'derivative': 'brain', 'line': 'MDA231-BrM2', 'type': 'breast cancer cell line', 'coculture': 'with Astrocytes'}, 'GSM2089922': {'derivative': 'brain', 'line': 'MDA231-BrM2', 'type': 'breast cancer cell line', 'coculture': 'with Astrocytes'}, 'GSM2199510': {'age': '57', 'tissue': 'Liver', 'bmi': '40.7'}, 'GSM1940183': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM2199511': {'age': '49', 'tissue': 'Liver', 'bmi': '42.4'}, 'GSM898058': {'line': 'OCI-LY1', 'antibody': 'H3K27Ac', 'transfection': 'siBCL6 treated'}, 'GSM1965129': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965128': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM985136': {'line': 'HeLa', 'antibody': 'none', 'agent': '25mM sodium bicarbonate'}, 'GSM898059': {'line': 'OCI-LY1', 'antibody': 'H3K27Ac', 'transfection': 'siNT treated'}, 'GSM985137': {'line': 'HeLa', 'antibody': 'none', 'agent': '3mM sodium bicarbonate'}, 'GSM1173236': {'state': 'esophageal adenocarcinogenesis', 'tissue': 'snap frozen tissue of esophageal adenocarcinoma cells'}, 'GSM1173237': {'state': 'esophageal adenocarcinogenesis', 'tissue': 'snap frozen tissue of normal esophagus'}, 'GSM1173238': {'state': 'esophageal adenocarcinogenesis', 'tissue': 'snap frozen tissue of Barrettâ\\x80\\x99s esophagus'}, 'GSM985134': {'line': 'HeLa', 'antibody': 'H4K16ac active motif (39167)', 'agent': '25mM sodium bicarbonate'}, 'GSM3594358': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1965124': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1872829': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872828': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM985135': {'line': 'HeLa', 'antibody': 'H4K16ac active motif (39167)', 'agent': '3mM sodium bicarbonate'}, 'GSM2896229': {'tissue': 'liver', 'type': 'HepG2-NTCP cells', 'genotype': 'wild type'}, 'GSM1256454': {'line': 'MDA', 'type': 'breast cancer cells', 'variation': 'Control'}, 'GSM1256455': {'line': 'MDA', 'type': 'breast cancer cells', 'variation': 'OVOL1_overexpressed'}, 'GSM2559635': {'line': 'CWR-22Rv1', 'treatment': 'SGRM - CORT108297 at 2 hours'}, 'GSM2559634': {'line': 'CWR-22Rv1', 'treatment': 'Dexamethasone (MP Biomedicals) at 6 hours'}, 'GSM2559630': {'line': 'CWR-22Rv1', 'treatment': 'Vehicle'}, 'GSM2151051': {'status': 'WIBR #38', 'type': 'Embryonic stem cells'}, 'GSM2151050': {'status': 'WIBR #22', 'type': 'Embryonic stem cells'}, 'GSM2362599': {'line': 'HEK293'}, 'GSM2431618': {'number': '2_19', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D1'}, 'GSM2431619': {'number': '2_10', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D1', 'concentration': '10μM'}, 'GSM2431610': {'number': '2_14', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_24h', 'donor': 'D1', 'concentration': '10μM'}, 'GSM2431611': {'number': '2_13', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D1'}, 'GSM2431612': {'number': '2_3', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D1', 'concentration': '100ng/ml'}, 'GSM2431613': {'number': '2_2', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_06h', 'donor': 'D1', 'concentration': '10μM'}, 'GSM2431614': {'number': '2_1', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D1'}, 'GSM2431615': {'number': '2_22', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D1', 'concentration': '10μM'}, 'GSM2431616': {'number': '2_21', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D1', 'concentration': '100ng/ml'}, 'GSM2431617': {'number': '2_20', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_06h', 'donor': 'D3', 'concentration': '10μM'}, 'GSM2630224': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405842'}, 'GSM2362596': {'line': 'HEK293'}, 'GSM3454788': {'line': 'MCF10A', 'agent': 'control', 'time': 'control'}, 'GSM3454789': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '12 hours'}, 'GSM3454786': {'line': 'MCF10A', 'agent': 'control', 'time': 'control'}, 'GSM3454787': {'line': 'MCF10A', 'agent': 'control', 'time': 'control'}, 'GSM2630226': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405844'}, 'GSM2630227': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405845'}, 'GSM2630220': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405838'}, 'GSM2630221': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405839'}, 'GSM1915590': {'donorid': '5483', 'type': 'primary human blood cell from fresh sample'}, 'GSM2362597': {'line': 'HEK293'}, 'GSM2630222': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405840'}, 'v': {'code': '200'}, 'GSM2630223': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405841'}, 'GSM2171217': {'status': 'Smoker', 'gender': 'M', 'age': '43', 'years': '50', 'race': 'Caucasian', 'histology': 'NSCLC, Large cell carcinoma', 'treatment': 'Parental cells treated with DMSO'}, 'GSM2171216': {'status': 'Smoker', 'gender': 'M', 'age': '43', 'years': '50', 'race': 'Caucasian', 'histology': 'NSCLC, Large cell carcinoma', 'treatment': 'Parental cells treated with DMSO'}, 'GSM2171215': {'tissue': 'bone marrow', 'markers': 'CD19- CD138+'}, 'GSM2171214': {'tissue': 'bone marrow', 'markers': 'CD19- CD138+'}, 'GSM2501470': {'time': '24h', 'treatment': 'DMSO (neg control)', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2501471': {'time': '8h', 'treatment': 'SAHA', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2501472': {'time': '24h', 'treatment': 'SAHA', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2501473': {'time': '8h', 'treatment': 'disulfiram', 'infection': 'mock', 'Stage': 'reactivation'}, 'GSM2348565': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2171219': {'status': 'Smoker', 'gender': 'M', 'age': '43', 'years': '50', 'race': 'Caucasian', 'histology': 'NSCLC, Large cell carcinoma', 'treatment': 'Parental cells treated with GSKJ4'}, 'GSM2171218': {'status': 'Smoker', 'gender': 'M', 'age': '43', 'years': '50', 'race': 'Caucasian', 'histology': 'NSCLC, Large cell carcinoma', 'treatment': 'Parental cells treated with GSKJ4'}, 'GSM2333012': {'origin': 'breast (tumor)', 'subtype': 'IDC (HER2+)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM1495944': {'line': 'SF210', 'vector': 'GFP', 'induction': 'doxycycline'}, 'GSM1495941': {'line': 'SF210', 'vector': 'KLHL9', 'induction': 'no doxycycline'}, 'GSM1495940': {'line': 'SF210', 'vector': 'KLHL9', 'induction': 'no doxycycline'}, 'GSM1495943': {'line': 'SF210', 'vector': 'GFP', 'induction': 'doxycycline'}, 'GSM2333014': {'origin': 'breast (tumor)', 'subtype': 'IDC (TN)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2085693': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2358069': {'tissue': 'fetal cortex', 'treatment': 'SOX5 Overexpression', 'construct': 'pLVU-SOX5-GFP'}, 'GSM2358068': {'tissue': 'fetal cortex', 'treatment': 'SOX5 Overexpression', 'construct': 'pLVU-SOX5-GFP'}, 'GSM2348561': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2085692': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2358063': {'tissue': 'fetal cortex', 'treatment': 'GFP Overexpression', 'construct': 'pLVU-GFP'}, 'GSM2358062': {'tissue': 'fetal cortex', 'treatment': 'GFP Overexpression', 'construct': 'pLVU-GFP'}, 'GSM2348560': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2358067': {'tissue': 'fetal cortex', 'treatment': 'GFP Overexpression', 'construct': 'pLVU-GFP'}, 'GSM2358066': {'tissue': 'fetal cortex', 'treatment': 'GFP Overexpression', 'construct': 'pLVU-GFP'}, 'GSM2358065': {'tissue': 'fetal cortex', 'treatment': 'GFP Overexpression', 'construct': 'pLVU-GFP'}, 'GSM2358064': {'tissue': 'fetal cortex', 'treatment': 'GFP Overexpression', 'construct': 'pLVU-GFP'}, 'GSM2204160': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204161': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2455849': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455848': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2204164': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204165': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2204166': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204167': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2455843': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455842': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455841': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455840': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455847': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455846': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455845': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455844': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2413470': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413471': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1533221': {'enrichment': 'SSEA3+', 'treatment': 'DOX days 0-10'}, 'GSM1533220': {'enrichment': 'SSEA3+', 'treatment': 'DOX days 0-10'}, 'GSM2413474': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413475': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1533225': {'enrichment': 'SSEA3+', 'treatment': 'DOX days 0-14'}, 'GSM2413477': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413478': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413479': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1533229': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-20'}, 'GSM1533228': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-20'}, 'GSM2348569': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1567940': {'weeks': '10.4'}, 'GSM2784466': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '24h'}, 'GSM2784467': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '24h'}, 'GSM2784464': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '24h'}, 'GSM2784465': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '24h'}, 'GSM2784462': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '24h'}, 'GSM2784463': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '24h'}, 'GSM2784460': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '24h'}, 'GSM2784461': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '24h'}, 'GSM2784468': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '24h'}, 'GSM2784469': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '24h'}, 'GSM2840539': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2084418': {'induction': 'DMSO/ATRA', 'time': '96 hr'}, 'GSM2084419': {'induction': 'DMSO/ATRA', 'time': '120 hr'}, 'GSM2084416': {'induction': 'DMSO/ATRA', 'time': '96 hr'}, 'GSM2084417': {'induction': 'DMSO/ATRA', 'time': '96 hr'}, 'GSM2084414': {'induction': 'DMSO/ATRA', 'time': '48 hr'}, 'GSM2084415': {'induction': 'DMSO/ATRA', 'time': '48 hr'}, 'GSM2084412': {'induction': 'DMSO/ATRA', 'time': '24 hr'}, 'GSM2084413': {'induction': 'DMSO/ATRA', 'time': '48 hr'}, 'GSM2084410': {'induction': 'DMSO/ATRA', 'time': '24 hr'}, 'GSM2084411': {'induction': 'DMSO/ATRA', 'time': '24 hr'}, 'GSM1681939': {'gender': 'male', 'age': '33', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681938': {'gender': 'male', 'age': '59', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681933': {'gender': 'male', 'age': '48', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681932': {'gender': 'male', 'age': '44', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681931': {'gender': 'male', 'age': '27', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681930': {'gender': 'male', 'age': '67', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681937': {'gender': 'male', 'age': '40', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681936': {'gender': 'female', 'age': '39', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681935': {'gender': 'male', 'age': '55', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681934': {'gender': 'male', 'age': '53', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1540493': {'state': 'Lyme disease', 'individual': 'patient 01-28', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM2248186': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2565218': {'construction': 'PLATE-Seq', 'drug': 'Exemestane'}, 'GSM1977476': {'line': 'AIRE-Tet, Tet-On Advanced HEK293 (Clontech) with inducible AIRE expression', 'expression': 'Uninduced', 'treatment': 'Treated'}, 'GSM1977477': {'line': 'AIRE-Tet, Tet-On Advanced HEK293 (Clontech) with inducible AIRE expression', 'expression': 'Uninduced', 'treatment': 'Untreated'}, 'GSM1977474': {'line': 'AIRE-Tet, Tet-On Advanced HEK293 (Clontech) with inducible AIRE expression', 'expression': 'Induced', 'treatment': 'Treated'}, 'GSM1977475': {'line': 'AIRE-Tet, Tet-On Advanced HEK293 (Clontech) with inducible AIRE expression', 'expression': 'Induced', 'treatment': 'Untreated'}, 'GSM1646969': {'illumina_index': '2', 'point': '18', 'batch': '2', 'agent': 'BCG', 'rin': '10', 'individual': 'M372'}, 'GSM1646968': {'illumina_index': '19', 'point': '18', 'batch': '1', 'agent': 'GC', 'rin': '9.6', 'individual': 'M377'}, 'GSM1646965': {'illumina_index': '15', 'point': '18', 'batch': '1', 'agent': 'Yers', 'rin': '9.9', 'individual': 'M377'}, 'GSM1646964': {'illumina_index': '14', 'point': '48', 'batch': '1', 'agent': 'BCG', 'rin': '9.5', 'individual': 'M377'}, 'GSM1646967': {'illumina_index': '18', 'point': '4', 'batch': '1', 'agent': 'Rv', 'rin': '7.2', 'individual': 'M374'}, 'GSM1646966': {'illumina_index': '16', 'point': '4', 'batch': '1', 'agent': 'Rv', 'rin': '9.7', 'individual': 'M376'}, 'GSM1646961': {'illumina_index': '7', 'point': '4', 'batch': '1', 'agent': 'none', 'rin': '8.8', 'individual': 'M375'}, 'GSM1646960': {'illumina_index': '6', 'point': '48', 'batch': '1', 'agent': 'BCG', 'rin': '8.8', 'individual': 'M374'}, 'GSM1646963': {'illumina_index': '13', 'point': '18', 'batch': '1', 'agent': 'Yers', 'rin': '9.9', 'individual': 'M373'}, 'GSM1646962': {'illumina_index': '12', 'point': '48', 'batch': '1', 'agent': 'Smeg', 'rin': '9.5', 'individual': 'M372'}, 'GSM1517654': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Control', 'time': '6hr'}, 'GSM1517655': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Control', 'time': '12hr'}, 'GSM1517656': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Control', 'time': '12hr'}, 'GSM1517657': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Afum', 'time': '2hr'}, 'GSM1517651': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Control', 'time': '2hr'}, 'GSM1517652': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Control', 'time': '2hr'}, 'GSM1517653': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Control', 'time': '6hr'}, 'GSM1517658': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Afum', 'time': '2hr'}, 'GSM1517659': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Afum', 'time': '6hr'}, 'GSM2511609': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM1965111': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1401720': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1465293': {'state': 'normal', 'tissue': 'Kidney tubules'}, 'GSM2563858': {'experiment': 'siPKN1/R1881', 'group': '4', 'condition': 'androgen'}, 'GSM2563859': {'experiment': 'DMSO/Vehicle', 'group': '5', 'condition': 'ETOH'}, 'GSM2563856': {'experiment': 'siPKN1/R1881', 'group': '4', 'condition': 'androgen'}, 'GSM2563857': {'experiment': 'siPKN1/R1881', 'group': '4', 'condition': 'androgen'}, 'GSM2563854': {'experiment': 'siPKN1/Vehicle', 'group': '3', 'condition': 'ETOH'}, 'GSM2563855': {'experiment': 'siPKN1/Vehicle', 'group': '3', 'condition': 'ETOH'}, 'GSM2563852': {'experiment': 'siCtrl/R1881', 'group': '2', 'condition': 'androgen'}, 'GSM2563853': {'experiment': 'siPKN1/Vehicle', 'group': '3', 'condition': 'ETOH'}, 'GSM2563850': {'experiment': 'siCtrl/R1881', 'group': '2', 'condition': 'androgen'}, 'GSM2563851': {'experiment': 'siCtrl/R1881', 'group': '2', 'condition': 'androgen'}, 'GSM2551408': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551409': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2565214': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2551404': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2551405': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551406': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551407': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551400': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2551401': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551402': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551403': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2041869': {'line': 'WTC11', 'treatment': '-', 'sgrna': 'None'}, 'GSM2565215': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2983904': {'status': 'IL10pos', 'donor': 'Donor1', 'type': 'Group 2 innate lymphoid cells (ILC2s)'}, 'GSM2048894': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2048895': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'APC-R1450'}, 'GSM1297635': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 3'}, 'GSM1105785': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2259808': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM1105787': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2616498': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM1105781': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105780': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105783': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105782': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2259801': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259800': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259803': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259802': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259805': {'isolation': 'Bulk', 'line': 'CFPAC-1', 'with': 'None', 'cells': '~10000'}, 'GSM2259804': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259807': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259806': {'isolation': 'Bulk', 'line': 'CFPAC-1', 'with': 'None', 'cells': '~10000'}, 'GSM2048899': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2565213': {'construction': 'PLATE-Seq', 'drug': 'Ponatinib (AP24534)'}, 'GSM2705297': {'pcr': 'Nextera', 'inactivation': 'NT buffer', 'batch': 'Nextera', 'date': '16.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': 'none'}, 'GSM2705294': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '16.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:5'}, 'GSM2705295': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '16.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:5'}, 'GSM2705292': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '15.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705293': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '16.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:5'}, 'GSM2705290': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '15.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705291': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '15.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705298': {'pcr': 'Nextera', 'inactivation': 'NT buffer', 'batch': 'Nextera', 'date': '16.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': 'none'}, 'GSM2705299': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '16.12.2016', 'input': '225 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM1401725': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM2480401': {'type': 'cell culture', 'tissue': 'Keratinocytes', 'patient': 'C030'}, 'GSM2480400': {'type': 'cell culture', 'tissue': 'Keratinocytes', 'patient': 'C025'}, 'GSM2616495': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM1297638': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 5'}, 'GSM2565211': {'construction': 'PLATE-Seq', 'drug': 'Raloxifene'}, 'GSM2630666': {'line': 'HCC1143', 'treatment': '1uM BEZ235'}, 'GSM2516922': {'death': '81', 'score': 'IV', 'post_mortem_interval': '3.75', 'caseid': '99-29', 'Sex': 'M', 'rin_score': '7.7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655496'}, 'GSM2516920': {'death': '82', 'score': 'VI', 'post_mortem_interval': '3', 'caseid': '09-39', 'Sex': 'M', 'rin_score': '6.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655461'}, 'GSM2516921': {'death': '88', 'score': 'VI', 'post_mortem_interval': '2.28', 'caseid': '11-21', 'Sex': 'F', 'rin_score': '7.2', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655459'}, 'GSM1401727': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM2107839': {'passages': '15-20', 'type': 'Hepatocellular carcinoma', 'treatment': 'Cells were treated for 24 hrs with 0.1% DMSO'}, 'GSM1553229': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553228': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM2792489': {'storage': '24-hour preserved blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 2'}, 'GSM2792488': {'storage': 'fresh blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 2'}, 'GSM2632239': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1553221': {'line': 'HEK293', 'treatment': 'DRB washout t=10min.'}, 'GSM1553220': {'line': 'HEK293', 'treatment': 'DRB (100 mM) 3hr'}, 'GSM1553223': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553222': {'line': 'HEK293', 'treatment': 'DRB washout t=20min.'}, 'GSM1553225': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553224': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553227': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553226': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM2948306': {'tissue': 'peripheral blood', 'type': 'B lymphoblast', 'treatment': 'control'}, 'GSM2176128': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176129': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176120': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176121': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176122': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176123': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176124': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176125': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176126': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176127': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM3190076': {'type': 'Follicular lymphoma', 'description': 'Human follicular lymphoma mixed with mouse cells'}, 'GSM3190075': {'type': 'B cells', 'description': 'normal B cells of human spleen mixed with mouse cells'}, 'GSM1234231': {'replicate': '2', 'line': 'MS1', 'antibody': 'H3K4me1'}, 'GSM2434071': {'line': 'MDA-MB-231', 'protocol': '41 kPa', 'point': '6 days'}, 'GSM2434070': {'line': 'MDA-MB-231', 'protocol': '8 kPa', 'point': '6 days'}, 'GSM1599192': {'line': 'CSC_shH1.0-1', 'treatment': 'NT (uninduced)'}, 'GSM2209494': {'line': 'HepG2 cells', 'tissue': 'Liver', 'treatment': 'Nup98 siRNA transfection'}, 'GSM3586469': {'origin': 'GCB', 'pfstt': '1088', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1235', 'cycles': '6', 'oscs': '0'}, 'GSM3586468': {'origin': 'GCB', 'pfstt': '191', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1467', 'cycles': '6', 'oscs': '0'}, 'GSM3586463': {'origin': 'ABC', 'pfstt': '559', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '867', 'cycles': '6', 'oscs': '0'}, 'GSM3586462': {'origin': 'ABC', 'pfstt': '226', 'pfscs': '1', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '310', 'cycles': '6', 'oscs': '1'}, 'GSM3586461': {'origin': 'GCB', 'pfstt': '902', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '912', 'cycles': '6', 'oscs': '0'}, 'GSM3586460': {'origin': 'GCB', 'pfstt': '1087', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1094', 'cycles': '6', 'oscs': '0'}, 'GSM3586467': {'origin': 'GCB', 'pfstt': '1121', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1514', 'cycles': '6', 'oscs': '0'}, 'GSM3586466': {'origin': 'GCB', 'pfstt': '1425', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1583', 'cycles': '6', 'oscs': '0'}, 'GSM3586465': {'origin': 'UNCLASSIFIED', 'pfstt': '209', 'pfscs': '1', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1634', 'cycles': '6', 'oscs': '0'}, 'GSM3586464': {'origin': 'GCB', 'pfstt': '1617', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1620', 'cycles': '6', 'oscs': '0'}, 'GSM2632396': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2048585': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2094789': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM digoxigenin for 72 hours'}, 'GSM2048586': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048587': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048580': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048581': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2454087': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454169': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454168': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454167': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454166': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2094788': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM digoxin for 72 hours'}, 'GSM2632391': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2209499': {'line': 'IMR90 cells', 'tissue': 'Lung fibroblast', 'treatment': 'Nup98 siRNA transfection'}, 'GSM2305817': {'tissue': 'colon'}, 'GSM2479779': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479778': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479777': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479776': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479775': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479774': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479773': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479772': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479771': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479770': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM1275174': {'type': 'B CD19 Lymphocytes', 'phenotype': 'Control'}, 'GSM1275175': {'type': 'B CD19 Lymphocytes', 'phenotype': 'Control'}, 'GSM1275176': {'type': 'B CD19 Lymphocytes', 'phenotype': 'House dust mite allergic'}, 'GSM2305810': {'tissue': 'colon'}, 'GSM1964910': {'line': 'breast cancer cell line MDA-MB-231', 'treatment': '5µM HPTB for 4 hours at 37°C'}, 'GSM1507270': {'resistant': 'Yes'}, 'GSM1275178': {'type': 'B CD19 Lymphocytes', 'phenotype': 'House dust mite allergic'}, 'GSM1829820': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'No doxycycline'}, 'GSM2571079': {'line': 'SERPINE2_enhancer_KO#2', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571078': {'line': 'SERPINE2_enhancer_KO#2', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1829824': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'Doxycycline was added day 11-14'}, 'GSM1829826': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'Doxycycline was added day 11-14'}, 'GSM2571073': {'line': 'SERPINE2_enhancer_KO#1', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571072': {'line': 'SERPINE2_enhancer_KO#1', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571071': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571070': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571077': {'line': 'SERPINE2_enhancer_KO#2', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571076': {'line': 'SERPINE2_enhancer_KO#2', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571075': {'line': 'SERPINE2_enhancer_KO#1', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571074': {'line': 'SERPINE2_enhancer_KO#1', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1278465': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278464': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278467': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278466': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278461': {'state': 'sALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278460': {'state': 'sALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278463': {'state': 'sALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278462': {'state': 'fALS', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278469': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278468': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM2305812': {'tissue': 'colon'}, 'GSM1384775': {'type': 'Cord blood CD34+ cells', 'agent': 'SR1 [500nM]', 'time': '16 hour culture'}, 'GSM1113372': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 5 post-vaccine'}, 'GSM1384774': {'type': 'Cord blood CD34+ cells', 'agent': 'uncultured'}, 'GSM1162732': {'preparation': 'NuGEN Ovation', 'involution': 'Yes', 'type': 'human mammary epithelial cell'}, 'GSM1162731': {'preparation': 'NuGEN Ovation', 'involution': 'No', 'type': 'human mammary epithelial cell'}, 'GSM1162730': {'preparation': 'NuGEN Ovation', 'involution': 'No', 'type': 'human mammary epithelial cell'}, 'GSM2840538': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2481527': {'line': 'HeLa', 'phenotype': 'DDX39B DDX_3 siRNA Knockdown'}, 'GSM2481526': {'line': 'HeLa', 'phenotype': 'DDX39B Control'}, 'GSM2481529': {'line': 'HeLa', 'phenotype': 'DDX39B Control'}, 'GSM2481528': {'line': 'HeLa', 'phenotype': 'DDX39B DDX_4 siRNA Knockdown'}, 'GSM2102552': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102553': {'information': 'Control', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102550': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102551': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102556': {'information': 'Control', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102557': {'information': 'Control', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102554': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102555': {'information': 'Control', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2102558': {'information': 'Control', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2102559': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2125119': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2125118': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-PR (inhouse KD68)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2095414': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 5'}, 'GSM2095415': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 5'}, 'GSM2095416': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 5'}, 'GSM2095417': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 5'}, 'GSM2095410': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM1540538': {'state': 'Lyme disease', 'individual': 'patient 01-51', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM2095412': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 0'}, 'GSM2095413': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 5'}, 'GSM1540535': {'state': 'Lyme disease', 'individual': 'patient 01-48', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540534': {'state': 'Lyme disease', 'individual': 'patient 01-47', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540537': {'state': 'Lyme disease', 'individual': 'patient 01-50', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540536': {'state': 'Lyme disease', 'individual': 'patient 01-49', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM2095418': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 5'}, 'GSM1540530': {'state': 'Lyme disease', 'individual': 'patient 01-40', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540533': {'state': 'Lyme disease', 'individual': 'patient 01-46', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540532': {'state': 'Lyme disease', 'individual': 'patient 01-45', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM3397823': {'status': 'Deficient', 'type': 'Cancer cells'}, 'GSM3397822': {'status': 'Deficient', 'type': 'Cancer cells'}, 'GSM2714520': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714521': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM3397827': {'status': 'ectopic expression', 'type': 'Cancer cells'}, 'GSM3397826': {'status': 'ectopic expression', 'type': 'Cancer cells'}, 'GSM3397825': {'status': 'ectopic expression', 'type': 'Cancer cells'}, 'GSM3397824': {'status': 'Deficient', 'type': 'Cancer cells'}, 'GSM1380856': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2B'}, 'GSM921049': {'barcode': 'TGCAAT', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd3'}, 'GSM2548608': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': 'Unstimulated'}, 'GSM2548609': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': 'Unstimulated'}, 'GSM2125116': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-PR (inhouse KD68)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2632689': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2548606': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': 'Unstimulated'}, 'GSM2548607': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': 'Unstimulated'}, 'GSM2303603': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEL337'}, 'GSM2303602': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303601': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303600': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEL337'}, 'GSM2303607': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303606': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303605': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACEL337'}, 'GSM2303604': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2560975': {'line': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2303609': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303608': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2632680': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2648909': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM Aldosterone', 'time': '24 hours'}, 'GSM2107370': {'line': 'IMR5-75', 'type': 'neuroblastoma'}, 'GSM1468495': {'state': 'Non-proliferating, differentiated for 9 days', 'passages': 'Cells in passage 5-7', 'type': 'Pre-adipocytes', 'treatment': 'adipogenic stimulation', 'time': '9 days after adipogenic stimulation (Day 9)'}, 'GSM1468494': {'state': 'Non-proliferating, differentiated for 3 days', 'passages': 'Cells in passage 5-7', 'type': 'Pre-adipocytes', 'treatment': 'adipogenic stimulation', 'time': '3 days after adipogenic stimulation (Day 3)'}, 'GSM1468493': {'state': 'Non-proliferating (confluent), undifferentiated', 'passages': 'Cells in passage 5-7', 'type': 'Pre-adipocytes', 'treatment': 'adipogenic stimulation', 'time': 'The day of adipogenic stimulation (Day 0)'}, 'GSM1468492': {'state': 'Proliferating, undifferentiated', 'passages': 'Cells in passage 5-7', 'type': 'Pre-adipocytes', 'treatment': 'control', 'time': '2 days before adipogenic stimulation (Day -2)'}, 'GSM1939328': {'type': 'LCLs B-cells'}, 'GSM1939329': {'type': 'LCLs B-cells'}, 'GSM1850339': {'line': 'Monomac', 'kd': 'lentivirus RET-KD'}, 'GSM1850338': {'line': 'Monomac', 'kd': 'lentivirus scramble'}, 'GSM1850335': {'line': 'Thp1', 'kd': 'lentivirus RET-KD'}, 'GSM1850334': {'line': 'Thp1', 'kd': 'lentivirus scramble'}, 'GSM1850337': {'line': 'Kg1a', 'kd': 'lentivirus RET-KD'}, 'GSM1850336': {'line': 'Kg1a', 'kd': 'lentivirus scramble'}, 'GSM1939326': {'type': 'LCLs B-cells'}, 'GSM1939327': {'type': 'LCLs B-cells'}, 'GSM2543186': {'line': 'U2OS', 'variation': 'ZBTB48 KO'}, 'GSM2341168': {'state': 'endometriosis', 'individual': 'patient 2', 'type': 'cell culture of endometriotic stromal cells', 'sites': 'Ectopic endometriotic stroma : ovary'}, 'GSM2543184': {'line': 'U2OS', 'variation': 'ZBTB48 KO'}, 'GSM2543185': {'line': 'U2OS', 'variation': 'ZBTB48 KO'}, 'GSM2543182': {'line': 'U2OS', 'variation': 'ZBTB48 KO'}, 'GSM2543183': {'line': 'U2OS', 'variation': 'ZBTB48 KO'}, 'GSM2543180': {'line': 'U2OS', 'variation': 'WT'}, 'GSM2543181': {'line': 'U2OS', 'variation': 'WT'}, 'GSM2572753': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '11', 'day': '3'}, 'GSM2572752': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '11', 'day': '1'}, 'GSM2572751': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '11', 'day': '0'}, 'GSM2572750': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '13', 'day': '3'}, 'GSM2572757': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '3', 'day': '3'}, 'GSM2572756': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '3', 'day': '1'}, 'GSM2572755': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '3', 'day': '0'}, 'GSM2572754': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '11', 'day': '7'}, 'GSM2142502': {'gender': 'female', 'age': '77', 'who': '1', 'dead': '1', 'date': '2008-06-12', 'histology': '1', 'tnm': '4', 'smoking': '1'}, 'GSM1410588': {'gene': 'SAMHD1 D207N', 'type': 'U937', 'infection': '1h'}, 'GSM1410589': {'gene': 'SAMHD1 D207N', 'type': 'U937', 'infection': '3h'}, 'GSM2228777': {'donor': '10', 'treatment': 'LPS', 'infection': '6'}, 'GSM2228776': {'donor': '10', 'treatment': 'mock', 'infection': '6'}, 'GSM2228775': {'donor': '9', 'treatment': 'RESTV/LPS', 'infection': '24'}, 'GSM2228774': {'donor': '9', 'treatment': 'EBOV/LPS', 'infection': '24'}, 'GSM2228773': {'donor': '9', 'treatment': 'RESTV', 'infection': '48'}, 'GSM2228772': {'donor': '9', 'treatment': 'EBOV', 'infection': '48'}, 'GSM2228771': {'donor': '9', 'treatment': 'LPS', 'infection': '48'}, 'GSM2228770': {'donor': '9', 'treatment': 'mock', 'infection': '48'}, 'GSM2339462': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': '-'}, 'GSM2339463': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339460': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339461': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': '-'}, 'GSM2339466': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339467': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2228779': {'donor': '10', 'treatment': 'RESTV', 'infection': '6'}, 'GSM2339465': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': '-'}, 'GSM1410585': {'gene': 'SAMHD1 Wild Type', 'type': 'U937', 'infection': '1h'}, 'GSM1866138': {'tissue': 'Gliobmastoma biopsy'}, 'GSM2449402': {'gene': 'human MyoD', 'type': 'Fibroblast cells'}, 'GSM2449403': {'gene': 'human MyoD', 'type': 'Fibroblast cells'}, 'GSM2449400': {'gene': 'n/a', 'type': 'Cultured Fibroblast cells'}, 'GSM2449401': {'gene': 'n/a', 'type': 'Cultured Fibroblast cells'}, 'GSM2449406': {'gene': 'n/a', 'type': 'cultured Myoblast cells'}, 'GSM2449407': {'gene': 'n/a', 'type': 'cultured Myoblast cells'}, 'GSM2449404': {'gene': 'human MyoD', 'type': 'Fibroblast cells'}, 'GSM2449405': {'gene': 'n/a', 'type': 'cultured Myoblast cells'}, 'GSM2449408': {'gene': 'n/a', 'type': 'cultured Myoblast cells'}, 'GSM1363029': {'line': 'VCaP', 'type': 'Prostate cancer cell line', 'passage': '40'}, 'GSM2108549': {'stages': 'mononucleated cell nucleus'}, 'GSM2108548': {'stages': 'mononucleated cell nucleus'}, 'GSM2817755': {'type': 'PANC-1', 'treatment': 'gemcitabine 100nM 24h'}, 'GSM2817754': {'type': 'PANC-1', 'treatment': 'gemcitabine 100nM 24h'}, 'GSM2817757': {'type': 'PANC-1', 'treatment': 'gemcitabine 10uM 24h'}, 'GSM2817756': {'type': 'PANC-1', 'treatment': 'gemcitabine 100nM 24h'}, 'GSM2817751': {'type': 'MIA PACA-2', 'treatment': 'untreated'}, 'GSM2817750': {'type': 'MIA PACA-2', 'treatment': 'untreated'}, 'GSM2817753': {'type': 'PANC-1', 'treatment': 'gemcitabine 100nM 24h'}, 'GSM2817752': {'type': 'MIA PACA-2', 'treatment': 'untreated'}, 'GSM2817759': {'type': 'PANC-1', 'treatment': 'gemcitabine 10uM 24h'}, 'GSM2817758': {'type': 'PANC-1', 'treatment': 'gemcitabine 10uM 24h'}, 'GSM2361931': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2153165': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153164': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153167': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153166': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153161': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153160': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153163': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153162': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2129731': {'line': 'RMS13', 'provider': 'ATCC'}, 'GSM2129730': {'line': 'RMS13', 'provider': 'ATCC'}, 'GSM2129733': {'line': 'RMS13'}, 'GSM2129732': {'line': 'RMS13'}, 'GSM2153169': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153168': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2204218': {'status': 'ex vivo; unstimulated', 'type': 'LN_Tfh', 'phenotype': 'Tfh(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1+CD57+)'}, 'GSM2735311': {'cohort': 'Paired', 'tils': '1', 'subtype': 'I', 'burden': '24', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735312': {'cohort': 'Paired', 'tils': '20', 'subtype': 'III', 'burden': '15', 'morphology': 'undifferentiated, spindle', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735313': {'cohort': 'Unpaired', 'tils': 'Not evaluated', 'subtype': 'II', 'burden': '262', 'morphology': 'N/A', 'event': 'Last follow-up', 'stage': 'I'}, 'GSM2735314': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '248', 'morphology': 'mixed (round & spindle)', 'event': 'Disease progression', 'stage': 'III'}, 'GSM2602070': {'type': 'Acute myeloid leukemia', 'name': 'Rabbit polyclonal anti-N6-methyladenosine (m6A) (Abcam #ab151230)', 'replicates': '3', 'barcodes': 'NNNTTAGNN'}, 'GSM2602071': {'type': 'Acute myeloid leukemia', 'name': 'Rabbit polyclonal anti-N6-methyladenosine (m6A) (Abcam #ab151230)', 'replicates': '3', 'barcodes': 'NNNGTAANN'}, 'GSM2602072': {'type': 'Acute myeloid leukemia', 'name': 'Rabbit polyclonal anti-N6-methyladenosine (m6A) (Abcam #ab151230)', 'replicates': '3', 'barcodes': 'NNNTGGCNN'}, 'GSM2602073': {'shRNA': 'METTL3 shRNA #9', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602074': {'shRNA': 'METTL3 shRNA #9', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602075': {'shRNA': 'METTL3 shRNA #9', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602076': {'shRNA': 'Control shRNA', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602077': {'shRNA': 'Control shRNA', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602078': {'shRNA': 'Control shRNA', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602079': {'shRNA': 'METTL3 shRNA #12', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM874645': {'antibody': 'None', 'line': 'A549', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'Ribosomal RNA-depleted total RNA'}, 'GSM874643': {'antibody': 'None', 'line': 'A549', 'with': 'none (uninfected)', 'infection': '0h', 'type': 'Ribosomal RNA-depleted total RNA'}, 'GSM874642': {'vendor': 'Sigma', 'with': 'none (uninfected)', 'infection': '0h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-Flag'}, 'GSM874641': {'vendor': 'Sigma', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-Flag'}, 'GSM874640': {'vendor': 'Sigma', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-Flag'}, 'GSM3229550': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM1438944': {'with': '100 nM 17β-estradiol + 25 ng/mL TNFα for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438945': {'with': '100 nM 17β-estradiol + 25 ng/mL TNFα for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1097880': {'type': 'CD34+ cells', 'antibody': 'FLI1 (Abcam ab15289), GR46872-1'}, 'GSM1097881': {'type': 'CD34+ cells', 'antibody': 'SCL (Santa Cruz, sc-12984X), B2312'}, 'GSM1438940': {'with': '25 ng/mL TNFα for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438941': {'with': '25 ng/mL TNFα for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438942': {'with': '25 ng/mL TNFα for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438943': {'with': '100 nM 17β-estradiol + 25 ng/mL TNFα for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1097888': {'subtype': 'small RNA', 'type': 'CD34+ cells'}, 'GSM1697196': {'number': '59'}, 'GSM1697197': {'number': '89'}, 'GSM1697194': {'number': '20'}, 'GSM1697195': {'number': '43'}, 'GSM1697192': {'number': '18'}, 'GSM1697193': {'number': '77'}, 'GSM1697190': {'number': '56'}, 'GSM1697191': {'number': '39'}, 'GSM1833000': {'tissue': 'bone marrow', 'diagnosis': 'Newly diagnosed T-ALL patient'}, 'GSM1697198': {'number': '74'}, 'GSM1697199': {'number': '92'}, 'GSM2214002': {'gender': 'M', 'tissue': 'lung'}, 'GSM2214003': {'gender': 'M', 'tissue': 'lung'}, 'GSM2214000': {'gender': 'M', 'tissue': 'lung'}, 'GSM2214001': {'gender': 'M', 'tissue': 'lung'}, 'GSM2214004': {'gender': 'F', 'tissue': 'lung'}, 'GSM2251929': {'type': 'adult astrocytes', 'agent': 'small molecules', 'time': '2 days'}, 'GSM1820985': {'line': '293TB4Nf', 'type': '293Trex (cells originating from embryonic kidney)', 'treatment': '2h -incubation time period with Tetracycline (final concentration of 1ug/ml).'}, 'GSM1820984': {'line': '293TB4Nf', 'type': '293Trex (cells originating from embryonic kidney)', 'treatment': 'No Tetracycline was added to the media'}, 'GSM1820987': {'line': '293TB4Nf', 'type': '293Trex (cells originating from embryonic kidney)', 'treatment': '7h -incubation time period with Tetracycline (final concentration of 1ug/ml).'}, 'GSM1820986': {'line': '293TB4Nf', 'type': '293Trex (cells originating from embryonic kidney)', 'treatment': '3h -incubation time period with Tetracycline (final concentration of 1ug/ml).'}, 'GSM1820981': {'line': 'TC-797 (Toretsky et al. 2003)', 'type': 'NMC', 'treatment': '1h-incubation time period with JQ1 ( final concentration of 500 nM)'}, 'GSM1820980': {'line': 'TC-797 (Toretsky et al. 2003)', 'type': 'NMC', 'treatment': 'JQ1 was not added to the medium'}, 'GSM1820983': {'line': 'TC-797 (Toretsky et al. 2003)', 'type': 'NMC', 'treatment': '4h - incubation time period with JQ1 ( final concentration of 500 nM)'}, 'GSM1820982': {'line': 'TC-797 (Toretsky et al. 2003)', 'type': 'NMC', 'treatment': '2h30min-incubation time period with JQ1 ( final concentration of 500 nM)'}, 'GSM1820989': {'line': '1015 (Grayson et al. 2014)', 'type': 'NMC', 'treatment': '4h - incubation time period with JQ1 ( final concentration of 2 uM)'}, 'GSM1820988': {'line': '1015 (Grayson et al. 2014)', 'type': 'NMC', 'treatment': 'JQ1 was not added to the medium'}, 'GSM2858875': {'line': 'H9', 'type': 'ES-derived oligodendrocytes'}, 'GSM2858877': {'line': 'H9', 'type': 'ES-derived oligodendrocytes'}, 'GSM2858876': {'line': 'H9', 'type': 'ES-derived oligodendrocytes'}, 'GSM2858879': {'line': 'ChiPSC6b', 'type': 'ES-derived oligodendrocytes'}, 'GSM2858878': {'line': 'ChiPSC6b', 'type': 'ES-derived oligodendrocytes'}, 'GSM2361937': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1437659': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437658': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1174040': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'post-deep brain stimulation (DBS) on electrical stimulation', 'number': 'PD3'}, 'GSM1174041': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'post-deep brain stimulation (DBS) off electrical stimulation 1 hr', 'number': 'PD3'}, 'GSM1437655': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437657': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437656': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM2361760': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361761': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361762': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361763': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361764': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361765': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361766': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361767': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361768': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361769': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2043750': {'status': 'HIV+', 'individual': '0444-312', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'ART', 'infection': '41'}, 'GSM2043751': {'status': 'HIV+', 'individual': '0444-312', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'ART', 'infection': '41'}, 'GSM2043752': {'status': 'HIV-', 'individual': '0500-355neg', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2043753': {'status': 'HIV-', 'individual': '0500-355neg', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM2462643': {'batch': '2', 'astrocytes': 'y', 'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '50P/S'}, 'GSM2462642': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '50P/S'}, 'GSM2043756': {'status': 'HIV-', 'individual': '0394-274', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2043757': {'status': 'HIV-', 'individual': '0394-274', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM2043758': {'status': 'HIV-', 'individual': '0218-162neg', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2043759': {'status': 'HIV-', 'individual': '0218-162neg', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM2462649': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '1', 'condition': '50P/S'}, 'GSM2462648': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '50P/S'}, 'GSM2607550': {'line': 'WA26'}, 'GSM2607551': {'line': 'WA26'}, 'GSM2607552': {'line': 'WA26'}, 'GSM2607553': {'line': 'WA26'}, 'GSM2607554': {'line': 'WA26'}, 'GSM2607555': {'line': 'WA26'}, 'GSM2607556': {'line': 'WA26'}, 'GSM2607557': {'line': 'WA26'}, 'GSM2607558': {'line': 'WA26'}, 'GSM2607559': {'line': 'WA26'}, 'GSM2551398': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551399': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2275029': {'area_under_the_curve': '0.65910375', 'siteandparticipantcode': '397935', 'baseline_area_under_the_curve': '0.65910375', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '911310', 'sampleID': 'S12566', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib874', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_397935', 'gender': 'Male', 'age': '12', 'race': 'White; Other', 'libraryid': 'lib874', 'studysiteshort': 'UCSF'}, 'GSM1554619': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554618': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2166408': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2275028': {'area_under_the_curve': '0.642812344', 'siteandparticipantcode': '242972', 'baseline_area_under_the_curve': '0.642812344', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '911309', 'sampleID': 'S12565', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib873', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'Control', 'name': 'AbATE_242972', 'gender': 'Male', 'age': '8', 'race': 'White', 'libraryid': 'lib873', 'studysiteshort': 'UCSF'}, 'GSM2166406': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1554614': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2166404': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1554616': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2166402': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1554610': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2166400': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166401': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1424516': {'line': 'DU145', 'condition': 'luciferase knockdown'}, 'GSM1424517': {'line': 'DU145', 'condition': 'luciferase knockdown'}, 'GSM1312718': {'line': 'HGDP00877', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Maya'}, 'GSM1312719': {'line': 'HGDP00449', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mbuti Pygmy'}, 'GSM1312710': {'line': 'HGDP00720', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Cambodian'}, 'GSM1312711': {'line': 'HGDP00721', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Cambodian'}, 'GSM1312712': {'line': 'HGDP00854', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Maya'}, 'GSM1424515': {'line': 'DU145', 'condition': 'luciferase knockdown'}, 'GSM1312714': {'line': 'HGDP00856', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Maya'}, 'GSM1312715': {'line': 'HGDP00857', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Maya'}, 'GSM1312716': {'line': 'HGDP00858', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Maya'}, 'GSM1312717': {'line': 'HGDP00868', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Maya'}, 'GSM1322968': {'subtype': 'PVNS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322969': {'subtype': 'PVNS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1543669': {'media': 'Oleic acid was added at a final concentration of 100 μM to initiate differentiation', 'line': 'SW872', 'passages': '15-20', 'type': 'adipocyte', 'days': '7'}, 'GSM1322964': {'subtype': 'EWS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322965': {'subtype': 'TGCT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322966': {'subtype': 'TGCT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322967': {'subtype': 'TGCT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322960': {'subtype': 'EMC', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2275023': {'area_under_the_curve': '0.48657', 'siteandparticipantcode': '209864', 'baseline_area_under_the_curve': '0.48657', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '910423', 'sampleID': 'S12560', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib868', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_209864', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib868', 'studysiteshort': 'COLUMBIA'}, 'GSM1322962': {'subtype': 'EWS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322963': {'subtype': 'EWS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2756195': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2544090': {'library_id': 'lib8420', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2756197': {'status': 'intraductal papillary mucinous neoplasm (IPMN), high-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756196': {'status': 'intraductal papillary mucinous neoplasm (IPMN), high-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756191': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756190': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756193': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756192': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM1670810': {'type': 'Day 16 differentiated cells (NPCs)'}, 'GSM1670811': {'type': 'Day 18 differentiated cells (NPCs)'}, 'GSM1670812': {'type': 'Day 20 differentiated cells (NPCs)'}, 'GSM1670813': {'type': 'Day 22 differentiated cells (NPCs)'}, 'GSM2275027': {'area_under_the_curve': '0.797192813', 'siteandparticipantcode': '326726', 'baseline_area_under_the_curve': '0.797192813', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '911120', 'sampleID': 'S12564', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib872', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_326726', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib872', 'studysiteshort': 'COLUMBIA'}, 'GSM1126520': {'identifier': 'T32', 'type': 'CD14 cells', 'relationship': 'MZ twin of T31'}, 'GSM2275026': {'area_under_the_curve': '0.32107', 'siteandparticipantcode': '853089', 'baseline_area_under_the_curve': '0.32107', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '914740', 'sampleID': 'S12563', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib871', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'Control', 'name': 'AbATE_853089', 'gender': 'Male', 'age': '14', 'race': 'White', 'libraryid': 'lib871', 'studysiteshort': 'COLUMBIA'}, 'GSM1642820': {'line': 'MCF-7', 'type': 'Breast cancer cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM1642821': {'line': 'MCF-7', 'type': 'Breast cancer cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1642822': {'line': 'Beas-2B', 'type': 'Bronchial epithelial cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642823': {'line': 'Beas-2B', 'type': 'Bronchial epithelial cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM1642824': {'line': 'Beas-2B', 'type': 'Bronchial epithelial cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM1642825': {'line': 'Beas-2B', 'type': 'Bronchial epithelial cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1642826': {'line': 'PC-3', 'type': 'Prostate carcinoma cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642827': {'line': 'PC-3', 'type': 'Prostate carcinoma cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM1642828': {'line': 'PC-3', 'type': 'Prostate carcinoma cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM1642829': {'line': 'PC-3', 'type': 'Prostate carcinoma cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1321439': {'line': 'A549'}, 'GSM1321438': {'type': 'HBE'}, 'GSM2109438': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109439': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109434': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109435': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109436': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109437': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109430': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109431': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109432': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2109433': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2430846': {'duration': '4 hr', 'pattern': 'Pulsatile', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430847': {'duration': '12 hr', 'pattern': 'Pulsatile', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430844': {'duration': '24 hr', 'pattern': 'Static', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430845': {'duration': '1 hr', 'pattern': 'Pulsatile', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430842': {'duration': '4 hr', 'pattern': 'Static', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430843': {'duration': '12 hr', 'pattern': 'Static', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430840': {'duration': '24 hr', 'pattern': 'Oscillatory', 'type': 'HUVEC', 'batch': '1'}, 'GSM2430841': {'duration': '1 hr', 'pattern': 'Static', 'type': 'HUVEC', 'batch': '2'}, 'GSM2058018': {'line': 'V389', 'tissue': 'colorectal cancer cell line'}, 'GSM2430848': {'duration': '24 hr', 'pattern': 'Pulsatile', 'type': 'HUVEC', 'batch': '2'}, 'GSM2430849': {'duration': '1 hr', 'pattern': 'Oscillatory', 'type': 'HUVEC', 'batch': '2'}, 'GSM2486717': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486716': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486715': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486714': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486713': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486712': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486711': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486710': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486719': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486718': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2076783': {'tissue': 'Bone marrow', 'id': '879'}, 'GSM2076782': {'tissue': 'Bone marrow', 'id': '849'}, 'GSM2076781': {'tissue': 'Bone marrow', 'id': '791'}, 'GSM2076780': {'tissue': 'Bone marrow', 'id': '791'}, 'GSM2316925': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM785400': {'type': 'testicular germ', 'normal': 'normal'}, 'GSM785401': {'type': 'testicular germ', 'normal': 'cancer'}, 'GSM1084062': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1261885': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'invasive lung carcinoma (inv)', 'id': '1'}, 'GSM1261884': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'non-invasive adenocarcinoma in situ (ais)', 'id': '1'}, 'GSM1261887': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'non-invasive adenocarcinoma in situ (ais)', 'id': '2'}, 'GSM1261886': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'surrounding normal lung (nor)', 'id': '1'}, 'GSM2420678': {'line': 'HEK293T'}, 'GSM2420679': {'line': 'HEK293T'}, 'GSM2420674': {'line': 'HEK293T'}, 'GSM2420675': {'line': 'HEK293T'}, 'GSM2328808': {'type': 'dermal juvenile blood-vascular endothelial cells'}, 'GSM2328809': {'type': 'dermal juvenile lymph-vascular endothelial cells'}, 'GSM2420670': {'line': 'HEK293T'}, 'GSM2420671': {'line': 'HEK293T'}, 'GSM2420672': {'line': 'HEK293T'}, 'GSM2420673': {'line': 'HEK293T'}, 'GSM2071067': {'type': 'activated naive CD4 T cells', 'with': 'TGFb+IL12'}, 'GSM2071066': {'type': 'activated naive CD4 T cells', 'with': 'IL12'}, 'GSM2071065': {'type': 'activated naive CD4 T cells', 'with': 'TGFb'}, 'GSM2071064': {'type': 'activated naive CD4 T cells', 'with': 'beads only'}, 'GSM2071063': {'type': 'activated naive CD4 T cells', 'with': 'TGFb+IL12'}, 'GSM2071062': {'type': 'activated naive CD4 T cells', 'with': 'TGFb'}, 'GSM2071061': {'type': 'activated naive CD4 T cells', 'with': 'IL12'}, 'GSM2071060': {'type': 'activated naive CD4 T cells', 'with': 'beads only'}, 'GSM1521581': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521580': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521583': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521582': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521585': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2170771': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2071069': {'type': 'activated naive CD4 T cells', 'with': 'Activin A+IL12'}, 'GSM2071068': {'type': 'activated naive CD4 T cells', 'with': 'Activin A'}, 'GSM1405104': {'source': 'IP with Ab anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'line': 'HeLa', 'antibody': 'anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'treatment': 'INTS11 occupancy examined before and after EGF stimulation in starved wild-type Hela Cells', 'type': 'ChIP-seq'}, 'GSM1084068': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Sigma'}, 'GSM1405106': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'GRO-seq', 'treatment': 'Nascent RNA was profiled after EGF stimulation in a doxocycline inducible knock-down cell line for INTS11'}, 'GSM1405107': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'GRO-seq', 'treatment': 'Nascent RNA was profiled after EGF stimulation in a doxocycline inducible knock-down cell line for INTS11'}, 'GSM1405100': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in a Hela cell clone upon EGF stimulation and depletion of INTS11'}, 'GSM1405101': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in a Hela cell clone upon EGF stimulation and depletion of INTS11'}, 'GSM1405102': {'source': 'IP with Ab anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'line': 'HeLa', 'antibody': 'anti-INTS11 rabbit polyclonal (Bethyl, A301-274A)', 'treatment': 'INTS11 occupancy examined before and after EGF stimulation in starved wild-type Hela Cells', 'type': 'ChIP-seq'}, 'GSM1084069': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'emetine', 'manufacturer': 'Sigma'}, 'GSM2170777': {'stage': 'iPSC line'}, 'GSM1405108': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'GRO-seq', 'treatment': 'Nascent RNA was profiled after EGF stimulation in a doxocycline inducible knock-down cell line for INTS11'}, 'GSM1405109': {'source': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'line': 'HeLa', 'type': 'GRO-seq', 'treatment': 'Nascent RNA was profiled after EGF stimulation in a doxocycline inducible knock-down cell line for INTS11'}, 'GSM2170776': {'stage': 'iPSC line'}, 'GSM2170775': {'stage': 'iPSC line'}, 'GSM2170774': {'stage': 'iPSC line'}, 'GSM2170779': {'stage': 'iPSC line'}, 'GSM1574774': {'concentration': '12376.9', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Compound 1uM', 'conc': '18.832'}, 'GSM1589096': {'tissue': 'dermis fibroblast', 'genotype': 'wild type'}, 'GSM1574776': {'concentration': '13674.1', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Compound 1uM', 'conc': '15.015'}, 'GSM1574777': {'concentration': '11234.2', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Compound 3uM', 'conc': '14.024'}, 'GSM1574770': {'concentration': '1682.9', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Diclofenac', 'conc': '53.7'}, 'GSM1574771': {'concentration': '7310.1', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '20.244'}, 'GSM1574772': {'concentration': '7099', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '22.666'}, 'GSM1574773': {'concentration': '5555.5', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '19.831'}, 'GSM2222278': {'line': 'HCT116', 'genotype': 'wild type'}, 'GSM1574778': {'concentration': '13683.5', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Compound 3uM', 'conc': '17.647'}, 'GSM1574779': {'concentration': '27222', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Compound 10uM', 'conc': '16.758'}, 'GSM2222279': {'line': 'HCT116', 'genotype': 'wild type'}, 'GSM1940728': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2667039': {'type': 'Macrophage'}, 'GSM2754759': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_1104', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754758': {'bin': '9', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '01_0673', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2667038': {'type': 'Macrophage'}, 'GSM1940720': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940721': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2754757': {'bin': '8', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '01_0757', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754756': {'bin': '8', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '09_0789', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754751': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1147', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1940725': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940726': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940727': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2535644': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1106', 'samplename': '1_413UNST_C07', 'seqsite': 'BRI', 'sampleID': 'S13215', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1106', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C07'}, 'GSM2535645': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1107', 'samplename': '1_413UNST_C19', 'seqsite': 'BRI', 'sampleID': 'S13231', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1107', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C19'}, 'GSM2535646': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1108', 'samplename': '1_413UNST_C39', 'seqsite': 'BRI', 'sampleID': 'S13240', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1108', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C39'}, 'GSM1564308': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '25', 'replicate': '1', 'hcc827': '75'}, 'GSM1564309': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '50', 'replicate': '1', 'hcc827': '50'}, 'GSM1647959': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM2535647': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1109', 'samplename': '1_413UNST_C49', 'seqsite': 'BRI', 'sampleID': 'S13193', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1109', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C49'}, 'GSM1564300': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '75', 'replicate': '2', 'hcc827': '25'}, 'GSM1647952': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1564302': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '0', 'replicate': '3', 'hcc827': '100'}, 'GSM1564303': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '25', 'replicate': '3', 'hcc827': '75'}, 'GSM1564304': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '50', 'replicate': '3', 'hcc827': '50'}, 'GSM1647956': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1564306': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '100', 'replicate': '3', 'hcc827': '0'}, 'GSM1647954': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1863729': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM921019': {'barcode': 'AGGGTC', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd3'}, 'GSM2667035': {'type': 'Macrophage'}, 'GSM2731753': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2667034': {'type': 'Macrophage'}, 'GSM2535648': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1110', 'samplename': '1_413UNST_C55', 'seqsite': 'BRI', 'sampleID': 'S13222', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1110', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C55'}, 'GSM2535649': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1111', 'samplename': '1_413UNST_C61', 'seqsite': 'BRI', 'sampleID': 'S13190', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1111', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C61'}, 'GSM2041709': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 32'}, 'GSM2309488': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2325988': {'type': 'Human embryonic stem cell'}, 'GSM2325989': {'type': 'Human embryonic stem cell'}, 'GSM1233898': {'replicate': '2.2', 'line': '12878', 'antibody': 'H3K27me3'}, 'GSM2325984': {'type': 'Human embryonic stem cell'}, 'GSM2325985': {'type': 'Human embryonic stem cell'}, 'GSM2325986': {'type': 'Human embryonic stem cell'}, 'GSM2325987': {'type': 'Human embryonic stem cell'}, 'GSM2325980': {'type': 'Human embryonic stem cell'}, 'GSM2325981': {'type': 'Human embryonic stem cell'}, 'GSM2325982': {'type': 'Human embryonic stem cell'}, 'GSM2325983': {'type': 'Human embryonic stem cell'}, 'GSM2550258': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550259': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550252': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550253': {'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550250': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550251': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550256': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550257': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550254': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550255': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2131598': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131599': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131594': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131595': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131596': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131597': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131590': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131591': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131592': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131593': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM1697675': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'conventional iPSCs', 'type': 'Fibroblasts', 'antibody': 'H3K27me3', 'vendor': 'Millipore'}, 'GSM1697674': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'induced pluripotent stem cells generated by a modified 5i/L/FA system', 'type': 'Fibroblasts'}, 'GSM2453979': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2411322': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2170810': {'stage': 'iPSC line'}, 'GSM2170811': {'stage': 'iPSC line'}, 'GSM2170816': {'stage': 'iPSC line'}, 'GSM2170817': {'stage': 'iPSC line'}, 'GSM2170814': {'stage': 'iPSC line'}, 'GSM2170815': {'stage': 'iPSC line'}, 'GSM2453971': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453970': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453973': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453972': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453975': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2411320': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2453977': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453976': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2041708': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 31'}, 'GSM2348684': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2262379': {'time': 'NA', 'population': 'Baseline iPSC'}, 'GSM2565189': {'construction': 'PLATE-Seq', 'drug': 'Arsenic trioxide'}, 'GSM2855436': {'type': 'TMD8', 'treatment': 'transduced with STAT3 shRNA#16 that was induced for expresion with 20 ng/ml doxycycline for 2 days'}, 'GSM2278019': {'tumor': 'Tumor A137', 'antibody': 'none (input)', 'treatment': 'N/A'}, 'GSM2278018': {'tumor': 'Tumor A139', 'antibody': 'none (input)', 'treatment': 'N/A'}, 'GSM2278017': {'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'line': 'HCC70', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2278016': {'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'line': 'HCC70', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2278015': {'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'line': 'MDA-MB-231', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2278014': {'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'line': 'MDA-MB-231', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2278013': {'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'line': 'MDA-MB-157', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2348688': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2278011': {'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'line': 'HCC1143', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2278010': {'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'line': 'HCC1143', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2348689': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1408097': {'strain': 'NOD-SCID mouse', 'tissue': 'HOT1 tumor derived from a human glioblastoma patient sample'}, 'GSM2855432': {'antibody': 'STAT3', 'type': 'OCI-LY10', 'treatment': 'DMSO'}, 'GSM2565183': {'construction': 'PLATE-Seq', 'drug': 'Sorafenib'}, 'GSM2855430': {'antibody': 'STAT3', 'type': 'TMD8', 'treatment': 'DMSO'}, 'GSM1524872': {'tissue': 'heart; atrial appendages', 'type': 'W8B2+ cells', 'passage': 'passage 2'}, 'GSM1524873': {'tissue': 'heart; atrial appendages', 'type': 'W8B2+ cells', 'passage': 'passage 2'}, 'GSM1524870': {'tissue': 'heart; atrial appendages', 'type': 'c-Kit+ cells', 'passage': 'passage 2'}, 'GSM1524871': {'tissue': 'heart; atrial appendages', 'type': 'c-Kit+ cells', 'passage': 'passage 2'}, 'GSM1524876': {'tissue': 'bone marrow', 'type': 'W8B2+ cells', 'passage': 'passage 3'}, 'GSM1524874': {'tissue': 'heart; atrial appendages', 'type': 'W8B2+ cells', 'passage': 'passage 2'}, 'GSM1524875': {'tissue': 'bone marrow', 'type': 'W8B2+ cells', 'passage': 'passage 3'}, 'GSM2218619': {'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM957379': {'sample': 'GM12043', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1346'}, 'GSM957378': {'sample': 'GM12006', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1420'}, 'GSM957377': {'sample': 'GM12005', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1420'}, 'GSM957376': {'sample': 'GM12004', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1420'}, 'GSM957375': {'sample': 'GM12003', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1420'}, 'GSM957374': {'sample': 'GM11994', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1362'}, 'GSM957373': {'sample': 'GM11993', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1362'}, 'GSM957372': {'sample': 'GM11992', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1362'}, 'GSM1836573': {'expression_construct': 'TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U2'}, 'GSM957370': {'sample': 'GM11881', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1347'}, 'GSM2632293': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632292': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632291': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632290': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632297': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632296': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632295': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632294': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632299': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632298': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2692400': {'donor': 'E07', 'type': 'sorted A2-NS4B214 tetramer+ CD8 T cells', 'day': 'Day 3409 post YFV-17D'}, 'GSM2692401': {'donor': 'YFHW053', 'type': 'sorted A2-NS4B214 tetramer+ CD8 T cells', 'day': 'Day 1349 post YFV-17D'}, 'GSM2692402': {'donor': 'AKJ', 'type': 'sorted A2-NS4B214 tetramer+ CD8 T cells', 'day': 'Day 3630 post YFV-17D'}, 'GSM1836572': {'expression_construct': 'FLAG-TOE1E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'E220 addback- siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1963950': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963951': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963952': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963953': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963954': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963955': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963956': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963957': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2178485': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2178484': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2178487': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM2178486': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM2178481': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM2178480': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM2178483': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2178482': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM1113378': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T13', 'point': 'Day 0 (pre-vaccine)'}, 'GSM2589415': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2679527': {'line': 'HUH7', 'point': 'mitotic'}, 'GSM2238619': {'group': 'Control'}, 'GSM2238618': {'group': 'Control'}, 'GSM2238613': {'group': 'Control'}, 'GSM2238615': {'group': 'RB1-null'}, 'GSM2238614': {'group': 'Control'}, 'GSM2238617': {'group': 'RB1-null'}, 'GSM2238616': {'group': 'RB1-null'}, 'GSM2545260': {'line': 'MB468', 'type': 'TNBC Basal Breast Cancer Cell Line'}, 'GSM2348435': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565330': {'construction': 'PLATE-Seq', 'drug': 'Ryuvidine'}, 'GSM2565333': {'construction': 'PLATE-Seq', 'drug': 'RO4929097'}, 'GSM2226822': {'information': 'Latent Tuberculosis - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM2565335': {'construction': 'PLATE-Seq', 'drug': 'Tariquidar'}, 'GSM2348430': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565337': {'construction': 'PLATE-Seq', 'drug': 'Zibotentan (ZD4054)'}, 'GSM2565336': {'construction': 'PLATE-Seq', 'drug': 'Triapine'}, 'GSM2565339': {'construction': 'PLATE-Seq', 'drug': 'THYMOQUINONE'}, 'GSM2565338': {'construction': 'PLATE-Seq', 'drug': '4 -METHOXYCHALCONE'}, 'GSM2348439': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348438': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2142625': {'gender': 'female', 'age': '75', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '4', 'smoking': '1'}, 'GSM1509301': {'line': 'Hela', 'transfection': 'U2AF35 siRNA'}, 'GSM2048531': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1509303': {'line': 'Hela', 'transfection': 'NC siRNA and pcDNA3.0'}, 'GSM2535878': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5641', 'samplename': '1_T1D#2 ReDraw_C49', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28526', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5641', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C49'}, 'GSM1509305': {'line': 'Hela', 'transfection': 'NC siRNA and pcDNA3.0'}, 'GSM1509304': {'line': 'Hela', 'transfection': 'NC siRNA and pcDNA3.0'}, 'GSM1509307': {'line': 'Hela', 'transfection': 'U2AF65 siRNA and pcDNA3.0'}, 'GSM1642766': {'line': '786-O', 'antibody': 'HIF-2alpha Antibody (PM9)', 'transfection': 'HIF-1a (pRRL-HIF-1a)'}, 'GSM2535873': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5636', 'samplename': '1_T1D#2 ReDraw_C26', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28521', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5636', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C26'}, 'GSM1509308': {'line': 'Hela', 'transfection': 'U2AF65 siRNA and pcDNA3.0'}, 'GSM2535871': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5635', 'samplename': '1_T1D#2 ReDraw_C08', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28520', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5635', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C08'}, 'GSM2142623': {'gender': 'male', 'age': '67', 'who': '1', 'dead': '1', 'date': '2011-12-29', 'histology': '3', 'tnm': '2', 'smoking': '3'}, 'GSM2535876': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5638', 'samplename': '1_T1D#2 ReDraw_C44', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28523', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5638', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C44'}, 'GSM2535874': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5637', 'samplename': '1_T1D#2 ReDraw_C32', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28522', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5637', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C32'}, 'GSM2048532': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2316778': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2048535': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048534': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048537': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2288692': {'line': 'HK2', 'type': 'Epithelial', 'state': 'Normal', 'target': 'non-targeting'}, 'GSM2288693': {'line': 'CAKI-1', 'type': 'Epithelial', 'state': 'Cancer', 'target': 'LATS'}, 'GSM2288690': {'line': 'HK2', 'type': 'Epithelial', 'state': 'Normal', 'target': 'PTPN14'}, 'GSM2288691': {'line': 'HK2', 'type': 'Epithelial', 'state': 'Normal', 'target': 'PTPN14'}, 'GSM2288696': {'line': 'CAKI-1', 'type': 'Epithelial', 'state': 'Cancer', 'target': 'non-targeting'}, 'GSM2288694': {'line': 'CAKI-1', 'type': 'Epithelial', 'state': 'Cancer', 'target': 'PTPN14'}, 'GSM2288695': {'line': 'CAKI-1', 'type': 'Epithelial', 'state': 'Cancer', 'target': 'PTPN14'}, 'GSM2058088': {'line': 'V940', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2374218': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374219': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM903660': {'tissue': 'peripheral blood', 'disease': 'AML-M2', 'Stage': 'primary tumor'}, 'GSM903661': {'tissue': 'peripheral blood', 'disease': 'AML-M2', 'Stage': 'remission'}, 'GSM2058089': {'line': 'V968', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2374212': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374213': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374210': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374211': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374216': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374217': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374214': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374215': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2035715': {'with': 'DMSO on OP9 for 12 days', 'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM2035714': {'with': 'DMSO on OP9 for 12 days', 'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM2035717': {'with': '0.2uM AM580 on OP9 for 12 days', 'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM2035716': {'with': '0.2uM AM580 on OP9 for 12 days', 'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM2035711': {'with': '0.2uM AM580 on OP9 for 6 days', 'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM2035710': {'with': '0.2uM AM580 on OP9 for 6 days', 'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM2035713': {'with': 'DMSO on OP9 for 6 days', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2035712': {'with': 'DMSO on OP9 for 6 days', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM1694197': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2372368': {'tissue': 'Supratentorial Ependymoma', 'subgroup': 'High global H3K27me3'}, 'GSM1694195': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694194': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694193': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM1694192': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694191': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2410140': {'line': 'pre-B ALL xenograft', 'treatment': 'IK1', 'variation': 'Ik6,BCR-ABL', 'time': '24 hour'}, 'GSM2616376': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2410143': {'line': 'pre-B ALL xenograft', 'treatment': 'IK1', 'variation': 'Ik6,BCR-ABL', 'time': '48 hour'}, 'GSM2562630': {'gender': 'female', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2410142': {'line': 'pre-B ALL xenograft', 'treatment': 'IK1', 'variation': 'Ik6,BCR-ABL', 'time': '48 hour'}, 'GSM2562633': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2316774': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM1530727': {'genotype': 'Wild Type GBA', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': \"Parkinson's Disease\"}, 'GSM2058080': {'line': 'V503', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2307159': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307158': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2058081': {'line': 'V576', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2307153': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307152': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307151': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307150': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307157': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2372366': {'tissue': 'Supratentorial Ependymoma', 'subgroup': 'High global H3K27me3'}, 'GSM2307155': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307154': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2372367': {'tissue': 'Supratentorial Ependymoma', 'subgroup': 'High global H3K27me3'}, 'GSM2562637': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2058084': {'line': 'V852', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2562636': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2372361': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372362': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2058087': {'line': 'V868', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2193309': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2193308': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2193307': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2193306': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM1939609': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'control-siRNA'}, 'GSM2825145': {'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2410141': {'line': 'pre-B ALL xenograft', 'treatment': 'IK1', 'variation': 'Ik6,BCR-ABL', 'time': '24 hour'}, 'GSM1917131': {'transduction': 'cotransduced with pWZL-Hygro and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917130': {'transduction': 'cotransduced with pWZL-Hygro and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917133': {'transduction': 'cotransduced with pWZL-Hygro and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917132': {'transduction': 'cotransduced with pWZL-Hygro and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917135': {'transduction': 'cotransduced with pWZL HRASV12 and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917134': {'transduction': 'cotransduced with pWZL HRASV12 and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917137': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'proliferating'}, 'GSM1917136': {'transduction': 'cotransduced with pWZL HRASV12 and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917139': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'proliferating'}, 'GSM1917138': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'proliferating'}, 'GSM2251289': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2432779': {'line': '22RV1', 'type': 'human prostate cancer cell line', 'treatment': 'none'}, 'GSM2432777': {'line': '22RV1', 'type': 'human prostate cancer cell line', 'treatment': 'dihydrotestosterone (DHT)'}, 'GSM2432775': {'line': 'LNCaP', 'type': 'human prostate cancer cell line', 'treatment': 'none', 'change': 'Expression of Src-527F'}, 'GSM2432773': {'line': 'LNCaP', 'type': 'human prostate cancer cell line', 'treatment': 'dihydrotestosterone (DHT)', 'change': 'Expression of Src-527F'}, 'GSM2432771': {'line': 'LNCaP', 'type': 'human prostate cancer cell line', 'treatment': 'none'}, 'GSM2511556': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2543600': {'library_id': 'lib5713', 'stim': 'CR', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2194676': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2511554': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2194652': {'type': 'delta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194653': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194650': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2511555': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2194656': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194657': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194654': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194655': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2511552': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2194658': {'type': 'acinar', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194659': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2511553': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2543607': {'library_id': 'lib5720', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543606': {'library_id': 'lib5719', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2802937': {'line': 'hMSC-TERT4', 'stage': 'D1'}, 'GSM2802936': {'line': 'hMSC-TERT4', 'stage': '4h'}, 'GSM2251223': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251222': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251225': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251224': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251227': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251226': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251229': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251228': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2802939': {'line': 'hMSC-TERT4', 'stage': 'D1'}, 'GSM2802938': {'line': 'hMSC-TERT4', 'stage': 'D1'}, 'GSM1414945': {'region': 'BA21', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM2029349': {'antibody': 'H3K27me3 (Millipore, 07-449)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM1498317': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM2286713': {'line': 'MCF10A', 'type': 'single cell'}, 'GSM2108668': {'type': 'H1'}, 'GSM2108669': {'type': 'hiPSCs'}, 'GSM2274844': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33321', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9723', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C40', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9723', 'studysiteshort': 'YALE'}, 'GSM2649707': {'tumor': 'NORMAL', 'barcode': 'BC12', 'Sex': 'male'}, 'GSM2649706': {'tumor': 'TUMOR', 'barcode': 'BC11', 'Sex': 'male'}, 'GSM2649705': {'tumor': 'NORMAL', 'barcode': 'BC10', 'Sex': 'male'}, 'GSM2649704': {'tumor': 'TUMOR', 'barcode': 'BC9', 'Sex': 'male'}, 'GSM2649703': {'tumor': 'TUMOR', 'barcode': 'BC8', 'Sex': 'female'}, 'GSM2649702': {'tumor': 'NORMAL', 'barcode': 'BC7', 'Sex': 'female'}, 'GSM2649701': {'tumor': 'TUMOR', 'barcode': 'BC6', 'Sex': 'male'}, 'GSM2649700': {'tumor': 'NORMAL', 'barcode': 'BC5', 'Sex': 'male'}, 'GSM2649709': {'tumor': 'TUMOR', 'barcode': 'BC2', 'Sex': 'male'}, 'GSM2649708': {'tumor': 'NORMAL', 'barcode': 'BC1', 'Sex': 'male'}, 'GSM2455830': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2817779': {'type': 'PANC-1', 'treatment': 'gemcitabine 100nM 6h'}, 'GSM1580904': {'death': '76', 'rin': '7.5', 'reads': '103952680', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM2451307': {'compartment': 'Stroma', 'id': 'CUMC_031', 'library': 'NuGEN'}, 'GSM1580905': {'death': '78', 'rin': '7.6', 'reads': '95393100', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '3'}, 'GSM2455831': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2254343': {'strain': 'Normal tissue', 'tissue': 'Retina', 'genotype': 'Wild Type'}, 'GSM2254342': {'strain': 'Normal tissue', 'tissue': 'Retina', 'genotype': 'Wild Type'}, 'GSM1580908': {'death': '54', 'rin': '8.3', 'reads': '128459102', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '24'}, 'GSM1580909': {'death': '68', 'rin': '6.3', 'reads': '145087692', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '19'}, 'GSM2995459': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995458': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995453': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995452': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995451': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995450': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995457': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995456': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995455': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995454': {'gender': 'Male', 'type': 'iPSC'}, 'GSM1479437': {'index': '23', 'diagnosis': '3', 'cellcount': '--', 'gender': 'F', 'age': '27', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '37', 'collectiondate': 'June 6 2012', 'samplename': '37_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM2307366': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307367': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307368': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM1126686': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM2672034': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM1955919': {'a': '55494', 'cd38': '918', 'cd49f': '-34', 'w': '65391', 'h': '55617', 'lin': '-382', 'cd34': '4144', 'cd90': '220', 'cd7': '223', 'cd10': '293', 'time': '7386', 'cd135': '1422', 'cd45ra': '83'}, 'GSM1704304': {'cohort': 'Control; healthy control subject', 'tissue': 'Peripheral blood', 'type': 'sorted CD4+ ILC1', 'gender': 'Female'}, 'GSM1704305': {'cohort': 'Control; healthy control subject', 'tissue': 'Peripheral blood', 'type': 'sorted CD4- ILC1', 'gender': 'Female'}, 'GSM1955911': {'a': '63480', 'cd38': '1172', 'cd49f': '662', 'w': '70136', 'h': '59316', 'lin': '-128', 'cd34': '4313', 'cd90': '1318', 'cd7': '-314', 'cd10': '738', 'time': '5433', 'cd135': '2591', 'cd45ra': '115'}, 'GSM1955910': {'a': '58455', 'cd38': '618', 'cd49f': '512', 'w': '66610', 'h': '57513', 'lin': '61', 'cd34': '8156', 'cd90': '2793', 'cd7': '-239', 'cd10': '1110', 'time': '5632', 'cd135': '2520', 'cd45ra': '209'}, 'GSM1955913': {'a': '56546', 'cd38': '678', 'cd49f': '601', 'w': '65449', 'h': '56621', 'lin': '-421', 'cd34': '7566', 'cd90': '3759', 'cd7': '523', 'cd10': '565', 'time': '4989', 'cd135': '4815', 'cd45ra': '124'}, 'GSM1955912': {'a': '61513', 'cd38': '673', 'cd49f': '1366', 'w': '67426', 'h': '59788', 'lin': '21', 'cd34': '4751', 'cd90': '-91', 'cd7': '486', 'cd10': '441', 'time': '5234', 'cd135': '4962', 'cd45ra': '5705'}, 'GSM1955915': {'a': '68424', 'cd38': '770', 'cd49f': '212', 'w': '68287', 'h': '65668', 'lin': '4', 'cd34': '3669', 'cd90': '1100', 'cd7': '159', 'cd10': '468', 'time': '4576', 'cd135': '1049', 'cd45ra': '226'}, 'GSM1401722': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1955917': {'a': '50073', 'cd38': '933', 'cd49f': '101', 'w': '66481', 'h': '49361', 'lin': '-341', 'cd34': '7145', 'cd90': '1414', 'cd7': '268', 'cd10': '545', 'time': '6984', 'cd135': '5407', 'cd45ra': '294'}, 'GSM1955916': {'a': '55837', 'cd38': '650', 'cd49f': '686', 'w': '68652', 'h': '53303', 'lin': '-14', 'cd34': '4314', 'cd90': '2728', 'cd7': '-18', 'cd10': '488', 'time': '4356', 'cd135': '7913', 'cd45ra': '2282'}, 'GSM1401723': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401724': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM2098757': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM1401726': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM2545249': {'line': 'AU565', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545248': {'line': 'SKBR3', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545247': {'line': 'SKBR3', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545246': {'line': 'SKBR3', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545245': {'line': 'SKBR3', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM1704303': {'cohort': 'Control; healthy control subject', 'tissue': 'Peripheral blood', 'type': 'sorted CD4- ILC1', 'gender': 'Male'}, 'GSM2545243': {'line': 'UACC812', 'type': 'Luminal B Breast Cancer Cell line'}, 'GSM2545242': {'line': 'UACC812', 'type': 'Luminal B Breast Cancer Cell line'}, 'GSM2545241': {'line': 'UACC812', 'type': 'Luminal B Breast Cancer Cell line'}, 'GSM2545240': {'line': 'MDA MB-361', 'type': 'Luminal B Breast Cancer Cell line'}, 'GSM955111': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM1869428': {'gender': 'female', 'tissue': 'blood', 'type': 'peripheral blood mononuclear cells', 'diagnosis': 'Guillain-Barre Syndrome'}, 'GSM1369083': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siEIF3L'}, 'GSM1633398': {'line': 'A375', 'type': 'Melanoma cell line'}, 'GSM1633399': {'line': 'A375', 'type': 'Melanoma cell line'}, 'GSM1633396': {'line': 'A375', 'type': 'Melanoma cell line'}, 'GSM1633397': {'line': 'A375', 'type': 'Melanoma cell line'}, 'GSM2630134': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630135': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630136': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630137': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630130': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630131': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630132': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630133': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2172344': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172345': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172346': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172347': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172340': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2630139': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2172342': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172343': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1253376': {'cluster': 'SC', 'as': 'Brx53_SC2_010313', 'patient': 'Patient#1'}, 'GSM1253377': {'cluster': 'SC', 'as': 'BrTr08_1_SC1_012913', 'patient': 'Patient#2'}, 'GSM1577764': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1253375': {'cluster': 'CL', 'as': 'Brx53_CL2_010313', 'patient': 'Patient#1'}, 'GSM1577762': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577763': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577760': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577761': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1253378': {'cluster': 'SC', 'as': 'Brx12_SC_012913', 'patient': 'Patient#3'}, 'GSM1253379': {'cluster': 'SC', 'as': 'Brx52_SC2_020413', 'patient': 'Patient#4'}, 'GSM2100110': {'rin': '9.5', 'Sex': 'Female', 'sspg': '248', 'age': '67', 'bmi': '30.9', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '708', 'method': 'Qiagen:trizol'}, 'GSM2100111': {'rin': '10', 'Sex': 'Female', 'sspg': '63', 'age': '48', 'bmi': '25.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '441', 'method': 'Life-Tech GITC'}, 'GSM2100112': {'rin': '10', 'Sex': 'Female', 'sspg': '63', 'age': '48', 'bmi': '25.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '441', 'method': 'Life-Tech GITC'}, 'GSM2100113': {'rin': '10', 'Sex': 'Female', 'sspg': '63', 'age': '48', 'bmi': '25.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '441', 'method': 'Life-Tech GITC'}, 'GSM2100114': {'rin': '9.7', 'Sex': 'Male', 'sspg': '107', 'age': '48', 'bmi': '28.1', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '442', 'method': 'Qiagen:trizol'}, 'GSM2100115': {'rin': '9.6', 'Sex': 'Male', 'sspg': '107', 'age': '48', 'bmi': '28.1', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '442', 'method': 'Qiagen:trizol'}, 'GSM2100116': {'rin': '9.7', 'Sex': 'Male', 'sspg': '107', 'age': '48', 'bmi': '28.1', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '442', 'method': 'Qiagen:trizol'}, 'GSM2100117': {'rin': '9.6', 'Sex': 'Male', 'sspg': '107', 'age': '48', 'bmi': '28.1', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '442', 'method': 'Qiagen:trizol'}, 'GSM2100118': {'rin': '9.7', 'Sex': 'Male', 'sspg': '107', 'age': '48', 'bmi': '28.1', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '442', 'method': 'Qiagen:trizol'}, 'GSM2100119': {'rin': '7.6', 'Sex': 'Female', 'sspg': '76', 'age': '48', 'bmi': '28.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'South Asian', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '197', 'method': 'Qiagen:trizol'}, 'GSM2416965': {'modification': 'Wt', 'line': 'HEK293T', 'enrichment': 'NAD-Capture'}, 'GSM2416964': {'modification': 'Wt', 'line': 'HEK293T', 'enrichment': 'NAD-Capture'}, 'GSM1498318': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM2416967': {'modification': 'DXO-KO', 'line': 'HEK293T', 'enrichment': 'NAD-Capture'}, 'GSM1957513': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957511': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1980257': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1957515': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM3594669': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594666': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2416961': {'modification': 'Wt', 'line': 'HEK293T', 'enrichment': 'RiboMinus'}, 'GSM3594664': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM1957518': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM3594662': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594663': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594660': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2305781': {'tissue': 'colon'}, 'GSM1369087': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPOLR2D'}, 'GSM1980252': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2720319': {'passages': 'p10', 'type': 'MSC'}, 'GSM2411854': {'line': '4064B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411855': {'line': '4756A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411856': {'line': '4756B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411857': {'line': '521C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2816150': {'line': 'H9'}, 'GSM2411851': {'line': '3726A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411852': {'line': '3726B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411853': {'line': '4064A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM1642987': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': \"Crohn's disease-associated fibrosis\"}, 'GSM1642986': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': 'control'}, 'GSM1642985': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': 'control'}, 'GSM1642984': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': 'control'}, 'GSM2411858': {'line': '521E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411859': {'line': '554A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2416968': {'modification': 'DXO-KO', 'line': 'HEK293T', 'enrichment': 'NAD-Capture'}, 'GSM1836490': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836491': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836492': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836493': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836494': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836495': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U2'}, 'GSM1836496': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM1836497': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM1836498': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM1836499': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM2081126': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2081121': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2081120': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2816152': {'line': 'H9'}, 'GSM2081123': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2081122': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM2816153': {'line': 'H9'}, 'GSM424327': {'identifier': 'GM07056'}, 'GSM1341669': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM2170713': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2243833': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243832': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243831': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243830': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243837': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243836': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243835': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243834': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243839': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243838': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1498121': {'type': 'senescent cells expressing ZFP36L1wt', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM2071740': {'line': 'HCT116', 'agent': '100nM CA'}, 'GSM2071741': {'line': 'HCT116', 'agent': '100nM CA'}, 'GSM2627088': {'origin': 'small intestine', 'patient_id': '205', 'type': 'primary', 'tumor_id': '150'}, 'GSM2627089': {'origin': 'small intestine', 'patient_id': '209', 'type': 'primary', 'tumor_id': '154'}, 'GSM2627080': {'origin': 'small intestine', 'patient_id': '136', 'type': 'primary', 'tumor_id': '110'}, 'GSM2627081': {'origin': 'small intestine', 'patient_id': '138', 'type': 'primary', 'tumor_id': '112'}, 'GSM2627082': {'origin': 'small intestine', 'patient_id': '140', 'type': 'primary', 'tumor_id': '114'}, 'GSM2627083': {'origin': 'small intestine', 'patient_id': '152', 'type': 'primary', 'tumor_id': '126'}, 'GSM2627084': {'origin': 'small intestine', 'patient_id': '156', 'type': 'primary', 'tumor_id': '130'}, 'GSM2627085': {'origin': 'small intestine', 'patient_id': '161', 'type': 'primary', 'tumor_id': '135'}, 'GSM2627086': {'origin': 'small intestine', 'patient_id': '165', 'type': 'primary', 'tumor_id': '139'}, 'GSM2627087': {'origin': 'small intestine', 'patient_id': '204', 'type': 'primary', 'tumor_id': '149'}, 'GSM1898277': {'gender': 'male', 'age': '72', 'number': '6', 'source': 'liver parenchyma', 'state': 'control (clean resection edge liver metastasis)', 'mutation': 'none', 'type': 'Normal biliary stem cells'}, 'GSM1410979': {'ercc_mix': '1', 'donor': 'N100811-M21', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410978': {'ercc_mix': '1', 'donor': 'N092611-M26', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410977': {'ercc_mix': '1', 'donor': 'AS091511-F19', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Vitamin-D'}, 'GSM1410976': {'ercc_mix': '1', 'donor': 'N061311-M23', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410975': {'ercc_mix': '1', 'donor': 'N051911-F24', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410974': {'ercc_mix': '1', 'donor': 'N022211-F22', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410973': {'ercc_mix': '1', 'donor': 'AS021111-F44', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Vitamin-D'}, 'GSM1410972': {'ercc_mix': '1', 'donor': 'AS012811-M9', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Vitamin-D'}, 'GSM1410971': {'ercc_mix': '1', 'donor': 'N120610-M50', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1410970': {'ercc_mix': '1', 'donor': 'N090710-F52', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Vitamin-D'}, 'GSM1847263': {'line': 'HCT116', 'type': 'colon carcinoma', 'state': 'AKT1 Low'}, 'GSM3208685': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208686': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1847260': {'line': 'MCF7', 'type': 'breast adenocarcinoma', 'state': 'AKT1 Low'}, 'GSM984351': {'grade': '3', 'recurrence': '0', 'size': '2', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM984350': {'grade': '3', 'recurrence': '0', 'size': '2', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM1847265': {'line': 'HCT116', 'type': 'colon carcinoma', 'state': 'AKT1 WT'}, 'GSM1847264': {'line': 'HCT116', 'type': 'colon carcinoma', 'state': 'AKT1 Low'}, 'GSM2479806': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM3208688': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3208689': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2778982': {'time_hr': '12', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778983': {'time_hr': '16', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778981': {'time_hr': '1', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'ST'}, 'GSM2778986': {'time_hr': '24', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778987': {'time_hr': '2', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778984': {'time_hr': '1', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778985': {'time_hr': '20', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778988': {'time_hr': '3', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2778989': {'time_hr': '4', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2665998': {'age': 'Day 130', 'well': 'E8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665999': {'age': 'Day 130', 'well': 'D11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2287442': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2616608': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616609': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM2616606': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616607': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2616604': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM2616605': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616602': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616603': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616600': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616601': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2433758': {'sample_label': '37-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2458847': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.08'}, 'GSM2067385': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2610803': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1513208': {'gender': 'Female', 'line': 'GM18858', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2610800': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2067386': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067381': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2616959': {'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2067380': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2026980': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q86XU0'}, 'GSM2067383': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2026981': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q86XU0'}, 'GSM2067382': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2026982': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8NEM1'}, 'GSM1359507': {'antibody': 'H3K36me3 (Abcam, ab9050)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM2026984': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9BU19'}, 'GSM2026985': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P17019'}, 'GSM1924821': {'type': 'lung cancer xenograft derived CTC'}, 'GSM1924820': {'type': 'lung cancer xenograft derived CTC'}, 'GSM1924823': {'type': 'lung cancer xenograft derived CTC'}, 'GSM1924822': {'type': 'lung cancer xenograft derived CTC'}, 'GSM1924825': {'type': 'lung cancer xenograft derived primary tumor cell'}, 'GSM1924824': {'type': 'lung cancer xenograft derived primary tumor cell'}, 'GSM1924827': {'type': 'lung cancer xenograft derived primary tumor cell'}, 'GSM1924826': {'type': 'lung cancer xenograft derived primary tumor cell'}, 'GSM1924829': {'type': 'lung cancer xenograft derived primary tumor cell'}, 'GSM1924828': {'type': 'lung cancer xenograft derived primary tumor cell'}, 'GSM2026987': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9H5H4'}, 'GSM2375013': {'line': 'MM.1s', 'shRNA': 'Vec', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2564998': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2564999': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2375017': {'line': 'RPMI8226', 'shRNA': 'Vec', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2375016': {'line': 'MM.1s', 'shRNA': 'CD86', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2375015': {'line': 'MM.1s', 'shRNA': 'CD28', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2375014': {'line': 'MM.1s', 'shRNA': 'Gapdh', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2564992': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2564993': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2375019': {'line': 'RPMI8226', 'shRNA': 'CD28', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2564991': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2564996': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2564997': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2564994': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2564995': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM1565998': {'type': 'Monocyte-derived dendritic cells', 'condition': 'Non-infected'}, 'GSM1565999': {'type': 'Monocyte-derived dendritic cells', 'condition': 'MTB-infected'}, 'GSM922956': {'lineage': 'mesoderm', 'description': 'Isolated Poly(A) RNA', 'datatype': 'RnaSeq', 'lab': 'Yale', 'sex': 'F', 'cell': 'K562', 'rnaextract': 'polyA', 'treatment': 'IFNa6h', 'karyotype': 'cancer', 'organism': 'human'}, 'GSM1565997': {'type': 'Monocyte-derived dendritic cells', 'condition': 'MTB-infected'}, 'GSM1722955': {'tissue': 'Bone', 'score': '76.8581118', 'stage': 'metastatic castration resistant'}, 'GSM1722954': {'tissue': 'Bone', 'score': '73.11577366', 'stage': 'metastatic castration resistant'}, 'GSM1722957': {'tissue': 'Bone', 'score': '79.21576064', 'stage': 'metastatic castration resistant'}, 'GSM1722956': {'tissue': 'Bone', 'score': '78.85247994', 'stage': 'metastatic castration resistant'}, 'GSM1722951': {'tissue': 'Bone', 'score': '51.72692313', 'stage': 'metastatic castration resistant'}, 'GSM1722950': {'tissue': 'Bone', 'score': '60.71188767', 'stage': 'metastatic castration resistant'}, 'GSM1722953': {'tissue': 'Bone', 'score': '72.11023951', 'stage': 'metastatic castration resistant'}, 'GSM1722952': {'tissue': 'Bone', 'score': '71.46917378', 'stage': 'metastatic castration resistant'}, 'GSM1722959': {'tissue': 'Bone', 'score': '81.62629358', 'stage': 'metastatic castration resistant'}, 'GSM1722958': {'tissue': 'Bone', 'score': '80.06111251', 'stage': 'metastatic castration resistant'}, 'GSM1896258': {'individual': 'EU80', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896259': {'individual': 'EU80', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2275018': {'area_under_the_curve': '0.885373281', 'siteandparticipantcode': '464149', 'baseline_area_under_the_curve': '0.953871071', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '92.81896765', 'auc_percent_of_baseline': '92.81896765', 'trunkbarcode': '945925', 'sampleID': 'S10741', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib863', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_464149', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib863', 'studysiteshort': 'UCSF'}, 'GSM2275019': {'area_under_the_curve': '0.229062344', 'siteandparticipantcode': '406442', 'baseline_area_under_the_curve': '0.648708281', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '35.31053177', 'auc_percent_of_baseline': '35.31053177', 'trunkbarcode': '922049', 'sampleID': 'S10750', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib864', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_406442', 'gender': 'Female', 'age': '13', 'race': 'White', 'libraryid': 'lib864', 'studysiteshort': 'COLUMBIA'}, 'GSM2275014': {'area_under_the_curve': '0.874822656', 'siteandparticipantcode': '156104', 'baseline_area_under_the_curve': '0.917645781', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '95.33337091', 'auc_percent_of_baseline': '95.33337091', 'trunkbarcode': '929107', 'sampleID': 'S10734', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib859', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'Control', 'name': 'AbATE_156104', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib859', 'studysiteshort': 'COLORADO'}, 'GSM2275015': {'area_under_the_curve': '0.931816719', 'siteandparticipantcode': '255654', 'baseline_area_under_the_curve': '1.02982375', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '90.48312575', 'auc_percent_of_baseline': '90.48312575', 'trunkbarcode': '947519', 'sampleID': 'S10737', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib860', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_255654', 'gender': 'Female', 'age': '13', 'race': 'White', 'libraryid': 'lib860', 'studysiteshort': 'UCSF'}, 'GSM2275016': {'area_under_the_curve': '0.340774844', 'siteandparticipantcode': '768498', 'baseline_area_under_the_curve': '0.426317656', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '79.93448987', 'auc_percent_of_baseline': '79.93448987', 'trunkbarcode': '948301', 'sampleID': 'S10738', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib861', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_768498', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib861', 'studysiteshort': 'UCSF'}, 'GSM2275017': {'area_under_the_curve': '0.364720625', 'siteandparticipantcode': '692210', 'baseline_area_under_the_curve': '0.756541875', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '48.20891441', 'auc_percent_of_baseline': '48.20891441', 'trunkbarcode': '947010', 'sampleID': 'S10739', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib862', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'Control', 'name': 'AbATE_692210', 'gender': 'Female', 'age': '15', 'race': 'White; Asian', 'libraryid': 'lib862', 'studysiteshort': 'UCSF'}, 'GSM2275010': {'area_under_the_curve': '0.881235781', 'siteandparticipantcode': '800847', 'baseline_area_under_the_curve': '0.776763906', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '113.4496305', 'auc_percent_of_baseline': '113.4496305', 'trunkbarcode': '936735', 'sampleID': 'S10730', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib855', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_800847', 'gender': 'Male', 'age': '10', 'race': 'White', 'libraryid': 'lib855', 'studysiteshort': 'COLORADO'}, 'GSM2275011': {'area_under_the_curve': '0.966623438', 'siteandparticipantcode': '268024', 'baseline_area_under_the_curve': '0.997396094', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '96.91470054', 'auc_percent_of_baseline': '96.91470054', 'trunkbarcode': '936733', 'sampleID': 'S10731', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib856', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_268024', 'gender': 'Male', 'age': '14', 'race': 'White', 'libraryid': 'lib856', 'studysiteshort': 'COLORADO'}, 'GSM2275012': {'area_under_the_curve': '0.462313906', 'siteandparticipantcode': '612273', 'baseline_area_under_the_curve': '0.78736625', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '58.71650026', 'auc_percent_of_baseline': '58.71650026', 'trunkbarcode': '917950', 'sampleID': 'S10732', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib857', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_612273', 'gender': 'Male', 'age': '29', 'race': 'White', 'libraryid': 'lib857', 'studysiteshort': 'COLORADO'}, 'GSM2275013': {'area_under_the_curve': '0.285280625', 'siteandparticipantcode': '325907', 'baseline_area_under_the_curve': '0.71496', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '39.90162037', 'auc_percent_of_baseline': '39.90162037', 'trunkbarcode': '936734', 'sampleID': 'S10733', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib858', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_325907', 'gender': 'Male', 'age': '16', 'race': 'White', 'libraryid': 'lib858', 'studysiteshort': 'COLORADO'}, 'GSM2243448': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243449': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'B6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2747610': {'passages': '4', 'type': 'retina pigment epithelium', 'Stage': '4 days'}, 'GSM2747611': {'passages': '4', 'type': 'retina pigment epithelium', 'Stage': '5 days'}, 'GSM2243440': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'D4', 'cluster': '2', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Oligodendrocyte', 'id': 'BT_S2'}, 'GSM2243441': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243446': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'D6', 'cluster': '9', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'OPC', 'id': 'BT_S2'}, 'GSM2243447': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243444': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2731744': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM921000': {'barcode': 'TGAAGC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd6'}, 'GSM921001': {'barcode': 'ATACAG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd7'}, 'GSM921002': {'barcode': 'CTTCTG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Noninduced', 'name': 'Daphne', 'day': 'd0'}, 'GSM921003': {'barcode': 'GAGATC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd2'}, 'GSM921004': {'barcode': 'CCGACG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd3'}, 'GSM921005': {'barcode': 'CTCCAT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd4'}, 'GSM921006': {'barcode': 'AAAACG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd5'}, 'GSM921007': {'barcode': 'TAGCAT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd6'}, 'GSM1104012': {'type': 'Benign cell lines (HMEC)'}, 'GSM1104013': {'type': 'Benign cell lines (HMEC)'}, 'GSM1104010': {'type': 'Benign cell lines (HMEC)'}, 'GSM1104011': {'type': 'Benign cell lines (HMEC)'}, 'GSM1104016': {'type': 'Benign cell lines (HMEC)'}, 'GSM1104017': {'type': 'Benign cell lines (HMEC)'}, 'GSM1104014': {'type': 'Benign cell lines (HMEC)'}, 'GSM1104015': {'type': 'Benign cell lines (HMEC)'}, 'GSM2451177': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2332531': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2332530': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332533': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2332532': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332534': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2256084': {'infected': 'hela_unique:TSS102129_+_128231079.23-P1P2', 'type': 'HeLa'}, 'GSM2451176': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451175': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2724464': {'line': 'Kif2b', 'type': 'Kif2b brain metastasis, mouse number 32'}, 'GSM2724465': {'line': 'Control', 'type': 'Control brain metastasis, mouse number 31'}, 'GSM2724460': {'line': 'Control', 'type': 'Control lung metastasis, mouse number 35'}, 'GSM2724461': {'line': 'Control', 'type': 'Control brain metastasis, mouse number 36'}, 'GSM2724462': {'line': 'Control', 'type': 'Control bone metastasis, mouse number 36'}, 'GSM2724463': {'line': 'Control', 'type': 'Control bone metastasis, mouse number 72'}, 'GSM2458849': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.17'}, 'GSM1612313': {'imortalization': 'none', 'medium': 'none', 'type': 'endothelial'}, 'GSM2048508': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048509': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1642794': {'line': 'AsPC1', 'type': 'Pancreatic adenocarcinoma cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642795': {'line': 'AsPC1', 'type': 'Pancreatic adenocarcinoma cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM2048504': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048505': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048506': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1642799': {'line': 'HeLa', 'type': 'Cervical cancer cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM2048500': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048501': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048502': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048503': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2109290': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2058099': {'line': 'HCT116', 'tissue': 'colorectal cancer cell line'}, 'GSM2109291': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2058097': {'tissue': 'normal colon crypt'}, 'GSM2058096': {'tissue': 'normal colon crypt'}, 'GSM2058095': {'tissue': 'normal colon crypt'}, 'GSM2481922': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2481925': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2481924': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2058091': {'tissue': 'primary colorectal cancer tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058090': {'tissue': 'primary colorectal cancer tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2109293': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2256087': {'infected': 'hela_unique:TSS102124_-_128241258.23-CUFF.49125.24,CUFF.49125.41', 'type': 'HeLa'}, 'GSM2109294': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2451173': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2746565': {'with': 'scramble', 'line': 'HES2', 'type': 'human embryonic stem cells'}, 'GSM2109295': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2414783': {'line': 'LIM1215', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414782': {'line': 'IS3', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414781': {'line': 'IS2', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414780': {'line': 'IS1', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414787': {'line': 'LIM2405', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414786': {'line': 'LIM2099', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2277418': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277419': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277416': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277417': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2414789': {'line': 'LIM2551', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414788': {'line': 'LIM2537', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2277412': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277413': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277410': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277411': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2109298': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109299': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2451172': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1546664': {'gender': 'male', 'individual': 'patient1', 'tissue': 'matched normal'}, 'GSM1276889': {'score': '8.8', 'sequence': 'GCCAAT', 'targeted': 'HNRPK', 'number': '6', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276888': {'score': '9.1', 'sequence': 'ATCACG', 'targeted': 'HNRPK', 'number': '1', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276881': {'score': '9.3', 'sequence': 'ACTTGA', 'targeted': 'SRSF10', 'number': '8', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276880': {'score': '9.2', 'sequence': 'CGATGT', 'targeted': 'SRSF10', 'number': '2', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276883': {'score': '9.1', 'sequence': 'CAGATC', 'targeted': 'RBMX', 'number': '7', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276882': {'score': '8.5', 'sequence': 'TTAGGC', 'targeted': 'RBMX', 'number': '3', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276885': {'score': '8.9', 'sequence': 'CAGATC', 'targeted': 'ADAR', 'number': '7', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276884': {'score': '9.1', 'sequence': 'ACAGTG', 'targeted': 'RBMX', 'number': '5', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276887': {'score': '8.7', 'sequence': 'GATCAG', 'targeted': 'ADAR', 'number': '9', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276886': {'score': '9.1', 'sequence': 'TGACCA', 'targeted': 'ADAR', 'number': '4', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1580917': {'death': '64', 'rin': '8.7', 'reads': '77198978', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '19'}, 'GSM1580916': {'death': '66', 'rin': '8.4', 'reads': '80696360', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '32'}, 'GSM1580915': {'death': '57', 'rin': '7.8', 'reads': '123118398', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '18'}, 'GSM1580914': {'death': '55', 'rin': '7.6', 'reads': '82917984', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '26'}, 'GSM1580913': {'death': '36', 'rin': '8.5', 'reads': '80103722', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '21'}, 'GSM1580912': {'death': '46', 'rin': '8.2', 'reads': '85890116', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '30'}, 'GSM1580911': {'death': '52', 'rin': '7.4', 'reads': '99946984', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '23'}, 'GSM1580910': {'death': '106', 'rin': '7.6', 'reads': '86840836', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '21'}, 'GSM1545669': {'strain': 'HCT116', 'by': 'scramble shRNA', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'serum': 'starved'}, 'GSM1580919': {'onset': '63', 'death': '69', 'score': '1.081', 'grade': '3', 'rin': '7.5', 'reads': '71015288', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '6', 'cag': '41', 'pmi': '5.75'}, 'GSM1580918': {'onset': '44', 'death': '55', 'score': '0.922', 'grade': '3', 'rin': '7.1', 'reads': '74635390', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '11', 'cag': '45', 'pmi': '37.25'}, 'GSM3067241': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'serum starvation', 'fraction': 'polysomal RNA'}, 'GSM3067240': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'serum starvation', 'fraction': 'polysomal RNA'}, 'GSM3067243': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'control', 'fraction': 'riboLace'}, 'GSM3067242': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'control', 'fraction': 'riboLace'}, 'GSM3067245': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'serum starvation + EGF treatment', 'fraction': 'riboLace'}, 'GSM3067244': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'serum starvation + EGF treatment', 'fraction': 'riboLace'}, 'GSM3067247': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'serum starvation', 'fraction': 'riboLace'}, 'GSM3067246': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'serum starvation', 'fraction': 'riboLace'}, 'GSM3067249': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'control', 'fraction': 'total RNA'}, 'GSM3067248': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'control', 'fraction': 'total RNA'}, 'GSM1359518': {'expression': 'empty vector', 'tissue': 'tumor', 'type': 'prostate cancer cell line DU-145 xenograft'}, 'GSM1359513': {'line': 'LEC-219', 'type': 'Dermal lymphatic endothelial cells', 'infection': 'rKSHV.219'}, 'GSM1359512': {'line': 'LEC', 'type': 'Dermal lymphatic endothelial cells'}, 'GSM1359511': {'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM1359510': {'antibody': 'IgG (Millipore, pp64b)', 'line': 'LEC-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM1359517': {'expression': 'wild type KLF5', 'tissue': 'tumor', 'type': 'prostate cancer cell line DU-145 xenograft'}, 'GSM1359516': {'expression': 'KLF5 mutant K369R', 'tissue': 'tumor', 'type': 'prostate cancer cell line DU-145 xenograft'}, 'GSM1359515': {'line': 'LEC-219', 'type': 'Dermal lymphatic endothelial cells', 'infection': 'rKSHV.219'}, 'GSM1359514': {'line': 'LEC', 'type': 'Dermal lymphatic endothelial cells'}, 'GSM1678809': {'knockdown': 'No', 'type': 'HBL melanocyte cells', 'fraction': 'cytoplasmic'}, 'GSM1678808': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'whole cell'}, 'GSM2026993': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'A6NGD5'}, 'GSM2026992': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P10073'}, 'GSM2026991': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q03923'}, 'GSM2026990': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q96MU6'}, 'GSM1678803': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM1678802': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'whole cell'}, 'GSM1678801': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'whole cell'}, 'GSM1678800': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM1678807': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'whole cell'}, 'GSM1678806': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM1678805': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM1678804': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM2816244': {'line': 'H9'}, 'GSM835259': {'line': 'MCF10A-Myc', 'type': 'normal breast epithlial', 'phenotype': 'Pin1-expressing'}, 'GSM2109287': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109286': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109285': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109284': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109283': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109282': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109281': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109280': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM1545679': {'strain': 'HCT116', 'by': 'shXPB', 'type': 'human colon cancer cell', 'treatment': 'DMSO for 1 hour', 'serum': 'starved'}, 'GSM1545678': {'strain': 'HCT116', 'by': 'scramble shRNA', 'type': 'human colon cancer cell', 'treatment': 'TPL for 1 hour', 'serum': 'starved'}, 'GSM2109289': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109288': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM1536247': {'activation': 'none', 'passages': '7-8', 'bardcode': 'GATCAG'}, 'GSM2544228': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM1536248': {'activation': 'anti-CD3/CD28 beads, 48 hours', 'passages': '7-8', 'bardcode': 'TAGCTT'}, 'GSM1536249': {'activation': 'none', 'passages': '7-8', 'bardcode': 'GTTTCG'}, 'GSM2112553': {'line': 'A431', 'vector': 'none', 'treatment': 'YAP1 siRNA'}, 'GSM2112552': {'line': 'A431', 'vector': 'none', 'treatment': 'YAP1 siRNA'}, 'GSM2112551': {'line': 'A431', 'vector': 'none', 'treatment': 'control siRNA'}, 'GSM2094779': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM digoxin for 24 hours'}, 'GSM2112557': {'line': 'A431', 'vector': 'YAP1 S5A (constitutively active YAP1 mutant)', 'treatment': 'none'}, 'GSM2112556': {'line': 'A431', 'vector': 'YAP1 S5A (constitutively active YAP1 mutant)', 'treatment': 'none'}, 'GSM2112555': {'line': 'A431', 'vector': 'empty vector', 'treatment': 'none'}, 'GSM2112554': {'line': 'A431', 'vector': 'none', 'treatment': 'YAP1 siRNA'}, 'GSM2094772': {'line': 'TPC-1', 'protocol': 'TPC-1 cell line treated with DMSO vehicle for 24 hours'}, 'GSM1245253': {'antibody': 'PR', 'line': 'T47D', 'passages': '5-8', 'type': 'breast cancer cell line', 'manufacturer': 'Santa Cruz'}, 'GSM2094770': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with DMSO vehicle for 72 hours'}, 'GSM2112558': {'line': 'A431', 'vector': 'YAP1 S5A (constitutively active YAP1 mutant)', 'treatment': 'none'}, 'GSM1505846': {'gender': 'male', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '03-04'}, 'GSM2141528': {'individual': 'AF195', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2208830': {'treatment': 'TRCN0000036281 (CPTsh2) KnockDown'}, 'GSM2094775': {'line': 'BC-PAP', 'protocol': 'BC-PAP cell line treated with 50 µM proscillaridin A for 24 hours'}, 'GSM2141539': {'individual': 'AF93', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141538': {'individual': 'AF93', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141529': {'individual': 'AF195', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2862287': {'line': 'NHDF1', 'type': 'IPSC'}, 'GSM2862286': {'line': 'NHDF1', 'type': 'IPSC'}, 'GSM2862285': {'line': 'AD4-01', 'type': 'IPSC'}, 'GSM2862284': {'line': 'AD4-01', 'type': 'IPSC'}, 'GSM2141531': {'individual': 'AF55', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141530': {'individual': 'AF195', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141533': {'individual': 'AF75', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141532': {'individual': 'AF55', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141535': {'individual': 'AF75', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141534': {'individual': 'AF75', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141537': {'individual': 'AF91', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141536': {'individual': 'AF89', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1369950': {'vendor': 'Abcam', 'antibody': 'H3', 'type': 'MCF10A'}, 'GSM2588938': {'type': 'HuT78', 'treatment': 'Anti-CD3/Anti-CD28', 'sequence': 'N/A'}, 'GSM2391169': {'disease': 'NSCLC'}, 'GSM2391168': {'disease': 'NSCLC'}, 'GSM1369951': {'vendor': 'Millipore', 'antibody': 'AGO1', 'type': 'MCF10A'}, 'GSM2588932': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'TCTGAAGGAGGTATCTATTT'}, 'GSM2588933': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'GTGGGTGATTCTGTGGGCAG'}, 'GSM2391167': {'disease': 'NSCLC'}, 'GSM2391166': {'disease': 'NSCLC'}, 'GSM2588936': {'type': 'HuT78', 'treatment': 'PBS', 'sequence': 'N/A'}, 'GSM2588937': {'type': 'HuT78', 'treatment': 'Anti-CD3/Anti-CD28', 'sequence': 'N/A'}, 'GSM2588934': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'GTGGGTGATTCTGTGGGCAG'}, 'GSM2588935': {'type': 'HuT78', 'treatment': 'PBS', 'sequence': 'N/A'}, 'GSM2141522': {'individual': 'AF191', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2227055': {'tissue': 'Heart', 'stage': 'Adult'}, 'GSM1695892': {'age': '53', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM2227053': {'tissue': 'Heart', 'stage': 'Adult'}, 'GSM2230425': {'antibody': 'none', 'region': 'Spinal Cord', 'type': 'NA', 'age': '11 weeks'}, 'GSM2227051': {'tissue': 'Heart', 'stage': 'day 48 from hPSC'}, 'GSM2227050': {'tissue': 'Heart', 'stage': 'day 48 from hPSC'}, 'GSM1695895': {'age': '50', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695894': {'age': '41', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695897': {'age': '54', 'tissue': 'breast ductal carcinoma in situ', 'race': 'Hispanic'}, 'GSM2141526': {'individual': 'AF193', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1695896': {'age': '54', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM2141527': {'individual': 'AF193', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2790805': {'status': 'Healthy', 'donor': '28', 'type': 'Monocyte', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'point': '1 month'}, 'GSM1695899': {'age': '48', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM2790807': {'status': 'Healthy', 'donor': '29', 'type': 'Monocyte', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'point': '1 month'}, 'GSM2790806': {'status': 'Healthy', 'donor': '29', 'type': 'Monocyte', 'treatment': 'None', 'point': 'Baseline'}, 'GSM2790801': {'status': 'Healthy', 'donor': '20', 'type': 'Monocyte', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'point': '1 month'}, 'GSM2141524': {'individual': 'AF191', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2790803': {'status': 'Healthy', 'donor': '24', 'type': 'Monocyte', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'point': '1 month'}, 'GSM1695898': {'age': '46', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM2141525': {'individual': 'AF193', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2790809': {'status': 'Healthy', 'donor': '18', 'type': 'Monocyte', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'point': '1 month'}, 'GSM2790808': {'status': 'Healthy', 'donor': '18', 'type': 'Monocyte', 'treatment': 'None', 'point': 'Baseline'}, 'GSM1957289': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957288': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957283': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957282': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957281': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957280': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957287': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2437190': {'status': 'NGT', 'id': 'GD13'}, 'GSM2437193': {'status': 'GDM', 'id': 'GD16'}, 'GSM2437192': {'status': 'NGT', 'id': 'GD15'}, 'GSM2062416': {'line': 'Huh7', 'passages': 'P3'}, 'GSM2062417': {'line': 'Huh7', 'passages': 'P3'}, 'GSM1706728': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM1706729': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM1706724': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1706725': {'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1706726': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM1706727': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Sendai Virus'}, 'GSM1706720': {'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1706721': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1706722': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1706723': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM2610888': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610889': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610882': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610883': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610880': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610881': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610886': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610887': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610884': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610885': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2120804': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'sham-irradiated', 'point': '14 d'}, 'GSM2120805': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'sham-irradiated', 'point': '14 d'}, 'GSM2120806': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '14 d'}, 'GSM2120807': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '14 d'}, 'GSM2120800': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '4 h'}, 'GSM2120801': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '4h'}, 'GSM2120802': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '24 h'}, 'GSM2120803': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'irradiated', 'point': '24 h'}, 'GSM2120808': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'sham-irradiated', 'point': '4 h'}, 'GSM2120809': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'sham-irradiated', 'point': '4 h'}, 'GSM3020700': {'passages': '15-20', 'type': 'HFF', 'infection': 'HCMV', 'time': '72h'}, 'GSM2327731': {'type': 'Transformed B lymphoblastoid cells', 'genotype': 'NEK6 SE1 homozygote'}, 'GSM2327730': {'type': 'Transformed B lymphoblastoid cells', 'genotype': 'NEK6 SE1 wild-type'}, 'GSM2327733': {'type': 'Transformed B lymphoblastoid cells', 'genotype': 'NEK6 SE1 homozygote'}, 'GSM2327732': {'type': 'Transformed B lymphoblastoid cells', 'genotype': 'NEK6 SE1 homozygote'}, 'GSM1956158': {'a': '57603', 'cd38': '322', 'cd49f': '1123', 'w': '68204', 'h': '55350', 'lin': '84', 'cd34': '4729', 'cd90': '-149', 'cd7': '343', 'cd10': '7577', 'time': '17591', 'cd135': '2924', 'cd45ra': '9945'}, 'GSM1956159': {'a': '53697', 'cd38': '119', 'cd49f': '316', 'w': '66537', 'h': '52889', 'lin': '-100', 'cd34': '6281', 'cd90': '8247', 'cd7': '337', 'cd10': '585', 'time': '17805', 'cd135': '1743', 'cd45ra': '97'}, 'GSM1956150': {'a': '49093', 'cd38': '-38', 'cd49f': '362', 'w': '66129', 'h': '48653', 'lin': '-91', 'cd34': '9729', 'cd90': '59', 'cd7': '389', 'cd10': '71561', 'time': '16054', 'cd135': '16126', 'cd45ra': '11536'}, 'GSM1956151': {'a': '66783', 'cd38': '932', 'cd49f': '944', 'w': '66885', 'h': '65436', 'lin': '-244', 'cd34': '6680', 'cd90': '1136', 'cd7': '-190', 'cd10': '1545', 'time': '15828', 'cd135': '5531', 'cd45ra': '3065'}, 'GSM1956152': {'a': '59865', 'cd38': '666', 'cd49f': '622', 'w': '69198', 'h': '56697', 'lin': '699', 'cd34': '11213', 'cd90': '11951', 'cd7': '-689', 'cd10': '1406', 'time': '15629', 'cd135': '3164', 'cd45ra': '369'}, 'GSM1956153': {'a': '51975', 'cd38': '1156', 'cd49f': '1054', 'w': '68375', 'h': '49817', 'lin': '433', 'cd34': '7087', 'cd90': '1369', 'cd7': '176', 'cd10': '769', 'time': '15417', 'cd135': '5442', 'cd45ra': '377'}, 'GSM1956154': {'a': '68930', 'cd38': '8', 'cd49f': '1581', 'w': '67791', 'h': '66637', 'lin': '484', 'cd34': '7037', 'cd90': '1485', 'cd7': '147', 'cd10': '771', 'time': '15210', 'cd135': '2588', 'cd45ra': '260'}, 'GSM1956155': {'a': '64382', 'cd38': '180', 'cd49f': '1450', 'w': '66324', 'h': '63617', 'lin': '170', 'cd34': '9517', 'cd90': '2492', 'cd7': '411', 'cd10': '502', 'time': '15002', 'cd135': '2739', 'cd45ra': '1322'}, 'GSM1956156': {'a': '76544', 'cd38': '-276', 'cd49f': '376', 'w': '66945', 'h': '74933', 'lin': '-272', 'cd34': '7747', 'cd90': '155', 'cd7': '489', 'cd10': '22986', 'time': '14789', 'cd135': '2396', 'cd45ra': '7219'}, 'GSM1956157': {'a': '46528', 'cd38': '1040', 'cd49f': '135', 'w': '68075', 'h': '44792', 'lin': '-56', 'cd34': '7649', 'cd90': '1611', 'cd7': '295', 'cd10': '701', 'time': '17352', 'cd135': '1911', 'cd45ra': '258'}, 'GSM1945945': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18502', 'for': '60min'}, 'GSM1613673': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1521572': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2890016': {'line': 'Granta-519', 'type': 'Mantle Cell Lymphoma'}, 'GSM2689099': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1613672': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2689093': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689092': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689091': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689090': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689097': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689096': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689095': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689094': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2044629': {'age': '26', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044628': {'age': '26', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2326062': {'type': 'Human embryonic stem cell'}, 'GSM2326063': {'type': 'Human embryonic stem cell'}, 'GSM2326060': {'type': 'Human embryonic stem cell'}, 'GSM2326061': {'type': 'Human embryonic stem cell'}, 'GSM2326066': {'type': 'Human embryonic stem cell'}, 'GSM2326067': {'type': 'Human embryonic stem cell'}, 'GSM2326064': {'type': 'Human embryonic stem cell'}, 'GSM2326065': {'type': 'Human embryonic stem cell'}, 'GSM2326068': {'type': 'Human embryonic stem cell'}, 'GSM2326069': {'type': 'Human embryonic stem cell'}, 'GSM2576759': {'type': 'iPSC-derived microglia'}, 'GSM2576758': {'tissue': 'Fetal brain', 'type': 'Primary microglia'}, 'GSM984214': {'status': 'normal', 'tissue': 'colon', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984215': {'status': 'normal', 'tissue': 'colon', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984216': {'status': 'normal', 'tissue': 'kidney', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984217': {'status': 'normal', 'tissue': 'kidney', 'method': 'FFPE', 'stage': 'adult'}, 'GSM1631273': {'line': 'HEK293T', 'gene': 'dCas9-p300 D1399Y', 'sites': 'IL1RN'}, 'GSM1631272': {'line': 'HEK293T', 'gene': 'dCas9-p300 core', 'sites': 'IL1RN'}, 'GSM1631271': {'line': 'HEK293T', 'gene': 'dCas9-VP64', 'sites': 'IL1RN'}, 'GSM1631270': {'line': 'HEK293T', 'gene': 'dcas9', 'sites': 'IL1RN'}, 'GSM1937098': {'age': 'Adult', 'tissue': 'testis', 'type': 'Leydig cells', 'Sex': 'Male'}, 'GSM1937099': {'age': 'Adult', 'tissue': 'testis', 'type': 'Leydig cells', 'Sex': 'Male'}, 'GSM4486819': {'type': 'HeLa Kyoto'}, 'GSM2576751': {'tissue': 'Peripheral blood', 'type': 'Circulating macrophage', 'treatment': 'Extra 2 days in IL-4 and IL-13'}, 'GSM2576750': {'tissue': 'Peripheral blood', 'type': 'Circulating macrophage', 'treatment': 'Extra 2 days in IFN-γ and LPS'}, 'GSM1118045': {'transduction': 'lentivirus carrying DUX4-fl', 'line': 'MB135'}, 'GSM2348545': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2297704': {'tissue': 'glioblastoma', 'Sex': 'male'}, 'GSM2297705': {'tissue': 'brain tissue', 'Sex': 'male'}, 'GSM2297706': {'tissue': 'brain tissue', 'Sex': 'male'}, 'GSM1118046': {'transduction': 'lentivirus carrying GFP', 'line': 'MB135'}, 'GSM2297702': {'tissue': 'glioblastoma', 'Sex': 'male'}, 'GSM2297703': {'tissue': 'glioblastoma', 'Sex': 'male'}, 'GSM2348544': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM763410': {'line': 'OCI-LY1', 'antibody': 'BCOR'}, 'GSM2309867': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Cystinosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '29.62'}, 'GSM1613674': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1118047': {'transduction': 'lentivirus carrying DUX4-fl', 'line': '54-1'}, 'GSM1558075': {'gender': 'Male', 'age': '35', 'disease': 'erythroleukemia'}, 'GSM1558074': {'gender': 'Male', 'age': '35', 'disease': 'erythroleukemia'}, 'GSM1558077': {'gender': 'Male', 'age': '35', 'disease': 'erythroleukemia'}, 'GSM1558076': {'gender': 'Male', 'age': '35', 'disease': 'erythroleukemia'}, 'GSM1558071': {'gender': 'Male', 'age': '75', 'disease': 'normal'}, 'GSM1558070': {'gender': 'Male', 'age': '38', 'disease': 'normal'}, 'GSM1558073': {'gender': 'Male', 'age': '35', 'disease': 'erythroleukemia'}, 'GSM1558072': {'gender': 'Male', 'age': '35', 'disease': 'erythroleukemia'}, 'GSM2859362': {'type': 'hemapoietic stem cell', 'treatment': 'M-CSF'}, 'GSM2859360': {'type': 'hemapoietic stem cell', 'treatment': 'M-CSF'}, 'GSM2859361': {'type': 'hemapoietic stem cell', 'treatment': 'M-CSF'}, 'GSM2476824': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476825': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2471144': {'lineage': 'granulomonocytic', 'transduction': 'empty vector', 'type': 'CFU-M'}, 'GSM2784369': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '0h'}, 'GSM1901501': {'count': '1', 'ercc_mix': 'mix2', 'type': 'NA', 'ercc_dilution': '1000000', 'pass': 'FALSE'}, 'GSM2471145': {'lineage': 'granulomonocytic', 'transduction': 'empty vector', 'type': 'CFU-G'}, 'GSM2047743': {'well': 'C09', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047742': {'well': 'C08', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047741': {'well': 'C07', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047740': {'well': 'C06', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047747': {'well': 'D01', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047746': {'well': 'C12', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047745': {'well': 'C11', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047744': {'well': 'C10', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2348543': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2047749': {'well': 'D03', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047748': {'well': 'D02', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1906573': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'H2O2', 'enrichment': 'none'}, 'GSM1906572': {'line': 'HEK293T', 'type': 'ALKBH3 KO HEK293T', 'genotype': 'ALKBH3 Knockout', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody followed by demethylase treatment'}, 'GSM1906571': {'line': 'HEK293T', 'type': 'ALKBH3 KO HEK293T', 'genotype': 'ALKBH3 Knockout', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody followed by demethylase treatment'}, 'GSM1906570': {'line': 'HEK293T', 'type': 'ALKBH3 KO HEK293T', 'genotype': 'ALKBH3 Knockout', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1906577': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'starvation', 'enrichment': 'none'}, 'GSM1906576': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'H2O2', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1906575': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'H2O2', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1906574': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'H2O2', 'enrichment': 'none'}, 'GSM2194206': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1906578': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'starvation', 'enrichment': 'none'}, 'GSM2437188': {'status': 'NGT', 'id': 'GD11'}, 'GSM2176218': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176219': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176216': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176217': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176214': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2437189': {'status': 'GDM', 'id': 'GD12'}, 'GSM2176212': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176213': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176210': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176211': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2747360': {'line': 'NHDF Line 2', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM2747361': {'line': 'NHDF Line 2', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM2747362': {'line': 'NHDF Line 2', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM2711702': {'type': 'SIX1+ cranial placodes'}, 'GSM2711705': {'type': 'non-neural ectoderm'}, 'GSM2711704': {'type': 'non-neural ectoderm'}, 'GSM2711707': {'type': 'H9 hESCs'}, 'GSM2747367': {'line': 'NHDF Line 3', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'control ASO'}, 'GSM1683265': {'type': 'U87 human glioma cells'}, 'GSM2437182': {'status': 'NGT', 'id': 'GD5'}, 'GSM1683267': {'type': 'U87 human glioma cells'}, 'GSM1683266': {'type': 'U87 human glioma cells'}, 'GSM1683261': {'type': 'U87 human glioma cells'}, 'GSM1683260': {'type': 'U87 human glioma cells'}, 'GSM1683263': {'type': 'U87 human glioma cells'}, 'GSM1683262': {'type': 'U87 human glioma cells'}, 'GSM2451379': {'compartment': 'Stroma', 'id': 'CUMC_066', 'library': 'NuGEN'}, 'GSM2451378': {'compartment': 'Epithelium', 'id': 'CUMC_066', 'library': 'NuGEN'}, 'GSM2451371': {'compartment': 'Bulk', 'id': 'CUMC_066', 'library': 'TruSeq'}, 'GSM2451370': {'compartment': 'Bulk', 'id': 'CUMC_064', 'library': 'TruSeq'}, 'GSM2451373': {'compartment': 'Bulk', 'id': 'CUMC_063', 'library': 'TruSeq'}, 'GSM2451372': {'compartment': 'Bulk', 'id': 'CUMC_061', 'library': 'TruSeq'}, 'GSM2451375': {'compartment': 'Bulk', 'id': 'CUMC_068', 'library': 'TruSeq'}, 'GSM2451374': {'compartment': 'Bulk', 'id': 'CUMC_067', 'library': 'TruSeq'}, 'GSM2451377': {'compartment': 'Stroma', 'id': 'CUMC_067', 'library': 'NuGEN'}, 'GSM2451376': {'compartment': 'Epithelium', 'id': 'CUMC_067', 'library': 'NuGEN'}, 'GSM1957294': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2700068': {'line': 'Parental HeyA8', 'tissue': 'Ovaries', 'genotype': 'WT', 'transfection': 'Treated cells with 25nM non-targeting siRNA # 2 (IDT)', 'point': 'for 2 days'}, 'GSM1957295': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2700066': {'line': 'Parental HeyA8', 'tissue': 'Ovaries', 'genotype': 'WT', 'transfection': 'Treated cells with 25nM non-targeting siRNA # 2 (Dharmacon)', 'point': 'for 2 days'}, 'GSM2700067': {'line': 'Parental HeyA8', 'tissue': 'Ovaries', 'genotype': 'WT', 'transfection': 'Treated cells with 25nM siL3 siRNA (Dharmacon)', 'point': 'for 2 days'}, 'GSM2931389': {'age': 'WEEK13', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931388': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931385': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931384': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931387': {'age': 'WEEK13', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931386': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931381': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931380': {'age': 'WEEK13', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931383': {'age': 'WEEK13', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931382': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2075287': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': 'Unknown', 'treatment': '250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'line': 'ARPE-19', 'type': 'Adult RPE cell line'}, 'GSM2075286': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '8', 'treatment': 'OTX2-MYCN Transduced Passage 7 RPE, 250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM2075285': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '8', 'treatment': 'OTX2-MYCN Transduced Passage 7 RPE, 250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM2075284': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '8', 'treatment': 'OTX2-MYCN Transduced Passage 7 RPE, 250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'id': 'hfRPE-020207-2'}, 'GSM2075283': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '7', 'treatment': '250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM2075282': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '7', 'treatment': '250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM2075281': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '7', 'treatment': '250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'id': 'hfRPE-020207-2'}, 'GSM2075280': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '7', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-111109'}, 'GSM1614658': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614659': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM2075289': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': 'Unknown', 'treatment': '250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'line': 'ARPE-19', 'type': 'Adult RPE cell line'}, 'GSM2075288': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': 'Unknown', 'treatment': '250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'line': 'ARPE-19', 'type': 'Adult RPE cell line'}, 'GSM2561595': {'variation': 'MCT8-deficient'}, 'GSM2561594': {'variation': 'MCT8-deficient'}, 'GSM2561597': {'variation': 'isogenic induced mutation on a control background'}, 'GSM2561596': {'variation': 'MCT8-deficient'}, 'GSM2561591': {'variation': 'isogenic corrected MCT8-deficient'}, 'GSM2561590': {'variation': 'healthy control'}, 'GSM2590768': {'tissue': 'bone marrow', 'type': 'Mature erythroblast CD34-CD71-GlyA+', 'markers': 'CD34- CD71- Gpa+'}, 'GSM2590769': {'tissue': 'bone marrow', 'type': 'CD34+CD33+ myeloid precursor', 'markers': 'CD15- CD33+ CD34+ CD11b- CD16- CD13+'}, 'GSM2590766': {'tissue': 'bone marrow', 'type': 'Immature proerythroblast CD34+CD71+GlyA-', 'markers': 'CD34+ CD71+ Gpa-'}, 'GSM2590767': {'tissue': 'bone marrow', 'type': 'Early Eryhtroblast CD34-CD71+GlyA-', 'markers': 'CD34- CD71+ Gpa-'}, 'GSM2561599': {'variation': 'isogenic induced mutation on a control background'}, 'GSM2561598': {'variation': 'isogenic induced mutation on a control background'}, 'GSM2028279': {'line': 'H9', 'antibody': 'N/A', 'treatment': '50 ng/mL Activin A for 6 hours', 'passage': '58-60'}, 'GSM1957298': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957299': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2170686': {'stage': 'Hepatic endoderm 2'}, 'GSM1950249': {'line': 'COLO357', 'treatment': 'KMT2C siRNA3'}, 'GSM2049164': {'line': 'MDA-LM2', 'rep': '2', 'fraction': 'TT'}, 'GSM2028277': {'line': 'H9', 'antibody': 'N/A', 'treatment': 'none', 'passage': '58-60'}, 'GSM2049161': {'line': 'MDA-LM2', 'rep': '1', 'fraction': 'RPF'}, 'GSM2049160': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM2049163': {'line': 'MDA-LM2', 'rep': '1', 'fraction': 'TT'}, 'GSM2049162': {'line': 'MDA-LM2', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049169': {'overexpression': 'control', 'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM2288029': {'transfection': 'Human DUX4', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2288028': {'transfection': 'Human DUX4', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2773439': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL mutant', 'batch': '2/26/2015'}, 'GSM2565443': {'construction': 'PLATE-Seq', 'drug': 'Tasisulam'}, 'GSM2840559': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840558': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840557': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840556': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840555': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840554': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840553': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840552': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840551': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840550': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2636208': {'type': 'primed embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636209': {'type': 'primed embryonic stem cell', 'genotype': 'wild type'}, 'GSM2170685': {'stage': 'Hepatic endoderm 2'}, 'GSM2170684': {'stage': 'Hepatic endoderm 2'}, 'GSM2170683': {'stage': 'Hepatic endoderm 2'}, 'GSM2170682': {'stage': 'Hepatic endoderm 2'}, 'GSM2170681': {'stage': 'Hepatic endoderm 2'}, 'GSM2170680': {'stage': 'Hepatic endoderm 2'}, 'GSM2636200': {'type': 'naive embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2636201': {'type': 'naive embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2636202': {'type': 'primed embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636203': {'type': 'primed embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636204': {'type': 'primed embryonic stem cell', 'genotype': 'wild type'}, 'GSM1835021': {'phase': 'G1 (1c)', 'status': 'Differentiated', 'line': 'h-pES10', 'type': 'Haploid NCAM1+ pES10-NPCs', 'passage': '21'}, 'GSM2636206': {'type': 'primed embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2170688': {'stage': 'Hepatic endoderm 2'}, 'GSM1411129': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411128': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411127': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411126': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411125': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM2779263': {'line': 'M397', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM2476362': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM1872865': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1704627': {'line': 'MCF7', 'sirna': 'control', 'time': '48h after transfection'}, 'GSM1599890': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599891': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599892': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599893': {'procedure': 'adjustable gastric banding', 'time': 'T0'}, 'GSM1599894': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599895': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599896': {'procedure': 'adjustable gastric banding', 'time': 'T0'}, 'GSM1599897': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599898': {'procedure': 'adjustable gastric banding', 'time': 'T0'}, 'GSM1599899': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM2632439': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632438': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632433': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632432': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632431': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632430': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632437': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632436': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632435': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632434': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1704628': {'line': 'MCF7', 'sirna': 'control', 'time': '48h after transfection'}, 'GSM1556699': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'variation': 'wildtype'}, 'GSM1915568': {'category': 'old_1', 'type': 'HFF', 'doublings': '64'}, 'GSM1915569': {'category': '-', 'type': 'MRC-5', 'doublings': '42'}, 'GSM2672082': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM1915560': {'category': '-', 'type': 'HFF', 'doublings': '26'}, 'GSM1915561': {'category': '-', 'type': 'HFF', 'doublings': '26'}, 'GSM1915562': {'category': '-', 'type': 'HFF', 'doublings': '26'}, 'GSM1915563': {'category': '-', 'type': 'HFF', 'doublings': '46'}, 'GSM1915564': {'category': '-', 'type': 'HFF', 'doublings': '46'}, 'GSM1915565': {'category': '-', 'type': 'HFF', 'doublings': '46'}, 'GSM1915566': {'category': 'old_1', 'type': 'HFF', 'doublings': '64'}, 'GSM1915567': {'category': 'old_1', 'type': 'HFF', 'doublings': '64'}, 'GSM2665763': {'age': 'Day 100', 'well': 'H9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665762': {'age': 'Day 100', 'well': 'C3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665761': {'age': 'Day 100', 'well': 'D4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665760': {'age': 'Day 100', 'well': 'B4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665767': {'age': 'Day 100', 'well': 'B6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665766': {'age': 'Day 100', 'well': 'G6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665765': {'age': 'Day 100', 'well': 'G9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665764': {'age': 'Day 100', 'well': 'A11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2629525': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 30 of differentiation'}, 'GSM2629524': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 30 of differentiation'}, 'GSM2629527': {'antibody': 'PAX7 (Developmental Studies Hybridoma Bank)', 'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 23 of differentiation'}, 'GSM2629526': {'antibody': 'none (input)', 'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 23 of differentiation'}, 'GSM2629521': {'type': 'H9 cells', 'treatment': 'untreated', 'time': 'day 23 of differentiation'}, 'GSM2629520': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 23 of differentiation'}, 'GSM2629523': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 30 of differentiation'}, 'GSM2629522': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 30 of differentiation'}, 'GSM2186831': {'stimulation': 'interferon gamma', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186830': {'stimulation': 'TLR2/1 ligand', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2303351': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM863383': {'type': '293T', 'treatment': 'siRNA transfection with 5nM siGPS2'}, 'GSM2303353': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303352': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303355': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303354': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM863384': {'type': '293T', 'treatment': 'siRNA transfection with 5nM siCTL'}, 'GSM2303356': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACCG268'}, 'GSM2303359': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303358': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACCG268'}, 'GSM2166419': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1957487': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1537309': {'gender': 'Female', 'line': 'SKBR3', 'type': 'HER2+'}, 'GSM2166418': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1574318': {'type': 'CFPAC1 cells transfected with empty vector', 'variation': 'empty vector control', 'background': 'CFPAC1'}, 'GSM1574319': {'type': 'CFPAC1 cells transfected with empty vector', 'variation': 'empty vector control', 'background': 'CFPAC1'}, 'GSM1574312': {'type': 'CFPAC1 clonal cell line', 'variation': 'wild type clone', 'background': 'CFPAC1'}, 'GSM1574313': {'type': 'CFPAC1 genome-edited clonal cell line', 'variation': 'ELF3-deleted CRISPR-Cas9 clone', 'background': 'CFPAC1'}, 'GSM1574310': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'PT45P1'}, 'GSM1574311': {'type': 'CFPAC1 clonal cell line', 'variation': 'wild type clone', 'background': 'CFPAC1'}, 'GSM1574316': {'type': 'CFPAC1 genome-edited clonal cell line', 'variation': 'KLF5-deleted CRISPR-Cas9 clone', 'background': 'CFPAC1'}, 'GSM1574317': {'type': 'CFPAC1 genome-edited clonal cell line', 'variation': 'KLF5-deleted CRISPR-Cas9 clone', 'background': 'CFPAC1'}, 'GSM1574314': {'type': 'CFPAC1 genome-edited clonal cell line', 'variation': 'ELF3-deleted CRISPR-Cas9 clone', 'background': 'CFPAC1'}, 'GSM1574315': {'type': 'CFPAC1 genome-edited clonal cell line', 'variation': 'ELF3-deleted CRISPR-Cas9 clone', 'background': 'CFPAC1'}, 'GSM2039409': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM2458833': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '7.75'}, 'GSM2458832': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.25'}, 'GSM2458835': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.42'}, 'GSM2458834': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '7.75'}, 'GSM2458837': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.75'}, 'GSM2458836': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '11.50'}, 'GSM2458839': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.17'}, 'GSM2458838': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.58'}, 'GSM1939014': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL wild type'}, 'GSM1939015': {'state': 'renal cell carcinoma', 'type': 'Tumor', 'genotype': 'Tumor'}, 'GSM1939012': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL mutant'}, 'GSM1939013': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL wild type'}, 'GSM1939010': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL wild type'}, 'GSM1939011': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL mutant'}, 'GSM2672083': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2311877': {'culture': '12', 'line': 'DCX+'}, 'GSM2311876': {'culture': '12', 'line': 'DCX+'}, 'GSM2311875': {'culture': '12', 'line': 'DCX+'}, 'GSM2311874': {'culture': '12', 'line': 'DCX+'}, 'GSM2311873': {'culture': '12', 'line': 'DCX+'}, 'GSM2311872': {'culture': '12', 'line': 'DCX+'}, 'GSM2311871': {'culture': '12', 'line': 'DCX+'}, 'GSM2311870': {'culture': '12', 'line': 'DCX+'}, 'GSM2456046': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2311879': {'culture': '12', 'line': 'DCX+'}, 'GSM2311878': {'culture': '12', 'line': 'DCX+'}, 'GSM2302086': {'timepoint': 'Pre', 'id': '34', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302087': {'timepoint': 'Post', 'id': '34', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302084': {'timepoint': 'Pre', 'id': '33', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302085': {'timepoint': 'Post', 'id': '33', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302082': {'timepoint': 'Pre', 'id': '32', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302083': {'timepoint': 'Post', 'id': '32', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302080': {'timepoint': 'Pre', 'id': '31', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302081': {'timepoint': 'Post', 'id': '31', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2069840': {'status': 'Dead', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'Y', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'Left Leg, SC', 'treatment': 'Pembrolizumab', 'id': 'Pt23', 'braf': 'V600K'}, 'GSM2069841': {'status': 'Dead', 'rnaseq': 'unstranded', 'gender': 'M', 'mapki': 'Y', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'L Outer Inguinal', 'time': 'pre-treatment', 'id': 'Pt25', 'treatment': 'Pembrolizumab'}, 'GSM2069842': {'status': 'Alive', 'rnaseq': 'stranded', 'gender': 'M', 'mapki': 'N', 'nras': 'T50I', 'site': 'UCLA', 'response': 'Complete Response', 'tissue': 'Melanoma biopsies', 'location': 'R upper arm', 'time': 'pre-treatment', 'id': 'Pt27', 'treatment': 'Pembrolizumab'}, 'GSM2069843': {'status': 'Alive', 'rnaseq': 'stranded', 'gender': 'M', 'mapki': 'N', 'nras': 'T50I', 'site': 'UCLA', 'response': 'Complete Response', 'tissue': 'Melanoma biopsies', 'location': 'R upper back', 'time': 'pre-treatment', 'id': 'Pt27', 'treatment': 'Pembrolizumab'}, 'GSM2069844': {'status': 'Dead', 'rnaseq': 'unstranded', 'gender': 'M', 'mapki': 'N', 'site': 'UCLA', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'Scalp, SC', 'nf1': 'R1653C', 'time': 'pre-treatment', 'id': 'Pt28', 'treatment': 'Pembrolizumab'}, 'GSM2069845': {'status': 'Dead', 'rnaseq': 'unstranded', 'gender': 'M', 'mapki': 'Y', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'Lung', 'time': 'pre-treatment', 'id': 'Pt29', 'treatment': 'Pembrolizumab'}, 'GSM2302088': {'timepoint': 'Pre', 'id': '35', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302089': {'timepoint': 'Post', 'id': '35', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2653577': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653576': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653575': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653574': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653573': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653572': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653571': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653570': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM1274124': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line', 'treatment': 'RON and MSP and shMBD4'}, 'GSM1274125': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line', 'treatment': 'RON and MSP and shMBD4'}, 'GSM1274120': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line', 'treatment': 'RON and MSP and shMBD4'}, 'GSM1274121': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line'}, 'GSM2653579': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653578': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2360628': {'sirna': 'Negative control siRNA (12935-112, Thermo Fisher Scientific)', 'line': 'MDA-231-D', 'type': 'basal type breast cancer cell line', 'treatment': '1 ng/ml for 24 h'}, 'GSM2360629': {'sirna': 'ZEB1, ZEB2 siRNAs (HSS110548 and HSS114854, Thermo Fisher Scientific)', 'line': 'MDA-231-D', 'type': 'basal type breast cancer cell line', 'treatment': 'no'}, 'GSM2188683': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-136', 'er': 'negative'}, 'GSM2170835': {'stage': 'iPSC line'}, 'GSM2107727': {'line': 'REH', 'treatment': 'non-targeting LNA GapmeR', 'time': '72h'}, 'GSM2735263': {'cohort': 'N/A', 'tils': 'Not evaluated', 'subtype': 'I', 'burden': 'Not evaluated', 'morphology': 'Not evaluated', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2170836': {'stage': 'iPSC line'}, 'GSM2170837': {'stage': 'iPSC line'}, 'GSM2101131': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101130': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101133': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101132': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101135': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101134': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101136': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2170830': {'stage': 'iPSC line'}, 'GSM2170831': {'stage': 'iPSC line'}, 'GSM2309568': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309569': {'source': 'biopsy', 'identifier': 'D', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309560': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2309561': {'source': 'biopsy', 'identifier': 'C', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309562': {'source': 'biopsy', 'identifier': 'C', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309563': {'source': 'biopsy', 'identifier': 'C', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309564': {'source': 'biopsy', 'identifier': 'C', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309565': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309566': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309567': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2153479': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153478': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2643505': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM PQ1+JQ1', 'time': '24 h'}, 'GSM2153473': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153472': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153471': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2643504': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM PA1+JQ1', 'time': '24 h'}, 'GSM2153477': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153476': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153475': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153474': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM1153917': {'sorted': 'In vitro expanded FOXP3-losing Treg cells', 'type': 'CD4+CD25highCD127low/- Treg cells', 'culture': '35 days'}, 'GSM1153916': {'sorted': 'In vitro expanded FOXP3+ Treg cells', 'type': 'CD4+CD25highCD127low/- Treg cells', 'culture': '35 days'}, 'GSM1821974': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM2170833': {'stage': 'iPSC line'}, 'GSM2364554': {'type': 'Mononuclear cells from full-term cord blood'}, 'GSM2364555': {'antibody': 'MLL1 (Bethyl, A300-086A)', 'type': 'Mononuclear cells from second trimester human fetal bone marrow'}, 'GSM2364556': {'type': 'Mononuclear cells from second trimester human fetal bone marrow'}, 'GSM2364550': {'antibody': 'MLL1 (Bethyl, A300-086A)', 'type': 'Presentation ALL patient sample engrafred in mice and harvested from spleen'}, 'GSM2364551': {'antibody': 'AF4 (Abcam, ab31812)', 'type': 'Presentation ALL patient sample engrafred in mice and harvested from spleen'}, 'GSM2392179': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2316989': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2392177': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392176': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392175': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2316985': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316982': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316983': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2392171': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2316981': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2360256': {'type': 'iMGL', 'treatment': 'None'}, 'GSM2575121': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2575120': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'A/California/04/09 (H1N1), MOI 2', 'point': '03h'}, 'GSM2575123': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'A/California/04/09 (H1N1), MOI 2', 'point': '06h'}, 'GSM2575122': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2575125': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2575124': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'A/California/04/09 (H1N1), MOI 2', 'point': '06h'}, 'GSM2575127': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'A/California/04/09 (H1N1), MOI 2', 'point': '12h'}, 'GSM2575126': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2575129': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2575128': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'A/California/04/09 (H1N1), MOI 2', 'point': '12h'}, 'GSM2360255': {'type': 'iMGL', 'treatment': 'None'}, 'GSM2350089': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350088': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350085': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350084': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350087': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350086': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350081': {'rna': 'Bulk', 'used': 'None'}, 'GSM2350080': {'rna': 'Bulk', 'used': 'None'}, 'GSM2350083': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2678108': {'subtype': 'Leiomyoma', 'age': '47', 'tissue': 'uterus', 'ethinity': 'Hispanic'}, 'GSM2678107': {'subtype': 'Myometrium', 'age': '47', 'tissue': 'uterus', 'ethinity': 'Hispanic'}, 'GSM1620468': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620469': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2795888': {'code': 'P029', 'age': '18-22', 'Sex': 'Male', 'tissue': 'Placenta', 'treatment': 'IFNB', 'compartment': 'Chorionic villus'}, 'GSM2795889': {'code': 'P029', 'age': '18-22', 'Sex': 'Male', 'tissue': 'Placenta', 'treatment': 'IFNL', 'compartment': 'Chorionic villus'}, 'GSM1620460': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620461': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620462': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620463': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620464': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620465': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620466': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620467': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2324198': {'group': 'LowA422', 'type': 'PBMC', 'day': '14', 'subjectid': '2408'}, 'GSM2324199': {'group': 'LowA422', 'type': 'PBMC', 'day': '28', 'subjectid': '2408'}, 'GSM2390159': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 2', 'treatment': 'normoxia', 'fraction': 'newly transcribed RNA'}, 'GSM2390158': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 2', 'treatment': 'hypoxia', 'fraction': 'non-labelled'}, 'GSM2390153': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 1', 'treatment': 'normoxia', 'fraction': 'newly transcribed RNA'}, 'GSM2390152': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 1', 'treatment': 'hypoxia', 'fraction': 'non-labelled'}, 'GSM2390151': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 1', 'treatment': 'normoxia', 'fraction': 'non-labelled'}, 'GSM2390150': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 1', 'treatment': 'hypoxia', 'fraction': 'total RNA'}, 'GSM2390157': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 2', 'treatment': 'normoxia', 'fraction': 'non-labelled'}, 'GSM2390156': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 2', 'treatment': 'hypoxia', 'fraction': 'total RNA'}, 'GSM2390155': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 2', 'treatment': 'normoxia', 'fraction': 'total RNA'}, 'GSM2390154': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 1', 'treatment': 'hypoxia', 'fraction': 'newly transcribed RNA'}, 'GSM2150359': {'antibody': 'H3K9ac', 'treatment': 'DACSB'}, 'GSM2150358': {'antibody': 'H3K4me3', 'treatment': 'DACSB'}, 'GSM2248014': {'line': 'YAPC', 'grnas': 'FOS'}, 'GSM2150353': {'antibody': 'Input', 'treatment': 'DAC'}, 'GSM2150352': {'antibody': 'H3K9me3', 'treatment': 'DAC'}, 'GSM2150351': {'antibody': 'H3K9ac', 'treatment': 'DAC'}, 'GSM2150350': {'antibody': 'H3K4me3', 'treatment': 'DAC'}, 'GSM2150357': {'antibody': 'H3K4me1', 'treatment': 'DACSB'}, 'GSM2150356': {'antibody': 'H3K36me3', 'treatment': 'DACSB'}, 'GSM2150355': {'antibody': 'H3K27me3', 'treatment': 'DACSB'}, 'GSM2150354': {'antibody': 'H3K27ac', 'treatment': 'DACSB'}, 'GSM1359496': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'BEC-219', 'type': 'Dermal blood endothelial cells', 'infection': 'rKSHV.219'}, 'GSM1359497': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'BJAB', 'type': 'Human Burkitt lymphoma B cells'}, 'GSM1359494': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'LEC-219', 'type': 'Dermal lymphatic endothelial cells', 'infection': 'rKSHV.219'}, 'GSM1359495': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'BEC', 'type': 'Dermal blood endothelial cells'}, 'GSM1359492': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'LEC-219', 'type': 'Dermal lymphatic endothelial cells', 'infection': 'rKSHV.219'}, 'GSM1359493': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'LEC', 'type': 'Dermal lymphatic endothelial cells'}, 'GSM1359490': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM1359491': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'LEC', 'type': 'Dermal lymphatic endothelial cells'}, 'GSM1359498': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'BJAB-219', 'type': 'Human Burkitt lymphoma B cells', 'infection': 'rKSHV.219'}, 'GSM1359499': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'BCBL-1', 'type': 'Primary effusion lymphoma B cells', 'infection': 'KSHV'}, 'GSM1833314': {'type': 'morula'}, 'GSM2390860': {'disease': 'Healthy Control'}, 'GSM1833316': {'type': 'early blastocsyt'}, 'GSM2437173': {'status': 'GDM', 'id': 'GD12'}, 'GSM2437172': {'status': 'NGT', 'id': 'GD11'}, 'GSM1477599': {'variation': 'CPSF2'}, 'GSM1833312': {'type': 'morula'}, 'GSM1376102': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2437179': {'status': 'GDM', 'id': 'GD2'}, 'GSM1957126': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957127': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957124': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2437178': {'status': 'NGT', 'id': 'GD1'}, 'GSM1957122': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957123': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957120': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957121': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM3594235': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594234': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594237': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594236': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594231': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594230': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1957128': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957129': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1864219': {'with': 'siEED', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1864218': {'with': 'siCTCF', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1864215': {'with': 'siBRCA2', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1864214': {'with': 'siBRCA1', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1864217': {'with': 'siControl2', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1864216': {'with': 'siBRD4', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1864213': {'with': 'siAR', 'line': 'LNCaP-abl', 'type': 'prostate cancer cell line', 'passage': '53-60'}, 'GSM1626444': {'tissue': 'placental villus parenchyma'}, 'GSM1626445': {'tissue': 'placental villus parenchyma'}, 'GSM1626446': {'tissue': 'placental villus parenchyma'}, 'GSM1626447': {'tissue': 'placental villus parenchyma'}, 'GSM1626440': {'tissue': 'placental villus parenchyma'}, 'GSM1626441': {'tissue': 'placental villus parenchyma'}, 'GSM1626442': {'tissue': 'placental villus parenchyma'}, 'GSM1626443': {'tissue': 'placental villus parenchyma'}, 'GSM1626448': {'tissue': 'placental villus parenchyma'}, 'GSM1626449': {'tissue': 'placental villus parenchyma'}, 'GSM2686063': {'line': 'U87MG', 'variation': 'FUBP1 knockdown via shRNA', 'provider': 'ATCC'}, 'GSM2686062': {'line': 'U87MG', 'variation': 'FUBP1 knockdown via shRNA', 'provider': 'ATCC'}, 'GSM2686061': {'line': 'U87MG', 'variation': 'FUBP1 knockdown via shRNA', 'provider': 'ATCC'}, 'GSM2686060': {'line': 'U87MG', 'variation': 'Non-specific shRNA', 'provider': 'ATCC'}, 'GSM2887529': {'build': 'GRCh38', 'condition': 'Healthy controls'}, 'GSM2887528': {'build': 'GRCh38', 'condition': 'Healthy controls'}, 'GSM2887523': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887522': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887521': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887520': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887527': {'build': 'GRCh38', 'condition': 'Healthy controls'}, 'GSM2887526': {'build': 'GRCh38', 'condition': 'Healthy controls'}, 'GSM2887525': {'build': 'GRCh38', 'condition': 'Healthy controls'}, 'GSM2887524': {'build': 'GRCh38', 'condition': 'Healthy controls'}, 'GSM2577196': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '14h'}, 'GSM2577197': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '14h'}, 'GSM2577194': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '12h'}, 'GSM2577195': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '12h'}, 'GSM2577192': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '10h'}, 'GSM2577193': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '10h'}, 'GSM2577190': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '8h'}, 'GSM2577191': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '8h'}, 'GSM1649205': {'tissue': 'alpha cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1649204': {'tissue': 'alpha cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1649207': {'tissue': 'alpha cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1649206': {'tissue': 'alpha cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1649201': {'tissue': 'alpha cells', 'stage': 'adult'}, 'GSM1649200': {'tissue': 'alpha cells', 'stage': 'adult'}, 'GSM2577198': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '16h'}, 'GSM2577199': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '16h'}, 'GSM1376104': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2372365': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM1701343': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HET SNP13/HET SNP8 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701342': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HET SNP13/HET SNP12 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701341': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HOM SNP13 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701340': {'status': 'healthy', 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701347': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1698564': {'donors': '1', 'vendor': 'Biochain', 'gender': 'Male', 'age': '24 years old', 'isolate': 'Lot no.: B604038', 'tissue': 'Heart'}, 'GSM1701345': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HET SNP13/HET SNP12 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701344': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'HOM SNP13 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701349': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701348': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM485478': {'line': 'NA18517'}, 'GSM485479': {'line': 'NA18517'}, 'GSM485474': {'line': 'NA19101'}, 'GSM485475': {'line': 'NA19128'}, 'GSM485476': {'line': 'NA19130'}, 'GSM485477': {'line': 'NA19203'}, 'GSM485470': {'line': 'NA18486'}, 'GSM485471': {'line': 'NA18870'}, 'GSM485472': {'line': 'NA19159'}, 'GSM485473': {'line': 'NA19160'}, 'GSM3486128': {'line': 'Hs 766T', 'sampling': '64Y', 'type': 'Pancreatic adenocarcinoma', 'disease': 'Derived from metastatic site: Lymph node', 'Sex': 'Male'}, 'GSM2093086': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2559758': {'line': 'PANC-1', 'treatment': 'combination of chaetocin(30nM)+MLN3237(90nM)', 'passage': '<p30'}, 'GSM2390908': {'disease': 'Healthy Control'}, 'GSM2027569': {'line': 'hCMEC/D3', 'type': 'Blood Brain Barrier cell line'}, 'GSM2027568': {'line': 'hCMEC/D3', 'type': 'Blood Brain Barrier cell line'}, 'GSM2390900': {'disease': 'Healthy Control'}, 'GSM2390901': {'disease': 'Healthy Control'}, 'GSM2390902': {'disease': 'Healthy Control'}, 'GSM2390903': {'disease': 'Healthy Control'}, 'GSM2390904': {'disease': 'Healthy Control'}, 'GSM2390905': {'disease': 'Healthy Control'}, 'GSM2390906': {'disease': 'Healthy Control'}, 'GSM2390907': {'disease': 'Healthy Control'}, 'GSM2573769': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573768': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1980108': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980109': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980104': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980105': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2573763': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573762': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573765': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1980101': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2573767': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1980103': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2309898': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': \"Alport's/Famil Hered neph\", 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '57.01'}, 'GSM2472218': {'type': 'cell line'}, 'GSM2689116': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689117': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689114': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689115': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689112': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689113': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689110': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689111': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689118': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689119': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2559755': {'differentiation': 'Highly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P40', 'stage': 'A1(BCLC)'}, 'GSM2358878': {'type': 'Immature Pericytes (imPCs)'}, 'GSM2358879': {'type': 'Immature Pericytes (imPCs)'}, 'GSM2358874': {'type': 'Mesenchymoangioblast (MAB)'}, 'GSM2358875': {'type': 'Mesenchymal Stem cells (MSCs)'}, 'GSM2358876': {'type': 'Mesenchymal Stem cells (MSCs)'}, 'GSM2358877': {'type': 'Mesenchymal Stem cells (MSCs)'}, 'GSM2886600': {'age': '71', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'no', 'npm1': '-', 'flt3': '-'}, 'GSM2358872': {'type': 'Mesenchymoangioblast (MAB)'}, 'GSM2358873': {'type': 'Mesenchymoangioblast (MAB)'}, 'GSM1862662': {'line': 'Jeu_3', 'condition': 'hypoxic', 'Stage': '24h'}, 'GSM1862663': {'line': 'Jeu_3', 'condition': 'hypoxic', 'Stage': '2h'}, 'GSM2135466': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'IFNgTNFa', 'target': 'Not applicable'}, 'GSM1862661': {'line': 'Jeu_3', 'condition': 'hypoxic', 'Stage': '16h'}, 'GSM2135460': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'Not applicable'}, 'GSM2135461': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Not applicable'}, 'GSM2135462': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'Not applicable'}, 'GSM2135463': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Not applicable'}, 'GSM3100461': {'treatment': 'Imatinib 24 hours'}, 'GSM3100460': {'treatment': 'JQ1 6 hours'}, 'GSM1862668': {'line': 'Jeu_3', 'condition': 'normal', 'Stage': '2h'}, 'GSM1862669': {'line': 'Jeu_3', 'condition': 'normal', 'Stage': '4h'}, 'GSM2135468': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Not applicable'}, 'GSM2135469': {'type': 'H3K27ac', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'H3K27ac'}, 'GSM3100467': {'treatment': 'Combination imatinib and JQ1 24 hours'}, 'GSM3100466': {'treatment': 'JQ1 24 hours'}, 'GSM1931341': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM1968784': {'strain': 'HG3', 'line': 'lymphoblastoid cell line HG3', 'type': 'fludarabine-resistant'}, 'GSM1968785': {'strain': 'HG3', 'line': 'lymphoblastoid cell line HG3', 'type': 'fludarabine-resistant'}, 'GSM1968786': {'strain': 'HG3', 'line': 'lymphoblastoid cell line HG3', 'type': 'fludarabine-resistant'}, 'GSM1968781': {'strain': 'HG3', 'line': 'lymphoblastoid cell line HG3', 'type': 'control'}, 'GSM1968782': {'strain': 'HG3', 'line': 'lymphoblastoid cell line HG3', 'type': 'control'}, 'GSM1968783': {'strain': 'HG3', 'line': 'lymphoblastoid cell line HG3', 'type': 'control'}, 'GSM2773437': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL mutant', 'batch': '2/26/2015'}, 'GSM986108': {'status': 'healthy volunteers', 'type': 'monocytes', 'treatment': 'IDR-1018'}, 'GSM2328307': {'followup': '8.59', 'grade': 'II', 'age': '57', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328306': {'followup': '8.59', 'grade': 'II', 'age': '57', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IA'}, 'GSM2328309': {'followup': '7.54', 'grade': 'II', 'age': '58', 'Sex': 'Male', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328308': {'followup': '7.54', 'grade': 'II', 'age': '58', 'Sex': 'Male', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IB'}, 'GSM2248010': {'line': 'YAPC', 'grnas': 'E2F1'}, 'GSM1602983': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602982': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602981': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602980': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602987': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602986': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602985': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602984': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602989': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602988': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1302030': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1302031': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1302032': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2472210': {'type': 'primary tissue'}, 'GSM2299018': {'age': '40', 'type': 'Stem cell'}, 'GSM2299019': {'age': '33', 'type': 'Stem cell'}, 'GSM2299016': {'age': '27', 'type': 'Stem cell'}, 'GSM2299017': {'age': '50', 'type': 'Stem cell'}, 'GSM2299014': {'age': '30', 'type': 'Stem cell'}, 'GSM2299015': {'age': '64', 'type': 'Stem cell'}, 'GSM2299012': {'age': '37', 'type': 'Stem cell'}, 'GSM2299013': {'age': '39', 'type': 'Stem cell'}, 'GSM2299010': {'age': '50', 'type': 'Stem cell'}, 'GSM2299011': {'age': '35', 'type': 'Stem cell'}, 'GSM2720334': {'passages': 'p5', 'type': 'WAPC', 'treatment': 'vehicle'}, 'GSM1647049': {'illumina_index': '15', 'point': '48', 'batch': '8', 'agent': 'none', 'rin': '6.6', 'individual': 'M377'}, 'GSM2932918': {'pucai': '70', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM2243679': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243678': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243675': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'A1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243674': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243677': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243676': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243671': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243670': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243673': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243672': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1647045': {'illumina_index': '7', 'point': '18', 'batch': '8', 'agent': 'GC', 'rin': '4.1', 'individual': 'M374'}, 'GSM2720335': {'passages': 'p5', 'type': 'WAPC', 'treatment': 'vehicle'}, 'GSM1647044': {'illumina_index': '6', 'point': '4', 'batch': '8', 'agent': 'Salm', 'rin': '9.5', 'individual': 'M372'}, 'GSM1647047': {'illumina_index': '13', 'point': '4', 'batch': '8', 'agent': 'Salm', 'rin': '6.9', 'individual': 'M375'}, 'GSM2666139': {'age': 'Day 130', 'well': 'F1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1647046': {'illumina_index': '12', 'point': '18', 'batch': '8', 'agent': 'Staph', 'rin': '7.4', 'individual': 'M376'}, 'GSM1401812': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM2585786': {'line': 'LC/2-AD cells'}, 'GSM1401810': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401811': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM2666137': {'age': 'Day 130', 'well': 'G9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1573117': {'line': 'A549', 'type': 'Non-small-cell lung cancer (NSCLC) cells', 'genotype': 'Wild type', 'group_tag': 'Control'}, 'GSM1401814': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM2932910': {'pucai': '40', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2720336': {'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM1573116': {'line': 'A549', 'type': 'Non-small-cell lung cancer (NSCLC) cells', 'genotype': 'Wild type', 'group_tag': 'Control'}, 'GSM2932913': {'pucai': '55', 'score': '0', 'remission': 'Yes', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2054992': {'haplotype': 'Homozyg. MS Risk', 'disease': 'Multiple Sclerosis'}, 'GSM2932912': {'pucai': '65', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '6'}, 'GSM2295997': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2295995': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2295994': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2295993': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2472214': {'type': 'primary tissue'}, 'GSM2643509': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM Syn-TEF1', 'time': '24 h'}, 'GSM2295992': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2455861': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2295991': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2455860': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2088067': {'status': 'Normal', 'ratio': '1.37546453761421', 'age': '72', 'years': '57', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '59713672', 'alignment': '36787529'}, 'GSM2295990': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2374841': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2455863': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1683188': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683189': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2455862': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1261900': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'invasive lung carcinoma (inv)', 'id': '6'}, 'GSM1683185': {'type': 'U87 human glioma cells'}, 'GSM1683186': {'type': 'U87 human glioma cells'}, 'GSM1683187': {'type': 'U87 human glioma cells'}, 'GSM2455867': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2374840': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2720339': {'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM1638230': {'state': 'normal', 'type': 'iPSCs', 'day': 'd18'}, 'GSM1638231': {'state': 'mild', 'type': 'iPSCs', 'day': 'd18'}, 'GSM1638232': {'state': 'severe', 'type': 'iPSCs', 'day': 'd18'}, 'GSM2170522': {'stage': 'Endothelial cells'}, 'GSM2170523': {'stage': 'Endothelial cells'}, 'GSM2348349': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348348': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2170526': {'stage': 'Endothelial cells'}, 'GSM2170527': {'stage': 'Endothelial cells'}, 'GSM2170524': {'stage': 'Endothelial cells'}, 'GSM2170525': {'stage': 'Endothelial cells'}, 'GSM2348343': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348342': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348341': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348340': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348347': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348346': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348345': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348344': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2088064': {'status': 'Normal', 'ratio': '1.36453567792904', 'age': '67', 'years': '45', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Female', 'alignments': '57769084', 'alignment': '35393742'}, 'GSM2391949': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2081499': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2391948': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2233224': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2391945': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391944': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2081498': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2262849': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262848': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262847': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262846': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262845': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262844': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262843': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262842': {'protocol': 'BG exposed, collected at 24 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262841': {'protocol': 'BG exposed, collected at 24 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262840': {'protocol': 'BG exposed, collected at 4 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2779588': {'duration': '1 day', 'line': 'M229DDR', 'type': 'Melanoma cell line', 'cells': 'PD-1', 'treatment': '20 min of STP, 0.5 uM'}, 'GSM2840458': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840459': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840452': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840453': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840450': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840451': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840456': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840457': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840454': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840455': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM3586690': {'origin': 'ABC', 'pfstt': '897', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '901', 'cycles': '6', 'oscs': '0'}, 'GSM3586691': {'origin': 'GCB', 'pfstt': '932', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1116', 'cycles': '6', 'oscs': '0'}, 'GSM3586692': {'origin': 'ABC', 'pfstt': '833', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '851', 'cycles': '6', 'oscs': '0'}, 'GSM3586693': {'origin': 'UNCLASSIFIED', 'pfstt': '1', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '725', 'cycles': '6', 'oscs': '0'}, 'GSM3586694': {'origin': 'GCB', 'pfstt': '1620', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1620', 'cycles': '6', 'oscs': '0'}, 'GSM3586695': {'pfstt': '1484', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1484', 'cycles': '6', 'oscs': '0'}, 'GSM3586696': {'origin': 'UNCLASSIFIED', 'pfstt': '251', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '439', 'cycles': '6', 'oscs': '1'}, 'GSM3586697': {'origin': 'GCB', 'pfstt': '762', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '815', 'cycles': '6', 'oscs': '0'}, 'GSM3586698': {'origin': 'GCB', 'pfstt': '772', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '789', 'cycles': '6', 'oscs': '0'}, 'GSM3586699': {'origin': 'ABC', 'pfstt': '191', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '317', 'cycles': '6', 'oscs': '1'}, 'GSM2754496': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0779', 'previousdiagnosisoftb': 'No', 'tst': '12', 'type': 'Tcells'}, 'GSM2754497': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '12', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0524', 'previousdiagnosisoftb': 'No', 'tst': '18.1', 'type': 'Tcells'}, 'GSM2640637': {'line': 'A549', 'agent': 'hRSV NS1 1-118', 'infection': '96'}, 'GSM2754498': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0843', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754499': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0940', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1716743': {'subpopulation': 'Bulk tumor', 'storage': 'cryopreserved tumor', 'state': 'ascites'}, 'GSM3190869': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.07293'}, 'GSM1716741': {'subpopulation': 'CA125 positive', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM1716740': {'subpopulation': 'CA125 negative', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM1716747': {'subpopulation': 'tumor cell line passage 4', 'storage': 'freshly derived cell line', 'state': 'tumor derived cell line'}, 'GSM1716746': {'subpopulation': 'tumor cell line passage 4', 'storage': 'freshly derived cell line', 'state': 'tumor derived cell line'}, 'GSM1716745': {'subpopulation': 'Bulk tumor', 'storage': 'cryopreserved tumor', 'state': 'ascites'}, 'GSM1716744': {'subpopulation': 'Bulk tumor', 'storage': 'cryopreserved tumor', 'state': 'solid tumor'}, 'GSM3190860': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'Yes', 'b': 'No', 'differential': '6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.730844'}, 'GSM1945958': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '60min'}, 'GSM3190862': {'boca': 'No', 'years': '17', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.229926'}, 'GSM1716748': {'subpopulation': 'tumor cell line passage 4', 'storage': 'freshly derived cell line', 'state': 'tumor derived cell line'}, 'GSM3190864': {'boca': 'No', 'years': '17', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.014384'}, 'GSM3190865': {'boca': 'No', 'years': '17', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.965368'}, 'GSM3190866': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.449983'}, 'GSM1945959': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '60min'}, 'GSM2575334': {'line': 'WM989', 'subclone': 'H1', 'condition': '7dayholiday'}, 'GSM2142419': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142418': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142417': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142416': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142415': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142414': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142413': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM1945956': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '60min'}, 'GSM2142411': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142410': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2815920': {'line': 'H9'}, 'GSM2815921': {'line': 'H9'}, 'GSM2815922': {'line': 'H9'}, 'GSM1945957': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '60min'}, 'GSM2815924': {'line': 'H9'}, 'GSM2815925': {'line': 'H9'}, 'GSM2815926': {'line': 'H9'}, 'GSM2815927': {'line': 'H9'}, 'GSM2815928': {'line': 'H9'}, 'GSM2575330': {'line': 'WM989', 'subclone': 'G3', 'condition': '48hrholiday'}, 'GSM2575331': {'line': 'WM989', 'subclone': 'G3', 'condition': '7dayholiday'}, 'GSM2575332': {'line': 'WM989', 'subclone': 'G3', 'condition': 'Drug'}, 'GSM2372363': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM1945953': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '30min'}, 'GSM2172319': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2630225': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405843'}, 'GSM2311932': {'culture': '12', 'line': 'DCX+'}, 'GSM2311933': {'culture': '12', 'line': 'DCX+'}, 'GSM2311930': {'culture': '12', 'line': 'DCX+'}, 'GSM2311931': {'culture': '12', 'line': 'DCX+'}, 'GSM2311936': {'culture': '12', 'line': 'DCX+'}, 'GSM2311937': {'culture': '12', 'line': 'DCX+'}, 'GSM2311934': {'culture': '12', 'line': 'DCX+'}, 'GSM2311935': {'culture': '12', 'line': 'DCX+'}, 'GSM2050835': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050834': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050837': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2311939': {'culture': '12', 'line': 'DCX+'}, 'GSM2050831': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050830': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050833': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050832': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2791569': {'line': 'MCF10A', 'barcode': 'O106', 'replicate': 'Biological replicate 2', 'treatment': 'Hypoxia', 'fraction': 'Total mRNA'}, 'GSM2791568': {'line': 'MCF10A', 'barcode': 'O105', 'replicate': 'Biological replicate 2', 'treatment': 'Normoxia', 'fraction': 'Total mRNA'}, 'GSM2791565': {'line': 'MCF10A', 'barcode': 'O102', 'replicate': 'Biological replicate 1', 'treatment': 'Hypoxia', 'fraction': 'Polysomal mRNA'}, 'GSM2791564': {'line': 'MCF10A', 'barcode': 'O101', 'replicate': 'Biological replicate 1', 'treatment': 'Normoxia', 'fraction': 'Polysomal mRNA'}, 'GSM2791567': {'line': 'MCF10A', 'barcode': 'O104', 'replicate': 'Biological replicate 1', 'treatment': 'Hypoxia+PP242', 'fraction': 'Polysomal mRNA'}, 'GSM2791566': {'line': 'MCF10A', 'barcode': 'O103', 'replicate': 'Biological replicate 1', 'treatment': 'Normoxia+PP242', 'fraction': 'Polysomal mRNA'}, 'GSM2791561': {'line': 'MCF10A', 'barcode': 'O098', 'replicate': 'Biological replicate 1', 'treatment': 'Hypoxia', 'fraction': 'Total mRNA'}, 'GSM2791560': {'line': 'MCF10A', 'barcode': 'O097', 'replicate': 'Biological replicate 1', 'treatment': 'Normoxia', 'fraction': 'Total mRNA'}, 'GSM2791563': {'line': 'MCF10A', 'barcode': 'O100', 'replicate': 'Biological replicate 1', 'treatment': 'Hypoxia+PP242', 'fraction': 'Total mRNA'}, 'GSM2791562': {'line': 'MCF10A', 'barcode': 'O099', 'replicate': 'Biological replicate 1', 'treatment': 'Normoxia+PP242', 'fraction': 'Total mRNA'}, 'GSM1193928': {'line': 'MDA-MB231 cells', 'sirna': 'siE3'}, 'GSM1957417': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1193926': {'line': 'MDA-MB231 cells', 'sirna': 'siE2'}, 'GSM1193927': {'line': 'MDA-MB231 cells', 'sirna': 'siE3'}, 'GSM1193924': {'line': 'MDA-MB231 cells', 'sirna': 'siE1'}, 'GSM1193925': {'line': 'MDA-MB231 cells', 'sirna': 'siE2'}, 'GSM1193922': {'line': 'MDA-MB231 cells', 'sirna': 'siC'}, 'GSM1193923': {'line': 'MDA-MB231 cells', 'sirna': 'siE1'}, 'GSM1193921': {'line': 'MDA-MB231 cells', 'sirna': 'siC'}, 'GSM3594709': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594708': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594700': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594703': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594702': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM2316724': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM1126615': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM2257960': {'line': 'A549', 'type': 'lung cancer cell line'}, 'GSM2257961': {'line': 'A549', 'type': 'lung cancer cell line'}, 'GSM2257962': {'line': 'A549', 'type': 'lung cancer cell line'}, 'GSM2092601': {'line': 'Normal Human Epidermal Keratinocytes', 'time': 'treatment lasted 24 hours', 'treatment': '0.1ug/ml high molecular weight Poly(I:C)', 'passage': '6'}, 'GSM2533789': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533788': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533783': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533782': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2172313': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2533780': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533787': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533786': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533785': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2794860': {'status': 'well differentiated', 'tissue': 'non-tumor', 'infection': 'HBV-infected', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2858'}, 'GSM2830006': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830007': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830004': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830005': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830002': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830003': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2779587': {'duration': '2 day', 'line': 'M229DDR', 'type': 'Melanoma cell line', 'cells': 'PD-1', 'treatment': 'none'}, 'GSM2830001': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830008': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2830009': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2562509': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562508': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562507': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562506': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562505': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2436211': {'stress': 'uninfected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2436210': {'stress': 'uninfected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2436213': {'point': '48 hr', 'stress': 'KSHV-infected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2436212': {'stress': 'uninfected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2436215': {'point': '48 hr', 'stress': 'KSHV-infected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2436214': {'point': '48 hr', 'stress': 'KSHV-infected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2436217': {'point': '96 hr', 'stress': 'KSHV-infected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2436216': {'point': '96 hr', 'stress': 'KSHV-infected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2436218': {'point': '96 hr', 'stress': 'KSHV-infected', 'tissue': 'peridontal ligament', 'type': 'peridontal ligament cell', 'passage': 'p2-p6'}, 'GSM2543719': {'library_id': 'lib5860', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.088', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543718': {'library_id': 'lib5859', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543717': {'library_id': 'lib5858', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543716': {'library_id': 'lib5853', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543715': {'library_id': 'lib5852', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543714': {'library_id': 'lib5851', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543713': {'library_id': 'lib5850', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543712': {'library_id': 'lib5849', 'stim': 'DM', 'group': 'Control', 'classification': 'Not Included', 'level': '0.111', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543711': {'library_id': 'lib5848', 'stim': 'TT', 'group': 'Control', 'classification': 'Not Included', 'level': '0.111', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543710': {'library_id': 'lib5846', 'stim': 'NS', 'group': 'Control', 'classification': 'Not Included', 'level': '0.111', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2306976': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306977': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306974': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306975': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306972': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306973': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306970': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306971': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306978': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306979': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2607621': {'line': 'WA26'}, 'GSM1281771': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '15', 'gender': 'Male', 'age': '78', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '1983', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281770': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '18', 'gender': 'Male', 'age': '57', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Hispanic', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281773': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '12.5', 'gender': 'Male', 'age': '78', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '1983', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '340'}, 'GSM1281772': {'status': '6 months LVAD support', 'pacemaker': 'Yes', 'fraction': '12.5', 'gender': 'Male', 'age': '78', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '1983', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '340'}, 'GSM1281775': {'status': '3 months LVAD support', 'pacemaker': 'Yes', 'fraction': '15', 'gender': 'Male', 'age': '51', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '1996', 'race': 'African American', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '319'}, 'GSM1281774': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '15', 'gender': 'Male', 'age': '51', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '1996', 'race': 'African American', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281777': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '20', 'gender': 'Male', 'age': '74', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '1995', 'race': 'Caucasian', 'nyha': '4', 'device': 'Heartware', 'lvad': 'NA'}, 'GSM1281776': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '15', 'gender': 'Male', 'age': '51', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '1996', 'race': 'African American', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '319'}, 'GSM1281779': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '25', 'gender': 'Male', 'age': '72', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2001', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281778': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '17.5', 'gender': 'Male', 'age': '74', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '1995', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartWare', 'lvad': '306'}, 'GSM2060281': {'line': 'HCT116'}, 'GSM2060280': {'line': 'HCT116'}, 'GSM2060283': {'line': 'HCT116'}, 'GSM2060282': {'line': 'HCT116'}, 'GSM2060285': {'line': 'HCT116'}, 'GSM2060284': {'line': 'HCT116'}, 'GSM2060287': {'line': 'HCT116'}, 'GSM2060286': {'line': 'HCT116'}, 'GSM2060289': {'line': 'HCT116'}, 'GSM2060288': {'line': 'HCT116'}, 'GSM1901039': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline, JQ1 and PD0325901'}, 'GSM1901038': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline, JQ1 and PD0325901'}, 'GSM2152528': {'line': 'RWPE1', 'expression': 'Control vector'}, 'GSM2445604': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': '24h', 'type': 'primary human hepatocyte'}, 'GSM2445605': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': '4h', 'type': 'primary human hepatocyte'}, 'GSM2445606': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': '8h', 'type': 'primary human hepatocyte'}, 'GSM2152529': {'line': 'RWPE1', 'expression': 'Control vector'}, 'GSM2445600': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'IFN', 'time': '24h', 'type': 'primary human hepatocyte'}, 'GSM2445601': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'IFN', 'time': '4h', 'type': 'primary human hepatocyte'}, 'GSM2445602': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'IFN', 'time': '8h', 'type': 'primary human hepatocyte'}, 'GSM2445603': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': '12h', 'type': 'primary human hepatocyte'}, 'GSM2581283': {'race': 'Caucasian', 'patient': '4590', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170308A', 'histology': 'Coronal sample, Section 31', 'age': '20 years'}, 'GSM2581282': {'race': 'Caucasian', 'patient': '4590', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170215A', 'histology': 'Coronal sample, Section 31', 'age': '20 years'}, 'GSM2392694': {'type': 'Induced pluripotent stem cell'}, 'GSM2392695': {'type': 'Induced pluripotent stem cell'}, 'GSM2445608': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D3', 'type': 'primary human hepatocyte'}, 'GSM2581286': {'race': 'African American', 'patient': '5342', 'area': 'BA6', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170308B', 'histology': 'Coronal sample, Section 11', 'age': '23 years'}, 'GSM2392690': {'type': 'Induced pluripotent stem cell'}, 'GSM2581284': {'race': 'Caucasian', 'patient': '4590', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170308A', 'histology': 'Coronal sample, Section 31', 'age': '20 years'}, 'GSM2111088': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 8', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111089': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 8', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM1901034': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline and JQ1'}, 'GSM2204148': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2111080': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 7', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111081': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 7', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111082': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 7', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111083': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 7', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111084': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 7', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111085': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 7', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111086': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 8', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111087': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 8', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM1901031': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline and PD0325901'}, 'GSM2416844': {'antibody': 'None', 'line': 'HeLa', 'type': 'steady-state ribo-/poly(A)- RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM1901030': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline and PD0325901'}, 'GSM2898839': {'line': 'NA18505', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2152526': {'line': 'RWPE1', 'expression': 'Control vector'}, 'GSM2359396': {'type': 'Sorted Naive CD8', 'id': '3076'}, 'GSM2898838': {'line': 'NA18499', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2175129': {'antibody': 'N/A', 'treatment': '50 ng/mL CX-5461 for 48 hours', 'passage': '58-60'}, 'GSM2175128': {'antibody': 'N/A', 'treatment': '50 ng/mL CX-5461 for 48 hours', 'passage': '58-60'}, 'GSM1681910': {'tissue': 'Normal adjacent lung tissue', 'type': 'epithelial cells (Epi)'}, 'GSM2175125': {'antibody': 'N/A', 'treatment': '50 ng/mL Activin A for 48 hours', 'passage': '58-60'}, 'GSM2175124': {'antibody': 'N/A', 'treatment': '50 ng/mL Activin A for 48 hours', 'passage': '58-60'}, 'GSM2175127': {'antibody': 'N/A', 'treatment': '50 ng/mL CX-5461 for 48 hours', 'passage': '58-60'}, 'GSM2175126': {'antibody': 'N/A', 'treatment': '50 ng/mL Activin A for 48 hours', 'passage': '58-60'}, 'GSM2175121': {'antibody': 'N/A', 'treatment': '50 ng/mL Activin A for 6 hours', 'passage': '58-60'}, 'GSM2175120': {'antibody': 'N/A', 'treatment': '50 ng/mL Activin A for 6 hours', 'passage': '58-60'}, 'GSM2175123': {'antibody': 'N/A', 'treatment': '50 ng/mL CX-5461 for 6 hours', 'passage': '58-60'}, 'GSM2175122': {'antibody': 'N/A', 'treatment': '50 ng/mL CX-5461 for 6 hours', 'passage': '58-60'}, 'GSM2195039': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195038': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2305326': {'subtype': 'RUNX2 DOX inducible model', 'type': 'MCF7', 'condition': 'Full Medium + Doxycycline'}, 'GSM2123980': {}, 'GSM2195030': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195033': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2123983': {}, 'GSM2195035': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195034': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195037': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195036': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2392038': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392039': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2413458': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2392032': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392033': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392030': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2413459': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2392036': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392037': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392034': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2392035': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2316825': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316824': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316827': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316826': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316821': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316820': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316823': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316822': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316829': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316828': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM720822': {'status': 'ETV1+', 'line': 'LNCaP', 'length': '34'}, 'GSM720821': {'status': 'ETS+', 'line': 'VCaP', 'length': '53'}, 'GSM2413455': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2572759': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '6', 'day': '0'}, 'GSM1833291': {'type': '2 cell'}, 'GSM1833290': {'type': '2 cell'}, 'GSM1833292': {'type': '4 cell'}, 'GSM1833295': {'type': '4 cell'}, 'GSM2413450': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1833297': {'type': '8 cell'}, 'GSM1833296': {'type': '4 cell'}, 'GSM1833298': {'type': '8 cell'}, 'GSM1562864': {'line': 'CACO-2', 'replicate': '3', 'treatment': 'HMO-grown B. breve'}, 'GSM1963832': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2075268': {'substrate': 'Microporous support', 'density': '80,000 cells/cm2', 'number': '0', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-020207-2'}, 'GSM1963831': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2305322': {'subtype': 'Parental', 'type': 'MCF7'}, 'GSM1963830': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2303248': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2305323': {'subtype': 'Tamoxifen Resistance', 'type': 'MCF7'}, 'GSM2474227': {'with': 'siRNA control', 'line': 'MCF7', 'type': 'breast cancer cells'}, 'GSM2474228': {'with': 'siRNA control', 'line': 'MCF7', 'type': 'breast cancer cells'}, 'GSM2474229': {'with': 'siRNA targeting both DDX5 and DDX17 RNA helicases', 'line': 'MCF7', 'type': 'breast cancer cells'}, 'GSM1185158': {'with': 'Sulforaphane (SFN)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '24 hours'}, 'GSM1185159': {'with': 'Sulforaphane (SFN)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '24 hours'}, 'GSM1185150': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '6 hours'}, 'GSM1185151': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '6 hours'}, 'GSM1185152': {'with': 'Sulforaphane (SFN)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '6 hours'}, 'GSM1185153': {'with': 'Sulforaphane (SFN)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '6 hours'}, 'GSM1185154': {'with': 'Sulforaphane (SFN)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '6 hours'}, 'GSM1185155': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '24 hours'}, 'GSM1185156': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '24 hours'}, 'GSM1185157': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '24 hours'}, 'GSM2877811': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877812': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877813': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877814': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877815': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877816': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877817': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877818': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877819': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2305321': {'subtype': 'Parental', 'type': 'MCF7'}, 'GSM2898830': {'line': 'NA19193', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2242870': {'line': 'A375', 'replicate': '4'}, 'GSM798058': {'knockdown': 'GATA1', 'line': 'K562'}, 'GSM2242872': {'line': 'A375', 'replicate': '4'}, 'GSM2242873': {'line': 'A375', 'replicate': '4'}, 'GSM2242874': {'line': 'A375', 'replicate': '4'}, 'GSM2242875': {'line': 'A375', 'replicate': '4'}, 'GSM2242876': {'line': 'A375', 'replicate': '4'}, 'GSM2242877': {'line': 'A375', 'replicate': '4'}, 'GSM2242878': {'line': 'A375', 'replicate': '4'}, 'GSM2242879': {'line': 'A375', 'replicate': '4'}, 'GSM798057': {'knockdown': 'control', 'line': 'K562'}, 'GSM2166297': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166296': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166295': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166294': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166293': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166292': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166291': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166290': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2325856': {'type': 'Differentiated embryonic stem cell'}, 'GSM2166299': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166298': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1848200': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848201': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848202': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848203': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848204': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848205': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848206': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848207': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848208': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM1848209': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM2839731': {'cohort': 'Original', 'age': '68', 'id': 'C11', 'Sex': 'Female'}, 'GSM2839730': {'cohort': 'Original', 'age': '70', 'id': 'C10', 'Sex': 'Male'}, 'GSM2839737': {'cohort': 'Original', 'age': '80', 'id': 'A6', 'Sex': 'Male'}, 'GSM2839736': {'cohort': 'Original', 'age': '67', 'id': 'A5', 'Sex': 'Male'}, 'GSM2839735': {'cohort': 'Original', 'age': '66', 'id': 'A4', 'Sex': 'Female'}, 'GSM1613609': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2839739': {'cohort': 'Original', 'age': '82', 'id': 'A8', 'Sex': 'Female'}, 'GSM1613605': {'line': 'CRL2097', 'type': 'large live'}, 'GSM860011': {'length': '50', 'line': '293T', 'treatment': 'hnRNPF siRNA'}, 'GSM1613601': {'line': 'CRL2097', 'type': 'med live'}, 'GSM485399': {'line': 'NA18862'}, 'GSM485398': {'line': 'NA18853'}, 'GSM485395': {'line': 'NA19222'}, 'GSM485394': {'line': 'NA18916'}, 'GSM485397': {'line': 'NA18913'}, 'GSM2361846': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1528609': {'with': '500nM SMN-C3 for 24hrs', 'line': 'PNN 1-46', 'type': 'SMA type I fibroblasts'}, 'GSM485390': {'line': 'NA19257'}, 'GSM485393': {'line': 'NA19192'}, 'GSM485392': {'line': 'NA19131'}, 'GSM2247551': {'clone': '1', 'tissue': 'neuron', 'group': 'Reference'}, 'GSM2247552': {'clone': '1', 'tissue': 'neuron', 'group': 'Control'}, 'GSM2247553': {'clone': '2', 'tissue': 'neuron', 'group': 'Control'}, 'GSM2247554': {'clone': '1', 'tissue': 'neuron', 'group': \"Parkinson's disease Patient\"}, 'GSM2247555': {'clone': '2', 'tissue': 'neuron', 'group': \"Parkinson's disease Patient\"}, 'GSM984607': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47299', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '069WC', 'spikeinpool': 'Nist13'}, 'GSM984606': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47807', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '077WC', 'spikeinpool': 'Nist13'}, 'GSM984605': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47963,LID47964', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '091NL,092NL', 'spikeinpool': 'Nist13'}, 'GSM984604': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47105,LID47253', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '073WC,074WC', 'spikeinpool': 'Nist13'}, 'GSM984609': {'description': 'Paired 76 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID44594,LID44497', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '039WC,040WC', 'spikeinpool': 'Nist14'}, 'GSM984608': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47100', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '068WC', 'spikeinpool': 'Nist13'}, 'GSM1937832': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1937833': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM2251704': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 0 mM'}, 'GSM1937831': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1937836': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1937837': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1937834': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1937835': {'stimulation': 'None', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM1937838': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1937839': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1414498': {'tissue': 'Human ovarian PDX tumor'}, 'GSM1414499': {'tissue': 'Human ovarian PDX tumor'}, 'GSM2251708': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 25 mM'}, 'GSM2251709': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 25 mM'}, 'GSM2829964': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2454000': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454001': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454002': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454003': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454004': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454005': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454006': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454007': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454008': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454009': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM3189143': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.763097', 'percentaligned': '0.92646975', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '8.169912', 'original': 'Control'}, 'GSM3189142': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '20', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.645578', 'percentaligned': '0.938818183', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '10.586171', 'original': 'Case'}, 'GSM2389816': {'tissue': 'SJSA - osteosarcoma'}, 'GSM3189144': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '16', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.693002', 'percentaligned': '0.939230796', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '5.621958', 'original': 'Control'}, 'GSM1521778': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM3189146': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.647549', 'percentaligned': '0.960309118', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.796647', 'original': 'Control'}, 'GSM1946128': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19119', 'for': '30min'}, 'GSM1946129': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19119', 'for': '30min'}, 'GSM2093001': {'bin': '29', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1946121': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '30min'}, 'GSM1946122': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '60min'}, 'GSM2093002': {'bin': '29', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1946124': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '60min'}, 'GSM1946125': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '60min'}, 'GSM1946126': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '60min'}, 'GSM1946127': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '60min'}, 'GSM1187141': {'type': 'other', 'genotype': '5556GA'}, 'GSM1187140': {'type': 'other', 'genotype': '5556GA'}, 'GSM2389817': {'tissue': 'SJSA - osteosarcoma'}, 'GSM1187142': {'type': 'polyA RNA', 'genotype': 'control'}, 'GSM1630788': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630789': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_small_cell_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung_small_cell', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630780': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630781': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630782': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630783': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630784': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630785': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630786': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630787': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_carcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM2689031': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689030': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689033': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689032': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689035': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689034': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689037': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689036': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2374050': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374051': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374052': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2585446': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2374054': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374055': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374056': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374057': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374058': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2281354': {'characteristics': 'epithelial, parental', 'line': 'colorectal cancer cell line DLD1'}, 'GSM2585443': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2135467': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'Not applicable'}, 'GSM1133348': {'status': 'MSI', 'age': '44', 'Sex': 'male', 'state': 'metastasis', 'tissue': 'metastasis biopsy, liver', 'subject': 'P3'}, 'GSM1133349': {'status': 'MSS', 'age': '49', 'Sex': 'female', 'state': 'benign', 'tissue': 'colorectal biopsy, rectum/sigma', 'subject': 'P4'}, 'GSM2303489': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACCR015A'}, 'GSM1133341': {'status': 'MSS', 'age': '76', 'Sex': 'female', 'state': 'tumor', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P7'}, 'GSM1133342': {'status': 'MSS', 'age': '76', 'Sex': 'female', 'state': 'metastasis', 'tissue': 'metastasis biopsy, lymph node', 'subject': 'P7'}, 'GSM1133343': {'status': 'MSS', 'age': '74', 'Sex': 'male', 'state': 'benign', 'tissue': 'colorectal biopsy, coecum', 'subject': 'P8'}, 'GSM1133344': {'status': 'MSS', 'age': '74', 'Sex': 'male', 'state': 'tumor', 'tissue': 'colorectal biopsy, coecum', 'subject': 'P8'}, 'GSM1133345': {'status': 'MSS', 'age': '74', 'Sex': 'male', 'state': 'metastasis', 'tissue': 'metastasis biopsy, liver', 'subject': 'P8'}, 'GSM1133346': {'status': 'MSI', 'age': '44', 'Sex': 'male', 'state': 'benign', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P3'}, 'GSM1133347': {'status': 'MSI', 'age': '44', 'Sex': 'male', 'state': 'tumor', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P3'}, 'GSM2742419': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'SK-N-DZ', 'type': 'neuroblastoma cell line', 'treatment': 'Dox', 'variation': 'shRNA (Dharmacon, V3THS_301154) against TFAP4'}, 'GSM2742418': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'SK-N-DZ', 'type': 'neuroblastoma cell line', 'treatment': 'Dox', 'variation': 'shRNA (Dharmacon, V3THS_301154) against TFAP4'}, 'GSM1686539': {'index': 'AML2', 'pt': '0', 'disease': 'AML', 'subtype': 'M1', 'tissue': 'blood', 'type': 'Leukemic blasts'}, 'GSM2610966': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2742415': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'SK-N-DZ', 'type': 'neuroblastoma cell line', 'treatment': 'Control', 'variation': 'control'}, 'GSM2742417': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'SK-N-DZ', 'type': 'neuroblastoma cell line', 'treatment': 'Control', 'variation': 'control'}, 'GSM2742416': {'source': 'bone marrow metastatic neuroblastoma', 'line': 'SK-N-DZ', 'type': 'neuroblastoma cell line', 'treatment': 'Control', 'variation': 'control'}, 'GSM2648753': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648752': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648751': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648750': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648757': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648756': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648755': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648754': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648759': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'scarred'}, 'GSM2648758': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'scarred'}, 'GSM1690210': {'line': 'HeLa', 'expression': 'shRNA against GFP'}, 'GSM2361368': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Conventional CD4 T cells', 'barcode': 'ATTCCT'}, 'GSM2361369': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Conventional CD4 T cells', 'barcode': 'CACGAT'}, 'GSM1690211': {'line': 'HeLa', 'expression': 'shRNA against AFF1'}, 'GSM2361364': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'PBMC', 'type': 'Conventional CD4 T cells'}, 'GSM2361365': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Conventional CD4 T cells', 'barcode': 'GTAGAG'}, 'GSM2361366': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Conventional CD4 T cells', 'barcode': 'GGCTAC'}, 'GSM2361367': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'NBP', 'type': 'Conventional CD4 T cells', 'barcode': 'ATCACG'}, 'GSM2361360': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'GAGTGG'}, 'GSM2361361': {'category': 'naïve', 'activation': 'CD45RA+', 'tissue': 'PBMC', 'type': 'Conventional CD4 T cells'}, 'GSM2361362': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'PBMC', 'type': 'Conventional CD4 T cells'}, 'GSM2361363': {'category': 'naïve', 'activation': 'CD45RA+', 'tissue': 'PBMC', 'type': 'Conventional CD4 T cells'}, 'GSM1690213': {'line': 'HeLa', 'expression': 'shRNA against AFF4'}, 'GSM1906565': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody followed by demethylase treatment'}, 'GSM1690214': {'line': 'HeLa', 'expression': 'shRNA against AFF4'}, 'GSM2845402': {'replicate': 'Rep2', 'treatment': 'VEH', 'time': '24hrs'}, 'GSM2845400': {'replicate': 'Rep2', 'treatment': '4-OHT', 'time': '24hrs'}, 'GSM2845401': {'replicate': 'Rep1', 'treatment': 'VEH', 'time': '24hrs'}, 'GSM2610960': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM1906561': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'none'}, 'GSM1906562': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'none'}, 'GSM1906563': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1551979': {'replicate': '1', 'synchronization': '20', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551978': {'replicate': '2', 'synchronization': '16', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551977': {'replicate': '1', 'synchronization': '16', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551976': {'replicate': '2', 'synchronization': '12', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551975': {'replicate': '1', 'synchronization': '12', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551974': {'replicate': '2', 'synchronization': '8', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551973': {'replicate': '1', 'synchronization': '8', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551972': {'replicate': '2', 'synchronization': '4', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551971': {'replicate': '1', 'synchronization': '4', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM1551970': {'replicate': '2', 'synchronization': '0', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM2637979': {'with': 'IL-12 and IL-15', 'type': 'mixture of irradiated human peripheral blood mononuclear cells (PBMCs) and the B-lymphoblastoid cell line (LCL) 721.221'}, 'GSM2637978': {'with': 'IL-2 and IL-7', 'type': 'mixture of irradiated human peripheral blood mononuclear cells (PBMCs) and the B-lymphoblastoid cell line (LCL) 721.221'}, 'GSM2398416': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398417': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398414': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398415': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398412': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398413': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398410': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398411': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2085699': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085698': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2398418': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398419': {'line': 'PANC1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2932986': {'pucai': '65', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2948305': {'tissue': 'peripheral blood', 'type': 'B lymphoblast', 'treatment': '72 h after OR-S1 treatment'}, 'GSM2948307': {'tissue': 'peripheral blood', 'type': 'B lymphocyte', 'treatment': '72 h after OR-S1 treatment'}, 'GSM2845515': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2A'}, 'GSM2948308': {'tissue': 'peripheral blood', 'type': 'B lymphocyte', 'treatment': 'control'}, 'GSM900498': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM2845517': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2C'}, 'GSM2932982': {'pucai': '70', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '17'}, 'GSM1917637': {'primary': 'Yes', 'agent': 'None', 'xenograft': 'No'}, 'GSM2932983': {'pucai': '30', 'score': '1', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '15'}, 'GSM2171958': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171959': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2932980': {'pucai': '75', 'score': '3', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM2171950': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171951': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171952': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171953': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171954': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171955': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171956': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171957': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2667969': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'IER5_enhancer_KO#1'}, 'GSM2667968': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'IER5_enhancer_KO#1'}, 'GSM1384779': {'type': 'Cord blood CD34+ cells', 'agent': 'UM171[19nM]', 'time': '16 hour culture'}, 'GSM1384778': {'type': 'Cord blood CD34+ cells', 'agent': 'UM171[125nM]', 'time': '16 hour culture'}, 'GSM2667963': {'antibody': 'Pol II(CST, #14958)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM2667962': {'antibody': 'Pol II(CST, #14958)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM2667961': {'antibody': 'H3K27ac (CST, #8173)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM2667960': {'antibody': 'H3K27ac (CST, #8173)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM2667967': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'IER5_enhancer_KO#1'}, 'GSM2667966': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'IER5_enhancer_KO#1'}, 'GSM2667965': {'antibody': 'Pol II(CST, #14958)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM2667964': {'antibody': 'Pol II(CST, #14958)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM900496': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900497': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900495': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM2248158': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248155': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248154': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248157': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2303485': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2248156': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248151': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248150': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2309916': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '43.01'}, 'GSM2248153': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248152': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2303484': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2787816': {'isolation': 'total RNA', 'barcode': 'AGCTTAT', 'treatment': 'none', 'infection': 'Infected 2h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787817': {'isolation': 'total RNA', 'barcode': 'GTTCCGT', 'treatment': 'none', 'infection': 'Infected 2h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787814': {'isolation': 'total RNA', 'barcode': 'ATCAGAA', 'treatment': 'none', 'infection': 'Uninfected', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787815': {'isolation': 'total RNA', 'barcode': 'GTCAACA', 'treatment': 'none', 'infection': 'Uninfected', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787812': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'GACCAAT', 'infection': 'Infected 6h before harvesting', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2787813': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CTTGAAT', 'infection': 'Infected 6h before harvesting', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2787810': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'TAGGCAT', 'infection': 'Infected 4h before harvesting', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2787811': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'AGATCAT', 'infection': 'Infected 4h before harvesting', 'treatment': 'none', 'line': 'HeLa'}, 'GSM2303487': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2787818': {'isolation': 'total RNA', 'barcode': 'GCTACAT', 'treatment': 'none', 'infection': 'Infected 4h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787819': {'isolation': 'total RNA', 'barcode': 'TGTCAGA', 'treatment': 'none', 'infection': 'Infected 4h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2033114': {'line': 'Hela', 'medium': 'DMEM', 'treatment': 'shRPA1', 'agent': 'Bromouridine (Bru)', 'stage': 'asynchronization'}, 'GSM2033117': {'transfection': 'AntagomiR17', 'type': 'CD34+ endothelial cells', 'number': 'Passage 5'}, 'GSM2033111': {'line': 'Hela', 'medium': 'DMEM', 'treatment': 'shRPA1', 'stage': 'asynchronization'}, 'GSM2033110': {'line': 'Hela', 'medium': 'DMEM', 'treatment': 'shHIRA', 'stage': 'asynchronization'}, 'GSM2033113': {'line': 'Hela', 'medium': 'DMEM', 'treatment': 'shHIRA', 'agent': 'Bromouridine (Bru)', 'stage': 'asynchronization'}, 'GSM2033112': {'line': 'Hela', 'medium': 'DMEM', 'treatment': 'NT', 'agent': 'Bromouridine (Bru)', 'stage': 'asynchronization'}, 'GSM2033119': {'transfection': 'AntagomiR17', 'type': 'CD34+ endothelial cells', 'number': 'Passage 5'}, 'GSM2033118': {'transfection': 'AntagomiR17', 'type': 'CD34+ endothelial cells', 'number': 'Passage 5'}, 'GSM3416465': {'compartment': 'Stroma', 'id': 'CUMC_081', 'library': 'NuGEN'}, 'GSM3416464': {'compartment': 'Stroma', 'id': 'CUMC_080', 'library': 'NuGEN'}, 'GSM3416467': {'compartment': 'Stroma', 'id': 'CUMC_083', 'library': 'NuGEN'}, 'GSM3416466': {'compartment': 'Stroma', 'id': 'CUMC_082', 'library': 'NuGEN'}, 'GSM3416461': {'compartment': 'Stroma', 'id': 'CUMC_077', 'library': 'NuGEN'}, 'GSM3416460': {'compartment': 'Stroma', 'id': 'CUMC_076', 'library': 'NuGEN'}, 'GSM3416463': {'compartment': 'Stroma', 'id': 'CUMC_079', 'library': 'NuGEN'}, 'GSM3416462': {'compartment': 'Stroma', 'id': 'CUMC_078', 'library': 'NuGEN'}, 'GSM2303486': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM3416469': {'compartment': 'Stroma', 'id': 'CUMC_085', 'library': 'NuGEN'}, 'GSM3416468': {'compartment': 'Stroma', 'id': 'CUMC_084', 'library': 'NuGEN'}, 'GSM2451367': {'compartment': 'Stroma', 'id': 'CUMC_065', 'library': 'NuGEN'}, 'GSM2691349': {'type': 'Primary cells (controls)'}, 'GSM2451365': {'compartment': 'Stroma', 'id': 'CUMC_060', 'library': 'NuGEN'}, 'GSM1697677': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'conventional iPSCs', 'type': 'Fibroblasts'}, 'GSM1697676': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'conventional iPSCs', 'type': 'Fibroblasts', 'antibody': 'H3K4me3', 'vendor': 'Abcam'}, 'GSM2142598': {'gender': 'male', 'age': '73', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142599': {'gender': 'male', 'age': '79', 'who': '1', 'dead': '1', 'date': '2008-09-20', 'histology': '3', 'tnm': '3', 'smoking': '2'}, 'GSM1697673': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'induced pluripotent stem cells generated by a modified 5i/L/FA system', 'type': 'Fibroblasts', 'antibody': 'H3K4me3', 'vendor': 'Abcam'}, 'GSM1697672': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'induced pluripotent stem cells generated by a modified 5i/L/FA system', 'type': 'Fibroblasts', 'antibody': 'H3K27me3', 'vendor': 'Millipore'}, 'GSM1697671': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'induced pluripotent stem cells generated by a modified 5i/L/FA system', 'type': 'Fibroblasts'}, 'GSM1697670': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'induced pluripotent stem cells generated by a modified 5i/L/FA system', 'type': 'Fibroblasts', 'antibody': 'H3K4me3', 'vendor': 'Abcam'}, 'GSM2142592': {'gender': 'female', 'age': '66', 'who': '1', 'dead': '1', 'date': '2008-01-21', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2142593': {'gender': 'female', 'age': '66', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142590': {'gender': 'female', 'age': '54', 'who': '1', 'dead': '0', 'date': '2013-04-10', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142591': {'gender': 'male', 'age': '74', 'who': '0', 'dead': 'n/a', 'date': 'n/a', 'histology': '3', 'tnm': '5', 'smoking': '1'}, 'GSM2142596': {'gender': 'male', 'age': '72', 'who': '0', 'dead': '1', 'date': '2009-08-03', 'histology': '3', 'tnm': '5', 'smoking': '1'}, 'GSM2142597': {'gender': 'female', 'age': '64', 'who': '1', 'dead': '1', 'date': '2009-10-07', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2142594': {'gender': 'female', 'age': '62', 'who': '0', 'dead': '1', 'date': '2009-04-16', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142595': {'gender': 'female', 'age': '48', 'who': '1', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2348682': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348683': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348680': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348681': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348686': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348687': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565188': {'construction': 'PLATE-Seq', 'drug': 'Panobinostat (LBH589)'}, 'GSM2348685': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565186': {'construction': 'PLATE-Seq', 'drug': 'Cabozantinib - XL 184'}, 'GSM2565187': {'construction': 'PLATE-Seq', 'drug': 'Fulvestrant'}, 'GSM2565184': {'construction': 'PLATE-Seq', 'drug': 'Melphalan'}, 'GSM2565185': {'construction': 'PLATE-Seq', 'drug': 'Lenalidomide'}, 'GSM2565182': {'construction': 'PLATE-Seq', 'drug': 'Belinostat'}, 'GSM2855433': {'antibody': 'STAT3', 'type': 'OCI-LY10', 'treatment': 'AZD1480(JAK inhibitor) for 4hrs'}, 'GSM2565180': {'construction': 'PLATE-Seq', 'drug': 'Thioguanine'}, 'GSM2565181': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin'}, 'GSM1660909': {'line': 'Bel-7402', 'transduced': 'vector control', 'type': 'Hepatocellular Carcinoma'}, 'GSM1517776': {'knockdown': 'shBRG1', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM2310988': {'with': 'Control (pGK)-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM2310989': {'with': 'Control (pGK)-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM2310987': {'with': 'Control (pGK)-expressing lentivirus', 'type': 'lung carcinoma cells', 'variation': 'expressing NKX2-1', 'background': 'A549'}, 'GSM2316779': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2374850': {'gender': 'F', 'tissue': 'Neuron progenitors', 'type': 'neuron progenitors', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374851': {'gender': 'F', 'tissue': 'Neuron progenitors', 'type': 'neuron progenitors', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2316771': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316770': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316773': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316772': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316775': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2374852': {'gender': 'F', 'tissue': 'Neuron progenitors', 'type': 'neuron progenitors', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2316777': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316776': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2374853': {'gender': 'F', 'tissue': 'Neuron progenitors', 'type': 'neuron progenitors', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374399': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2665547': {'differentiation': 'Day0', 'type': 'Human ESC'}, 'GSM2932798': {'line': 'HepG2 cells', 'medium': 'Glucose 5.5 mM', 'treatment': 'control'}, 'GSM2752385': {'tnm': 'T1cN0M0', 'subtype': 'A', 'bloom': '1', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2932797': {'line': 'HepG2 cells', 'medium': 'Glucose 5.5 mM', 'treatment': 'control'}, 'GSM2665545': {'differentiation': 'Day0', 'type': 'Human ESC'}, 'GSM2374396': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM1517774': {'knockdown': 'shBRG1', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM2288409': {'tissue': 'hESCs-derived endothelial progenitor cells'}, 'GSM2288408': {'tissue': 'Human embryonic stem cells (H1 cell line)'}, 'GSM2932795': {'line': 'HepG2 cells', 'medium': 'Glucose 20 mM', 'treatment': 'VPA 1 mM'}, 'GSM2932794': {'line': 'HepG2 cells', 'medium': 'Glucose 20 mM', 'treatment': 'VPA 1 mM'}, 'GSM1483946': {'line': 'HT-1080 fibrosarcoma', 'treatment': '1% DMSO + 20 μM PhenDC3, 48hr'}, 'GSM1483947': {'line': 'HT-1080 fibrosarcoma', 'treatment': '1% DMSO + 20 μM PhenDC3, 48hr'}, 'GSM1483944': {'line': 'HT-1080 fibrosarcoma', 'treatment': '1% DMSO Only, 48 hr'}, 'GSM1483945': {'line': 'HT-1080 fibrosarcoma', 'treatment': '1% DMSO + 20 μM PhenDC3, 48hr'}, 'GSM1483942': {'line': 'HT-1080 fibrosarcoma', 'treatment': '1% DMSO Only, 48 hr'}, 'GSM1483943': {'line': 'HT-1080 fibrosarcoma', 'treatment': '1% DMSO Only, 48 hr'}, 'GSM2932792': {'line': 'HepG2 cells', 'medium': 'Glucose 20 mM', 'treatment': 'control'}, 'GSM2932791': {'line': 'HepG2 cells', 'medium': 'Glucose 20 mM', 'treatment': 'control'}, 'GSM2815889': {'line': 'H9'}, 'GSM2815888': {'line': 'H9'}, 'GSM2815887': {'line': 'H9'}, 'GSM2815886': {'line': 'H9'}, 'GSM2815885': {'line': 'H9'}, 'GSM2815884': {'line': 'H9'}, 'GSM2815883': {'line': 'H9'}, 'GSM2815882': {'line': 'H9'}, 'GSM2815881': {'line': 'H9'}, 'GSM2815880': {'line': 'H9'}, 'GSM995551': {'status': 'normal', 'tissue': 'retina'}, 'GSM995550': {'status': 'normal', 'tissue': 'retina'}, 'GSM2307360': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307361': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307362': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307363': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307364': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307365': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM1126689': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126688': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126687': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM2307369': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM1126685': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126684': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126683': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126682': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126681': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126680': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM2306011': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '5 week gestation'}, 'GSM2075290': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': 'Unknown', 'treatment': '250 nM A-83-01 (Days 1-7)', 'time': '32 Days', 'line': 'ARPE-19', 'type': 'Adult RPE cell line'}, 'GSM2306013': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '8 week gestation'}, 'GSM2306012': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '7 week gestation'}, 'GSM2306015': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '18 week gestation'}, 'GSM2306014': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '12 week gestation'}, 'GSM2306017': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '20 week gestation'}, 'GSM2306016': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '20 week gestation'}, 'GSM2306019': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '23 week gestation'}, 'GSM955110': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955113': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955112': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955115': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955114': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955117': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955116': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM2303199': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303198': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACIW009'}, 'GSM2048607': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2303193': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303192': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303191': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACIW009'}, 'GSM2303190': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2303197': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2303196': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACIW009'}, 'GSM2303195': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACIW009'}, 'GSM2303194': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2048606': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2436530': {'protocol': '5iL/A (MEKi, GSK3i, ROCKi, BRAFi, SRCi, Activin, LIF) for 12 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM2436531': {'protocol': '5iL/A (MEKi, GSK3i, ROCKi, BRAFi, SRCi, Activin, LIF) for 12 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM2436532': {'protocol': '5iL/A (MEKi, GSK3i, ROCKi, BRAFi, SRCi, Activin, LIF) for 12 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM2436533': {'protocol': 'no treatment', 'type': 'ESC', 'Stage': 'undifferentiated'}, 'GSM2436534': {'protocol': 'no treatment', 'type': 'ESC', 'Stage': 'undifferentiated'}, 'GSM2436535': {'protocol': 'no treatment', 'type': 'ESC', 'Stage': 'undifferentiated'}, 'GSM2436536': {'protocol': 'AICAR for 21 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM2436537': {'protocol': 'AICAR for 21 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM2436538': {'protocol': 'AICAR for 21 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM2436539': {'protocol': 'AICAR for 21 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM1868816': {'lineage': 'Trophectoderm', 'number': 'Embryo 4', 'stage': 'Blastocyst'}, 'GSM1904492': {'type': 'EC cells', 'infection': 'HCMV (strain TB40E)', 'time': '48h'}, 'GSM2357071': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM1546663': {'gender': 'male', 'individual': 'patient1', 'tissue': 'tumor'}, 'GSM1546662': {'gender': 'female', 'individual': 'patient2', 'tissue': 'matched normal'}, 'GSM1546661': {'gender': 'female', 'individual': 'patient2', 'tissue': 'tumor'}, 'GSM1546660': {'gender': 'male', 'individual': 'patient1', 'tissue': 'matched normal'}, 'GSM1868815': {'lineage': 'Trophectoderm', 'number': 'Embryo 3', 'stage': 'Blastocyst'}, 'GSM1546666': {'gender': 'female', 'individual': 'patient2', 'tissue': 'matched normal'}, 'GSM1546665': {'gender': 'female', 'individual': 'patient2', 'tissue': 'tumor'}, 'GSM2048603': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2394553': {'id': 'IonXpress_044', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'FPL-64176', 'point': 'after 12h of compound treatment'}, 'GSM2394552': {'id': 'IonXpress_043', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Flecainide acetate', 'point': 'after 12h of compound treatment'}, 'GSM2394551': {'id': 'IonXpress_042', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'AM 92016-HCl', 'point': 'after 12h of compound treatment'}, 'GSM2394550': {'id': 'IonXpress_041', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'TTNPB', 'point': 'after 12h of compound treatment'}, 'GSM2394557': {'id': 'IonXpress_048', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Niguldipine', 'point': 'after 12h of compound treatment'}, 'GSM2394556': {'id': 'IonXpress_047', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Nicardipine-HCl', 'point': 'after 12h of compound treatment'}, 'GSM2394555': {'id': 'IonXpress_046', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Loperamide-HCl', 'point': 'after 12h of compound treatment'}, 'GSM2394554': {'id': 'IonXpress_045', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Glipizide', 'point': 'after 12h of compound treatment'}, 'GSM1904493': {'type': 'EC cells', 'infection': 'HCMV (strain TB40E)', 'time': '96h'}, 'GSM2719865': {'transduction': 'shHBO1', 'line': 'UWB1.289'}, 'GSM2394559': {'id': 'IonXpress_050', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'media_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2394558': {'id': 'IonXpress_049', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'MB', 'point': 'after 12h of compound treatment'}, 'GSM2357070': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2154757': {'line': 'HeLa cells', 'type': 'double thymidine block at 6h', 'cycle': 'G2-M'}, 'GSM2154756': {'line': 'HeLa cells', 'type': 'double thymidine block at 4.5h', 'cycle': 'S-G2'}, 'GSM2154755': {'line': 'HeLa cells', 'type': 'double thymidine block at 3h', 'cycle': 'S'}, 'GSM2154754': {'line': 'HeLa cells', 'type': 'double thymidine block at 0h', 'cycle': 'G1-S'}, 'GSM2154759': {'line': 'HeLa cells', 'type': 'double thymidine block at 10.5h', 'cycle': 'M-G1'}, 'GSM2154758': {'line': 'HeLa cells', 'type': 'double thymidine block at 9h', 'cycle': 'M-G1'}, 'GSM2048602': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM830568': {'tissue': 'skin', 'form': 'Mucosal leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM830566': {'tissue': 'skin', 'form': 'Mucosal leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM830567': {'tissue': 'skin', 'form': 'Mucosal leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM830564': {'tissue': 'skin', 'form': 'Mucosal leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM830565': {'tissue': 'skin', 'form': 'Mucosal leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM830562': {'tissue': 'skin', 'form': 'Localized cutaneous leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM830563': {'tissue': 'skin', 'form': 'Localized cutaneous leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM830560': {'tissue': 'skin', 'form': 'Localized cutaneous leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM830561': {'tissue': 'skin', 'form': 'Localized cutaneous leishmaniasis', 'parasite': 'Leishmania braziliensis'}, 'GSM1868813': {'lineage': 'Primitive Endoderm', 'number': 'Embryo 5', 'stage': 'Blastocyst'}, 'GSM2048601': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2543698': {'library_id': 'lib5829', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543699': {'library_id': 'lib5830', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543692': {'library_id': 'lib5822', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543693': {'library_id': 'lib5823', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543690': {'library_id': 'lib5820', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543691': {'library_id': 'lib5821', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543696': {'library_id': 'lib5827', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543697': {'library_id': 'lib5828', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543694': {'library_id': 'lib5824', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543695': {'library_id': 'lib5825', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1868812': {'lineage': 'Primitive Endoderm', 'number': 'Embryo 5', 'stage': 'Blastocyst'}, 'GSM2048600': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM1980553': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980552': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980551': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980550': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980557': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980556': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980555': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980554': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980559': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980558': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM3594681': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM1250467': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '55 Years', 'onset': 'Leg', 'course': '2 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'ASO Treatment - Cells were transfected with a nuclear RNase-H dependent antisense oligonucleotide targeting Exon 2 of Hs C9orf72. This ASO has been shown in previous work to efficiently knockdown all known isoforms of C9orf72.', 'diagnosis': 'Familial ALS'}, 'GSM1868811': {'lineage': 'Primitive Endoderm', 'number': 'Embryo 5', 'stage': 'Blastocyst'}, 'GSM1250466': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '55 Years', 'onset': 'Leg', 'course': '2 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'Transfection Control - Cells were treated with a control ASO which does not have any human genomic target.', 'diagnosis': 'Familial ALS'}, 'GSM2551420': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551421': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM3496096': {'line': 'AD2-01', 'build': 'GRCh38', 'condition': 'IPSC'}, 'GSM3496097': {'line': 'AD3-01', 'build': 'GRCh38', 'condition': 'IPSC'}, 'GSM3496098': {'line': 'AH017', 'build': 'GRCh38', 'condition': 'IPSC'}, 'GSM1250463': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '55 Years', 'onset': 'Unknown', 'course': '14 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'Transfection Control - Cells were treated with a control ASO which does not have any human genomic target.', 'diagnosis': 'Familial ALS'}, 'GSM1868810': {'lineage': 'Primitive Endoderm', 'number': 'Embryo 4', 'stage': 'Blastocyst'}, 'GSM1250461': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '52 Years', 'onset': 'Distal UE', 'course': '1 year at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'ASO Treatment - Cells were transfected with a nuclear RNase-H dependent antisense oligonucleotide targeting Exon 2 of Hs C9orf72. This ASO has been shown in previous work to efficiently knockdown all known isoforms of C9orf72.', 'diagnosis': 'Sporadic ALS (C9orf72 expansion)'}, 'GSM1250460': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '52 Years', 'onset': 'Distal UE', 'course': '1 year at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'Transfection Control - Cells were treated with a control ASO which does not have any human genomic target.', 'diagnosis': 'Sporadic ALS (C9orf72 expansion)'}, 'GSM2108439': {'stages': 'myoblast nucleus'}, 'GSM2108438': {'stages': 'myoblast nucleus'}, 'GSM2108433': {'stages': 'myoblast nucleus'}, 'GSM2108432': {'stages': 'myoblast nucleus'}, 'GSM2108431': {'stages': 'myoblast nucleus'}, 'GSM2108430': {'stages': 'myoblast nucleus'}, 'GSM2108437': {'stages': 'myoblast nucleus'}, 'GSM2108436': {'stages': 'myoblast nucleus'}, 'GSM2108435': {'stages': 'myoblast nucleus'}, 'GSM2108434': {'stages': 'myoblast nucleus'}, 'GSM2152360': {'line': 'HT29', 'transfection': 'PRDX2 siRNA'}, 'GSM2153019': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153018': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153011': {'type': 'ES cell-derived CEC-like cells', 'time': '70 days'}, 'GSM2153010': {'type': 'cultured adult CECs', 'time': 'NA'}, 'GSM2153013': {'type': 'ES cell-derived CEC-like cells', 'time': '1 months'}, 'GSM2153012': {'type': 'ES cell-derived CEC-like cells', 'time': '3 months'}, 'GSM2153015': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153014': {'type': 'ES cell-derived CEC-like cells', 'time': '2 months'}, 'GSM2153017': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153016': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2616589': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616588': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2735264': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '16', 'morphology': 'undifferentiated, spindle', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735265': {'cohort': 'Paired', 'tils': '5', 'subtype': 'III', 'burden': '14', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735266': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '255', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735267': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'III', 'burden': '301', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735260': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '32', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735261': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'I', 'burden': '264', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'I'}, 'GSM2735262': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '258', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2339287': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2735268': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '27', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735269': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '285', 'morphology': 'undifferentiated, round', 'event': 'N/A', 'stage': 'III'}, 'GSM2526828': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526829': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526824': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526825': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526826': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526827': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526820': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526821': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526822': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526823': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2339284': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2055641': {'marker': 'CD5 low expression', 'tissue': 'blood', 'type': 'blood conventional dendritic cells'}, 'GSM2055640': {'marker': 'CD5 low expression', 'tissue': 'blood', 'type': 'blood conventional dendritic cells'}, 'GSM2055643': {'marker': 'CD5 high expression', 'tissue': 'blood', 'type': 'blood conventional dendritic cells'}, 'GSM2055642': {'marker': 'CD5 low expression', 'tissue': 'blood', 'type': 'blood conventional dendritic cells'}, 'GSM2055645': {'marker': 'CD5 high expression', 'tissue': 'blood', 'type': 'blood conventional dendritic cells'}, 'GSM2055644': {'marker': 'CD5 high expression', 'tissue': 'blood', 'type': 'blood conventional dendritic cells'}, 'GSM1482950': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '26T1'}, 'GSM2339285': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2325089': {'line': 'HEK293', 'variation': 'AIMP2 overexpression'}, 'GSM2325088': {'line': 'HEK293', 'variation': 'wild type'}, 'GSM2325085': {'line': 'HEK293', 'variation': 'AIMP2 overexpression'}, 'GSM2325084': {'line': 'HEK293', 'variation': 'ADAR2 overexpression'}, 'GSM2325087': {'line': 'HEK293', 'variation': 'wild type'}, 'GSM2325086': {'line': 'HEK293', 'variation': 'AIMP2 overexpression'}, 'GSM2325081': {'line': 'HEK293', 'variation': 'ADAR1 overexpression'}, 'GSM2325080': {'line': 'HEK293', 'variation': 'ADAR2 overexpression'}, 'GSM2325083': {'line': 'HEK293', 'variation': 'ADAR1 overexpression'}, 'GSM2325082': {'line': 'HEK293', 'variation': 'ADAR2 overexpression'}, 'GSM1583163': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583162': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583161': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583160': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583167': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583166': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583165': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583164': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583169': {'tissue': 'thyroid', 'type': 'Control sample', 'diagnosis': 'healthy'}, 'GSM1583168': {'tissue': 'thyroid', 'type': 'Control sample', 'diagnosis': 'healthy'}, 'GSM2339283': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, ':': {'code': '200'}, 'GSM2339280': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2735957': {'tissue': 'human airway epithelium (HAE)-ALI'}, 'GSM986106': {'status': 'healthy volunteers', 'type': 'monocytes', 'treatment': 'IDR-1018'}, 'GSM986107': {'status': 'healthy volunteers', 'type': 'monocytes', 'treatment': 'untreated'}, 'GSM986104': {'status': 'healthy volunteers', 'type': 'monocytes', 'treatment': 'IDR-1018'}, 'GSM986105': {'status': 'healthy volunteers', 'type': 'monocytes', 'treatment': 'untreated'}, 'GSM986103': {'status': 'healthy volunteers', 'type': 'monocytes', 'treatment': 'untreated'}, 'GSM2393848': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'AGO2_KO'}, 'GSM2393849': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'AGO2_KO'}, 'GSM1557558': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM2393844': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'parental'}, 'GSM2393845': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'parental'}, 'GSM2393846': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'parental'}, 'GSM2393847': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'AGO2_KO'}, 'GSM1573115': {'line': 'A549', 'type': 'Non-small-cell lung cancer (NSCLC) cells', 'genotype': 'Wild type', 'group_tag': 'Control'}, 'GSM2054994': {'haplotype': 'Homozyg. MS Risk', 'disease': 'Multiple Sclerosis'}, 'GSM2054995': {'haplotype': 'Homozyg. MS Risk', 'disease': 'Multiple Sclerosis'}, 'GSM2735954': {'tissue': 'human airway epithelium (HAE)-ALI'}, 'GSM2054993': {'haplotype': 'Homozyg. MS Risk', 'disease': 'Multiple Sclerosis'}, 'GSM2054990': {'haplotype': 'Homozyg. MS non-risk', 'disease': 'healthy control'}, 'GSM2054991': {'haplotype': 'Homozyg. MS Risk', 'disease': 'Multiple Sclerosis'}, 'GSM1573119': {'line': 'A549', 'type': 'Non-small-cell lung cancer (NSCLC) cells', 'genotype': 'FOXD3 knockdown', 'group_tag': 'FOXD3'}, 'GSM1573118': {'line': 'A549', 'type': 'Non-small-cell lung cancer (NSCLC) cells', 'genotype': 'FOXD3 knockdown', 'group_tag': 'FOXD3'}, 'GSM1557553': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM2390799': {'disease': 'Healthy Control'}, 'GSM2390798': {'disease': 'Healthy Control'}, 'GSM1557552': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM2390795': {'disease': 'Healthy Control'}, 'GSM2390794': {'disease': 'Healthy Control'}, 'GSM2390797': {'disease': 'Healthy Control'}, 'GSM2390796': {'disease': 'Healthy Control'}, 'GSM2390791': {'disease': 'Healthy Control'}, 'GSM2390790': {'disease': 'Healthy Control'}, 'GSM2390793': {'disease': 'Healthy Control'}, 'GSM2390792': {'disease': 'Healthy Control'}, 'GSM2735955': {'tissue': 'human airway epithelium (HAE)-ALI'}, 'GSM1557557': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM2511582': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'control'}, 'GSM1557556': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM1557555': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM1557554': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM2172155': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172154': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172157': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172156': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172151': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172150': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172153': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172152': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2543674': {'library_id': 'lib5803', 'stim': 'NS', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2172159': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2172158': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2166312': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166313': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166310': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166311': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166316': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166317': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166314': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166315': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166318': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166319': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1440446': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440447': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440444': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440445': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440442': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440443': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440440': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440441': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM2287469': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1440448': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440449': {'type': 'glioma - contrast-enhancing sample'}, 'GSM2170698': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1395566': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395567': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395564': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395565': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395562': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395563': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395560': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395561': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395568': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395569': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2705432': {'Sex': 'Male', 'rin': '8.4', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.6', 'pmi': '11'}, 'GSM2705433': {'Sex': 'Male', 'rin': '8.0', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.17', 'pmi': '19.0'}, 'GSM2705430': {'Sex': 'Male', 'rin': '7.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.84', 'pmi': '23'}, 'GSM2705431': {'Sex': 'Male', 'rin': '8.0', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.20', 'pmi': '10.0'}, 'GSM2705436': {'Sex': 'Male', 'rin': '6.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.16', 'pmi': '17'}, 'GSM2705437': {'Sex': 'Male', 'rin': '7.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.7', 'pmi': '16'}, 'GSM2705434': {'Sex': 'Female', 'rin': '7.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.08', 'pmi': '19'}, 'GSM2705435': {'Sex': 'Male', 'rin': '8.3', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.59', 'pmi': '24'}, 'GSM2705438': {'Sex': 'Male', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6', 'pmi': '13'}, 'GSM2705439': {'Sex': 'Male', 'rin': '5.7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.2', 'pmi': '10'}, 'GSM1646994': {'illumina_index': '4', 'point': '18', 'batch': '4', 'agent': 'Salm', 'rin': '9.4', 'individual': 'M377'}, 'GSM1646995': {'illumina_index': '5', 'point': '48', 'batch': '4', 'agent': 'Yers', 'rin': '9.3', 'individual': 'M375'}, 'GSM1646996': {'illumina_index': '6', 'point': '4', 'batch': '4', 'agent': 'BCG', 'rin': '8.8', 'individual': 'M375'}, 'GSM2204757': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204756': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204755': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204754': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204753': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204752': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204751': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204750': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1613606': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613607': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613604': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2839738': {'cohort': 'Original', 'age': '68', 'id': 'A7', 'Sex': 'Female'}, 'GSM1613602': {'line': 'CRL2097', 'type': 'med live'}, 'GSM1613603': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2204759': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204758': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2464779': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464778': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464775': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464774': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464777': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464776': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464771': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464770': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464773': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464772': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2829967': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829966': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829965': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2748323': {'line': 'HCT8', 'treatment': 'treated with E. coli membrane vesicles'}, 'GSM2829963': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829962': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829961': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829960': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2339289': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2829969': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829968': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2753338': {'type': 'Melanoma'}, 'GSM2753339': {'type': 'Ovarian Carcinoma'}, 'GSM2753336': {'type': 'Melanoma'}, 'GSM2753337': {'type': 'Melanoma'}, 'GSM2753335': {'type': 'Melanoma'}, 'GSM1915658': {'donorid': 'SU654', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915656': {'donorid': 'SU654', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915657': {'donorid': 'SU654', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915654': {'donorid': 'SU583', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915655': {'donorid': 'SU583', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915652': {'donorid': 'SU575', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915653': {'donorid': 'SU583', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915650': {'donorid': 'SU575', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915651': {'donorid': 'SU575', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1414751': {'tissue': 'Human tonsil', 'type': 'TEFF', 'markers': 'CD4+CD45RA-TCRb+PD-1loCXCR5loPSGL-1hi'}, 'GSM1414750': {'tissue': 'Human tonsil', 'type': 'TEFF', 'markers': 'CD4+CD45RA-TCRb+PD-1loCXCR5loPSGL-1hi'}, 'GSM2287460': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2516568': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'P. aeruginosa strain 753 stimulated'}, 'GSM2516562': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'non-stimulated control'}, 'GSM2516563': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'phage PNM lysate stimulated'}, 'GSM2516560': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'non-stimulated control'}, 'GSM2516561': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'non-stimulated control'}, 'GSM2516566': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'P. aeruginosa strain 753 stimulated'}, 'GSM2516567': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'P. aeruginosa strain 753 stimulated'}, 'GSM2516564': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'phage PNM lysate stimulated'}, 'GSM2516565': {'tissue': 'Whole Blood', 'type': 'PBMC', 'treatment': 'phage PNM lysate stimulated'}, 'GSM970930': {'source': 'From commercial libraries', 'tissue': 'testes'}, 'GSM2287461': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2627211': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': 'wild type'}, 'GSM2627210': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': 'wild type'}, 'GSM2627213': {'line': 'prostate cell line RWPE1', 'treatment': 'Gene Overexpression', 'variation': 'HOXA13 Overexpression'}, 'GSM2627212': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': 'wild type'}, 'GSM2627215': {'line': 'prostate cell line RWPE1', 'treatment': 'Gene Overexpression', 'variation': 'HOXA13 Overexpression'}, 'GSM2627214': {'line': 'prostate cell line RWPE1', 'treatment': 'Gene Overexpression', 'variation': 'HOXA13 Overexpression'}, 'GSM2627217': {'line': 'prostate cell line RWPE1', 'treatment': 'Gene Overexpression', 'variation': 'wild type'}, 'GSM2374398': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374397': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2627218': {'line': 'prostate cell line RWPE1', 'treatment': 'Gene Overexpression', 'variation': 'wild type'}, 'GSM2374395': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374394': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374393': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374392': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374391': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374390': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2141735': {'individual': 'EU56', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141734': {'individual': 'EU56', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141733': {'individual': 'EU56', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141732': {'individual': 'EU40', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141731': {'individual': 'EU40', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141730': {'individual': 'EU40', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2877828': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2142270': {'type': 'live sorted cells', 'library': '4'}, 'GSM1895357': {'index': 'AR002', 'level': 'normal', 'barcode': 'CGATGT', 'variation': 'lentiviral vector controls', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM1681980': {'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'Msi1 KD'}, 'GSM1895358': {'index': 'AR004', 'level': 'normal', 'barcode': 'TGACCA', 'variation': 'lentiviral vector controls', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM1895359': {'index': 'AR005', 'level': 'normal', 'barcode': 'ACAGTG', 'variation': 'lentiviral vector controls', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM999667': {'identifier': '7', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM999666': {'identifier': '7', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM999665': {'identifier': '6', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM999664': {'identifier': '6', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM999663': {'identifier': '5', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM999662': {'identifier': '5', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM999661': {'identifier': '4', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM999660': {'identifier': '4', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM2418722': {'type': 'Umbilical vein endothelial cells', 'passage': '6-8'}, 'GSM999669': {'identifier': '8', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM999668': {'identifier': '8', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM1493965': {'host': 'mouse', 'tissue': 'patient-dervied tumor xenograft', 'model': 'CRC PDTX Model', 'treatment': 'cabozantinib'}, 'GSM1493964': {'host': 'mouse', 'tissue': 'patient-dervied tumor xenograft', 'model': 'CRC PDTX Model', 'treatment': 'Control'}, 'GSM1493967': {'host': 'mouse', 'tissue': 'patient-dervied tumor xenograft', 'model': 'CRC PDTX Model', 'treatment': 'cabozantinib'}, 'GSM1493966': {'host': 'mouse', 'tissue': 'patient-dervied tumor xenograft', 'model': 'CRC PDTX Model', 'treatment': 'Control'}, 'GSM1493963': {'host': 'mouse', 'tissue': 'patient-dervied tumor xenograft', 'model': 'CRC PDTX Model', 'treatment': 'cabozantinib'}, 'GSM1493962': {'host': 'mouse', 'tissue': 'patient-dervied tumor xenograft', 'model': 'CRC PDTX Model', 'treatment': 'Control'}, 'GSM1646998': {'illumina_index': '12', 'point': '4', 'batch': '4', 'agent': 'Smeg', 'rin': '2.6', 'individual': 'M374'}, 'GSM1646999': {'illumina_index': '13', 'point': '18', 'batch': '4', 'agent': 'Rv', 'rin': '8.5', 'individual': 'M376'}, 'GSM2158049': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158048': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158047': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158046': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158045': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158044': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158043': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158042': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158041': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158040': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2339310': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2877824': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2232179': {'status': 'HCV', 'patient_identifier': 'A584', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2339314': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339315': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339316': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM1833887': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM2339317': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM1385789': {'antibody': 'ab4729 (Abcam)', 'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385788': {'antibody': 'ab10812 (Abcam)', 'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385783': {'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385782': {'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385781': {'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385780': {'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385787': {'antibody': 'ab8580 (Abcam)', 'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385786': {'antibody': 'ab4729 (Abcam)', 'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385785': {'antibody': 'ab10812 (Abcam)', 'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM2226821': {'information': 'Control - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2459129': {'type': 'human liver stellate cells', 'genotype': 'wild type'}, 'GSM1385784': {'antibody': 'ab8580 (Abcam)', 'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM2226820': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2653861': {'gender': 'M', 'passages': 'p9', 'type': 'Human liver tumoral cell'}, 'GSM2653860': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653863': {'gender': 'F', 'passages': 'p3', 'type': 'Human liver tumoral cell'}, 'GSM2653862': {'gender': 'M', 'passages': 'p19', 'type': 'Human liver tumoral cell'}, 'GSM2653865': {'gender': 'F', 'passages': 'p4', 'type': 'Human liver tumoral cell'}, 'GSM2653864': {'gender': 'F', 'passages': 'p6', 'type': 'Human liver tumoral cell'}, 'GSM2653867': {'gender': 'F', 'passages': 'p6', 'type': 'Human liver tumoral cell'}, 'GSM2653866': {'gender': 'F', 'passages': 'p11', 'type': 'Human liver tumoral cell'}, 'GSM2653869': {'gender': 'F', 'passages': 'p7', 'type': 'Human liver tumoral cell'}, 'GSM2653868': {'gender': 'F', 'passages': 'p19', 'type': 'Human liver tumoral cell'}, 'GSM2226823': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2267303': {'with': 'siADAR1', 'line': 'A172', 'type': 'human glibolastoma cells', 'replicate': 'a'}, 'GSM2267302': {'with': 'siControl', 'line': 'A172', 'type': 'human glibolastoma cells', 'replicate': 'b'}, 'GSM2267301': {'with': 'siControl', 'line': 'A172', 'type': 'human glibolastoma cells', 'replicate': 'a'}, 'GSM2170926': {'stage': 'Liver bud 2'}, 'GSM2170927': {'stage': 'Liver bud 2'}, 'GSM2170924': {'stage': 'Liver bud 2'}, 'GSM1846955': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM2170922': {'stage': 'Liver bud 2'}, 'GSM2170923': {'stage': 'Liver bud 2'}, 'GSM2170920': {'stage': 'Liver bud 2'}, 'GSM2170921': {'stage': 'Liver bud 2'}, 'GSM2170928': {'stage': 'Liver bud 2'}, 'GSM2170929': {'stage': 'Liver bud 2'}, 'GSM2267305': {'with': 'siADAR1 and siStaufen1', 'line': 'A172', 'type': 'human glibolastoma cells', 'replicate': 'a'}, 'GSM2267304': {'with': 'siADAR1', 'line': 'A172', 'type': 'human glibolastoma cells', 'replicate': 'b'}, 'GSM2877822': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2491502': {'status': 'rheumatoid arthritis', 'tissue': 'synovial fluid', 'type': 'CD19+/FcRL4+ B cells', 'id': '167', 'Sex': 'Female'}, 'GSM2226824': {'information': 'Control - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM1376158': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376159': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2392249': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392248': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392245': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2862462': {'death': 'Euthanasia (metastasized non-small cell lung carcinoma)', 'gender': 'Female', 'age': '60', 'delay': '8:25 hours', 'tissue': 'Circle of Willis', 'antibody': 'none', 'id': 'CoW2'}, 'GSM2392247': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392246': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392241': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392240': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392243': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392242': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2226827': {'information': 'Latent Tuberculosis - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM1395863': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2491500': {'status': 'rheumatoid arthritis', 'tissue': 'synovial fluid', 'type': 'CD19+/FcRL4+ B cells', 'id': '162', 'Sex': 'Female'}, 'GSM2226826': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2491501': {'status': 'rheumatoid arthritis', 'tissue': 'synovial fluid', 'type': 'CD19+/FcRL4+ B cells', 'id': '164', 'Sex': 'Female'}, 'GSM2719879': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719878': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719873': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719872': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM841731': {'with': 'AFF2 SMARTpool siRNA duplex', 'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM841730': {'with': 'AFF2 SMARTpool siRNA duplex', 'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM2719877': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'scrambled control'}, 'GSM2719876': {'source': 'H3K4me (Abcam, ab8895)', 'RNAi': 'scrambled control'}, 'GSM2719875': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM1683286': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1963824': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963825': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963826': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963827': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963820': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963821': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963822': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963823': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963828': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963829': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1683288': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM2454015': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2455609': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2748326': {'gsc': '3565', 'infection': 'ZIKV-Brazil/Dakar strains'}, 'GSM2455601': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455600': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455603': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455602': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455605': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455604': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455607': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2454014': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM3580325': {'phase': 'Immune Control', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580328': {'phase': 'Immune Control', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM2124053': {'type': 'naive T cells', 'id': 'HS60223'}, 'GSM2124052': {'type': 'Effector Memory T cells', 'id': 'LH068'}, 'GSM2124051': {'type': 'Effector Memory T cells', 'id': 'HS90002'}, 'GSM3580329': {'phase': 'Immune Control', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM2124057': {'type': 'TMNP', 'id': 'HS60223'}, 'GSM1202542': {'tissue': 'peripheral blood', 'agent': 'SR1_500nM+BIO_1µM', 'time': '16h'}, 'GSM1202541': {'tissue': 'peripheral blood', 'agent': 'MeBIO_500nM', 'time': '16h'}, 'GSM1202540': {'tissue': 'peripheral blood', 'agent': 'BIO_2µM', 'time': '16h'}, 'GSM2348721': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348720': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2124059': {'type': 'TMNP', 'id': 'LH068'}, 'GSM2348722': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348725': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348724': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348727': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348726': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM3711630': {'Sex': 'F', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '17'}, 'GSM3711631': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '16'}, 'GSM3711632': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '16'}, 'GSM2565026': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM3711634': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '16'}, 'GSM2565020': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2565023': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2565022': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM3711638': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '14'}, 'GSM3711639': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '14'}, 'GSM2454012': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2565029': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2565028': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2454011': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2170925': {'stage': 'Liver bud 2'}, 'GSM2397369': {'status': 'RA patient', 'group': 'Newly diagnosed RA', 'treatment': 'NO'}, 'GSM2397368': {'status': 'RA patient', 'group': 'Newly diagnosed RA', 'treatment': 'NO'}, 'GSM1402482': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'control', 'tissue': 'peripheral blood'}, 'GSM1402483': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'control', 'tissue': 'peripheral blood'}, 'GSM1402484': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'control', 'tissue': 'peripheral blood'}, 'GSM1402485': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'control', 'tissue': 'peripheral blood'}, 'GSM1402486': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'control', 'tissue': 'peripheral blood'}, 'GSM1402487': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'control', 'tissue': 'peripheral blood'}, 'GSM1402488': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'control', 'tissue': 'peripheral blood'}, 'GSM1402489': {'gender': 'male', 'ancestry': 'Caucasian', 'group': 'control', 'tissue': 'peripheral blood'}, 'GSM2046854': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K36me3 (2ug Abcam, AB9050)', 'agasga': 'AGA'}, 'GSM2046855': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me1 (2ug Abcam, AB8895)', 'agasga': 'SGA'}, 'GSM2046856': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me1 (2ug Abcam, AB8895)', 'agasga': 'SGA'}, 'GSM2046857': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me1 (2ug Abcam, AB8895)', 'agasga': 'SGA'}, 'GSM2046850': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K36me3 (2ug Abcam, AB9050)', 'agasga': 'SGA'}, 'GSM2046851': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K36me3 (2ug Abcam, AB9050)', 'agasga': 'SGA'}, 'GSM2046852': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K36me3 (2ug Abcam, AB9050)', 'agasga': 'AGA'}, 'GSM2046853': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K36me3 (2ug Abcam, AB9050)', 'agasga': 'AGA'}, 'GSM2112760': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '48 Hours'}, 'GSM2112761': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10 nM R5020', 'time': '48 Hours'}, 'GSM2112762': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '48 Hours'}, 'GSM2112763': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': 'Vehicle', 'time': '24 Hours'}, 'GSM2046858': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me1 (2ug Abcam, AB8895)', 'agasga': 'AGA'}, 'GSM2112765': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10 nM R5020', 'time': '24 Hours'}, 'GSM2112766': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '24 Hours'}, 'GSM2665779': {'age': 'Day 175', 'well': 'E1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2170625': {'stage': 'Hepatic endoderm 1'}, 'GSM2170624': {'stage': 'Hepatic endoderm 1'}, 'GSM2170627': {'stage': 'Hepatic endoderm 1'}, 'GSM2665774': {'age': 'Day 175', 'well': 'C4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2170626': {'stage': 'Hepatic endoderm 1'}, 'GSM2889091': {'tissue': 'pancreatic islets'}, 'GSM2889090': {'tissue': 'pancreatic islets'}, 'GSM2665775': {'age': 'Day 175', 'well': 'G5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2170621': {'stage': 'Hepatic endoderm 1'}, 'GSM2665776': {'age': 'Day 175', 'well': 'E2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2170620': {'stage': 'Hepatic endoderm 1'}, 'GSM2665777': {'age': 'Day 175', 'well': 'A12', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2170623': {'stage': 'Hepatic endoderm 1'}, 'GSM2665770': {'age': 'Day 100', 'well': 'E2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2170622': {'stage': 'Hepatic endoderm 1'}, 'GSM1678010': {'tissue': 'Prostate', 'type': 'Prostate cancer', 'genotype': 'wild type'}, 'GSM2348426': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1678012': {'tissue': 'Prostate', 'type': 'Prostate cancer', 'genotype': 'DAXX knock-down'}, 'GSM1678013': {'tissue': 'Prostate', 'type': 'Prostate cancer', 'genotype': 'DAXX knock-down'}, 'GSM2665772': {'age': 'Day 175', 'well': 'F1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665773': {'age': 'Day 175', 'well': 'H1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2186822': {'stimulation': 'interferon gamma', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2210577': {'line': 'A375', 'treatment': 'Control'}, 'GSM2186823': {'stimulation': 'media alone', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2170629': {'stage': 'Hepatic endoderm 1'}, 'GSM2348427': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2186820': {'stimulation': 'media alone', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2124759': {'rin': '6', 'Sex': 'male'}, 'GSM2186821': {'stimulation': 'TLR2/1 ligand', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186826': {'stimulation': 'media alone', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186827': {'stimulation': 'TLR2/1 ligand', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186824': {'stimulation': 'TLR2/1 ligand', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2348424': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1964989': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2233238': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2113419': {'status': 'wild-type-depleted', 'cells': 'WT1', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113418': {'status': 'wild-type', 'cells': 'WT1', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2233239': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2232713': {'tissue': 'Bone marrow', 'genotype': 'wildtype', 'markers': 'ckit+ScaI+'}, 'GSM2348425': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'h': {'code': '200'}, 'GSM2113413': {'status': 'wild-type', 'cells': 'HBEC3kt', 'treatment': 'gene editing'}, 'GSM2113412': {'status': 'wild-type', 'cells': 'HBEC3kt', 'treatment': 'gene editing'}, 'GSM2113415': {'status': 'wild-type and S34F mutation', 'cells': 'HBEC3kt', 'treatment': 'gene editing'}, 'GSM2113414': {'status': 'wild-type and S34F mutation', 'cells': 'HBEC3kt', 'treatment': 'gene editing'}, 'GSM2113417': {'status': 'S34F mutation (wild-type-depleted)', 'cells': 'MUT1a', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2113416': {'status': 'wild-type and S34F mutation', 'cells': 'MUT1a', 'treatment': 'U2AF1 allele-specific disruption'}, 'GSM2252624': {'line': 'MDA-MB231', 'type': 'Breast cancer (Basal type)', 'treatment': 'DMSO'}, 'GSM2252625': {'line': 'MDA-MB231', 'type': 'Breast cancer (Basal type)', 'treatment': '1μM Doxorubicin for 8 hours'}, 'GSM2252626': {'line': 'MDA-MB231', 'type': 'Breast cancer (Basal type)', 'treatment': '20μM Etoposide for 8 hours'}, 'GSM1965353': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2026526': {'line': 'MDA-MB-231', 'type': 'breast cancer', 'Sex': 'female'}, 'GSM2348422': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2026524': {'line': 'MDA-MB-231', 'type': 'breast cancer', 'Sex': 'female'}, 'GSM2026525': {'line': 'MDA-MB-231', 'type': 'breast cancer', 'Sex': 'female'}, 'GSM2252628': {'line': 'U2OS', 'type': 'Osteosarcoma', 'treatment': 'DMSO'}, 'GSM2252629': {'line': 'U2OS', 'type': 'Osteosarcoma', 'treatment': '1μM Doxorubicin for 8 hours'}, 'GSM1395607': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395606': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395605': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2232180': {'status': 'HCV', 'patient_identifier': 'A609', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM1395603': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395602': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395601': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395600': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2232187': {'status': 'HCV', 'patient_identifier': 'A727', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM1395609': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2303347': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2643634': {'antibody': 'N/A', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM2348423': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2643631': {'antibody': 'N/A', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'ChimpPRDM9(W11a)_HA'}, 'GSM2232185': {'status': 'HCV', 'patient_identifier': 'C552', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2643633': {'antibody': 'N/A', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9 (B allele ZF array only)'}, 'GSM2805902': {'genotype': 'BCOR-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2232184': {'status': 'HCV', 'patient_identifier': 'A991', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'high ISG'}, 'GSM2610611': {'tissue': 'embryo', 'expression': 'PB-Tcf1'}, 'GSM2610610': {'tissue': 'embryo', 'expression': 'PB'}, 'GSM2232189': {'status': 'HCV', 'patient_identifier': 'A616', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2348420': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2232188': {'status': 'HCV', 'patient_identifier': 'B254', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM2805904': {'genotype': 'BCOR-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2158294': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM1430924': {'line': 'Ls174T', 'antibody': '10E2'}, 'GSM1430925': {'line': 'Ls174T', 'antibody': 'N262', 'number': 'D0413', 'manufacturer': 'Santa Cruz'}, 'GSM1430922': {'line': 'Ls174T', 'antibody': 'N262', 'number': 'D0413', 'manufacturer': 'Santa Cruz'}, 'GSM1430923': {'line': 'Ls174T', 'antibody': 'none'}, 'GSM1430920': {'line': 'Ls174T', 'antibody': 'none'}, 'GSM1430921': {'line': 'Ls174T', 'antibody': '10E2'}, 'GSM2348421': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2157635': {'function': 'SIX2', 'line': 'Endo-beta-H1C', 'type': 'pancreatic beta-cell line', 'treatment': 'T-Antigen siRNA 460'}, 'GSM2157634': {'function': 'GFP', 'line': 'Endo-beta-H1C', 'type': 'pancreatic beta-cell line', 'treatment': 'T-Antigen siRNA 460'}, 'GSM2535709': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1179', 'samplename': '1gr_413CD3_C69', 'seqsite': 'BRI', 'sampleID': 'S13306', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1179', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C69'}, 'GSM2535708': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1178', 'samplename': '1gr_413CD3_C51', 'seqsite': 'BRI', 'sampleID': 'S13305', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1178', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C51'}, 'GSM1012759': {'phase': 'G1', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM2535701': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1169', 'samplename': '1gr_413CD3_C67', 'seqsite': 'BRI', 'sampleID': 'S13296', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1169', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C67'}, 'GSM2816230': {'line': 'H9'}, 'GSM2535703': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1173', 'samplename': '1gr_413CD3_C50', 'seqsite': 'BRI', 'sampleID': 'S13300', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1173', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C50'}, 'GSM2535702': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1170', 'samplename': '1gr_413CD3_C75', 'seqsite': 'BRI', 'sampleID': 'S13297', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1170', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C75'}, 'GSM2816235': {'line': 'H9'}, 'GSM2535704': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1174', 'samplename': '1gr_413CD3_C68', 'seqsite': 'BRI', 'sampleID': 'S13301', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1174', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C68'}, 'GSM2535707': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1177', 'samplename': '1gr_413CD3_C92', 'seqsite': 'BRI', 'sampleID': 'S13304', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1177', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C92'}, 'GSM2535706': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1176', 'samplename': '1gr_413CD3_C86', 'seqsite': 'BRI', 'sampleID': 'S13303', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1176', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C86'}, 'GSM2932807': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '16'}, 'GSM2932802': {'line': 'HepG2 cells', 'medium': 'Glucose 5.5 mM', 'treatment': 'VPA 1 mM'}, 'GSM2932801': {'line': 'HepG2 cells', 'medium': 'Glucose 5.5 mM', 'treatment': 'VPA 1 mM'}, 'GSM2932800': {'line': 'HepG2 cells', 'medium': 'Glucose 5.5 mM', 'treatment': 'VPA 1 mM'}, 'GSM2932809': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '17'}, 'GSM2932808': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '11'}, 'GSM2510239': {'shRNA': 'Non-target control', 'type': 'immortalized human cell line HEK293'}, 'GSM2348794': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1832768': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM1832769': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2348795': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348796': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348797': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348790': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348791': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2575406': {'line': 'WM983B', 'subclone': 'B2', 'condition': 'Drug'}, 'GSM2575407': {'line': 'WM983B', 'subclone': 'D5', 'condition': 'NoDrug'}, 'GSM2575404': {'line': 'WM983B', 'subclone': 'E3', 'condition': 'Drug'}, 'GSM2575405': {'line': 'WM983B', 'subclone': 'C3', 'condition': 'Drug'}, 'GSM2575402': {'line': 'WM983B', 'subclone': 'G7', 'condition': 'Drug'}, 'GSM2575403': {'line': 'WM983B', 'subclone': 'G7', 'condition': 'Drug'}, 'GSM2575400': {'line': 'WM983B', 'subclone': 'E7', 'condition': 'Drug'}, 'GSM2575401': {'line': 'WM983B', 'subclone': 'C10', 'condition': 'Drug'}, 'GSM2565097': {'construction': 'PLATE-Seq', 'drug': 'Pomalidomide'}, 'GSM2320000': {'induction': 'None', 'treatment': 'siRNA Control', 'time': '24 hr'}, 'GSM2575408': {'line': 'WM983B', 'subclone': 'D5', 'condition': 'Drug'}, 'GSM2575409': {'line': 'WM983B', 'subclone': 'E2', 'condition': 'NoDrug'}, 'GSM2434058': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2056815': {'knockdown': 'FUS', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '0m'}, 'GSM2056814': {'knockdown': 'ctrl', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '0m'}, 'GSM2056817': {'knockdown': 'ctrl', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '15m'}, 'GSM2056816': {'knockdown': 'TAF15', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '0m'}, 'GSM2056819': {'knockdown': 'TAF15', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '15m'}, 'GSM2056818': {'knockdown': 'FUS', 'type': 'NPC', 'agent': 'Actinomycin D', 'time': '15m'}, 'GSM2862463': {'death': 'Acute renal failure', 'gender': 'Female', 'age': '54', 'delay': '8:00 hours', 'tissue': 'Circle of Willis', 'id': 'CoW1'}, 'GSM1376151': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2862461': {'death': 'Acute renal failure', 'gender': 'Female', 'age': '54', 'delay': '8:00 hours', 'tissue': 'Circle of Willis', 'antibody': 'none', 'id': 'CoW1'}, 'GSM1376153': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2592825': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'treatment': 'none'}, 'GSM2616517': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM1376154': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2452508': {'with': 'shRNA against luciferase', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2862466': {'death': 'Aortic aneurysm', 'gender': 'Male', 'age': '67', 'delay': '9:00 hours', 'tissue': 'Circle of Willis', 'id': 'CoW4'}, 'GSM2862465': {'death': 'Unknown', 'gender': 'Female', 'age': '90', 'delay': '5:50 hours', 'tissue': 'Circle of Willis', 'id': 'CoW3'}, 'GSM2862464': {'death': 'Euthanasia (metastasized non-small cell lung carcinoma)', 'gender': 'Female', 'age': '60', 'delay': '8:25 hours', 'tissue': 'Circle of Willis', 'id': 'CoW2'}, 'GSM2370652': {'antibodies': 'H3K27Ac (Diagenode, pAb-196-060)', 'type': 'Resting TEM CD4 purified cells', 'ids': '505'}, 'GSM2370653': {'antibodies': 'RNA Polymerase II (Active Motif, 4H8)', 'type': 'Resting TEM CD4 purified cells', 'ids': '883'}, 'GSM2370650': {'antibodies': 'H2A.z (Abcam ab4174)', 'type': 'Resting TEM CD4 purified cells', 'ids': '390'}, 'GSM2370651': {'antibodies': 'H2A.z (Abcam ab4174)', 'type': 'Resting TEM CD4 purified cells', 'ids': '526'}, 'GSM2394470': {'id': 'IonXpress_051', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'RO0611790-000-012', 'point': 'after 12h of compound treatment'}, 'GSM2394471': {'id': 'IonXpress_052', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'RO0470203-000-017', 'point': 'after 12h of compound treatment'}, 'GSM2394472': {'id': 'IonXpress_053', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'RO0475819-001-001', 'point': 'after 12h of compound treatment'}, 'GSM2195065': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2212667': {'gender': 'female', 'condition': 'control'}, 'GSM2212660': {'gender': 'female', 'condition': 'control'}, 'GSM2212661': {'gender': 'female', 'condition': 'control'}, 'GSM2394476': {'id': 'IonXpress_057', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_MB', 'point': 'after 12h of compound treatment'}, 'GSM2550470': {'state': 'control', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 0'}, 'GSM2550471': {'state': 'control', 'tissue': 'lung', 'type': 'fibroblast', 'stage': 'Day 21'}, 'GSM2394477': {'id': 'IonXpress_058', 'plate': 'F1', 'type': 'iPS-derived cardiomyocytes', 'name': 'MB', 'point': 'after 12h of compound treatment'}, 'GSM2469585': {'status': 'susceptible', 'gender': 'male', 'individual': 's05', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469584': {'status': 'susceptible', 'gender': 'male', 'individual': 's05', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469587': {'status': 'susceptible', 'gender': 'male', 'individual': 's06', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469586': {'status': 'susceptible', 'gender': 'male', 'individual': 's06', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469581': {'status': 'susceptible', 'gender': 'male', 'individual': 's03', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469580': {'status': 'susceptible', 'gender': 'male', 'individual': 's03', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469583': {'status': 'susceptible', 'gender': 'male', 'individual': 's04', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469582': {'status': 'susceptible', 'gender': 'male', 'individual': 's04', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2732858': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732859': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732852': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2732853': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2732851': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2732856': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2732857': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732854': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2732855': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM1980406': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1548466': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548465': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548464': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548463': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548462': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548461': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548460': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM2176087': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176086': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176085': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176084': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176083': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176082': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176081': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176080': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2571056': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2176089': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176088': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2048661': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1509288': {'line': 'Hela', 'antibody': 'monoclonal anti-U2AF65 antibody, Clone MC3 (Sigma-Aldrich, catalog# U4758, lot# 034K4841)'}, 'GSM2048663': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048662': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048665': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2607586': {'line': 'WA26'}, 'GSM2048667': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2571058': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2048669': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048668': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2607589': {'line': 'WA26'}, 'GSM2607588': {'line': 'WA26'}, 'GSM2635740': {'genotype': 'YAP-', 'treatment_time': '30h', 'treatment': 'XV50'}, 'GSM2635741': {'genotype': 'YAP-', 'treatment_time': '30h', 'treatment': 'XV50'}, 'GSM1603319': {'cl': '108', 'ca': '9.2', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '1.32', 'id': 'S05', 'co2': '27', 'rr': '16', 'plavix': 'Yes', 'na': '143', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '109', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '18', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '4.34', 'gender': 'M', 'k': '3.9', 'batch': '4', 'prasugrel': '--', 'cad': 'No'}, 'GSM2451146': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451147': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451144': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100067': {'rin': '9.2', 'Sex': 'Female', 'sspg': '50', 'age': '70', 'bmi': '27.5', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '345', 'method': 'Qiagen:trizol'}, 'GSM2451142': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100061': {'rin': '10', 'Sex': 'Female', 'sspg': '243', 'age': '70', 'bmi': '33.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '336', 'method': 'Life-Tech GITC'}, 'GSM2451140': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100063': {'rin': '10', 'Sex': 'Female', 'sspg': '243', 'age': '70', 'bmi': '33.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '336', 'method': 'Life-Tech GITC'}, 'GSM2100068': {'rin': 'NA', 'Sex': 'Female', 'sspg': '50', 'age': '70', 'bmi': '27.5', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '345', 'method': 'Qiagen:trizol'}, 'GSM2100069': {'rin': '10', 'Sex': 'Female', 'sspg': '100', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '29.5', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '73', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '352', 'method': 'Life-Tech GITC'}, 'GSM2451148': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451149': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1576143': {'type': 'human mesenchymal stem cell (hMSCs)', 'variation': 'WT; SIRT6+/+', 'background': 'H9'}, 'GSM1576142': {'type': 'human mesenchymal stem cell (hMSCs)', 'variation': 'WT; SIRT6+/+', 'background': 'H9'}, 'GSM1576145': {'type': 'human mesenchymal stem cell (hMSCs)', 'variation': 'KO; SIRT6-/-', 'background': 'H9'}, 'GSM1576144': {'type': 'human mesenchymal stem cell (hMSCs)', 'variation': 'KO; SIRT6-/-', 'background': 'H9'}, 'GSM1576147': {'type': 'human mesenchymal stem cell (hMSCs)', 'variation': 'WT; SIRT6+/+', 'background': 'H9'}, 'GSM1576146': {'type': 'human mesenchymal stem cell (hMSCs)', 'variation': 'WT; SIRT6+/+', 'background': 'H9'}, 'GSM1576149': {'type': 'human mesenchymal stem cell (hMSCs)', 'variation': 'KO; SIRT6-/-', 'background': 'H9'}, 'GSM1576148': {'type': 'human mesenchymal stem cell (hMSCs)', 'variation': 'KO; SIRT6-/-', 'background': 'H9'}, 'GSM2348628': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1164652': {'line': 'K562', 'with': 'siRNA against ADAR1 (ADAR knock down)'}, 'GSM1545609': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM2348629': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2409877': {'culture': '4 weeks', 'type': 'hESC derived organoids', 'variation': 'wt'}, 'GSM2409876': {'culture': '4 weeks', 'type': 'hESC derived organoids', 'variation': 'wt'}, 'GSM2409875': {'culture': '4 weeks', 'type': 'hESC derived organoids', 'variation': 'wt'}, 'GSM2409874': {'culture': '4 weeks', 'type': 'hESC derived organoids', 'variation': 'wt'}, 'GSM2409873': {'culture': '4 weeks', 'tissue': 'iPSC derived colonic organoids', 'variation': 'APC mutations'}, 'GSM2409872': {'culture': '4 weeks', 'tissue': 'iPSC derived colonic organoids', 'variation': 'APC-/+'}, 'GSM2786570': {'line': 'WSU_DLCL2'}, 'GSM2409870': {'culture': '4 weeks', 'tissue': 'iPSC derived colonic organoids', 'variation': 'wt'}, 'GSM2229939': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS20'}, 'GSM2459118': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2204652': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204653': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1625678': {'state': 'healthy', 'tissue': 'peripheral whole blood'}, 'GSM1625679': {'state': 'relapsing-remitting multiple sclerosis (RRMS)', 'tissue': 'peripheral whole blood'}, 'GSM2204656': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204657': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204654': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204655': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2231160': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM2231161': {'tissue': 'skin', 'type': 'nonlesional,chronically UV-exposed skin (NS)'}, 'GSM2231162': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM2231163': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM1625676': {'state': 'relapsing-remitting multiple sclerosis (RRMS)', 'tissue': 'peripheral whole blood'}, 'GSM1625677': {'state': 'relapsing-remitting multiple sclerosis (RRMS)', 'tissue': 'peripheral whole blood'}, 'GSM2231166': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM1625675': {'state': 'healthy', 'tissue': 'peripheral whole blood'}, 'GSM2230417': {'type': 'iPS-derived neural progenitor cells', 'genotype': 'WT'}, 'GSM2125098': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-PR (inhouse KD68)', 'type': 'ER+/PR+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2230415': {'type': 'iPS-derived neural progenitor cells', 'genotype': 'WT'}, 'GSM2230414': {'type': 'fetal-derived neural progenitor cells', 'genotype': 'WT'}, 'GSM2230413': {'type': 'fetal-derived neural progenitor cells', 'genotype': 'WT'}, 'GSM2230412': {'type': 'fetal-derived neural progenitor cells', 'genotype': 'WT'}, 'GSM2230411': {'type': 'iPS-derived neural progenitor cells', 'genotype': 'TRIM-28 KD'}, 'GSM2100267': {'rin': '10', 'Sex': 'Female', 'sspg': '257', 'age': '68', 'bmi': '31.6', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '963', 'method': 'Life-Tech GITC'}, 'GSM2284032': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284033': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284030': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284031': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'LM411-E8'}, 'GSM2284036': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284037': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2284034': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2230418': {'antibody': 'Kap1 (AbCam 10483)', 'region': 'NA', 'type': 'iPS-derived neural progenitor cells', 'age': 'NA'}, 'GSM2100262': {'rin': '6.9', 'Sex': 'Male', 'sspg': '184', 'age': '57', 'bmi': '24.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '961', 'method': 'Qiagen:trizol'}, 'GSM2100263': {'rin': '7.4', 'Sex': 'Male', 'sspg': '184', 'age': '57', 'bmi': '24.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '961', 'method': 'Qiagen:trizol'}, 'GSM2348625': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM651550': {'antibody': 'none', 'condition': 'BRG1 RNAi KD'}, 'GSM2125090': {'status': 'ER+/PRA+/PRB-', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': 'Vehicle', 'time': '12 Hours'}, 'GSM651552': {'antibody': 'Anti-Brg1 (Khavari, P. A., et al., 1993, Nature, 366:170-174)', 'condition': 'CD34 WT'}, 'GSM651553': {'antibody': 'Anti-Brg1 (Khavari, P. A., et al., 1993, Nature, 366:170-174)', 'condition': 'CD36 WT'}, 'GSM651554': {'condition': 'CD34 WT'}, 'GSM651555': {'condition': 'BRG1 KD shLuc control'}, 'GSM651556': {'condition': 'BRG1 RNAi KD'}, 'GSM2125091': {'status': 'ER+/PRA+/PRB-', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM Estradiol', 'time': '12 Hours'}, 'GSM651558': {'condition': 'BRG1 KD shLuc control'}, 'GSM651559': {'condition': 'CD34 WT'}, 'GSM2125092': {'status': 'ER+/PRA+/PRB-', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM R5020', 'time': '12 Hours'}, 'GSM2049403': {'culture': '4 weeks', 'type': 'H1 hESC derived Colonic organoids', 'genotype': 'wt'}, 'GSM2453540': {'tissue': 'H1-EC1-PC'}, 'GSM2453541': {'tissue': 'H1-EC1'}, 'GSM2453542': {'tissue': 'Pericyte'}, 'GSM2453543': {'tissue': 'HUVEC1'}, 'GSM2453544': {'tissue': 'H1-EC1-PC'}, 'GSM2453545': {'tissue': 'H1-EC1-PC'}, 'GSM2453546': {'tissue': 'H1-EC1-PC'}, 'GSM2453547': {'tissue': 'H1-EC1'}, 'GSM2453548': {'tissue': 'Pericyte'}, 'GSM2453549': {'tissue': 'HUVEC1'}, 'GSM2125095': {'status': 'ER+/PRA-/PRB+', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM Estradiol', 'time': '12 Hours'}, 'GSM715470': {'tissue': 'extraskeletal myxoid chondrosarcoma', 'method': 'FFPE'}, 'GSM715472': {'tissue': 'extraskeletal myxoid chondrosarcoma', 'method': 'FFPE'}, 'GSM2307129': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2746682': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '1'}, 'GSM715477': {'tissue': 'synovial sarcoma', 'method': 'FFPE'}, 'GSM715478': {'tissue': 'synovial sarcoma', 'method': 'FFPE'}, 'GSM715479': {'tissue': 'myxoid liposarcoma', 'method': 'FFPE'}, 'GSM2125097': {'status': 'ER+/PRA-/PRB+', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 Hours'}, 'GSM2263393': {'group': 'Fy', 'gender': 'F', 'age': '21', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2175978': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175979': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2348627': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2175972': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175973': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175970': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175971': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175976': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175977': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175974': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175975': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2263394': {'group': 'Fy', 'gender': 'F', 'age': '37', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2141672': {'individual': 'EU264', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141673': {'individual': 'EU266', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141670': {'individual': 'EU264', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141671': {'individual': 'EU264', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141676': {'individual': 'EU268', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141677': {'individual': 'EU268', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141674': {'individual': 'EU266', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141675': {'individual': 'EU266', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2137709': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2137708': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2235681': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': '10nM R1881', 'time': '30min'}, 'GSM2348623': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2307126': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2455941': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2085613': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2479755': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2158368': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158369': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2479754': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2158362': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158363': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158360': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158361': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158366': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2479757': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2158364': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158365': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM1964970': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2479751': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479750': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM1010126': {'type': 'human umbilical vein endothelial cells', 'variation': 'wild type'}, 'GSM1010127': {'type': 'human umbilical vein endothelial cells', 'variation': 'WTAP knockdown'}, 'GSM2235682': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': '10nM R1881', 'time': '30min'}, 'GSM2889028': {'tissue': 'pancreatic islets'}, 'GSM2653560': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653561': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2235685': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'IgG (sc-2027)', 'treatment': 'EtOH and 10nM R1881', 'time': '2h'}, 'GSM2479758': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2241578': {'batch': 'C', 'condition': 'Disomic'}, 'GSM2241579': {'batch': 'C', 'condition': 'Disomic'}, 'GSM2212738': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2212739': {'gender': 'female', 'condition': 'control'}, 'GSM2212736': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2241571': {'batch': 'C', 'condition': 'Disomic'}, 'GSM2212734': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212735': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212732': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212733': {'gender': 'female', 'condition': 'control'}, 'GSM2212730': {'gender': 'female', 'condition': 'control'}, 'GSM2212731': {'gender': 'female', 'condition': 'control'}, 'GSM2235684': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': '10nM R1881', 'time': '2h'}, 'GSM1652605': {'induction': 'Day 0', 'type': 'hES cells'}, 'GSM999533': {'input': '1000 ng (10 ng polyA+)', 'line': 'K-562', 'type': 'CML', 'state': 'intact'}, 'GSM1652607': {'induction': 'Day 0', 'type': 'hES cells'}, 'GSM1652606': {'induction': 'Day 0', 'type': 'hES cells'}, 'GSM999532': {'input': '100 ng', 'line': 'K-562', 'type': 'CML', 'state': 'fragmented'}, 'GSM1652609': {'induction': 'Day 37', 'type': 'GFP positive neural retina cells'}, 'GSM1366892': {'with': 'retroviruses expressing short haiprin against RENILLA', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1366893': {'with': 'retroviruses expressing short haiprin against RENILLA', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM2235686': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'rabbit antiserum against AR', 'treatment': '10nM R1881', 'time': '30min'}, 'GSM1366894': {'with': 'retroviruses expressing short haiprin against RENILLA', 'line': 'CUTLL1', 'type': 'human T cell leukemia cells'}, 'GSM1853593': {'line': 'HeLa', 'treatment': '20nM RRP6/ 20nM DIS3 siRNA - Dharmacon'}, 'GSM1366895': {'with': 'retroviruses expressing short haiprin against JMJD3', 'line': 'CEM', 'type': 'human T cell leukemia cells'}, 'GSM841733': {'with': 'AFF3 SMARTpool siRNA duplex', 'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM1366896': {'with': 'retroviruses expressing short haiprin against JMJD3', 'line': 'CEM', 'type': 'human T cell leukemia cells'}, 'GSM841732': {'with': 'AFF3 SMARTpool siRNA duplex', 'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM1366897': {'with': 'retroviruses expressing short haiprin against UTX', 'line': 'CEM', 'type': 'human T cell leukemia cells'}, 'GSM2632499': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1977481': {'line': 'AIRE-Tet, Tet-On Advanced HEK293 (Clontech) with inducible AIRE expression', 'expression': 'Uninduced', 'treatment': 'Untreated'}, 'GSM2632498': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM841737': {'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM841736': {'antibody': 'AFF4 antibody [Lin et al. 2010]', 'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM841735': {'with': 'AFF4 SMARTpool siRNA duplex', 'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM2719874': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM1528139': {'duration': '6 hours', 'line': 'CCD-18Co', 'type': 'normal intestinal subepithelial myofibroblasts', 'treatment': '10 ng/ml rhIL-33'}, 'GSM1716735': {'subpopulation': 'CA125 positive', 'storage': 'freshly isolatedprimary cells', 'state': 'solid tumor'}, 'GSM1916406': {'type': 'EBV-immortalized LCL'}, 'GSM1969359': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1868819': {'lineage': 'Epiblast', 'number': 'Embryo 5', 'stage': 'Blastocyst'}, 'GSM1868818': {'lineage': 'Epiblast', 'number': 'Embryo 4', 'stage': 'Blastocyst'}, 'GSM1969354': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Upper limb'}, 'GSM1969355': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Trunk wall'}, 'GSM1916408': {'type': 'EBV-immortalized LCL'}, 'GSM1916409': {'type': 'EBV-immortalized LCL'}, 'GSM1969350': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969351': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Upper limb'}, 'GSM1969352': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969353': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM1115995': {'line': 'MCF7', 'treatment': '1hr treatment with 100nM E2'}, 'GSM1115994': {'line': 'MCF7', 'antibody': 'H3K4me1', 'catalog': 'Abcam, ab8899', 'treatment': '1hr treatment with 100nM E2'}, 'GSM1115997': {'line': 'MCF7', 'treatment': '1hr treatment with ethanol'}, 'GSM1115996': {'line': 'MCF7', 'treatment': '1hr treatment with 100nM E2'}, 'GSM1115991': {'line': 'MCF7', 'antibody': 'ERa', 'catalog': 'Santa Cruz Biotech, SC-543', 'treatment': '1hr treatment with 100nM E2'}, 'GSM1115990': {'line': 'MCF7', 'antibody': 'ERa', 'catalog': 'Santa Cruz Biotech, SC-543', 'treatment': '1hr treatment with 100nM E2'}, 'GSM1115993': {'line': 'MCF7', 'antibody': 'H3k27ac', 'catalog': 'Abcam, ab4729', 'treatment': '1hr treatment with ethanol'}, 'GSM1115992': {'line': 'MCF7', 'antibody': 'H3k27ac', 'catalog': 'Abcam, ab4729', 'treatment': '1hr treatment with 100nM E2'}, 'GSM1115999': {'line': 'MCF7', 'treatment': '1hr treatment with 100nM E2'}, 'GSM1115998': {'line': 'MCF7', 'treatment': '1hr treatment with ethanol'}, 'GSM3190741': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.009502'}, 'GSM3190740': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'EV-D68', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.142151'}, 'GSM3190743': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.566451'}, 'GSM3190742': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.860769'}, 'GSM3190745': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.20329'}, 'GSM3190744': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.697296'}, 'GSM3190747': {'boca': 'Yes', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.242978'}, 'GSM3190746': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.9', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.389683'}, 'GSM3190749': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.874939'}, 'GSM3190748': {'boca': 'Yes', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.9', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.379213'}, 'GSM2085611': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1322937': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1323738': {'tgleason': '8', 'race': 'W', 'score': '448', 'sms': 'Positive', 'pstage': 'pT3B', 'site': 'Atlanta VA Medical Center', 'prepsa': '65', 'reads': '148,368,488', 'tissue': 'prostate', 'u': '0.8', 'mapped': '61.8%', 'id': 'VA-PC-92-11', 'bcr': '1'}, 'GSM1323739': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT3B', 'site': 'Atlanta VA Medical Center', 'prepsa': '40.5', 'reads': '78,025,110', 'tissue': 'prostate', 'u': '3.6', 'mapped': '47.6%', 'id': 'VA-PC-92-9', 'bcr': '1'}, 'GSM1323736': {'tgleason': '8', 'race': 'NA', 'score': '448', 'sms': 'Positive', 'pstage': 'pT3B', 'site': 'Atlanta VA Medical Center', 'prepsa': 'NA', 'reads': '126,005,324', 'tissue': 'prostate', 'u': '36.0', 'mapped': '63.0%', 'id': 'VA-PC-90-4', 'bcr': '1'}, 'GSM1323737': {'tgleason': '9', 'race': 'B', 'score': '459', 'sms': 'Negative', 'pstage': 'pT3B', 'site': 'Atlanta VA Medical Center', 'prepsa': '72.6', 'reads': '86,029,578', 'tissue': 'prostate', 'u': '0.7', 'mapped': '72.7%', 'id': 'VA-PC-91-65', 'bcr': '1'}, 'GSM1323734': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '6.68', 'reads': '155,745,294', 'tissue': 'prostate', 'u': '3.6', 'mapped': '65.8%', 'id': 'VA-PC-00-96', 'bcr': '1'}, 'GSM1323735': {'tgleason': '7', 'race': 'B', 'score': '437', 'sms': 'Positive', 'pstage': 'pT3A', 'site': 'Atlanta VA Medical Center', 'prepsa': '18.03', 'reads': '90,703,994', 'tissue': 'prostate', 'u': '26.6', 'mapped': '74.6%', 'id': 'VA-PC-00-99', 'bcr': '1'}, 'GSM1323732': {'tgleason': '7', 'race': 'B', 'score': '437', 'sms': 'Positive', 'pstage': 'pT3B', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.9', 'reads': '129,843,158', 'tissue': 'prostate', 'u': '26.6', 'mapped': '77.2%', 'id': 'VA-PC-00-86', 'bcr': '1'}, 'GSM1323733': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '25.88', 'reads': '138,978,248', 'tissue': 'prostate', 'u': '1.6', 'mapped': '68.3%', 'id': 'VA-PC-00-88', 'bcr': '1'}, 'GSM1323730': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '15.84', 'reads': '201,380,054', 'tissue': 'prostate', 'u': '72', 'mapped': '61.2%', 'id': 'UTPC164', 'bcr': '1'}, 'GSM1323731': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Positive', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '13.03', 'reads': '106,116,046', 'tissue': 'prostate', 'u': '36', 'mapped': '66.0%', 'id': 'UTPC170', 'bcr': '1'}, 'GSM2153280': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153281': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153282': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153283': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153284': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153285': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153286': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153287': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153288': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153289': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1131340': {'with': 'LPS (1μM) for 4 hrs', 'type': 'primary human umbilical vein endothelial cells', 'passage': '4-6'}, 'GSM1131341': {'with': 'LPS (1μM) for 8 hrs', 'type': 'primary human umbilical vein endothelial cells', 'passage': '4-6'}, 'GSM1322935': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1060231': {'line': 'MDA-MB-231', 'treatment': 'CXCL12 (300ng/mL) + IGF1 (100ng/mL)'}, 'GSM1060230': {'line': 'MDA-MB-231', 'treatment': 'CXCL12 (300ng/mL) + IGF1 (100ng/mL)'}, 'GSM2274699': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32747', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9337', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C36', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9337', 'studysiteshort': 'UCSF'}, 'GSM2274698': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32746', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9336', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C22', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9336', 'studysiteshort': 'UCSF'}, 'GSM2300446': {'line': 'A549', 'replicate': '1'}, 'GSM2300447': {'line': 'A549', 'replicate': '1'}, 'GSM2274691': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32739', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9329', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C92', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9329', 'studysiteshort': 'UCSF'}, 'GSM2274690': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32738', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9328', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C75', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9328', 'studysiteshort': 'UCSF'}, 'GSM2058389': {'tissue': 'skin fibroblasts', 'genotype': 'Control Tissue'}, 'GSM2058388': {'tissue': 'skin fibroblasts', 'genotype': 'Mutant Copy'}, 'GSM2274695': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32743', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9333', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C46', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9333', 'studysiteshort': 'UCSF'}, 'GSM2274694': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32742', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9332', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C18', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9332', 'studysiteshort': 'UCSF'}, 'GSM2274697': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32745', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9335', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C04', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9335', 'studysiteshort': 'UCSF'}, 'GSM2274696': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32744', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9334', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C35', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9334', 'studysiteshort': 'UCSF'}, 'GSM3594439': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM931728': {'status': 'Atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931729': {'status': 'Non-atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM1963981': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963980': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963987': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963986': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963985': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963984': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2178474': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM2178475': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM2178476': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'vehicle control, 72h'}, 'GSM2178477': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM931724': {'status': 'Atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931725': {'status': 'Atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931726': {'status': 'Atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931727': {'status': 'Atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM3594438': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM1256832': {'marker': 'CD3+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'T-cells'}, 'GSM2136955': {'subtype': '1', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '1'}, 'GSM2247671': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1854427': {'type': 'colorectal cancer', 'Sex': 'Male'}, 'GSM1854426': {'type': 'colorectal cancer', 'Sex': 'Male'}, 'GSM2139064': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'Scramble knockdown 72 hrs'}, 'GSM2139065': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'Scramble knockdown 72 hrs'}, 'GSM2139066': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'Scramble knockdown 72 hrs'}, 'GSM2139067': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #1 knockdown 72 hrs'}, 'GSM2139060': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'shRNA NUSAP #1 knockdown 96 hrs'}, 'GSM2139061': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'shRNA NUSAP #2 knockdown 96 hrs'}, 'GSM2139062': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'shRNA NUSAP #2 knockdown 96 hrs'}, 'GSM2316916': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2139068': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #1 knockdown 72 hrs'}, 'GSM2139069': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #1 knockdown 72 hrs'}, 'GSM2247670': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2209017': {'cell_type': 'eye lens fibroblast culture', 'point': '3days', 'gender': 'male', 'batch': '1', 'treatment': 'RN-0005_30nM', 'line': 'GM09677'}, 'GSM2209016': {'cell_type': 'eye lens fibroblast culture', 'point': '3days', 'gender': 'male', 'batch': '1', 'treatment': 'RN-0005_30nM', 'line': 'GM09677'}, 'GSM2209015': {'cell_type': 'eye lens fibroblast culture', 'point': '3days', 'gender': 'male', 'batch': '1', 'treatment': 'mock', 'line': 'GM09677'}, 'GSM2209014': {'cell_type': 'eye lens fibroblast culture', 'point': '3days', 'gender': 'male', 'batch': '1', 'treatment': 'mock', 'line': 'GM09677'}, 'GSM758569': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8688,LID8689', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '029C,030C', 'spikeinpool': 'NIST14'}, 'GSM758568': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8534,LID8535', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '013N,014N', 'spikeinpool': 'NIST14'}, 'GSM758565': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8690,LID8691', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '029N,030N', 'spikeinpool': 'NIST14'}, 'GSM758564': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8963,LID8964', 'biomaterial_type': 'immortalized cell line', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'line': 'A549', 'readtype': '2x76D', 'biorep': '021WC,022WC', 'spikeinpool': 'NIST14'}, 'GSM758567': {'description': 'Poly(A)- RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8792,LID8793', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '013WC,014WC', 'spikeinpool': 'NIST14'}, 'GSM758566': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8461,LID8462', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '005WC,006WC', 'spikeinpool': 'NIST14'}, 'GSM758561': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8965,LID8966', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '017WC,018WC', 'spikeinpool': 'NIST14'}, 'GSM758560': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8467,LID8468', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '003C,004C', 'spikeinpool': 'NIST14'}, 'GSM758563': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8463,LID8464', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '009WC,010WC', 'spikeinpool': 'NIST14'}, 'GSM758562': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID8969,LID8970', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '037WC,038WC', 'spikeinpool': 'NIST14'}, 'GSM2304840': {'used': 'ACGT, CATG', 'type': 'T lymphocyte', 'treatment': 'PHA', 'analysis': '29'}, 'GSM2915856': {'transfection': 'Oct4', 'type': 'dermal fibroblasts'}, 'GSM2806579': {'line': 'A549', 'replicate': '1', 'treatment': '9 hr'}, 'GSM2806578': {'line': 'A549', 'replicate': '2', 'treatment': '7 hr'}, 'GSM2498248': {'line': 'SW1990', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'positive'}, 'GSM1969392': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM2806573': {'line': 'A549', 'replicate': '1', 'treatment': '3 hr'}, 'GSM2806572': {'line': 'A549', 'replicate': '2', 'treatment': '1 hr'}, 'GSM2498244': {'line': 'CFPAC-1', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'positive'}, 'GSM2806570': {'line': 'A549', 'replicate': '2', 'treatment': '11 hr'}, 'GSM2498242': {'line': 'CFPAC-1', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'positive'}, 'GSM2498243': {'line': 'CFPAC-1', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'positive'}, 'GSM2498240': {'line': 'CFPAC-1', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'negative'}, 'GSM2498241': {'line': 'CFPAC-1', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'negative'}, 'GSM1241148': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241149': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241146': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241147': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241144': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241145': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241142': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241143': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2304841': {'used': 'GCAT, CTAG', 'type': 'T lymphocyte', 'treatment': 'PHA', 'analysis': '29'}, 'GSM1241141': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2123689': {'with': 'empty control vector', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2575930': {'type': 'iN cells co-cultured with glia'}, 'GSM2304842': {'used': 'AGCT, TGCA', 'type': 'T lymphocyte', 'treatment': 'PHA', 'analysis': '29'}, 'GSM1400921': {'subtype': 'Ribosomal RNA-depleted total RNA', 'line': 'HCT116', 'shRNA': 'AACAATCTCCTCTTTCAGTGC', 'type': 'human colon cancer cell', 'variation': 'CDK12 knockdown'}, 'GSM1400920': {'subtype': 'Ribosomal RNA-depleted total RNA', 'line': 'HCT116', 'shRNA': 'TTCAGAGTTATAGAGCCGAGC', 'type': 'human colon cancer cell', 'variation': 'CDK12 knockdown'}, 'GSM1400923': {'subtype': 'Ribosomal RNA-depleted total RNA', 'line': 'HCT116', 'shRNA': 'TAAATCAGCAAGAAGACATCG', 'type': 'human colon cancer cell', 'variation': 'CDK13 knockdown'}, 'GSM1400922': {'subtype': 'Ribosomal RNA-depleted total RNA', 'line': 'HCT116', 'shRNA': 'ATCAGCTTCTTTATCTTCAGG', 'type': 'human colon cancer cell', 'variation': 'CDK13 knockdown'}, 'GSM1571922': {'environment': '2D culture conditions', 'line': 'SW620'}, 'GSM1571923': {'environment': 'Mouse xenograft', 'line': 'SW620'}, 'GSM1571920': {'environment': 'Mouse xenograft', 'line': 'SW620'}, 'GSM2391012': {'disease': 'Pulmonary Hypertension'}, 'GSM2391015': {'disease': 'Pulmonary Hypertension'}, 'GSM2391014': {'disease': 'Pulmonary Hypertension'}, 'GSM2391017': {'disease': 'Pulmonary Hypertension'}, 'GSM2391016': {'disease': 'Pulmonary Hypertension'}, 'GSM2391019': {'disease': 'Pulmonary Hypertension'}, 'GSM2391018': {'disease': 'Pulmonary Hypertension'}, 'GSM2304843': {'used': 'TCAG, TCGA', 'type': 'T lymphocyte', 'treatment': 'PHA', 'analysis': '29'}, 'GSM2455608': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2459957': {'age': '6 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1+/-', 'Sex': 'Male'}, 'GSM2459956': {'antibodies': 'N/A', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2304844': {'used': 'GTAC, TAGC', 'type': 'T lymphocyte', 'treatment': 'VOR', 'analysis': '29'}, 'GSM2432101': {'tissue': 'primary HUVECs', 'type': 'endothelial cell'}, 'GSM2432100': {'tissue': 'primary HUVECs', 'type': 'endothelial cell'}, 'GSM2081503': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081502': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081501': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081500': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081504': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2043743': {'status': 'HIV+', 'individual': '0629-453', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'ART', 'infection': '1'}, 'GSM2304845': {'used': 'GACT, GCTA', 'type': 'T lymphocyte', 'treatment': 'VOR', 'analysis': '29'}, 'GSM2840610': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840611': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840612': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840613': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840614': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840615': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840616': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840617': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840618': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2312137': {'culture': '12', 'line': 'DCX-'}, 'GSM1946214': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19190', 'for': '30min'}, 'GSM1946215': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19190', 'for': '30min'}, 'GSM1946212': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19172', 'for': '60min'}, 'GSM1946213': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19172', 'for': '60min'}, 'GSM1946210': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19172', 'for': '30min'}, 'GSM2312136': {'culture': '12', 'line': 'DCX-'}, 'GSM2700518': {'line': 'HeyA8 (single Fas KO clone #11)', 'tissue': 'Ovaries', 'genotype': 'Fas KO -/-', 'infection': 'Infected with pLKO-shR6', 'point': 'harvested at 50hrs'}, 'GSM2304846': {'used': 'AGTC, TACG', 'type': 'T lymphocyte', 'treatment': 'VOR', 'analysis': '29'}, 'GSM1639702': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'immortalized': 'Yes'}, 'GSM1639701': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'immortalized': 'Yes'}, 'GSM1639700': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'immortalized': 'No'}, 'GSM1957377': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957376': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957375': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2455606': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1957373': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957372': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957371': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957370': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2362505': {'line': 'HEK293'}, 'GSM2362504': {'line': 'HEK293'}, 'GSM2362507': {'line': 'HEK293'}, 'GSM2362506': {'line': 'HEK293'}, 'GSM2362501': {'line': 'HEK293'}, 'GSM1956029': {'a': '60857', 'cd38': '577', 'cd49f': '-1', 'w': '66877', 'h': '59637', 'lin': '227', 'cd34': '8276', 'cd90': '1711', 'cd7': '248', 'cd10': '521', 'time': '10726', 'cd135': '2554', 'cd45ra': '-17'}, 'GSM2362503': {'line': 'HEK293'}, 'GSM2362502': {'line': 'HEK293'}, 'GSM1956024': {'a': '55117', 'cd38': '-141', 'cd49f': '314', 'w': '65972', 'h': '54753', 'lin': '598', 'cd34': '7398', 'cd90': '6261', 'cd7': '-34', 'cd10': '741', 'time': '9083', 'cd135': '1285', 'cd45ra': '184'}, 'GSM1956025': {'a': '74791', 'cd38': '1038', 'cd49f': '534', 'w': '67104', 'h': '73044', 'lin': '9', 'cd34': '9604', 'cd90': '40', 'cd7': '414', 'cd10': '283', 'time': '11569', 'cd135': '8288', 'cd45ra': '2939'}, 'GSM1956026': {'a': '44439', 'cd38': '602', 'cd49f': '780', 'w': '67427', 'h': '43193', 'lin': '747', 'cd34': '3956', 'cd90': '1173', 'cd7': '123', 'cd10': '818', 'time': '11367', 'cd135': '4488', 'cd45ra': '167'}, 'GSM1956027': {'a': '61077', 'cd38': '578', 'cd49f': '901', 'w': '69139', 'h': '57894', 'lin': '671', 'cd34': '10962', 'cd90': '10679', 'cd7': '204', 'cd10': '1102', 'time': '11140', 'cd135': '2042', 'cd45ra': '241'}, 'GSM1956020': {'a': '52184', 'cd38': '-397', 'cd49f': '988', 'w': '67834', 'h': '50416', 'lin': '-191', 'cd34': '7209', 'cd90': '1119', 'cd7': '389', 'cd10': '341', 'time': '8289', 'cd135': '2312', 'cd45ra': '56'}, 'GSM1956021': {'a': '55737', 'cd38': '330', 'cd49f': '1088', 'w': '66583', 'h': '54861', 'lin': '223', 'cd34': '6436', 'cd90': '1893', 'cd7': '389', 'cd10': '359', 'time': '8482', 'cd135': '1893', 'cd45ra': '74'}, 'GSM1956022': {'a': '57061', 'cd38': '981', 'cd49f': '490', 'w': '68270', 'h': '54776', 'lin': '661', 'cd34': '5315', 'cd90': '3486', 'cd7': '310', 'cd10': '543', 'time': '8677', 'cd135': '1389', 'cd45ra': '518'}, 'GSM1956023': {'a': '67366', 'cd38': '363', 'cd49f': '473', 'w': '68046', 'h': '64881', 'lin': '241', 'cd34': '3622', 'cd90': '1663', 'cd7': '929', 'cd10': '-2', 'time': '8868', 'cd135': '3916', 'cd45ra': '200'}, 'GSM2304847': {'used': 'ACTG, GTCA', 'type': 'T lymphocyte', 'treatment': 'VOR', 'analysis': '29'}, 'GSM2287555': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2136959': {'subtype': '3', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '1'}, 'GSM2572683': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2572682': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced'}, 'GSM2572685': {'antibody': 'gH2Ax antibody (Anti-gamma H2A.X (phospho S139) antibody; vendor: Abcam; clonality: Rb Polyclonal; catalog number: ab2893; lot: GR220924-5)', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2572684': {'antibody': 'gH2Ax antibody (Anti-gamma H2A.X (phospho S139) antibody; vendor: Abcam; clonality: Rb Polyclonal; catalog number: ab2893; lot: GR220924-5)', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced'}, 'GSM2572687': {'antibody': 'none', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2266824': {'line': 'Kelly', 'replicate': '1', 'treatment': 'GSK126 [2uM]', 'time': '5 days'}, 'GSM2572689': {'antibody': 'RNAPII_CTD4H8 antibody (Anti-RNA polymerase II antibody, clone CTD4H8; vendor: Millipore; clonality: M MONOCLONAL (clone CTD4H8); catalog number: 05-623; lot: 2282159)', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2572688': {'antibody': 'RNAPII_CTD4H8 antibody (Anti-RNA polymerase II antibody, clone CTD4H8; vendor: Millipore; clonality: M MONOCLONAL (clone CTD4H8); catalog number: 05-623; lot: 2282159)', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced'}, 'GSM2626937': {'origin': 'pancreas', 'patient_id': '179', 'type': 'liver metastasis', 'tumor_id': 'YC146'}, 'GSM2626936': {'origin': 'pancreas', 'patient_id': '63', 'type': 'liver metastasis', 'tumor_id': 'YC121'}, 'GSM2626935': {'origin': 'pancreas', 'patient_id': '9', 'type': 'liver metastasis', 'tumor_id': '9'}, 'GSM2626934': {'origin': 'pancreas', 'patient_id': '109', 'type': 'liver metastasis', 'tumor_id': '83'}, 'GSM2626933': {'origin': 'pancreas', 'patient_id': '8', 'type': 'liver metastasis', 'tumor_id': '8'}, 'GSM2626932': {'origin': 'pancreas', 'patient_id': '105', 'type': 'liver metastasis', 'tumor_id': '79'}, 'GSM2626931': {'origin': 'pancreas', 'patient_id': '104', 'type': 'liver metastasis', 'tumor_id': '78'}, 'GSM2095433': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM2266822': {'line': 'Kelly', 'replicate': '1', 'treatment': 'GSK126 [2uM]', 'time': '2 days'}, 'GSM2095430': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM2626939': {'origin': 'pancreas', 'patient_id': '126', 'type': 'primary', 'tumor_id': '100'}, 'GSM2626938': {'origin': 'pancreas', 'patient_id': '180', 'type': 'liver metastasis', 'tumor_id': 'YC148'}, 'GSM1102628': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '9h'}, 'GSM2095431': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM2095436': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM2095437': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 20'}, 'GSM2095434': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM2050640': {'line': 'U2OS', 'antibody': 'c-MYC N262 (Santa Cruz, sc764)'}, 'GSM2095438': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 20'}, 'GSM2670975': {'line': 'HCT116', 'antibody': 'rabbit anti pan CTD (Schroeder eta l Genes Dev. 14:2435, 2000)', 'genotype': 'wildtype'}, 'GSM2670976': {'line': 'HCT116', 'antibody': 'rabbit anti pan CTD (Schroeder eta l Genes Dev. 14:2435, 2000)', 'genotype': 'Cdk7as mutant'}, 'GSM2095439': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 20'}, 'GSM2050641': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2670978': {'line': 'HCT116', 'antibody': 'rabbit anti pan CTD (Schroeder eta l Genes Dev. 14:2435, 2000)', 'genotype': 'Cdk7as mutant'}, 'GSM2670979': {'line': 'HCT116', 'antibody': 'rabbit anti pan CTD (Schroeder eta l Genes Dev. 14:2435, 2000)', 'genotype': 'wildtype'}, 'GSM2325869': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325868': {'type': 'Differentiated embryonic stem cell'}, 'GSM1540555': {'state': 'Lyme disease', 'individual': 'patient 01-36', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM2325863': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325862': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325861': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325860': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325867': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325866': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325865': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325864': {'type': 'Differentiated embryonic stem cell'}, 'GSM2802986': {'line': 'hMSC-TERT4', 'variation': 'siNFIL3', 'stage': 'D7'}, 'GSM2802987': {'line': 'hMSC-TERT4', 'variation': 'siMAZ', 'stage': 'D0'}, 'GSM2802984': {'line': 'hMSC-TERT4', 'variation': 'siNFIL3', 'stage': 'D1'}, 'GSM2802985': {'line': 'hMSC-TERT4', 'variation': 'siNFIL3', 'stage': 'D7'}, 'GSM2839734': {'cohort': 'Original', 'age': '75', 'id': 'A3', 'Sex': 'Male'}, 'GSM2802983': {'line': 'hMSC-TERT4', 'variation': 'siNFIL3', 'stage': 'D1'}, 'GSM2802980': {'line': 'hMSC-TERT4', 'variation': 'siMYBL1', 'stage': 'D7'}, 'GSM2802981': {'line': 'hMSC-TERT4', 'variation': 'siNFIL3', 'stage': 'D0'}, 'GSM2212670': {'gender': 'male', 'condition': 'control'}, 'GSM2802988': {'line': 'hMSC-TERT4', 'variation': 'siMAZ', 'stage': 'D0'}, 'GSM2802989': {'line': 'hMSC-TERT4', 'variation': 'siMAZ', 'stage': 'D1'}, 'GSM1940687': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940686': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940685': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940684': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940683': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940682': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940681': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940680': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940689': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940688': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2348729': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348728': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2212677': {'gender': 'female', 'condition': 'control'}, 'GSM2053481': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '49', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#12'}, 'GSM2053480': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '53', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#11'}, 'GSM2053483': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '51', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#14'}, 'GSM2124050': {'type': 'Effector Memory T cells', 'id': 'LH083'}, 'GSM1861968': {'group': 'Control'}, 'GSM1861969': {'group': 'Control'}, 'GSM2053487': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '61', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#18'}, 'GSM2053486': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '60', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#17'}, 'GSM2053489': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '64', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#20'}, 'GSM2053488': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '43', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#19'}, 'GSM1861966': {'group': 'Control'}, 'GSM1861967': {'group': 'Control'}, 'GSM2124056': {'type': 'naive T cells', 'id': 'LH068'}, 'GSM2307121': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2124055': {'type': 'naive T cells', 'id': 'LH083'}, 'GSM2124054': {'type': 'naive T cells', 'id': 'LH097'}, 'GSM1888809': {'activated': 'FALSE', 'activation': '0', 'type': 'Naive', 'id': '4659', 'batch': '1'}, 'GSM2043749': {'status': 'HIV+', 'individual': '0444-312', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'ART', 'infection': '2'}, 'GSM1574298': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'CAPAN1'}, 'GSM1574297': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'CAPAN1'}, 'GSM1574296': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'BxPc3'}, 'GSM1574295': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'BxPc3'}, 'GSM1574294': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'AsPC1'}, 'GSM1574293': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'AsPC1'}, 'GSM2348723': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2385663': {'line': 'NHA RAS', 'type': 'glioblastoma stem cell'}, 'GSM2124058': {'type': 'TMNP', 'id': 'LH097'}, 'GSM2519356': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2461422': {'line': 'DU145', 'type': 'prostate cancer cells', 'variation': 'TAZ knockdown'}, 'GSM2461420': {'line': 'DU145', 'type': 'prostate cancer cells', 'variation': 'control (pLKO)'}, 'GSM2461421': {'line': 'DU145', 'type': 'prostate cancer cells', 'variation': 'TAZ knockdown'}, 'GSM2385662': {'line': 'NHA', 'type': 'glioblastoma stem cell'}, 'GSM2565025': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2565024': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2565027': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM1571113': {'stage': 'definitive cardiomyocyte'}, 'GSM1571112': {'stage': 'definitive cardiomyocyte'}, 'GSM1571111': {'stage': 'definitive cardiomyocyte'}, 'GSM3711633': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '16'}, 'GSM1571117': {'stage': 'definitive cardiomyocyte'}, 'GSM1571116': {'stage': 'definitive cardiomyocyte'}, 'GSM1571115': {'stage': 'definitive cardiomyocyte'}, 'GSM1571114': {'stage': 'definitive cardiomyocyte'}, 'GSM2565021': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM1571119': {'stage': 'definitive cardiomyocyte'}, 'GSM1571118': {'stage': 'definitive cardiomyocyte'}, 'GSM2391848': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC10'}, 'GSM3711635': {'Sex': 'F', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '16'}, 'GSM3711636': {'Sex': 'M', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM2666029': {'age': 'Day 130', 'well': 'D12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM3711637': {'Sex': 'M', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM2309557': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2309556': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2385660': {'line': 'NHA', 'type': 'glioblastoma stem cell'}, 'GSM2548626': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 3 uM Ivermectin'}, 'GSM2839979': {'type': 'blood endothelial cells (BEC)', 'variation': 'V5/vIRF3 overexpression'}, 'GSM2839978': {'type': 'blood endothelial cells (BEC)', 'variation': 'V5/vIRF3 overexpression'}, 'GSM2548627': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 3 uM Ivermectin'}, 'GSM2839975': {'type': 'blood endothelial cells (BEC)', 'variation': 'vector control'}, 'GSM2839977': {'type': 'blood endothelial cells (BEC)', 'variation': 'vector control'}, 'GSM2839976': {'type': 'blood endothelial cells (BEC)', 'variation': 'vector control'}, 'GSM2548624': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 10 uM IPA-3'}, 'GSM2548625': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 10 uM IPA-3'}, 'GSM3189448': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.613354', 'percentaligned': '0.953133678', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.602351', 'original': 'Control'}, 'GSM3189449': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.582111', 'percentaligned': '0.929859428', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.771831', 'original': 'Control'}, 'GSM1438894': {'type': 'Neutrophil isolated from peripheral blood'}, 'GSM1438895': {'type': 'Neutrophil isolated from peripheral blood'}, 'GSM3189444': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.569994', 'percentaligned': '0.964077224', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.775506', 'original': 'Control'}, 'GSM3189445': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '14', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.62417', 'percentaligned': '0.951141148', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.223372'}, 'GSM3189446': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.580032', 'percentaligned': '0.925082568', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.411964'}, 'GSM3189447': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '12', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.737414', 'percentaligned': '0.95844032', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.716755'}, 'GSM3189440': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.671326', 'percentaligned': '0.887421999', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.561943', 'original': 'Control'}, 'GSM3189441': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.598415', 'percentaligned': '0.920962035', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.386002', 'original': 'Control'}, 'GSM3189442': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '26', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.568656', 'percentaligned': '0.960514122', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.367795', 'original': 'Control'}, 'GSM958737': {'description': 'Single 75 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': '10947', 'readtype': '1x75D', 'mapalgorithm': 'TH1014', 'sex': 'U', 'replicate': '1', 'treatment': 'None', 'insertlength': 'None'}, 'GSM958734': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '10883', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM2309559': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM958735': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '10881', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM2309558': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2385666': {'line': 'VM', 'type': 'glioblastoma stem cell'}, 'GSM2616429': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2385665': {'line': 'NHA RAS', 'type': 'glioblastoma stem cell'}, 'GSM2632318': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632319': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632316': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632317': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632314': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632315': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632312': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632313': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632310': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632311': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM3177188': {'responder': 'YES', 'global': '6', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w106', 'id': '16', 'cdai': '105.5'}, 'GSM3177189': {'responder': 'YES', 'global': '6', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '16', 'cdai': '180.29'}, 'GSM3177184': {'responder': 'YES', 'global': '4', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '14', 'cdai': '61.5'}, 'GSM3177185': {'responder': 'YES', 'global': '0', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '14', 'cdai': '24.74'}, 'GSM3177186': {'responder': 'YES', 'global': '20', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '15', 'cdai': 'N/A'}, 'GSM1716955': {'tissue': 'lung', 'stage': 'normal'}, 'GSM1716952': {'tissue': 'lung', 'stage': 'tumor'}, 'GSM3177181': {'responder': 'YES', 'global': '2', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w106', 'id': '13', 'cdai': '61'}, 'GSM1716950': {'tissue': 'liver', 'stage': 'tumor'}, 'GSM3177183': {'responder': 'YES', 'global': '4', 'disease': \"Crohn's disease (CD)\", 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'w106', 'id': '14', 'cdai': '4'}, 'GSM2048583': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM1262399': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM2092561': {'repertoire': 'TCR-alpha', 'individual': 'patient 12 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092560': {'individual': 'patient 11 (glioblastoma)', 'tissue': 'brain'}, 'GSM2787547': {'type': 'Non-DM1'}, 'GSM2092563': {'repertoire': 'TCR-alpha', 'individual': 'patient 12 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2243468': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2787548': {'type': 'Non-DM1'}, 'GSM2787549': {'type': 'DM1'}, 'GSM2743841': {'tissue': 'Peripheral blood', 'chip_antibody': 'none', 'treatment': 'cIgG priming for 24 hrs'}, 'GSM2743840': {'tissue': 'Peripheral blood', 'chip_antibody': 'H3K4me3(#07-473, Merck Millpore)', 'treatment': 'cIgG priming for 24 hrs'}, 'GSM2743843': {'tissue': 'Peripheral blood', 'chip_antibody': 'none', 'treatment': 'RPMI for 24 hrs'}, 'GSM2743842': {'tissue': 'Peripheral blood', 'chip_antibody': 'H3K4me3(#07-473, Merck Millpore)', 'treatment': 'RPMI culture for 24 hrs'}, 'GSM2743845': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'RPMI for 24 hrs'}, 'GSM2743844': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'RPMI for 24 hrs'}, 'GSM2743847': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'cIgG priming for 24 hrs'}, 'GSM2743846': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'RPMI for 24 hrs'}, 'GSM2743849': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'cIgG priming for 24 hrs'}, 'GSM2743848': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'cIgG priming for 24 hrs'}, 'GSM2092562': {'repertoire': 'TCR-beta', 'individual': 'patient 12 (glioblastoma)', 'tissue': 'brain'}, 'GSM1683311': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683310': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683313': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683312': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683314': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM2559628': {'line': 'LAPC4', 'treatment': 'SGRM - CORT108335 at 2 hours'}, 'GSM2559629': {'line': 'LAPC4', 'treatment': 'SGRM - CORT108335 at 6 hours'}, 'GSM2559621': {'line': 'LAPC4', 'treatment': 'Vehicle'}, 'GSM2559622': {'line': 'LAPC4', 'treatment': 'R1881 (Sigma-Aldrich)'}, 'GSM2559623': {'line': 'LAPC4', 'treatment': 'Enzalutamide (Selleck Chemicals or Medivation)'}, 'GSM2559624': {'line': 'LAPC4', 'treatment': 'Dexamethasone (MP Biomedicals) at 2 hours'}, 'GSM2559625': {'line': 'LAPC4', 'treatment': 'Dexamethasone (MP Biomedicals) at 6 hours'}, 'GSM2559626': {'line': 'LAPC4', 'treatment': 'SGRM - CORT108297 at 2 hours'}, 'GSM2559627': {'line': 'LAPC4', 'treatment': 'SGRM - CORT108297 at 6 hours'}, 'GSM1590464': {'line': 'K562', 'type': 'leukemia cell line', 'treatment': 'P30 induction'}, 'GSM1590465': {'line': 'K562', 'type': 'leukemia cell line', 'treatment': 'P30 induction'}, 'GSM1590462': {'line': 'K562', 'type': 'leukemia cell line', 'treatment': 'CEBPA induction'}, 'GSM1590463': {'line': 'K562', 'type': 'leukemia cell line', 'treatment': 'CEBPA induction'}, 'GSM1590460': {'line': 'K562', 'type': 'leukemia cell line', 'treatment': 'control'}, 'GSM1590461': {'line': 'K562', 'type': 'leukemia cell line', 'treatment': 'control'}, 'GSM2333002': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM1464302': {'status': 'small cell lung cancer'}, 'GSM2333000': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333001': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333006': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333007': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333004': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333005': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2348578': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348579': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464309': {'status': 'small cell lung cancer'}, 'GSM2333009': {'origin': 'breast (tumor)', 'subtype': 'IDC (HER2+)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM1712129': {'line': 'V16D', 'treatment': 'Vehicle'}, 'GSM1712128': {'line': 'V16D', 'treatment': 'Vehicle'}, 'GSM2805891': {'genotype': 'KDM2B KO clone 1', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805890': {'genotype': 'WT', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2243464': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2805892': {'genotype': 'KDM2B KO clone 2', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805895': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805894': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805897': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805896': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805899': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805898': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2644903': {'passages': '74', 'sirna': 'Scramble siRNA', 'treatment': 'DMSO'}, 'GSM2092566': {'repertoire': 'TCR-alpha', 'individual': 'patient 13 (glioblastoma)', 'tissue': 'brain'}, 'GSM2243465': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1297624': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 0'}, 'GSM1297625': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 0'}, 'GSM1297626': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 0'}, 'GSM1297627': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 1'}, 'GSM1297628': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 1'}, 'GSM1297629': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 1'}, 'GSM2068649': {'line': 'MCF7', 'with': '10nM E2 for 6hr', 'passage': 'p9'}, 'GSM2068648': {'line': 'MCF7', 'with': '10nM E2 for 5hr', 'passage': 'p9'}, 'GSM2616486': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616487': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616480': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2616481': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616482': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616483': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2068643': {'line': 'MCF7', 'with': 'EtOH', 'passage': 'p9'}, 'GSM2616488': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM2616489': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2243466': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2068646': {'line': 'MCF7', 'with': '10nM E2 for 3hr', 'passage': 'p9'}, 'GSM2552975': {'point': 'Baseline', 'age': '33', 'number': 'AP11', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '26', 'Sex': 'F', 'positivity': 'Positive'}, 'GSM2552974': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP11', 'Sex': 'F'}, 'GSM2552977': {'point': 'Baseline', 'age': '33', 'number': 'AP12', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '8', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2552976': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP12', 'Sex': 'M'}, 'GSM2552971': {'point': 'Baseline', 'age': '44', 'number': 'AP1', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '6', 'Sex': 'F', 'positivity': 'Positive'}, 'GSM2552970': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP1', 'Sex': 'F'}, 'GSM2552973': {'point': 'Baseline', 'age': '53', 'number': 'AP10', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '16', 'Sex': 'F', 'positivity': 'Positive'}, 'GSM2552972': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP10', 'Sex': 'F'}, 'GSM2332971': {'knockdown': 'control shRNA', 'line': 'GSC-11', 'type': 'glioblastoma stem-like cells'}, 'GSM2332973': {'knockdown': 'ALKBH5 shRNA', 'line': 'GSC-11', 'type': 'glioblastoma stem-like cells'}, 'GSM2332972': {'knockdown': 'control shRNA', 'line': 'GSC-11', 'type': 'glioblastoma stem-like cells'}, 'GSM2552979': {'point': 'Baseline', 'age': '48', 'number': 'AP13', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '6', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2332974': {'knockdown': 'ALKBH5 shRNA', 'line': 'GSC-11', 'type': 'glioblastoma stem-like cells'}, 'GSM2332977': {'knockdown': 'ALKBH5 shRNA', 'line': 'GSC-11', 'type': 'glioblastoma stem-like cells', 'antibody': 'm6A antibody (Synaptic Systems, 202003)'}, 'GSM2332976': {'knockdown': 'control shRNA', 'line': 'GSC-11', 'type': 'glioblastoma stem-like cells', 'antibody': 'm6A antibody (Synaptic Systems, 202003)'}, 'GSM2171428': {'line': 'T-47D'}, 'GSM2171429': {'line': 'T-47D'}, 'GSM2616425': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM1700951': {'line': 'HCT116'}, 'GSM1700950': {'line': 'HCT116'}, 'GSM2171426': {'subtype': 'Nascent RNA', 'line': 'T-47D'}, 'GSM2171427': {'line': 'T-47D'}, 'GSM1411013': {'ercc_mix': '1', 'donor': 'AS091511-F19', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Albuterol'}, 'GSM1411012': {'ercc_mix': '1', 'donor': 'N061311-M23', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1411011': {'ercc_mix': '1', 'donor': 'N051911-F24', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1411010': {'ercc_mix': '1', 'donor': 'N022211-F22', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1411017': {'ercc_mix': '1', 'donor': 'N120511-F52', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1262393': {'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM1411015': {'ercc_mix': '1', 'donor': 'N100811-M21', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1411014': {'ercc_mix': '1', 'donor': 'N092611-M26', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM2644906': {'passages': '74', 'sirna': 'TUNAR siRNAs', 'treatment': 'DMSO'}, 'GSM1411019': {'ercc_mix': '1', 'donor': 'N012412-M48', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1411018': {'ercc_mix': '1', 'donor': 'N010912-F18', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1174219': {'line': 'HeLa', 'barcode': 'GTAGCC', 'type': 'exosome-depleted'}, 'GSM2779060': {'line': 'THP1', 'shRNA': 'PAF1 shRNA replicate 1', 'type': 'AML leukemia cell line'}, 'GSM2779061': {'line': 'THP1', 'shRNA': 'PAF1 shRNA replicate 2', 'type': 'AML leukemia cell line'}, 'GSM2243461': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1249883': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'AcH3', 'details': '06-599 (Millipore)'}, 'GSM1249882': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'Brd4', 'details': 'ab46199 (Abcam)'}, 'GSM1249881': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'Brd4', 'details': 'ab46199 (Abcam)'}, 'GSM1853578': {'line': 'HeLa', 'treatment': '20nM RRP6 siRNA - Dharmacon'}, 'GSM1249887': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'H3K4me1', 'details': '07-436 (Millipore)'}, 'GSM1249886': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'H3K4me2', 'details': 'ab7766 (Abcam)'}, 'GSM1249885': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'H3K4me3', 'details': 'ab8580 (Abcam)'}, 'GSM1249884': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'AcH4', 'details': '06-598 (Millipore)'}, 'GSM1249889': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'H3K27Ac', 'details': 'ab4729 (Abcam)'}, 'GSM1249888': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'H3K4me1', 'details': 'ab8895 (Abcam)'}, 'GSM1366900': {'with': 'retroviruses expressing short haiprin against RENILLA', 'line': 'CEM', 'type': 'human T cell leukemia cells'}, 'GSM1635581': {'line': 'H1', 'type': 'hESC cell line', 'variation': 'none', 'passage': 'P68'}, 'GSM2112768': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM Estradiol', 'time': '12 hours'}, 'GSM1635583': {'line': 'H1', 'type': 'hESC cell line', 'variation': 'stable GAS5 overexpressed', 'passage': 'P68-75'}, 'GSM1635582': {'line': 'X-01', 'type': 'hESC cell line', 'variation': 'none', 'passage': 'P58'}, 'GSM1635585': {'line': 'H1', 'type': 'hESC cell line', 'variation': 'stable knockdown of GAS5 by short hairpin RNA', 'passage': 'P68-75'}, 'GSM1635584': {'line': 'H1', 'type': 'hESC cell line', 'variation': 'stable control RNA overexpressed', 'passage': 'P68-75'}, 'GSM2533800': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1635586': {'line': 'H1', 'type': 'hESC cell line', 'variation': 'stable GAS5 overexpressed', 'passage': 'P68-75'}, 'GSM2142269': {'type': 'live sorted cells', 'library': '3'}, 'GSM1915007': {'line': 'MG63', 'antibody': 'NA'}, 'GSM2141355': {'individual': 'EU50', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141354': {'individual': 'EU48', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141357': {'individual': 'EU50', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141356': {'individual': 'EU50', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141351': {'individual': 'EU46', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141350': {'individual': 'EU46', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141353': {'individual': 'EU48', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2424936': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1233891': {'replicate': '3', 'line': '12878', 'antibody': 'H3K27Ac'}, 'GSM1233890': {'replicate': '2', 'line': '12878', 'antibody': 'H3K27Ac'}, 'GSM1915006': {'line': 'MG63', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1233892': {'replicate': '4.1', 'line': '12878', 'antibody': 'H3K27Ac'}, 'GSM1233895': {'replicate': '4.4', 'line': '12878', 'antibody': 'H3K27Ac'}, 'GSM2141358': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1233897': {'replicate': '1', 'line': '12878', 'antibody': 'H3K27me3'}, 'GSM1233896': {'replicate': '1.2', 'line': '12878', 'antibody': 'H3K27me3'}, 'GSM2533798': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2575131': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'A/California/04/09 (H1N1), MOI 2', 'point': '18h'}, 'GSM2424933': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424932': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2093171': {'bin': '20', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1620453': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2480398': {'type': 'biopsy material', 'tissue': 'Whole skin', 'patient': 'C014'}, 'GSM1921981': {'donor': '2', 'tissue': 'macrophage', 'agent': '2-deoxy-d-glucose'}, 'GSM2112764': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '24 Hours'}, 'GSM1921983': {'donor': '1', 'tissue': 'macrophage', 'agent': 'IDR-1018'}, 'GSM2424930': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1921985': {'donor': '3', 'tissue': 'macrophage', 'agent': 'IDR-1018'}, 'GSM1921984': {'donor': '2', 'tissue': 'macrophage', 'agent': 'IDR-1018'}, 'GSM1921987': {'donor': '2', 'tissue': 'macrophage', 'agent': '2-deoxy-d-glucose + IDR-1018'}, 'GSM1921986': {'donor': '1', 'tissue': 'macrophage', 'agent': '2-deoxy-d-glucose + IDR-1018'}, 'GSM922179': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922178': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922175': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922174': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922177': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922176': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922171': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922170': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922173': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922172': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM1545090': {'type': 'gastric cancer tumor', 'class': 'IIB', 'location': 'Body'}, 'GSM2644908': {'passages': '74', 'sirna': 'Scramble siRNA', 'treatment': '1-AKP'}, 'GSM1825450': {'line': 'MCF-7', 'tissue': 'breast', 'sirna': 'LIN28'}, 'GSM1960352': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'PUM2 overexpression'}, 'GSM1960351': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'PUM2 overexpression'}, 'GSM1960350': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'PUM2 overexpression'}, 'GSM1825454': {'line': 'MCF-7', 'tissue': 'breast', 'sirna': 'LIN28 +A1 (LIN28A1)'}, 'GSM2209498': {'line': 'IMR90 cells', 'tissue': 'Lung fibroblast', 'treatment': 'sPom121 siRNA transfection'}, 'GSM2325905': {'type': 'Human embryonic stem cell'}, 'GSM2442773': {'antibody': 'Brd4, Bethyl Laboratories, A301-985A50', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442775': {'antibody': 'ETS1, Santa-Cruz sc-111X', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442774': {'antibody': 'Brd4, Bethyl Laboratories, A301-985A50', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442777': {'antibody': 'ETS1, Santa-Cruz sc-111X', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442776': {'antibody': 'ETS1, Santa-Cruz sc-111X', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442779': {'antibody': 'ETS1, Santa-Cruz sc-111X', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442778': {'antibody': 'ETS1, Santa-Cruz sc-111X', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2339464': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': '-'}, 'GSM1915000': {'line': 'MG63.3', 'antibody': 'NA'}, 'GSM1697102': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '2.5 h'}, 'GSM2218658': {'with': 'NO UV (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2093247': {'connection': \"[Errno 101] Network is unreachable',))\", 'Error': \"HTTPSConnectionPool(host='www.ncbi.nlm.nih.gov', port=443): Max retries exceeded with url: /geo/query/acc.cgi?acc=GSM2093247 (Caused by NewConnectionError('\"}, 'GSM2093246': {'Error': \"('Connection aborted.', error(104, 'Connection reset by peer'))\"}, 'GSM2093245': {'bin': '14', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093244': {'bin': '14', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093243': {'bin': '20', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093242': {'bin': '20', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093241': {'bin': '16', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093240': {'bin': '16', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093249': {'bin': '32', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093248': {'bin': '31', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': '19', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2159938': {'1': 'MYCN wild type', '2': 'p53 wild type', 'type': 'SY5Y', 'stage': 'high-risk'}, 'GSM2159939': {'1': 'MYCN wild type', '2': 'p53 wild type', 'type': 'SY5Y', 'stage': 'high-risk'}, 'GSM2584548': {'duration': '1h', 'with': 'BSA', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2159935': {'1': 'MYCN wild type', '2': 'p53 wild type', 'type': 'SY5Y', 'stage': 'high-risk'}, 'GSM2159936': {'1': 'MYCN wild type', '2': 'p53 wild type', 'type': 'SY5Y', 'stage': 'high-risk'}, 'GSM2159937': {'1': 'MYCN wild type', '2': 'p53 wild type', 'type': 'SY5Y', 'stage': 'high-risk'}, 'GSM2035719': {'with': 'DMSO on OP9 for 12 days', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM2696585': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1980260': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2696587': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696586': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696581': {'status': '3+', 'grade': '3', 'age': '78', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.2'}, 'GSM2696580': {'status': '2+ (70)', 'grade': '2', 'age': '82', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '3'}, 'GSM2696583': {'status': '1+ (80)', 'grade': '3', 'age': '42', 'tissue': 'Breast tumor', 'histology': 'Ductal and Micropapillary', 'type': 'Whole human breast tumor', 'size': '15.9'}, 'GSM2696582': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1980269': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980268': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2696589': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696588': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2035718': {'with': 'DMSO on OP9 for 12 days', 'type': 'fetal liver-hematopoietic stem/progenitor cell (FL-HSPC)'}, 'GSM1678011': {'tissue': 'Prostate', 'type': 'Prostate cancer', 'genotype': 'wild type'}, 'GSM1372341': {'individual': 'NA12884', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372340': {'individual': 'NA12883', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372343': {'individual': 'NA12886', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372342': {'individual': 'NA12885', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372345': {'individual': 'NA12890', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372344': {'individual': 'NA12889', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1506100': {'type': 'Peripheral blood monocytes', 'disease': 'Chronic periodontitis'}, 'GSM1372346': {'individual': 'NA12891', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1506108': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000016511)', 'batch': '2'}, 'GSM1506109': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000016511)', 'batch': '2'}, 'GSM1513218': {'gender': 'Female', 'line': 'GM19093', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513219': {'gender': 'Male', 'line': 'GM19098', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513210': {'gender': 'Male', 'line': 'GM18862', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513211': {'gender': 'Female', 'line': 'GM18870', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513212': {'gender': 'Female', 'line': 'GM18907', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513213': {'gender': 'Female', 'line': 'GM18909', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513214': {'gender': 'Female', 'line': 'GM18912', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513215': {'gender': 'Male', 'line': 'GM18913', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513216': {'gender': 'Female', 'line': 'GM18916', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513217': {'gender': 'Male', 'line': 'GM19092', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1915009': {'line': 'MNNG', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1401686': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401684': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1915008': {'line': 'MNNG', 'antibody': 'NA'}, 'GSM1401680': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM2492448': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM1174037': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'post-deep brain stimulation (DBS) on electrical stimulation', 'number': 'PD2'}, 'GSM1174036': {'status': \"Parkinson's Disease (PD)\", 'gender': 'male', 'type': 'blood leukocytes', 'treatment': 'pre-deep brain stimulation (DBS)', 'number': 'PD2'}, 'GSM3711687': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '16'}, 'GSM3711686': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '16'}, 'GSM3711681': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '14'}, 'GSM2211742': {'line': 'RPE-1 cells', 'treatment': '0.5 μM Reversine for 12 hours followed by 330 nM Nocodazole', 'state': 'aneuploid arrested cells'}, 'GSM2211743': {'line': 'RPE-1 cells', 'treatment': '0.5 μM Reversine for 12 hours followed by 330 nM Nocodazole', 'state': 'aneuploid arrested cells'}, 'GSM2211740': {'line': 'RPE-1 cells', 'treatment': '0.5 μM Reversine for 12 hours', 'state': 'aneuploid cycling cells'}, 'GSM3711680': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', 'years': '14'}, 'GSM1174031': {'status': 'healthy', 'gender': 'male', 'type': 'blood leukocytes', 'number': 'HC2'}, 'GSM1174030': {'status': 'healthy', 'gender': 'male', 'type': 'blood leukocytes', 'number': 'HC1'}, 'GSM2069827': {'status': 'Alive', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'Y', 'site': 'UCLA', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'L forearm, SC', 'treatment': 'Pembrolizumab', 'id': 'Pt6', 'braf': 'V600E'}, 'GSM2641039': {'type': 'HESC-derived enteric neural crest cells and human intestinal organoids'}, 'GSM2641038': {'type': 'HESC-derived enteric neural crest cells and human intestinal organoids'}, 'GSM2172229': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172228': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172223': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172222': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172221': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172220': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172227': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172226': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172225': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172224': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM1422445': {'patient': 'no', 'treated': 'no', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1955894': {'a': '65661', 'cd38': '1081', 'cd49f': '412', 'w': '63525', 'h': '67740', 'lin': '115', 'cd34': '12580', 'cd90': '968', 'cd7': '-206', 'cd10': '49671', 'time': '2037', 'cd135': '228', 'cd45ra': '8474'}, 'GSM1955895': {'a': '45582', 'cd38': '286', 'cd49f': '562', 'w': '64694', 'h': '46176', 'lin': '102', 'cd34': '4777', 'cd90': '946', 'cd7': '190', 'cd10': '742', 'time': '2253', 'cd135': '2941', 'cd45ra': '35'}, 'GSM1955896': {'a': '43401', 'cd38': '344', 'cd49f': '472', 'w': '65890', 'h': '43168', 'lin': '749', 'cd34': '9187', 'cd90': '3239', 'cd7': '149', 'cd10': '1031', 'time': '2465', 'cd135': '2568', 'cd45ra': '359'}, 'GSM1955897': {'a': '79093', 'cd38': '258', 'cd49f': '669', 'w': '64422', 'h': '80461', 'lin': '-173', 'cd34': '12528', 'cd90': '6251', 'cd7': '169', 'cd10': '1026', 'time': '2659', 'cd135': '1570', 'cd45ra': '299'}, 'GSM1955890': {'a': '57409', 'cd38': '-40', 'cd49f': '589', 'w': '68516', 'h': '54912', 'lin': '271', 'cd34': '13788', 'cd90': '1626', 'cd7': '548', 'cd10': '813', 'time': '20949', 'cd135': '2070', 'cd45ra': '213'}, 'GSM1955891': {'a': '71371', 'cd38': '290', 'cd49f': '731', 'w': '70024', 'h': '66797', 'lin': '350', 'cd34': '9847', 'cd90': '1487', 'cd7': '-20', 'cd10': '1092', 'time': '20707', 'cd135': '3278', 'cd45ra': '281'}, 'GSM1955892': {'a': '72128', 'cd38': '83', 'cd49f': '352', 'w': '67397', 'h': '70136', 'lin': '292', 'cd34': '8347', 'cd90': '3879', 'cd7': '761', 'cd10': '113', 'time': '20492', 'cd135': '2234', 'cd45ra': '231'}, 'GSM1955893': {'a': '61799', 'cd38': '904', 'cd49f': '845', 'w': '67327', 'h': '60155', 'lin': '986', 'cd34': '6428', 'cd90': '6543', 'cd7': '-325', 'cd10': '739', 'time': '1781', 'cd135': '3264', 'cd45ra': '276'}, 'GSM1955898': {'a': '56061', 'cd38': '855', 'cd49f': '370', 'w': '67314', 'h': '54580', 'lin': '65', 'cd34': '12574', 'cd90': '191', 'cd7': '159', 'cd10': '1390', 'time': '2859', 'cd135': '6031', 'cd45ra': '5344'}, 'GSM763399': {'line': 'OCI-LY1', 'antibody': 'BCL6 (N3-antibody)'}, 'GSM3711256': {'mediancvcoverage': '0.618211', 'percentaligned': '0.955037188', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '6'}, 'GSM3711257': {'mediancvcoverage': '0.634109', 'percentaligned': '0.950941513', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '6'}, 'GSM3711254': {'mediancvcoverage': '0.686163', 'percentaligned': '0.959880413', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '8'}, 'GSM1709537': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM3711252': {'mediancvcoverage': '0.669456', 'percentaligned': '0.947073193', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '8'}, 'GSM3711253': {'mediancvcoverage': '0.753916', 'percentaligned': '0.945218826', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '8'}, 'GSM1480808': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1957499': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957497': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957495': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957492': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957493': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957490': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM3711259': {'mediancvcoverage': '0.627589', 'percentaligned': '0.953849161', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '12'}, 'GSM2039418': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2039419': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2039412': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM2039413': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM2039410': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM2039411': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM2039416': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2039417': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2039414': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM2039415': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2307081': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307080': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307083': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307082': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307085': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2026923': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P10074'}, 'GSM2026920': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P25490'}, 'GSM2307086': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307089': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307088': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM1467407': {'line': 'HeLa'}, 'GSM1467406': {'line': 'HeLa'}, 'GSM2817730': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 30nM 24h'}, 'GSM2817734': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 3uM 24h'}, 'GSM1901902': {'origin': 'Patient derived xenograft (PSX) sample', 'strain': 'NOD.Cg-Prkdcscid Il2rgtm1Wjl/SzJ mouse', 'from': 'BRAFV600E melanoma metastases', 'resistance': 'Vemurafenib resistant', 'passage': 'Human tumor samples after first passage in a mouse'}, 'GSM1957238': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957239': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2437168': {'status': 'NGT', 'id': 'GD7'}, 'GSM2437169': {'status': 'GDM', 'id': 'GD8'}, 'GSM1957232': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2437165': {'status': 'GDM', 'id': 'GD4'}, 'GSM1957230': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957231': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957236': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957237': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957234': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2437163': {'status': 'GDM', 'id': 'GD2'}, 'GSM1940662': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2055344': {'state': 'adenocarcinoma', 'tissue': 'Prostate'}, 'GSM2055345': {'state': 'neuroendocrine prostate cancer', 'tissue': 'Prostate'}, 'GSM2055346': {'state': 'adenocarcinoma', 'tissue': 'Prostate'}, 'GSM2055347': {'state': 'neuroendocrine prostate cancer', 'tissue': 'Prostate'}, 'GSM2391198': {'disease': 'NSCLC'}, 'GSM2391199': {'disease': 'NSCLC'}, 'GSM2055343': {'state': 'neuroendocrine prostate cancer', 'tissue': 'Prostate'}, 'GSM2391194': {'disease': 'NSCLC'}, 'GSM2391195': {'disease': 'NSCLC'}, 'GSM2391196': {'disease': 'NSCLC'}, 'GSM2391197': {'disease': 'NSCLC'}, 'GSM2391190': {'disease': 'NSCLC'}, 'GSM2391191': {'disease': 'NSCLC'}, 'GSM2391192': {'disease': 'NSCLC'}, 'GSM2391193': {'disease': 'NSCLC'}, 'GSM2251363': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2543939': {'library_id': 'lib8213', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543938': {'library_id': 'lib8212', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543937': {'library_id': 'lib8211', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.238', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1826309': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM2543935': {'library_id': 'lib8209', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543934': {'library_id': 'lib8208', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543933': {'library_id': 'lib8201', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': 'NA', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543932': {'library_id': 'lib8200', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': 'NA', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543931': {'library_id': 'lib8199', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.488', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543930': {'library_id': 'lib8198', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.488', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1634326': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Differentiated Keratinocytes', 'passage': '2'}, 'GSM1634327': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Differentiated Keratinocytes', 'passage': '2'}, 'GSM1634324': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'passage': '2'}, 'GSM1634325': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'passage': '2'}, 'GSM1634323': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'passage': '2'}, 'GSM1836133': {'irradiation': 'UVC', 'dose': '1', 'chemical': '4aTPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836132': {'irradiation': 'UVC', 'dose': '1', 'chemical': '4aTPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836131': {'irradiation': 'UVC', 'dose': '1', 'chemical': '4aTPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836130': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836136': {'irradiation': 'UVC', 'dose': '10', 'chemical': '4aTPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836135': {'irradiation': 'UVC', 'dose': '10', 'chemical': '4aTPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836134': {'irradiation': 'UVC', 'dose': '10', 'chemical': '4aTPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2251368': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM1826304': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1826306': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM2153103': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153106': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM1234049': {'replicate': '2', 'line': '19099', 'antibody': 'H3K27me3'}, 'GSM1234048': {'replicate': '1', 'line': '19099', 'antibody': 'H3K27me3'}, 'GSM1234043': {'replicate': '2', 'line': '18951', 'antibody': 'SA1'}, 'GSM1234042': {'replicate': '1', 'line': '18951', 'antibody': 'SA1'}, 'GSM1234041': {'replicate': '2', 'line': '18951', 'antibody': 'RNA-seq'}, 'GSM1234040': {'replicate': '1', 'line': '18951', 'antibody': 'RNA-seq'}, 'GSM1234047': {'replicate': '2', 'line': '19099', 'antibody': 'H3K27Ac'}, 'GSM1234046': {'replicate': '1', 'line': '19099', 'antibody': 'H3K27Ac'}, 'GSM1234045': {'replicate': '2', 'line': '19099', 'antibody': 'CTCF'}, 'GSM1234044': {'replicate': '1', 'line': '19099', 'antibody': 'CTCF'}, 'GSM1717522': {'line': 'LNCaP', 'treatment': 'DHT 10nM', 'time': '48 h'}, 'GSM2754517': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0391', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754516': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1158', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754515': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0859', 'previousdiagnosisoftb': 'No', 'tst': '13', 'type': 'Tcells'}, 'GSM2153108': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM1342290': {'karyotype': '38-47,XX,+X[10],+2[12],+3[2],del(6)(q15q25),+7[13],add(16)(q24)[14],-18[10],-20[9][cp16]', 'tissue': 'Lymph node', 'diagnosis': 'Peripheral T-cell lymphoma not otherwise specified (PTCL-NOS)'}, 'GSM2754512': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0152', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754511': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0796', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754510': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0406', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754519': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0218', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754518': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0257', 'previousdiagnosisoftb': 'No', 'tst': '19', 'type': 'Tcells'}, 'GSM1665951': {'with': 'none (mock-transfected)', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1220024': {'line': 'HEK293T', 'antibody': 'antibody against BRD4 long form'}, 'GSM1220020': {'line': 'HEK293T', 'with': 'shRNA against BRD4'}, 'GSM1220021': {'vendor': 'Jackson ImmunoResearch', 'line': 'HEK293T', 'antibody': 'IgG antibody'}, 'GSM1220022': {'vendor': 'Abcam', 'line': 'HEK293T', 'antibody': 'antibody against BRD4 long form'}, 'GSM1220023': {'vendor': 'Jackson ImmunoResearch', 'line': 'HEK293T', 'antibody': 'IgG antibody'}, 'GSM1976412': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1976411': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Pre-treatment'}, 'GSM1976410': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Pre-treatment'}, 'GSM1808006': {'tissue': 'Kidney'}, 'GSM2026522': {'line': 'MDA-MB-231', 'type': 'breast cancer', 'Sex': 'female'}, 'GSM2026523': {'line': 'MDA-MB-231', 'type': 'breast cancer', 'Sex': 'female'}, 'GSM2252627': {'line': 'MDA-MB231', 'type': 'Breast cancer (Basal type)', 'treatment': '0.2μM Paclitaxel for 8 hours'}, 'GSM2652141': {'origin': 'endothelial cell', 'tissue': 'umbilical vein'}, 'GSM2026527': {'line': 'MDA-MB-231', 'type': 'breast cancer', 'Sex': 'female'}, 'GSM1943699': {'line': 'T47D', 'type': 'Breast cancer', 'classification': 'ER pos', 'condition': 'co-culture'}, 'GSM1943698': {'line': 'T47D', 'type': 'Breast cancer', 'classification': 'ER pos', 'condition': 'single'}, 'GSM2652143': {'origin': 'endothelial cell', 'tissue': 'umbilical vein'}, 'GSM1630517': {'clone': 'parental cells repeat #1', 'treatment': 'minus Shld'}, 'GSM1630516': {'clone': 'parental cells repeat #1', 'treatment': 'plus Shld'}, 'GSM1630519': {'clone': 'mut-SF3B1 KO (2 days)', 'treatment': 'minus Shld'}, 'GSM1630518': {'clone': 'mut-SF3B1 KO (2 days)', 'treatment': 'plus Shld'}, 'GSM1943693': {'type': 'Monocyte', 'classification': 'none', 'condition': 'co-culture'}, 'GSM2652142': {'origin': 'endothelial cell', 'tissue': 'umbilical vein'}, 'GSM1943695': {'line': 'MDA-MB-231', 'type': 'Breast cancer', 'classification': 'TNBC', 'condition': 'co-culture'}, 'GSM1943694': {'type': 'Monocyte', 'classification': 'none', 'condition': 'co-culture'}, 'GSM1943697': {'line': 'MDA-MB-231', 'type': 'Breast cancer', 'classification': 'TNBC', 'condition': 'co-culture'}, 'GSM1943696': {'line': 'MDA-MB-231', 'type': 'Breast cancer', 'classification': 'TNBC', 'condition': 'co-culture'}, 'GSM1808004': {'tissue': 'Kidney'}, 'GSM2486749': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2944198': {'gender': 'Male', 'age': '25', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944199': {'gender': 'Male', 'age': '39', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2689028': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689029': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689022': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689023': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689020': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689021': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689026': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689027': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2944196': {'gender': 'Male', 'age': '27', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2689025': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2585454': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585455': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585452': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585453': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585450': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585451': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2281364': {'characteristics': 'epithelial, derived from xenograft lung metastasis', 'line': 'colorectal cancer cell line DLD1'}, 'GSM2281361': {'characteristics': 'mesenchymal, derived from colonospheres', 'line': 'colorectal cancer cell line DLD1'}, 'GSM1023078': {'type': 'iPS', 'number': '8'}, 'GSM1023079': {'type': 'fibroblast', 'number': '3'}, 'GSM1233303': {'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'MC2392 48h', 'genome': 'HG18'}, 'GSM1233302': {'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'MC2392 24h', 'genome': 'HG18'}, 'GSM2047819': {'well': 'A12', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1023070': {'type': 'iPS', 'number': '4'}, 'GSM1023071': {'type': 'fibroblast', 'number': '4'}, 'GSM1023072': {'type': 'iPS', 'number': '2'}, 'GSM1023073': {'type': 'iPS', 'number': '6'}, 'GSM1023074': {'type': 'iPS', 'number': '6'}, 'GSM1023075': {'type': 'fibroblast', 'number': '3'}, 'GSM1023076': {'type': 'iPS', 'number': '8'}, 'GSM1023077': {'type': 'iPS', 'number': '7'}, 'GSM1808003': {'tissue': 'Kidney'}, 'GSM2255817': {'with': 'pLKO.1 empty vertor; shNS', 'source': 'peripheral blood', 'line': 'MA9.3ITD', 'type': 'acute monocytic leukemia (AML) cells'}, 'GSM900489': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900488': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM2759499': {'tissue': 'dermal fibroblast', 'genotype': 'control', 'condition': 'control'}, 'GSM2759498': {'tissue': 'dermal fibroblast', 'genotype': 'control', 'condition': 'control'}, 'GSM900481': {'state': 'healthy', 'tissue': 'heart, left ventricle'}, 'GSM900480': {'state': 'healthy', 'tissue': 'heart, right ventricle'}, 'GSM2759497': {'tissue': 'dermal fibroblast', 'genotype': 'control', 'condition': 'control'}, 'GSM2759496': {'tissue': 'dermal fibroblast', 'genotype': 'Null mutant', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM900485': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900484': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900487': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM900486': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM2165968': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Empigen treated Tyr1 phospho'}, 'GSM2165969': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Control: Empigen untreated Thr4 phospho'}, 'GSM2295931': {'time': '24 hours', 'line': 'UCSD-AML1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295930': {'time': '24 hours', 'line': 'UCSD-AML1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295932': {'time': '24 hours', 'line': 'UCSD-AML1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2165960': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'pla-B treatment, Ser5 phospho'}, 'GSM2165961': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'siLuc control for CPSF73 KD, Thr4 phospho'}, 'GSM2165962': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'CPSF73 KD, Thr4 phospho'}, 'GSM2165963': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Control: Empigen untreated Ser5 phospho'}, 'GSM2165964': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Empigen treated Ser5 phospho'}, 'GSM2165965': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Control: Empigen untreated Ser2 phospho'}, 'GSM2165966': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Empigen treated Ser2 phospho'}, 'GSM2165967': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Control: Empigen untreated Tyr1 phospho'}, 'GSM1896197': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896196': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896195': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896194': {'individual': 'EU30', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896193': {'individual': 'EU30', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896192': {'individual': 'EU30', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896191': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896190': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1808001': {'tissue': 'Kidney'}, 'GSM1896199': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896198': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2643630': {'antibody': 'N/A', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM2665554': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2665555': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2665556': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2665557': {'differentiation': 'Day25', 'type': 'hESC derived cIN'}, 'GSM2665550': {'differentiation': 'Day4', 'type': 'hESC derived cIN'}, 'GSM2665551': {'differentiation': 'Day4', 'type': 'hESC derived cIN'}, 'GSM2665552': {'differentiation': 'Day4', 'type': 'hESC derived cIN'}, 'GSM2665553': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2643632': {'antibody': 'N/A', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9(B)_HA'}, 'GSM2665558': {'differentiation': 'Day25', 'type': 'hESC derived cIN'}, 'GSM2665559': {'differentiation': 'Day25', 'type': 'hESC derived cIN'}, 'GSM2186479': {'line': 'LNCaP', 'treatment': 'DMSO 24h'}, 'GSM2186478': {'line': 'LNCaP', 'treatment': 'TSA 24h @ 100 ng/ml'}, 'GSM2186473': {'line': 'LNCaP', 'treatment': 'NA'}, 'GSM2186475': {'line': 'LNCaP', 'treatment': 'NA'}, 'GSM2186474': {'line': 'LNCaP', 'treatment': 'NA'}, 'GSM2186477': {'line': 'LNCaP', 'treatment': 'TSA 24h @ 100 ng/ml'}, 'GSM2186476': {'line': 'LNCaP', 'treatment': 'TSA 24h @ 100 ng/ml'}, 'GSM1643984': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+TOT'}, 'GSM1643985': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+TOT'}, 'GSM1643986': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+TOT+IL1b'}, 'GSM1643987': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+TOT+IL1b'}, 'GSM1643980': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643981': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643982': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2'}, 'GSM1643983': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2'}, 'GSM1643988': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+TOT+TNFa'}, 'GSM1643989': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+TOT+TNFa'}, 'GSM1554466': {'age': '12 weeks gestation', 'tissue': 'heart', 'stage': 'fetus'}, 'GSM1554467': {'age': '12 weeks gestation', 'tissue': 'liver', 'stage': 'fetus'}, 'GSM1554464': {'age': '12 weeks gestation', 'tissue': 'brain', 'stage': 'fetus'}, 'GSM1554465': {'age': '12 weeks gestation', 'tissue': 'heart', 'stage': 'fetus'}, 'GSM1554463': {'age': '12 weeks gestation', 'tissue': 'brain', 'stage': 'fetus'}, 'GSM1554468': {'age': '12 weeks gestation', 'tissue': 'liver', 'stage': 'fetus'}, 'GSM2440289': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'LBH589 (10nM) for 28 days'}, 'GSM2440288': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'LBH589 (10nM) for 28 days'}, 'GSM2440287': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'LBH589 (10nM) for 28 days'}, 'GSM2440286': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'DMSO for 28 days'}, 'GSM2440285': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'DMSO for 28 days'}, 'GSM2440284': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'DMSO for 28 days'}, 'GSM2440283': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'LBH589 (10nM) for 96hr'}, 'GSM2440282': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'LBH589 (10nM) for 96hr'}, 'GSM2440281': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'LBH589 (10nM) for 96hr'}, 'GSM2440280': {'subtype': 'Triple-negative breast cancer', 'line': 'HCC1806', 'treatment': 'DMSO for 96 hours'}, 'GSM2585399': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2931378': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931379': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931375': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931376': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931377': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2333705': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'control adenovirus (Ad-NC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333704': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'control adenovirus (Ad-NC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333707': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'YAP-S127A catalytically active adenovirus (Ad-YAP-S127A)', 'passage': 'passage 3 to passage 5'}, 'GSM2333706': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'YAP-S127A catalytically active adenovirus (Ad-YAP-S127A)', 'passage': 'passage 3 to passage 5'}, 'GSM2333701': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'YAP1 siRNA pool (siYAP1)', 'passage': 'passage 3 to passage 5'}, 'GSM2333700': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'non-targetting siRNA pool (siNC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333703': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'YAP1 siRNA pool (siYAP1)', 'passage': 'passage 3 to passage 5'}, 'GSM2333702': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'YAP1 siRNA pool (siYAP1)', 'passage': 'passage 3 to passage 5'}, 'GSM949590': {'line': 'Hs578T', 'type': 'Basal-like cells'}, 'GSM949591': {'line': 'BT-474', 'type': 'Luminal cells'}, 'GSM1683298': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683299': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683294': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683295': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683296': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683297': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683290': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683291': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683292': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683293': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM2170636': {'stage': 'Hepatic endoderm 1'}, 'GSM2170637': {'stage': 'Hepatic endoderm 1'}, 'GSM2170634': {'stage': 'Hepatic endoderm 1'}, 'GSM2170635': {'stage': 'Hepatic endoderm 1'}, 'GSM2124765': {'rin': '2.3', 'Sex': 'male'}, 'GSM2170633': {'stage': 'Hepatic endoderm 1'}, 'GSM2170630': {'stage': 'Hepatic endoderm 1'}, 'GSM2170631': {'stage': 'Hepatic endoderm 1'}, 'GSM2124769': {'rin': '4.1', 'Sex': 'female'}, 'GSM2124768': {'rin': '3.4', 'Sex': 'female'}, 'GSM2837067': {'line': 'NK-YS', 'type': 'natural killer cell line'}, 'GSM2837066': {'line': 'NK-92', 'type': 'natural killer cell line'}, 'GSM2837061': {'line': 'DERL-2', 'type': 'gammadelta T cell line'}, 'GSM2170638': {'stage': 'Hepatic endoderm 1'}, 'GSM2170639': {'stage': 'Hepatic endoderm 1'}, 'GSM2492341': {'line': 'HeLa', 'treatment': 'CF25Im KD'}, 'GSM2492340': {'line': 'HeLa', 'treatment': 'CF25Im KD'}, 'GSM1957155': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957154': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1965365': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965364': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965367': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965366': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965361': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965360': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965363': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965362': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965369': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965368': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2909536': {'sirna': 'none', 'line': 'PrEC', 'tissue': 'Human normal prostate epithelial cell PrEC', 'antibody': 'ZFX'}, 'GSM1957158': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM2047633': {'well': 'B08', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1717106': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '3'}, 'GSM3417901': {'protocol': '10%FBS/DMEM', 'number': 'KF297339', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'CMV/TB40', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM1717104': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '3'}, 'GSM1717105': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '3'}, 'GSM1717102': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '0'}, 'GSM2643393': {'type': 'explant derived cells in culture', 'agent': 'DMSO', 'point': '24h'}, 'GSM2316965': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1980180': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM3417903': {'protocol': '10%FBS/DMEM', 'number': 'AC146907', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'CMV/FIX', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM1717108': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '11'}, 'GSM1717109': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '11'}, 'GSM2616563': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616562': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2616561': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616560': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616567': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616566': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616565': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616564': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM3417905': {'protocol': '10%FBS/DMEM', 'number': 'FJ527563', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'CMV/AD169', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM2616569': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2616568': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2316961': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM3417907': {'protocol': '10%FBS/DMEM', 'number': 'KF297339', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'CMV/TB40e', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM2373109': {'tissue': 'CTX', 'treatment': 'IFN', 'replicates': '2', 'time': '4h'}, 'GSM2373108': {'tissue': 'CTX', 'treatment': 'IFN', 'replicates': '1', 'time': '4h'}, 'GSM2373107': {'tissue': 'CTX', 'treatment': 'Veh', 'replicates': '3', 'time': '4h'}, 'GSM2373106': {'tissue': 'CTX', 'treatment': 'Veh', 'replicates': '2', 'time': '4h'}, 'GSM2373105': {'tissue': 'CBL', 'treatment': 'IFN', 'replicates': '3', 'time': '4h'}, 'GSM2373104': {'tissue': 'CBL', 'treatment': 'IFN', 'replicates': '2', 'time': '4h'}, 'GSM2373103': {'tissue': 'CBL', 'treatment': 'IFN', 'replicates': '1', 'time': '4h'}, 'GSM2373102': {'tissue': 'CBL', 'treatment': 'Veh', 'replicates': '3', 'time': '4h'}, 'GSM2373101': {'tissue': 'CBL', 'treatment': 'Veh', 'replicates': '2', 'time': '4h'}, 'GSM2373100': {'tissue': 'CBL', 'treatment': 'Veh', 'replicates': '1', 'time': '4h'}, 'GSM2047631': {'well': 'B06', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1980189': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1446343': {'type': 'SV-40 transformed primary human fetal epididymis cells'}, 'GSM1446342': {'type': 'SV-40 transformed primary human fetal epididymis cells'}, 'GSM1446341': {'type': 'SV-40 transformed primary human fetal epididymis cells'}, 'GSM1446340': {'type': 'SV-40 transformed primary human fetal epididymis cells'}, 'GSM1446345': {'type': 'SV-40 transformed primary human fetal epididymis cells'}, 'GSM1446344': {'type': 'SV-40 transformed primary human fetal epididymis cells'}, 'GSM2091146': {'type': 'Akata cells'}, 'GSM2091147': {'type': 'Akata cells'}, 'GSM2091144': {'type': 'Akata cells'}, 'GSM2091145': {'type': 'Akata cells'}, 'GSM2091142': {'type': 'Akata cells'}, 'GSM2091143': {'type': 'Akata cells'}, 'GSM2091140': {'type': 'Akata cells'}, 'GSM2091141': {'type': 'Akata cells'}, 'GSM2091148': {'type': 'Akata cells'}, 'GSM2091149': {'type': 'Akata cells'}, 'GSM2316546': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316547': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316544': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316545': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316542': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316543': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316540': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316541': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316548': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316549': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2632488': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632489': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632482': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632483': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632480': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632481': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632486': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632487': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632484': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632485': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1697200': {'number': '21'}, 'GSM2689339': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1706689': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'None', 'passages': 'p55', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706688': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'None', 'passages': 'p55', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706683': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'None', 'passages': 'p35', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706682': {'clone': 'None', 'passages': 'p35', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706681': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'None', 'passages': 'p35', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706680': {'clone': 'None', 'passages': 'p12', 'type': 'fibroblasts', 'method': 'None'}, 'GSM1706687': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'None', 'passages': 'p55', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706686': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'None', 'passages': 'p55', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706685': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'None', 'passages': 'p35', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706684': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'None', 'passages': 'p35', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM603090': {'marker': 'SSEA4', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM1697208': {'number': '26'}, 'GSM2689197': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1346272': {'individual': 'Patient-3 (a.k.a. BRx-68)', 'type': 'circulating tumor cell from blood'}, 'GSM2356678': {'type': 'Head and neck squamous cell carcinoma', 'treatment': 'siNC (siRNA negative control)'}, 'GSM1346270': {'individual': 'Patient-1 (a.k.a. BRx-33)', 'type': 'circulating tumor cell from blood'}, 'GSM2689331': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1346274': {'individual': 'Patient-5 (a.k.a. BRx-42)', 'type': 'circulating tumor cell from blood'}, 'GSM1346275': {'individual': 'Patient-6 (a.k.a. BRx-61)', 'type': 'circulating tumor cell from blood'}, 'GSM1868760': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2287569': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2356674': {'type': 'Head and neck squamous cell carcinoma', 'treatment': 'siKLF5 (siRNA silencing KLF5)'}, 'GSM1341690': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM2356675': {'type': 'Head and neck squamous cell carcinoma', 'treatment': 'siKLF5 (siRNA silencing KLF5)'}, 'GSM2287561': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287560': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287563': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2689191': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2287565': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287564': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1868763': {'type': 'Central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2287566': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610921': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610920': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610923': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610922': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2090439': {'stimulus': 'IMQ', 'donor': '4', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'male'}, 'GSM2090438': {'stimulus': 'IMQ', 'donor': '2', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2610927': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610926': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2090435': {'stimulus': 'CPG', 'donor': '6', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2090434': {'stimulus': 'CPG', 'donor': '5', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2090437': {'stimulus': 'IMQ', 'donor': '1', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2909538': {'sirna': 'none', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'H3K4me3'}, 'GSM2090431': {'stimulus': 'CPG', 'donor': '1', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2090430': {'subtype': 'nascent RNA', 'line': 'MOLT4', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'dBET6'}, 'GSM2090433': {'stimulus': 'CPG', 'donor': '4', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'male'}, 'GSM2090432': {'stimulus': 'CPG', 'donor': '2', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM1964939': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2816231': {'line': 'H9'}, 'GSM2392173': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392723': {'type': 'Induced pluripotent stem cell'}, 'GSM1868765': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2816233': {'line': 'H9'}, 'GSM1964938': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2652419': {'with': '5-fluorouracil for 12 hours followed by 3-MB-PP1 for 4 hours', 'line': 'HCT-116', 'type': 'Colorectal cancer cell line'}, 'GSM2652418': {'with': '5-fluorouracil for 12 hours followed by 3-MB-PP1 for 4 hours', 'line': 'HCT-116', 'type': 'Colorectal cancer cell line'}, 'GSM2392726': {'type': 'Induced pluripotent stem cell'}, 'GSM2816234': {'line': 'H9'}, 'GSM2392172': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2653601': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM1838449': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM1838448': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM2653600': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2425039': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1838447': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM2816236': {'line': 'H9'}, 'GSM2653603': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2425038': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2653602': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2653605': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2247739': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2589382': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2653607': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2589383': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2225739': {'status': 'healthy individual', 'subtype': 'IgD+ CD38low', 'tissue': 'tonsils', 'type': 'purified human naive B cells'}, 'GSM2653606': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2425037': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425036': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2533679': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533678': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533677': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2425031': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2533675': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533674': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533673': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2589387': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2093162': {'bin': '25', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093163': {'bin': '27', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093160': {'bin': '27', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093161': {'bin': '27', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093166': {'bin': '25', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2589384': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2093164': {'bin': '9', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093165': {'bin': '25', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': '17', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093168': {'bin': '15', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2589385': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2111075': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 6', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM1534509': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534508': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534507': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM2111074': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 6', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2308404': {'line': 'H9, VM progenitors d16', 'group': 'DA-low group'}, 'GSM2308405': {'line': 'H9, VM progenitors d16', 'group': 'DA-high group'}, 'GSM2308406': {'line': 'H9, VM progenitors d16', 'group': 'DA-low group'}, 'GSM2308407': {'line': 'H9, VM progenitors d16', 'group': 'DA-low group'}, 'GSM2308400': {'line': 'H9, VM progenitors d16', 'group': 'DA-low group'}, 'GSM2308401': {'line': 'H9, VM progenitors d16', 'group': 'DA-low group'}, 'GSM2308402': {'line': 'H9, VM progenitors d16', 'group': 'DA-high group'}, 'GSM2308403': {'line': 'H9, VM progenitors d16', 'group': 'DA-high group'}, 'GSM2476794': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476795': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476796': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476797': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476790': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476791': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476792': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476793': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM1327343': {'stage': 'endothelial cells', 'type': 'H1', 'time': 'Fully differentiated Endothelial cells'}, 'GSM1327342': {'stage': 'late vascular progenitor cells', 'type': 'H1', 'time': '8 days'}, 'GSM1327341': {'stage': 'early vascular progenitor cells', 'type': 'H1', 'time': '4 days'}, 'GSM1327340': {'stage': 'mesoderm committed cells', 'type': 'H1', 'time': '2 days'}, 'GSM2476798': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476799': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM1666976': {'tissue': 'heart', 'stage': 'fetal'}, 'GSM1666977': {'tissue': 'heart', 'stage': 'fetal'}, 'GSM2058144': {'line': 'V410', 'tissue': 'colorectal cancer cell line'}, 'GSM2058146': {'line': 'V457', 'tissue': 'colorectal cancer cell line'}, 'GSM2058140': {'line': 'V410', 'tissue': 'colorectal cancer cell line'}, 'GSM2058142': {'line': 'V410', 'tissue': 'colorectal cancer cell line'}, 'GSM2058149': {'line': 'V457', 'tissue': 'colorectal cancer cell line'}, 'GSM3189237': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.533011', 'percentaligned': '0.94987211', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.545868', 'original': 'Control'}, 'GSM3189236': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.55661', 'percentaligned': '0.955801897', 'Sex': 'M', 'nl63': 'No', 'libcounts': '14.020678'}, 'GSM3189235': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C37', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.668875', 'percentaligned': '0.926147097', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.681328', 'original': 'Control'}, 'GSM3189234': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C37', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.694759', 'percentaligned': '0.945843095', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.850798', 'original': 'Control'}, 'GSM3189233': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B14', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.684131', 'percentaligned': '0.798183431', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.040155'}, 'GSM3189232': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.663529', 'percentaligned': '0.933385738', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.871396', 'original': 'Case'}, 'GSM3189231': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '13', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.607149', 'percentaligned': '0.949175774', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.607168', 'original': 'Case'}, 'GSM3189230': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A47', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.597771', 'percentaligned': '0.959166904', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.434212', 'original': 'Control'}, 'GSM2580020': {'gender': 'female', 'type': 'primary astrocyte'}, 'GSM2580021': {'gender': 'male', 'type': 'primary astrocyte'}, 'GSM3189239': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '81', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.551359', 'percentaligned': '0.935237733', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.265347'}, 'GSM3189238': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.572224', 'percentaligned': '0.94636056', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.917462', 'original': 'Control'}, 'GSM2754907': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0259', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2042948': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM2042946': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM2042947': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM2042944': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'T0901317', 'time': '48hr'}, 'GSM2042945': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM2042942': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'T0901317', 'time': '48hr'}, 'GSM2042943': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'T0901317', 'time': '48hr'}, 'GSM2042940': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042941': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'T0901317', 'time': '48hr'}, 'GSM1941109': {'with': 'siRNAs targeting ECI2', 'line': 'LNCaP', 'type': 'prostate cancer cell line', 'antibody': 'none'}, 'GSM1941108': {'with': 'siRNAs targeting ECI2', 'line': 'LNCaP', 'type': 'prostate cancer cell line', 'antibody': 'none'}, 'GSM1941107': {'with': 'scrambled siRNA', 'line': 'LNCaP', 'type': 'prostate cancer cell line', 'antibody': 'none'}, 'GSM1941106': {'with': 'siRNAs targeting ECI2', 'line': 'LNCaP', 'type': 'prostate cancer cell line', 'antibody': 'none'}, 'GSM1941105': {'with': 'siRNAs targeting ECI2', 'line': 'LNCaP', 'type': 'prostate cancer cell line', 'antibody': 'none'}, 'GSM1941104': {'with': 'scrambled siRNA', 'line': 'LNCaP', 'type': 'prostate cancer cell line', 'antibody': 'none'}, 'GSM2175051': {'line': 'K562'}, 'GSM2175050': {'line': 'K562'}, 'GSM2175053': {'line': 'K562'}, 'GSM2175052': {'line': 'K562'}, 'GSM2175055': {'line': 'K562'}, 'GSM2175054': {'line': 'K562'}, 'GSM2175057': {'line': 'K562'}, 'GSM2175056': {'line': 'K562'}, 'GSM2175059': {'line': 'K562'}, 'GSM2175058': {'line': 'K562'}, 'GSM2316959': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316958': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM3417918': {'protocol': '10%FBS/DMEM', 'number': 'AC_000008', 'infection': '10 FFU/cell', 'passage': '10-15', 'strain': 'ADV type 5', 'treatment': 'N/A', 'time': '24', 'type': 'MRC5'}, 'GSM3417919': {'protocol': '10%FBS/DMEM', 'number': 'AC_000008', 'infection': '10 FFU/cell', 'passage': '10-15', 'strain': 'ADV type 5', 'treatment': 'N/A', 'time': '24', 'type': 'MRC5'}, 'GSM2316951': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316950': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316953': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316952': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316955': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316954': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316957': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316956': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2535722': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1194', 'samplename': '1gr_413CD3_C52', 'seqsite': 'BRI', 'sampleID': 'S13321', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1194', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C52'}, 'GSM2689349': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689348': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689343': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689342': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689341': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689340': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689347': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689346': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689345': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689344': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424995': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424994': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424997': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424996': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424991': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424990': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424993': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424992': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424999': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424998': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2816211': {'line': 'H9'}, 'GSM2190559': {'line': 'A1847'}, 'GSM2425029': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425026': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425027': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425024': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425025': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425022': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2350071': {'culture': '4 months', 'line': 'ARPE-19', 'type': 'retinal pigment epithelial (RPE) cell line'}, 'GSM2425020': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425021': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1223894': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'antibody': 'input', 'treatment': 'METTL3 overexpressed'}, 'GSM1223895': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'antibody': 'input', 'treatment': 'WTAP overexpressed'}, 'GSM1223896': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'antibody': 'Myc METTL3 IP', 'treatment': 'METTL3 overexpressed'}, 'GSM1223897': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'antibody': 'Flag WTAP IP', 'treatment': 'WTAP overexpressed'}, 'GSM2361748': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361749': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2535720': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1192', 'samplename': '1gr_413CD3_C36', 'seqsite': 'BRI', 'sampleID': 'S13319', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1192', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C36'}, 'GSM1709927': {'line': 'HeLa', 'tissue': 'cervical cancer'}, 'GSM1709926': {'line': 'HeLa', 'tissue': 'cervical cancer'}, 'GSM1709925': {'line': 'HeLa', 'tissue': 'cervical cancer'}, 'GSM1709924': {'line': 'HeLa', 'tissue': 'cervical cancer'}, 'GSM1709923': {'line': 'HeLa', 'tissue': 'cervical cancer'}, 'GSM1709922': {'line': 'HeLa', 'tissue': 'cervical cancer'}, 'GSM1709929': {'line': 'HeLa', 'tissue': 'cervical cancer'}, 'GSM1709928': {'line': 'HeLa', 'tissue': 'cervical cancer'}, 'GSM1709588': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2535727': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1200', 'samplename': '1gr_413CD3_C59', 'seqsite': 'BRI', 'sampleID': 'S13327', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1200', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C59'}, 'GSM2361740': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1177218': {'tissue': 'Prostate Tumour', 'point': 'Post-Treatment'}, 'GSM1177219': {'tissue': 'Prostate Tumour', 'point': 'Post-Treatment'}, 'GSM1177216': {'tissue': 'Prostate Tumour', 'point': 'Post-Treatment'}, 'GSM1470399': {'line': 'U-2 OS', 'type': 'cytoplasmic RNA'}, 'GSM1177214': {'tissue': 'Prostate Tumour', 'point': 'Pre-treament'}, 'GSM2361741': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1177212': {'tissue': 'Prostate Tumour', 'point': 'Pre-treament'}, 'GSM1177213': {'tissue': 'Prostate Tumour', 'point': 'Pre-treament'}, 'GSM1177210': {'tissue': 'Prostate Tumour', 'point': 'Pre-treament'}, 'GSM2357078': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2279922': {'passages': '40-60', 'type': 'ES-derived mesoderm', 'stage': 'Differentiation D3'}, 'GSM2357075': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM1914608': {'type': 'cerebral organoid'}, 'GSM2357074': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2357077': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 5', 'point': '12h'}, 'GSM1470396': {'line': 'A-431', 'type': 'total RNA'}, 'GSM2082547': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM2535725': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1198', 'samplename': '1gr_413CD3_C96', 'seqsite': 'BRI', 'sampleID': 'S13325', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1198', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C96'}, 'GSM2047469': {'well': 'E02', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047466': {'well': 'D11', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047467': {'well': 'D12', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047464': {'well': 'D09', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047465': {'well': 'D10', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047462': {'well': 'D07', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047463': {'well': 'D08', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047460': {'well': 'D05', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047461': {'well': 'D06', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1914609': {'type': 'cerebral organoid'}, 'GSM2588114': {'expression': 'MYOD WT', 'type': 'Skin fibroblasts', 'isolation': 'passage High 45'}, 'GSM2357073': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 5', 'point': '06h'}, 'GSM2462664': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '100P/S'}, 'GSM2357072': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 5', 'point': '06h'}, 'GSM2358889': {'type': 'Immature smooth Muscle Cells (imSMCs)'}, 'GSM2543878': {'library_id': 'lib8014', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543879': {'library_id': 'lib8015', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2535724': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1196', 'samplename': '1gr_413CD3_C64', 'seqsite': 'BRI', 'sampleID': 'S13323', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1196', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C64'}, 'GSM2543872': {'library_id': 'lib8004', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543873': {'library_id': 'lib8005', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543870': {'library_id': 'lib8002', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543871': {'library_id': 'lib8003', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543876': {'library_id': 'lib8012', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1875335': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM2543874': {'library_id': 'lib8010', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543875': {'library_id': 'lib8011', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1914607': {'type': 'cerebral organoid'}, 'GSM2897310': {'type': 'RNA from 3994-071 PDOs'}, 'GSM2374363': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2172049': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2607579': {'line': 'WA26'}, 'GSM2479785': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2607576': {'line': 'WA26'}, 'GSM2172046': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2374360': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2607574': {'line': 'WA26'}, 'GSM2607575': {'line': 'WA26'}, 'GSM2607572': {'line': 'WA26'}, 'GSM2287153': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2607573': {'line': 'WA26'}, 'GSM2607570': {'line': 'WA26'}, 'GSM2607571': {'line': 'WA26'}, 'GSM2109297': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2374366': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2172003': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1835931': {'line': 'BT12', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM2840276': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840277': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840274': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840275': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840272': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840273': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2536038': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10609', 'samplename': '1D_Ctl5_redraw_C33', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34709', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10609', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C33'}, 'GSM2536039': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10610', 'samplename': '1D_Ctl5_redraw_C39', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34710', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10610', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C39'}, 'GSM2536036': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10607', 'samplename': '1_Ctl5_redraw_C13', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34707', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10607', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C13'}, 'GSM2536037': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10608', 'samplename': '1D_Ctl5_redraw_C27', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34708', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10608', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C27'}, 'GSM2536034': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10605', 'samplename': '1D_Ctl5_redraw_C38', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34705', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10605', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C38'}, 'GSM2536035': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10606', 'samplename': '1D_Ctl5_redraw_C44', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34706', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10606', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C44'}, 'GSM2536032': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10603', 'samplename': '1_Ctl5_redraw_C14', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34703', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10603', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C14'}, 'GSM2536033': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10604', 'samplename': '1D_Ctl5_redraw_C32', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34704', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10604', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C32'}, 'GSM2536030': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8493', 'samplename': '1*_T1D#5_C82', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31813', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8493', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C82'}, 'GSM2536031': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10601', 'samplename': '1D_Ctl5_redraw_C37', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34701', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10601', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C37'}, 'GSM2807444': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807445': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807446': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807447': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2545827': {'treatment': 'LDN-193189 (0.3 µM)', 'histology': 'colon adenocarcinoma'}, 'GSM2807441': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807442': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807443': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807448': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807449': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM1914601': {'type': 'cerebral organoid'}, 'GSM2274689': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32737', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9327', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C39', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9327', 'studysiteshort': 'UCSF'}, 'GSM2665848': {'age': 'Day 175', 'well': 'E4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665849': {'age': 'Day 175', 'well': 'G7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665846': {'age': 'Day 175', 'well': 'A2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665847': {'age': 'Day 175', 'well': 'C1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665844': {'age': 'Day 175', 'well': 'E1', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665845': {'age': 'Day 175', 'well': 'H4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665842': {'age': 'Day 175', 'well': 'E2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665843': {'age': 'Day 175', 'well': 'D3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665840': {'age': 'Day 175', 'well': 'D9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665841': {'age': 'Day 175', 'well': 'G9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'a': {'code': '200'}, 'GSM1521608': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521609': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521602': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521603': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521600': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1203338': {'tissue': 'blood'}, 'GSM1521606': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521607': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521604': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521605': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1203337': {'tissue': 'bone marrow'}, 'GSM485468': {'line': 'NA18510'}, 'GSM1203336': {'tissue': 'blood'}, 'GSM2172002': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1203335': {'tissue': 'bone marrow'}, 'GSM2374124': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374125': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374126': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1203334': {'tissue': 'bone marrow'}, 'GSM2374120': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374121': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374122': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374123': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1203333': {'tissue': 'blood'}, 'GSM2374128': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374129': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1184596': {'type': 'ribosome footprint', 'cycloheximide': '0.1 mg/mL cycloheximide', 'point': '3h'}, 'GSM2671245': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM3189057': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.68783', 'percentaligned': '0.980484', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.874083', 'original': 'Case'}, 'GSM2671247': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671246': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671241': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1184595': {'type': 'poly(A) mRNA', 'cycloheximide': 'none', 'point': '3h'}, 'GSM2671243': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM3189056': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '16', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.728458', 'percentaligned': '0.969523', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.369026', 'original': 'Control'}, 'GSM1203330': {'tissue': 'bone marrow'}, 'GSM2671249': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671248': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM485460': {'line': 'NA18858'}, 'GSM485467': {'line': 'NA19204'}, 'GSM1875327': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1489559': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '12T3'}, 'GSM1875326': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM485464': {'line': 'NA18507'}, 'GSM1875325': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM2781955': {'line': 'WI38 hTERT RAF1-ER', 'state': 'proliferative', 'treatment': 'transfected with control siRNA for 3 days'}, 'GSM2781954': {'line': 'WI38 hTERT RAF1-ER', 'state': 'senescent'}, 'GSM2781957': {'line': 'WI38 hTERT RAF1-ER', 'state': 'proliferative', 'treatment': 'transfected with control siRNA for 3 days'}, 'GSM1875324': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM2781951': {'line': 'WI38 hTERT RAF1-ER', 'state': 'proliferative'}, 'GSM2391871': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2781953': {'line': 'WI38 hTERT RAF1-ER', 'state': 'proliferative'}, 'GSM2781952': {'line': 'WI38 hTERT RAF1-ER', 'state': 'senescent'}, 'GSM1875323': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM2781958': {'line': 'WI38 hTERT RAF1-ER', 'state': 'proliferative', 'treatment': 'transfected with siRNA against H2A.Z for 3 days'}, 'GSM1875322': {'line': 'H2087', 'type': 'established lung cancer cell line', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1875321': {'line': 'H2087', 'type': 'established lung cancer cell line', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1875320': {'line': 'HCC1954', 'type': 'HCC1954 derivative isolated from BLI-negative mouse organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1395438': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1726311': {'generation': '2nd generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Post-treatment'}, 'GSM1726310': {'generation': '2nd generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Post-treatment'}, 'GSM1279703': {'crosslinking': 'not applied', 'protein': 'not applied', 'passages': 'PDL55', 'type': 'WI-38 Total RNA', 'line': 'WI-38'}, 'GSM1279702': {'crosslinking': 'not applied', 'protein': 'not applied', 'passages': 'PDL15', 'type': 'WI-38 Total RNA', 'line': 'WI-38'}, 'GSM1395439': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2339299': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM1322948': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322949': {'subtype': 'DDLPS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1312732': {'line': 'HGDP01277', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Mozabite'}, 'GSM2931164': {'concentration': '125 uM', 'passages': '<25', 'line': 'HepG2', 'treatment': 'TBOEP'}, 'GSM2459009': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.92'}, 'GSM2459008': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.83'}, 'GSM2931167': {'concentration': '2.5 uM', 'passages': '<25', 'line': 'HepG2', 'treatment': 'TBOEP'}, 'GSM2459003': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.92'}, 'GSM2459002': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '15.75'}, 'GSM2459001': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '7.17'}, 'GSM2931166': {'concentration': '125 uM', 'passages': '<25', 'line': 'HepG2', 'treatment': 'TBOEP'}, 'GSM2459007': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.50'}, 'GSM2459006': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.50'}, 'GSM2459005': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.50'}, 'GSM2459004': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.33'}, 'GSM1646705': {'status': 'Tumor', 'gender': 'M', 'age': '53', 'tissue': 'liver'}, 'GSM1646704': {'status': 'Tumor', 'gender': 'M', 'age': '43', 'tissue': 'liver'}, 'GSM1646707': {'status': 'Tumor', 'gender': 'M', 'age': '56', 'tissue': 'liver'}, 'GSM1646706': {'status': 'Tumor', 'gender': 'M', 'age': '31', 'tissue': 'liver'}, 'GSM1646701': {'status': 'Tumor', 'gender': 'F', 'age': '55', 'tissue': 'liver'}, 'GSM1646700': {'status': 'Tumor', 'gender': 'M', 'age': '56', 'tissue': 'liver'}, 'GSM1646703': {'status': 'Tumor', 'gender': 'M', 'age': '43', 'tissue': 'liver'}, 'GSM1395431': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1646709': {'status': 'Tumor', 'gender': 'M', 'age': '55', 'tissue': 'liver'}, 'GSM1646708': {'status': 'Tumor', 'gender': 'M', 'age': '66', 'tissue': 'liver'}, 'GSM1395433': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395434': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395435': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1648847': {'group': 'ASD', 'gender': 'Male', 'clone': 'AVID_5_5', 'biopsy': '16 (Fluent Speech - Child/Adolescent)', 'years': '4.21', 'volume': '1361', 'type': 'iPSC-derived neural progenitors', 'id': 'AVID'}, 'GSM1395436': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395437': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2287011': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287010': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287013': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287012': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287015': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287014': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287017': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287016': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287019': {'gender': 'male', 'type': 'Pooled'}, 'GSM2287018': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1609434': {'line': 'GM12892', 'type': 'polyA RNA'}, 'GSM2205683': {'line': 'Huh-6 embryonal cancer cell line', 'tissue': 'liver'}, 'GSM1715074': {'differentiation': 'Day 5', 'line': 'H9 hESC'}, 'GSM1715075': {'differentiation': 'Day 5', 'line': 'H9 hESC'}, 'GSM1715070': {'differentiation': 'Day 5', 'line': 'H9 hESC'}, 'GSM1715071': {'differentiation': 'Day 5', 'line': 'H9 hESC'}, 'GSM1715072': {'differentiation': 'Day 5', 'line': 'H9 hESC'}, 'GSM1715073': {'differentiation': 'Day 5', 'line': 'H9 hESC'}, 'GSM1897945': {'line': 'HFL-1', 'transfection': 'siTAZ #2'}, 'GSM1897944': {'line': 'HFL-1', 'transfection': 'siTAZ #2'}, 'GSM2302129': {'timepoint': 'Post', 'id': '55', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302128': {'timepoint': 'Pre', 'id': '55', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM1897941': {'line': 'HFL-1', 'transfection': 'siNTC'}, 'GSM1897940': {'line': 'HFL-1', 'transfection': 'siNTC'}, 'GSM2302125': {'timepoint': 'Post', 'id': '53', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302124': {'timepoint': 'Pre', 'id': '53', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302127': {'timepoint': 'Post', 'id': '54', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302126': {'timepoint': 'Pre', 'id': '54', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302121': {'timepoint': 'Post', 'id': '51', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302120': {'timepoint': 'Pre', 'id': '51', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302123': {'timepoint': 'Post', 'id': '52', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302122': {'timepoint': 'Pre', 'id': '52', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2243688': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B7', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243689': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A5', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2747455': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': 'DMSO'}, 'GSM2243684': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243685': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243686': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243687': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243680': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243681': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243682': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243683': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2232905': {'line': 'A549', 'expression': 'stable cell line', 'treatment': 'TMPyP4', 'dose': '2.0μM'}, 'GSM2172000': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1166130': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM2816037': {'line': 'H9'}, 'GSM2816036': {'line': 'H9'}, 'GSM2816035': {'line': 'H9'}, 'GSM2816034': {'line': 'H9'}, 'GSM2816033': {'line': 'H9'}, 'GSM2816032': {'line': 'H9'}, 'GSM2816031': {'line': 'H9'}, 'GSM2816030': {'line': 'H9'}, 'GSM2816039': {'line': 'H9'}, 'GSM2373946': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1946217': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19190', 'for': '60min'}, 'GSM2552193': {'line': 'HAP-1', 'name': 'Horizon Genomics, HZGHC000530c012', 'genotype': 'EEF1AKMT4 KO'}, 'GSM2552192': {'line': 'HAP-1', 'name': 'Horizon Genomics, HZGHC000530c011', 'genotype': 'EEF1AKMT4 KO'}, 'GSM2552191': {'line': 'HAP-1', 'name': 'Horizon Genomics, HZGHC000530c010', 'genotype': 'EEF1AKMT4 KO'}, 'GSM2552197': {'line': 'HAP-1', 'name': 'Horizon Genomics, HZGHC000530c014', 'genotype': 'EEF1AKMT4 KO'}, 'GSM2552196': {'line': 'HAP-1', 'name': 'Horizon Genomics, HZGHC000530c013', 'genotype': 'EEF1AKMT4 KO'}, 'GSM2552195': {'line': 'Flp-In T-REx-293', 'genotype': 'wildtype'}, 'GSM2552194': {'line': 'Flp-In T-REx-293', 'genotype': 'wildtype'}, 'GSM1163046': {'patient': 'Healthy_N248', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Untreated', 'id': '1'}, 'GSM1163047': {'patient': 'Healthy_N248', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM2552199': {'line': 'HAP-1', 'name': 'Horizon Genomics, HAP1', 'genotype': 'wildtype'}, 'GSM2552198': {'line': 'HAP-1', 'name': 'Horizon Genomics, HZGHC000530c015', 'genotype': 'EEF1AKMT4 KO'}, 'GSM1163042': {'patient': 'Disease_K9', 'gender': 'M', 'age': '45', 'tissue': 'Nonlesion', 'treatment': 'Untreated', 'id': '5'}, 'GSM1163043': {'patient': 'Disease_K9', 'gender': 'M', 'age': '45', 'tissue': 'Nonlesion', 'treatment': 'Culture/DMSO', 'id': '6'}, 'GSM1163040': {'patient': 'Disease_K9', 'gender': 'M', 'age': '45', 'tissue': 'Lesion', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163041': {'patient': 'Disease_K9', 'gender': 'M', 'age': '45', 'tissue': 'Lesion', 'treatment': 'Antagonist', 'id': '4'}, 'GSM2666188': {'age': 'Day 130', 'well': 'D11', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666189': {'age': 'Day 130', 'well': 'C2', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM1642808': {'line': '184A1', 'type': 'Breast epithelial cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM2666182': {'age': 'Day 130', 'well': 'B9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666183': {'age': 'Day 130', 'well': 'B12', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666180': {'age': 'Day 130', 'well': 'B7', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2411930': {'line': '921B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2666186': {'age': 'Day 130', 'well': 'F8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666187': {'age': 'Day 130', 'well': 'H2', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666184': {'age': 'Day 130', 'well': 'A12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000289'}, 'GSM2666185': {'age': 'Day 130', 'well': 'G6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM1607394': {'tissue': 'Foreskin', 'antibody': 'none, input', 'passage': '2'}, 'GSM1892669': {'tissue': 'FFPE'}, 'GSM1892668': {'tissue': 'FFPE'}, 'GSM1892665': {'tissue': 'FFPE'}, 'GSM1892664': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892667': {'tissue': 'FFPE'}, 'GSM1892666': {'tissue': 'FFPE'}, 'GSM1892661': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892660': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892663': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892662': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2308394': {'line': 'H9, VM progenitors d16', 'group': 'DA-high group'}, 'GSM2308395': {'line': 'H9, VM progenitors d16', 'group': 'DA-high group'}, 'GSM2308396': {'line': 'H9, VM progenitors d16', 'group': 'DA-high group'}, 'GSM2308397': {'line': 'H9, VM progenitors d16', 'group': 'DA-low group'}, 'GSM2411939': {'line': '1236C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2308393': {'line': 'H9, VM progenitors d16', 'group': 'DA-high group'}, 'GSM2411938': {'line': '1236B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2308398': {'line': 'H9, VM progenitors d16', 'group': 'DA-low group'}, 'GSM2308399': {'line': 'H9, VM progenitors d16', 'group': 'DA-high group'}, 'GSM2069443': {'line': 'HCT116', 'tissue': 'colon', 'type': 'colorectal cancer cell line', 'treatment': 'RPL9 siRNA treated'}, 'GSM1414973': {'region': 'BA6', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM2424984': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1414971': {'region': 'BA21', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM1414970': {'region': 'BA45', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM1414977': {'region': 'BA47', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM1414976': {'region': 'BA40', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM2072060': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gCIC-2', 'treatment': '50 nM Trametinib'}, 'GSM1414974': {'region': 'BA6', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM1414979': {'region': 'BA9', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM1414978': {'region': 'BA22', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM2072068': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gCIC-1', 'treatment': '100 nM Trametinib'}, 'GSM2072069': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gCIC-2', 'treatment': 'DMSO'}, 'GSM2339831': {'tissue': 'Skeletal Muscle', 'individual': '5', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339830': {'tissue': 'Skeletal Muscle', 'individual': '5', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339833': {'tissue': 'Skeletal Muscle', 'individual': '7', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339832': {'tissue': 'Skeletal Muscle', 'individual': '7', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339835': {'tissue': 'Skeletal Muscle', 'individual': '8', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339834': {'tissue': 'Skeletal Muscle', 'individual': '8', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339837': {'tissue': 'Skeletal Muscle', 'individual': '9', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339836': {'tissue': 'Skeletal Muscle', 'individual': '9', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339839': {'tissue': 'Skeletal Muscle', 'individual': '11', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339838': {'tissue': 'Skeletal Muscle', 'individual': '11', 'treatment': 'exercise', 'time': '240 min'}, 'GSM1216751': {'subtype': 'Ribosome depleted total RNA', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM1216750': {'subtype': 'Ribosome depleted total RNA', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM1216757': {'gender': 'Female', 'age': '70', 'tissue': 'pancreatic islets', 'birth': '1939', 'bmi': '17.6'}, 'GSM1216756': {'gender': 'Female', 'age': '62', 'tissue': 'pancreatic islets', 'birth': '1946', 'bmi': '27.7'}, 'GSM1216755': {'gender': 'Female', 'age': '46', 'bmi': '23.9', 'hba1c': '5.4', 'tissue': 'pancreatic islets', 'birth': '1962'}, 'GSM1216754': {'gender': 'Male', 'age': '56', 'tissue': 'pancreatic islets', 'birth': '1952', 'bmi': '24.7'}, 'GSM2390935': {'disease': 'Healthy Control'}, 'GSM1553158': {'duration': '12h', 'line': 'SUM159', 'treatment': 'JQ1'}, 'GSM2390934': {'disease': 'Healthy Control'}, 'GSM2573778': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573779': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2312078': {'culture': '12', 'line': 'DCX+'}, 'GSM2312079': {'culture': '12', 'line': 'DCX+'}, 'GSM2312076': {'culture': '12', 'line': 'DCX+'}, 'GSM2312077': {'culture': '12', 'line': 'DCX+'}, 'GSM2312074': {'culture': '12', 'line': 'DCX+'}, 'GSM2312075': {'culture': '12', 'line': 'DCX+'}, 'GSM2312072': {'culture': '12', 'line': 'DCX+'}, 'GSM2312073': {'culture': '12', 'line': 'DCX+'}, 'GSM2312070': {'culture': '12', 'line': 'DCX+'}, 'GSM2312071': {'culture': '12', 'line': 'DCX+'}, 'GSM2439249': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shCUX1.810', 'type': 'myeloid leukemia cell line'}, 'GSM1273842': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'mini GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM2390932': {'disease': 'Healthy Control'}, 'GSM3586643': {'origin': 'GCB', 'pfstt': '271', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '843', 'cycles': '6', 'oscs': '1'}, 'GSM2439247': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shRenilla', 'type': 'myeloid leukemia cell line'}, 'GSM3586641': {'origin': 'GCB', 'pfstt': '654', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1215', 'cycles': '6', 'oscs': '0'}, 'GSM3586640': {'origin': 'GCB', 'pfstt': '358', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1469', 'cycles': '6', 'oscs': '0'}, 'GSM3586647': {'origin': 'UNCLASSIFIED', 'pfstt': '921', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1086', 'cycles': '6', 'oscs': '0'}, 'GSM3586646': {'origin': 'GCB', 'pfstt': '730', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1094', 'cycles': '6', 'oscs': '0'}, 'GSM3586645': {'origin': 'ABC', 'pfstt': '1300', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1300', 'cycles': '6', 'oscs': '0'}, 'GSM2092573': {'repertoire': 'TCR-alpha', 'individual': 'patient 14 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM3416511': {'compartment': 'Stroma', 'id': 'CUMC_124', 'library': 'NuGEN'}, 'GSM3416510': {'compartment': 'Stroma', 'id': 'CUMC_123', 'library': 'NuGEN'}, 'GSM3416513': {'compartment': 'Stroma', 'id': 'CUMC_126', 'library': 'NuGEN'}, 'GSM3416512': {'compartment': 'Stroma', 'id': 'CUMC_125', 'library': 'NuGEN'}, 'GSM3416515': {'compartment': 'Stroma', 'id': 'CUMC_128', 'library': 'NuGEN'}, 'GSM3416514': {'compartment': 'Stroma', 'id': 'CUMC_127', 'library': 'NuGEN'}, 'GSM3416516': {'compartment': 'Stroma', 'id': 'CUMC_129', 'library': 'NuGEN'}, 'GSM2092571': {'repertoire': 'TCR-alpha', 'individual': 'patient 14 (glioblastoma)', 'tissue': 'brain'}, 'GSM1980135': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2305929': {'tissue': 'colon'}, 'GSM1980134': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2220768': {'type': 'BEAS-2B', 'treatment': 'Hg+TCDD-0.5uM+2nM for 3 weeks'}, 'GSM819492': {'type': 'Primary melanoma'}, 'GSM819491': {'type': 'Primary melanoma'}, 'GSM819490': {'type': 'Melanocytes over-expressing BRAFv600e'}, 'GSM1980137': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2220760': {'type': 'BEAS-2B', 'treatment': 'Hg-0.5µM for 3 weeks'}, 'GSM2220761': {'type': 'BEAS-2B', 'treatment': 'Hg-2.5µM for 3 weeks'}, 'GSM2220762': {'type': 'BEAS-2B', 'treatment': 'Hg-2.5µM for 3 weeks'}, 'GSM2220763': {'type': 'BEAS-2B', 'treatment': 'TCDD-2nM for 3 weeks'}, 'GSM2220764': {'type': 'BEAS-2B', 'treatment': 'TCDD-2nM for 3 weeks'}, 'GSM2220765': {'type': 'BEAS-2B', 'treatment': 'TCDD-10nM for 3 weeks'}, 'GSM2220766': {'type': 'BEAS-2B', 'treatment': 'TCDD-10nM for 3 weeks'}, 'GSM2220767': {'type': 'BEAS-2B', 'treatment': 'Hg+TCDD-0.5uM+2nM for 3 weeks'}, 'GSM1585240': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM1585241': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1585242': {'type': 'Ribosomal profiling', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM1375212': {'donor': 'adult donor 1', 'tissue': 'sperm'}, 'GSM1585244': {'type': 'Ribosomal profiling', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM1585245': {'type': 'Ribosomal profiling', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM2157929': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157928': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157925': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2157924': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157927': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157926': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2157921': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157920': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157923': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2157922': {'gender': 'F', 'age': '32', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2815717': {'type': 'Primary hepatocytes', 'ethnicity': 'Asian', 'condition': 'Uncultured'}, 'GSM2815716': {'type': 'HepLPCs', 'ethnicity': 'Asian', 'condition': 'in the transition and expansion medium (Passage 1, 10 days)'}, 'GSM2815715': {'type': 'HepLPCs', 'ethnicity': 'Asian', 'condition': 'in the transition and expansion medium (Passage 1, 4 days)'}, 'GSM2815714': {'type': 'HepLPCs', 'ethnicity': 'Asian', 'condition': 'in the transition and expansion medium (Passage 5)'}, 'GSM2815713': {'type': 'HepLPCs', 'ethnicity': 'Asian', 'condition': 'in the transition and expansion medium (Passage 10)'}, 'GSM2815712': {'type': 'Primary hepatocytes', 'ethnicity': 'Asian', 'condition': 'Uncultured'}, 'GSM2815711': {'type': 'HepLPCs', 'ethnicity': 'Asian', 'condition': 'in the transition and expansion medium (Passage 1, 10 days)'}, 'GSM2815710': {'type': 'HepLPCs', 'ethnicity': 'Asian', 'condition': 'in the transition and expansion medium (Passage 1, 4 days)'}, 'GSM2815719': {'type': 'HepLPCs', 'ethnicity': 'Asian', 'condition': 'in the transition and expansion medium (Passage 5)'}, 'GSM2815718': {'type': 'HepLPCs', 'ethnicity': 'Asian', 'condition': 'in the transition and expansion medium (Passage 10)'}, 'GSM2264249': {'type': 'stem-like cells CD133+ cells'}, 'GSM2108312': {'tissue': 'human melanocytes', 'sirna': 'siATF2WT'}, 'GSM2108313': {'tissue': 'human melanocytes', 'sirna': 'siATF2WT'}, 'GSM2108310': {'tissue': 'human melanocytes', 'sirna': 'siATF2SV5'}, 'GSM2108311': {'tissue': 'human melanocytes', 'sirna': 'siATF2SV5'}, 'GSM1957049': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957048': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM718709': {'status': '2 Former, 1 Current', 'cancer': '3 No', 'gender': '1 Male, 2 Female', 'age': '49', 'type': 'large airway epithelial cells', 'packyears': '49.5'}, 'GSM2486734': {'tissue': 'esophageal adenocarcinoma'}, 'GSM1581046': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581047': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2105090': {'gender': 'Male', 'age': '21 Year old', 'batch': '1F', 'condition': 'Trisomic'}, 'GSM1581045': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581042': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM2105097': {'gender': 'Female', 'age': '7 Year old', 'batch': '1L', 'condition': 'Disomic'}, 'GSM1581040': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581041': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2356362': {'ab': 'isotype control antibody', 'level': 'Binet B', 'age': '81', 'sex': 'Male', 'diagnosis': 'CLL', 'time': '8h', 'type': 'B cells'}, 'GSM2356363': {'ab': 'isotype control antibody', 'level': 'Binet B', 'age': '81', 'sex': 'Male', 'diagnosis': 'CLL', 'time': '8h', 'type': 'B cells'}, 'GSM2356360': {'ab': 'CD74 (C-16; Santa Cruz Biotechnology)', 'level': 'Binet B', 'age': '81', 'sex': 'Male', 'diagnosis': 'CLL', 'time': '8h', 'type': 'B cells'}, 'GSM2356361': {'ab': 'isotype control antibody', 'level': 'Binet A', 'age': '57', 'sex': 'Female', 'diagnosis': 'CLL', 'time': '8h', 'type': 'B cells'}, 'GSM2151481': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2672080': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM1581048': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581049': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM3186676': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '61', 'sample_id': '01-0037', 'tissue': 'muscle biopsy', 'batch': 'II', 'rank': '1', 't1': '0', 'score': '0.02394', 'fraction': '0.060709', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM3186677': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '67', 'sample_id': '32-0007', 'tissue': 'muscle biopsy', 'batch': 'II', 'rank': '2', 't1': '0', 'score': '1.69821', 'fraction': '0.13249', 'inflam': '1', 'active': '1', 'stir': '0'}, 'GSM3186674': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '62', 'sample_id': '32-0006', 'tissue': 'muscle biopsy', 'batch': 'I', 'rank': '4', 't1': '4', 'score': '21.2299', 'fraction': '0.53547', 'inflam': '1', 'active': '1', 'stir': '2'}, 'GSM2672081': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM3186672': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '51', 'sample_id': '32-0004', 'tissue': 'muscle biopsy', 'batch': 'I', 'rank': '4', 't1': '1', 'score': '16.251', 'fraction': '0.2107', 'inflam': '1', 'active': '1', 'stir': '2'}, 'GSM3186673': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '42', 'sample_id': '32-0005', 'tissue': 'muscle biopsy', 'batch': 'I', 'rank': '4', 't1': '4', 'score': '15.3363', 'fraction': '0.31569', 'inflam': '3', 'active': '3', 'stir': '2'}, 'GSM3186670': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '59', 'sample_id': '32-0002', 'tissue': 'muscle biopsy', 'batch': 'I', 'rank': '3', 't1': '1', 'score': '7.96753', 'fraction': '0.060451', 'inflam': '0', 'active': '1', 'stir': '4'}, 'GSM3186671': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '58', 'sample_id': '32-0003', 'tissue': 'muscle biopsy', 'batch': 'I', 'rank': '4', 't1': '0', 'score': '12.7078', 'fraction': '0.20956', 'inflam': '2', 'active': '2', 'stir': '3'}, 'GSM2672086': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM3186678': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '57', 'sample_id': '32-0008', 'tissue': 'muscle biopsy', 'batch': 'II', 'rank': '3', 't1': '0', 'score': '7.53567', 'fraction': '0.057228', 'inflam': '0', 'active': '0', 'stir': '2'}, 'GSM2672087': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2247789': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3-CD56+CD16+', 'tissue': 'clear cell RCC tumor', 'type': 'CD16+ natural killer (NK) cells', 'identifier': 'RCC344'}, 'GSM2672084': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM1639687': {'type': 'DPSC', 'genotype': 'Deletion 15q (Angelman syndrome)', 'number': '1'}, 'GSM2581280': {'race': 'African American', 'patient': '5342', 'area': 'BA6', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170214A', 'histology': 'Coronal sample, Section 11', 'age': '23 years'}, 'GSM2672085': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2200892': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1639685': {'type': 'DPSC', 'genotype': 'Deletion 15q (Angelman syndrome)', 'number': '1'}, 'GSM1295077': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': 'AB-21873 from ABCAM'}, 'GSM2791590': {'line': 'MDA-MB-231', 'barcode': 'U788', 'replicate': 'Biological replicate 2', 'treatment': 'Normoxia+PP242', 'fraction': 'Polysomal mRNA'}, 'GSM2791591': {'line': 'MDA-MB-231', 'barcode': 'U789', 'replicate': 'Biological replicate 2', 'treatment': 'Hypoxia+PP242', 'fraction': 'Polysomal mRNA'}, 'GSM1295076': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': 'MRO19 - in house rabbit polyclonal'}, 'GSM2689168': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2200896': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2581287': {'race': 'African American', 'patient': '5342', 'area': 'BA6', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170308B', 'histology': 'Coronal sample, Section 11', 'age': '23 years'}, 'GSM2200897': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2247781': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3+CD8+', 'tissue': 'clear cell RCC tumor', 'type': 'CD8+ T cells', 'identifier': 'RCC343'}, 'GSM2247780': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3+CD8+', 'tissue': 'clear cell RCC tumor', 'type': 'CD8+ T cells', 'identifier': 'RCC290'}, 'GSM2247783': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3+CD8+', 'tissue': 'clear cell RCC tumor', 'type': 'CD8+ T cells', 'identifier': 'RCC344'}, 'GSM2247782': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3+CD8+', 'tissue': 'clear cell RCC tumor', 'type': 'CD8+ T cells', 'identifier': 'RCC344'}, 'GSM1857420': {'transduction': 'DACOR1 Lentivirus', 'line': 'V852', 'type': 'Colorectal cancer', 'Sex': 'Male'}, 'GSM1857421': {'transduction': 'DACOR1 Lentivirus', 'line': 'V852', 'type': 'Colorectal cancer', 'Sex': 'Male'}, 'GSM3104719': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104718': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104717': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104716': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104715': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104714': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104713': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104712': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104711': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2247784': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3+CD8+', 'tissue': 'clear cell RCC tumor', 'type': 'CD8+ T cells', 'identifier': 'RCC351'}, 'GSM1946186': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19144', 'for': '30min'}, 'GSM2247787': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3-CD56-CD14+', 'tissue': 'clear cell RCC tumor', 'type': 'macrophages', 'identifier': 'RCC344'}, 'GSM2510251': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2247786': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3-CD56-CD14+', 'tissue': 'clear cell RCC tumor', 'type': 'macrophages', 'identifier': 'RCC344'}, 'GSM2581285': {'race': 'African American', 'patient': '5342', 'area': 'BA6', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170308B', 'histology': 'Coronal sample, Section 11', 'age': '23 years'}, 'GSM2390867': {'disease': 'Healthy Control'}, 'GSM2390866': {'disease': 'Healthy Control'}, 'GSM2390865': {'disease': 'Healthy Control'}, 'GSM2390864': {'disease': 'Healthy Control'}, 'GSM2643486': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM JQ1', 'time': '24 h'}, 'GSM2643487': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM JQ1', 'time': '24 h'}, 'GSM2643484': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM JQ1', 'time': '24 h'}, 'GSM2643485': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM JQ1', 'time': '24 h'}, 'GSM2643488': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM JQ1', 'time': '24 h'}, 'GSM2643489': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM JQ1', 'time': '24 h'}, 'GSM2390869': {'disease': 'Healthy Control'}, 'GSM2390868': {'disease': 'Healthy Control'}, 'GSM2256088': {'infected': 'k562_hela:TSS80115_+_114598271.23-ENST00000606615', 'type': 'HeLa'}, 'GSM2256089': {'infected': 'cancer_common:TSS98937_-_120867939.23-CUFF.48273.1', 'type': 'HeLa'}, 'GSM2533738': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533739': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2194539': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194538': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2533732': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533733': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533730': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2194534': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2533736': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2256085': {'infected': 'hela_unique:TSS102129_+_128231163.23-P1P2', 'type': 'HeLa'}, 'GSM2256086': {'infected': 'hela_unique:TSS102124_-_128241282.23-CUFF.49125.24,CUFF.49125.41', 'type': 'HeLa'}, 'GSM2533735': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM1538099': {'resection': '22.7', 'id': '26', 'sex': 'M'}, 'GSM1538098': {'resection': '22.7', 'id': '26', 'sex': 'M'}, 'GSM1538091': {'resection': '16.6', 'id': '22', 'sex': 'F'}, 'GSM1538090': {'resection': '18.7', 'id': '21', 'sex': 'M'}, 'GSM1538093': {'resection': '28.3', 'id': '24', 'sex': 'F'}, 'GSM1538092': {'resection': '28.3', 'id': '24', 'sex': 'F'}, 'GSM1538095': {'resection': '18.4', 'id': '25', 'sex': 'F'}, 'GSM1538094': {'resection': '18.4', 'id': '25', 'sex': 'F'}, 'GSM1538097': {'resection': '20.7', 'id': '26', 'sex': 'M'}, 'GSM1538096': {'resection': '18.4', 'id': '25', 'sex': 'F'}, 'GSM2581238': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581239': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581232': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581233': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581230': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581231': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581236': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581237': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581234': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581235': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2550229': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550228': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM984221': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'fetal, 14wks'}, 'GSM1940171': {'with': '0.5 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940170': {'with': '0.5% 1xPBS vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940173': {'with': '0.5 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940172': {'with': '0.5 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940175': {'with': 'none (untreated)', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': 'n/a', 'variation': 'PU.1 overexpression'}, 'GSM1940174': {'with': 'none (untreated)', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': 'n/a', 'variation': 'PU.1 overexpression'}, 'GSM1940177': {'with': 'none (untreated)', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': 'n/a', 'variation': 'vector control (for PU.1 overexpression)'}, 'GSM1940176': {'with': 'none (untreated)', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': 'n/a', 'variation': 'vector control (for PU.1 overexpression)'}, 'GSM1940179': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1940178': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1981338': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981339': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981334': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981335': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981336': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1981337': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1608019': {'molecule': 'polyA RNA', 'line': 'Differentiated NT-ESC', 'type': 'Fibroblast'}, 'GSM1608018': {'molecule': 'polyA RNA', 'line': 'Differentiated NT-ESC', 'type': 'Fibroblast'}, 'GSM1608013': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1608012': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1608011': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1608010': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1608017': {'molecule': 'polyA RNA', 'line': 'Differentiated NT-ESC', 'type': 'Fibroblast'}, 'GSM1608016': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1608015': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1608014': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1523194': {'line': 'MCF7', 'treatment': 'cells were transfected with siNCAPG, after 1hr treatment with 100nM E2'}, 'GSM1523195': {'line': 'MCF7', 'treatment': 'cells were transfected with siCTL, after 1hr treatment with ethanol'}, 'GSM1523196': {'line': 'MCF7', 'treatment': 'cells were transfected with siCTL, after 1hr treatment with 100nM E2'}, 'GSM2840266': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM1523191': {'line': 'MCF7', 'treatment': 'cells were transfected with siCTL, after 1hr treatment with ethanol'}, 'GSM1523192': {'line': 'MCF7', 'treatment': 'cells were transfected with siCTL, after 1hr treatment with 100nM E2'}, 'GSM1523193': {'line': 'MCF7', 'treatment': 'cells were transfected with siNCAPG, after 1hr treatment with ethanol'}, 'GSM2536029': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8488', 'samplename': '1_T1D#5_C59', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31808', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8488', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C59'}, 'GSM1523198': {'line': 'MCF7', 'treatment': 'cells were transfected with siNCAPD3, after 1hr treatment with 100nM E2'}, 'GSM2536028': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8487', 'samplename': '1_T1D#5_C53', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31807', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8487', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C53'}, 'GSM3189372': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A75', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.529705', 'percentaligned': '0.956566099', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.882772', 'original': 'Control'}, 'GSM3189373': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A75', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.5399', 'percentaligned': '0.950227819', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.919436', 'original': 'Control'}, 'GSM3189370': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B06', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '36', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.533644', 'percentaligned': '0.935142756', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.184596', 'original': 'Control'}, 'GSM3189371': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '73', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.609006', 'percentaligned': '0.924275548', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.491006'}, 'GSM3189376': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '28', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.556667', 'percentaligned': '0.93498542', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.430947'}, 'GSM3189377': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.583065', 'percentaligned': '0.907644523', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.874111', 'original': 'Case'}, 'GSM3189374': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'Yes', 'b': 'No', 'mediancvcoverage': '0.534099', 'percentaligned': '0.941073398', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.021559', 'original': 'Case'}, 'GSM3189375': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'Yes', 'b': 'No', 'mediancvcoverage': '0.586473', 'percentaligned': '0.944926667', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.745108', 'original': 'Case'}, 'GSM3189378': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '53', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.596669', 'percentaligned': '0.916864851', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.012773', 'original': 'Case'}, 'GSM3189379': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '57', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.590411', 'percentaligned': '0.946095133', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.121429'}, 'GSM2881619': {'gender': 'male', 'age': '58-year-old', 'tissue': 'Kidney', 'type': 'Renal cell carcinoma', 'line': '786-O'}, 'GSM2881618': {'gender': 'male', 'age': '58-year-old', 'tissue': 'Kidney', 'type': 'Renal cell carcinoma', 'line': '786-O'}, 'GSM1620358': {'type': 'U87 human glioma cells'}, 'GSM1620359': {'type': 'U87 human glioma cells'}, 'GSM2536024': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8482', 'samplename': '1_T1D#5_C58', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31802', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8482', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C58'}, 'GSM1620352': {'type': 'U87 human glioma cells'}, 'GSM1620353': {'type': 'U87 human glioma cells'}, 'GSM1620350': {'type': 'U87 human glioma cells'}, 'GSM1620351': {'type': 'U87 human glioma cells'}, 'GSM1620356': {'type': 'U87 human glioma cells'}, 'GSM1620357': {'type': 'U87 human glioma cells'}, 'GSM1620354': {'type': 'U87 human glioma cells'}, 'GSM1620355': {'type': 'U87 human glioma cells'}, 'GSM2304378': {'line': 'HeLa', 'treatment': '4hr recovery after 3hr ethanol treatment'}, 'GSM2304379': {'line': 'HeLa', 'treatment': '4hr recovery after 3hr ethanol treatment'}, 'GSM1145195': {'phase': 'G1 (day0-0 h)', 'line': 'H9', 'type': 'embryonic stem cells'}, 'GSM1145196': {'phase': 'G1/S (day0-2 h)', 'line': 'H9', 'type': 'embryonic stem cells'}, 'GSM1145197': {'phase': 'S (day0-3 h)', 'line': 'H9', 'type': 'embryonic stem cells'}, 'GSM2304372': {'line': 'HeLa', 'treatment': '2hr recovery after 3hr ethanol treatment'}, 'GSM2840269': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2304370': {'line': 'HeLa', 'treatment': '1hr recovery after 3hr ethanol treatment'}, 'GSM2304371': {'line': 'HeLa', 'treatment': '2hr recovery after 3hr ethanol treatment'}, 'GSM2304376': {'line': 'HeLa', 'treatment': '3hr recovery after 3hr ethanol treatment'}, 'GSM2304377': {'line': 'HeLa', 'treatment': '4hr recovery after 3hr ethanol treatment'}, 'GSM2304374': {'line': 'HeLa', 'treatment': '3hr recovery after 3hr ethanol treatment'}, 'GSM2840268': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM1260321': {'line': 'JEKO-1', 'treatment': 'SOX11 siRNA', 'genotype': 'SOX11 depletion'}, 'GSM1260320': {'line': 'JEKO-1', 'treatment': 'control', 'genotype': 'parental'}, 'GSM2701939': {'stimulation': '50ng/ml LPS+1µM SB-747561', 'donor': '5', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701938': {'stimulation': '50ng/ml LPS+10nM C5a', 'donor': '5', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701933': {'stimulation': '50ng/ml LPS+1µM SB-747561', 'donor': '4', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701932': {'stimulation': '50ng/ml LPS+10nM C5a', 'donor': '4', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701931': {'stimulation': '50ng/ml LPS', 'donor': '4', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701930': {'stimulation': '10nM C5a', 'donor': '4', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701937': {'stimulation': '50ng/ml LPS', 'donor': '5', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701936': {'stimulation': '10nM C5a', 'donor': '5', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701935': {'stimulation': 'no stimulation', 'donor': '5', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701934': {'stimulation': '50ng/ml LPS+1µM SB-747561+10nM C5a', 'donor': '4', 'type': 'monocyte-derived dendritic cells'}, 'GSM2135458': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'A', 'treatment': 'IL10', 'target': 'Not applicable'}, 'GSM2457315': {'with': '20 ng/mL phorbol ester PMA for 48 h', 'line': 'Jurkat-derived monoclonal (JSL1)', 'type': 'T lymphocyte', 'variation': 'Depletion of CELF2'}, 'GSM2457314': {'line': 'Jurkat-derived monoclonal (JSL1)', 'type': 'T lymphocyte', 'variation': 'Depletion of CELF2'}, 'GSM2457316': {'with': '20 ng/mL phorbol ester PMA for 48 h', 'line': 'Jurkat-derived monoclonal (JSL1)', 'type': 'T lymphocyte', 'variation': 'Depletion of CELF2'}, 'GSM2457311': {'with': '20 ng/mL phorbol ester PMA for 48 h', 'line': 'Jurkat-derived monoclonal (JSL1)', 'type': 'T lymphocyte'}, 'GSM2457310': {'line': 'Jurkat-derived monoclonal (JSL1)', 'type': 'T lymphocyte'}, 'GSM2457313': {'line': 'Jurkat-derived monoclonal (JSL1)', 'type': 'T lymphocyte', 'variation': 'Depletion of CELF2'}, 'GSM2457312': {'with': '20 ng/mL phorbol ester PMA for 48 h', 'line': 'Jurkat-derived monoclonal (JSL1)', 'type': 'T lymphocyte'}, 'GSM2595233': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '105'}, 'GSM2595232': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '79'}, 'GSM2595231': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '116'}, 'GSM2595230': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '117'}, 'GSM2595237': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '127'}, 'GSM2595236': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '108'}, 'GSM2595235': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '108'}, 'GSM2595234': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '110'}, 'GSM2595239': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '111'}, 'GSM2595238': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '104'}, 'GSM1521725': {'antibody': 'none (Input)', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2420652': {'line': 'HEK293T'}, 'GSM2166100': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2420653': {'line': 'HEK293T'}, 'GSM2420650': {'line': 'HEK293T'}, 'GSM2420651': {'line': 'HEK293T'}, 'GSM2420656': {'line': 'HEK293T'}, 'GSM2420657': {'line': 'HEK293T'}, 'GSM2420654': {'line': 'HEK293T'}, 'GSM1945839': {'line': 'MV4-11'}, 'GSM1273847': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'mini GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1945837': {'line': 'MV4-11'}, 'GSM1203332': {'tissue': 'bone marrow'}, 'GSM2420655': {'line': 'HEK293T'}, 'GSM2071859': {'type': 'breast cancer'}, 'GSM2324266': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2324267': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2324264': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2324265': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2324262': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2324263': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2324260': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2324261': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2361940': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361941': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361942': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361943': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361944': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361945': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361946': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361947': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM880698': {'line': 'HCT116', 'passages': 'below 30', 'antibody': 'EZH2'}, 'GSM2166226': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166227': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166224': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166225': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166222': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166223': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166220': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166221': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2243118': {'line': 'RH18 Fusion Negative Rhabdomyosarcoma cell line'}, 'GSM2243119': {'line': 'RD Fusion Negative Rhabdomyosarcoma cell line'}, 'GSM2166228': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166229': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM1632422': {'number': 'passage 7', 'transgenes': 'OCT4 (10 MOI), SOX2 (5 MOI), KLF4 (5 MOI)', 'time': 'day 3 post transduction', 'line': 'BJ', 'type': 'reprogramming cells', 'protocols': 'cells were cultured in human fibroblast media as described in fibroblast culture protocol.'}, 'GSM1521724': {'antibody': 'Millipore,07-473,JBC1888194', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2256658': {'patient': 'patient 1', 'treatment': 'after'}, 'GSM1648868': {'group': 'ASD', 'gender': 'Male', 'clone': 'APEX_5_15', 'biopsy': '18 (Fluent Speech - Adolescent/Adult)', 'years': '3.62', 'volume': '1515', 'type': 'iPSCs', 'id': 'APEX'}, 'GSM1648869': {'group': 'ASD', 'gender': 'Male', 'clone': 'AQUA_3_3', 'biopsy': '13 (Fluent Speech -Chld/Adolescent)', 'years': '4.05', 'volume': '1409', 'type': 'iPSCs', 'id': 'AQUA'}, 'GSM1648862': {'group': 'ASD', 'gender': 'Male', 'clone': 'ACAI_1_1', 'biopsy': '13 (Fluent Speech - Child/Adolescent)', 'years': '4.5', 'volume': '1458', 'type': 'iPSCs', 'id': 'ACAI'}, 'GSM1648863': {'group': 'ASD', 'gender': 'Male', 'clone': 'AERO_3_13', 'biopsy': '20 (Fluent Speech - Child/Adolescent)', 'years': '3.2', 'volume': '1338', 'type': 'iPSCs', 'id': 'AERO'}, 'GSM1648860': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_8', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSCs', 'id': 'ABLE'}, 'GSM1648861': {'group': 'ASD', 'gender': 'Male', 'clone': 'ACAI_3_2', 'biopsy': '13 (Fluent Speech - Child/Adolescent)', 'years': '4.5', 'volume': '1458', 'type': 'iPSCs', 'id': 'ACAI'}, 'GSM1648866': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_13', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSCs', 'id': 'AHOY'}, 'GSM1648867': {'group': 'ASD', 'gender': 'Male', 'clone': 'APEX_5_4', 'biopsy': '18 (Fluent Speech - Adolescent/Adult)', 'years': '3.62', 'volume': '1515', 'type': 'iPSCs', 'id': 'APEX'}, 'GSM1648864': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_4', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSCs', 'id': 'AHOY'}, 'GSM1648865': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_19', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSCs', 'id': 'AHOY'}, 'GSM1171526': {'replicate': '1', 'treatment': '10nM E2'}, 'GSM1171527': {'replicate': '2', 'treatment': '10nM E2'}, 'GSM1171524': {'replicate': '1', 'treatment': 'Vehicle'}, 'GSM1171525': {'replicate': '2', 'treatment': 'Vehicle'}, 'GSM2630291': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405843'}, 'GSM2630290': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405842'}, 'GSM2630293': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405845'}, 'GSM2630292': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405844'}, 'GSM2630295': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630294': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405846'}, 'GSM2630297': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630296': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630299': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630298': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM1905008': {'antibody': 'EBNA1', 'line': 'MutuI', 'type': 'EBV positive B-cell'}, 'GSM1905009': {'antibody': 'EBNA1', 'line': 'LCL', 'type': 'EBV positive B-cell'}, 'GSM2711147': {'line': 'HCT116 (ATCC)', 'treatment': 'pre-treated with 1uM Senexin B for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM1905007': {'antibody': 'EBNA1', 'line': 'Raji', 'type': 'EBV positive B-cell'}, 'GSM2711145': {'line': 'HCT116 (ATCC)', 'treatment': 'treated with 1uM Senexin B for 3 hours'}, 'GSM2711144': {'line': 'HCT116 (ATCC)', 'treatment': 'treated with 0.1% DMSO (vehicle control) for 3 hours'}, 'GSM996200': {'age': '58', 'treatment': 'none', 'Sex': 'male'}, 'GSM2186961': {'length': '11', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - unmodified'}, 'GSM1395747': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM996201': {'age': '58', 'treatment': 'incubated for 1h with TNF-alpha (10 ng/mL)', 'Sex': 'male'}, 'GSM2607583': {'line': 'WA26'}, 'GSM2607582': {'line': 'WA26'}, 'GSM2607581': {'line': 'WA26'}, 'GSM2607580': {'line': 'WA26'}, 'GSM2607587': {'line': 'WA26'}, 'GSM2247322': {'state': 'Late differentiation (Day 6)', 'individual': 'Donor2', 'type': 'primary epidermal keratinocyte', 'Sex': 'male'}, 'GSM2247321': {'state': 'Early Differentiation (Day 3)', 'individual': 'Donor2', 'type': 'primary epidermal keratinocyte', 'Sex': 'male'}, 'GSM2247320': {'state': 'Undifferentiated (Day 0)', 'individual': 'Donor2', 'type': 'primary epidermal keratinocyte', 'Sex': 'male'}, 'GSM2607585': {'line': 'WA26'}, 'GSM1847143': {'subject_id': 'Q3', 'type': 'Induced pluripotent stem cells (iPSC)', 'subline_id': 'SC', 'passage': 'P20'}, 'GSM2048666': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2645798': {'line': 'LOX-IMVI BR', 'type': 'human metastatic melanoma cell line', 'treatment': 'control'}, 'GSM2645799': {'line': 'LOX-IMVI BR', 'type': 'human metastatic melanoma cell line', 'treatment': '6-thio-dG'}, 'GSM2037146': {'conditions': 'OP9 co-culture in IMDM with 20% FBS, IL3, IL6 and SCF', 'type': 'primary AML patient sample', 'genotype': 'inv(16)'}, 'GSM2037147': {'conditions': 'OP9 co-culture in IMDM with 20% FBS, IL3, IL6 and SCF', 'type': 'primary AML patient sample', 'genotype': 'inv(16)'}, 'GSM1558620': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558621': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558622': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558623': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2037148': {'conditions': 'OP9 co-culture in IMDM with 20% FBS, IL3, IL6 and SCF', 'type': 'primary AML patient sample', 'genotype': 'inv(16)'}, 'GSM2037149': {'conditions': 'OP9 co-culture in IMDM with 20% FBS, IL3, IL6 and SCF', 'type': 'primary AML patient sample', 'genotype': 'inv(16)'}, 'GSM2455762': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455763': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455760': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455761': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455766': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455767': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455764': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455765': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455768': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455769': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2645796': {'line': 'A375', 'type': 'human metastatic melanoma cell line', 'treatment': 'BIBR1532'}, 'GSM2645797': {'line': 'LOX-IMVI BR', 'type': 'human metastatic melanoma cell line', 'treatment': 'control'}, 'GSM2632639': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632638': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632635': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632634': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632637': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632636': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632631': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632630': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632633': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632632': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM1862659': {'line': 'BeWo', 'condition': 'normal', 'Stage': '4h'}, 'GSM2635725': {'genotype': 'YAP-', 'treatment_time': '72h', 'treatment': 'Activin A, ChIR'}, 'GSM2285778': {'status': 'healthy volunteer', 'gender': 'female', 'age': '25', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285779': {'status': 'healthy volunteer', 'gender': 'female', 'age': '22', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285776': {'status': 'healthy volunteer', 'gender': 'female', 'age': '19', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285777': {'status': 'healthy volunteer', 'gender': 'female', 'age': '71', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285774': {'status': 'healthy volunteer', 'gender': 'female', 'age': '22', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285775': {'status': 'healthy volunteer', 'gender': 'female', 'age': '63', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285772': {'status': 'healthy volunteer', 'gender': 'female', 'age': '22', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285773': {'status': 'healthy volunteer', 'gender': 'female', 'age': '78', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285770': {'status': 'healthy volunteer', 'gender': 'female', 'age': '23', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285771': {'status': 'healthy volunteer', 'gender': 'female', 'age': '24', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1603048': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1574751': {'concentration': '14200.8', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '34.6'}, 'GSM1576419': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human B cells', 'time': '0 d'}, 'GSM2100065': {'rin': '9.6', 'Sex': 'Female', 'sspg': '50', 'age': '70', 'bmi': '27.5', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '345', 'method': 'Qiagen:trizol'}, 'GSM2100066': {'rin': 'NA', 'Sex': 'Female', 'sspg': '50', 'age': '70', 'bmi': '27.5', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '345', 'method': 'Qiagen:trizol'}, 'GSM2451145': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100060': {'rin': '10', 'Sex': 'Female', 'sspg': '115', 'age': '66', 'bmi': '36.5', 'batch': '1-80', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '334', 'method': 'Life-Tech GITC'}, 'GSM2424907': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1574758': {'concentration': '27104.9', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '52.8'}, 'GSM2451143': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM927341': {'patient': '3', 'gender': 'female', 'age': '53 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIB'}, 'GSM927340': {'patient': '3', 'gender': 'female', 'age': '53 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927343': {'patient': '4', 'gender': 'female', 'age': '60 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IA'}, 'GSM927342': {'patient': '4', 'gender': 'female', 'age': '60 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927345': {'patient': '5', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIA'}, 'GSM2100062': {'rin': '10', 'Sex': 'Female', 'sspg': '243', 'age': '70', 'bmi': '33.5', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '336', 'method': 'Life-Tech GITC'}, 'GSM927347': {'patient': '6', 'gender': 'female', 'age': '70 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIB'}, 'GSM927346': {'patient': '6', 'gender': 'female', 'age': '70 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927349': {'patient': '8', 'gender': 'female', 'age': '62 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IA'}, 'GSM927348': {'patient': '8', 'gender': 'female', 'age': '62 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM2451141': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2581187': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2374083': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374082': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374081': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374080': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374087': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374086': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374085': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374084': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374089': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374088': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1264341': {'line': 'MCF-7', 'replicates': '1', 'variation': 'SRA knockdown'}, 'GSM1264340': {'line': 'MCF-7', 'replicates': '3', 'variation': 'control'}, 'GSM1264343': {'line': 'MCF-7', 'replicates': '3', 'variation': 'SRA knockdown'}, 'GSM1264342': {'line': 'MCF-7', 'replicates': '2', 'variation': 'SRA knockdown'}, 'GSM2048878': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'KRAS-G12D'}, 'GSM2048879': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2048870': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2048871': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'APC-R1450'}, 'GSM2048872': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2048873': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'APC-R1450'}, 'GSM2048874': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'KRAS-G12V'}, 'GSM2048875': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2048876': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'KRAS-G12D'}, 'GSM2242949': {'line': 'A375', 'replicate': '4'}, 'GSM2754975': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_1158', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754974': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754977': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_1158', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754976': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_1158', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754971': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754970': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0392', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754973': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754972': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': '13', 'type': 'Tcells'}, 'GSM2754979': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_1003', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754978': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1003', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM2287730': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287731': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287732': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287733': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287734': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287735': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287736': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287737': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287738': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287739': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2046875': {'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM2752539': {'line': 'NCI-H358', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752538': {'line': 'NCI-H358', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752537': {'line': 'NCI-H358', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752536': {'line': 'NCI-H358', 'agent': 'DMSO treated'}, 'GSM2752535': {'line': 'NCI-H358', 'agent': 'DMSO treated'}, 'GSM2752534': {'line': 'NCI-H358', 'agent': 'DMSO treated'}, 'GSM2616389': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616388': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616383': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616382': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM2616381': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616380': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616387': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616386': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616385': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM2616384': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2158133': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158132': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158131': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158130': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158137': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158136': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158135': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158134': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158139': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158138': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM1105808': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105809': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105802': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105803': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105800': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105801': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105806': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105807': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105804': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105805': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1277664': {'patient': 'csc1', 'type': 'gastric cancer stem cell'}, 'GSM1277665': {'patient': 'csc1', 'type': 'differentiated cell'}, 'GSM1277662': {'patient': 'csc1', 'type': 'gastric cancer stem cell'}, 'GSM1277663': {'patient': 'csc1', 'type': 'differentiated cell'}, 'GSM1249119': {'type': 'H1', 'mutation': 'no', 'treatment': 'no', 'passage': '40'}, 'GSM2123709': {'with': 'TPRX1', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2287199': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1020214': {'age': '64y', 'type': 'corneal endothelial cells'}, 'GSM2287194': {'pair': 'P4_11', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2287195': {'pair': 'P1_10', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2287196': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287197': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287190': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287191': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287192': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287193': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1940702': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1862656': {'line': 'BeWo', 'condition': 'normal', 'Stage': '16h'}, 'GSM1940703': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1642293': {'tissue': 'Frontal Cortex', 'genotype': 'c9ALS'}, 'GSM1642292': {'tissue': 'Cerebellum', 'genotype': 'c9ALS'}, 'GSM1642291': {'tissue': 'Frontal Cortex', 'genotype': 'c9ALS'}, 'GSM1642290': {'tissue': 'Cerebellum', 'genotype': 'c9ALS'}, 'GSM1233899': {'replicate': '2', 'line': '12878', 'antibody': 'H3K27me3'}, 'GSM1642296': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM1642295': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM1642294': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM1642299': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM1020212': {'age': '31y', 'type': 'corneal endothelial cells'}, 'GSM1681894': {'tissue': 'Lung tumor', 'type': 'immature monocytic myeloid cells (IMMCs)'}, 'GSM2144509': {'status': 'viremic untreated', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144508': {'status': 'viremic untreated', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM1681895': {'tissue': 'Lung tumor', 'type': 'immature monocytic myeloid cells (IMMCs)'}, 'GSM2144503': {'status': 'viremic untreated', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144502': {'status': 'viremic untreated', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144501': {'status': 'viremic untreated', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144500': {'status': 'viremic untreated', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144507': {'status': 'viremic untreated', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144506': {'status': 'viremic untreated', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144505': {'status': 'viremic untreated', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144504': {'status': 'viremic untreated', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM1681897': {'tissue': 'Lung tumor', 'type': 'neutrophils (Neu)'}, 'GSM1940708': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940709': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1505565': {'tissue': 'Esophagus'}, 'GSM1505567': {'tissue': 'Heart'}, 'GSM1505566': {'tissue': 'Esophagus'}, 'GSM1505569': {'tissue': 'Kidney'}, 'GSM1505568': {'tissue': 'Heart'}, 'GSM2816172': {'line': 'H9'}, 'GSM2816173': {'line': 'H9'}, 'GSM2535660': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1123', 'samplename': '1_413UNST_C69', 'seqsite': 'BRI', 'sampleID': 'S13223', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1123', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C69'}, 'GSM2535661': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1124', 'samplename': '1_413UNST_C73', 'seqsite': 'BRI', 'sampleID': 'S13204', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1124', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C73'}, 'GSM2816176': {'line': 'H9'}, 'GSM2816177': {'line': 'H9'}, 'GSM2535664': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1127', 'samplename': '1_413UNST_C91', 'seqsite': 'BRI', 'sampleID': 'S13208', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1127', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C91'}, 'GSM2535665': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1128', 'samplename': '1_413UNST_C06', 'seqsite': 'BRI', 'sampleID': 'S13201', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1128', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C06'}, 'GSM1384784': {'type': 'mobilized peripheral blood cells', 'agent': 'SR1 [500nM]', 'time': '16 hour culture'}, 'GSM1384785': {'type': 'mobilized peripheral blood cells', 'agent': 'UM171[11.9nM]', 'time': '16 hour culture'}, 'GSM2535668': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1132', 'samplename': '1_413UNST_C11', 'seqsite': 'BRI', 'sampleID': 'S13197', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1132', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C11'}, 'GSM1384787': {'type': 'mobilized peripheral blood cells', 'agent': 'UM171[19nM]', 'time': '16 hour culture'}, 'GSM1384780': {'type': 'Cord blood CD34+ cells', 'agent': 'UM171[30.5nM]', 'time': '16 hour culture'}, 'GSM1384781': {'type': 'Cord blood CD34+ cells', 'agent': 'UM171[78.1nM]', 'time': '16 hour culture'}, 'GSM1384782': {'type': 'mobilized peripheral blood cells', 'agent': 'uncultured'}, 'GSM1384783': {'type': 'mobilized peripheral blood cells', 'agent': 'DMSO', 'time': '16 hour culture'}, 'GSM2598425': {'line': 'RPE1', 'sirna': 'SAF-A'}, 'GSM2828599': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 2692', 'type': 'CD8 T cells'}, 'GSM2828598': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3054', 'type': 'CD8 T cells'}, 'GSM1376028': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376029': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2828591': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3045', 'type': 'CD8 T cells'}, 'GSM2828590': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3043', 'type': 'CD8 T cells'}, 'GSM2828593': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3052', 'type': 'CD8 T cells'}, 'GSM2828592': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3047', 'type': 'CD8 T cells'}, 'GSM2828595': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2894', 'type': 'CD8 T cells'}, 'GSM2828594': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2653', 'type': 'CD8 T cells'}, 'GSM1376022': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2828596': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3030', 'type': 'CD8 T cells'}, 'GSM2598427': {'line': 'RPE1', 'sirna': 'SAF-A'}, 'GSM2409871': {'culture': '4 weeks', 'tissue': 'iPSC derived colonic organoids', 'variation': 'APC-/+'}, 'GSM1897346': {'line': 'SUM229', 'type': 'breast cancer cell line'}, 'GSM1281890': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Primary Cells', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'NA', 'device': 'NA', 'lvad': 'NA'}, 'GSM1281891': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Primary Cells', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'NA', 'device': 'NA', 'lvad': 'NA'}, 'GSM2178732': {'ir': '0.245760629147211', 'weight': 'non-obese', 'gender': 'female', 'age': '53', 'bmi': '25.4', 'disease': 't2d', 'l': '0.08', 'h': '0.5', 'id': '109a'}, 'GSM1939621': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'control-siRNA'}, 'GSM1939620': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line T-47D', 'treatment': 'RORC-siRNA'}, 'GSM1939623': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'control-siRNA'}, 'GSM1939622': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'control-siRNA'}, 'GSM1939625': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'RORC-siRNA'}, 'GSM1939624': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'RORC-siRNA'}, 'GSM1939627': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'CMV-empty'}, 'GSM1939626': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'RORC-siRNA'}, 'GSM1939629': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'CMV-empty'}, 'GSM1939628': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'CMV-empty'}, 'GSM2178730': {'ir': '2.29885057471264', 'weight': 'obese', 'gender': 'male', 'age': '51', 'bmi': '33.9', 'disease': 't2d', 'l': '0.09', 'h': '1', 'id': '41a'}, 'GSM2274866': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34301', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10334', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C88', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10334', 'studysiteshort': 'YALE'}, 'GSM2274867': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34305', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10338', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C31', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10338', 'studysiteshort': 'YALE'}, 'GSM2274864': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34298', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10331', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C72', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10331', 'studysiteshort': 'YALE'}, 'GSM2274865': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34300', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10333', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C82', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10333', 'studysiteshort': 'YALE'}, 'GSM2274862': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34295', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10328', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C95', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10328', 'studysiteshort': 'YALE'}, 'GSM2274863': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34296', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10329', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C66', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10329', 'studysiteshort': 'YALE'}, 'GSM2274860': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34292', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10325', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C77', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10325', 'studysiteshort': 'YALE'}, 'GSM2274861': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34293', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10326', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C83', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10326', 'studysiteshort': 'YALE'}, 'GSM2898237': {'donor': 'P4_Healthy', 'point': '46H', 'number': '5k_cells', 'exposure': 'TLR3'}, 'GSM2898236': {'donor': 'P4_Healthy', 'point': '46H', 'number': '5k_cells', 'exposure': 'TLR2'}, 'GSM2898235': {'donor': 'P4_Healthy', 'point': '46H', 'number': '10k_cells', 'exposure': 'TLR8'}, 'GSM2898234': {'donor': 'P4_Healthy', 'point': '46H', 'number': '7.4k_cells', 'exposure': 'no_TLR'}, 'GSM2898233': {'donor': 'P4_Healthy', 'point': '46H', 'number': '5k_cells', 'exposure': 'TLR4'}, 'GSM2274868': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34306', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10339', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C43', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10339', 'studysiteshort': 'YALE'}, 'GSM2274869': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34308', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10341', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C02', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10341', 'studysiteshort': 'YALE'}, 'GSM2231168': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM2231169': {'tissue': 'skin', 'type': 'nonlesional,chronically UV-exposed skin (NS)'}, 'GSM2414800': {'line': 'T84', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414801': {'line': 'V9P', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414802': {'line': 'VACO4S', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414803': {'line': 'VACO5', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2204651': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2687363': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1 + 10 nM Estrogen', 'passage': '7'}, 'GSM1508258': {'tissue': 'Cord blood', 'type': 'CD34 positive cells (CD34)'}, 'GSM1508259': {'tissue': 'Cord blood', 'type': 'burst-forming unit-erythroid cells (BFU-E)'}, 'GSM1369193': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Cortical Specification'}, 'GSM2204658': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1508256': {'tissue': 'Cord blood', 'type': 'CD34 positive cells (CD34)'}, 'GSM1508257': {'tissue': 'Cord blood', 'type': 'CD34 positive cells (CD34)'}, 'GSM2204659': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1296418': {'line': 'HT-29', 'infection': 'Salmonella enteritidis strain SE2472'}, 'GSM2231164': {'tissue': 'skin', 'type': 'nonlesional,chronically UV-exposed skin (NS)'}, 'GSM1296417': {'line': 'HT-29', 'infection': 'none'}, 'GSM2231165': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM2316988': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2231167': {'tissue': 'skin', 'type': 'cuSCC'}, 'GSM2722913': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.23', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.619', 'age': '66', 'tcga_subtype_dif': '-0.536', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.009', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2722911': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.573', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.088', 'age': '76', 'tcga_subtype_dif': '0.185', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.492', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2722917': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': 'NA', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': 'NA', 'age': '51', 'tcga_subtype_dif': 'NA', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': 'NA', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2687360': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1', 'passage': '7'}, 'GSM2722915': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.27', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.176', 'age': '51', 'tcga_subtype_dif': '-0.156', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.208', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2687367': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': 'Vehicle Control', 'passage': '7'}, 'GSM2565159': {'construction': 'PLATE-Seq', 'drug': 'Nilotinib (AMN-107)'}, 'GSM2565158': {'construction': 'PLATE-Seq', 'drug': 'Imatinib'}, 'GSM2565151': {'construction': 'PLATE-Seq', 'drug': 'Mithramycin A'}, 'GSM2565150': {'construction': 'PLATE-Seq', 'drug': 'Vismodegib (GDC-0449)'}, 'GSM2565153': {'construction': 'PLATE-Seq', 'drug': 'Axitinib'}, 'GSM2565152': {'construction': 'PLATE-Seq', 'drug': 'Busulfan'}, 'GSM2565155': {'construction': 'PLATE-Seq', 'drug': 'Romidepsin'}, 'GSM2565154': {'construction': 'PLATE-Seq', 'drug': 'Cladribine'}, 'GSM2565157': {'construction': 'PLATE-Seq', 'drug': 'Omacetaxine / Homoharringtonine'}, 'GSM2565156': {'construction': 'PLATE-Seq', 'drug': 'Palbociclib (PD-0332991) HCl'}, 'GSM2687366': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '10 nM Estrogen', 'passage': '7'}, 'GSM2098479': {'sirna': 'si-RNA Ctr transfected', 'line': 'FT-194', 'type': 'Immortalized Fallopian tube secretory epithelial cell'}, 'GSM2098478': {'sirna': 'si-RNA Ctr transfected', 'line': 'FT-194', 'type': 'Immortalized Fallopian tube secretory epithelial cell'}, 'GSM1678786': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM1678787': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM1678783': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM2098471': {'sirna': 'si-RNA Pax8 transfected', 'line': 'SKOV-3', 'type': 'Human ovarian adenocarcinoma'}, 'GSM2098470': {'sirna': 'si-RNA Ctr transfected', 'line': 'SKOV-3', 'type': 'Human ovarian adenocarcinoma'}, 'GSM2098473': {'sirna': 'si-RNA Pax8 transfected', 'line': 'SKOV-3', 'type': 'Human ovarian adenocarcinoma'}, 'GSM2098472': {'sirna': 'si-RNA Ctr transfected', 'line': 'SKOV-3', 'type': 'Human ovarian adenocarcinoma'}, 'GSM2098475': {'sirna': 'si-RNA Pax8 transfected', 'line': 'SKOV-3', 'type': 'Human ovarian adenocarcinoma'}, 'GSM2098474': {'sirna': 'si-RNA Ctr transfected', 'line': 'SKOV-3', 'type': 'Human ovarian adenocarcinoma'}, 'GSM2098477': {'sirna': 'si-RNA Pax8 transfected', 'line': 'FT-194', 'type': 'Immortalized Fallopian tube secretory epithelial cell'}, 'GSM2098476': {'sirna': 'si-RNA Ctr transfected', 'line': 'FT-194', 'type': 'Immortalized Fallopian tube secretory epithelial cell'}, 'GSM2455902': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2053484': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '47', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#15'}, 'GSM2303128': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Baseline', 'id': 'ACIW009'}, 'GSM2303129': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Baseline', 'id': 'ACJV399'}, 'GSM1505840': {'gender': 'male', 'state': 'unaffected', 'conditions': '11', 'type': 'iPSC-derived neural progenitors', 'id': '03-01'}, 'GSM2303122': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Baseline', 'id': 'ACCG268'}, 'GSM2303123': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Baseline', 'id': 'ACCR015A'}, 'GSM2303126': {'race': 'African American', 'age': '30', 'bmi': '55', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Baseline', 'id': 'ACHY057'}, 'GSM2303127': {'race': 'White', 'age': '56', 'bmi': '26.6', 'disease': 'Non-diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Baseline', 'id': 'ACIB065'}, 'GSM2303124': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Baseline', 'id': 'ACEK420A'}, 'GSM2303125': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Baseline', 'id': 'ACEL337'}, 'GSM2455903': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1505841': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '03-01'}, 'GSM2088050': {'status': 'Dysplasia', 'ratio': '1.15379115216487', 'age': '63', 'years': '45', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '75374210', 'alignment': '46258400'}, 'GSM2374138': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1931337': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM1931336': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM1931335': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM2230416': {'type': 'iPS-derived neural progenitor cells', 'genotype': 'WT'}, 'GSM2284038': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM1931339': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM1931338': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM2455901': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2284039': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'Matrigel'}, 'GSM2142329': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'Rx+sox+34++90+(45+)'}, 'GSM2047249': {'buffer': 'K', 'line': 'HeLa'}, 'GSM2374131': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2142328': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'Rx+sox+34+KIT+Â\\xa0'}, 'GSM2687369': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1 + 10 nM Estrogen', 'passage': '7'}, 'GSM1505847': {'gender': 'male', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '03-04'}, 'GSM2374130': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1290016': {'line': 'IMR90', 'type': 'proliferating'}, 'GSM1290017': {'line': 'IMR90', 'type': 'senescent'}, 'GSM2235680': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': 'Ethanol', 'time': '2h'}, 'GSM1290018': {'line': 'IMR90', 'type': 'senescent'}, 'GSM2230410': {'type': 'iPS-derived neural progenitor cells', 'genotype': 'TRIM-28 KD'}, 'GSM2235683': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'treatment': '10nM R1881', 'time': '2h'}, 'GSM1872850': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1634455': {'type': 'U2OS', 'treatment': 'control'}, 'GSM1634456': {'type': 'U2OS', 'treatment': 'Myc activation (5 hr)'}, 'GSM1872853': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1634450': {'type': 'U2OS', 'treatment': 'Torin-1'}, 'GSM1634451': {'type': 'U2OS', 'treatment': 'Myc activation + Torin-1'}, 'GSM1872856': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1634453': {'type': 'U2OS', 'treatment': 'control'}, 'GSM2643385': {'donor': '4', 'day': '1', 'infection': 'Mock'}, 'GSM2643384': {'donor': '4', 'day': '4', 'infection': 'LPS'}, 'GSM2643386': {'donor': '4', 'day': '4', 'infection': 'Mock'}, 'GSM2643381': {'donor': '4', 'day': '1', 'infection': 'EBOV'}, 'GSM2643380': {'donor': '3', 'day': '4', 'infection': 'Mock'}, 'GSM2643383': {'donor': '4', 'day': '1', 'infection': 'LPS'}, 'GSM2643382': {'donor': '4', 'day': '4', 'infection': 'EBOV'}, 'GSM3465584': {'type': 'hESC line H9, differentiation at Day 0', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 0'}, 'GSM3465585': {'type': 'Epidermal differentitation at Day 7', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 7'}, 'GSM2194478': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194479': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2235687': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'rabbit antiserum against AR', 'treatment': '10nM R1881', 'time': '30min'}, 'GSM3465583': {'type': 'hESC line H9, differentiation at Day 0', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 0'}, 'GSM2194472': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194473': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194470': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194471': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3465588': {'type': 'Epidermal differentitation at Day 14', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 14'}, 'GSM2194477': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194474': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194475': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1704609': {'protocol': '12 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704608': {'protocol': 'Uninfected', 'analysis': 'mRNA-seq', 'strain': 'none', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM2230419': {'antibody': 'H3K9me3 (Active Motif, cat # 39161)', 'region': 'NA', 'type': 'iPS-derived neural progenitor cells', 'age': 'NA'}, 'GSM1704601': {'protocol': '72 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704600': {'protocol': '6 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704603': {'protocol': '12 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704602': {'protocol': 'Uninfected', 'analysis': 'mRNA-seq', 'strain': 'none', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704605': {'protocol': '48 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704604': {'protocol': '24 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM2760241': {'transfection': 'FGFR1(SP-/NLS+)(TK-)', 'type': 'NCC'}, 'GSM1704606': {'protocol': '6 h DENV1 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1946087': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '30min'}, 'GSM1946086': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '30min'}, 'GSM1946085': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19098', 'for': '60min'}, 'GSM1946084': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19098', 'for': '60min'}, 'GSM1946083': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19098', 'for': '60min'}, 'GSM1946082': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19098', 'for': '30min'}, 'GSM1946081': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19098', 'for': '30min'}, 'GSM1946080': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19098', 'for': '30min'}, 'GSM2666128': {'age': 'Day 130', 'well': 'G12', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1946089': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '30min'}, 'GSM1946088': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '30min'}, 'GSM2459076': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.58'}, 'GSM3104698': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104699': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM2416867': {'type': 'Nascent Somites', 'stage': '4.5-5 weeks embryo'}, 'GSM3104692': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104693': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104690': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104691': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104696': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104697': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104694': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104695': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2459075': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '13.08'}, 'GSM1570828': {'line': 'TREx BCBL1-Rta cells', 'antibody': 'none', 'treatment': 'Lytic reactivation'}, 'GSM1570829': {'line': 'TREx BCBL1-Rta cells', 'antibody': 'none', 'treatment': 'Lytic reactivation'}, 'GSM1395779': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395778': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395773': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395772': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395771': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395770': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395777': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395776': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395775': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395774': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2432916': {'strain': 'H1', 'tissue': 'ESCs', 'genotype': 'GATA6-/+'}, 'GSM2871618': {'age': '57', 'tissue': 'Sural nerve', 'number': 'Not applicable', 'Sex': 'Male'}, 'GSM2432914': {'strain': 'H1', 'tissue': 'ESCs', 'genotype': 'wild type'}, 'GSM2432915': {'strain': 'H1', 'tissue': 'ESCs', 'genotype': 'GATA6-/+'}, 'GSM2432913': {'strain': 'H1', 'tissue': 'ESCs', 'genotype': 'wild type'}, 'GSM2871619': {'age': '51', 'tissue': 'Sural nerve', 'number': 'Not applicable', 'Sex': 'Male'}, 'GSM2643521': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '0.1% DMSO', 'time': '24 h'}, 'GSM2643520': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '0.1% DMSO', 'time': '24 h'}, 'GSM2643523': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '0.1% DMSO', 'time': '24 h'}, 'GSM2643522': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '0.1% DMSO', 'time': '24 h'}, 'GSM2562524': {'gender': 'female', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2579341': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579340': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579343': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579342': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579345': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579344': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579347': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579346': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579349': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579348': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM821036': {'line': 'GM17207', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM821037': {'line': 'GM17207', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM821034': {'line': 'GM17189', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM821035': {'line': 'GM17189', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM821032': {'line': 'GM17106', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM821033': {'line': 'GM17106', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM2816064': {'line': 'H9'}, 'GSM821031': {'line': 'GM10860', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM821038': {'line': 'GM17220', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM821039': {'line': 'GM17220', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM1412708': {'gender': 'Male', 'tissue': 'FSHD2 Muscle biopsy'}, 'GSM1412709': {'gender': 'Male', 'tissue': 'FSHD2 Muscle biopsy'}, 'GSM1412706': {'gender': 'Female', 'tissue': 'Control Muscle biopsy'}, 'GSM1412707': {'gender': 'Male', 'tissue': 'FSHD1 Muscle biopsy'}, 'GSM1412704': {'gender': 'Female', 'tissue': 'Control Muscle biopsy'}, 'GSM1412705': {'gender': 'Female', 'tissue': 'Control Muscle biopsy'}, 'GSM1412702': {'gender': 'Male', 'tissue': 'Control Muscle biopsy'}, 'GSM1412703': {'gender': 'Female', 'tissue': 'Control Muscle biopsy'}, 'GSM1412700': {'gender': 'Male', 'tissue': 'Control Muscle biopsy'}, 'GSM1412701': {'gender': 'Male', 'tissue': 'Control Muscle biopsy'}, 'GSM1077451': {'tissue': 'corneal stroma'}, 'GSM1077450': {'tissue': 'corneal endothelial cells culture'}, 'GSM2858923': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'PBS'}, 'GSM2858922': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'PBS'}, 'GSM2193060': {'sirna': 'PAX8 siRNA pool', 'line': 'JHOS4', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15403, s15404, s15405, Ambion'}, 'GSM2858920': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'PBS'}, 'GSM2858927': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'A2M'}, 'GSM2858926': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'A2M'}, 'GSM2858925': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'A2M'}, 'GSM651551': {'antibody': 'none', 'condition': 'CD36 WT'}, 'GSM2858929': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'A2M'}, 'GSM2858928': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'A2M'}, 'GSM1866091': {'line': 'Gliobmastoma cell line'}, 'GSM1866090': {'line': 'Gliobmastoma cell line'}, 'GSM1866093': {'line': 'Gliobmastoma cell line'}, 'GSM1866092': {'line': 'Gliobmastoma cell line'}, 'GSM1866095': {'line': 'Gliobmastoma cell line'}, 'GSM1866094': {'line': 'Gliobmastoma cell line'}, 'GSM1866097': {'line': 'Gliobmastoma cell line'}, 'GSM1866096': {'line': 'Gliobmastoma cell line'}, 'GSM2357930': {'condition': 'HDM+Microvesicle treated'}, 'GSM2357931': {'condition': 'Control'}, 'GSM2193061': {'sirna': 'non-transfection control', 'line': 'FT194', 'type': 'Immortalized fallopian tube secretory cell'}, 'GSM2183600': {'line': 'HepG2', 'treatment': '5 µM ACF'}, 'GSM1647029': {'illumina_index': '2', 'point': '18', 'batch': '7', 'agent': 'Salm', 'rin': '10', 'individual': 'M372'}, 'GSM2412773': {'status': 'positive', 'gender': 'female', 'agent': 'mock-infected', 'culture': '3-dimensional human intestinal enteroid'}, 'GSM2412774': {'status': 'positive', 'gender': 'female', 'agent': 'mock-infected', 'culture': '3-dimensional human intestinal enteroid'}, 'GSM1832776': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM2412776': {'status': 'positive', 'gender': 'female', 'agent': 'human rotavirus (strain Ito)', 'culture': '3-dimensional human intestinal enteroid'}, 'GSM1647023': {'illumina_index': '13', 'point': '18', 'batch': '6', 'agent': 'Staph', 'rin': '9.7', 'individual': 'M372'}, 'GSM1647022': {'illumina_index': '12', 'point': '48', 'batch': '6', 'agent': 'GC', 'rin': '5.7', 'individual': 'M374'}, 'GSM1647021': {'illumina_index': '7', 'point': '48', 'batch': '6', 'agent': 'GC', 'rin': '9.2', 'individual': 'M376'}, 'GSM651557': {'condition': 'BRG1 RNAi KD'}, 'GSM1647027': {'illumina_index': '18', 'point': '18', 'batch': '6', 'agent': 'Staph', 'rin': '8.2', 'individual': 'M377'}, 'GSM1647026': {'illumina_index': '16', 'point': '4', 'batch': '6', 'agent': 'Rv+', 'rin': '9.2', 'individual': 'M373'}, 'GSM1647025': {'illumina_index': '15', 'point': '48', 'batch': '6', 'agent': 'none', 'rin': '2.1', 'individual': 'M375'}, 'GSM1647024': {'illumina_index': '14', 'point': '48', 'batch': '6', 'agent': 'none', 'rin': '8', 'individual': 'M372'}, 'GSM2193062': {'sirna': 'non-targeting siRNA control', 'line': 'FT194', 'type': 'Immortalized fallopian tube secretory cell'}, 'GSM2562522': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2108488': {'stages': 'myotube nucleus'}, 'GSM2108489': {'stages': 'myotube nucleus'}, 'GSM2108482': {'stages': 'myotube nucleus'}, 'GSM2108483': {'stages': 'myotube nucleus'}, 'GSM2108480': {'stages': 'myotube nucleus'}, 'GSM2108481': {'stages': 'myotube nucleus'}, 'GSM2108486': {'stages': 'myotube nucleus'}, 'GSM2108487': {'stages': 'myotube nucleus'}, 'GSM2108484': {'stages': 'myotube nucleus'}, 'GSM2108485': {'stages': 'myotube nucleus'}, 'GSM2575318': {'line': 'WM989', 'subclone': 'H1', 'condition': 'NoDrug'}, 'GSM2575319': {'line': 'WM989', 'subclone': 'H3', 'condition': 'Drug'}, 'GSM2325078': {'line': 'HEK293', 'variation': 'ADAR2 overexpression'}, 'GSM2325079': {'line': 'HEK293', 'variation': 'ADAR1 overexpression'}, 'GSM1517601': {'line': 'CyT49', 'type': 'hESC-derived liver progenitors'}, 'GSM1517600': {'line': 'CyT49', 'type': 'hESC-derived liver progenitors'}, 'GSM2325074': {'line': 'HEK293', 'variation': 'wild type'}, 'GSM2575313': {'line': 'WM989', 'subclone': 'F2', 'condition': 'Drug'}, 'GSM2325076': {'line': 'HEK293', 'variation': 'wild type'}, 'GSM2325077': {'line': 'HEK293', 'variation': 'ADAR1 overexpression'}, 'GSM2575316': {'line': 'WM989', 'subclone': 'G3', 'condition': 'NoDrug'}, 'GSM2575317': {'line': 'WM989', 'subclone': 'H1', 'condition': 'Drug'}, 'GSM2575314': {'line': 'WM989', 'subclone': 'F2', 'condition': 'NoDrug'}, 'GSM2325073': {'line': 'HEK293', 'variation': 'wild type'}, 'GSM2085718': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085719': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085716': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085717': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085714': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085715': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085712': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085713': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085710': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085711': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2356903': {'type': '3-dimensional sphere', 'mutations': 'KCST'}, 'GSM1143674': {'with': '5μM Nutlin-3a for 24hr', 'line': 'MCF7', 'type': 'breast cancer cells'}, 'GSM1143673': {'with': 'none (unstimluated (NS) control)', 'line': 'MCF7', 'type': 'breast cancer cells'}, 'GSM1143672': {'with': 'none (unstimluated (NS) control)', 'line': 'MCF7', 'type': 'breast cancer cells'}, 'GSM2242166': {'type': 'IMR90 iPSC derived cardiac progenitor cells', 'condition': 'Standard gravity', 'stage': 'Day 8 differentiated cells'}, 'GSM2242167': {'type': 'IMR90 iPSC derived cardiac progenitor cells', 'condition': 'Standard gravity', 'stage': 'Day 8 differentiated cells'}, 'GSM2242165': {'type': 'IMR90 iPSC derived cardiac progenitor cells', 'condition': 'Standard gravity', 'stage': 'Day 8 differentiated cells'}, 'GSM2242168': {'type': 'IMR90 iPSC derived cardiac progenitor cells', 'condition': 'Microgravity', 'stage': 'Day 8 differentiated cells'}, 'GSM2242169': {'type': 'IMR90 iPSC derived cardiac progenitor cells', 'condition': 'Microgravity', 'stage': 'Day 8 differentiated cells'}, 'GSM1901036': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'JQ1 and PD0325901'}, 'GSM1976374': {'line': 'Caki2-PBRM1', 'variation': 'stable expression of PBRM1', 'construct': 'doxycycline-inducible lentiviral vector bearing PBRM1'}, 'GSM1976375': {'line': 'Caki2-PBRM1', 'variation': 'stable expression of PBRM1', 'construct': 'doxycycline-inducible lentiviral vector bearing PBRM1'}, 'GSM1976372': {'line': 'Caki2-empty vector', 'variation': 'No PBRM1 expression', 'construct': 'empty doxycycline-inducible lentiviral vector'}, 'GSM1976373': {'line': 'Caki2-PBRM1', 'variation': 'stable expression of PBRM1', 'construct': 'doxycycline-inducible lentiviral vector bearing PBRM1'}, 'GSM1976370': {'line': 'Caki2-empty vector', 'variation': 'No PBRM1 expression', 'construct': 'empty doxycycline-inducible lentiviral vector'}, 'GSM1976371': {'line': 'Caki2-empty vector', 'variation': 'No PBRM1 expression', 'construct': 'empty doxycycline-inducible lentiviral vector'}, 'GSM715475': {'tissue': 'synovial sarcoma', 'method': 'FFPE'}, 'GSM2259878': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM1383546': {'line': 'TKO', 'type': 'Multiple myeloma', 'phenotype': 'Low levels of MMSET', 'passage': '15-20'}, 'GSM1383545': {'line': 'TKO', 'type': 'Multiple myeloma', 'phenotype': 'Low levels of MMSET', 'passage': '15-20'}, 'GSM1105777': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105770': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105771': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1383541': {'line': 'TKO', 'type': 'Multiple myeloma', 'phenotype': 'Low levels of MMSET', 'passage': '15-20'}, 'GSM1383540': {'line': 'KMS11', 'type': 'Multiple myeloma', 'phenotype': 'High levels of MMSET', 'passage': '15-20'}, 'GSM2259870': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259871': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259872': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259873': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259874': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259875': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259876': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259877': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2390768': {'disease': 'Healthy Control'}, 'GSM2390769': {'disease': 'Healthy Control'}, 'GSM2390764': {'disease': 'Healthy Control'}, 'GSM2390765': {'disease': 'Healthy Control'}, 'GSM2390766': {'disease': 'Healthy Control'}, 'GSM2390767': {'disease': 'Healthy Control'}, 'GSM2390760': {'disease': 'Healthy Control'}, 'GSM2390761': {'disease': 'Healthy Control'}, 'GSM2390762': {'disease': 'Healthy Control'}, 'GSM2390763': {'disease': 'Healthy Control'}, 'GSM2141626': {'individual': 'EU212', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1968729': {'line': 'HSB-2', 'variation': 'parental cell line'}, 'GSM2367469': {'point': '0h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'TGACCA', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'mock'}, 'GSM2367468': {'point': '2h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'CAGATC', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'mock'}, 'GSM2048797': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048796': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048791': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048790': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048793': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048792': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2476834': {'infection': 'NIG ZIKV infected cells for 12h'}, 'GSM2048799': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048798': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2367467': {'point': '1h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'ACAGTG', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'mock'}, 'GSM2367466': {'point': '0h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'CGATGT', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'mock'}, 'GSM1901032': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'JQ1'}, 'GSM2176018': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1649154': {'culture': 'with stromal cells', 'line': 'ALL leukemia cell line Nalm6', 'replicate': '1', 'time': '24 h'}, 'GSM2176019': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2287028': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2210574': {'line': 'A375', 'treatment': 'Vemurafenib+JQ1'}, 'GSM2287029': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1071279': {'antibody': 'none', 'line': 'LNCaP', 'tissue': 'Prostate adenocarcinoma', 'type': 'Androgen-sensitive', 'agent': 'vehicle, control'}, 'GSM1071278': {'antibody': 'none', 'line': 'LNCaP', 'tissue': 'Prostate adenocarcinoma', 'type': 'Androgen-sensitive', 'agent': 'vehicle, control'}, 'GSM2248139': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248138': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248133': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248132': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248131': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248130': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248137': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248136': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248135': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248134': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM3594406': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594407': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594404': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594405': {'cluster': '6', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594402': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594403': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594400': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594401': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2176012': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM3594408': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594409': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2176013': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1552789': {'status': 'mutated', 'subtype': 'RARS', 'type': 'bone marrow CD34+ cells'}, 'GSM2427816': {'type': 'iPSC-derived neurons'}, 'GSM2630318': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630314': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630315': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630316': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630317': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630310': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630311': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630312': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630313': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2410321': {'antibody': 'anti-FLAG(M2) (Sigma-1804, Lot# SLBK1346V)', 'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'WT EBF3-FLAG'}, 'GSM2410320': {'antibody': 'anti-FLAG(M2) (Sigma-1804, Lot# SLBK1346V)', 'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'p.P177L EBF3-FLAG'}, 'GSM2410323': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'none'}, 'GSM2410322': {'antibody': 'anti-FLAG(M2) (Sigma-1804, Lot# SLBK1346V)', 'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'p.P177L EBF3-FLAG'}, 'GSM2410325': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'none'}, 'GSM2410324': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'none'}, 'GSM2410327': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'WT EBF3'}, 'GSM2410326': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'WT EBF3'}, 'GSM2410329': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'p.P177L EBF3'}, 'GSM2410328': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'WT EBF3'}, 'GSM2464780': {'status': 'Colorectal cancer', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2210570': {'line': 'A375', 'treatment': 'JQ1'}, 'GSM2302112': {'timepoint': 'Pre', 'id': '47', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM1853591': {'line': 'HeLa', 'treatment': '20nM RRP6/ 20nM DIS3 siRNA - Dharmacon'}, 'GSM2107868': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107865': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107864': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107867': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107866': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107861': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107860': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107863': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107862': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM1641263': {'type': 'K562 cell line'}, 'GSM1641262': {'type': 'K562 cell line'}, 'GSM1641261': {'type': 'PBMC'}, 'GSM1641260': {'type': 'PBMC'}, 'GSM1641267': {'type': 'K562 cell line'}, 'GSM1641266': {'type': 'K562 cell line'}, 'GSM1641265': {'type': 'K562 cell line'}, 'GSM1641264': {'type': 'K562 cell line'}, 'GSM1641269': {'type': 'K562 cell line'}, 'GSM1641268': {'type': 'K562 cell line'}, 'GSM2649909': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649908': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649901': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649900': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649903': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2456029': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2649905': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649904': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649907': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649906': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM957429': {'sample': 'GM11992', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1362'}, 'GSM957428': {'sample': 'GM11991', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1362'}, 'GSM957427': {'sample': 'GM11990', 'protocol': 'non-directional', 'relation': 'son', 'family': '1362'}, 'GSM957426': {'sample': 'GM11989', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1362'}, 'GSM957425': {'sample': 'GM11988', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1362'}, 'GSM957424': {'sample': 'GM11987', 'protocol': 'non-directional', 'relation': 'son', 'family': '1362'}, 'GSM957423': {'sample': 'GM11986', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1362'}, 'GSM957422': {'sample': 'GM11985', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1362'}, 'GSM957421': {'sample': 'GM11984', 'protocol': 'non-directional', 'relation': 'son', 'family': '1362'}, 'GSM957420': {'sample': 'GM11983', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1362'}, 'GSM2316634': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316635': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316636': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316637': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316630': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316631': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316632': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316633': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316638': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316639': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2360257': {'type': 'iMGL', 'treatment': 'None'}, 'GSM1564663': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1564662': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2142253': {'type': 'CD63+ sorted cells'}, 'GSM1564660': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '8.3', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2142255': {'type': 'live sorted cells', 'library': '2'}, 'GSM1564666': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '2.5', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564665': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '2.4', 'with': 'DHT (dihydrotestosterone)'}, 'GSM2142256': {'type': 'CD13+ sorted cells'}, 'GSM2142259': {'type': 'live sorted cells', 'library': '2'}, 'GSM2142258': {'type': 'live sorted cells', 'library': '1'}, 'GSM1564669': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '7.3', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564668': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '5.7', 'with': 'DHT (dihydrotestosterone)'}, 'GSM2232709': {'tissue': 'Peripheral blood', 'genotype': 'ASXL2 mutation'}, 'GSM2232708': {'tissue': 'Bone marrow', 'genotype': 'ASXL1 mutation', 'markers': 'ckit+ScaI+'}, 'GSM2453903': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2232705': {'tissue': 'Bone marrow', 'genotype': 'wildtype', 'markers': 'ckit+ScaI+'}, 'GSM2232704': {'tissue': 'Bone marrow', 'genotype': 'ASXL2 mutation', 'markers': 'ckit+ScaI+'}, 'GSM2232707': {'tissue': 'Bone marrow', 'genotype': 'ASXL2 mutation', 'markers': 'ckit+ScaI+'}, 'GSM2232706': {'tissue': 'Bone marrow', 'genotype': 'wildtype', 'markers': 'ckit+ScaI+'}, 'GSM2232701': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM2232700': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM2232703': {'tissue': 'Bone marrow', 'genotype': 'ASXL1 mutation', 'markers': 'ckit+ScaI+'}, 'GSM2232702': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM2141679': {'individual': 'EU270', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2303255': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2144091': {'line': 'HCC827', 'tissue': 'in vitro cultured lung cancer cell line', 'transfection': 'pcDNA3.1-ZEB1', 'passage': '29'}, 'GSM2144090': {'line': 'HCC827', 'tissue': 'in vitro cultured lung cancer cell line', 'transfection': 'pcDNA3.1-ZEB1', 'passage': '29'}, 'GSM1890689': {'line': 'HT-29', 'treatment': 'shRNA BRD4 (7)'}, 'GSM1890688': {'line': 'HT-29', 'treatment': 'shRNA BRD4 (7)'}, 'GSM1890681': {'line': 'HCT116', 'treatment': 'shRNA BRD4 (7)'}, 'GSM1890680': {'line': 'HCT116', 'treatment': 'shRNA BRD4 (7)'}, 'GSM1890683': {'line': 'HCT116', 'treatment': 'shRNA BRD4 (8)'}, 'GSM1890682': {'line': 'HCT116', 'treatment': 'shRNA BRD4 (8)'}, 'GSM1890685': {'line': 'HT-29', 'treatment': 'NTC'}, 'GSM1890684': {'line': 'HCT116', 'treatment': 'shRNA BRD4 (8)'}, 'GSM1890687': {'line': 'HT-29', 'treatment': 'NTC'}, 'GSM1890686': {'line': 'HT-29', 'treatment': 'NTC'}, 'GSM1084150': {'with': 'myc-tagged NSUN2 C271A construct', 'line': 'HEK293', 'type': 'Embryonic kidney cells', 'antibody': 'anti-myc antibody'}, 'GSM1084151': {'with': 'myc-tagged NSUN2 C271A construct', 'line': 'HEK293', 'type': 'Embryonic kidney cells', 'antibody': 'anti-myc antibody'}, 'GSM3189195': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.645373', 'percentaligned': '0.9644683', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '19.300424', 'original': 'Control'}, 'GSM1084153': {'with': 'myc-tagged NSUN2 C271A construct', 'line': 'HEK293', 'type': 'Embryonic kidney cells', 'antibody': 'anti-myc antibody'}, 'GSM2536418': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'Untreated'}, 'GSM2536419': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'Untreated'}, 'GSM2536414': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36γ'}, 'GSM2536415': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36γ'}, 'GSM2536416': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36γ'}, 'GSM2536417': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'Untreated'}, 'GSM2536410': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36α'}, 'GSM2536411': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36β'}, 'GSM2536412': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36β'}, 'GSM2536413': {'passages': 'passage 2', 'type': 'keratinocytes', 'agent': 'IL-36β'}, 'GSM3189192': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'Yes', 'mediancvcoverage': '0.524506', 'percentaligned': '0.959132539', 'Sex': 'M', 'nl63': 'No', 'libcounts': '18.821479', 'original': 'Control'}, 'GSM2095447': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 20'}, 'GSM2095446': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 20'}, 'GSM2095445': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 20'}, 'GSM2095444': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 20'}, 'GSM2095443': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 20'}, 'GSM2095442': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 20'}, 'GSM2095441': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 20'}, 'GSM2419228': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '10 hours'}, 'GSM2419227': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '8 hours'}, 'GSM2419226': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '5 hours'}, 'GSM2419225': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '2 hours'}, 'GSM2419224': {'line': 'MRC5VA', 'treatment': 'Untreated', 'time': '0 hours'}, 'GSM2419223': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '40 minutes'}, 'GSM2419222': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '25 minutes'}, 'GSM2419221': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '10 minutes'}, 'GSM2095448': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 20'}, 'GSM1585205': {'type': 'RNA-seq', 'genotype': 'wt', 'treatment': 'l-leucine'}, 'GSM2212642': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2212643': {'gender': 'male', 'condition': 'control'}, 'GSM2212640': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2212641': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2212646': {'gender': 'female', 'condition': 'control'}, 'GSM2212647': {'gender': 'female', 'condition': 'control'}, 'GSM2394458': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siSCR, control, 4h', 'passage': '6 to 10'}, 'GSM2394459': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siSCR, control, 4h', 'passage': '6 to 10'}, 'GSM2394456': {'individual': 'donor1', 'type': 'HAEC', 'treatment': 'siSCR, 4h', 'passage': '6 to 10'}, 'GSM2394457': {'individual': 'donor2', 'type': 'HAEC', 'treatment': 'siSCR, 4h', 'passage': '6 to 10'}, 'GSM2394454': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siIRF1, TNFa, 4h', 'passage': '6 to 10'}, 'GSM2394455': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siIRF1, TNFa, 4h', 'passage': '6 to 10'}, 'GSM2394452': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siIRF1, control, 4h', 'passage': '6 to 10'}, 'GSM2394453': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siIRF1, control, 4h', 'passage': '6 to 10'}, 'GSM2394450': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siERG, TNFa, 4h', 'passage': '6 to 10'}, 'GSM2394451': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siERG, TNFa, 4h', 'passage': '6 to 10'}, 'GSM2712764': {'line': 'HCT116', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'treatment': 'DMSO', 'disease': 'colorectal carcinoma'}, 'GSM2712765': {'line': 'HCT116', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'treatment': 'largazole 75nM', 'disease': 'colorectal carcinoma'}, 'GSM2265627': {'antibody': 'RNA pol II (CST, 14958)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2051137': {'line': 'SH-SY5Y', 'treatment': 'RA-NBM'}, 'GSM2635267': {'line': 'K562'}, 'GSM2051135': {'line': 'SH-SY5Y', 'treatment': 'RA-NBM'}, 'GSM2051134': {'line': 'SH-SY5Y', 'treatment': '5% FBS'}, 'GSM2051133': {'line': 'SH-SY5Y', 'treatment': '5% FBS'}, 'GSM2051132': {'line': 'SH-SY5Y', 'treatment': '5% FBS'}, 'GSM2051131': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 2c'}, 'GSM2635266': {'line': 'K562'}, 'GSM2635265': {'line': 'K562'}, 'GSM2635264': {'line': 'K562'}, 'GSM2262854': {'protocol': 'BG and 5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262855': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2331228': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-LPS'}, 'GSM2331229': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-LPS'}, 'GSM2339437': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': '-'}, 'GSM2339436': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2339431': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2635261': {'line': 'K562'}, 'GSM2339433': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2339432': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2331220': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331221': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331222': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-treatment Pre-LPS'}, 'GSM2262857': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2339439': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': '-'}, 'GSM2339438': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': '-'}, 'GSM2331226': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-LPS'}, 'GSM2331227': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-LPS'}, 'GSM2580319': {'with': 'Control', 'type': 'Human cerebral organoids', 'timepoint': '3 days of post infection'}, 'GSM1980458': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980459': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980456': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980457': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980454': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980455': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980452': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980453': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980450': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980451': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1546362': {'status': 'Non-proliferating (confluent), undifferentiated', 'antibody': 'anti-H2B (glcnac S112) Abcam ab130951', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546363': {'status': 'Non-proliferating, differentiated for 1 day', 'antibody': 'anti-H2B (glcnac S112) Abcam ab130951', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546360': {'line': 'MDA-MB-231', 'variation': 'S473D-KAP1'}, 'GSM1546361': {'status': 'Proliferating, undifferentiated', 'antibody': 'anti-H2B (glcnac S112) Abcam ab130951', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546366': {'status': 'Proliferating, undifferentiated', 'antibody': 'anti-Lamin A/C Santa Cruz sc7292', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546367': {'status': 'Non-proliferating (confluent), undifferentiated', 'antibody': 'anti-Lamin A/C Santa Cruz sc7292', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546364': {'status': 'Non-proliferating, differentiated for 3 days', 'antibody': 'anti-H2B (glcnac S112) Abcam ab130951', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546365': {'status': 'Non-proliferating, differentiated for 9 days', 'antibody': 'anti-H2B (glcnac S112) Abcam ab130951', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546368': {'status': 'Non-proliferating, differentiated for 1 day', 'antibody': 'anti-Lamin A/C Santa Cruz sc7292', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1546369': {'status': 'Non-proliferating, differentiated for 3 days', 'antibody': 'anti-Lamin A/C Santa Cruz sc7292', 'passages': 'Cells in passage 5-7', 'type': 'pre-adipocytes'}, 'GSM1276904': {'score': '8.9', 'sequence': 'CAGATC', 'targeted': 'RNPS1', 'number': '7', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2302057': {'timepoint': 'Post', 'id': '19', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM1323647': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT3', 'site': 'Moffitt Cancer Center', 'prepsa': 'NA', 'reads': '399,472,616', 'tissue': 'prostate', 'u': '119', 'mapped': '63.0%', 'id': 'MCC-PT081', 'bcr': '0'}, 'GSM1323648': {'tgleason': '6', 'race': 'W', 'score': '336', 'sms': 'Positive', 'pstage': 'pT2', 'site': 'Moffitt Cancer Center', 'prepsa': '7', 'reads': '15,194,156', 'tissue': 'prostate', 'u': '114', 'mapped': '65.8%', 'id': 'MCC-PT127', 'bcr': '0'}, 'GSM1323649': {'tgleason': '6', 'race': 'W', 'score': '336', 'sms': 'Negative', 'pstage': 'pT2', 'site': 'Moffitt Cancer Center', 'prepsa': '1.8', 'reads': '16,221,792', 'tissue': 'prostate', 'u': '87', 'mapped': '64.6%', 'id': 'MCC-PT168', 'bcr': '0'}, 'GSM2153194': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153195': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2099009': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'FPAH', 'passage': 'P4'}, 'GSM2153197': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153190': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153191': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153192': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153193': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2099003': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'FPAH', 'passage': 'P6'}, 'GSM2099002': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'FPAH', 'passage': 'P6'}, 'GSM2099001': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'FPAH', 'passage': 'P6'}, 'GSM2099000': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'unaffected mutation carrier', 'passage': 'P6'}, 'GSM2153198': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153199': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2099005': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'unaffected mutation carrier', 'passage': 'P4'}, 'GSM2099004': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'wild type control from community', 'passage': 'P4'}, 'GSM1267847': {'subtype': 'Cytoplasmic Poly(A) RNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM2674863': {'age': '6-8', 'site': 'subcutaneous', 'Sex': 'Female', 'volume': '100', 'strain': 'FOX CHASE SCID C.B-17/lcr-scid/scidJcl', 'replicate': '1', 'laboratory': 'KYOU', 'line': 'KhES-1', 'sex': 'Male'}, 'GSM1820976': {'line': 'TC-797 (Toretsky et al. 2003)', 'type': 'NMC', 'treatment': 'JQ1 was not added to the medium'}, 'GSM1820977': {'line': 'TC-797 (Toretsky et al. 2003)', 'type': 'NMC', 'treatment': '1h -incubation time period with JQ1 ( final concentration of 500 nM)'}, 'GSM1267843': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-Mutant (65KDa Isoform)'}, 'GSM1267842': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1267841': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-Mutant (65KDa Isoform)'}, 'GSM2674865': {'age': '6-8', 'site': 'subcutaneous', 'Sex': 'Female', 'volume': '100', 'strain': 'FOX CHASE SCID C.B-17/lcr-scid/scidJcl', 'replicate': '3', 'laboratory': 'KYOU', 'line': 'KhES-1', 'sex': 'Male'}, 'GSM2674868': {'age': '6-8', 'site': 'subcutaneous', 'Sex': 'Female', 'volume': '100', 'strain': 'FOX CHASE SCID C.B-17/lcr-scid/scidJcl', 'replicate': '2', 'laboratory': 'KYOU', 'line': 'Tig108 4f3', 'sex': 'Male'}, 'GSM2674869': {'age': '8-10', 'site': 'back of the neck or caudal flank near the hip', 'Sex': 'Female', 'volume': '100', 'strain': 'NOD.Cg-PrkdcscidIl2rgtm1Wjl/SzJ', 'replicate': '1', 'laboratory': 'MCRI', 'line': 'HES3/MIXL1 GFP/w', 'sex': 'Female'}, 'GSM1820978': {'line': 'TC-797 (Toretsky et al. 2003)', 'type': 'NMC', 'treatment': '2h30min-incubation time period with JQ1 ( final concentration of 500 nM)'}, 'GSM1820979': {'line': 'TC-797 (Toretsky et al. 2003)', 'type': 'NMC', 'treatment': '4h - incubation time period with JQ1 ( final concentration of 500 nM)'}, 'GSM1267849': {'subtype': 'Cytoplasmic Poly(A) RNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM1267848': {'subtype': 'Cytoplasmic Poly(A) RNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM2092929': {'bin': '8', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092928': {'bin': '8', 'group': 'case (TB progressor)', 'qft': 'indeterminate', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': '20', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092921': {'bin': '3', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': '18.2', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092920': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092923': {'bin': '3', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092922': {'bin': '3', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092925': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092924': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'negative', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': '18', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092927': {'bin': '8', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092926': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1663102': {'antibody': 'N/A', 'treatment': '5day DOX', 'integration': 'chr8'}, 'GSM2584565': {'duration': '1h', 'with': 'TNFa', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584564': {'duration': '1h', 'with': 'TNFa', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584567': {'duration': '4h', 'with': 'TNFa', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584566': {'duration': '4h', 'with': 'TNFa', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584561': {'duration': '1h', 'with': 'TGF1b', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584560': {'duration': '1h', 'with': 'TGF1b', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584563': {'duration': '4h', 'with': 'TGF1b', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2584562': {'duration': '4h', 'with': 'TGF1b', 'type': 'HEK293 delta-RAF1:ER cells'}, 'GSM2326897': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'African American', 'Sex': 'Female'}, 'GSM2326896': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Female'}, 'GSM2326895': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Female'}, 'GSM2326894': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Female'}, 'GSM2326893': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2326892': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'African American', 'Sex': 'Female'}, 'GSM2326891': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2326890': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2521664': {'line': 'HEK293', 'protocol': \"3'READS+\", 'condition': 'knockdown'}, 'GSM2521663': {'line': 'HEK293', 'protocol': \"3'READS+\", 'condition': 'knockdown control'}, 'GSM2521662': {'line': 'HEK293', 'protocol': \"3'READS\", 'condition': 'knockdown'}, 'GSM2326899': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'African American', 'Sex': 'Male'}, 'GSM2326898': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'African American', 'Sex': 'Male'}, 'GSM2225808': {'tissue': 'pancreas'}, 'GSM2225809': {'tissue': 'pancreas'}, 'GSM2225802': {'tissue': 'pancreas'}, 'GSM2225803': {'tissue': 'pancreas'}, 'GSM2225800': {'tissue': 'pancreas'}, 'GSM2225801': {'tissue': 'pancreas'}, 'GSM2225806': {'tissue': 'pancreas'}, 'GSM2225807': {'tissue': 'pancreas'}, 'GSM2225804': {'tissue': 'pancreas'}, 'GSM2225805': {'tissue': 'pancreas'}, 'GSM1693118': {'line': 'SK-N-SH', 'type': 'human neuroblastoma cells', 'clone': 'control', 'treatment': 'Untreated'}, 'GSM1693119': {'line': 'SK-N-SH', 'type': 'human neuroblastoma cells', 'clone': 'control', 'treatment': '1uM Retinoic acid'}, 'GSM1816176': {'line': 'IMR90'}, 'GSM2392031': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2158367': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2397390': {'status': 'RA patient', 'group': 'Established RA', 'treatment': 'YES'}, 'GSM2397391': {'status': 'RA patient', 'group': 'Established RA', 'treatment': 'YES'}, 'GSM3301494': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM2394849': {'status': 'XLA Patient', 'age': '12', 'type': 'CD14-Positive Monocytes cells'}, 'GSM2287679': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287678': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1395489': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395488': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1322939': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322938': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1395485': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395484': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395487': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395486': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395481': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395480': {'subtype': 'Pro+Neu', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395483': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395482': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1906388': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq', 'treatment': 'Cells grown in fetal bovine serum + 0.25 mM 5-ethynyl uridine (Life Technologies, E-10345) for 5h', 'passage': '6-13'}, 'GSM1906389': {'line': 'IMR90hTert', 'experiment': 'neusRNA_seq', 'treatment': 'Cells grown in fetal bovine serum + 0.25 mM 5-ethynyl uridine (Life Technologies, E-10345) for 5h', 'passage': '6-13'}, 'GSM1663104': {'antibody': 'N/A', 'treatment': '5day DOX', 'integration': 'chr12'}, 'GSM2287671': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM3301498': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Dia'}, 'GSM1919389': {'status': 'Treatment-naïve', 'patient': 'Patient 21', 'tissue': 'Colonic mucosa', 'type': 'Whole tissue', 'diagnosis': 'normal'}, 'GSM1663105': {'antibody': 'none', 'treatment': 'No DOX', 'integration': 'chr8'}, 'GSM1015448': {'line': 'BCBL-1', 'antibody': 'anti-Argonaute 2A8', 'virus': 'KSHV'}, 'GSM1015449': {'line': 'BC-3', 'antibody': 'anti-Argonaute 2A8', 'virus': 'KSHV'}, 'GSM2193043': {'sirna': 'non-transfection control', 'line': 'Kurmomachi', 'type': 'High grade serous ovarian carcinoma'}, 'GSM2109463': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109462': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109461': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109460': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM1868778': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868779': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2277366': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM1868772': {'type': 'Memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868773': {'type': 'Central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868770': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2493828': {'tissue': 'Dental pulp', 'treatment': 'recombinant human Jagged1/Fc immobilization'}, 'GSM1868776': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868777': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868774': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868775': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2493827': {'tissue': 'Dental pulp', 'treatment': 'human Fc immobilization'}, 'GSM2277369': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2385664': {'line': 'NHA RAS', 'type': 'glioblastoma stem cell'}, 'GSM1663109': {'antibody': 'H3K27me3 (Active Motif 61017)', 'treatment': 'No DOX', 'integration': 'chr8'}, 'GSM2666191': {'age': 'Day 130', 'well': 'E12', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2136549': {'line': 'SHEP Tet-21/N neuroblastoma cell line', 'protocol': 'LSD1 inhibitor, TCP (tranylcypromine)'}, 'GSM2666190': {'age': 'Day 130', 'well': 'D4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2328850': {'status': 'FACS sorted CD45-CD31-NCAM+ hPSC myotube', 'facs': '5 days expansion and 7 days differentiation', 'line': 'H9', 'age': 'day 62 in culture'}, 'GSM2324197': {'group': 'LowA422', 'type': 'PBMC', 'day': '0', 'subjectid': '2408'}, 'GSM2728731': {'protocol': 'TT-seq (Schwalb et al., 2016)', 'genotype': 'wild type', 'antibody': '-', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 minutes with 0.05 % v/v solvent DMSO (Sigma); incl. 4sU-labeling during the last 5 minutes.'}, 'GSM1639679': {'type': 'DPSC', 'genotype': 'Duplication 15q (Interstitial)', 'number': '3'}, 'GSM1639678': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'number': '2'}, 'GSM1639673': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'number': '2'}, 'GSM1639677': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'number': '2'}, 'GSM1639676': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'number': '2'}, 'GSM1639675': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'number': '2'}, 'GSM1639674': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'number': '2'}, 'GSM719427': {'type': 'RNA sequencing'}, 'GSM719425': {'type': 'RNA Capture sequencing'}, 'GSM1275873': {'ercc_mix': '-', 'line': 'N080611', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Albuterol_Dexamethasone'}, 'GSM1437689': {'tissue': 'Bladder', 'stage': 'pT2'}, 'GSM3148601': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148600': {'tissue': 'lymph node', 'type': 'CD45+ leukocytes'}, 'GSM3148603': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148602': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148605': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148604': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148607': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148606': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148609': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148608': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM1262389': {'type': 'Embryonic stem cell', 'variation': 'WT'}, 'GSM1262388': {'type': 'Embryonic stem cell', 'variation': 'WT'}, 'GSM2259795': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259794': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259797': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259796': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259791': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259790': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259793': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259792': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2204076': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2204077': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2259799': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259798': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2745924': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '111,577,888', 'totalnummappedreads': '58,772,593', 'age': '13.689628', 'percentexonicmapping': '18.544521', 'Sex': 'Male', 'rin': '8.8', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.57', 'brainid': '1868'}, 'GSM2745925': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '136,344,798', 'totalnummappedreads': '61,951,742', 'age': '15.48297', 'percentexonicmapping': '15.826946', 'Sex': 'Male', 'rin': '8.5', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.93', 'brainid': '1282'}, 'GSM2745926': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '141,377,676', 'totalnummappedreads': '131,197,143', 'age': '15.321432', 'percentexonicmapping': '23.783624', 'Sex': 'Male', 'rin': '8.7', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.82', 'brainid': '982'}, 'GSM2745927': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '121,364,600', 'totalnummappedreads': '51,782,183', 'age': '14.623261', 'percentexonicmapping': '14.329498', 'Sex': 'Male', 'rin': '8.2', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.86', 'brainid': '1847'}, 'GSM1866118': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866119': {'tissue': 'Gliobmastoma biopsy'}, 'GSM2745922': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '96,032,332', 'totalnummappedreads': '81,142,559', 'age': '26.727631', 'percentexonicmapping': '27.250085', 'Sex': 'Male', 'rin': '9', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.55', 'brainid': '822'}, 'GSM2745923': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '138,725,788', 'totalnummappedreads': '115,042,739', 'age': '3.044573', 'percentexonicmapping': '21.283411', 'Sex': 'Male', 'rin': '7.1', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '5.87', 'brainid': '1287'}, 'GSM1866114': {'line': 'Gliobmastoma cell line'}, 'GSM1866115': {'line': 'Gliobmastoma cell line'}, 'GSM1866116': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866117': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866110': {'line': 'Gliobmastoma cell line'}, 'GSM1866111': {'line': 'Gliobmastoma cell line'}, 'GSM1866112': {'line': 'Gliobmastoma cell line'}, 'GSM1866113': {'line': 'Gliobmastoma cell line'}, 'GSM2373961': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373960': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373963': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373962': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373965': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373964': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373967': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373966': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373969': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373968': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1564314': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '50', 'replicate': '2', 'hcc827': '50'}, 'GSM2800830': {'treatment': 'APH treated'}, 'GSM2125128': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-PR (inhouse KD68)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2316987': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2299838': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2125129': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2689024': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2299839': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2103085': {'line': 'HeLa', 'treatment': 'NORAD plasmid'}, 'GSM2241570': {'batch': 'C', 'condition': 'Disomic'}, 'GSM2103084': {'line': 'HeLa', 'treatment': 'siRNA pool against NORAD'}, 'GSM2212737': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2103083': {'line': 'HeLa', 'treatment': 'siRNA buffer'}, 'GSM2157962': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2103082': {'line': 'U2OS', 'treatment': 'siRNA2 against NORAD'}, 'GSM2672068': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672069': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2241573': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2103081': {'line': 'U2OS', 'treatment': 'siRNA1 against NORAD'}, 'GSM2672060': {'type': 'Trophectoderm biopsy', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2672061': {'type': 'SIngle cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672062': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2103080': {'line': 'U2OS', 'treatment': 'Control siRNA'}, 'GSM2672064': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672065': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672066': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2672067': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2241576': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2241577': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2411151': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2550205': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550204': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550207': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550206': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550201': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550200': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550203': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550202': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550209': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550208': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2142408': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142409': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2632581': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632580': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632587': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632586': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM484895': {'line': 'GM12878', 'type': 'Lymphoblastoid Cell'}, 'GSM484894': {'line': 'GM10847', 'type': 'Lymphoblastoid Cell'}, 'GSM484897': {'line': 'GM12891', 'type': 'Lymphoblastoid Cell'}, 'GSM484896': {'line': 'GM12878', 'type': 'Lymphoblastoid Cell'}, 'GSM2632585': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM484893': {'line': 'GM10847', 'type': 'Lymphoblastoid Cell'}, 'GSM913891': {'tissue': 'Parathyroid tumor', 'patient': '4', 'agent': 'Control', 'time': '48h'}, 'GSM484899': {'line': 'GM15510', 'type': 'Lymphoblastoid Cell'}, 'GSM484898': {'line': 'GM12892', 'type': 'Lymphoblastoid Cell'}, 'GSM2453908': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453909': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2170849': {'stage': 'iPSC line'}, 'GSM2170848': {'stage': 'iPSC line'}, 'GSM2886588': {'age': '44', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'no', 'npm1': '-', 'flt3': '-'}, 'GSM2886589': {'age': '50', 'cytorisk': 'intermed2', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '+', 'flt3': '-'}, 'GSM2170845': {'stage': 'iPSC line'}, 'GSM2170844': {'stage': 'iPSC line'}, 'GSM2453902': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2543798': {'library_id': 'lib7900', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2170841': {'stage': 'iPSC line'}, 'GSM2453905': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2170843': {'stage': 'iPSC line'}, 'GSM2453907': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2632588': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2274958': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-10', 'trunkbarcode': '928616', 'sampleID': 'S33285', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9804', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9804', 'studysiteshort': 'YALE'}, 'GSM1819857': {'type': 'PANC1', 'treatment': 'vehicle'}, 'GSM2452054': {'line': 'U2OS pTRIPZ-YFP-ER-E2F1', 'type': 'osteosarcoma', 'fraction': 'YFP-high fraction'}, 'GSM2452051': {'line': 'U2OS pTRIPZ-YFP-ER-E2F1', 'type': 'osteosarcoma', 'fraction': 'YFP-negative fraction'}, 'GSM2452050': {'line': 'U2OS', 'type': 'osteosarcoma', 'fraction': 'parental'}, 'GSM2452053': {'line': 'U2OS pTRIPZ-YFP-ER-E2F1', 'type': 'osteosarcoma', 'fraction': 'YFP-medium fraction'}, 'GSM2452052': {'line': 'U2OS pTRIPZ-YFP-ER-E2F1', 'type': 'osteosarcoma', 'fraction': 'YFP-low fraction'}, 'GSM2575345': {'line': 'WM983B', 'subclone': 'F4', 'condition': 'Drug'}, 'GSM2157968': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2645800': {'line': 'LOX-IMVI BR', 'type': 'human metastatic melanoma cell line', 'treatment': '6-thio-dG'}, 'GSM2645801': {'line': 'LOX-IMVI BR', 'type': 'human metastatic melanoma cell line', 'treatment': 'BIBR1532'}, 'GSM2645802': {'line': 'LOX-IMVI BR', 'type': 'human metastatic melanoma cell line', 'treatment': 'BIBR1532'}, 'GSM434661': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 24 additional hours'}, 'GSM434660': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 24 additional hours'}, 'GSM434663': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434662': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM2287091': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287090': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1603320': {'cl': '105', 'ca': '11.1', 'dyslipidemia': 'Yes', 'year': '30', 'statin': '--', 'creatinine': '0.74', 'id': 'S07', 'co2': '24', 'rr': '16', 'plavix': 'Yes', 'na': '138', 'iiia': '--', 'type': 'STEMI', 'glucose': '122', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '9', 'smoking': 'Yes', 'day': '0.5', 'ticagrelor': 'Yes', 'troponin': '38.39', 'gender': 'F', 'k': '4.5', 'batch': '1', 'prasugrel': '--', 'cad': 'No'}, 'GSM1896090': {'individual': 'AF21', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2176036': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176037': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176034': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176035': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176032': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM3496099': {'line': 'NHDF1', 'build': 'GRCh38', 'condition': 'IPSC'}, 'GSM2411799': {'line': '12022B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411798': {'line': '10950C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411797': {'line': '10950A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411796': {'line': '9462B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411795': {'line': '9462A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411794': {'line': '921C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411793': {'line': '921B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411792': {'line': '554D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2176038': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176039': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2632222': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632223': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632220': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632221': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632226': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632227': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632224': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632225': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1607386': {'tissue': 'Foreskin', 'antibody': 'H3K4me1(Abcam. Cat: ab8895)', 'passage': '2'}, 'GSM1607387': {'tissue': 'Foreskin', 'antibody': 'H3K27ac (Merck Millipore. Cat 07-360)', 'passage': '2'}, 'GSM2632228': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632229': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1607383': {'tissue': 'Foreskin', 'antibody': 'Dnmt3a (SantaCruz H-295', 'passage': '2'}, 'GSM2125110': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM1726476': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726474': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM2465739': {'tissue': 'cord blood', 'type': 'CD34+ Erythroblasts', 'subject': 'Healthy Donor 5'}, 'GSM1726472': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726473': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726470': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726471': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM2465736': {'tissue': 'cord blood', 'type': 'CD34+ Erythroblasts', 'subject': 'Healthy Donor 2'}, 'GSM2465737': {'tissue': 'cord blood', 'type': 'CD34+ Erythroblasts', 'subject': 'Healthy Donor 3'}, 'GSM2465735': {'tissue': 'cord blood', 'type': 'CD34+ Erythroblasts', 'subject': 'Healthy Donor 1'}, 'GSM2284649': {'with': 'simvastatin (1 µM, dissolved in DMSO) for 48 hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM2284648': {'with': 'simvastatin (1 µM, dissolved in DMSO) for 48 hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM2405943': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'control'}, 'GSM2284643': {'with': 'vehicle (DMSO) for 48hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM2284642': {'with': 'vehicle (DMSO) for 48hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM2284645': {'with': 'simvastatin (1 µM, dissolved in DMSO) for 48 hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM2284644': {'with': 'vehicle (DMSO) for 48hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM2284647': {'with': 'simvastatin (1 µM, dissolved in DMSO) for 48 hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM2284646': {'with': 'simvastatin (1 µM, dissolved in DMSO) for 48 hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM1652608': {'induction': 'Day 37', 'type': 'GFP positive neural retina cells'}, 'GSM1087892': {'labexpid': '13290', 'line': 'GM12878'}, 'GSM1087893': {'labexpid': '13291', 'line': 'GM12878'}, 'GSM2093127': {'bin': '1', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2575347': {'line': 'WM983B', 'subclone': 'F4', 'condition': 'Drug'}, 'GSM2303236': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACIW009'}, 'GSM2374269': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374268': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2565340': {'construction': 'PLATE-Seq', 'drug': 'RS 17053 hydrochloride'}, 'GSM2565341': {'construction': 'PLATE-Seq', 'drug': 'IKK 16'}, 'GSM2565342': {'construction': 'PLATE-Seq', 'drug': 'CGP 71683 hydrochloride'}, 'GSM2565343': {'construction': 'PLATE-Seq', 'drug': 'PF-04691502'}, 'GSM2565344': {'construction': 'PLATE-Seq', 'drug': 'Propranolol HCl'}, 'GSM2565345': {'construction': 'PLATE-Seq', 'drug': 'Rocilinostat (ACY-1215)'}, 'GSM2565346': {'construction': 'PLATE-Seq', 'drug': 'TAK-700 (Orteronel)'}, 'GSM2374266': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2565348': {'construction': 'PLATE-Seq', 'drug': 'Triciribine'}, 'GSM2565349': {'construction': 'PLATE-Seq', 'drug': 'SULCONAZOLE NITRATE'}, 'GSM2303237': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2035784': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2374264': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374263': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2274955': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-7', 'trunkbarcode': '928616', 'sampleID': 'S33282', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9801', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9801', 'studysiteshort': 'YALE'}, 'GSM2374262': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374261': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2035781': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM3381509': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM3381508': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line'}, 'GSM3381507': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line'}, 'GSM3381506': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line'}, 'GSM2193045': {'sirna': 'PAX8 siRNA 403', 'line': 'Kurmomachi', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15403, Ambion'}, 'GSM1356710': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 17 to FB'}, 'GSM1356711': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 17 to MN'}, 'GSM1356712': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 35 to FB'}, 'GSM1356713': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 35 to MN'}, 'GSM1356714': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 0'}, 'GSM1356715': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 10'}, 'GSM1587789': {'line': 'FaDu', 'protocol': 'Transduced with vector control.'}, 'GSM1356717': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 17 to MN'}, 'GSM1356718': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 35 to FB'}, 'GSM1356719': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 35 to MN'}, 'GSM2277348': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277349': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277346': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277347': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277344': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277345': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277342': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277343': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277340': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277341': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2374245': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374244': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374247': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374246': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374241': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374240': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374243': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374242': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374249': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374248': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1853545': {'line': 'HeLa', 'treatment': 'DMSO - Sigma #D2438'}, 'GSM2312060': {'culture': '12', 'line': 'DCX+'}, 'GSM1965186': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM3896368': {'isolation': 'labeled RNA (eluate)', 'induction': '8h before harvesting', 'treatment': '1h before harvesting'}, 'GSM3896369': {'isolation': 'total RNA', 'induction': '1h before harvesting', 'treatment': '1h before harvesting'}, 'GSM3896366': {'isolation': 'labeled RNA (eluate)', 'induction': '2h before harvesting', 'treatment': '1h before harvesting'}, 'GSM3896367': {'isolation': 'labeled RNA (eluate)', 'induction': '4h before harvesting', 'treatment': '1h before harvesting'}, 'GSM3896365': {'isolation': 'labeled RNA (eluate)', 'induction': '1h before harvesting', 'treatment': '1h before harvesting'}, 'GSM1611599': {'line': 'HeLa S3', 'tissue': 'cervix', 'treatment': 'none', 'age': '31 years', 'genotype': 'wild type'}, 'GSM1514008': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1514009': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1216838': {'gender': 'Male', 'age': '54', 'bmi': '26.1', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1958'}, 'GSM1216839': {'gender': 'Male', 'age': '68', 'bmi': '24.7', 'hba1c': '6', 'tissue': 'pancreatic islets', 'birth': '1944'}, 'GSM1216836': {'gender': 'Male', 'age': '58', 'bmi': '30.9', 'hba1c': '6.7', 'tissue': 'pancreatic islets', 'birth': '1954'}, 'GSM1216837': {'gender': 'Male', 'age': '53', 'bmi': '27.5', 'hba1c': '5.9', 'tissue': 'pancreatic islets', 'birth': '1959'}, 'GSM1216834': {'gender': 'Male', 'age': '66', 'bmi': '27.8', 'hba1c': '7.2', 'tissue': 'pancreatic islets', 'birth': '1946'}, 'GSM1216835': {'gender': 'Male', 'age': '63', 'bmi': '26.1', 'hba1c': '6.4', 'tissue': 'pancreatic islets', 'birth': '1949'}, 'GSM1216832': {'gender': 'Female', 'age': '60', 'bmi': '25', 'hba1c': '5.7', 'tissue': 'pancreatic islets', 'birth': '1952'}, 'GSM1216833': {'gender': 'Male', 'age': '63', 'bmi': '21.3', 'hba1c': '5.5', 'tissue': 'pancreatic islets', 'birth': '1949'}, 'GSM1216830': {'gender': 'Male', 'age': '77', 'bmi': '29.4', 'hba1c': '7.3', 'tissue': 'pancreatic islets', 'birth': '1934'}, 'GSM1216831': {'gender': 'Male', 'age': '52', 'tissue': 'pancreatic islets', 'birth': '1960', 'bmi': '27.2'}, 'GSM1371579': {'line': 'WIBR3', 'stage': 'differentiated organoid'}, 'GSM2306259': {'subtype': 'ribo-depleted total RNA', 'concentration': 'n/a', 'type': 'HUVEC cells', 'compound': 'none (DMSO)'}, 'GSM2306258': {'subtype': 'ribo-depleted total RNA', 'concentration': 'n/a', 'type': 'HUVEC cells', 'compound': 'none (DMSO)'}, 'GSM2306253': {'subtype': 'ribo-depleted total RNA', 'concentration': '5 uM', 'type': 'HUVEC cells', 'compound': 'AX15839'}, 'GSM2306252': {'subtype': 'ribo-depleted total RNA', 'concentration': '5 uM', 'type': 'HUVEC cells', 'compound': 'AX15839'}, 'GSM2306251': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HUVEC cells', 'compound': 'AX15836'}, 'GSM2306250': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HUVEC cells', 'compound': 'AX15836'}, 'GSM2306257': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HUVEC cells', 'compound': 'I-BET762'}, 'GSM2306256': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HUVEC cells', 'compound': 'I-BET762'}, 'GSM2306255': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HUVEC cells', 'compound': 'I-BET762'}, 'GSM2306254': {'subtype': 'ribo-depleted total RNA', 'concentration': '5 uM', 'type': 'HUVEC cells', 'compound': 'AX15839'}, 'GSM2611261': {'tissue': 'Placenta', 'stage': 'Third trimester'}, 'GSM2611260': {'tissue': 'Placenta', 'stage': 'Third trimester'}, 'GSM2611262': {'tissue': 'Placenta', 'stage': 'Third trimester'}, 'GSM1371578': {'line': 'WIBR3', 'stage': 'differentiated organoid'}, 'GSM2303579': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACEK420A'}, 'GSM2303578': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2610798': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610799': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610796': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303570': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM2610794': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610795': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610792': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303574': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM2610790': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610791': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2394395': {'type': 'HAEC', 'treatment': 'oxpapc, 4h', 'passage': '6 to 10'}, 'GSM2394394': {'type': 'HAEC', 'treatment': 'il1b, 4h', 'passage': '6 to 10'}, 'GSM2394397': {'type': 'HAEC', 'treatment': 'tnfa, 4h', 'passage': '6 to 10'}, 'GSM2394396': {'type': 'HAEC', 'treatment': 'oxpapc, 4h', 'passage': '6 to 10'}, 'GSM2394391': {'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2194608': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2394393': {'type': 'HAEC', 'treatment': 'il1b, 4h', 'passage': '6 to 10'}, 'GSM2394392': {'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2194605': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194604': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194607': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194606': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194601': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2394398': {'type': 'HAEC', 'treatment': 'tnfa, 4h', 'passage': '6 to 10'}, 'GSM2194603': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194602': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2061691': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM1917141': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'quiescent'}, 'GSM2061693': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM1917143': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'senescent'}, 'GSM2061695': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1917145': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'senescent'}, 'GSM1917146': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'proliferating'}, 'GSM2061696': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061699': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1917149': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'quiescent'}, 'GSM2192668': {'type': 'Human mammary epithelial cells'}, 'GSM2448603': {'treatment': 'DMSO and retinoic acid for 6hrs'}, 'GSM2448602': {'treatment': 'DMSO'}, 'GSM1371576': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'human embryonic stem cells'}, 'GSM2448607': {'treatment': 'TPL and retinoic acid for 6hrs'}, 'GSM2448606': {'treatment': 'TPL'}, 'GSM2448605': {'treatment': 'either SP and retinoic acid for 6hrs'}, 'GSM2448604': {'treatment': 'SP'}, 'GSM2192664': {'type': 'Human mammary epithelial cells'}, 'GSM2306237': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HeLa cells', 'compound': 'AX15836'}, 'GSM1053796': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NF signature'}, 'GSM1053797': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NF signature'}, 'GSM1053794': {'prognosis': 'BAD', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FOTS signature'}, 'GSM2192666': {'type': 'Human mammary epithelial cells'}, 'GSM1053792': {'prognosis': 'BAD', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FOTS signature'}, 'GSM1053793': {'prognosis': 'BAD', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FOTS signature'}, 'GSM1053790': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NPAF signature'}, 'GSM1053791': {'prognosis': 'BAD', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'FOTS signature'}, 'GSM2192661': {'type': 'Human mammary epithelial cells'}, 'GSM2348454': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1053798': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NF signature'}, 'GSM1053799': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NF signature'}, 'GSM2192663': {'type': 'Human mammary epithelial cells'}, 'GSM1969358': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM2192662': {'type': 'Human mammary epithelial cells'}, 'GSM1916407': {'type': 'EBV-immortalized LCL'}, 'GSM1980395': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980394': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980397': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980396': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980391': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980390': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980393': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980392': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1916405': {'type': 'EBV-immortalized LCL'}, 'GSM2480402': {'type': 'cell culture', 'tissue': 'Keratinocytes', 'patient': 'C032'}, 'GSM1980398': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2458931': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.42'}, 'GSM1273843': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'mini GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1969356': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Internal trunk'}, 'GSM2476361': {'line': 'SKmel147', 'antibodies': 'MED1 (Bethyl Laboratories, A300-793A)', 'passage': 'N/A'}, 'GSM2476360': {'line': 'SKmel147', 'antibodies': 'H3K27me3 (EMD, 07-449)', 'passage': 'N/A'}, 'GSM2476363': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM1969357': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Pleomorphic rhabdomyosarcoma', 'localization': 'Lower limb'}, 'GSM2476365': {'type': 'foreskin, NHM2', 'passage': '8'}, 'GSM2476364': {'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM2476367': {'line': 'SKmel239', 'passage': 'N/A'}, 'GSM2476366': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476369': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476368': {'line': 'SKmel2', 'passage': 'N/A'}, 'GSM2458932': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.17'}, 'GSM1273844': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'mini GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1273845': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'mini GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1371572': {'line': 'AI91', 'stage': 'background contamination'}, 'GSM1580881': {'death': '61', 'rin': '8.2', 'reads': '123746070', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '10'}, 'GSM1580880': {'death': '79', 'rin': '8', 'reads': '65377604', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '21'}, 'GSM1580883': {'death': '70', 'rin': '8.2', 'reads': '72238818', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '21'}, 'GSM1580882': {'death': '58', 'rin': '8.4', 'reads': '67758208', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '20'}, 'GSM1580885': {'death': '73', 'rin': '7.5', 'reads': '108683922', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '19'}, 'GSM1580884': {'death': '66', 'rin': '8.5', 'reads': '64688322', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '17'}, 'GSM1580887': {'death': '76', 'rin': '7.3', 'reads': '79487172', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '26'}, 'GSM1580886': {'death': '60', 'rin': '7.9', 'reads': '83696384', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '24'}, 'GSM1580889': {'death': '62', 'rin': '6.6', 'reads': '94493436', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '18'}, 'GSM1580888': {'death': '61', 'rin': '7.8', 'reads': '73133936', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '17'}, 'GSM1371571': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'organoid'}, 'GSM2159808': {'line': 'MCF-7', 'transfection': 'Pre-miR-29b-1'}, 'GSM2159809': {'line': 'MCF-7', 'transfection': 'Pre-miR-29b-1'}, 'GSM2159804': {'line': 'LCC9', 'transfection': 'Pre-miR-29a'}, 'GSM2159805': {'line': 'LCC9', 'transfection': 'Pre-miR-29a'}, 'GSM2159806': {'line': 'LCC9', 'transfection': 'Pre-miR-29a'}, 'GSM2159807': {'line': 'MCF-7', 'transfection': 'Pre-miR-29b-1'}, 'GSM2159800': {'line': 'LCC9', 'transfection': 'Pre-miR-29b-1'}, 'GSM2159801': {'line': 'LCC9', 'transfection': 'Anti-miR-29a'}, 'GSM2159802': {'line': 'LCC9', 'transfection': 'Anti-miR-29a'}, 'GSM2159803': {'line': 'LCC9', 'transfection': 'Anti-miR-29a'}, 'GSM2251250': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251251': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251252': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251253': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251254': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251255': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251256': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251257': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251258': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251259': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM3195631': {'status': 'day 5', 'line': 'CHB8', 'Sex': 'female', 'passage': 'p39'}, 'GSM1371570': {'line': 'WIBR3 with AAVS1-lox-stop-loxRFP', 'stage': 'organoid'}, 'GSM2153253': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153252': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153251': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153250': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153257': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153256': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153255': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM3304329': {'tissue': 'cerebral organoids', 'genotype': 'E3E3_ISO'}, 'GSM2250129': {'type': 'cord blood derived endothelial progenitor cells'}, 'GSM2153259': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153258': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1113311': {'line': 'HCC2157', 'type': 'breast cancer cells', 'transfection': 'siJARID1B'}, 'GSM1113310': {'line': 'HCC2157', 'type': 'breast cancer cells', 'transfection': 'control siRNA'}, 'GSM1113313': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 1 post-vaccine'}, 'GSM1113312': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 0 (pre-vaccine)'}, 'GSM1113315': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 3 post-vaccine'}, 'GSM1113314': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 2 post-vaccine'}, 'GSM1113317': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 5 post-vaccine'}, 'GSM1113316': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 4 post-vaccine'}, 'GSM1113319': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 7 post-vaccine'}, 'GSM1113318': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 6 post-vaccine'}, 'GSM2307174': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM1657144': {'differentiation': '15', 'treated': 'control', 'stage': 'post differentiation hepatoblast'}, 'GSM2445381': {'growth': 'grown on PLL/Laminin in SC media'}, 'GSM2445380': {'growth': 'grown on PLL/Laminin in SC media'}, 'GSM2445383': {'growth': 'grown in MEMa'}, 'GSM2445382': {'growth': 'grown in MEMa'}, 'GSM2445385': {'growth': 'grown in MEMa'}, 'GSM2445384': {'growth': 'grown in MEMa'}, 'GSM2445387': {'growth': 'grown in MEMa'}, 'GSM2445386': {'growth': 'grown in MEMa'}, 'GSM2445389': {'growth': 'grown in MEMa'}, 'GSM2445388': {'growth': 'grown in MEMa'}, 'GSM2326912': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'African American', 'Sex': 'Female'}, 'GSM2326913': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'African American', 'Sex': 'Male'}, 'GSM2326910': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Female'}, 'GSM2326911': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Female'}, 'GSM2326916': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'African American', 'Sex': 'Female'}, 'GSM2458937': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.92'}, 'GSM2326914': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'African American', 'Sex': 'Male'}, 'GSM2326915': {'response': 'low', 'tissue': 'PBMC', 'treatment': 'intravenous LPS', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2305478': {'treatment': 'untreated'}, 'GSM859978': {'line': '293T', 'antibody': 'hnRNPA1', 'clone': '4B10', 'manufacturer': 'Novus Biologicals'}, 'GSM859979': {'line': '293T', 'antibody': 'hnRNPA1', 'clone': '4B10', 'manufacturer': 'Novus Biologicals'}, 'GSM1963023': {'tissue': 'ZR75', 'treatment': 'Control'}, 'GSM2739406': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739407': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2305479': {'treatment': 'untreated'}, 'GSM2739408': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739409': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM1436039': {'line': 'HeLa', 'treatment': 'CTRL'}, 'GSM2123900': {}, 'GSM2584688': {'tissue': 'foreskin fibroblast (mRNA transfection)', 'type': 'Induced pluripotent stem cells', 'passage': '10'}, 'GSM2584689': {'tissue': 'ex vivo derived cells', 'type': 'Endoderm cells', 'passage': '30+1'}, 'GSM2584680': {'tissue': 'Inner cell mass', 'type': 'Embryonic stem cells', 'passage': '30-35'}, 'GSM2584681': {'tissue': 'Inner cell mass', 'type': 'Embryonic stem cells', 'passage': '30-35'}, 'GSM2584682': {'tissue': 'Inner cell mass', 'type': 'Embryonic stem cells', 'passage': '30-35'}, 'GSM2584683': {'tissue': 'Inner cell mass', 'type': 'Embryonic stem cells', 'passage': '30-35'}, 'GSM2584684': {'tissue': 'Inner cell mass', 'type': 'Embryonic stem cells', 'passage': '30-35'}, 'GSM2584685': {'tissue': 'foreskin fibroblast (lentiviral transduction)', 'type': 'Induced pluripotent stem cells', 'passage': '15'}, 'GSM2584686': {'tissue': 'foreskin fibroblast (lentiviral transduction)', 'type': 'Induced pluripotent stem cells', 'passage': '15'}, 'GSM2584687': {'tissue': 'foreskin fibroblast (mRNA transfection)', 'type': 'Induced pluripotent stem cells', 'passage': '10'}, 'GSM2535852': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4275', 'samplename': '1_T1D_CD154+_C29', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25514', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4275', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C29'}, 'GSM1098421': {'line': 'CN34 LM1a; in vivo selected highly metastatic human breast cancer cell line', 'tissue': 'in vivo selected lung metastasic sub-line', 'stage': 'N/A - derivitive line', 'passage': 'low passage (<20X)'}, 'GSM1098420': {'line': 'CN34 LM1a; in vivo selected highly metastatic human breast cancer cell line', 'tissue': 'in vivo selected lung metastasic sub-line', 'stage': 'N/A - derivitive line', 'passage': 'low passage (<20X)'}, 'GSM2100064': {'rin': '9.2', 'Sex': 'Female', 'sspg': '50', 'age': '70', 'bmi': '27.5', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '345', 'method': 'Qiagen:trizol'}, 'GSM2042133': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042132': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042131': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042130': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042137': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2258214': {'group': 'AKT1/TRAF7', 'grade': '1', 'gender': 'M', 'age': '61', 'tissue': 'meningioma', 'histology': 'unknown', 'radiated': 'U'}, 'GSM2042135': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2042134': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2042139': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2042138': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM908328': {'line': 'HepG2', 'sirna': 'Scrambled'}, 'GSM908329': {'vendor': 'Synaptic Systems', 'line': 'HepG2', 'antibody': 'anti-m6A', 'treatment': 'UV irradiation of 0.04 J/cm2'}, 'GSM2361678': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361679': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361676': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361677': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361674': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361675': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361672': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361673': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361670': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361671': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2630167': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630166': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630165': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630164': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630163': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630162': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405846'}, 'GSM2630161': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405845'}, 'GSM2172318': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172317': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172316': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172315': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172314': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2607622': {'line': 'WA26'}, 'GSM2172312': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2630169': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630168': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2607620': {'line': 'WA26'}, 'GSM2575307': {'line': 'WM989', 'subclone': 'C3', 'condition': 'Drug'}, 'GSM2581298': {'race': 'African American', 'patient': '0007-OX', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'U Miami Brain Endowment Bank', 'experiment': '20170315B', 'histology': 'Not specified', 'age': '48 years'}, 'GSM1533226': {'treatment': 'DOX days 0-14'}, 'GSM1955968': {'a': '61647', 'cd38': '684', 'cd49f': '1086', 'w': '67490', 'h': '59862', 'lin': '486', 'cd34': '5172', 'cd90': '-116', 'cd7': '189', 'cd10': '982', 'time': '17978', 'cd135': '1639', 'cd45ra': '376'}, 'GSM1955969': {'a': '41535', 'cd38': '362', 'cd49f': '-150', 'w': '66475', 'h': '40948', 'lin': '454', 'cd34': '7351', 'cd90': '498', 'cd7': '461', 'cd10': '134', 'time': '18167', 'cd135': '1211', 'cd45ra': '183'}, 'GSM1955960': {'a': '55791', 'cd38': '636', 'cd49f': '656', 'w': '63989', 'h': '57140', 'lin': '923', 'cd34': '9331', 'cd90': '3880', 'cd7': '434', 'cd10': '612', 'time': '15644', 'cd135': '3822', 'cd45ra': '161'}, 'GSM1955961': {'a': '50111', 'cd38': '572', 'cd49f': '162', 'w': '66226', 'h': '49589', 'lin': '65', 'cd34': '5419', 'cd90': '-315', 'cd7': '176', 'cd10': '531', 'time': '15409', 'cd135': '582', 'cd45ra': '100'}, 'GSM1955962': {'a': '52626', 'cd38': '782', 'cd49f': '510', 'w': '66152', 'h': '52136', 'lin': '-28', 'cd34': '4152', 'cd90': '1302', 'cd7': '130', 'cd10': '450', 'time': '15174', 'cd135': '539', 'cd45ra': '95'}, 'GSM1955963': {'a': '65519', 'cd38': '752', 'cd49f': '439', 'w': '67123', 'h': '63970', 'lin': '-35', 'cd34': '7825', 'cd90': '1567', 'cd7': '311', 'cd10': '404', 'time': '14973', 'cd135': '4903', 'cd45ra': '289'}, 'GSM1955964': {'a': '63610', 'cd38': '948', 'cd49f': '322', 'w': '66740', 'h': '62463', 'lin': '294', 'cd34': '4801', 'cd90': '-85', 'cd7': '3', 'cd10': '517', 'time': '14781', 'cd135': '641', 'cd45ra': '220'}, 'GSM1955965': {'a': '57543', 'cd38': '805', 'cd49f': '600', 'w': '67337', 'h': '56004', 'lin': '518', 'cd34': '10564', 'cd90': '3369', 'cd7': '-152', 'cd10': '1093', 'time': '17378', 'cd135': '5187', 'cd45ra': '326'}, 'GSM1955966': {'a': '56625', 'cd38': '-497', 'cd49f': '934', 'w': '67373', 'h': '55081', 'lin': '115', 'cd34': '9322', 'cd90': '531', 'cd7': '704', 'cd10': '177', 'time': '17571', 'cd135': '2145', 'cd45ra': '307'}, 'GSM1955967': {'a': '78857', 'cd38': '773', 'cd49f': '2279', 'w': '66964', 'h': '77176', 'lin': '16', 'cd34': '8024', 'cd90': '317', 'cd7': '518', 'cd10': '24839', 'time': '17778', 'cd135': '12188', 'cd45ra': '7664'}, 'GSM2283680': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283681': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283682': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283683': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283684': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283685': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283686': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283687': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2264849': {'line': 'C20', 'type': 'hiPSC-derived cells'}, 'GSM2264848': {'line': 'C20', 'type': 'hiPSC-derived cells'}, 'GSM2544142': {'passages': '5-7', 'type': 'adipose derived mesenchymal stem cells'}, 'GSM2544141': {'passages': '5-7', 'type': 'adipose derived mesenchymal stem cells'}, 'GSM2544140': {'passages': '5-7', 'type': 'adipose derived mesenchymal stem cells'}, 'GSM1131342': {'with': 'LPS (1μM) + progesterone (100nM) for 4 hrs', 'type': 'primary human umbilical vein endothelial cells', 'passage': '4-6'}, 'GSM3436214': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'DMSO', 'variation': 'wild type'}, 'GSM3436215': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'DMSO', 'variation': 'wild type'}, 'GSM3436216': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'DMSO', 'variation': 'wild type'}, 'GSM1131343': {'with': 'LPS (1μM) + progesterone (100nM) for 8 hrs', 'type': 'primary human umbilical vein endothelial cells', 'passage': '4-6'}, 'GSM3436218': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'GSK-LSD1', 'variation': 'wild type'}, 'GSM3436219': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'GSK-LSD1', 'variation': 'wild type'}, 'GSM2411807': {'line': '13352A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411806': {'line': '1296E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411805': {'line': '1296C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411804': {'line': '12888B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411803': {'line': '12888A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411802': {'line': '1236C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411801': {'line': '1236B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411800': {'line': '12022C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2565049': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2411809': {'line': '14157A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411808': {'line': '13352E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2212649': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2109348': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109342': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2212039': {'line': 'Kasumi-1 cells', 'treatment': 'DMSO, 1 hr'}, 'GSM2109340': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109341': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109346': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109347': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109344': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2212038': {'line': 'Kasumi-1 cells', 'treatment': '125 nM MS417, 3 hr'}, 'GSM1241199': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241198': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241191': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241190': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241193': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241192': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241195': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241194': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241197': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241196': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2676341': {'type': 'MCF10A-ER-Src', 'agent': 'TAM', 'variation': 'NFE2L2i'}, 'GSM2151497': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2676343': {'type': 'MCF10A-ER-Src', 'agent': 'TAM', 'variation': 'CEBPBi'}, 'GSM2676342': {'type': 'MCF10A-ER-Src', 'agent': 'TAM', 'variation': 'SOX15i'}, 'GSM2676344': {'type': 'MCF10A-ER-Src', 'agent': 'TAM', 'variation': 'TCF7L2i'}, 'GSM2151496': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1447371': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM1447370': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM1447373': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM1447372': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM2533793': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1915010': {'line': 'MNNG', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1915011': {'line': 'MNNG', 'antibody': 'NA'}, 'GSM1915012': {'line': 'SaOS', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1915013': {'line': 'SaOS', 'antibody': 'NA'}, 'GSM1915018': {'line': '143B'}, 'GSM1480803': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM1480806': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM1480807': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1480804': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM1480805': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM2243882': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A8', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243883': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D1', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243880': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G3', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243881': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E12', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243886': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E11', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243887': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F3', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243884': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F6', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243885': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G5', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1868817': {'lineage': 'Epiblast', 'number': 'Embryo 2', 'stage': 'Blastocyst'}, 'GSM2243888': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E8', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243889': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D11', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2648920': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': 'INPUT', 'time': '4 hours', 'line': 'MCF7', 'antibody': 'none'}, 'GSM1869427': {'gender': 'female', 'tissue': 'blood', 'type': 'peripheral blood mononuclear cells', 'diagnosis': 'Guillain-Barre Syndrome'}, 'GSM1539008': {'genotype': 'AtWBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-192', 'type': 'unstranded 100bp PE reads'}, 'GSM1539001': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-339', 'type': 'unstranded 100bp PE reads'}, 'GSM1539000': {'genotype': 'AtWBS', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-192', 'type': 'unstranded 100bp PE reads'}, 'GSM1539003': {'genotype': 'Control', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-339-1', 'type': 'unstranded 100bp PE reads'}, 'GSM1539002': {'genotype': '7dupASD', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-242', 'type': 'unstranded 100bp PE reads'}, 'GSM1539005': {'genotype': 'Control', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'Miff', 'type': 'unstranded 100bp PE reads'}, 'GSM1539004': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-339', 'type': 'unstranded 100bp PE reads'}, 'GSM1539007': {'genotype': 'AtWBS', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-192', 'type': 'unstranded 100bp PE reads'}, 'GSM1539006': {'genotype': 'Control', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-339-1', 'type': 'unstranded 100bp PE reads'}, 'GSM2648921': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': 'Vehicle', 'time': '45 minutes', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM984382': {'line': 'C4-2B', 'antibody': 'AR', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Abcam'}, 'GSM984383': {'line': 'C4-2B', 'antibody': 'AR', 'treatment': 'DHT treated (16h)', 'manufacturer': 'Abcam'}, 'GSM984380': {'line': 'C4-2B', 'antibody': 'AR', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Abcam'}, 'GSM984381': {'line': 'C4-2B', 'antibody': 'AR', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Abcam'}, 'GSM984386': {'line': 'LNCaP', 'antibody': 'AR', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Abcam'}, 'GSM984387': {'line': 'LNCaP', 'antibody': 'AR', 'treatment': 'DHT treated (4h)', 'manufacturer': 'Abcam'}, 'GSM984385': {'line': 'C4-2B', 'antibody': 'AR', 'treatment': 'DHT treated (16h)', 'manufacturer': 'Abcam'}, 'GSM984388': {'line': 'LNCaP', 'antibody': 'AR', 'treatment': 'DHT treated (4h)', 'manufacturer': 'Abcam'}, 'GSM1533224': {'enrichment': 'SSEA3+', 'treatment': 'DOX days 0-14'}, 'GSM2754609': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0935', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754608': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_1135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754603': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754602': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1533989': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2754600': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_1112', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754607': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_1135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754606': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0993', 'previousdiagnosisoftb': 'No', 'tst': '20', 'type': 'Tcells'}, 'GSM2754605': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754604': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2300448': {'line': 'H1975', 'replicate': '1'}, 'GSM2300449': {'line': 'H1975', 'replicate': '1'}, 'GSM2648924': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': '10 nM E2 + 10 nM R5020', 'time': '45 minutes', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM2274693': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32741', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9331', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C06', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9331', 'studysiteshort': 'UCSF'}, 'GSM2581291': {'race': 'African American', 'patient': '0006-YO', 'area': 'BA10', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Female', 'source': 'U Miami Brain Endowment Bank', 'experiment': '20170314A', 'histology': 'Not specified', 'age': '49 years'}, 'GSM2626986': {'origin': 'pancreas', 'patient_id': '117', 'type': 'primary', 'tumor_id': '91'}, 'GSM2626987': {'origin': 'pancreas', 'patient_id': '118', 'type': 'primary', 'tumor_id': '92'}, 'GSM2626984': {'origin': 'pancreas', 'patient_id': '115', 'type': 'primary', 'tumor_id': '89'}, 'GSM2626985': {'origin': 'pancreas', 'patient_id': '116', 'type': 'primary', 'tumor_id': '90'}, 'GSM2626982': {'origin': 'pancreas', 'patient_id': '113', 'type': 'primary', 'tumor_id': '87'}, 'GSM2626983': {'origin': 'pancreas', 'patient_id': '114', 'type': 'primary', 'tumor_id': '88'}, 'GSM2626980': {'origin': 'pancreas', 'patient_id': '111', 'type': 'primary', 'tumor_id': '85'}, 'GSM2626981': {'origin': 'pancreas', 'patient_id': '112', 'type': 'primary', 'tumor_id': '86'}, 'GSM2626988': {'origin': 'pancreas', 'patient_id': '119', 'type': 'primary', 'tumor_id': '93'}, 'GSM2626989': {'origin': 'pancreas', 'patient_id': '120', 'type': 'primary', 'tumor_id': '94'}, 'GSM1953939': {'origin': 'human foreskin fibroblast', 'number': 'p4', 'subtype': 'reprogramming fibroblasts', 'time': 'at 48 hours of treatment', 'line': 'BJ (ATCC, CRL-2522)', 'with': '50nM JQ1 for 48 h'}, 'GSM1953938': {'origin': 'human foreskin fibroblast', 'number': 'p4', 'subtype': 'reprogramming fibroblasts', 'time': 'at 48 hours of treatment', 'line': 'BJ (ATCC, CRL-2522)', 'with': 'DMSO for 48hrs'}, 'GSM2627059': {'origin': 'small intestine', 'patient_id': '95', 'type': 'liver metastasis', 'tumor_id': '69'}, 'GSM2627058': {'origin': 'small intestine', 'patient_id': '94', 'type': 'liver metastasis', 'tumor_id': '68'}, 'GSM2627053': {'origin': 'small intestine', 'patient_id': '86', 'type': 'liver metastasis', 'tumor_id': '60'}, 'GSM2627052': {'origin': 'small intestine', 'patient_id': '6', 'type': 'liver metastasis', 'tumor_id': '6'}, 'GSM2627051': {'origin': 'small intestine', 'patient_id': '85', 'type': 'liver metastasis', 'tumor_id': '59'}, 'GSM2627050': {'origin': 'small intestine', 'patient_id': '83', 'type': 'liver metastasis', 'tumor_id': '57'}, 'GSM2627057': {'origin': 'small intestine', 'patient_id': '92', 'type': 'liver metastasis', 'tumor_id': '66'}, 'GSM1953934': {'origin': 'human foreskin fibroblast', 'number': 'p6', 'subtype': 'human foreskin fibroblast', 'time': 'at 48 hours of treatment', 'line': 'BJ (ATCC, CRL-2522)', 'with': 'DMSO for 48hrs'}, 'GSM2627055': {'origin': 'small intestine', 'patient_id': '88', 'type': 'liver metastasis', 'tumor_id': '62'}, 'GSM2627054': {'origin': 'small intestine', 'patient_id': '87', 'type': 'liver metastasis', 'tumor_id': '61'}, 'GSM1529691': {'line': 'HEK 293T', 'type': 'non-malignant cell line'}, 'GSM1529690': {'line': 'HEK 293T', 'type': 'non-malignant cell line'}, 'GSM1529692': {'line': 'HEK 293T', 'type': 'non-malignant cell line'}, 'GSM2044440': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2158201': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2537135': {'media': \"overnight in Waymouth's media\", 'tissue': 'lung explant', 'type': 'distal alveolar epithelial progenitors', 'method': 'enriched for epithelial cells by overnight culture', 'stage': 'gestational week 21'}, 'GSM2537136': {'media': '9 days Chir, Bmp4, retinoic acid (CBRa)', 'method': 'sorted CD47hi/CD26lo, enriched for NKX2-1+ cells', 'stage': 'Day 15 in-vitro differentiation'}, 'GSM2537137': {'media': '9 days Chir, Bmp4, retinoic acid (CBRa)', 'method': 'sorted CD47hi/CD26lo, enriched for NKX2-1+ cells', 'stage': 'Day 15 in-vitro differentiation'}, 'GSM2537130': {'media': '20 days Chir, Kgf, DCI (CK+DCI)', 'method': 'sorted SFTPC-tdTomato reporter negative cells', 'stage': 'Day 35 in-vitro differentiation'}, 'GSM2537131': {'media': '20 days Chir, Kgf, DCI (CK+DCI)', 'method': 'sorted SFTPC-tdTomato reporter negative cells', 'stage': 'Day 35 in-vitro differentiation'}, 'GSM2537132': {'media': '20 days Chir, Kgf, DCI (CK+DCI)', 'method': 'sorted SFTPC-tdTomato reporter negative cells', 'stage': 'Day 35 in-vitro differentiation'}, 'GSM2537133': {'media': \"overnight in Waymouth's media\", 'tissue': 'lung explant', 'type': 'distal alveolar epithelial progenitors', 'method': 'enriched for epithelial cells by overnight culture', 'stage': 'gestational week 21'}, 'GSM2158209': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158208': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2537138': {'media': '9 days Chir, Bmp4, retinoic acid (CBRa)', 'method': 'sorted CD47hi/CD26lo, enriched for NKX2-1+ cells', 'stage': 'Day 15 in-vitro differentiation'}, 'GSM2537139': {'line': 'MCF7', 'treatment': 'control'}, 'GSM1930408': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM2233313': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1930402': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930403': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930400': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930401': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930406': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930407': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930404': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1930405': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM2779680': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM1395311': {'line': 'UCLA1', 'type': 'ES cell'}, 'GSM1395310': {'line': 'H9', 'type': 'ES cell'}, 'GSM1395313': {'line': 'UCLA3', 'type': 'ES cell'}, 'GSM1395312': {'line': 'UCLA2', 'type': 'ES cell'}, 'GSM1395315': {'line': 'UCLA5', 'type': 'ES cell'}, 'GSM1395314': {'line': 'UCLA4', 'type': 'ES cell'}, 'GSM1395316': {'line': 'UCLA6', 'type': 'ES cell'}, 'GSM2233312': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2543701': {'library_id': 'lib5832', 'stim': 'TT', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1963983': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963982': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2543705': {'library_id': 'lib5841', 'stim': 'DM', 'group': 'Case', 'classification': 'Not Included', 'level': '7.149', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2178478': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2543707': {'library_id': 'lib5843', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2178479': {'medium': 'DMEM, 10% FBS, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM2753950': {'type': 'purified human CD14+ cells', 'infection': 'ZIKV virus, IBH30656', 'time': '12hpi'}, 'GSM2839980': {'type': 'blood endothelial cells (BEC)', 'variation': 'V5/vIRF3 overexpression'}, 'GSM1334170': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM931720': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM1334172': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1334173': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1334174': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1334175': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334176': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM931721': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM1334178': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM1334179': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM931722': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM2159799': {'line': 'LCC9', 'transfection': 'Pre-miR-29b-1'}, 'GSM1194679': {'pathology': 'Premalignant', 'tissue': 'Premalignant lesion', 'patient': 'Patient 1'}, 'GSM1963988': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2445675': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'DMSO'}, 'GSM1194677': {'type': 'Normal basal cells', 'pathology': 'Normal', 'patient': 'Patient 1'}, 'GSM1194676': {'type': 'Normal basal cells', 'pathology': 'Normal', 'patient': 'Patient 1'}, 'GSM2759385': {'line': 'IMR-5', 'antibody': 'none'}, 'GSM2759387': {'line': 'IMR-5', 'antibody': 'RAD21 (Bethyl, A300-080A)'}, 'GSM2759386': {'line': 'IMR-5', 'antibody': 'CTCF (abcam, ab70303)'}, 'GSM1499794': {'treatment': 'None'}, 'GSM1499795': {'treatment': 'None'}, 'GSM1499796': {'treatment': '1 hour'}, 'GSM1499797': {'treatment': '1 hour'}, 'GSM1499790': {'treatment': '12 hour'}, 'GSM1499791': {'treatment': '12 hour'}, 'GSM2275049': {'area_under_the_curve': '0.847411719', 'siteandparticipantcode': '555647', 'baseline_area_under_the_curve': '0.847411719', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '925758', 'sampleID': 'S12586', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib894', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'Control', 'name': 'AbATE_555647', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib894', 'studysiteshort': 'BRI-VM'}, 'GSM2275048': {'area_under_the_curve': '0.782711563', 'siteandparticipantcode': '214040', 'baseline_area_under_the_curve': '0.782711563', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '927982', 'sampleID': 'S12585', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib893', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_214040', 'gender': 'Female', 'age': '10', 'race': 'American Indian or Alaska Native; White', 'libraryid': 'lib893', 'studysiteshort': 'BRI-VM'}, 'GSM2275047': {'area_under_the_curve': '0.818449219', 'siteandparticipantcode': '289534', 'baseline_area_under_the_curve': '0.818449219', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '925757', 'sampleID': 'S12584', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib892', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_289534', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib892', 'studysiteshort': 'BRI-VM'}, 'GSM2275046': {'area_under_the_curve': '1.236491875', 'siteandparticipantcode': '770569', 'baseline_area_under_the_curve': '1.236491875', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '925402', 'sampleID': 'S12583', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib891', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_770569', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib891', 'studysiteshort': 'BRI-VM'}, 'GSM2275045': {'area_under_the_curve': '0.776763906', 'siteandparticipantcode': '800847', 'baseline_area_under_the_curve': '0.776763906', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '929035', 'sampleID': 'S12582', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib890', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_800847', 'gender': 'Male', 'age': '10', 'race': 'White', 'libraryid': 'lib890', 'studysiteshort': 'COLORADO'}, 'GSM2275044': {'area_under_the_curve': '0.997396094', 'siteandparticipantcode': '268024', 'baseline_area_under_the_curve': '0.997396094', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '928901', 'sampleID': 'S12581', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib889', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_268024', 'gender': 'Male', 'age': '14', 'race': 'White', 'libraryid': 'lib889', 'studysiteshort': 'COLORADO'}, 'GSM2275043': {'area_under_the_curve': '0.258904063', 'siteandparticipantcode': '236676', 'baseline_area_under_the_curve': '0.258904063', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '924459', 'sampleID': 'S12580', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib888', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'Control', 'name': 'AbATE_236676', 'gender': 'Male', 'age': '9', 'race': 'White', 'libraryid': 'lib888', 'studysiteshort': 'COLORADO'}, 'GSM2275042': {'area_under_the_curve': '0.78736625', 'siteandparticipantcode': '612273', 'baseline_area_under_the_curve': '0.78736625', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '928619', 'sampleID': 'S12579', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib887', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_612273', 'gender': 'Male', 'age': '29', 'race': 'White', 'libraryid': 'lib887', 'studysiteshort': 'COLORADO'}, 'GSM2275041': {'area_under_the_curve': '0.71496', 'siteandparticipantcode': '325907', 'baseline_area_under_the_curve': '0.71496', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '927024', 'sampleID': 'S12578', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib886', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_325907', 'gender': 'Male', 'age': '16', 'race': 'White', 'libraryid': 'lib886', 'studysiteshort': 'COLORADO'}, 'GSM2275040': {'area_under_the_curve': '0.917645781', 'siteandparticipantcode': '156104', 'baseline_area_under_the_curve': '0.917645781', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '924435', 'sampleID': 'S12577', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib885', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'Control', 'name': 'AbATE_156104', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib885', 'studysiteshort': 'COLORADO'}, 'GSM1855844': {'antibody': 'ChIPAb+ Anti-H3K4me3 (Millipore #17-614)', 'type': 'human colon cancer', 'media': '(+) Methionine'}, 'GSM1855845': {'antibody': 'ChIPAb+ Anti-H3K4me3 (Millipore #17-614)', 'type': 'human colon cancer', 'media': '(-) Methionine'}, 'GSM1855846': {'antibody': 'ChIPAb+ Anti-H3K4me3 (Millipore #17-614)', 'type': 'human colon cancer', 'media': '(-) Methionine'}, 'GSM1855847': {'antibody': 'None', 'type': 'human colon cancer', 'media': '(+) Methionine'}, 'GSM3586858': {'origin': 'UNCLASSIFIED', 'pfstt': '1065', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1066', 'cycles': '6', 'oscs': '0'}, 'GSM1855843': {'antibody': 'ChIPAb+ Anti-H3K4me3 (Millipore #17-614)', 'type': 'human colon cancer', 'media': '(+) Methionine'}, 'GSM3586856': {'origin': 'GCB', 'pfstt': '736', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '809', 'cycles': '8', 'oscs': '0'}, 'GSM3586857': {'origin': 'ABC', 'pfstt': '207', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '391', 'cycles': '6', 'oscs': '1'}, 'GSM3586854': {'origin': 'UNCLASSIFIED', 'pfstt': '12', 'pfscs': '1', 'region': 'Other', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '12', 'cycles': '8', 'oscs': '1'}, 'GSM3586855': {'origin': 'GCB', 'pfstt': '125', 'pfscs': '0', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '162', 'cycles': '8', 'oscs': '0'}, 'GSM2401352': {'transfection': 'BRD4 #1 (labeled as BRD4 1) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '3'}, 'GSM2401353': {'transfection': 'BRD4 #2 (labeled as BRD4 4) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '3'}, 'GSM2401350': {'transfection': 'BRD4 #2 (labeled as BRD4 4) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '2'}, 'GSM2401351': {'transfection': 'Control (labeled as CON 3) siRNA', 'type': 'Pancreatic Adenocarcinoma Cell Line', 'number': '3'}, 'GSM1665989': {'with': '1µM of JQ1 for 6hrs', 'line': 'SKmel147', 'type': 'melanoma cell line', 'variation': 'NRAS mutant Q61R'}, 'GSM1599195': {'line': 'CSC_shH1.0-1', 'treatment': 'SHOT (16h Dox)'}, 'GSM2815986': {'line': 'H9'}, 'GSM1599197': {'line': 'CSC_shH1.0-1', 'treatment': 'DOX (14d Dox)'}, 'GSM1599196': {'line': 'CSC_shH1.0-1', 'treatment': 'DOX (14d Dox)'}, 'GSM1599191': {'line': 'CSC_shH1.0-1', 'treatment': 'NT (uninduced)'}, 'GSM1599190': {'line': 'CSC_shH1.0-1', 'treatment': 'NT (uninduced)'}, 'GSM1599193': {'line': 'CSC_shH1.0-1', 'treatment': 'SHOT (16h Dox)'}, 'GSM2815987': {'line': 'H9'}, 'GSM1599199': {'line': 'CSC_shH1.0-1', 'treatment': 'washDOX (4d after Dox removal)'}, 'GSM1957072': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957073': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957074': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM2445671': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'Idela 1uM'}, 'GSM1957075': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957076': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957077': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1087028': {'line': 'HEK293'}, 'GSM1087023': {'line': 'HEK293'}, 'GSM2098707': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM1087025': {'line': 'HEK293'}, 'GSM1087024': {'line': 'HEK293'}, 'GSM1087027': {'line': 'HEK293'}, 'GSM1087026': {'line': 'HEK293'}, 'GSM2724437': {'line': 'Control', 'type': 'Tubulin'}, 'GSM2724436': {'line': 'Control', 'type': 'Control STING20 shRNA'}, 'GSM2724435': {'line': 'Control', 'type': 'Control STING19 shRNA'}, 'GSM2724434': {'line': 'Kif2a', 'type': 'Kif2a primary tumor, mouse number 19'}, 'GSM2724433': {'line': 'MCAK', 'type': 'MCAK primary tumor, mouse number 9'}, 'GSM2724432': {'line': 'MCAK', 'type': 'MCAK primary tumor, mouse number 8'}, 'GSM2724431': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir primary tumor, mouse number 11'}, 'GSM2724430': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir bone metastasis, mouse number 66'}, 'GSM2308769': {'type': 'HFF cells', 'treatment': 'Puromycin selection - 5 days', 'variation': 'Lentivirus mediated GFP overexpression'}, 'GSM2445673': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'DMSO'}, 'GSM2724439': {'line': 'Kif2a', 'type': 'Kif2a Primary tumor, mouse number 19'}, 'GSM2724438': {'line': 'Kif2a', 'type': 'Kif2a Primary tumor, mouse number 16'}, 'GSM2255509': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'IR'}, 'GSM2048559': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048558': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048557': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048556': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048555': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048554': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048553': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048552': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048551': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048550': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2274714': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32766', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9356', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C49', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9356', 'studysiteshort': 'UCSF'}, 'GSM2274715': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32768', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9358', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C86', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9358', 'studysiteshort': 'UCSF'}, 'GSM2274716': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32769', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9359', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C92', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9359', 'studysiteshort': 'UCSF'}, 'GSM2274717': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32772', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9362', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C69', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9362', 'studysiteshort': 'UCSF'}, 'GSM2274710': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32761', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9351', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C19', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9351', 'studysiteshort': 'UCSF'}, 'GSM2274711': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32762', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9352', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C27', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9352', 'studysiteshort': 'UCSF'}, 'GSM2274712': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32763', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9353', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C39', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9353', 'studysiteshort': 'UCSF'}, 'GSM2274713': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32764', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9354', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C45', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9354', 'studysiteshort': 'UCSF'}, 'GSM2274718': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32773', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9363', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C79', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9363', 'studysiteshort': 'UCSF'}, 'GSM2274719': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32774', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9364', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C18', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9364', 'studysiteshort': 'UCSF'}, 'GSM2125164': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2125165': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2125166': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM DHT', 'time': '45 minutes'}, 'GSM2125167': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10nM Estradiol + 10 nM DHT', 'time': '45 minutes'}, 'GSM2125161': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Aldosterone', 'time': '45 minutes'}, 'GSM2125163': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10nM Estradiol + 10 nM Aldosterone', 'time': '45 minutes'}, 'GSM2125168': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': 'Vehicle', 'time': '60 minutes'}, 'GSM2125169': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Estradiol', 'time': '75 minutes'}, 'GSM2098704': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM1401336': {'rin': '7.5', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-01-29'}, 'GSM1401335': {'rin': '2.7', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-01-22'}, 'GSM2105080': {'gender': 'Female', 'age': '14 Year old', 'batch': '1F', 'condition': 'Trisomic'}, 'GSM2180138': {'source': 'H9', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180139': {'source': 'H9', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2052589': {'tissue': 'skin', 'diagnosis': 'Hailey-Hailey disease'}, 'GSM2105082': {'gender': 'Female', 'age': '14 Year old', 'batch': '1F', 'condition': 'Trisomic'}, 'GSM1296147': {'line': 'osteosarcoma U2OS cell line', 'antibody': 'anti-CTCF (Abcam, cat# ab70303, lot# GR98618-4)'}, 'GSM2105085': {'gender': 'Female', 'age': '19 Year old', 'batch': '2F', 'condition': 'Trisomic'}, 'GSM1296148': {'line': 'osteosarcoma U2OS cell line', 'antibody': 'anti-CTCF (Abcam, cat# ab70303, lot# GR27477-7)'}, 'GSM1296149': {'line': 'osteosarcoma U2OS cell line', 'antibody': 'anti-CTCF (Abcam, cat# ab70303, lot#s GR98618-4 and GR27477-7)'}, 'GSM3067230': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'control', 'fraction': 'mP beads'}, 'GSM3067231': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'control', 'fraction': 'mP beads'}, 'GSM3067232': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'serum starvation + EGF treatment', 'fraction': 'mP beads'}, 'GSM3067233': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'serum starvation + EGF treatment', 'fraction': 'mP beads'}, 'GSM3067234': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'serum starvation', 'fraction': 'mP beads'}, 'GSM2105087': {'gender': 'Female', 'age': '19 Year old', 'batch': '2F', 'condition': 'Trisomic'}, 'GSM3067236': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'control', 'fraction': 'polysomal RNA'}, 'GSM3067237': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'control', 'fraction': 'polysomal RNA'}, 'GSM3067238': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'serum starvation + EGF treatment', 'fraction': 'polysomal RNA'}, 'GSM3067239': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'serum starvation + EGF treatment', 'fraction': 'polysomal RNA'}, 'GSM2058028': {'line': 'V1009', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058029': {'line': 'V1024', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058026': {'line': 'HCT116', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058027': {'line': 'SW480', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058024': {'tissue': 'normal colon crypt', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058025': {'line': 'COLO205', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058022': {'tissue': 'normal colon crypt', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058023': {'tissue': 'normal colon crypt', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058020': {'line': 'V576', 'tissue': 'colorectal cancer cell line'}, 'GSM2058021': {'tissue': 'normal colon crypt', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2170748': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170749': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2688990': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2170742': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170743': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170740': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170741': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170746': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170747': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170744': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170745': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2124695': {'origin': 'breast metastatic site: pleural effusion', 'line': 'MCF7', 'type': 'luminal estrogen receptor positive'}, 'GSM2124697': {'origin': 'breast metastatic site: pleural effusion', 'line': 'T47D', 'type': 'luminal estrogen receptor positive'}, 'GSM2124696': {'origin': 'breast metastatic site: pleural effusion', 'line': 'MCF7', 'type': 'luminal estrogen receptor positive'}, 'GSM2124699': {'origin': 'xenograft of breast tumorigenic cell line MCF10AT', 'line': 'MCF10DCIS', 'type': 'triple-negative'}, 'GSM2124698': {'origin': 'breast metastatic site: pleural effusion', 'line': 'T47D', 'type': 'luminal estrogen receptor positive'}, 'GSM1965219': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965218': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2632504': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1965211': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965210': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965213': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965212': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965215': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965214': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965217': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965216': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2535961': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6763', 'samplename': '1_Ctl_RO+_C90', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30126', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6763', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C90'}, 'GSM2445631': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D10', 'type': 'primary human hepatocyte'}, 'GSM2535963': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6767', 'samplename': '1*_Ctl_RO+_C89', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30130', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6767', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C89'}, 'GSM2535962': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6766', 'samplename': '1*_Ctl_RO+_C65', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30129', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6766', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C65'}, 'GSM2535965': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6770', 'samplename': '1_Ctl_RO+_C76', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30133', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6770', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C76'}, 'GSM2535964': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6769', 'samplename': '1*_Ctl_RO+_C60', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30132', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6769', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C60'}, 'GSM2535967': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6772', 'samplename': '1_Ctl_RO+_C94', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30135', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6772', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C94'}, 'GSM2445630': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': '8h', 'type': 'primary human hepatocyte'}, 'GSM2535969': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6776', 'samplename': '1_T1D#4_RO+_C43', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30140', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6776', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C43'}, 'GSM2535968': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6775', 'samplename': '1_T1D#4_RO+_C37', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30139', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6775', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C37'}, 'GSM2304928': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Untreated with Dox', 'time': '0h'}, 'GSM1398741': {'conditions': 'xenograft', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398740': {'conditions': 'xenograft', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM1398742': {'conditions': 'xenograft', 'line': 'HT-29', 'type': 'colorectal cell line'}, 'GSM2445639': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'pIC', 'time': '8h', 'type': 'primary human hepatocyte'}, 'GSM2445638': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'pIC', 'time': '4h', 'type': 'primary human hepatocyte'}, 'GSM2141548': {'individual': 'EU104', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141549': {'individual': 'EU104', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2565009': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2141540': {'individual': 'AF93', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141541': {'individual': 'AF95', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141542': {'individual': 'AF95', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141543': {'individual': 'AF95', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141544': {'individual': 'AF97', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141545': {'individual': 'AF97', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141546': {'individual': 'AF97', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141547': {'individual': 'EU104', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2769056': {'antibody': 'Pol II(CST, #14958)', 'line': 'DLD-1-OsTIR1', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2769057': {'antibody': 'Pol II(CST, #14958)', 'line': 'DLD-1-OsTIR1', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM849355': {'lineage': 'inner cell mass', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'I67', 'softwareversion': 'Delve version 0.9', 'sex': 'M', 'rnaextract': 'longNonPolyA', 'karyotype': 'normal', 'biorep': 'gen0113WC'}, 'GSM849354': {'lineage': 'mesoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'polysome', 'datatype': 'Cage', 'labexpid': 'I32', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'labversion': 'Delve version 0.9', 'karyotype': 'cancer', 'biorep': 'gen0152P'}, 'GSM849357': {'lineage': 'inner cell mass', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'J74', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '005WC'}, 'GSM565973': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'STAT3 siRNAs'}, 'GSM849351': {'lineage': 'endoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'I42', 'sex': 'M', 'rnaextract': 'longNonPolyA', 'labversion': 'Delve version 0.9', 'biorep': 'gen0125C'}, 'GSM849350': {'lineage': 'mesoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'I72', 'sex': 'U', 'rnaextract': 'longNonPolyA', 'labversion': 'Delve version 0.9', 'karyotype': 'normal', 'biorep': 'gen0116C'}, 'GSM849353': {'lineage': 'mesoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'I22', 'softwareversion': 'bowtie version 0.12.5', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'karyotype': 'cancer', 'biorep': 'gen0136C'}, 'GSM849352': {'lineage': 'mesoderm', 'description': 'Total RNA extract (longer than 200 nt)', 'localization': 'nucleolus', 'datatype': 'Cage', 'labexpid': 'I69', 'sex': 'F', 'rnaextract': 'total', 'karyotype': 'normal', 'biorep': 'gen0109NL'}, 'GSM849359': {'lineage': 'endoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'K16', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '021WC'}, 'GSM2153237': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153236': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1045178': {'type': 'NTera2/D1', 'treatment': 'RA'}, 'GSM2339028': {'group': 'Negative', 'time': '48h', 'replicate': '3', 'factor': '0.997953', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339029': {'group': 'Estradiol', 'time': '48h', 'replicate': '3', 'factor': '1.03062', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339026': {'group': 'Estradiol', 'time': '48h', 'replicate': '1', 'factor': '1.00165', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339027': {'group': 'Bisphenol AF', 'time': '48h', 'replicate': '2', 'factor': '0.994317', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2339025': {'group': 'Negative', 'time': '48h', 'replicate': '1', 'factor': '1', 'line': 'MCF-7', 'type': 'Breast cancerÂ\\xa0cell line'}, 'GSM2309473': {'number': 'Exp 4', 'time': '18 hours', 'replicate': '2', 'treatment': 'DRB', 'dose': '100 uM'}, 'GSM2705342': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 7', 'dilution': '1:10'}, 'GSM1401779': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401778': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2061718': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061719': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1401773': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2153239': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1401771': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2061717': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061710': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061711': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1401775': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2061713': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2433119': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433118': {'state': 'Control', 'tissue': 'lung'}, 'GSM2433111': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433110': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433113': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433112': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433115': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433114': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433117': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433116': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2385642': {'line': 'G166', 'type': 'glioblastoma stem cell'}, 'GSM2385648': {'line': 'G19', 'type': 'glioblastoma stem cell'}, 'GSM2257560': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'BRAF mutation'}, 'GSM2257561': {'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'BRAF inhibitor 3 hours at 1uM', 'background': 'BRAF mutation'}, 'GSM2257562': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'BRAF inhibitor 3 hours at 1uM', 'background': 'BRAF mutation'}, 'GSM2257563': {'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'MEK inhibitor 3 hours at 0.2 uM', 'background': 'BRAF mutation'}, 'GSM2257564': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'MEK inhibitor 3 hours at 0.2 uM', 'background': 'BRAF mutation'}, 'GSM2257565': {'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'BRAF mutation'}, 'GSM2257566': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'BRAF mutation'}, 'GSM2257567': {'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Control siRNA transfection, 3 days', 'background': 'BRAF mutation'}, 'GSM2257568': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Control siRNA transfection, 3 days', 'background': 'BRAF mutation'}, 'GSM2257569': {'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'INTS11 siRNA transfection, 3 days', 'background': 'BRAF mutation'}, 'GSM2705346': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 11', 'dilution': '1:10'}, 'GSM1181912': {'type': 'TICs from the H1703 cell line', 'phenotype': 'tumo initiating cells'}, 'GSM1181913': {'type': 'TICs from the H1703 cell line (PRKCI knock down)', 'phenotype': 'tumo initiating cells'}, 'GSM1181914': {'type': 'Adherent/parental cells from the H1703 cell line', 'phenotype': 'adehrent cells'}, 'GSM1181915': {'type': 'Adherent/parental cells from the H1299 cell line', 'phenotype': 'adehrent cells'}, 'GSM1181916': {'type': 'TICs from the H1299 cell line', 'phenotype': 'tumo initiating cells'}, 'GSM1181917': {'type': 'TICs from the H1299 cell line (PRKCI knock down)', 'phenotype': 'tumo initiating cells'}, 'GSM1181918': {'type': 'Adherent/parental cells from the CHAGO cell line', 'phenotype': 'adehrent cells'}, 'GSM1181919': {'type': 'TICs from the CHAGO cell line', 'phenotype': 'tumo initiating cells'}, 'GSM2265709': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '24h'}, 'GSM2265708': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '12h'}, 'GSM2265701': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '3h'}, 'GSM2265700': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '48h'}, 'GSM2265703': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '12h'}, 'GSM2265702': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '6h'}, 'GSM2265705': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '48h'}, 'GSM2265704': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '24h'}, 'GSM2265707': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '6h'}, 'GSM2265706': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '3h'}, 'GSM2670988': {'line': 'HCT116', 'antibody': 'rat monoclonal anti-Ser2-P 3E10 (Chromotek)', 'genotype': 'wildtype'}, 'GSM1956189': {'a': '45226', 'cd38': '1847', 'cd49f': '452', 'w': '65448', 'h': '45287', 'lin': '3', 'cd34': '6326', 'cd90': '182', 'cd7': '189', 'cd10': '484', 'time': '4161', 'cd135': '3726', 'cd45ra': '307'}, 'GSM1956188': {'a': '63853', 'cd38': '1616', 'cd49f': '457', 'w': '69438', 'h': '60265', 'lin': '519', 'cd34': '5391', 'cd90': '-393', 'cd7': '44', 'cd10': '759', 'time': '3958', 'cd135': '926', 'cd45ra': '99'}, 'GSM1956183': {'a': '64863', 'cd38': '2762', 'cd49f': '340', 'w': '65125', 'h': '65273', 'lin': '528', 'cd34': '7118', 'cd90': '32', 'cd7': '248', 'cd10': '673', 'time': '2917', 'cd135': '2931', 'cd45ra': '262'}, 'GSM1956182': {'a': '48716', 'cd38': '4637', 'cd49f': '489', 'w': '67479', 'h': '47313', 'lin': '111', 'cd34': '4528', 'cd90': '71', 'cd7': '276', 'cd10': '9056', 'time': '2708', 'cd135': '10456', 'cd45ra': '6403'}, 'GSM1956181': {'a': '70024', 'cd38': '5528', 'cd49f': '1313', 'w': '68501', 'h': '66993', 'lin': '-109', 'cd34': '5947', 'cd90': '324', 'cd7': '-194', 'cd10': '726', 'time': '2416', 'cd135': '16683', 'cd45ra': '10533'}, 'GSM1956180': {'a': '53993', 'cd38': '1069', 'cd49f': '1174', 'w': '68384', 'h': '51744', 'lin': '112', 'cd34': '3596', 'cd90': '-15', 'cd7': '184', 'cd10': '531', 'time': '19907', 'cd135': '3137', 'cd45ra': '3593'}, 'GSM1956187': {'a': '57541', 'cd38': '4346', 'cd49f': '407', 'w': '67897', 'h': '55540', 'lin': '225', 'cd34': '4866', 'cd90': '-316', 'cd7': '230', 'cd10': '521', 'time': '3762', 'cd135': '882', 'cd45ra': '738'}, 'GSM1956186': {'a': '72512', 'cd38': '2035', 'cd49f': '504', 'w': '66133', 'h': '71857', 'lin': '103', 'cd34': '5519', 'cd90': '713', 'cd7': '40', 'cd10': '755', 'time': '3551', 'cd135': '5826', 'cd45ra': '280'}, 'GSM1956185': {'a': '56924', 'cd38': '4359', 'cd49f': '491', 'w': '67464', 'h': '55297', 'lin': '58', 'cd34': '3583', 'cd90': '-372', 'cd7': '366', 'cd10': '176', 'time': '3357', 'cd135': '4496', 'cd45ra': '6808'}, 'GSM1956184': {'a': '75469', 'cd38': '2188', 'cd49f': '977', 'w': '70898', 'h': '69761', 'lin': '147', 'cd34': '8699', 'cd90': '61', 'cd7': '-9', 'cd10': '1092', 'time': '3159', 'cd135': '4076', 'cd45ra': '4980'}, 'GSM1833871': {'tissue': 'bone marrow'}, 'GSM1833870': {'tissue': 'bone marrow'}, 'GSM1833873': {'tissue': 'Cultured Leukemic Blasts', 'compound': 'GSI BMS-906024'}, 'GSM1833872': {'tissue': 'Cultured Leukemic Blasts', 'compound': 'DMSO'}, 'GSM1833875': {'tissue': 'Cultured Leukemic Blasts', 'antibody': 'H3K27ac (ActiveMotif, ab4729)', 'compound': 'GSI BMS-906024'}, 'GSM1833874': {'tissue': 'Cultured Leukemic Blasts', 'antibody': 'H3K27ac (ActiveMotif, ab4729)', 'compound': 'DMSO'}, 'GSM1833877': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'wild-type', 'time': 'Embryoid body, day 17'}, 'GSM1833876': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'wild-type', 'time': 'Embryoid body, day 17'}, 'GSM1833879': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'wild-type', 'time': 'Embryoid body, day 17'}, 'GSM1833878': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'wild-type', 'time': 'Embryoid body, day 17'}, 'GSM2256211': {'relation': 'farther', 'hypotrophy': 'control', 'Sex': 'M'}, 'GSM2256210': {'relation': 'daughter', 'hypotrophy': 'case', 'Sex': 'F'}, 'GSM2609169': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609168': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609167': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609166': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609165': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609164': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM1229374': {'state': 'healthy', 'tissue': 'blood', 'subject': 'individual A', 'treatment': 'LPS', 'point': '2 hr post-LPS'}, 'GSM1229373': {'state': 'healthy', 'tissue': 'blood', 'subject': 'individual A', 'treatment': 'none', 'point': 'baseline'}, 'GSM1229372': {'state': 'healthy', 'tissue': 'adipose', 'subject': 'individual A', 'treatment': 'LPS', 'point': '4 hr post-LPS'}, 'GSM1229371': {'state': 'healthy', 'tissue': 'adipose', 'subject': 'individual A', 'treatment': 'none', 'point': 'baseline'}, 'GSM1229370': {'state': 'healthy', 'tissue': 'blood', 'subject': 'individual A', 'treatment': 'LPS', 'point': '2 hr post-LPS'}, 'GSM2326039': {'type': 'Human embryonic stem cell'}, 'GSM2326038': {'type': 'Human embryonic stem cell'}, 'GSM2326035': {'type': 'Human embryonic stem cell'}, 'GSM2326034': {'type': 'Human embryonic stem cell'}, 'GSM2326037': {'type': 'Human embryonic stem cell'}, 'GSM2326036': {'type': 'Human embryonic stem cell'}, 'GSM2326031': {'type': 'Human embryonic stem cell'}, 'GSM2326030': {'type': 'Human embryonic stem cell'}, 'GSM2326033': {'type': 'Human embryonic stem cell'}, 'GSM2326032': {'type': 'Human embryonic stem cell'}, 'GSM1489610': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '3U3'}, 'GSM1489611': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '4T3'}, 'GSM2471119': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM2471118': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM1489614': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '4U3'}, 'GSM1489615': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '4U4'}, 'GSM1489616': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '5T3'}, 'GSM1489617': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '5T4'}, 'GSM2471113': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2471112': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM2471111': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM2471110': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM2471117': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2471116': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM2471115': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM2471114': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM2082548': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM2082549': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM1571096': {'stage': 'cardiac progenitor'}, 'GSM1571097': {'stage': 'cardiac progenitor'}, 'GSM1571094': {'stage': 'cardiac progenitor'}, 'GSM1571095': {'stage': 'cardiac progenitor'}, 'GSM1571092': {'stage': 'mesoderm'}, 'GSM1571093': {'stage': 'cardiac progenitor'}, 'GSM2082540': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2082541': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM1113298': {'line': 'MCF7', 'type': 'breast cancer cells', 'transfection': 'control siRNA'}, 'GSM1113299': {'line': 'MCF7', 'type': 'breast cancer cells', 'transfection': 'siJARID1B'}, 'GSM2325924': {'type': 'Human embryonic stem cell'}, 'GSM2209019': {'cell_type': 'eye lens fibroblast culture', 'point': '3days', 'gender': 'male', 'batch': '1', 'treatment': 'SUZ12kd-gapmer_15nM', 'line': 'GM09677'}, 'GSM2209018': {'cell_type': 'eye lens fibroblast culture', 'point': '3days', 'gender': 'male', 'batch': '1', 'treatment': 'SUZ12kd-gapmer_15nM', 'line': 'GM09677'}, 'GSM2325925': {'type': 'Human embryonic stem cell'}, 'GSM2211791': {'dht': '+', 'lentivirus': 'shNT'}, 'GSM2211790': {'dht': '+', 'lentivirus': 'shNT'}, 'GSM2211793': {'dht': '+', 'lentivirus': 'shERF'}, 'GSM2211792': {'dht': '+', 'lentivirus': 'shNT'}, 'GSM2211795': {'dht': '+', 'lentivirus': 'shERF'}, 'GSM2211794': {'dht': '+', 'lentivirus': 'shERF'}, 'GSM2823143': {'group': 'il6-tnf', 'number': '86'}, 'GSM2823142': {'group': 'il6-tnf', 'number': '85'}, 'GSM2823141': {'group': 'il6-tnf', 'number': '84'}, 'GSM2823140': {'group': 'il6-tnf', 'number': '76'}, 'GSM2460418': {'line': 'GM12878', 'variation': 'IRF2 sgRNA'}, 'GSM2460419': {'line': 'GM12878', 'variation': 'IRF2 sgRNA'}, 'GSM2823145': {'group': 'r848', 'number': '81'}, 'GSM2823144': {'group': 'r848', 'number': '79'}, 'GSM2460414': {'line': 'GM12878', 'variation': 'Control sgRNA'}, 'GSM2460415': {'line': 'GM12878', 'variation': 'Control sgRNA'}, 'GSM2460416': {'line': 'GM12878', 'variation': 'Control sgRNA'}, 'GSM2460417': {'line': 'GM12878', 'variation': 'IRF2 sgRNA'}, 'GSM2304523': {'tissue': 'Endometrial stromal cells', 'point': 'TP1 (naïve)'}, 'GSM2304522': {'tissue': 'Endometrial stromal cells', 'point': 'TP2 (decidualized)'}, 'GSM2304521': {'tissue': 'Endometrial stromal cells', 'point': 'TP1 (naïve)'}, 'GSM2304520': {'tissue': 'Endometrial stromal cells', 'point': 'TP2 (decidualized)'}, 'GSM2304527': {'tissue': 'Endometrial stromal cells', 'point': 'TP1 (naïve)'}, 'GSM2304526': {'tissue': 'Endometrial stromal cells', 'point': 'TP2 (decidualized)'}, 'GSM2304525': {'tissue': 'Endometrial stromal cells', 'point': 'TP1 (naïve)'}, 'GSM2304524': {'tissue': 'Endometrial stromal cells', 'point': 'TP2 (decidualized)'}, 'GSM2304528': {'tissue': 'Endometrial stromal cells', 'point': 'TP2 (decidualized)'}, 'GSM2856820': {'type': 'Normal human bronchial epithelium', 'treatment': 'Calcitriol'}, 'GSM2856821': {'type': 'Normal human bronchial epithelium', 'treatment': 'Calcitriol + Poly I:C'}, 'GSM2856822': {'type': 'Normal human bronchial epithelium', 'treatment': 'Poly I:C'}, 'GSM2856823': {'type': 'Normal human bronchial epithelium', 'treatment': 'Sham (culture media)'}, 'GSM3362544': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM2195022': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM3362546': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM3362547': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM3362540': {'gender': 'male', 'tissue': 'ESC derived from human blastocysts (H1, NIH code WA01)'}, 'GSM3362541': {'gender': 'female', 'tissue': 'ESC derived from human blastocysts (H9, NIH code WA09)'}, 'GSM3362542': {'gender': 'female', 'tissue': 'ESC derived from human blastocysts (H9, NIH code WA09)'}, 'GSM2195023': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM3362548': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM2195020': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1241223': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241222': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241221': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2195021': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1241227': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241226': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241225': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241224': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2195026': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1241229': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241228': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1808032': {'tissue': 'Heart'}, 'GSM742937': {'length': '50', 'type': 'single-end'}, 'GSM2441043': {'culture': '6', 'line': 'H9', 'set': 'Data Set 2-FGF2 effects days 1-6', 'run': 'run1513', 'treatment': '0'}, 'GSM742930': {'deviation': '26', 'length': '75', 'type': 'paired-end', 'size': '184'}, 'GSM2475311': {'age': '72', 'tissue': 'Macular Retina', 'Sex': 'Male'}, 'GSM2475310': {'age': '72', 'tissue': 'Peripheral RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2475313': {'age': '70', 'tissue': 'Peripheral Retina', 'Sex': 'Male'}, 'GSM2475312': {'age': '72', 'tissue': 'Macular RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2475315': {'age': '70', 'tissue': 'Macular Retina', 'Sex': 'Male'}, 'GSM2475314': {'age': '70', 'tissue': 'Peripheral RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2475316': {'age': '70', 'tissue': 'Macular RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM1626512': {'tissue': 'placental villus parenchyma'}, 'GSM2754513': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0229', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2784394': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '24h'}, 'GSM2784395': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '24h'}, 'GSM2784396': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '48h'}, 'GSM2784397': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '48h'}, 'GSM2784390': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '24h'}, 'GSM2784391': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '24h'}, 'GSM2784392': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '24h'}, 'GSM2784393': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '24h'}, 'GSM2784398': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '48h'}, 'GSM2784399': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '48h'}, 'GSM2575074': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2915857': {'transfection': 'Oct4', 'type': 'dermal fibroblasts'}, 'GSM2643497': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM PA1', 'time': '24 h'}, 'GSM2643496': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM PA1', 'time': '24 h'}, 'GSM2915855': {'transfection': 'control', 'type': 'dermal fibroblasts'}, 'GSM1980096': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2915854': {'transfection': 'control', 'type': 'dermal fibroblasts'}, 'GSM1267863': {'subtype': 'Poly(A) selected RNA', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM2643498': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM PA1', 'time': '24 h'}, 'GSM1626511': {'tissue': 'placental villus parenchyma'}, 'GSM2551189': {'type': 'hemogenic mesoderm (H-ECs)'}, 'GSM2551188': {'type': 'hemogenic mesoderm (H-ECs)'}, 'GSM2172298': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172299': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172292': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172293': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172290': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2498249': {'line': 'SW1990', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'positive'}, 'GSM2172296': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172297': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2551187': {'type': 'cardiogenic mesoderm (C-ECs)'}, 'GSM2172295': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2498246': {'line': 'SW1990', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'negative'}, 'GSM2498247': {'line': 'SW1990', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'negative'}, 'GSM2213942': {'line': 'JJN3', 'shRNA': 'ILF2 targeting', 'type': 'multiple myeloma cell line', 'treatment': 'melphalan'}, 'GSM2213943': {'line': 'JJN3', 'shRNA': 'ILF2 targeting', 'type': 'multiple myeloma cell line', 'treatment': 'melphalan'}, 'GSM2213940': {'line': 'JJN3', 'shRNA': 'non-silencing', 'type': 'multiple myeloma cell line', 'treatment': 'melphalan'}, 'GSM2213941': {'line': 'JJN3', 'shRNA': 'non-silencing', 'type': 'multiple myeloma cell line', 'treatment': 'melphalan'}, 'GSM2806571': {'line': 'A549', 'replicate': '1', 'treatment': '1 hr'}, 'GSM1423127': {'dysplasia': 'Simple intestinal metaplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM2451308': {'compartment': 'Epithelium', 'id': 'CUMC_032', 'library': 'NuGEN'}, 'GSM2451309': {'compartment': 'Stroma', 'id': 'CUMC_032', 'library': 'NuGEN'}, 'GSM2498245': {'line': 'SW1990', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'negative'}, 'GSM1423124': {'dysplasia': 'Simple intestinal metaplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM2451300': {'compartment': 'Epithelium', 'id': 'CUMC_028', 'library': 'NuGEN'}, 'GSM2451301': {'compartment': 'Stroma', 'id': 'CUMC_029', 'library': 'NuGEN'}, 'GSM2451302': {'compartment': 'Stroma', 'id': 'CUMC_026', 'library': 'NuGEN'}, 'GSM1423125': {'dysplasia': 'Simple intestinal metaplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM2451304': {'compartment': 'Epithelium', 'id': 'CUMC_030', 'library': 'NuGEN'}, 'GSM2451305': {'compartment': 'Stroma', 'id': 'CUMC_030', 'library': 'NuGEN'}, 'GSM2451306': {'compartment': 'Epithelium', 'id': 'CUMC_031', 'library': 'NuGEN'}, 'GSM2806576': {'line': 'A549', 'replicate': '2', 'treatment': '5 hr'}, 'GSM1602253': {'line': 'C1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'resveratrol'}, 'GSM1602252': {'line': 'C1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'DMSO'}, 'GSM1602251': {'line': 'C1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'DMSO'}, 'GSM1602250': {'line': 'C1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'chloramphenicol'}, 'GSM1602257': {'line': 'C2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'chloramphenicol'}, 'GSM1602256': {'line': 'C2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'AICAR'}, 'GSM1602255': {'line': 'C2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'AICAR'}, 'GSM1602254': {'line': 'C1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'resveratrol'}, 'GSM1602259': {'line': 'C2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'DMSO'}, 'GSM1602258': {'line': 'C2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'chloramphenicol'}, 'GSM2741987': {'disease': 'atopic dermatitis (AD)', 'mutation': 'WT'}, 'GSM2411763': {'line': '12569A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM1423129': {'dysplasia': 'Simple intestinal metaplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM2458766': {'induction': 'none', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'unlabeled RNA (flowthrough)'}, 'GSM2741988': {'disease': 'atopic dermatitis (AD)', 'mutation': 'WT'}, 'GSM2741989': {'disease': 'atopic dermatitis (AD)', 'mutation': 'WT'}, 'GSM1957449': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957448': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2565219': {'construction': 'PLATE-Seq', 'drug': 'Olaparib (AZD2281)'}, 'GSM1957441': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957440': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957443': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957442': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957445': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957444': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957447': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957446': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2817706': {'type': 'MIA PACA-2', 'treatment': 'CM03 6h'}, 'GSM2184219': {'line': 'NB-1', 'type': 'neuroblastoma', 'agent': 'ceritinib'}, 'GSM2184218': {'line': 'NB-1', 'type': 'neuroblastoma', 'agent': 'none'}, 'GSM2184217': {'line': 'NB-1', 'type': 'neuroblastoma', 'agent': 'none'}, 'GSM2133540': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133543': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133542': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133545': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133544': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM1241140': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2166079': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166078': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'Santa Cruz sc-7292', 'genotype': 'lipodystrophy patient with LMNA p.R482W mutation'}, 'GSM2166077': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'N/A', 'genotype': 'normal'}, 'GSM2166076': {'type': 'Fibroblasts', 'passages': '5-7', 'antibody': 'Santa Cruz sc-7292', 'genotype': 'normal'}, 'GSM2166075': {'replicate': '1', 'line': 'ALL leukemia cell line REH', 'antibody': 'H3K4me3 (Abcam, catalog# 8580)'}, 'GSM2166074': {'replicate': '1', 'line': 'ALL leukemia cell line Nalm6', 'antibody': 'H3K4me3 (Abcam, catalog# 8580)'}, 'GSM1836760': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'miR-155-/-'}, 'GSM2533721': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2098739': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM1595857': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with vector expressing IkB-alpha super-repressor & treated with DMSO'}, 'GSM2256096': {'infected': 'common:TSS89234_+_58287660.23-P1P2', 'type': 'HeLa'}, 'GSM2256095': {'infected': 'common:TSS89234_-_58287677.23-P1P2', 'type': 'HeLa'}, 'GSM2256094': {'infected': 'common:TSS11541_+_102133421.23-P1P2', 'type': 'HeLa'}, 'GSM2533725': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533724': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2610850': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2038172': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM1595858': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with vector expressing IkB-alpha super-repressor & treated with DMSO'}, 'GSM2533727': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2038173': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM2256090': {'infected': 'cancer_common:TSS98937_+_120868042.23-CUFF.48273.1', 'type': 'HeLa'}, 'GSM2098730': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098731': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2038176': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM2098737': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM1595859': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with vector expressing IkB-alpha super-repressor & treated with erlotinib'}, 'GSM1820118': {'type': 'Purified normal B cells', 'genotype': 'Normal'}, 'GSM2158129': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM1820119': {'type': 'Purified normal B cells', 'genotype': 'Normal'}, 'GSM2235551': {'transfection': 'pCI-Neo-TWIST1', 'tissue': 'Ovary', 'line': 'Ovcar8'}, 'GSM2235550': {'transfection': 'pCI-Neo-TWIST1', 'tissue': 'Ovary', 'line': 'Ovcar8'}, 'GSM2235553': {'transfection': 'pCI-Neo-sh492', 'tissue': 'Ovary', 'line': 'Ovcar8'}, 'GSM2235552': {'transfection': 'pCI-Neo-sh492', 'tissue': 'Ovary', 'line': 'Ovcar8'}, 'GSM2243929': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H7', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243928': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243921': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A7', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243920': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C8', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243923': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E7', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243922': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B11', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243925': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H3', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243924': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H5', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243927': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243926': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G12', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2840308': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840309': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840302': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840303': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840300': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840301': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840306': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840307': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840304': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840305': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2492569': {'tissue': 'cord blood in artificial thymic organoid', 'type': 'ATO-derived naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8SP', 'method': 'Sorted CB CD34+CD3- HSPCs were cultured in MS5-hDLL1 ATOs for 6-8 weeks followed by FACS sorting for the indicated phenotype'}, 'GSM2350069': {'culture': '4 months', 'line': 'ARPE-19', 'type': 'retinal pigment epithelial (RPE) cell line'}, 'GSM1712143': {'line': 'MR49F', 'treatment': 'DHT: CSM'}, 'GSM1556629': {'state': 'asthma', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556626': {'state': 'asthma', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556627': {'state': 'asthma', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM2492567': {'tissue': 'cord blood in artificial thymic organoid', 'type': 'ATO-derived naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8SP', 'method': 'Sorted CB CD34+CD3- HSPCs were cultured in MS5-hDLL1 ATOs for 6-8 weeks followed by FACS sorting for the indicated phenotype'}, 'GSM1556625': {'state': 'asthma', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1556623': {'state': 'asthma', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM2638030': {'with': 'IL-2 and IL-7', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM721121': {'origin': 'Cell Line', 'line': 'LNCaP', 'tissue': 'Prostate', 'type': 'Cancer Cell Line'}, 'GSM721120': {'origin': 'Cell Line', 'line': 'LNCaP', 'tissue': 'Prostate', 'type': 'Cancer Cell Line'}, 'GSM721123': {'origin': 'Cell Line', 'line': 'PrEC', 'tissue': 'Prostate', 'type': 'Normal Cell Line'}, 'GSM721122': {'origin': 'Cell Line', 'line': 'LNCaP', 'tissue': 'Prostate', 'type': 'Cancer Cell Line'}, 'GSM721125': {'origin': 'Cell Line', 'line': 'PrEC', 'tissue': 'Prostate', 'type': 'Normal Cell Line'}, 'GSM721124': {'origin': 'Cell Line', 'line': 'PrEC', 'tissue': 'Prostate', 'type': 'Normal Cell Line'}, 'GSM721126': {'origin': 'Cell Line', 'line': 'PrEC', 'tissue': 'Prostate', 'type': 'Normal Cell Line'}, 'GSM1712142': {'line': 'MR49F', 'treatment': 'Vehicle: CSM'}, 'GSM1561628': {'type': 'Uninvolved skin'}, 'GSM1561629': {'type': 'Uninvolved skin'}, 'GSM2610831': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1561620': {'type': 'Uninvolved skin'}, 'GSM2458768': {'induction': 'none', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'total RNA'}, 'GSM1561622': {'type': 'Uninvolved skin'}, 'GSM1561623': {'type': 'normal skin'}, 'GSM1561624': {'type': 'Uninvolved skin'}, 'GSM1561625': {'type': 'Uninvolved skin'}, 'GSM1561626': {'type': 'Uninvolved skin'}, 'GSM1561627': {'type': 'Uninvolved skin'}, 'GSM1808095': {'tissue': 'LCLs'}, 'GSM2309839': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '62.68'}, 'GSM2616754': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616755': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616756': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616757': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616750': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616751': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616752': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616753': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM1808094': {'tissue': 'LCLs'}, 'GSM2616758': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616759': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM1233914': {'replicate': '1', 'line': '12890', 'antibody': 'CTCF'}, 'GSM1233915': {'replicate': '2.2', 'line': '12890', 'antibody': 'CTCF'}, 'GSM1233916': {'replicate': '2', 'line': '12890', 'antibody': 'CTCF'}, 'GSM1571921': {'environment': '2D culture conditions', 'line': 'SW620'}, 'GSM1233910': {'replicate': '2', 'line': '12878', 'antibody': 'RNA-seq'}, 'GSM1233911': {'replicate': '1.2', 'line': '12878', 'antibody': 'SA1'}, 'GSM1233912': {'replicate': '1', 'line': '12878', 'antibody': 'SA1'}, 'GSM1233913': {'replicate': '2', 'line': '12878', 'antibody': 'SA1'}, 'GSM1395423': {'subtype': 'Neu+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1233918': {'replicate': '2', 'line': '12890', 'antibody': 'H3K27Ac'}, 'GSM1233919': {'replicate': '1', 'line': '12890', 'antibody': 'H3K27me3'}, 'GSM2105117': {'gender': 'Female', 'age': '13 Year old', 'batch': '1L', 'condition': 'Trisomic'}, 'GSM1081527': {'line': 'HEK293T RAD21cv'}, 'GSM2105115': {'gender': 'Female', 'age': '13 Year old', 'batch': '1L', 'condition': 'Trisomic'}, 'GSM1571924': {'environment': '2D culture conditions', 'line': 'SW620'}, 'GSM2105110': {'gender': 'Female', 'age': '9 Year old', 'batch': '1L', 'condition': 'Trisomic'}, 'GSM1808097': {'tissue': 'LCLs'}, 'GSM1081528': {'line': 'HEK293T RAD21cv'}, 'GSM1081529': {'line': 'HEK293T RAD21cv'}, 'GSM2734265': {'experiment': '20170322C', 'area': 'Cerebellar Hemisphere', 'age': '49 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Male', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0009-IU'}, 'GSM1395422': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2285791': {'status': 'healthy volunteer', 'gender': 'female', 'age': '33', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1808096': {'tissue': 'LCLs'}, 'GSM2303320': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303321': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303322': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303323': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303324': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303325': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303326': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303327': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303328': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303329': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2527949': {'line': 'TLBR1', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM2302051': {'timepoint': 'Post', 'id': '16', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302050': {'timepoint': 'Pre', 'id': '16', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302053': {'timepoint': 'Post', 'id': '17', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302052': {'timepoint': 'Pre', 'id': '17', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302055': {'timepoint': 'Post', 'id': '18', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2430718': {'type': 'human foreskin keratinocytes', 'with': 'vector expressing HPV16 E7'}, 'GSM1527725': {'passages': '13 days', 'type': 'Th1'}, 'GSM2302056': {'timepoint': 'Pre', 'id': '19', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302059': {'timepoint': 'Post', 'id': '20', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302058': {'timepoint': 'Pre', 'id': '20', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM1527729': {'passages': '0 days', 'type': 'Naive CD4+ cells'}, 'GSM2029362': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- (Null)'}, 'GSM2527945': {'line': 'Mac-1', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM2527946': {'line': 'Mac-2A', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM1808090': {'tissue': 'LCLs'}, 'GSM2527947': {'line': 'Mac-2B', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM2029369': {'antibody': 'None', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM2734262': {'experiment': '20170322A', 'area': 'Cerebellar Hemisphere', 'age': '35 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0008-CR'}, 'GSM2430713': {'type': 'human foreskin keratinocytes', 'with': 'control vector'}, 'GSM2458840': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.33'}, 'GSM2458841': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.75'}, 'GSM2458842': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.50'}, 'GSM2458843': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '10.33'}, 'GSM2519365': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2519364': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1880787': {'preparation': '6.25.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM1880786': {'preparation': '6.25.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM1880789': {'preparation': '6.25.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM1848810': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 15', 'point': '3 hours after exercise'}, 'GSM1848813': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 17', 'point': '3 hours after exercise'}, 'GSM1848812': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 17', 'point': 'immediately after exercise'}, 'GSM1848815': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 2', 'point': 'immediately after exercise'}, 'GSM1848814': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 17', 'point': 'pre exercise'}, 'GSM1848817': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 2', 'point': 'pre exercise'}, 'GSM1848816': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 2', 'point': '3 hours after exercise'}, 'GSM1808093': {'tissue': 'LCLs'}, 'GSM2734261': {'experiment': '20170322A', 'area': 'Cerebellar Hemisphere', 'age': '35 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0008-CR'}, 'GSM1808092': {'tissue': 'LCLs'}, 'GSM1896126': {'individual': 'AF47', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896127': {'individual': 'AF47', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2333540': {'type': 'dermal fibroblasts, immortalized', 'treatment': 'none'}, 'GSM1896125': {'individual': 'AF45', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2388509': {'tissue': 'Hepatoblastoma liver'}, 'GSM2388508': {'tissue': 'Hepatoblastoma liver'}, 'GSM1896120': {'individual': 'AF43', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896121': {'individual': 'AF43', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2388505': {'tissue': 'Hepatoblastoma liver'}, 'GSM2388504': {'tissue': 'Hepatoblastoma liver'}, 'GSM2388507': {'tissue': 'Hepatoblastoma liver'}, 'GSM2388506': {'tissue': 'Hepatoblastoma liver'}, 'GSM2388501': {'tissue': 'Hepatoblastoma liver'}, 'GSM2388500': {'tissue': 'Normal liver'}, 'GSM2388503': {'tissue': 'Hepatoblastoma liver'}, 'GSM2388502': {'tissue': 'Hepatoblastoma liver'}, 'GSM800471': {'input': '1 pg', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM800470': {'input': '10 pg', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM2387233': {'tissue': 'heart'}, 'GSM2285792': {'status': 'healthy volunteer', 'gender': 'female', 'age': '85', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2480926': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480927': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480925': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480928': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'eIF4A1', 'fraction': 'none'}, 'GSM2480929': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'eIF4A1', 'fraction': 'none'}, 'GSM1969196': {'source': 'epithelium', 'line': 'T47D', 'group': 'EXPERIMENT 5', 'description': 'T47D cells semi-permeabilized with digitonin for 3 minutes', 'variation': 'wild type'}, 'GSM1969197': {'source': 'epithelium', 'line': 'T47D', 'group': 'EXPERIMENT 5', 'description': 'T47D cells semi-permeabilized with digitonin for 9 minutes', 'variation': 'wild type'}, 'GSM2481039': {'passages': 'p38', 'type': 'H9', 'genotype': '46 XX, POLR3G siRNA knockdown'}, 'GSM2481038': {'passages': 'p38', 'type': 'H9', 'genotype': '46 XX, wild type'}, 'GSM1969192': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 4', 'description': '36h scrambled RNA control', 'variation': '36h scrambled RNA control'}, 'GSM1969193': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 4', 'description': '36h scrambled RNA control followed by poly-IC treatment for 6h', 'variation': '36h scrambled RNA control'}, 'GSM1969190': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 4', 'description': '36h RNAi for RNase L followed by poly-IC treatment for 6h', 'variation': '36h RNAi for RNase L'}, 'GSM1969191': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 4', 'description': '36h scrambled RNA control', 'variation': '36h scrambled RNA control'}, 'GSM2481033': {'passages': 'p38', 'type': 'H9', 'genotype': '46 XX, POLR3G siRNA knockdown'}, 'GSM2481032': {'passages': 'p38', 'type': 'H9', 'genotype': '46 XX, wild type'}, 'GSM2481031': {'passages': 'p66', 'type': 'HS360', 'genotype': '46 XY, POLR3G siRNA knockdown'}, 'GSM2481030': {'passages': 'p66', 'type': 'HS360', 'genotype': '46 XY, wild type'}, 'GSM2481037': {'passages': 'p66', 'type': 'HS360', 'genotype': '46 XY, wild type'}, 'GSM2481036': {'passages': 'p62', 'type': 'HS360', 'genotype': '46 XY, POLR3G siRNA knockdown'}, 'GSM2481035': {'passages': 'p62', 'type': 'HS360', 'genotype': '46 XY, POLR3G siRNA knockdown'}, 'GSM2481034': {'passages': 'p62', 'type': 'HS360', 'genotype': '46 XY, wild type'}, 'GSM1868814': {'lineage': 'Primitive Endoderm', 'number': 'Embryo 5', 'stage': 'Blastocyst'}, 'GSM2100899': {'status': 'no', 'gender': 'male', 'age': '76', 'race': 'white'}, 'GSM2100898': {'status': 'yes', 'gender': 'female', 'age': '64', 'race': 'white'}, 'GSM2100895': {'status': 'no', 'gender': 'female', 'age': '60', 'race': 'white'}, 'GSM2100894': {'status': 'yes', 'gender': 'female', 'age': '77', 'race': 'white'}, 'GSM2100897': {'status': 'no', 'gender': 'male', 'age': '46', 'race': 'white'}, 'GSM2100896': {'status': 'yes', 'gender': 'male', 'age': '68', 'race': 'white'}, 'GSM2100891': {'status': 'no', 'gender': 'female', 'age': '76', 'race': 'white'}, 'GSM2100890': {'status': 'yes', 'gender': 'male', 'age': '56', 'race': 'black'}, 'GSM2100893': {'status': 'yes', 'gender': 'male', 'age': '60', 'race': 'white'}, 'GSM2100892': {'status': 'no', 'gender': 'female', 'age': '49', 'race': 'white'}, 'GSM1638970': {'line': 'SW480', 'vector': 'pRTR', 'treatment': '48 hours doxycyclin'}, 'GSM2630121': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405838'}, 'GSM2248270': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'undefined', 'ercc_dilution': '1000000'}, 'GSM2248271': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'undefined', 'ercc_dilution': '1000000'}, 'GSM2248272': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'duct', 'ercc_dilution': '1000000'}, 'GSM2248273': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'acinar', 'ercc_dilution': '1000000'}, 'GSM2248274': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2248275': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2248276': {'count': '1', 'ercc_mix': 'mix1', 'length': '72', 'type': 'acinar', 'ercc_dilution': '1000000'}, 'GSM2044763': {'line': 'MCF7', 'shRNA': 'shTRIM24', 'variation': 'SUMO DM rescue'}, 'GSM1657150': {'differentiation': '21', 'treated': 'IFN-treated', 'stage': 'immature hepatocytes'}, 'GSM2649853': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2048458': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048459': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2649852': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2048452': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048453': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048450': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048451': {'subset': 'Cell Population', 'status': 'n/a', 'variation': 'CSL -/-'}, 'GSM2048456': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048457': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048454': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048455': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2372269': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372268': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2436487': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436480': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2372267': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372266': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2100239': {'rin': '9.6', 'Sex': 'Female', 'sspg': '41', 'age': '53', 'bmi': '25.9', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '845', 'method': 'Qiagen:trizol'}, 'GSM2100238': {'rin': '9.5', 'Sex': 'Female', 'sspg': '41', 'age': '53', 'bmi': '25.9', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '845', 'method': 'Qiagen:trizol'}, 'GSM2754750': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_1140', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2610836': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2436482': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2100231': {'rin': '9.7', 'Sex': 'Female', 'sspg': '200', 'age': '60', 'bmi': '27.3', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Hispanic', 'lot': '1264008A', 'date': '101713', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '839', 'method': 'Qiagen:trizol'}, 'GSM2100230': {'rin': '9.3', 'Sex': 'Female', 'sspg': '200', 'age': '60', 'bmi': '27.3', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Hispanic', 'lot': '1264008A', 'date': '101713', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '839', 'method': 'Qiagen:trizol'}, 'GSM2100233': {'rin': '10', 'Sex': 'Female', 'sspg': '153', 'age': '52', 'bmi': '30.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '843', 'method': 'Life-Tech GITC'}, 'GSM2436483': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2100235': {'rin': '7.8', 'Sex': 'Female', 'sspg': '76', 'age': '55', 'bmi': '34.7', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '845A', 'method': 'Qiagen:trizol'}, 'GSM2100234': {'rin': '10', 'Sex': 'Female', 'sspg': '153', 'age': '52', 'bmi': '30.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '843', 'method': 'Life-Tech GITC'}, 'GSM2100237': {'rin': '7.3', 'Sex': 'Female', 'sspg': '76', 'age': '55', 'bmi': '34.7', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '845A', 'method': 'Qiagen:trizol'}, 'GSM2100236': {'rin': '7', 'Sex': 'Female', 'sspg': '76', 'age': '55', 'bmi': '34.7', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '845A', 'method': 'Qiagen:trizol'}, 'GSM922269': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2565212': {'construction': 'PLATE-Seq', 'drug': 'Sunitinib Malate'}, 'GSM2198072': {'depletion': 'Depletion of multiple histone H1 variants', 'line': 'T47D-MTVL', 'expression': 'Histone H1 shRNA vector', 'dox': 'Treated'}, 'GSM2198073': {'depletion': 'Depletion of multiple histone H1 variants', 'line': 'T47D-MTVL', 'expression': 'Histone H1 shRNA vector', 'dox': 'Treated'}, 'GSM2198070': {'depletion': 'No depletion', 'line': 'T47D-MTVL', 'expression': 'Histone H1 shRNA vector', 'dox': 'Untreated'}, 'GSM2198071': {'depletion': 'No depletion', 'line': 'T47D-MTVL', 'expression': 'Histone H1.4 shRNA vector', 'dox': 'Untreated'}, 'GSM2198076': {'depletion': 'No depletion', 'line': 'T47D-MTVL', 'expression': 'Random shRNA vector', 'dox': 'Treated'}, 'GSM2198074': {'depletion': 'Depletion of histone H1.4', 'line': 'T47D-MTVL', 'expression': 'Histone H1.4 shRNA vector', 'dox': 'Treated'}, 'GSM2198075': {'depletion': 'Depletion of histone H1.4', 'line': 'T47D-MTVL', 'expression': 'Histone H1.4 shRNA vector', 'dox': 'Treated'}, 'GSM2312102': {'culture': '12', 'line': 'DCX-'}, 'GSM2312103': {'culture': '12', 'line': 'DCX-'}, 'GSM2312100': {'culture': '12', 'line': 'DCX-'}, 'GSM2312101': {'culture': '12', 'line': 'DCX-'}, 'GSM2312106': {'culture': '12', 'line': 'DCX-'}, 'GSM2312107': {'culture': '12', 'line': 'DCX-'}, 'GSM984389': {'line': '22RV1', 'antibody': 'AR', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Abcam'}, 'GSM2312105': {'culture': '12', 'line': 'DCX-'}, 'GSM2312108': {'culture': '12', 'line': 'DCX-'}, 'GSM2312109': {'culture': '12', 'line': 'DCX-'}, 'GSM2589377': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589379': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2589378': {'point': 'post-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM3319631': {'region': 'Cerebellum', 'age': '64', 'id': 'B'}, 'GSM1946218': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19190', 'for': '60min'}, 'GSM1946219': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19190', 'for': '60min'}, 'GSM2607602': {'line': 'WA26'}, 'GSM1946216': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19190', 'for': '30min'}, 'GSM2607603': {'line': 'WA26'}, 'GSM2840619': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2837094': {'with': 'control inhibitor', 'line': 'BeWo', 'type': 'choriocarcinoma cells'}, 'GSM2837095': {'with': 'hsa-miR-518a-3p inhibitor', 'line': 'BeWo', 'type': 'choriocarcinoma cells'}, 'GSM2837090': {'with': 'control inhibitor', 'line': 'JAR', 'type': 'choriocarcinoma cells'}, 'GSM2837091': {'with': 'hsa-hsa-miR-518a-3p inhibitor', 'line': 'JAR', 'type': 'choriocarcinoma cells'}, 'GSM2837092': {'with': 'control inhibitor', 'line': 'JEG-3', 'type': 'choriocarcinoma cells'}, 'GSM2837093': {'with': 'hsa-miR-518a-3p inhibitor', 'line': 'JEG-3', 'type': 'choriocarcinoma cells'}, 'GSM2099991': {'rin': '10', 'Sex': 'Male', 'sspg': '93', 'age': '53', 'bmi': '25.6', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '110', 'method': 'Life-Tech GITC'}, 'GSM1253383': {'cluster': 'CL', 'as': 'Brx39_CL_011513', 'patient': 'Patient#6'}, 'GSM2285378': {'replicate': '1', 'time': '24 h', 'type': 'dlbcl', 'name': 'OCILY19', 'treatment': 'AZD5153'}, 'GSM2099992': {'rin': '10', 'Sex': 'Male', 'sspg': '93', 'age': '53', 'bmi': '25.6', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '110', 'method': 'Life-Tech GITC'}, 'GSM2099995': {'rin': '10', 'Sex': 'Female', 'sspg': '128', 'age': '59', 'bmi': '28.8', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Hispanic', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '120', 'method': 'Life-Tech GITC'}, 'GSM2099994': {'rin': '10', 'Sex': 'Female', 'sspg': '128', 'age': '59', 'bmi': '28.8', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Hispanic', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '120', 'method': 'Life-Tech GITC'}, 'GSM2099997': {'rin': '10', 'Sex': 'Female', 'sspg': '129', 'age': '46', 'bmi': '32.3', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '122', 'method': 'Life-Tech GITC'}, 'GSM2099996': {'rin': '10', 'Sex': 'Female', 'sspg': '129', 'age': '46', 'bmi': '32.3', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '122', 'method': 'Life-Tech GITC'}, 'GSM2285372': {'differentiation': 'iPS-derived', 'conditions': 'grown in neural conditioned medium NCM (Transwell co-culture)'}, 'GSM2285373': {'differentiation': 'iPS-derived', 'conditions': 'grown in neural conditioned medium NCM (Transwell co-culture)'}, 'GSM2285370': {'differentiation': 'hES-derived', 'conditions': 'grown in basal medium'}, 'GSM1946211': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19172', 'for': '30min'}, 'GSM2285376': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM2877827': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2285374': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM2285375': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM1694665': {'typed': 'motor neurons', 'line': '1-38G'}, 'GSM1694664': {'typed': 'motor neurons', 'line': 'BJ-riPS'}, 'GSM2425028': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1253384': {'cluster': 'SC', 'as': 'Brx39_SC_011513', 'patient': 'Patient#6'}, 'GSM1957379': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957378': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2560260': {'addition': 'RNA oligos added: 50% CCA-ending, 50% CC-ending', 'with': 'treatement with AlkB-derived enzyme mixture', 'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'subtype': 'tRNA'}, 'GSM2560261': {'addition': 'RNA oligos added: 25% CCA-ending,75% CC-ending', 'with': 'treatement with AlkB-derived enzyme mixture', 'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'subtype': 'tRNA'}, 'GSM1365978': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'LBH.589', 'timepoint': '4hr'}, 'GSM2047524': {'well': 'A08', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1365972': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Control', 'timepoint': '4hr'}, 'GSM1365973': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'LBH.589', 'timepoint': '4hr'}, 'GSM1365970': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Combo', 'timepoint': '24hr'}, 'GSM1365971': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'NMP', 'timepoint': '24hr'}, 'GSM1365976': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'NMP', 'timepoint': '4hr'}, 'GSM1365977': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Control', 'timepoint': '4hr'}, 'GSM1365974': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': '5.AZA', 'timepoint': '4hr'}, 'GSM1365975': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Combo', 'timepoint': '4hr'}, 'GSM1957374': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1872951': {'10': 'Non-remitter', 'name': 'HF-37284', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2324149': {'group': 'BCG', 'type': 'PBMC', 'day': '56', 'subjectid': '2005'}, 'GSM2324148': {'group': 'BCG', 'type': 'PBMC', 'day': '28', 'subjectid': '2005'}, 'GSM3711599': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '6'}, 'GSM1872953': {'10': 'Non-remitter', 'name': 'HF-37531', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'NOS'}, 'GSM2324143': {'group': 'BCG', 'type': 'PBMC', 'day': '28', 'subjectid': '202'}, 'GSM2324142': {'group': 'BCG', 'type': 'PBMC', 'day': '14', 'subjectid': '202'}, 'GSM2324141': {'group': 'BCG', 'type': 'PBMC', 'day': '0', 'subjectid': '202'}, 'GSM1668456': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 5 days post induced OSKM viral Expression.', 'genotype': 'WT'}, 'GSM2324147': {'group': 'BCG', 'type': 'PBMC', 'day': '14', 'subjectid': '2005'}, 'GSM2324146': {'group': 'BCG', 'type': 'PBMC', 'day': '0', 'subjectid': '2005'}, 'GSM2324145': {'group': 'BCG', 'type': 'PBMC', 'day': '84', 'subjectid': '202'}, 'GSM2324144': {'group': 'BCG', 'type': 'PBMC', 'day': '56', 'subjectid': '202'}, 'GSM3319638': {'region': 'Hippocampus', 'age': '61', 'id': 'C'}, 'GSM1956028': {'a': '61794', 'cd38': '163', 'cd49f': '585', 'w': '67691', 'h': '59827', 'lin': '1150', 'cd34': '6581', 'cd90': '3445', 'cd7': '213', 'cd10': '1486', 'time': '10919', 'cd135': '2360', 'cd45ra': '305'}, 'GSM2362500': {'line': 'HEK293'}, 'GSM2098646': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098647': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098644': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098645': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098642': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098643': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098640': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098641': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2817804': {'type': 'PANC-1', 'treatment': 'untreated'}, 'GSM2817801': {'type': 'PANC-1', 'treatment': 'untreated'}, 'GSM2817800': {'type': 'PANC-1', 'treatment': 'gemcitabine 3uM 6h'}, 'GSM2098648': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098649': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2287538': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2575132': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'A/California/04/09 (H1N1), MOI 2', 'point': '18h'}, 'GSM1632423': {'line': 'BJ', 'type': 'reprogramming cells', 'number': 'passage 8', 'transgenes': 'OCT4 (10 MOI), SOX2 (5 MOI), KLF4 (5 MOI)', 'time': 'day 3 post transduction'}, 'GSM2362509': {'line': 'HEK293'}, 'GSM2362508': {'line': 'HEK293'}, 'GSM2287539': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2098669': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2572312': {'tissue': 'neonatal foreskin', 'type': 'Cultured primary keratinocytes', 'treatment': 'UVR'}, 'GSM2575130': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '315', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM3186708': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '51', 'sample_id': '32-0015', 'tissue': 'muscle biopsy', 'batch': 'IV', 'rank': '1', 't1': '0', 'score': '0.50726', 'fraction': '0.10982', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM3186709': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'score': '0.51304', 'gender': 'male', 'age': '59', 'batch': 'IV', 'rank': '1', 't1': '3', 'tissue': 'muscle biopsy', 'fraction': '0.42758', 'sample_id': '32-0016', 'stir': '2'}, 'GSM3186702': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '65', 'sample_id': '01-0021', 'tissue': 'muscle biopsy', 'batch': 'IV', 'rank': '3', 't1': '0', 'score': '6.79192', 'fraction': '0.057882', 'inflam': '0', 'active': '1', 'stir': '1'}, 'GSM3186703': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '61', 'sample_id': '01-0032', 'tissue': 'muscle biopsy', 'batch': 'IV', 'rank': '1', 't1': '0', 'score': '0.19716', 'fraction': '0.076311', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM3186700': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '42', 'sample_id': '32-0013', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '2', 't1': '1', 'score': '2.21498', 'fraction': '0.074414', 'inflam': '1', 'active': '1', 'stir': '1'}, 'GSM3186701': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '62', 'sample_id': '32-0014', 'tissue': 'muscle biopsy', 'batch': 'III', 'rank': '1', 't1': '0', 'score': '0.03792', 'fraction': '0.1554', 'inflam': '0', 'active': '0', 'stir': '2'}, 'GSM3186706': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'IV', 'sample_id': '01-0049'}, 'GSM3186707': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '55', 'sample_id': '01-0038', 'tissue': 'muscle biopsy', 'batch': 'IV', 'rank': '1', 't1': '0', 'score': '0.5284', 'fraction': '0.0548', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM3186704': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'IV', 'sample_id': '01-0046'}, 'GSM3186705': {'status': 'Control', 'tissue': 'muscle biopsy', 'batch': 'IV', 'sample_id': '01-0047'}, 'GSM2532919': {'condition': 'Preterm Delivery'}, 'GSM2532918': {'condition': 'Preterm Delivery'}, 'GSM2532911': {'condition': 'Term Delivery'}, 'GSM2532910': {'condition': 'Term Delivery'}, 'GSM2532913': {'condition': 'Term Delivery'}, 'GSM2532912': {'condition': 'Term Delivery'}, 'GSM2532915': {'condition': 'Term Delivery'}, 'GSM2532914': {'condition': 'Term Delivery'}, 'GSM2532917': {'condition': 'Preterm Delivery'}, 'GSM2532916': {'condition': 'Preterm Delivery'}, 'GSM2194223': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194222': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194221': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194220': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194227': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194226': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194225': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194224': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194229': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194228': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1889917': {'sirna': 'Negative control siRNA treated', 'line': 'Huh7', 'tissue': 'Liver', 'type': 'Hepatocellular carcinoma cell line'}, 'GSM1401344': {'rin': '9.3', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-05-14'}, 'GSM1889915': {'sirna': 'Negative control siRNA treated', 'line': 'Huh1', 'tissue': 'Liver', 'type': 'Hepatocellular carcinoma cell line'}, 'GSM2093082': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1401342': {'rin': '5.09', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-04-30'}, 'GSM1401343': {'rin': '9.5', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-05-07'}, 'GSM2047822': {'well': 'B03', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2093087': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2047820': {'well': 'B01', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047821': {'well': 'B02', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2572686': {'antibody': 'none', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced'}, 'GSM2577141': {'line': 'UM-UC1', 'type': 'bladder cancer cell line'}, 'GSM2577140': {'line': 'UM-UC18', 'type': 'bladder cancer cell line'}, 'GSM2577143': {'line': 'UM-UC4', 'type': 'bladder cancer cell line'}, 'GSM2577142': {'line': 'UM-UC3', 'type': 'bladder cancer cell line'}, 'GSM2577145': {'line': 'UM-UC6', 'type': 'bladder cancer cell line'}, 'GSM2577144': {'line': 'UM-UC5', 'type': 'bladder cancer cell line'}, 'GSM2577147': {'line': 'UM-UC9', 'type': 'bladder cancer cell line'}, 'GSM2577146': {'line': 'UM-UC7', 'type': 'bladder cancer cell line'}, 'GSM765389': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8828', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'karyotype': 'normal', 'biorep': '033WC', 'spikeinpool': 'Nist14'}, 'GSM2026066': {'vendor': 'Abcam', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'RUNX1'}, 'GSM2026065': {'line': 'Kasumi -1', 'type': 'human acute myeloid leukemia cell line', 'variation': 'ERG Knockdown'}, 'GSM2026064': {'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line'}, 'GSM2026063': {'vendor': 'Diagenode', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'H3K9K14ac'}, 'GSM2026062': {'vendor': 'Diagenode', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'H3K9K14ac'}, 'GSM2026061': {'vendor': 'Abcam', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'HDAC2'}, 'GSM2026060': {'vendor': 'Abcam', 'line': 'Kasumi-1', 'type': 'human acute myeloid leukemia cell line', 'target': 'HDAC1'}, 'GSM2471096': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM2471097': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2471094': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM2471095': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM2471092': {'status': 'HIV', 'donorid': 'BC049', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2471093': {'status': 'HIV', 'donorid': 'BC049', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2471090': {'status': 'HIV', 'donorid': 'BC047', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2471091': {'status': 'HIV', 'donorid': 'BC049', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM765388': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8686', 'biomaterial_type': 'immortalized cell line', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'line': 'MCF-7', 'readtype': '2x76D', 'biorep': '015WC', 'spikeinpool': 'Nist14'}, 'GSM2471099': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM1291158': {'gender': 'Female', 'state': 'healthy control', 'type': 'primary monocytes'}, 'GSM1291159': {'gender': 'Female', 'state': 'healthy control', 'type': 'primary monocytes'}, 'GSM1980159': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980158': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980157': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980156': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980155': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980154': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980153': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980152': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980151': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980150': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2430381': {'type': 'RA-MTX (not receiving methotrexate)'}, 'GSM2430380': {'type': 'Healthy control subject'}, 'GSM2430383': {'type': 'Systemic lupus erythematosus'}, 'GSM2430382': {'type': 'RA+MTX (receiving methotrexate)'}, 'GSM2430385': {'type': 'Psoriatic arthritis'}, 'GSM2430384': {'type': 'Psoriasis'}, 'GSM2430386': {'type': \"Sjogren's syndrome\"}, 'GSM2703812': {'section': 'bulge', 'tissue': 'hair follicle', 'age': 'range 27-45, median 31.9', 'diagnosis': 'Hamilton-Norwood baldness scale score 3-5'}, 'GSM2703813': {'section': 'bulb', 'tissue': 'hair follicle', 'age': 'range 27-45, median 31.9', 'diagnosis': 'Hamilton-Norwood baldness scale score 3-5'}, 'GSM2703811': {'section': 'bulb', 'tissue': 'hair follicle', 'age': 'range 27-45, median 31.9', 'diagnosis': 'Hamilton-Norwood baldness scale score 3-5'}, 'GSM2703816': {'section': 'bulge', 'tissue': 'hair follicle', 'age': 'range 21-34, median 29.1', 'diagnosis': 'normal'}, 'GSM2585398': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2703814': {'section': 'bulge', 'tissue': 'hair follicle', 'age': 'range 27-45, median 31.9', 'diagnosis': 'Hamilton-Norwood baldness scale score 3-5'}, 'GSM2703815': {'section': 'bulb', 'tissue': 'hair follicle', 'age': 'range 21-34, median 29.1', 'diagnosis': 'normal'}, 'GSM2585395': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585394': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585397': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585396': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585391': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585390': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585393': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585392': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM1661509': {'line': 'A375', 'treatment': 'A771726-treated for 0 hrs'}, 'GSM2295870': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG6'}, 'GSM2295871': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG6'}, 'GSM2295872': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG6'}, 'GSM2295873': {'type': 'HeLa cells', 'rescue': 'SMG6', 'kd': 'SMG6'}, 'GSM2295874': {'type': 'HeLa cells', 'rescue': 'SMG6', 'kd': 'SMG6'}, 'GSM2295875': {'type': 'HeLa cells', 'rescue': 'SMG6', 'kd': 'SMG6'}, 'GSM2295876': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'scramble'}, 'GSM2295877': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'scramble'}, 'GSM2295878': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'scramble'}, 'GSM1533421': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '320 min'}, 'GSM1533420': {'line': 'MCF7', 'passages': '14-17', 'type': 'Pleural effusion', 'treatment': 'E2', 'time': '160 min'}, 'GSM2359190': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '1 uM / 50 nM', 'drug': 'Vemurafenib / THZ1'}, 'GSM2359191': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359192': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359193': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359194': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2359195': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2359196': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2359197': {'duration': '7D', 'line': 'A375', 'tissue': 'Skin', 'concentration': '1 uM', 'drug': 'Vemurafenib'}, 'GSM2359198': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '1 uM', 'drug': 'Vemurafenib'}, 'GSM2359199': {'duration': '7D', 'line': 'A375', 'tissue': 'Skin', 'concentration': '1 uM', 'drug': 'Vemurafenib'}, 'GSM2626930': {'origin': 'pancreas', 'patient_id': '103', 'type': 'liver metastasis', 'tumor_id': '77'}, 'GSM2231877': {'culture': '21 days', 'type': 'HES3 hESC derived INS-GFP+ cells', 'treatment': 'DMSO'}, 'GSM1981200': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM2066440': {'vendor': 'Abcam', 'source': 'HCC1954', 'type': 'breast adenocarcinoma cell line', 'antibody': 'PolII', 'subtype': 'Latency Competent Cancer Cell (LCC) Derivative'}, 'GSM1203306': {'tissue': 'bone marrow'}, 'GSM3189287': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '13', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.664063', 'percentaligned': '0.93664053', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.855133'}, 'GSM3189284': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.571804', 'percentaligned': '0.959843473', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.553877', 'original': 'Control'}, 'GSM3189285': {'boca': 'NA', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'NA', 'analaysis': 'Yes', 'hrv': 'NA', 'visit': 'NA', '1': 'NA', '3': 'NA', '2': 'NA', 'flowcell': 'CAJMRANXX', '4': 'NA', 'percentage': '4', 'mpv': 'NA', 'hku1': 'NA', '229e': 'NA', 'matched': 'Case', 'a': 'NA', 'b': 'NA', 'mediancvcoverage': '0.575178', 'percentaligned': '0.954277332', 'Sex': 'M', 'nl63': 'NA', 'libcounts': '10.443215'}, 'GSM3189282': {'boca': 'Yes', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.781747', 'percentaligned': '0.954541065', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.696846', 'original': 'Control'}, 'GSM1228186': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM3189280': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A29', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '15', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.711152', 'percentaligned': '0.949438797', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.477571', 'original': 'Control'}, 'GSM1228184': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228189': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228188': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM3189288': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.620345', 'percentaligned': '0.926969674', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.285574'}, 'GSM3189289': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.540921', 'percentaligned': '0.954351362', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.634384'}, 'GSM1185613': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185612': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185611': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM2701945': {'stimulation': '50ng/ml LPS+1µM SB-747561', 'donor': '6', 'type': 'monocyte-derived dendritic cells'}, 'GSM1185617': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185616': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185615': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185614': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM2287094': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1185619': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185618': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM2701943': {'stimulation': '50ng/ml LPS', 'donor': '6', 'type': 'monocyte-derived dendritic cells'}, 'GSM2085587': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085586': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2186530': {'origin': 'hESC derived Colonic organoids', 'culture': '4 weeks', 'genotype': 'wt'}, 'GSM2186531': {'origin': 'hESC derived organoids', 'culture': '4 weeks', 'genotype': 'wt'}, 'GSM2186532': {'origin': 'hESC derived organoids', 'culture': '4 weeks', 'genotype': 'wt'}, 'GSM1914468': {'group': 'C116_iPSC', 'region': 'C116', 'type': 'iPSC'}, 'GSM2085589': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085588': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2995471': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995470': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995473': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2739490': {'differentiation': 'M-CSF', 'donor': 'Donor 3'}, 'GSM1830023': {'line': 'DU145', 'passages': 'five to six', 'type': 'prostate cancer'}, 'GSM1830022': {'line': 'DU145', 'passages': 'five to six', 'type': 'prostate cancer'}, 'GSM1830021': {'line': 'DU145', 'passages': 'five to six', 'type': 'prostate cancer'}, 'GSM1830020': {'line': 'DU145', 'passages': 'five to six', 'type': 'prostate cancer'}, 'GSM2995477': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2545237': {'line': 'MDA MB-361', 'type': 'Luminal B Breast Cancer Cell line'}, 'GSM2995476': {'gender': 'Female', 'type': 'iPSC'}, 'GSM1554589': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554588': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554585': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554584': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554587': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554586': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554581': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554580': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554583': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554582': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2667986': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2'}, 'GSM2320002': {'induction': 'None', 'treatment': 'siRNA PU.1', 'time': '24 hr'}, 'GSM2320003': {'induction': 'None', 'treatment': 'siRNA PU.1', 'time': '24 hr'}, 'GSM2371260': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371261': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371262': {'media': 'NA'}, 'GSM2595244': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '91'}, 'GSM2756205': {'status': 'pancreatic ductal adenocarcinoma (PDAC)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756204': {'status': 'pancreatic ductal adenocarcinoma (PDAC)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756207': {'status': 'pancreatic ductal adenocarcinoma (PDAC)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2320001': {'induction': 'None', 'treatment': 'siRNA Control', 'time': '24 hr'}, 'GSM2756201': {'status': 'pancreatic ductal adenocarcinoma (PDAC)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756200': {'status': 'intraductal papillary mucinous neoplasm (IPMN), high-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756203': {'status': 'pancreatic ductal adenocarcinoma (PDAC)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756202': {'status': 'pancreatic ductal adenocarcinoma (PDAC)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2595242': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '100'}, 'GSM2287097': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2320007': {'induction': 'PMA', 'treatment': 'siRNA PU.1', 'time': '24 hr'}, 'GSM2320004': {'induction': 'PMA', 'treatment': 'siRNA Control', 'time': '24 hr'}, 'GSM2320005': {'induction': 'PMA', 'treatment': 'siRNA Control', 'time': '24 hr'}, 'GSM2456058': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2842802': {'line': 'SKmel147', 'antibodies': 'TEAD4 (Santa Cruz SC-101184)', 'passage': 'N/A'}, 'GSM2842801': {'line': 'SKmel147', 'antibodies': 'FOSL2 (Santa Cruz SC-604)', 'passage': 'N/A'}, 'GSM2842800': {'line': 'SKmel147', 'antibodies': 'CTCF (Millipore 07-729)', 'passage': 'N/A'}, 'GSM2667983': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM2595249': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '96'}, 'GSM1965080': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965081': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965082': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2670977': {'line': 'HCT116', 'antibody': 'rabbit anti pan CTD (Schroeder eta l Genes Dev. 14:2435, 2000)', 'genotype': 'wildtype'}, 'GSM1965084': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965085': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965086': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965087': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965088': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965089': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1706690': {'clone': 'None', 'passages': 'p55', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM554120': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM2871940': {'line': 'GSC923', 'passages': '20', 'type': 'Glioblastoma stem cells'}, 'GSM2041406': {'treatment': 'none'}, 'GSM2041407': {'treatment': 'none'}, 'GSM2041404': {'treatment': '5 uM 1C8'}, 'GSM2041405': {'treatment': 'none'}, 'GSM2041402': {'treatment': '5 uM 1C8'}, 'GSM2041403': {'treatment': '5 uM 1C8'}, 'GSM2041400': {'treatment': '20 uM 1C8'}, 'GSM2041401': {'treatment': '5 uM 1C8'}, 'GSM1682280': {'line': 'MCF-7', 'tissue': 'breast', 'type': 'breast cancer', 'treatment': 'treated with growth medium', 'passage': '30'}, 'GSM1682281': {'line': 'MCF-7', 'tissue': 'breast', 'type': 'breast cancer', 'treatment': 'treated with ADM', 'passage': '30'}, 'GSM1682282': {'line': 'MCF-7', 'tissue': 'breast', 'type': 'breast cancer', 'treatment': 'treated with PTX', 'passage': '30'}, 'GSM1682283': {'line': 'MCF-7', 'tissue': 'breast', 'type': 'breast cancer', 'treatment': 'treated with growth medium', 'passage': '30'}, 'GSM2041408': {'treatment': 'none'}, 'GSM2840405': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840404': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840407': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840406': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2170579': {'stage': 'Endothelial cells'}, 'GSM2170578': {'stage': 'Endothelial cells'}, 'GSM2840403': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840402': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2170575': {'stage': 'Endothelial cells'}, 'GSM2170574': {'stage': 'Endothelial cells'}, 'GSM2170577': {'stage': 'Endothelial cells'}, 'GSM2170576': {'stage': 'Endothelial cells'}, 'GSM2170571': {'stage': 'Endothelial cells'}, 'GSM2170570': {'stage': 'Endothelial cells'}, 'GSM2170573': {'stage': 'Endothelial cells'}, 'GSM2170572': {'stage': 'Endothelial cells'}, 'GSM2722898': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.323', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.457', 'age': '48', 'tcga_subtype_dif': '-0.005', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '-0.204', 'outcome': 'Suboptimal', 'review': 'Not available', 'stage': 'III'}, 'GSM2722896': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '0.152', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.072', 'age': '59', 'tcga_subtype_dif': '0.168', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '-0.223', 'outcome': 'Suboptimal', 'review': 'Not available', 'stage': 'III'}, 'GSM2722894': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.126', 'vitalstatus': 'Not available', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.392', 'age': '55', 'tcga_subtype_dif': '0.259', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.335', 'outcome': 'Optimal', 'review': 'Not available', 'stage': 'IIIC'}, 'GSM2722892': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '0.386', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.018', 'age': '71', 'tcga_subtype_dif': '-0.071', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '-0.294', 'outcome': 'Optimal', 'review': 'Not available', 'stage': 'III'}, 'GSM2425023': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2722890': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '0.147', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.491', 'age': '49', 'tcga_subtype_dif': '0.322', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.123', 'outcome': 'Suboptimal', 'review': 'Not available', 'stage': 'III'}, 'GSM913878': {'tissue': 'Parathyroid tumor', 'patient': '1', 'agent': 'OHT', 'time': '48h'}, 'GSM913879': {'tissue': 'Parathyroid tumor', 'patient': '2', 'agent': 'Control', 'time': '24h'}, 'GSM2728648': {'type': 'lymphatic endothelial cells (LEC)', 'variation': 'V5/vIRF3 overexpression'}, 'GSM2728649': {'type': 'lymphatic endothelial cells (LEC)', 'variation': 'V5/vIRF3 overexpression'}, 'GSM2728644': {'type': 'lymphatic endothelial cells (LEC)', 'variation': 'vector control'}, 'GSM2802982': {'line': 'hMSC-TERT4', 'variation': 'siNFIL3', 'stage': 'D0'}, 'GSM2728646': {'type': 'lymphatic endothelial cells (LEC)', 'variation': 'vector control'}, 'GSM913873': {'tissue': 'Parathyroid tumor', 'patient': '1', 'agent': 'Control', 'time': '24h'}, 'GSM913874': {'tissue': 'Parathyroid tumor', 'patient': '1', 'agent': 'Control', 'time': '48h'}, 'GSM913875': {'tissue': 'Parathyroid tumor', 'patient': '1', 'agent': 'DPN', 'time': '24h'}, 'GSM913876': {'tissue': 'Parathyroid tumor', 'patient': '1', 'agent': 'DPN', 'time': '48h'}, 'GSM913877': {'tissue': 'Parathyroid tumor', 'patient': '1', 'agent': 'OHT', 'time': '24h'}, 'GSM2632521': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632520': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632523': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632522': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632525': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632524': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632527': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632526': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632529': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632528': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1543642': {'transfection': 'Control', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543643': {'transfection': 'si-lncRNA152-1', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543640': {'type': 'Breast adenocarcinoma epithelial cells', 'treatment': 'Untreated'}, 'GSM1543641': {'transfection': 'Control', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543646': {'transfection': 'si-lncRNA152-2', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543647': {'transfection': 'Control', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543644': {'transfection': 'si-lncRNA152-1', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543645': {'transfection': 'si-lncRNA152-2', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM2305815': {'tissue': 'colon'}, 'GSM1543648': {'transfection': 'Control', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM1543649': {'transfection': 'si-lncRNA67-1', 'type': 'Breast adenocarcinoma epithelial cells'}, 'GSM3586859': {'origin': 'UNCLASSIFIED', 'pfstt': '276', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '437', 'cycles': '6', 'oscs': '1'}, 'GSM2324270': {'tumor': 'healthy control', 'tissue': 'peripheral blood'}, 'GSM2665899': {'age': 'Day 130', 'well': 'C3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665898': {'age': 'Day 130', 'well': 'H5', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2394537': {'id': 'IonXpress_048', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'C8 Dihydroceramide', 'point': 'after 12h of compound treatment'}, 'GSM2665891': {'age': 'Day 130', 'well': 'G6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665890': {'age': 'Day 130', 'well': 'B7', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665893': {'age': 'Day 130', 'well': 'B6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665892': {'age': 'Day 130', 'well': 'B10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665895': {'age': 'Day 130', 'well': 'E2', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665894': {'age': 'Day 130', 'well': 'A7', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665897': {'age': 'Day 130', 'well': 'G5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665896': {'age': 'Day 130', 'well': 'G4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2773442': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL mutant', 'batch': '3/11/2015'}, 'GSM2287604': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287605': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287606': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2361954': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2287600': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287601': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2303289': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303288': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303287': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2324279': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'treatment': 'PBS'}, 'GSM2303285': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303284': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303283': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303282': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303281': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303280': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACJV399'}, 'GSM2887519': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2589140': {'1': 'EtOH'}, 'GSM2176050': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2589141': {'1': 'EtOH'}, 'GSM2176051': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1281592': {'line': 'A673', 'type': 'Ewing Sarcoma cells', 'variation': 'stably expressing shRNA targeting EWS-FLI1'}, 'GSM3586852': {'origin': 'UNCLASSIFIED', 'pfstt': '461', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '741', 'cycles': '8', 'oscs': '0'}, 'GSM2565363': {'construction': 'PLATE-Seq', 'drug': 'PLUMBAGIN'}, 'GSM2311969': {'culture': '12', 'line': 'DCX+'}, 'GSM2311968': {'culture': '12', 'line': 'DCX+'}, 'GSM2311965': {'culture': '12', 'line': 'DCX+'}, 'GSM2311964': {'culture': '12', 'line': 'DCX+'}, 'GSM2311967': {'culture': '12', 'line': 'DCX+'}, 'GSM2311966': {'culture': '12', 'line': 'DCX+'}, 'GSM2311961': {'culture': '12', 'line': 'DCX+'}, 'GSM2311960': {'culture': '12', 'line': 'DCX+'}, 'GSM2311963': {'culture': '12', 'line': 'DCX+'}, 'GSM2311962': {'culture': '12', 'line': 'DCX+'}, 'GSM2589143': {'1': '4-OHT'}, 'GSM3586853': {'origin': 'ABC', 'pfstt': '777', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '856', 'cycles': '8', 'oscs': '0'}, 'GSM849361': {'description': 'tier 3', 'datatype': 'Cage', 'labexpid': 'K09', 'readtype': '1x36', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '3', 'labversion': 'IDR', 'biorep': '027N'}, 'GSM2042239': {'type': 'IPS-derived hepatic endoderm cells', 'line': 'HDF-iPSCs', 'protocol': 'directed in-vitro differentiation'}, 'GSM3586850': {'origin': 'GCB', 'pfstt': '112', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '849', 'cycles': '8', 'oscs': '0'}, 'GSM2053482': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '52', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#13'}, 'GSM2653469': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653468': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653465': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653464': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653467': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653466': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653461': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653460': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653463': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653462': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2545265': {'line': 'MDA MB-231', 'type': 'TNBC Claudin Low Breast Cancer Cell Line'}, 'GSM2545264': {'line': 'HCC1937', 'type': 'TNBC Basal Breast Cancer Cell Line'}, 'GSM2664319': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664318': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2545261': {'line': 'HCC1937', 'type': 'TNBC Basal Breast Cancer Cell Line'}, 'GSM2664313': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664315': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664314': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664317': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664316': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2258208': {'group': 'NF2/Chr22_Loss', 'grade': '1', 'gender': 'F', 'age': '50', 'tissue': 'meningioma', 'histology': 'psammomatous', 'radiated': 'Y'}, 'GSM2545263': {'line': 'HCC1937', 'type': 'TNBC Basal Breast Cancer Cell Line'}, 'GSM1261017': {'type': 'TNBC Breast Tumor'}, 'GSM2204393': {'treatment': 'treated with Dox to induce knockdown'}, 'GSM2545262': {'line': 'HCC1937', 'type': 'TNBC Basal Breast Cancer Cell Line'}, 'GSM2204392': {'treatment': 'untreated'}, 'GSM2319587': {'sirna': 'RBMX/RBMXL1 (10nM Silencer Select s56035)', 'infection': 'FOXA3, HNF1A, HNF4A lentiviruses'}, 'GSM2319586': {'sirna': 'Non-targeting control #1 (10nM Silencer Select)', 'infection': 'FOXA3, HNF1A, HNF4A lentiviruses'}, 'GSM2319585': {'sirna': 'Non-targeting control #1 (10nM Silencer Select)', 'infection': 'FOXA3, HNF1A, HNF4A lentiviruses'}, 'GSM2204391': {'treatment': 'untreated'}, 'GSM2204390': {'treatment': 'untreated'}, 'GSM2319589': {'sirna': 'SUV39H1 (10nM Silencer Select s13660)', 'infection': 'FOXA3, HNF1A, HNF4A lentiviruses'}, 'GSM2319588': {'sirna': 'RBMX/RBMXL1 (10nM Silencer Select s56035)', 'infection': 'FOXA3, HNF1A, HNF4A lentiviruses'}, 'GSM2445657': {'type': 'Macrophage'}, 'GSM2445656': {'type': 'Macrophage'}, 'GSM2692392': {'donor': 'YFHW053', 'type': 'sorted CD45RA+ CCR7+ CD8 T cells', 'day': 'Day 1349 post YFV-17D'}, 'GSM2472230': {'doubling': '15', 'tissue': 'Skin;foreskin', 'type': 'Ffibroblast'}, 'GSM2692394': {'donor': 'EVC422', 'type': 'sorted CD45RA+ CCR7+ CD8 T cells', 'day': 'Day 4745 post YFV-17D'}, 'GSM2692395': {'donor': 'YF679', 'type': 'sorted A2-NS4B214 tetramer+ CD8 T cells', 'day': 'Day 14 post YFV-17D'}, 'GSM2692396': {'donor': 'YF661', 'type': 'sorted A2-NS4B214 tetramer+ CD8 T cells', 'day': 'Day 14 post YFV-17D'}, 'GSM2692397': {'donor': 'YF631', 'type': 'sorted A2-NS4B214 tetramer+ CD8 T cells', 'day': 'Day 14 post YFV-17D'}, 'GSM2692398': {'donor': 'MCB', 'type': 'sorted A2-NS4B214 tetramer+ CD8 T cells', 'day': 'Day 1346 post YFV-17D'}, 'GSM2692399': {'donor': 'EVC422', 'type': 'sorted A2-NS4B214 tetramer+ CD8 T cells', 'day': 'Day 4745 post YFV-17D'}, 'GSM2445659': {'type': 'Macrophage'}, 'GSM2445658': {'type': 'Macrophage'}, 'GSM2100918': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT + TMZ', 'diagnosis': 'Secondary_GBM', 'date': '7/10/2014', 'id': '119b'}, 'GSM2100919': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT + TMZ', 'diagnosis': 'Secondary_GBM', 'date': '7/10/2014', 'id': '119b'}, 'GSM2100910': {'line': 'PANC 6.03', 'sensitivity': 'Resistant'}, 'GSM2100911': {'line': 'AsPC-1', 'sensitivity': 'Resistant'}, 'GSM2100912': {'line': 'Capan-2', 'sensitivity': 'Resistant'}, 'GSM2100913': {'line': 'Capan-1', 'sensitivity': 'Resistant'}, 'GSM2100914': {'line': 'HPAF-II', 'sensitivity': 'Resistant'}, 'GSM2100915': {'line': 'Panc 02.03', 'sensitivity': 'Resistant'}, 'GSM2100916': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '102b'}, 'GSM2100917': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '102b'}, 'GSM3594604': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1826821': {'line': 'MOLP-8', 'condition': 'LIN28B KO cells'}, 'GSM3594605': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594606': {'cluster': 'Low Del', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1668819': {'line': 'HEK293T', 'with': 'TALE-activator targeting IL1RN'}, 'GSM1668818': {'line': 'HEK293T', 'with': 'GFP control'}, 'GSM3594607': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1892698': {'tissue': 'FFPE'}, 'GSM1892699': {'tissue': 'FFPE'}, 'GSM1892694': {'tissue': 'Snap-frozen tissue'}, 'GSM3594600': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1892696': {'tissue': 'Snap-frozen tissue'}, 'GSM1892697': {'tissue': 'FFPE'}, 'GSM1892690': {'tissue': 'Snap-frozen tissue'}, 'GSM1892691': {'tissue': 'FFPE'}, 'GSM1892692': {'tissue': 'Snap-frozen tissue'}, 'GSM3594601': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2309476': {'number': 'Exp 4', 'time': '18 hours', 'replicate': '1', 'treatment': 'Flavopiridol', 'dose': '300 nM'}, 'GSM2309477': {'number': 'Exp 4', 'time': '18 hours', 'replicate': '2', 'treatment': 'Flavopiridol', 'dose': '300 nM'}, 'GSM2309474': {'number': 'Exp 4', 'time': '6 hours', 'replicate': '1', 'treatment': 'DRB', 'dose': '100 uM'}, 'GSM2309475': {'number': 'Exp 4', 'time': '6 hours', 'replicate': '2', 'treatment': 'DRB', 'dose': '100 uM'}, 'GSM2309472': {'number': 'Exp 4', 'time': '18 hours', 'replicate': '1', 'treatment': 'DRB', 'dose': '100 uM'}, 'GSM2202564': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2309470': {'number': 'Exp 4', 'time': '6 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309471': {'number': 'Exp 4', 'time': '6 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM3594603': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2424918': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2309478': {'number': 'Exp 4', 'time': '6 hours', 'replicate': '1', 'treatment': 'Flavopiridol', 'dose': '300 nM'}, 'GSM2309479': {'number': 'Exp 4', 'time': '6 hours', 'replicate': '2', 'treatment': 'Flavopiridol', 'dose': '300 nM'}, 'GSM1281707': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '65', 'gender': 'Male', 'age': '60', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281708': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '65', 'gender': 'Male', 'age': '60', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281709': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '57', 'gender': 'Male', 'age': '56', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM2195048': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195049': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2123959': {}, 'GSM2123958': {}, 'GSM1808099': {'tissue': 'LCLs'}, 'GSM1808098': {'tissue': 'LCLs'}, 'GSM2195040': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2123952': {}, 'GSM2195042': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195043': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195044': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195045': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2123955': {}, 'GSM2123954': {}, 'GSM2475184': {'line': 'HeLa', 'treatment': 'siFFL'}, 'GSM2475185': {'line': 'HeLa', 'treatment': 'siFFL'}, 'GSM2475186': {'line': 'HeLa', 'treatment': 'siFFL'}, 'GSM2475187': {'line': 'HeLa', 'treatment': 'siFFL'}, 'GSM2475188': {'line': 'HeLa', 'treatment': 'siFFL'}, 'GSM2475189': {'line': 'HeLa', 'treatment': 'siPHAX'}, 'GSM2392065': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2127243': {'virus': 'ZIKVC'}, 'GSM2392067': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392066': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392061': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392060': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392063': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2127242': {'virus': 'mock'}, 'GSM2392069': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2127241': {'virus': 'mock'}, 'GSM2359209': {'duration': '7D', 'line': 'A549', 'tissue': 'Lung', 'concentration': '200 nM', 'drug': 'GSK1120212'}, 'GSM2111059': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 4', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2593166': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2111053': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 3', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2593161': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2111051': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 3', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111050': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 3', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111057': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 4', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111056': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 4', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111055': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 4', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2593160': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM1620576': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620577': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620574': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620575': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620572': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2127245': {'virus': 'mock'}, 'GSM1620570': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620571': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2127244': {'virus': 'ZIKVC'}, 'GSM1620578': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620579': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1859217': {'line': 'SHEEC'}, 'GSM2483527': {'line': 'A673 cells', 'rescue': 'delta 22', 'RNAi': 'EWS/FLI', 'batch': '3'}, 'GSM1859218': {'line': 'SHEE'}, 'GSM2462585': {'line': 'SW480', 'transfection': 'Control siRNA'}, 'GSM1920681': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT12'}, 'GSM2348775': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1920683': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT20'}, 'GSM1920682': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT16'}, 'GSM1920685': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT28'}, 'GSM1920684': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT24'}, 'GSM1920687': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT36'}, 'GSM1920686': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT32'}, 'GSM1920689': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT44'}, 'GSM1920688': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': '6AN', 'time': 'CT40'}, 'GSM1539029': {'genotype': '7dupASD', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-Cf', 'type': 'stranded 51bp PE reads'}, 'GSM1622596': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM1622597': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM1622594': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM1539028': {'genotype': 'Control', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'ERCC ExFold mix 1', 'donor': 'Miff', 'type': 'unstranded 100bp PE reads'}, 'GSM1622592': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM1622593': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM1622590': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM1622591': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM2125502': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'INTS12_D-siRNA_C'}, 'GSM2125503': {'donor': '195307', 'type': 'Human bronchial epithelial cells HBECs', 'source': 'Lonza', 'antibody': 'INTS12 (Sigma cat. num. HPA03577)', 'passage': '3'}, 'GSM2125500': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'INTS12_D-siRNA_C'}, 'GSM2125501': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'INTS12_D-siRNA_C'}, 'GSM1622598': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM2125505': {'donor': '195307 + 7F3158', 'type': 'Human bronchial epithelial cells HBECs', 'source': 'Lonza', 'passage': '3'}, 'GSM1901460': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901461': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901462': {'count': '1', 'ercc_mix': 'mix2', 'type': 'delta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901463': {'count': '1', 'ercc_mix': 'mix2', 'type': 'undefined', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901464': {'count': '1', 'ercc_mix': 'mix2', 'type': 'duct', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901465': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901466': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2665946': {'age': 'Day 130', 'well': 'A9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM1901468': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901469': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2259931': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY-D152V'}, 'GSM2259930': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY-hcM'}, 'GSM2259933': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY-D152V'}, 'GSM2259932': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY-D152V'}, 'GSM2723013': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '0.019', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.623', 'age': '62', 'tcga_subtype_dif': '-0.348', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.413', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2170687': {'stage': 'Hepatic endoderm 2'}, 'GSM2665943': {'age': 'Day 130', 'well': 'E3', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2061712': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2586938': {'replicate': '4', 'microrna': 'miR873WT', 'treatment': 'Con - control transcriptome'}, 'GSM2665941': {'age': 'Day 130', 'well': 'D3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2586934': {'replicate': '4', 'microrna': 'miR873Mut', 'treatment': 'PD - pulldown'}, 'GSM2586935': {'replicate': '1', 'microrna': 'miR873WT', 'treatment': 'Con - control transcriptome'}, 'GSM2586936': {'replicate': '2', 'microrna': 'miR873WT', 'treatment': 'Con - control transcriptome'}, 'GSM2586937': {'replicate': '3', 'microrna': 'miR873WT', 'treatment': 'Con - control transcriptome'}, 'GSM2586930': {'replicate': '4', 'microrna': 'miR873WT', 'treatment': 'PD - pulldown'}, 'GSM2586931': {'replicate': '1', 'microrna': 'miR873Mut', 'treatment': 'PD - pulldown'}, 'GSM2586932': {'replicate': '2', 'microrna': 'miR873Mut', 'treatment': 'PD - pulldown'}, 'GSM2586933': {'replicate': '3', 'microrna': 'miR873Mut', 'treatment': 'PD - pulldown'}, 'GSM1329864': {'line': 'AML3', 'treatment': 'Untreated'}, 'GSM1329860': {'line': 'AML3', 'treatment': 'Aza Treated'}, 'GSM1329861': {'line': 'AML3', 'treatment': 'Aza Treated'}, 'GSM1329862': {'line': 'AML3', 'treatment': 'Untreated'}, 'GSM1329863': {'line': 'AML3', 'treatment': 'Untreated'}, 'GSM1122328': {'line': 'ME-1', 'type': 'leukemic cell line', 'treatment': 'none'}, 'GSM3494167': {'status': 'p53 wild-type'}, 'GSM3494164': {'status': 'p53 wild-type'}, 'GSM3494165': {'status': 'p53 wild-type'}, 'GSM3494162': {'status': 'p53 mutant'}, 'GSM3494163': {'status': 'p53 mutant'}, 'GSM3494160': {'status': 'p53 wild-type'}, 'GSM3494161': {'status': 'p53 wild-type'}, 'GSM1122320': {'target': 'CBFB', 'company': 'Diagenode', 'number': 'A1329', 'treatment': 'none', 'line': '--', 'type': 'Patient AML cells'}, 'GSM1122321': {'target': 'CBFB', 'company': 'Diagenode', 'number': 'A1329', 'treatment': '3 days Tet free medium', 'line': 'U937CM', 'type': 'leukemic cell line'}, 'GSM1122322': {'target': 'CBFB', 'company': 'Diagenode', 'number': 'A1329', 'treatment': 'Tet (1 mM) containing medium', 'line': 'U937CM', 'type': 'leukemic cell line'}, 'GSM2665948': {'age': 'Day 130', 'well': 'A5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM1122324': {'line': 'U937CM', 'type': 'leukemic cell line', 'treatment': '3 days Tet free medium'}, 'GSM1122325': {'line': 'U937CM', 'type': 'leukemic cell line', 'treatment': 'Tet (1 mM) containing medium'}, 'GSM1122326': {'line': 'ME-1', 'type': 'leukemic cell line', 'treatment': '3 days Dox (1 mM)'}, 'GSM1122327': {'line': 'ME-1', 'type': 'leukemic cell line', 'treatment': '3 days Dox (1 mM)'}, 'GSM1944747': {'variation': 'Cas9 knock-in'}, 'GSM1944748': {'variation': 'Cas9 knock-in'}, 'GSM1944749': {'variation': 'Cas9 knock-in'}, 'GSM2932923': {'pucai': '40', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '11'}, 'GSM2047325': {'well': 'A03', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047324': {'well': 'A02', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047327': {'well': 'A05', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047326': {'well': 'A04', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047329': {'well': 'A07', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047328': {'well': 'A06', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2391846': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC08'}, 'GSM2226754': {'line': 'MSC (a33)', 'type': 'Stem Cells'}, 'GSM2391847': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2391844': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2100136': {'rin': '9.3', 'Sex': 'Male', 'sspg': '199', 'age': '79', 'bmi': '29', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '496', 'method': 'Qiagen:trizol'}, 'GSM1571110': {'stage': 'definitive cardiomyocyte'}, 'GSM2293559': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '1', 'drug': 'untreated'}, 'GSM2293558': {'line': 'RPE1', 'ploidy': '2n', 'replicate': '1', 'drug': 'untreated'}, 'GSM2100137': {'rin': '9.7', 'Sex': 'Male', 'sspg': '92', 'age': '54', 'bmi': '22.4', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '504', 'method': 'Life-Tech GITC'}, 'GSM2451052': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2391843': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2309869': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'simultaneous pancreas and kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '27.45'}, 'GSM2309868': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'simultaneous pancreas and kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '27.45'}, 'GSM1872926': {'10': 'Remitter', 'name': 'HF-37512', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'NOS'}, 'GSM2451053': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1872920': {'10': 'Non-remitter', 'name': 'HF-35653', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872921': {'10': 'Remitter', 'name': 'HF-37251', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872922': {'10': 'Non-remitter', 'name': 'HF-37676', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'NOS'}, 'GSM1872923': {'10': 'Non-remitter', 'name': 'HF-37516', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'NOS'}, 'GSM2309861': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '66.63'}, 'GSM2309860': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '66.63'}, 'GSM2309863': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '66.63'}, 'GSM2309862': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '66.63'}, 'GSM2193055': {'sirna': 'non-transfection control', 'line': 'JHOS4', 'type': 'High grade serous ovarian carcinoma'}, 'GSM2309864': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Cystinosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '29.62'}, 'GSM2193057': {'sirna': 'PAX8 siRNA 403', 'line': 'JHOS4', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15403, Ambion'}, 'GSM2309866': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Cystinosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '29.62'}, 'GSM1726475': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM2451056': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100131': {'rin': '8.5', 'Sex': 'Male', 'sspg': '69', 'age': '41', 'bmi': '24.6', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '475', 'method': 'Life-Tech GITC'}, 'GSM907499': {'antibody': 'none', 'passages': 'below 30', 'type': 'HCT116'}, 'GSM2123101': {'line': 'H9', 'type': 'human embryonic stem cells (hESCs)'}, 'GSM2123102': {'line': 'H9', 'type': 'human embryonic stem cells (hESCs)'}, 'GSM2123103': {'age': '1 month old', 'type': 'hESC-derived cerebral organoids'}, 'GSM2123104': {'age': '1 month old', 'type': 'hESC-derived cerebral organoids'}, 'GSM2123105': {'age': '2 months old', 'type': 'hESC-derived cerebral organoids'}, 'GSM2123106': {'age': '2 months old', 'type': 'hESC-derived cerebral organoids'}, 'GSM2454035': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1447489': {'knockdown': 'Control siRNA', 'line': 'RBE', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM2454034': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1447487': {'knockdown': 'LKB1 siRNA', 'line': 'HUH28', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM1447486': {'knockdown': 'LKB1 siRNA', 'line': 'HuH28', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM1447485': {'knockdown': 'Control siRNA', 'line': 'HuH28', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM2391849': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC11'}, 'GSM2454037': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1862187': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shPCBP1', 'treatment': 'TGF-beta and EGF'}, 'GSM1862186': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shPCBP1', 'treatment': 'TGF-beta and EGF'}, 'GSM1862185': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shPCBP1', 'treatment': 'none'}, 'GSM2454036': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1862183': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shPCBP1', 'treatment': 'none'}, 'GSM1862182': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shNS', 'treatment': 'TGF-beta and EGF'}, 'GSM1862181': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shNS', 'treatment': 'TGF-beta and EGF'}, 'GSM1862180': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shNS', 'treatment': 'TGF-beta and EGF'}, 'GSM2454031': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM1862189': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shSmad3', 'treatment': 'untreated'}, 'GSM2454030': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2649862': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649863': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649860': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649861': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649866': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649867': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649864': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649865': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2932928': {'pucai': '65', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '10'}, 'GSM2649868': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2454032': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM1244809': {'type': 'MCF7', 'treatment': '10nM E2 treatment for 24h'}, 'GSM3189138': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '19', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.732904', 'percentaligned': '0.822852501', 'Sex': 'M', 'nl63': 'No', 'libcounts': '2.77928'}, 'GSM3189139': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C8', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.631768', 'percentaligned': '0.949276816', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.932935', 'original': 'Control'}, 'S': {'code': '200'}, 'GSM3189130': {'boca': 'Yes', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '90', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.144109', 'percentaligned': '0.696583212', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.142604', 'original': 'Control'}, 'GSM3189131': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.620012', 'percentaligned': '0.946266416', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.897194'}, 'GSM3189132': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '13', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.675445', 'percentaligned': '0.932618807', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.314135'}, 'GSM3189133': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '57', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.624266', 'percentaligned': '0.890656045', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.751258'}, 'GSM3189134': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.653652', 'percentaligned': '0.935667533', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.836745', 'original': 'Control'}, 'GSM3189135': {'boca': 'Yes', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C17', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.59666', 'percentaligned': '0.947464468', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.399374', 'original': 'Control'}, 'GSM3189136': {'boca': 'Yes', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C17', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.697521', 'percentaligned': '0.890853535', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.861461', 'original': 'Control'}, 'GSM3189137': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.708728', 'percentaligned': '0.91020647', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.096677', 'original': 'Control'}, 'GSM2093078': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093079': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2310230': {'gender': 'Female', 'age': '10', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2093070': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093071': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093072': {'bin': '23', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093073': {'bin': '23', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093074': {'bin': '23', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093075': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '10', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093076': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093077': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2247589': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247588': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247587': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247586': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247585': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2449059': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'Primed cells (NK2 line)'}, 'GSM2449058': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'Primed cells (NK2 line)'}, 'GSM2085612': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2449051': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'N4+ sorted cells propagated for five passages in naive conditions'}, 'GSM2449050': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'N4+ sorted cells propagated for five passages in naive conditions'}, 'GSM2449053': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'N4+ sorted cells propagated for ten passages in naive conditions'}, 'GSM2449052': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'N4+ sorted cells propagated for ten passages in naive conditions'}, 'GSM2449055': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'Naive cells (NK2 line)'}, 'GSM2449054': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'N4+ sorted cells propagated for ten passages in naive conditions'}, 'GSM2449057': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'Naive cells (NK2 line)'}, 'GSM2449056': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'Naive cells (NK2 line)'}, 'GSM2085610': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2779574': {'duration': '1 day', 'line': 'M229SDR', 'type': 'Melanoma cell line', 'cells': 'GFP', 'treatment': 'none'}, 'GSM2779575': {'duration': '2 day', 'line': 'M229SDR', 'type': 'Melanoma cell line', 'cells': 'GFP', 'treatment': 'none'}, 'GSM2358168': {'media': 'NASH', 'type': 'Hepatocyte'}, 'GSM2358169': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358166': {'media': 'NASH', 'type': 'Hepatocyte'}, 'GSM2358167': {'media': 'NASH', 'type': 'Hepatocyte'}, 'GSM2358164': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358165': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358162': {'line': 'MS1', 'type': 'repeat treated', 'timepoint': '23'}, 'GSM2358163': {'media': 'LGLI', 'type': 'Hepatocyte'}, 'GSM2358160': {'line': 'MS1', 'type': 'repeat treated', 'timepoint': '12'}, 'GSM2358161': {'line': 'MS1', 'type': 'repeat treated', 'timepoint': '15'}, 'GSM1980058': {'tag': 'GFP+', 'type': 'human beta cells'}, 'GSM2085615': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2455908': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455909': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455906': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455907': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455904': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1901283': {'treatment': 'AdV-VP55'}, 'GSM1980056': {'tag': 'GFP+', 'type': 'human beta cells'}, 'GSM1980057': {'tag': 'GFP+', 'type': 'human beta cells'}, 'GSM2455900': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2825146': {'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM1957531': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2536048': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10624', 'samplename': '1D_Ctl5_redraw_C42', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34724', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10624', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C42'}, 'GSM1480326': {'source': 'nuclear run-on', 'line': 'GM12878', 'type': 'lymphoblastoid B-cell line', 'antibody': 'anti-BrU (Santa Cruz Biotechnology, sc-32323-ac, lot# I2111)', 'strategy': 'BrU'}, 'GSM1957534': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1187138': {'type': 'other', 'genotype': 'control'}, 'GSM1187139': {'type': 'other', 'genotype': 'control'}, 'GSM2509768': {'type': 'primary human airway smooth muscle cells', 'variation': 'transduced with control adenovirus (Ad-GFP)', 'passage': '5'}, 'GSM1187135': {'line': 'BJ', 'type': 'other'}, 'GSM1187136': {'line': 'BJ', 'type': 'polyA RNA'}, 'GSM1187137': {'line': 'BJ', 'type': 'polyA RNA'}, 'GSM2204803': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204802': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204801': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204800': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204807': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204806': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204805': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204804': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204809': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204808': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1438896': {'type': 'Neutrophil isolated from peripheral blood'}, 'GSM1438897': {'type': 'Neutrophil isolated from peripheral blood'}, 'GSM2845459': {'line': 'RUES2', 'type': 'Embryonic stem cells (ESC)', 'point': 'Day 0 of differentiation'}, 'GSM2183730': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'GGCTAC'}, 'GSM3124789': {'individual': 'mi548', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM1647112': {'illumina_index': '19', 'point': '4', 'batch': '13', 'agent': 'Yers', 'rin': '6', 'individual': 'M376'}, 'GSM1647111': {'illumina_index': '18', 'point': '18', 'batch': '13', 'agent': 'Yers', 'rin': '6.6', 'individual': 'M376'}, 'GSM1647110': {'illumina_index': '16', 'point': '4', 'batch': '13', 'agent': 'Smeg', 'rin': '7.4', 'individual': 'M373'}, 'GSM2466462': {'line': 'A549', 'passages': '15-18', 'type': 'lung epithelial cells'}, 'GSM2466460': {'line': 'A549', 'passages': '15-18', 'type': 'lung epithelial cells'}, 'GSM2466466': {'line': 'A549', 'passages': '15-18', 'type': 'lung epithelial cells'}, 'GSM2466464': {'line': 'A549', 'passages': '15-18', 'type': 'lung epithelial cells'}, 'GSM2466468': {'line': 'A549', 'passages': '15-18', 'type': 'lung epithelial cells'}, 'GSM3189443': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '24', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.623437', 'percentaligned': '0.878099009', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.127821', 'original': 'Control'}, 'GSM2084399': {'induction': 'PMA+LPS', 'time': '120 hr'}, 'GSM2084398': {'induction': 'PMA+LPS', 'time': '120 hr'}, 'GSM2084391': {'induction': 'PMA+LPS', 'time': '48 hr'}, 'GSM1517772': {'knockdown': 'shMITF', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM2084393': {'induction': 'PMA', 'time': '96 hr'}, 'GSM2084392': {'induction': 'PMA', 'time': '96 hr'}, 'GSM2084395': {'induction': 'PMA', 'time': '120 hr'}, 'GSM2084394': {'induction': 'PMA', 'time': '96 hr'}, 'GSM2084397': {'induction': 'PMA', 'time': '120 hr'}, 'GSM2084396': {'induction': 'PMA', 'time': '120 hr'}, 'GSM2393523': {'replicate': '1', 'line': 'MCF7', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393522': {'replicate': '2', 'line': 'K562', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393521': {'replicate': '1', 'line': 'K562', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393520': {'replicate': '2', 'line': 'IMR90', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393527': {'type': 'short RNA', 'line': 'BJ', 'replicate': '1', 'treatment': 'TAP'}, 'GSM2393526': {'replicate': '2', 'line': 'U2OS', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393525': {'replicate': '1', 'line': 'U2OS', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM2393524': {'replicate': '2', 'line': 'MCF7', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM1555748': {'type': 'mature erythrocyte'}, 'GSM2393529': {'type': 'short RNA', 'line': 'HUVEC', 'replicate': '1', 'treatment': 'CIP'}, 'GSM2393528': {'type': 'short RNA', 'line': 'BJ', 'replicate': '2', 'treatment': 'TAP'}, 'GSM2360010': {'induction': 'Osteoblast differentiation', 'treatment': 'siCon'}, 'GSM2085622': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085623': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085620': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085621': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085626': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085627': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085624': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085625': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085628': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085629': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1949082': {'line': 'M238', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM1949083': {'line': 'M238', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM1949080': {'line': 'M238', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM1949081': {'line': 'M238', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2242892': {'line': 'A375', 'replicate': '4'}, 'GSM2491438': {'disease': 'Dengue fever', 'condition': 'Dengue Fever Group A'}, 'GSM2491439': {'disease': 'Dengue hemorrhagic fever', 'condition': 'Dengue Fever Group B'}, 'GSM2491432': {'disease': 'Dengue fever', 'condition': 'Dengue Fever Group A'}, 'GSM2491433': {'disease': 'Dengue fever', 'condition': 'Dengue Fever Group A'}, 'GSM2536040': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10611', 'samplename': '1_Ctl5_redraw_C45', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34711', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10611', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C45'}, 'GSM2491431': {'disease': 'Other Febrile Illness', 'condition': 'Other Febrile Illness'}, 'GSM2491436': {'disease': 'Dengue fever', 'condition': 'Dengue Fever Group A'}, 'GSM2491437': {'disease': 'Dengue fever', 'condition': 'Dengue Fever Group A'}, 'GSM2491434': {'disease': 'Dengue fever', 'condition': 'Dengue Fever Group A'}, 'GSM2491435': {'disease': 'Dengue fever', 'condition': 'Dengue Fever Group A'}, 'GSM1505588': {'tissue': 'Thyroid'}, 'GSM2243769': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243768': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243763': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243762': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243761': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243760': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243767': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243766': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243765': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243764': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1104510': {'line': 'gastric carcinoma cell line SNU-719', 'infection': 'EBV', 'passage': '3-5'}, 'GSM1395809': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395808': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2171989': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171988': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2666025': {'age': 'Day 130', 'well': 'B11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666024': {'age': 'Day 130', 'well': 'D4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666027': {'age': 'Day 130', 'well': 'G4', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2666026': {'age': 'Day 130', 'well': 'D9', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2171983': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171982': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171981': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171980': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171987': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171986': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171985': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171984': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM3594318': {'cluster': '4', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594319': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594312': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594313': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594310': {'cluster': '1', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594311': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594316': {'cluster': '2', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594317': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594314': {'cluster': '4', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594315': {'cluster': '4', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3416494': {'compartment': 'Stroma', 'id': 'CUMC_072', 'library': 'NuGEN'}, 'GSM3416495': {'compartment': 'Stroma', 'id': 'CUMC_108', 'library': 'NuGEN'}, 'GSM3416496': {'compartment': 'Stroma', 'id': 'CUMC_109', 'library': 'NuGEN'}, 'GSM3416497': {'compartment': 'Stroma', 'id': 'CUMC_110', 'library': 'NuGEN'}, 'GSM3416490': {'compartment': 'Stroma', 'id': 'CUMC_106', 'library': 'NuGEN'}, 'GSM3416491': {'compartment': 'Stroma', 'id': 'CUMC_069', 'library': 'NuGEN'}, 'GSM3416492': {'compartment': 'Stroma', 'id': 'CUMC_107', 'library': 'NuGEN'}, 'GSM3416493': {'compartment': 'Stroma', 'id': 'CUMC_070', 'library': 'NuGEN'}, 'GSM3416498': {'compartment': 'Stroma', 'id': 'CUMC_111', 'library': 'NuGEN'}, 'GSM3416499': {'compartment': 'Stroma', 'id': 'CUMC_112', 'library': 'NuGEN'}, 'GSM1462859': {'type': 'Mesenchymal stromal cells', 'passage': 'Passage 4'}, 'GSM1462858': {'type': 'Mesenchymal stromal cells', 'passage': 'Passage 4'}, 'GSM2112211': {'status': 'paroxysmal nocturnal hemoglobinuria (PNH) patient', 'tissue': 'blood', 'type': 'GPI-AP+ granulocyte cell'}, 'GSM2112212': {'status': 'paroxysmal nocturnal hemoglobinuria (PNH) patient', 'tissue': 'blood', 'type': 'GPI-AP+ granulocyte cell'}, 'GSM2112213': {'status': 'paroxysmal nocturnal hemoglobinuria (PNH) patient', 'tissue': 'blood', 'type': 'GPI-AP- granulocyte cell'}, 'GSM2112214': {'status': 'paroxysmal nocturnal hemoglobinuria (PNH) patient', 'tissue': 'blood', 'type': 'GPI-AP- granulocyte cell'}, 'GSM2112215': {'status': 'healthy control', 'tissue': 'blood', 'type': 'GPI-AP+ granulocyte cell'}, 'GSM2112216': {'status': 'healthy control', 'tissue': 'blood', 'type': 'GPI-AP+ granulocyte cell'}, 'GSM2112217': {'status': 'healthy control', 'tissue': 'blood', 'type': 'GPI-AP+ granulocyte cell'}, 'GSM900482': {'state': 'healthy', 'tissue': 'heart, right ventricle'}, 'GSM3586568': {'origin': 'GCB', 'pfstt': '803', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '820', 'cycles': '6', 'oscs': '0'}, 'GSM3586569': {'origin': 'UNCLASSIFIED', 'pfstt': '271', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '285', 'cycles': '6', 'oscs': '1'}, 'GSM3586566': {'origin': 'ABC', 'pfstt': '1', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1614', 'cycles': '6', 'oscs': '0'}, 'GSM3586567': {'origin': 'ABC', 'pfstt': '186', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '298', 'cycles': '6', 'oscs': '1'}, 'GSM3586564': {'origin': 'ABC', 'pfstt': '824', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '824', 'cycles': '8', 'oscs': '0'}, 'GSM3586565': {'origin': 'UNCLASSIFIED', 'pfstt': '750', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '750', 'cycles': '8', 'oscs': '0'}, 'GSM1692722': {'with': 'control shRNA', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'GFP control', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM1692723': {'with': 'control shRNA', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'GFP control', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM1692720': {'with': 'control shRNA', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'GFP control', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM1692721': {'with': 'control shRNA', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'GFP control', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM2316708': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316709': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM3177218': {'responder': 'NO', 'global': '32', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '31', 'cdai': '122.88'}, 'GSM2316700': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316701': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316702': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316703': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316704': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316705': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316706': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316707': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2090428': {'subtype': 'nascent RNA', 'line': 'MOLT4', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'JQ1'}, 'GSM3177219': {'responder': 'NO', 'global': '27', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '31', 'cdai': '37.2'}, 'GSM2511583': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'control'}, 'GSM1714411': {'feed': '100 µM, 6 days', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714410': {'feed': '100 µM, 3 days', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714413': {'feed': '100 µM, 22 days', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714412': {'feed': '100 µM, 6 days', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM2024872': {'line': 'MCF-7', 'transfection': 'siZNF143', 'treatment': '10 uM 17-beta oestradiol for 3 hours'}, 'GSM2024870': {'line': 'MCF-7', 'transfection': 'siZNF143', 'treatment': '10 uM 17-beta oestradiol for 3 hours'}, 'GSM2024871': {'line': 'MCF-7', 'transfection': 'siZNF143', 'treatment': '10 uM 17-beta oestradiol for 3 hours'}, 'GSM2815838': {'line': 'H9'}, 'GSM2330169': {'subset': 'CXCR5 high', 'type': 'T cell', 'individual': 'D73', 'group': 'Allergic'}, 'GSM2815836': {'line': 'H9'}, 'GSM2815837': {'line': 'H9'}, 'GSM2815834': {'line': 'H9'}, 'GSM2815835': {'line': 'H9'}, 'GSM2815832': {'line': 'H9'}, 'GSM2815833': {'line': 'H9'}, 'GSM2815830': {'line': 'H9'}, 'GSM2815831': {'line': 'H9'}, 'GSM1716956': {'tissue': 'lung', 'stage': 'tumor'}, 'GSM2391143': {'disease': 'NSCLC'}, 'GSM1716954': {'tissue': 'lung', 'stage': 'tumor'}, 'GSM3177187': {'responder': 'YES', 'global': '19', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '16', 'cdai': '236'}, 'GSM1126638': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126639': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126636': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126637': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126634': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126635': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126632': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126633': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126630': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1716953': {'tissue': 'lung', 'stage': 'normal'}, 'GSM2455772': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM3177182': {'responder': 'YES', 'global': '2', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '13', 'cdai': '88.22'}, 'GSM1716951': {'tissue': 'lung', 'stage': 'normal'}, 'GSM955146': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955147': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955144': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955145': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955142': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955143': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955140': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM2705323': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM955148': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955149': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM2455778': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2705325': {'date': '13.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 2', 'dilution': '1:10'}, 'GSM2473289': {'genotype': 'YYFF'}, 'GSM2473288': {'genotype': 'FYYF'}, 'GSM2473285': {'genotype': 'YFFF'}, 'GSM2473284': {'genotype': 'rWT'}, 'GSM2473287': {'genotype': 'FYYF'}, 'GSM2473286': {'genotype': 'YFFF'}, 'GSM2473281': {'genotype': 'YFFF'}, 'GSM2473280': {'genotype': 'rWT'}, 'GSM2473283': {'genotype': 'rWT'}, 'GSM2473282': {'genotype': 'YFFF'}, 'GSM2653788': {'profile': 'CD326+/CD49fHI/CD26-', 'phenotype': 'BCH'}, 'GSM2653789': {'profile': 'CD326+/CD49fHI/CD26-', 'phenotype': 'non-BCH'}, 'GSM1598022': {'vendor': 'Abcam', 'tissue': 'fetal brain', 'antibody': 'H3K4me1', 'stage': '12 weeks after gestation'}, 'GSM2653786': {'profile': 'CD326+/CD49fHI/CD26-', 'phenotype': 'BCH'}, 'GSM2653787': {'profile': 'CD326+/CD49fHI/CD26-', 'phenotype': 'BCH'}, 'GSM1540651': {'agent': '1,25D', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'Control'}, 'GSM1540653': {'agent': '1,25D', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'Control'}, 'GSM1540656': {'agent': '1,25D', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'Control'}, 'GSM1540658': {'agent': '1,25D', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'HNRNPC KD'}, 'GSM2064546': {'line': 'MDA MB-231'}, 'GSM2064547': {'line': 'MDA MB-231'}, 'GSM2064544': {'line': 'MDA MB-231'}, 'GSM2064545': {'line': 'MDA MB-231'}, 'GSM2064542': {'line': 'MCF-7'}, 'GSM2064543': {'line': 'MCF-7'}, 'GSM2064540': {'line': 'MCF-7'}, 'GSM2064541': {'line': 'MCF-7'}, 'GSM2257877': {'from': 'human induced pluripotent stem cells', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM2413476': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2257878': {'from': 'cord blood', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM1479538': {'index': '27', 'diagnosis': '6', 'cellcount': '1741969', 'gender': 'M', 'age': '42', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '40', 'collectiondate': 'June 19 2012', 'samplename': '40_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM2338858': {'type': 'in vitro decidualized stromal fibroblasts', 'cycle': 'Day 9'}, 'GSM2338859': {'type': 'Endometrial Stromal Fibroblast', 'cycle': 'Day 3'}, 'GSM2086429': {'line': 'HEK293'}, 'GSM2086428': {'line': 'HEK293'}, 'GSM2486503': {'variation': 'mutant-IDH1', 'condition': 'R132H-IDH1'}, 'GSM2086425': {'line': 'HEK293'}, 'GSM2086424': {'line': 'HEK293'}, 'GSM2086427': {'line': 'HEK293'}, 'GSM2086426': {'line': 'HEK293'}, 'GSM2086421': {'line': 'HEK293'}, 'GSM2338855': {'type': 'in vitro decidualized stromal fibroblasts', 'cycle': 'Day 3'}, 'GSM2338856': {'type': 'in vitro decidualized stromal fibroblasts', 'cycle': 'Day 3'}, 'GSM2338857': {'type': 'in vitro decidualized stromal fibroblasts', 'cycle': 'Day 9'}, 'GSM2486501': {'variation': 'control', 'condition': 'control'}, 'GSM2632604': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2486507': {'variation': 'mutant-IDH1 and P53 knockdown and ATRX knockdown', 'condition': 'R132H-IDH1 and P53 shRNA and ATRX shRNA'}, 'GSM2720352': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2720353': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2720350': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2720351': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2720356': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2486504': {'variation': 'mutant-IDH1', 'condition': 'R132H-IDH1'}, 'GSM2720354': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2720355': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2720358': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2632607': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM1217934': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'XHP472'}, 'GSM1217935': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'XHP472'}, 'GSM1217936': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'ICRH025'}, 'GSM1217937': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'ICRH025'}, 'GSM1217930': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'XHP472'}, 'GSM1217931': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'XHP472'}, 'GSM1217932': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH070'}, 'GSM1217933': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH070'}, 'GSM1217938': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'ICRH025'}, 'GSM1217939': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'ICRH025'}, 'GSM1703768': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM1703763': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703762': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM1703761': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703760': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703767': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1862178': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shNS', 'treatment': 'none'}, 'GSM1703765': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM1703764': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM2298986': {'age': '25', 'type': 'Fibroblasts'}, 'GSM1957197': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM3177216': {'responder': 'NO', 'global': '21', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '29', 'cdai': '161.5'}, 'GSM3190569': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.136311'}, 'GSM3190568': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.850427'}, 'GSM3190561': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C6, RV-C17', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.203846'}, 'GSM3190560': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C6, RV-C17', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.74328'}, 'GSM3190563': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.726257'}, 'GSM3190562': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.870551'}, 'GSM3190565': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A82', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.564201'}, 'GSM3190564': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.87684'}, 'GSM3190567': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A82', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.864014'}, 'GSM3190566': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.934728'}, 'GSM2287176': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2696602': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696600': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Prophylactic Mastectomy', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696601': {'status': '0', 'grade': '2', 'age': '70', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '4.6'}, 'GSM2361353': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'ACTTGA'}, 'GSM2361352': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'AGTTCC'}, 'GSM2361355': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'GGTAGC'}, 'GSM2287173': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2735237': {'cohort': 'Paired', 'tils': '15', 'subtype': 'II', 'burden': '19', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735236': {'cohort': 'Paired', 'tils': '20', 'subtype': 'II', 'burden': '37', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735235': {'cohort': 'N/A', 'tils': '1', 'subtype': 'II', 'burden': 'Not evaluated', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735234': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'II', 'burden': '238', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735233': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '10', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2287170': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2735231': {'cohort': 'Paired', 'tils': '10', 'subtype': 'III', 'burden': '41', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735230': {'cohort': 'Unpaired', 'tils': '20', 'subtype': 'I', 'burden': '1013', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM1808110': {'tissue': 'LCLs'}, 'GSM1808111': {'tissue': 'LCLs'}, 'GSM2287171': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2735239': {'cohort': 'Unpaired', 'tils': 'Not evaluated', 'subtype': 'II', 'burden': '257', 'morphology': 'N/A', 'event': 'Disease progression', 'stage': 'IV'}, 'GSM2735238': {'cohort': 'Unpaired', 'tils': '1', 'subtype': 'I', 'burden': '265', 'morphology': 'undifferentiated, round', 'event': 'Disease progression', 'stage': 'IV'}, 'GSM2526879': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526878': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526877': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526876': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526875': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526874': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526873': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526872': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526871': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526870': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1518069': {'culture': 'OP9-GFP'}, 'GSM2058180': {'line': 'V9M', 'tissue': 'colorectal cancer cell line'}, 'GSM1900670': {'line': 'HEK293'}, 'GSM1900671': {'line': 'HEK293'}, 'GSM3189303': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '96', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.717163', 'percentaligned': '0.679084374', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.04653', 'original': 'Control'}, 'GSM686940': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Upstate', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H4K5ac', 'transgenes': 'none'}, 'GSM3189302': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B69', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.854379', 'percentaligned': '0.92218747', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.389596', 'original': 'Control'}, 'GSM2359547': {'down': 'none', 'expression': 'K77R'}, 'GSM2153069': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2359545': {'down': 'none', 'expression': 'RBM25'}, 'GSM2359544': {'down': 'none', 'expression': 'GFP'}, 'GSM2359543': {'down': 'none', 'expression': 'GFP'}, 'GSM2359542': {'down': 'RBM25', 'expression': 'none'}, 'GSM2359541': {'down': 'RBM25', 'expression': 'none'}, 'GSM1695852': {'tissue': 'Bone marrow', 'markers': 'CD34+CD45RA+CD38+CD10neg CD62Lhilinneg'}, 'GSM2153060': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153061': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153062': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153063': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153064': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153065': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153066': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2359548': {'down': 'none', 'expression': 'K77R'}, 'GSM2511587': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2138519': {'line': 'M230', 'state': 'Melanoma'}, 'GSM2138518': {'line': 'M207', 'state': 'Melanoma'}, 'GSM2138517': {'line': 'M202', 'state': 'Melanoma'}, 'GSM2138516': {'line': 'M397AR', 'state': 'Melanoma'}, 'GSM2138515': {'line': 'M397', 'state': 'Melanoma'}, 'GSM2138514': {'line': 'M395AR', 'state': 'Melanoma'}, 'GSM2138513': {'line': 'M399', 'state': 'Melanoma'}, 'GSM2138512': {'line': 'M375', 'state': 'Melanoma'}, 'GSM2138511': {'line': 'M398_DMOS', 'state': 'Melanoma'}, 'GSM2138510': {'line': 'M376', 'state': 'Melanoma'}, 'GSM2300620': {'gender': 'male', 'type': 'Human glioblastoma'}, 'GSM1527072': {'line': 'Dermal Fibroblast from Coriell Institute (GM03348)', 'gene': 'None', 'replicate': '1'}, 'GSM2026540': {'gender': 'male', 'type': 'iPSC', 'genotype': 'FXS patient'}, 'GSM2338035': {'line': 'U2OS', 'type': 'asynchronous cells'}, 'GSM1602560': {'line': 'G401', 'tissue': 'kidney', 'type': 'rhabdoid'}, 'GSM1602563': {'line': 'G401', 'tissue': 'kidney', 'type': 'rhabdoid'}, 'GSM2128329': {'strain': 'clone of A673', 'batch': '1', 'treatment': 'transfected with CXCR4 control sponge'}, 'GSM2026541': {'gender': 'male', 'type': 'iPSC aggregates', 'genotype': 'FXS patient'}, 'GSM2324389': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2324388': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2324385': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2324384': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2324387': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2324386': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2324383': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2360288': {'type': 'iMGL', 'treatment': 'Rat hippocampal neurons'}, 'GSM1037854': {'status': 'proven fertile', 'type': 'sperm', 'library': 'paired-end, 1st 4 bases of Read 1 used for multiplexing', 'size': '2x36'}, 'GSM2565447': {'construction': 'PLATE-Seq', 'drug': 'KINETIN RIBOSIDE'}, 'GSM2565205': {'construction': 'PLATE-Seq', 'drug': 'Decitabine'}, 'GSM2565446': {'construction': 'PLATE-Seq', 'drug': 'TETRACHLOROISOPHTHALONITRILE'}, 'GSM2226535': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 4', 'type': 'Primary Tumor'}, 'GSM2565444': {'construction': 'PLATE-Seq', 'drug': 'Triciribine'}, 'GSM2241572': {'batch': 'C', 'condition': 'Disomic'}, 'GSM2226533': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 2', 'type': 'Primary Tumor'}, 'GSM2565442': {'construction': 'PLATE-Seq', 'drug': 'TAK-700 (Orteronel)'}, 'GSM2666113': {'age': 'Day 130', 'well': 'D3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2166349': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2565441': {'construction': 'PLATE-Seq', 'drug': 'Rocilinostat (ACY-1215)'}, 'GSM2166345': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166344': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166347': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2565440': {'construction': 'PLATE-Seq', 'drug': 'Propranolol HCl'}, 'GSM2166341': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166340': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166343': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166342': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2492455': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2451438': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451439': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451436': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451437': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451435': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2492457': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2666112': {'age': 'Day 130', 'well': 'F6', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2492456': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM3189149': {'boca': 'No', 'years': '17', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '72', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.908055', 'percentaligned': '0.731318225', 'Sex': 'F', 'nl63': 'No', 'libcounts': '0.651439', 'original': 'Control'}, 'GSM1888649': {'set': 'isogenic', 'type': 'ESC'}, 'GSM2243784': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H5', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1888644': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888645': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888646': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888647': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888640': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1888641': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1888642': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1888643': {'set': 'isogenic', 'type': 'ESC'}, 'GSM2241574': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM984331': {'grade': '3', 'recurrence': '1', 'size': '2', 'metastasis': '0', 'Stage': 'IIIC'}, 'GSM1704629': {'line': 'MCF7', 'sirna': 'CEBPD', 'time': '48h after transfection'}, 'GSM2565448': {'construction': 'PLATE-Seq', 'drug': 'WIN 64338 hydrochloride'}, 'GSM2666115': {'age': 'Day 130', 'well': 'D7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2241575': {'batch': 'C', 'condition': 'Trisomic'}, 'GSM2666114': {'age': 'Day 130', 'well': 'A10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM3189309': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '17', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.77077', 'percentaligned': '0.823331289', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.085509', 'original': 'Control'}, 'GSM2108464': {'stages': 'myotube nucleus'}, 'GSM2243789': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1872883': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872882': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872881': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872880': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM2643378': {'donor': '3', 'day': '4', 'infection': 'LPS'}, 'GSM2643379': {'donor': '3', 'day': '1', 'infection': 'Mock'}, 'GSM1872885': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872884': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM2643374': {'donor': '2', 'day': '4', 'infection': 'Mock'}, 'GSM2643375': {'donor': '3', 'day': '1', 'infection': 'EBOV'}, 'GSM2643376': {'donor': '3', 'day': '4', 'infection': 'EBOV'}, 'GSM2643377': {'donor': '3', 'day': '1', 'infection': 'LPS'}, 'GSM2643370': {'donor': '2', 'day': '4', 'infection': 'EBOV'}, 'GSM2643371': {'donor': '2', 'day': '1', 'infection': 'LPS'}, 'GSM2643372': {'donor': '2', 'day': '4', 'infection': 'LPS'}, 'GSM2643373': {'donor': '2', 'day': '1', 'infection': 'Mock'}, 'GSM2443365': {'gender': 'male', 'age': '60', 'type': 'O'}, 'GSM2511589': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM1440491': {'type': 'non-neoplastic brain'}, 'GSM1440490': {'type': 'non-neoplastic brain'}, 'GSM1440493': {'type': 'non-neoplastic brain'}, 'GSM1440492': {'type': 'non-neoplastic brain'}, 'GSM1440495': {'type': 'non-neoplastic brain'}, 'GSM1440494': {'type': 'non-neoplastic brain'}, 'GSM1440497': {'type': 'non-neoplastic brain'}, 'GSM1256460': {'line': 'MDA', 'type': 'breast cancer cells', 'variation': 'OVOL1_and_OVOL2_overexpressed'}, 'GSM1440499': {'type': 'non-neoplastic brain'}, 'GSM1440498': {'type': 'non-neoplastic brain'}, 'GSM1946036': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18861', 'for': '60min'}, 'GSM1946037': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18861', 'for': '60min'}, 'GSM1946034': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18861', 'for': '30min'}, 'GSM1946035': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18861', 'for': '30min'}, 'GSM1946032': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18859', 'for': '60min'}, 'GSM1946033': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18859', 'for': '60min'}, 'GSM1946030': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18859', 'for': '60min'}, 'GSM1946031': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18859', 'for': '60min'}, 'GSM1946038': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18870', 'for': '30min'}, 'GSM1946039': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18870', 'for': '30min'}, 'GSM2247626': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247627': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247624': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247625': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247622': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247623': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247620': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247621': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247628': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247629': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2108467': {'stages': 'myotube nucleus'}, 'GSM2082078': {'line': 'IMR-5', 'sirna': 'siAURKA'}, 'GSM2082079': {'line': 'IMR-5', 'treatment': 'DMSO'}, 'GSM2082072': {'line': 'IMR-5', 'sirna': 'siTF3C5'}, 'GSM2082073': {'line': 'IMR-5', 'sirna': 'siRAD21'}, 'GSM2082070': {'line': 'IMR-5', 'sirna': 'siTF3C5'}, 'GSM2082071': {'line': 'IMR-5', 'sirna': 'siTF3C5'}, 'GSM2082076': {'line': 'IMR-5', 'sirna': 'siAURKA'}, 'GSM2082077': {'line': 'IMR-5', 'sirna': 'siAURKA'}, 'GSM2082074': {'line': 'IMR-5', 'sirna': 'siRAD21'}, 'GSM2082075': {'line': 'IMR-5', 'sirna': 'siAURKA'}, 'GSM1896084': {'individual': 'AF17', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2204102': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204103': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204100': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204101': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204106': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204107': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204104': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204105': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204108': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204109': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM1571057': {'stage': 'undifferentiated'}, 'GSM2431678': {'number': '1_30', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D6'}, 'GSM2431679': {'number': '1_31', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D6', 'concentration': '10μM'}, 'GSM1626513': {'tissue': 'placental villus parenchyma'}, 'GSM2431672': {'number': '1_25', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D6', 'concentration': '10μM'}, 'GSM2431673': {'number': '1_26', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D6', 'concentration': '100ng/ml'}, 'GSM2431670': {'number': '1_23', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D5', 'concentration': '100ng/ml'}, 'GSM2431671': {'number': '1_24', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D5'}, 'GSM2431676': {'number': '1_29', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D6', 'concentration': '100ng/ml'}, 'GSM2431677': {'number': '1_3', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D4'}, 'GSM2431674': {'number': '1_27', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D6'}, 'GSM2431675': {'number': '1_28', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D6', 'concentration': '10μM'}, 'GSM2205857': {'type': 'Noncancerous tissue'}, 'GSM2205856': {'type': 'Tumor tissue'}, 'GSM2205855': {'type': 'Noncancerous tissue'}, 'GSM2205854': {'type': 'Tumor tissue'}, 'GSM2205853': {'type': 'Noncancerous tissue'}, 'GSM2205852': {'type': 'Tumor tissue'}, 'GSM2205851': {'type': 'Noncancerous tissue'}, 'GSM2205850': {'type': 'Tumor tissue'}, 'GSM1626516': {'tissue': 'placental villus parenchyma'}, 'GSM2205859': {'type': 'Noncancerous tissue'}, 'GSM2205858': {'type': 'Tumor tissue'}, 'GSM2256156': {'infected': 'common:TSS5511_-_28908333.23-P1P2', 'type': 'U87'}, 'GSM2256157': {'infected': 'u87_hek:TSS85775_-_52442033.23-P1P2', 'type': 'U87'}, 'GSM2256154': {'infected': 'common:TSS18227_-_62622978.23-P1P2', 'type': 'U87'}, 'GSM2256155': {'infected': 'common:TSS5511_-_28908372.23-P1P2', 'type': 'U87'}, 'GSM2256152': {'infected': 'common:TSS23423_-_56361096.23-ENST00000554022', 'type': 'U87'}, 'GSM2256153': {'infected': 'common:TSS18227_-_62623373.23-P1P2', 'type': 'U87'}, 'GSM2256150': {'infected': 'common:TSS5454_-_26496840.23-ENST00000414762', 'type': 'U87'}, 'GSM2256151': {'infected': 'common:TSS5454_+_26497196.23-ENST00000414762', 'type': 'U87'}, 'GSM1626515': {'tissue': 'placental villus parenchyma'}, 'GSM2256158': {'infected': 'u87_unique:TSS20615_+_49454121.23-CUFF.10430.1', 'type': 'U87'}, 'GSM2256159': {'infected': 'u87_unique:TSS29932_-_97647155.23-CUFF.15024.4', 'type': 'U87'}, 'GSM2348570': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2333003': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2883036': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject14', 'drug': 'Placebo'}, 'GSM1571055': {'stage': 'undifferentiated'}, 'GSM1464300': {'status': 'small cell lung cancer'}, 'GSM2374207': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1464307': {'status': 'small cell lung cancer'}, 'GSM1464306': {'status': 'small cell lung cancer'}, 'GSM2348576': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1712120': {'line': 'MR49F', 'treatment': 'Enzalutamide-Treated'}, 'GSM2374206': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2333008': {'origin': 'breast (tumor)', 'subtype': 'IDC (Luminal)', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM1387909': {'line': 'MRC5'}, 'GSM1464308': {'status': 'small cell lung cancer'}, 'GSM862356': {'line': 'hormone resistant LNCaP-abl', 'variation': 'AR knockdown (AR siRNA)'}, 'GSM862357': {'line': 'hormone resistant LNCaP-abl', 'variation': 'AR knockdown (AR siRNA)'}, 'GSM862354': {'line': 'hormone resistant LNCaP-abl', 'variation': 'Control knockdown (Control siRNA)'}, 'GSM862355': {'line': 'hormone resistant LNCaP-abl', 'variation': 'AR knockdown (AR siRNA)'}, 'GSM862352': {'line': 'hormone resistant LNCaP-abl', 'variation': 'Control knockdown (Control siRNA)'}, 'GSM862353': {'line': 'hormone resistant LNCaP-abl', 'variation': 'Control knockdown (Control siRNA)'}, 'GSM862350': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Strophanthidin'}, 'GSM862351': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Strophanthidin'}, 'GSM2413412': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413413': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413416': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413417': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413414': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413415': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413418': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413419': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2175889': {'subtype': 'Central Memory T Cell (TCM)', 'age': '17 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Resting Uninfected'}, 'GSM2131257': {'tissue': 'lung metastasis', 'protocol': '10% FBS'}, 'GSM2131256': {'tissue': 'lung metastasis', 'protocol': '10% FBS'}, 'GSM2131255': {'tissue': 'primary tumor', 'protocol': '10% FBS'}, 'GSM2226713': {'treatment': 'mRNA U2OS cell'}, 'GSM2131253': {'tissue': 'primary tumor', 'protocol': '10% FBS'}, 'GSM2131252': {'tissue': 'primary tumor', 'protocol': '10% FBS'}, 'GSM2374328': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374329': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374326': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374327': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374324': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374325': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374322': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374323': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374320': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374321': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2644907': {'passages': '75', 'sirna': 'TUNAR siRNAs', 'treatment': 'DMSO'}, 'GSM2361279': {'sum': '7', 'tissue': 'tumorous prostate tissue', 'score': '4', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '60', 'identifier': 'C1', 'population': 'Russian'}, 'GSM1102640': {'line': 'SW1398', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM2805893': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': '1micro/ml Doxycyclin', 'type': 'H1 hESC'}, 'GSM1968991': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'CHLA25-WNT3A Top10 percent'}, 'GSM1968990': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'CHLA25-WNT3A Top10 percent'}, 'GSM1968993': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'CHLA25-WNT3A Top10 percent', 'treatment': 'respondin'}, 'GSM1968992': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'CHLA25-WNT3A Top10 percent'}, 'GSM1968995': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'CHLA25-WNT3A Top10 percent', 'treatment': 'respondin'}, 'GSM1968994': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'CHLA25-WNT3A Top10 percent', 'treatment': 'respondin'}, 'GSM1647098': {'illumina_index': '16', 'point': '18', 'batch': '12', 'agent': 'Salm', 'rin': '3.8', 'individual': 'M374'}, 'GSM1647099': {'illumina_index': '18', 'point': '4', 'batch': '12', 'agent': 'GC', 'rin': '6.1', 'individual': 'M373'}, 'GSM1647092': {'illumina_index': '6', 'point': '18', 'batch': '12', 'agent': 'Salm', 'rin': '7', 'individual': 'M375'}, 'GSM1647093': {'illumina_index': '7', 'point': '4', 'batch': '12', 'agent': 'BCG', 'rin': '7.6', 'individual': 'M373'}, 'GSM1647090': {'illumina_index': '4', 'point': '48', 'batch': '12', 'agent': 'Rv', 'rin': '8.3', 'individual': 'M373'}, 'GSM1647091': {'illumina_index': '5', 'point': '48', 'batch': '12', 'agent': 'Rv', 'rin': '2.9', 'individual': 'M375'}, 'GSM1647096': {'illumina_index': '14', 'point': '18', 'batch': '12', 'agent': 'Rv+', 'rin': '7.8', 'individual': 'M376'}, 'GSM1647097': {'illumina_index': '15', 'point': '4', 'batch': '12', 'agent': 'BCG', 'rin': '8.4', 'individual': 'M376'}, 'GSM1647094': {'illumina_index': '12', 'point': '48', 'batch': '12', 'agent': 'Yers', 'rin': '9', 'individual': 'M376'}, 'GSM1647095': {'illumina_index': '13', 'point': '4', 'batch': '12', 'agent': 'GC', 'rin': '6.6', 'individual': 'M377'}, 'GSM2653819': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2334762': {'type': 'High grade'}, 'GSM2334763': {'type': 'High grade'}, 'GSM2334766': {'type': 'Low grade'}, 'GSM2334767': {'type': 'Low grade'}, 'GSM2334764': {'type': 'High grade'}, 'GSM2334765': {'type': 'Low grade'}, 'GSM2047560': {'well': 'D08', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2334768': {'type': 'Low grade'}, 'GSM2334769': {'type': 'Low grade'}, 'GSM2644904': {'passages': '75', 'sirna': 'Scramble siRNA', 'treatment': 'DMSO'}, 'GSM1386283': {'type': 'CD45+ hDMEC-rEC-hMPP'}, 'GSM1386282': {'type': 'HUVEC CD45+CD34+ in vivo'}, 'GSM1386281': {'type': 'human umbilical vein ECs (HUVECs)'}, 'GSM1386280': {'type': 'human umbilical vein ECs (HUVECs)'}, 'GSM1386287': {'type': 'tet-CD45+ hDMEC-rEC-hMPP'}, 'GSM1386286': {'type': 'tet-CD45+ hDMEC-rEC-hMPP'}, 'GSM1386285': {'type': 'CD45+ hDMEC-rEC-hMPP'}, 'GSM1386284': {'type': 'CD45+ hDMEC-rEC-hMPP'}, 'GSM1642318': {'tissue': 'Cerebellum', 'genotype': 'Healthy'}, 'GSM1642319': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM1642316': {'tissue': 'Cerebellum', 'genotype': 'Healthy'}, 'GSM1642317': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM1642314': {'tissue': 'Cerebellum', 'genotype': 'Healthy'}, 'GSM1642315': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM1642312': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM1642313': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM1642310': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM1642311': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM2124044': {'type': 'TEMRA', 'id': 'HS60223'}, 'GSM1841266': {'tissue': 'Heart', 'diagnosis': 'restrictive cardiomyopathy'}, 'GSM1841261': {'tissue': 'Heart', 'diagnosis': 'healthy'}, 'GSM1841263': {'tissue': 'Heart', 'diagnosis': 'healthy'}, 'GSM1841268': {'tissue': 'Heart', 'diagnosis': 'restrictive cardiomyopathy'}, 'GSM2048867': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'APC-R876'}, 'GSM2940626': {'line': 'H1299', 'p72rpolymorphism': 'P', 'hotspot': 'R175H', 'batch': 'b2'}, 'GSM2940627': {'line': 'H1299', 'p72rpolymorphism': 'P', 'hotspot': 'R175H', 'batch': 'b2'}, 'GSM2940628': {'line': 'H1299', 'p72rpolymorphism': 'P', 'hotspot': 'R175H', 'batch': 'b2'}, 'GSM2940629': {'line': 'H1299', 'p72rpolymorphism': 'R', 'hotspot': 'R175H', 'batch': 'b1'}, 'GSM2124045': {'type': 'TEMRA', 'id': 'LH097'}, 'GSM1553424': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM1553423': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM1553422': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM1553421': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM1553420': {'tissue': 'T cell acute lymphoblastic leukemia'}, 'GSM2561605': {'protocol': 'Cultured without T3', 'variation': 'MCT8-deficient'}, 'GSM2561604': {'protocol': 'Cultured without T3', 'variation': 'MCT8-deficient'}, 'GSM2561607': {'protocol': 'Cultured with T3 100nM', 'variation': 'healthy control'}, 'GSM2561606': {'protocol': 'Cultured with T3 100nM', 'variation': 'healthy control'}, 'GSM2561601': {'protocol': 'Cultured with T3 100nM', 'variation': 'MCT8-deficient'}, 'GSM2561600': {'protocol': 'Cultured with T3 100nM', 'variation': 'MCT8-deficient'}, 'GSM2561603': {'protocol': 'Cultured without T3', 'variation': 'MCT8-deficient'}, 'GSM2561602': {'protocol': 'Cultured with T3 100nM', 'variation': 'MCT8-deficient'}, 'GSM2176142': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176143': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176140': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176141': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2561609': {'protocol': 'Cultured without T3', 'variation': 'healthy control'}, 'GSM2561608': {'protocol': 'Cultured with T3 100nM', 'variation': 'healthy control'}, 'GSM2176144': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176145': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2616667': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2632136': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2616484': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2632134': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2632135': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2632132': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2632133': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2632130': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2632131': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2665837': {'age': 'Day 175', 'well': 'H6', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2190593': {'with': 'lenti-viral based shNT', 'line': 'A375', 'type': 'melanoma cell line', 'point': '2 days after transfection'}, 'GSM2190592': {'with': 'lenti-viral based shNT', 'line': 'A375', 'type': 'melanoma cell line', 'point': '2 days after transfection'}, 'GSM2190595': {'with': 'lenti-viral based shIno80', 'line': 'A375', 'type': 'melanoma cell line', 'point': '2 days after transfection'}, 'GSM2190594': {'with': 'lenti-viral based shIno80', 'line': 'A375', 'type': 'melanoma cell line', 'point': '2 days after transfection'}, 'GSM2190597': {'with': 'lenti-viral based shNT', 'line': 'A375', 'type': 'melanoma cell line', 'point': '3 days after transfection'}, 'GSM2190596': {'with': 'lenti-viral based shNT', 'line': 'A375', 'type': 'melanoma cell line', 'point': '3 days after transfection'}, 'GSM2190599': {'with': 'lenti-viral based shIno80', 'line': 'A375', 'type': 'melanoma cell line', 'point': '3 days after transfection'}, 'GSM2190598': {'with': 'lenti-viral based shIno80', 'line': 'A375', 'type': 'melanoma cell line', 'point': '3 days after transfection'}, 'GSM2700510': {'line': '293T (pool of 3 KO clones)', 'tissue': 'Human Embryonic kidney', 'genotype': 'Fas ligand KO -/-', 'infection': 'Infected with pTIP-shL3; 100ng/uL doxycycline', 'point': 'harvested at 50hrs'}, 'GSM2700511': {'line': '293T (pool of 3 KO clones)', 'tissue': 'Human Embryonic kidney', 'genotype': 'Fas ligand KO -/-', 'infection': 'Infected with pTIP-scr; 100ng/uL doxycycline', 'point': 'harvested at 100hrs'}, 'GSM2700516': {'line': 'HeyA8 (single Fas KO clone #11)', 'tissue': 'Ovaries', 'genotype': 'Fas KO -/-', 'infection': 'Infected with pLKO-scr', 'point': 'harvested at 50hrs'}, 'GSM2700517': {'line': 'HeyA8 (single Fas KO clone #11)', 'tissue': 'Ovaries', 'genotype': 'Fas KO -/-', 'infection': 'Infected with pLKO-shR6', 'point': 'harvested at 50hrs'}, 'GSM2700514': {'line': '293T (pool of 3 KO clones)', 'tissue': 'Human Embryonic kidney', 'genotype': 'Fas ligand KO -/-', 'infection': 'Infected with pTIP-shL3; 100ng/uL doxycycline', 'point': 'harvested at 100hrs'}, 'GSM2700515': {'line': 'HeyA8 (single Fas KO clone #11)', 'tissue': 'Ovaries', 'genotype': 'Fas KO -/-', 'infection': 'Infected with pLKO-scr', 'point': 'harvested at 50hrs'}, 'GSM1963877': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963876': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963875': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963874': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963873': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963872': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963871': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963870': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM2588929': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'CCACGCTCCCAGAAAGCAAA'}, 'GSM1617459': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM2413565': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1963879': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963878': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM2248188': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248189': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2341629': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'Nup153'}, 'GSM2341628': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'GFP'}, 'GSM2341627': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'GFP'}, 'GSM2333487': {'line': 'U87MG', 'type': 'malignant glioblastoma cell line', 'population': 'poorly invasive'}, 'GSM2333484': {'with': 'EZH2 siRNA for 48 hrs', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333485': {'line': 'U87MG', 'type': 'malignant glioblastoma cell line', 'population': 'poorly invasive'}, 'GSM2341623': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'GFP'}, 'GSM2333483': {'with': 'EZH2 siRNA for 48 hrs', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333480': {'with': 'control siRNA for 48hrs', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333481': {'with': 'control siRNA for 48hrs', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM2632126': {'type': 'Ribosome-induced cell cluster (RIC)'}, 'GSM2068647': {'line': 'MCF7', 'with': '10nM E2 for 4hr', 'passage': 'p9'}, 'GSM1844562': {'tissue': 'skin', 'type': 'Cultured epidermal melanocytes'}, 'GSM2332978': {'knockdown': 'ALKBH5 shRNA', 'line': 'GSC-11', 'type': 'glioblastoma stem-like cells', 'antibody': 'm6A antibody (Synaptic Systems, 202003)'}, 'GSM3586485': {'origin': 'UNCLASSIFIED', 'pfstt': '1476', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1590', 'cycles': '6', 'oscs': '0'}, 'GSM3586484': {'origin': 'GCB', 'pfstt': '1478', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1594', 'cycles': '6', 'oscs': '0'}, 'GSM3586487': {'origin': 'ABC', 'pfstt': '1343', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1343', 'cycles': '6', 'oscs': '0'}, 'GSM3586486': {'origin': 'ABC', 'pfstt': '726', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '866', 'cycles': '6', 'oscs': '0'}, 'GSM3586481': {'origin': 'GCB', 'pfstt': '869', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '876', 'cycles': '6', 'oscs': '0'}, 'GSM3586480': {'origin': 'ABC', 'pfstt': '190', 'pfscs': '1', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '190', 'cycles': '6', 'oscs': '1'}, 'GSM3586483': {'origin': 'UNCLASSIFIED', 'pfstt': '1468', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1639', 'cycles': '6', 'oscs': '0'}, 'GSM3586482': {'origin': 'GCB', 'pfstt': '364', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '871', 'cycles': '6', 'oscs': '0'}, 'GSM3586489': {'origin': 'ABC', 'pfstt': '1286', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1286', 'cycles': '6', 'oscs': '0'}, 'GSM3586488': {'origin': 'GCB', 'pfstt': '1288', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1424', 'cycles': '6', 'oscs': '0'}, 'GSM2455678': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455679': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1055819': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K27ac (Abcam ab4729)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1055818': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K27ac (Abcam ab4729)', 'treatment': 'no treat'}, 'GSM2455670': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455671': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455672': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455673': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455674': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455675': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455676': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455677': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2274989': {'area_under_the_curve': '1.376339375', 'siteandparticipantcode': '707556', 'baseline_area_under_the_curve': '1.185445469', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '116.1031369', 'auc_percent_of_baseline': '116.1031369', 'trunkbarcode': '928954', 'sampleID': 'S10690', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib832', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_707556', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib832', 'studysiteshort': 'COLORADO'}, 'GSM2274988': {'area_under_the_curve': '0.4294725', 'siteandparticipantcode': '445249', 'baseline_area_under_the_curve': '0.970502344', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '44.25259792', 'auc_percent_of_baseline': '44.25259792', 'trunkbarcode': '923360', 'sampleID': 'S10689', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib831', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_445249', 'gender': 'Male', 'age': '13', 'race': 'White', 'libraryid': 'lib831', 'studysiteshort': 'COLORADO'}, 'GSM2274985': {'area_under_the_curve': '0.392131563', 'siteandparticipantcode': '122083', 'baseline_area_under_the_curve': '0.775936406', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '50.53655936', 'auc_percent_of_baseline': '50.53655936', 'trunkbarcode': '922201', 'sampleID': 'S10684', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib828', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_122083', 'gender': 'Male', 'age': '14', 'race': 'Black or African American; White', 'libraryid': 'lib828', 'studysiteshort': 'UCSF'}, 'GSM2274984': {'area_under_the_curve': '0.063200313', 'siteandparticipantcode': '475166', 'baseline_area_under_the_curve': '0.591352188', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '10.68742347', 'auc_percent_of_baseline': '10.68742347', 'trunkbarcode': '922202', 'sampleID': 'S10683', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib827', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_475166', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib827', 'studysiteshort': 'UCSF'}, 'GSM2274987': {'area_under_the_curve': '0.650311563', 'siteandparticipantcode': '443762', 'baseline_area_under_the_curve': '1.024910469', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '63.45057274', 'auc_percent_of_baseline': '63.45057274', 'trunkbarcode': '923359', 'sampleID': 'S10688', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib830', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_443762', 'gender': 'Male', 'age': '23', 'race': 'White', 'libraryid': 'lib830', 'studysiteshort': 'COLORADO'}, 'GSM2274986': {'area_under_the_curve': '0.086163438', 'siteandparticipantcode': '479125', 'baseline_area_under_the_curve': '0.505240469', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '17.05394616', 'auc_percent_of_baseline': '17.05394616', 'trunkbarcode': '931677', 'sampleID': 'S10687', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib829', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_479125', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib829', 'studysiteshort': 'UCSF'}, 'GSM2274981': {'area_under_the_curve': '0.554631875', 'siteandparticipantcode': '326726', 'baseline_area_under_the_curve': '0.797192813', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '69.57311535', 'auc_percent_of_baseline': '69.57311535', 'trunkbarcode': '922051', 'sampleID': 'S10679', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib824', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_326726', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib824', 'studysiteshort': 'COLUMBIA'}, 'GSM2274980': {'area_under_the_curve': '0.199324063', 'siteandparticipantcode': '853089', 'baseline_area_under_the_curve': '0.32107', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '62.08118557', 'auc_percent_of_baseline': '62.08118557', 'trunkbarcode': '922014', 'sampleID': 'S10678', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib823', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_853089', 'gender': 'Male', 'age': '14', 'race': 'White', 'libraryid': 'lib823', 'studysiteshort': 'COLUMBIA'}, 'GSM2274983': {'area_under_the_curve': '0.246336406', 'siteandparticipantcode': '397935', 'baseline_area_under_the_curve': '0.65910375', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '37.37445072', 'auc_percent_of_baseline': '37.37445072', 'trunkbarcode': '919129', 'sampleID': 'S10681', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib826', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_397935', 'gender': 'Male', 'age': '12', 'race': 'White; Other', 'libraryid': 'lib826', 'studysiteshort': 'UCSF'}, 'GSM2274982': {'area_under_the_curve': '0.05006375', 'siteandparticipantcode': '242972', 'baseline_area_under_the_curve': '0.642812344', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '7.788237187', 'auc_percent_of_baseline': '7.788237187', 'trunkbarcode': '919132', 'sampleID': 'S10680', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib825', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_242972', 'gender': 'Male', 'age': '8', 'race': 'White', 'libraryid': 'lib825', 'studysiteshort': 'UCSF'}, 'GSM2221653': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'small RNA'}, 'GSM2221657': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'small RNA'}, 'GSM2221656': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'small RNA'}, 'GSM2221655': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'small RNA'}, 'GSM2221654': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'small RNA'}, 'GSM2332975': {'knockdown': 'control shRNA', 'line': 'GSC-11', 'type': 'glioblastoma stem-like cells', 'antibody': 'm6A antibody (Synaptic Systems, 202003)'}, 'GSM2221659': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'small RNA'}, 'GSM2221658': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'small RNA'}, 'GSM2552978': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP13', 'Sex': 'M'}, 'GSM2348758': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348759': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348750': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348751': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348752': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348753': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348754': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348755': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348756': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348757': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1234205': {'replicate': '1', 'line': '2630', 'antibody': 'H3K36me3'}, 'GSM1957464': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1234204': {'replicate': '2', 'line': '2630', 'antibody': 'H3K27me3'}, 'GSM1234207': {'replicate': '1', 'line': '2630', 'antibody': 'H3K4me1'}, 'GSM2588928': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'ACTGTGAGCGTCCTCAGTGC'}, 'GSM1234206': {'replicate': '2', 'line': '2630', 'antibody': 'H3K36me3'}, 'GSM3586553': {'origin': 'GCB', 'pfstt': '756', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '756', 'cycles': '8', 'oscs': '0'}, 'GSM3586552': {'origin': 'UNCLASSIFIED', 'pfstt': '922', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '922', 'cycles': '8', 'oscs': '0'}, 'GSM1277976': {'line': 'LLC12PH', 'type': 'hpSC derived Dopaminergic Neuron Precursors'}, 'GSM1277974': {'line': 'LLC12PH', 'type': 'hpSC derived Dopaminergic Neuron Precursors'}, 'GSM1277975': {'line': 'LLC12PH', 'type': 'hpSC derived Dopaminergic Neuron Precursors'}, 'GSM1277972': {'line': 'LLC12PH', 'type': 'hpSC derived Neural Stem Cells'}, 'GSM1277973': {'line': 'LLC12PH', 'type': 'hpSC derived Neural Stem Cells'}, 'GSM2674608': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674609': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674606': {'status': 'Normal', 'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674607': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2187236': {'antibody': 'H3K14ac (Millipore, MABE351, lot 2298448)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2187237': {'antibody': 'H3K27me3 (Millipore, 07-449, lot 2148525)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2571095': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2098535': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-3xFLAG-FTO'}, 'GSM2571097': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571096': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571091': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571090': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571093': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571092': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571099': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571098': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1832737': {'status': 'Transduction with lentiviral particles for expression of the AR-WT', 'line': 'LNCaP', 'type': 'Prostate cancer cell line', 'fluorescence': 'EGFP'}, 'GSM2454109': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454108': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1692719': {'with': 'control shRNA', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'GFP control', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM2233237': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2454101': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454100': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454103': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454102': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454105': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454104': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454107': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454106': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2453995': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2479719': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479718': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM1693047': {'line': '21NT', 'type': 'Luminal cells'}, 'GSM2479711': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2479710': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'old adult'}, 'GSM2479713': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'young adult'}, 'GSM2479712': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479715': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'old adult'}, 'GSM2479714': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'young adult'}, 'GSM2479717': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'old adult'}, 'GSM2479716': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'old adult'}, 'GSM2889064': {'tissue': 'pancreatic islets'}, 'GSM2889065': {'tissue': 'pancreatic islets'}, 'GSM2889066': {'tissue': 'pancreatic islets'}, 'GSM1700776': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM2889060': {'tissue': 'pancreatic islets'}, 'GSM2889061': {'tissue': 'pancreatic islets'}, 'GSM2889062': {'tissue': 'pancreatic islets'}, 'GSM2889063': {'tissue': 'pancreatic islets'}, 'GSM2889068': {'tissue': 'pancreatic islets'}, 'GSM2889069': {'tissue': 'pancreatic islets'}, 'GSM2402803': {'medium': 'none', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none', 'diagnosis': 'Posterior Polymorphous Corneal Dystrophy (PPCD)'}, 'GSM2198598': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siControl for 24 hours', 'passage': 'Passage 6'}, 'GSM2402801': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2402800': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2402806': {'medium': 'none', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none', 'diagnosis': 'healthy control'}, 'GSM2402805': {'medium': 'none', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none', 'diagnosis': 'healthy control'}, 'GSM2402804': {'medium': 'none', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none', 'diagnosis': 'Posterior Polymorphous Corneal Dystrophy (PPCD)'}, 'GSM2307276': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307277': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307274': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307275': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307272': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307273': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2198597': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siControl for 24 hours', 'passage': 'Passage 6'}, 'GSM2307271': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2130419': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM1922052': {'type': 'IN528', 'microenvironment': 'in vitro'}, 'GSM1922053': {'type': 'IN528', 'microenvironment': 'in vitro'}, 'GSM1922050': {'type': 'IN528', 'microenvironment': 'in vivo'}, 'GSM1922051': {'type': 'IN528', 'microenvironment': 'in vivo'}, 'GSM2538273': {'stage': 'Glioblastoma EGFR amplification/EGFR vIII mutation'}, 'GSM1411016': {'ercc_mix': '1', 'donor': 'AS113011-F25', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Albuterol'}, 'GSM1969305': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - pleomorphic', 'localization': 'Trunk wall'}, 'GSM2303471': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2125109': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-rabbit IgG Control (cat# sc-2027, lot# E2914 or H2615)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2305843': {'tissue': 'colon'}, 'GSM2125106': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-PR (inhouse KD68)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM3362539': {'gender': 'male', 'tissue': 'ESC derived from human blastocysts (H1, NIH code WA01)'}, 'GSM1540599': {'state': 'Healthy controls', 'individual': 'control 02-58', 'type': 'PBMC', 'time': 'control'}, 'GSM2125107': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-rabbit IgG Control (cat# sc-2027, lot# E2914 or H2615)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM1540597': {'state': 'Healthy controls', 'individual': 'control 02-56', 'type': 'PBMC', 'time': 'control'}, 'GSM1540596': {'state': 'Healthy controls', 'individual': 'control 02-55', 'type': 'PBMC', 'time': 'control'}, 'GSM1540595': {'state': 'Healthy controls', 'individual': 'control 02-41', 'type': 'PBMC', 'time': 'control'}, 'GSM1540594': {'state': 'Healthy controls', 'individual': 'control 02-22', 'type': 'PBMC', 'time': 'control'}, 'GSM1540593': {'state': 'Healthy controls', 'individual': 'control 02-21', 'type': 'PBMC', 'time': 'control'}, 'GSM2125104': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-PR (inhouse KD68)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM1540591': {'state': 'Healthy controls', 'individual': 'control 02-18', 'type': 'PBMC', 'time': 'control'}, 'GSM2125105': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-rabbit IgG Control (cat# sc-2027, lot# E2914 or H2615)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2125102': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-PR (inhouse KD68)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2125103': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-rabbit IgG Control (cat# sc-2027, lot# E2914 or H2615)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2125100': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-PR (inhouse KD68)', 'type': 'ER+/PR+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2125101': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-rabbit IgG Control (cat# sc-2027, lot# E2914 or H2615)', 'type': 'ER+/PR+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2394489': {'id': 'IonXpress_050', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'media_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2394488': {'id': 'IonXpress_049', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'MB', 'point': 'after 12h of compound treatment'}, 'GSM2718911': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718910': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718917': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718916': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718915': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718914': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2394481': {'id': 'IonXpress_042', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Bafilomycin A1', 'point': 'after 12h of compound treatment'}, 'GSM2394480': {'id': 'IonXpress_041', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'BADGE', 'point': 'after 12h of compound treatment'}, 'GSM2394483': {'id': 'IonXpress_044', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'SB-415286', 'point': 'after 12h of compound treatment'}, 'GSM2394482': {'id': 'IonXpress_043', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'IB-MECA', 'point': 'after 12h of compound treatment'}, 'GSM2394485': {'id': 'IonXpress_046', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Castanospermine', 'point': 'after 12h of compound treatment'}, 'GSM2394484': {'id': 'IonXpress_045', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Camptothecin', 'point': 'after 12h of compound treatment'}, 'GSM2394487': {'id': 'IonXpress_048', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Curcumin', 'point': 'after 12h of compound treatment'}, 'GSM2394486': {'id': 'IonXpress_047', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'CinnGEL 2Me', 'point': 'after 12h of compound treatment'}, 'GSM960586': {'line': 'UMSCC25', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM1704577': {'protocol': '48 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM960583': {'line': 'UMSCC25', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM960581': {'line': 'UMSCC25', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM2307061': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2242771': {'line': 'A375', 'replicate': '4'}, 'GSM960588': {'line': 'UMSCC25', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM2107367': {'line': 'IMR5-75', 'type': 'neuroblastoma'}, 'GSM1620415': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2242770': {'line': 'A375', 'replicate': '4'}, 'GSM2242777': {'line': 'A375', 'replicate': '4'}, 'GSM2242776': {'line': 'A375', 'replicate': '4'}, 'GSM2130410': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2242775': {'line': 'A375', 'replicate': '4'}, 'GSM1917640': {'primary': 'No', 'agent': 'None', 'xenograft': 'Yes'}, 'GSM2252677': {'stimulation': '1 hour stimulation with founder M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252676': {'stimulation': '6 hour stimulation with A82V/T230A M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252675': {'stimulation': '4 hour stimulation with A82V/T230A M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252674': {'stimulation': '2 hour stimulation with A82V/T230A M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252673': {'stimulation': '1 hour stimulation with A82V/T230A M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252672': {'stimulation': '6 hour stimulation with A82V M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252671': {'stimulation': '4 hour stimulation with A82V M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252670': {'stimulation': '2 hour stimulation with A82V M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM3025232': {'line': 'MCF7', 'treatment': 'PPT', 'batch': 'batch1'}, 'GSM3025233': {'line': 'MCF7', 'treatment': 'PPT+MPP', 'batch': 'batch1'}, 'GSM3025230': {'line': 'MCF7', 'treatment': 'PPT', 'batch': 'batch1'}, 'GSM3025231': {'line': 'MCF7', 'treatment': 'PPT', 'batch': 'batch1'}, 'GSM3025236': {'line': 'MCF7', 'treatment': 'PBDE47', 'batch': 'batch1'}, 'GSM3025237': {'line': 'MCF7', 'treatment': 'PBDE47', 'batch': 'batch1'}, 'GSM2252679': {'stimulation': '4 hour stimulation with founder M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252678': {'stimulation': '2 hour stimulation with founder M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2535778': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1265', 'samplename': '1gr_413tetr_C83', 'seqsite': 'BRI', 'sampleID': 'S13433', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1265', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C83'}, 'GSM2535779': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1266', 'samplename': '1gr_413tetr_C95', 'seqsite': 'BRI', 'sampleID': 'S13434', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1266', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C95'}, 'GSM2251326': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251327': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251320': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251321': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251322': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251323': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1980481': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2535771': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1256', 'samplename': '1gr_413tetr_C48', 'seqsite': 'BRI', 'sampleID': 'S13424', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1256', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C48'}, 'GSM2535772': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1258', 'samplename': '1gr_413tetr_C58', 'seqsite': 'BRI', 'sampleID': 'S13426', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1258', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C58'}, 'GSM1980482': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2535774': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1260', 'samplename': '1gr_413tetr_C78', 'seqsite': 'BRI', 'sampleID': 'S13428', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1260', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C78'}, 'GSM2535775': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1262', 'samplename': '1gr_413tetr_C59', 'seqsite': 'BRI', 'sampleID': 'S13430', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1262', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C59'}, 'GSM2535776': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1263', 'samplename': '1gr_413tetr_C65', 'seqsite': 'BRI', 'sampleID': 'S13431', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1263', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C65'}, 'GSM2535777': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1264', 'samplename': '1gr_413tetr_C77', 'seqsite': 'BRI', 'sampleID': 'S13432', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1264', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C77'}, 'GSM2080904': {'line': 'C42B', 'transfection': 'HOXC6 (L011871000005)'}, 'GSM2080905': {'line': 'C42B', 'transfection': 'HOXC6 (L011871000005)'}, 'GSM2080906': {'line': 'C42B', 'transfection': 'HOXC6 (L011871000005)'}, 'GSM2080907': {'line': 'C42B', 'transfection': 'DLX1 (L011871000005)'}, 'GSM2080901': {'line': 'C42B', 'transfection': 'control (D0018101005)'}, 'GSM2080902': {'line': 'C42B', 'transfection': 'control (D0018101005)'}, 'GSM2080903': {'line': 'C42B', 'transfection': 'control (D0018101005)'}, 'GSM2080908': {'line': 'C42B', 'transfection': 'DLX1 (L011871000005)'}, 'GSM2080909': {'line': 'C42B', 'transfection': 'DLX1 (L011871000005)'}, 'GSM1580934': {'onset': '33', 'death': '50', 'score': '1.202', 'grade': '3', 'rin': '8', 'reads': '78329378', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '17', 'cag': '47', 'pmi': '15.66'}, 'GSM2886838': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'normoxia'}, 'GSM2029283': {'type': 'Heterologous pronuclear transfer embryo 8'}, 'GSM2029280': {'type': 'Heterologous pronuclear transfer embryo 8'}, 'GSM2029281': {'type': 'Heterologous pronuclear transfer embryo 8'}, 'GSM2029286': {'type': 'Control embryo j'}, 'GSM2029287': {'type': 'Heterologous pronuclear transfer embryo 8'}, 'GSM2029284': {'type': 'Autologous pronuclear transfer embryo 10'}, 'GSM2029285': {'type': 'Autologous pronuclear transfer embryo 10'}, 'GSM2029288': {'type': 'Control embryo j'}, 'GSM2029289': {'type': 'Heterologous pronuclear transfer embryo 7'}, 'GSM2886839': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'normoxia'}, 'GSM2510267': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510266': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510265': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510264': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2387337': {'genotype': 'HCT116-WT'}, 'GSM2510262': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510261': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2387334': {'genotype': 'HCT116-WT'}, 'GSM2387339': {'genotype': 'HCT116 with genetic PPARD-KO'}, 'GSM2387338': {'genotype': 'HCT116 with genetic PPARD-KO'}, 'GSM2815805': {'line': 'H9'}, 'GSM2510269': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510268': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2130414': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM2108521': {'stages': 'mononucleated cell nucleus'}, 'GSM2108520': {'stages': 'mononucleated cell nucleus'}, 'GSM2108523': {'stages': 'mononucleated cell nucleus'}, 'GSM2108522': {'stages': 'mononucleated cell nucleus'}, 'GSM2108525': {'stages': 'mononucleated cell nucleus'}, 'GSM2108524': {'stages': 'mononucleated cell nucleus'}, 'GSM2108527': {'stages': 'mononucleated cell nucleus'}, 'GSM2108526': {'stages': 'mononucleated cell nucleus'}, 'GSM2108529': {'stages': 'mononucleated cell nucleus'}, 'GSM2108528': {'stages': 'mononucleated cell nucleus'}, 'GSM1832739': {'status': 'Transduction with lentiviral particles for expression of the AR-V7', 'line': 'LNCaP', 'type': 'Prostate cancer cell line', 'fluorescence': 'EGFP'}, 'GSM1832738': {'status': 'Transduction with lentiviral particles for expression of the AR-WT', 'line': 'LNCaP', 'type': 'Prostate cancer cell line', 'fluorescence': 'EGFP'}, 'GSM2130415': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM2312223': {'culture': '12', 'line': 'DCX-'}, 'GSM2312222': {'culture': '12', 'line': 'DCX-'}, 'GSM2312221': {'culture': '12', 'line': 'DCX-'}, 'GSM2312220': {'culture': '12', 'line': 'DCX-'}, 'GSM2312227': {'culture': '12', 'line': 'DCX-'}, 'GSM2312226': {'culture': '12', 'line': 'DCX-'}, 'GSM2312225': {'culture': '12', 'line': 'DCX-'}, 'GSM2312224': {'culture': '12', 'line': 'DCX-'}, 'GSM2312229': {'culture': '12', 'line': 'DCX-'}, 'GSM2312228': {'culture': '12', 'line': 'DCX-'}, 'GSM2287181': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1821696': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9500+oil'}, 'GSM1821697': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': 'control'}, 'GSM1821694': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9527'}, 'GSM3319637': {'region': 'Thalamus', 'age': '64', 'id': 'B'}, 'GSM1821692': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9500+oil'}, 'GSM1821693': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9500+oil'}, 'GSM1821690': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': 'oil'}, 'GSM1821691': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': 'oil'}, 'GSM2287187': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2815808': {'line': 'H9'}, 'GSM1821698': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9527'}, 'GSM2287186': {'pair': 'P2_10', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2287185': {'pair': 'P1_05', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2287184': {'pair': 'P1_04', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2915398': {'antibody': 'SUMO2/3 (Cedarlane M114-3)', 'type': 'MCF-7 cells'}, 'GSM2915399': {'antibody': 'none', 'type': 'MCF-7 cells'}, 'GSM925608': {'type': 'primary fetal RPE'}, 'GSM1249880': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'JMJD6', 'details': 'ab10526 (Abcam)'}, 'GSM1580933': {'onset': '36', 'death': '55', 'score': '2.062', 'grade': '4', 'rin': '7.9', 'reads': '86412654', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '19', 'cag': '45', 'pmi': '16.15'}, 'GSM2915390': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915391': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915392': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM2915393': {'antibody': 'SUMO2/3 (Cedarlane M114-3)', 'type': 'MCF-7 cells'}, 'GSM2212685': {'gender': 'female', 'condition': 'control'}, 'GSM1249126': {'type': 'RTT5 fibroblast', 'mutation': 'X487W', 'treatment': 'no', 'passage': '5'}, 'GSM2915396': {'antibody': 'SUMO2/3 (Cedarlane M114-3)', 'type': 'MCF-7 cells'}, 'GSM925605': {'line': 'BG01', 'type': 'ESC'}, 'GSM2787352': {'catalog': 'Millipore 05-745R', 'antibody': 'H3K4me3'}, 'GSM2634134': {'line': 'A549', 'sirna': 'TUFT1 siRNA (designed by siDirect, RNAi inc., Tokyo, Japan) (5â\\x80\\x99â\\x86\\x923â\\x80\\x99): GGAUAUAAGUAGCAAGCUUGA and AAGCUUGCUACUUAUAUCCUC', 'histology': 'Invasive mucinous adenocarcinoma', 'variation': 'TUFT1 knockdown'}, 'GSM3319639': {'region': 'Anterior cingulate cortex', 'age': '64', 'id': 'A'}, 'GSM2212682': {'gender': 'female', 'condition': 'control'}, 'GSM1620417': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2361702': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361703': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361700': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361701': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361706': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361707': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361704': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361705': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361708': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361709': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2138498': {'line': 'M418', 'state': 'Melanoma'}, 'GSM2138499': {'line': 'M402', 'state': 'Melanoma'}, 'GSM2138492': {'line': 'M243', 'state': 'Melanoma'}, 'GSM2138493': {'line': 'M245', 'state': 'Melanoma'}, 'GSM2138490': {'line': 'Sbcl2', 'state': 'Melanoma'}, 'GSM2138491': {'line': 'M233', 'state': 'Melanoma'}, 'GSM2138496': {'line': 'M409', 'state': 'Melanoma'}, 'GSM2138497': {'line': 'M423', 'state': 'Melanoma'}, 'GSM2138494': {'line': 'M238', 'state': 'Melanoma'}, 'GSM2138495': {'line': 'M370', 'state': 'Melanoma'}, 'GSM2469574': {'status': 'resistant', 'gender': 'male', 'individual': 'r19', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469575': {'status': 'resistant', 'gender': 'male', 'individual': 'r19', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469576': {'status': 'susceptible', 'gender': 'male', 'individual': 's01', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469577': {'status': 'susceptible', 'gender': 'male', 'individual': 's01', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469570': {'status': 'resistant', 'gender': 'male', 'individual': 'r17', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469571': {'status': 'resistant', 'gender': 'male', 'individual': 'r17', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469572': {'status': 'resistant', 'gender': 'male', 'individual': 'r18', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469573': {'status': 'resistant', 'gender': 'male', 'individual': 'r18', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469578': {'status': 'susceptible', 'gender': 'male', 'individual': 's02', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469579': {'status': 'susceptible', 'gender': 'male', 'individual': 's02', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2360259': {'type': 'iHPC', 'treatment': 'None'}, 'GSM2360258': {'type': 'iHPC', 'treatment': 'None'}, 'GSM2455866': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2207969': {'protein': 'express B19 NS1'}, 'GSM2207968': {'protein': 'express B19 NS1'}, 'GSM2207965': {'protein': 'do not express B19 NS1'}, 'GSM2207964': {'protein': 'do not express B19 NS1'}, 'GSM2207967': {'protein': 'express B19 NS1'}, 'GSM2207966': {'protein': 'do not express B19 NS1'}, 'GSM1104129': {'line': 'TIB-152'}, 'GSM2432143': {'tissue': 'T778 cells', 'type': 'Liposarcoma cells'}, 'GSM2053748': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053749': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053746': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053747': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053744': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053745': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053742': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053743': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053740': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053741': {'type': 'glioblastoma (Grade IV)'}, 'GSM2434150': {'status': 'nonsmoker', 'type': 'small airway epithelium brushing'}, 'GSM1782878': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1782879': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1782874': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1782875': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1782876': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1782877': {'line': 'H1', 'treatment': 'lentiviral infection with sh TCOF1', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM2434151': {'status': 'nonsmoker', 'type': 'small airway epithelium brushing'}, 'GSM2043732': {'status': 'HIV+', 'individual': '0450-318', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'Untreated', 'infection': '7'}, 'GSM2043733': {'status': 'HIV+', 'individual': '0450-318', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'Untreated', 'infection': '7'}, 'GSM2043730': {'status': 'HIV+', 'individual': '0450-318', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'Untreated', 'infection': '1'}, 'GSM2043731': {'status': 'HIV+', 'individual': '0450-318', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'Untreated', 'infection': '1'}, 'GSM2043736': {'status': 'HIV+', 'individual': '0387-272', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'Untreated', 'infection': '1'}, 'GSM2043737': {'status': 'HIV+', 'individual': '0387-272', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'Untreated', 'infection': '1'}, 'GSM2043734': {'status': 'HIV+', 'individual': '0450-318', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'Untreated', 'infection': '38'}, 'GSM2043735': {'status': 'HIV+', 'individual': '0450-318', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'Untreated', 'infection': '38'}, 'GSM2043738': {'status': 'HIV+', 'individual': '0387-272', 'type': 'Innate Lymphoid Cell 2', 'treatment': 'Untreated', 'infection': '7'}, 'GSM2043739': {'status': 'HIV+', 'individual': '0387-272', 'type': 'Innate Lymphoid Cell 3', 'treatment': 'Untreated', 'infection': '7'}, 'GSM2434152': {'status': 'waterpipe smoker', 'type': 'small airway epithelium brushing'}, 'GSM2551376': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551377': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2551374': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551375': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2172007': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2551373': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551370': {'age': 'Young', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551371': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2048618': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048619': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2607538': {'line': 'WA26'}, 'GSM2172008': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2696532': {'status': '0', 'grade': '1', 'age': '47', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.1'}, 'GSM2551378': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2551379': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2696533': {'status': '0', 'grade': '1', 'age': '47', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '5.3'}, 'GSM2696534': {'status': '0', 'grade': '1', 'age': '47', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '5.3'}, 'GSM2434153': {'status': 'waterpipe smoker', 'type': 'small airway epithelium brushing'}, 'GSM2451191': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100036': {'rin': '9.5', 'Sex': 'Female', 'sspg': '189', 'age': '68', 'bmi': '28.1', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '250', 'method': 'Qiagen:trizol'}, 'GSM2451193': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451192': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451195': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100032': {'rin': '10', 'Sex': 'Female', 'sspg': '209', 'age': '50', 'bmi': '35.4', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '243', 'method': 'Life-Tech GITC'}, 'GSM2451197': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100030': {'rin': '10', 'Sex': 'Male', 'sspg': '272', 'age': '68', 'bmi': '34.8', 'batch': '1-90', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '239', 'method': 'Life-Tech GITC'}, 'GSM2451199': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451198': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1375993': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2100039': {'rin': '9.1', 'Sex': 'Female', 'sspg': '323', 'age': '68', 'bmi': '27.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'Hispanic', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '255', 'method': 'Qiagen:trizol'}, 'GSM2100038': {'rin': '9.1', 'Sex': 'Female', 'sspg': '323', 'age': '68', 'bmi': '27.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'Hispanic', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '255', 'method': 'Qiagen:trizol'}, 'GSM2275032': {'area_under_the_curve': '0.775936406', 'siteandparticipantcode': '122083', 'baseline_area_under_the_curve': '0.775936406', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '914952', 'sampleID': 'S12569', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib877', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_122083', 'gender': 'Male', 'age': '14', 'race': 'Black or African American; White', 'libraryid': 'lib877', 'studysiteshort': 'UCSF'}, 'GSM2275033': {'area_under_the_curve': '0.533892656', 'siteandparticipantcode': '537789', 'baseline_area_under_the_curve': '0.533892656', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '921893', 'sampleID': 'S12570', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib878', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'Control', 'name': 'AbATE_537789', 'gender': 'Female', 'age': '9', 'race': 'White', 'libraryid': 'lib878', 'studysiteshort': 'UCSF'}, 'GSM1395478': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395479': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395474': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395475': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395476': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2141352': {'individual': 'EU48', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1395470': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395471': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395472': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395473': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2544033': {'library_id': 'lib8343', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1553196': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM2544031': {'library_id': 'lib8341', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.174', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544030': {'library_id': 'lib8340', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.174', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544037': {'library_id': 'lib8349', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544036': {'library_id': 'lib8348', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544035': {'library_id': 'lib8347', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.176', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544034': {'library_id': 'lib8346', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.176', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544039': {'library_id': 'lib8355', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544038': {'library_id': 'lib8354', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1233893': {'replicate': '4.2', 'line': '12878', 'antibody': 'H3K27Ac'}, 'GSM1553199': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553198': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM2141359': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1709000': {'line': 'H1', 'type': 'ES derived Hematopoietic progenitor cells', 'genotype': 'wildtype'}, 'GSM1709001': {'line': 'H1', 'type': 'ES derived Hematopoietic progenitor cells', 'genotype': 'wildtype'}, 'GSM1709002': {'line': 'H1', 'type': 'ES derived Hematopoietic progenitor cells', 'genotype': 'GATA2-/-'}, 'GSM1233894': {'replicate': '4.3', 'line': '12878', 'antibody': 'H3K27Ac'}, 'GSM1965181': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1896275': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Listeria', 'time': '24 hr'}, 'GSM1965180': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965183': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965182': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965185': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965184': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2305780': {'tissue': 'colon'}, 'GSM2081228': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': '10 ng/ml IL-6', 'time': '24 hours'}, 'GSM1965187': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2081222': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': '10 ng/ml IL-6', 'time': '24 hours'}, 'GSM2081223': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': '10 ng/ml IL-6', 'time': '24 hours'}, 'GSM2081220': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': 'unstimulated', 'time': '24 hours'}, 'GSM2081221': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': 'unstimulated', 'time': '24 hours'}, 'GSM2081226': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': '10 ng/ml IL-6', 'time': '24 hours'}, 'GSM2081227': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': '10 ng/ml IL-6', 'time': '24 hours'}, 'GSM2081224': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': '10 ng/ml IL-6', 'time': '24 hours'}, 'GSM2081225': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': '10 ng/ml IL-6', 'time': '24 hours'}, 'GSM2267413': {'histology': 'not applicable', 'tissuetype': 'Gastric primary non-malignant tissue'}, 'GSM2267412': {'histology': 'diffuse', 'tissuetype': 'Gastric primary tumor tissue'}, 'GSM1576790': {'status': 'Mock', 'line': 'Huh7.5'}, 'GSM2267411': {'histology': 'not applicable', 'tissuetype': 'Gastric primary non-malignant tissue'}, 'GSM1576792': {'status': 'm15 J6/JFH1 Clone2', 'line': 'Huh7.5'}, 'GSM2486771': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486770': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486773': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2267410': {'histology': 'intestinal', 'tissuetype': 'Gastric primary tumor tissue'}, 'GSM2486775': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486774': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486776': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2267417': {'histology': 'intestinal', 'tissuetype': 'Gastric primary tumor tissue'}, 'GSM2267416': {'histology': 'not applicable', 'tissuetype': 'Gastric primary non-malignant tissue'}, 'GSM2284065': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284064': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284067': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284066': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284061': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284060': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284063': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM1496161': {'line': 'HeLa Kyoto', 'expression': 'none', 'RNAi': 'SNW1 RNAi'}, 'GSM2284069': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284068': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2194305': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1921988': {'donor': '3', 'tissue': 'macrophage', 'agent': '2-deoxy-d-glucose + IDR-1018'}, 'GSM1084054': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM2290619': {'type': 'iPSC'}, 'GSM2259813': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM3301492': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM1921982': {'donor': '3', 'tissue': 'macrophage', 'agent': '2-deoxy-d-glucose'}, 'GSM1873039': {'antibody': 'FoxA1 (Abcam ab23738)', 'line': 'LNCaP-abl', 'passages': '62-64', 'type': 'prostate cancer cells'}, 'GSM785412': {'type': 'testicular germ', 'normal': 'normal'}, 'GSM785411': {'type': 'testicular germ', 'normal': 'cancer'}, 'GSM785410': {'type': 'testicular germ', 'normal': 'normal'}, 'GSM1649159': {'culture': 'with stromal cells', 'line': 'ALL leukemia cell line REH', 'replicate': '2', 'time': '24 h'}, 'GSM1649158': {'culture': 'with stromal cells', 'line': 'ALL leukemia cell line REH', 'replicate': '1', 'time': '24 h'}, 'GSM1428882': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM2141629': {'individual': 'EU214', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141628': {'individual': 'EU214', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141625': {'individual': 'EU212', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141624': {'individual': 'EU210', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141627': {'individual': 'EU212', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1892598': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2141621': {'individual': 'EU202', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141620': {'individual': 'EU202', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1649157': {'culture': 'alone', 'line': 'ALL leukemia cell line REH', 'replicate': '3', 'time': '0 h'}, 'GSM1649156': {'culture': 'alone', 'line': 'ALL leukemia cell line REH', 'replicate': '2', 'time': '0 h'}, 'GSM1574796': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1574797': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM1574794': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1574795': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1574792': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM1574793': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM1574791': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM1574798': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM1574799': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM2667028': {'type': 'Macrophage'}, 'GSM2667029': {'type': 'Macrophage'}, 'GSM1217955': {'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH053'}, 'GSM2535671': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1136', 'samplename': '1_413UNST_C41', 'seqsite': 'BRI', 'sampleID': 'S13232', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1136', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C41'}, 'GSM2185668': {'race': 'NB', 'staging': '6', 'total_grade': 'NA', 'cea': 'NA', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '75', 'focal_lytic_nec_apop': 'NA', 'batch': '0', 'sgpt': '143', 'Sex': 'M', 'confluent_necrosis': 'NA', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '165', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': '70.9', 'hcv_viral_load': '0'}, 'GSM2535670': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1134', 'samplename': '1_413UNST_C29', 'seqsite': 'BRI', 'sampleID': 'S13220', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1134', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C29'}, 'GSM2565246': {'construction': 'PLATE-Seq', 'drug': 'Vismodegib (GDC-0449)'}, 'GSM2816163': {'line': 'H9'}, 'GSM2667022': {'type': 'Macrophage'}, 'GSM1384790': {'type': 'mobilized peripheral blood cells', 'agent': 'UM171[78.1nM]', 'time': '16 hour culture'}, 'GSM2667023': {'type': 'Macrophage'}, 'GSM2535675': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1140', 'samplename': '1_413UNST_C52', 'seqsite': 'BRI', 'sampleID': 'S13216', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1140', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C52'}, 'GSM2535674': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1139', 'samplename': '1_413UNST_C16', 'seqsite': 'BRI', 'sampleID': 'S13188', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1139', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C16'}, 'GSM2325075': {'line': 'HEK293', 'variation': 'wild type'}, 'GSM2667021': {'type': 'Macrophage'}, 'GSM2535677': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1142', 'samplename': '1_413UNST_C70', 'seqsite': 'BRI', 'sampleID': 'S13238', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1142', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C70'}, 'GSM2535676': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1141', 'samplename': '1_413UNST_C58', 'seqsite': 'BRI', 'sampleID': 'S13199', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1141', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C58'}, 'GSM2069444': {'line': 'HCT116', 'tissue': 'colon', 'type': 'colorectal cancer cell line', 'treatment': 'RPL17 siRNA treated'}, 'GSM2069445': {'line': 'HCT116', 'tissue': 'colon', 'type': 'colorectal cancer cell line', 'treatment': 'RPL27 siRNA treated'}, 'GSM2069446': {'line': 'HT29', 'tissue': 'colon', 'type': 'colorectal cancer cell line', 'treatment': 'Negative control siRNA treated'}, 'GSM2069447': {'line': 'HT29', 'tissue': 'colon', 'type': 'colorectal cancer cell line', 'treatment': 'RPL9 siRNA treated'}, 'GSM2069442': {'line': 'HCT116', 'tissue': 'colon', 'type': 'colorectal cancer cell line', 'treatment': 'Negative control siRNA treated'}, 'GSM2535678': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1143', 'samplename': '1_413UNST_C84', 'seqsite': 'BRI', 'sampleID': 'S13186', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1143', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C84'}, 'GSM2069448': {'line': 'HT29', 'tissue': 'colon', 'type': 'colorectal cancer cell line', 'treatment': 'RPL17 siRNA treated'}, 'GSM2069449': {'line': 'HT29', 'tissue': 'colon', 'type': 'colorectal cancer cell line', 'treatment': 'RPL27 siRNA treated'}, 'GSM2158335': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158334': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158337': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158336': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158331': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158330': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158333': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158332': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2212049': {'line': 'Kasumi-1 cells', 'treatment': '250 nM JQ1, 30 min'}, 'GSM2881021': {'donor': 'Donor_2', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2881022': {'donor': 'Donor_2', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2881023': {'donor': 'Donor_2', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2158339': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158338': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2259815': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2881027': {'donor': 'Donor_3', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2805309': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '57', 'timepoint': 'D3_ZT_11:15'}, 'GSM2871650': {'tissue': 'ESC-H9', 'stage': '14 day differentiation'}, 'GSM2871651': {'tissue': 'ESC-H9', 'stage': '60 day differentiation'}, 'GSM2871652': {'tissue': 'ESC-H9', 'stage': '60 day differentiation'}, 'GSM2871653': {'tissue': 'ESC-H9', 'stage': '60 day differentiation'}, 'GSM2265662': {'antibody': 'H3K27ac (CST, 8173)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265663': {'antibody': 'H3.3 (Millipore, 09-838)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265660': {'antibody': 'none', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265661': {'antibody': 'H3K27M (Millipore, ABE419)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265666': {'antibody': 'none', 'type': 'Colon cancer ectopically expressing H3.3'}, 'GSM2265667': {'antibody': 'H3.3 (Millipore, 09-838)', 'type': 'Colon cancer ectopically expressing H3.3K27M'}, 'GSM2265664': {'antibody': 'H3.3 (Millipore, 09-838)', 'type': 'Colon cancer ectopically expressing H3.3'}, 'GSM2265665': {'antibody': 'H3K27M (Millipore, ABE419)', 'type': 'Colon cancer ectopically expressing H3.3'}, 'GSM2265668': {'antibody': 'H3K27M (Millipore, ABE419)', 'type': 'Colon cancer ectopically expressing H3.3K27M'}, 'GSM2265669': {'antibody': 'none', 'type': 'Colon cancer ectopically expressing H3.3K27M'}, 'GSM2635920': {'type': 'A549 cells', 'treatment': 'none', 'genotype': 'wild type'}, 'GSM1259109': {'gender': 'male', 'tissue': 'motor cortex (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1259108': {'gender': 'male', 'tissue': 'Cingulate gyrus (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1825451': {'line': 'MCF-7', 'tissue': 'breast', 'sirna': 'hnRNP A1 (A1)'}, 'GSM1825452': {'line': 'MCF-7', 'tissue': 'breast', 'sirna': 'hnRNP A1 (A1)'}, 'GSM2902798': {'replicate': '3', 'treatment': 'R848', 'point': '6h'}, 'GSM2902799': {'replicate': '1', 'treatment': 'vehicle', 'point': '16h'}, 'GSM1825453': {'line': 'MCF-7', 'tissue': 'breast', 'sirna': 'LIN28 +A1 (LIN28A1)'}, 'GSM2902790': {'replicate': '1', 'treatment': 'pU/UC', 'point': '6h'}, 'GSM2805305': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '68', 'timepoint': 'D3_ZT_11:15'}, 'GSM2902792': {'replicate': '3', 'treatment': 'pU/UC', 'point': '6h'}, 'GSM2902793': {'replicate': '1', 'treatment': 'R848', 'point': '16h'}, 'GSM2902794': {'replicate': '2', 'treatment': 'R848', 'point': '16h'}, 'GSM2902795': {'replicate': '3', 'treatment': 'R848', 'point': '16h'}, 'GSM2902796': {'replicate': '1', 'treatment': 'R848', 'point': '6h'}, 'GSM2902797': {'replicate': '2', 'treatment': 'R848', 'point': '6h'}, 'GSM2233307': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2268320': {'line': 'HaCaT', 'treatment': 'UVC-treated'}, 'GSM2268321': {'line': 'HaCaT', 'treatment': 'UVC-treated'}, 'GSM2268322': {'line': 'HaCaT', 'activation': 'photolyase activated', 'treatment': 'UVC-treated'}, 'GSM2268323': {'line': 'HaCaT', 'activation': 'photolyase activated', 'treatment': 'UVC-treated'}, 'GSM2632218': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2275133': {'area_under_the_curve': '0.396734531', 'siteandparticipantcode': '676063', 'baseline_area_under_the_curve': '0.553752656', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '71.64471841', 'auc_percent_of_baseline': '71.64471841', 'trunkbarcode': '951969', 'sampleID': 'S13143', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1551', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_676063', 'gender': 'Female', 'age': '14', 'race': 'White', 'libraryid': 'lib1551', 'studysiteshort': 'UCSF'}, 'GSM2275132': {'area_under_the_curve': '0.160845313', 'siteandparticipantcode': '692210', 'baseline_area_under_the_curve': '0.756541875', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '21.26059612', 'auc_percent_of_baseline': '21.26059612', 'trunkbarcode': '951965', 'sampleID': 'S13142', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1550', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_692210', 'gender': 'Female', 'age': '15', 'race': 'White; Asian', 'libraryid': 'lib1550', 'studysiteshort': 'UCSF'}, 'GSM2275131': {'area_under_the_curve': '0.792745', 'siteandparticipantcode': '255654', 'baseline_area_under_the_curve': '1.02982375', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '76.97870631', 'auc_percent_of_baseline': '76.97870631', 'trunkbarcode': '951967', 'sampleID': 'S13141', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1549', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_255654', 'gender': 'Female', 'age': '13', 'race': 'White', 'libraryid': 'lib1549', 'studysiteshort': 'UCSF'}, 'GSM2275130': {'area_under_the_curve': '0.289780156', 'siteandparticipantcode': '768498', 'baseline_area_under_the_curve': '0.426317656', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '67.97282543', 'auc_percent_of_baseline': '67.97282543', 'trunkbarcode': '951968', 'sampleID': 'S13140', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1548', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_768498', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib1548', 'studysiteshort': 'UCSF'}, 'GSM2275137': {'area_under_the_curve': '0.087921875', 'siteandparticipantcode': '325907', 'baseline_area_under_the_curve': '0.71496', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '12.2974537', 'auc_percent_of_baseline': '12.2974537', 'trunkbarcode': '948322', 'sampleID': 'S13147', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1555', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_325907', 'gender': 'Male', 'age': '16', 'race': 'White', 'libraryid': 'lib1555', 'studysiteshort': 'COLORADO'}, 'GSM2275136': {'area_under_the_curve': '0', 'siteandparticipantcode': '156104', 'baseline_area_under_the_curve': '0.917645781', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '0', 'auc_percent_of_baseline': '0', 'trunkbarcode': '946151', 'sampleID': 'S13146', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1554', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_156104', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1554', 'studysiteshort': 'COLORADO'}, 'GSM2275135': {'area_under_the_curve': '0.4576075', 'siteandparticipantcode': '443762', 'baseline_area_under_the_curve': '1.024910469', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '44.64853409', 'auc_percent_of_baseline': '44.64853409', 'trunkbarcode': '932792', 'sampleID': 'S13145', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1553', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_443762', 'gender': 'Male', 'age': '23', 'race': 'White', 'libraryid': 'lib1553', 'studysiteshort': 'COLORADO'}, 'GSM2275134': {'area_under_the_curve': '0.289573281', 'siteandparticipantcode': '445249', 'baseline_area_under_the_curve': '0.970502344', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '29.83746336', 'auc_percent_of_baseline': '29.83746336', 'trunkbarcode': '921902', 'sampleID': 'S13144', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1552', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_445249', 'gender': 'Male', 'age': '13', 'race': 'White', 'libraryid': 'lib1552', 'studysiteshort': 'COLORADO'}, 'GSM1519052': {'line': 'KARPAS-422', 'treatment': 'EPZ6438'}, 'GSM2275139': {'area_under_the_curve': '0.715477188', 'siteandparticipantcode': '268024', 'baseline_area_under_the_curve': '0.997396094', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '71.73450869', 'auc_percent_of_baseline': '71.73450869', 'trunkbarcode': '948323', 'sampleID': 'S13149', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1557', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_268024', 'gender': 'Male', 'age': '14', 'race': 'White', 'libraryid': 'lib1557', 'studysiteshort': 'COLORADO'}, 'GSM2275138': {'area_under_the_curve': '0.280367344', 'siteandparticipantcode': '612273', 'baseline_area_under_the_curve': '0.78736625', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '35.60825013', 'auc_percent_of_baseline': '35.60825013', 'trunkbarcode': '948326', 'sampleID': 'S13148', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1556', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_612273', 'gender': 'Male', 'age': '29', 'race': 'White', 'libraryid': 'lib1556', 'studysiteshort': 'COLORADO'}, 'GSM1519053': {'line': 'KARPAS-422', 'treatment': 'EPZ6438'}, 'GSM2212040': {'line': 'Kasumi-1 cells', 'treatment': '250 nM JQ1, 1 hr'}, 'GSM2305319': {'subtype': 'RUNX2 DOX inducible model', 'type': 'MCF7', 'condition': 'Full Medium + Doxycycline'}, 'GSM2305318': {'subtype': 'RUNX2 DOX inducible model', 'type': 'MCF7', 'condition': 'Full Medium + Doxycycline'}, 'GSM2305317': {'subtype': 'Long Term Estrogen Deprivation', 'type': 'MCF7', 'condition': 'White Medium + E2'}, 'GSM2305316': {'subtype': 'Long Term Estrogen Deprivation', 'type': 'MCF7', 'condition': 'White Medium'}, 'GSM2305315': {'subtype': 'Tamoxifen Resistance', 'type': 'MCF7', 'condition': 'White Medium + E2'}, 'GSM1969304': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM2305313': {'subtype': 'Wild Type', 'type': 'MCF7', 'condition': 'White Medium + E2'}, 'GSM1969302': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969301': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1969300': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'GI tract'}, 'GSM2212041': {'line': 'Kasumi-1 cells', 'treatment': '125 nM MS417, 1 hr'}, 'GSM3190730': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.511293'}, 'GSM3190731': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.261921'}, 'GSM3190732': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.804639'}, 'GSM3190733': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.656019'}, 'GSM3190734': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.941117'}, 'GSM3190735': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '2.1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.320983'}, 'GSM3190736': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.449123'}, 'GSM3190737': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.087894'}, 'GSM3190738': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.058046'}, 'GSM1517310': {'down': 'hCD24 knock down (KD)', 'line': 'MCF7', 'condition': 'sphere (s) forming cell', 'cd24': 'CD24-'}, 'GSM485462': {'line': 'NA18504'}, 'GSM2877895': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2565230': {'construction': 'PLATE-Seq', 'drug': 'Mitomycin C'}, 'GSM485461': {'line': 'NA19225'}, 'GSM979870': {'age': '16.5 weeks', 'tissue': 'ovary', 'type': 'cKIT+ FACS sort'}, 'GSM2877896': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM979872': {'line': 'H1 hESCs', 'passages': '42-45', 'type': 'TRA-1-60+ FACS sort'}, 'GSM979873': {'line': 'H1 hESCs', 'passages': '42-45', 'type': 'TRA-1-60+ FACS sort'}, 'GSM1427135': {'shRNA': 'shEZH1', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1427134': {'shRNA': 'shNT', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1427137': {'shRNA': 'shEZH1', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1427136': {'shRNA': 'shEZH1', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1587501': {'line': 'PC3', 'tissue': 'prostate', 'type': 'cancer cell', 'treatment': 'GPNA'}, 'GSM1587500': {'line': 'PC3', 'tissue': 'prostate', 'type': 'cancer cell', 'treatment': 'BenSer'}, 'GSM1427133': {'shRNA': 'shNT', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1587502': {'line': 'PC3', 'tissue': 'prostate', 'type': 'cancer cell', 'treatment': 'GPNA'}, 'GSM2565231': {'construction': 'PLATE-Seq', 'drug': 'Vandetanib (ZD6474)'}, 'GSM1427138': {'shRNA': 'shEZH2', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM2877897': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM1513948': {'tissue': 'foreskin', 'type': 'primary fibroblast', 'agent': 'control'}, 'GSM1513949': {'tissue': 'foreskin', 'type': 'primary fibroblast', 'agent': 'TGF-B'}, 'GSM2807438': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2616966': {'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2616965': {'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2616964': {'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2616963': {'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2616962': {'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2616961': {'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2616960': {'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM1609407': {'line': 'GM19098', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609406': {'line': 'GM19098', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609405': {'line': 'GM18951', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609404': {'line': 'GM18951', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609403': {'line': 'GM18951', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609402': {'line': 'GM18870', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609401': {'line': 'GM18526', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609400': {'line': 'GM18523', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609409': {'line': 'GM19137', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609408': {'line': 'GM19099', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1963932': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963933': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963930': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963931': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963936': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963937': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963934': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963935': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1523629': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1963938': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963939': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM2840567': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2188720': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-213', 'er': 'negative'}, 'GSM2565234': {'construction': 'PLATE-Seq', 'drug': 'Lapatinib Ditosylate (Tykerb)'}, 'GSM1508012': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508013': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508010': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508011': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508016': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508017': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508014': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508015': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1035443': {'status': 'Proliferative', 'line': 'WI38', 'type': 'primary fibroblasts', 'variation': 'infected with pBABE-puro-empty'}, 'GSM1508018': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508019': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1035446': {'status': 'Senescent', 'line': 'WI38', 'type': 'primary fibroblasts', 'variation': 'infected with pBABE-puro-H-RasG12V'}, 'GSM2840564': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1035444': {'status': 'Proliferative', 'line': 'WI38', 'type': 'primary fibroblasts', 'variation': 'infected with pBABE-puro-empty'}, 'GSM1035445': {'status': 'Proliferative', 'line': 'WI38', 'type': 'primary fibroblasts', 'variation': 'infected with pBABE-puro-empty'}, 'GSM2565235': {'construction': 'PLATE-Seq', 'drug': 'Topotecan hydrochloride'}, 'GSM1277017': {'type': 'ER32 + 40HT IMR90', 'treatment': 'tamoxifen'}, 'GSM1277019': {'type': 'ER32 IMR9', 'treatment': 'ethanol'}, 'GSM1277018': {'type': 'ER32 + 40HT IMR90', 'treatment': 'tamoxifen'}, 'GSM3380663': {'information': 'Male, 32-year-old', 'type': 'induced neural stem cells', 'genotype': 'WT'}, 'GSM3380662': {'type': 'H9 embryonic stem cells derived neural stem cells', 'genotype': 'WT'}, 'GSM3380665': {'information': 'Male, 32-year-old', 'type': 'urine derived cells', 'genotype': 'WT'}, 'GSM3380664': {'information': 'Male, 32-year-old', 'type': 'induced neural stem cells', 'genotype': 'WT'}, 'GSM3380666': {'information': 'Male, 32-year-old', 'type': 'urine derived cells', 'genotype': 'WT'}, 'GSM1570831': {'line': 'TREx BCBL1-Rta cells', 'antibody': 'anti-ORF57 (made in-house)', 'treatment': 'Lytic reactivation'}, 'GSM2277399': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277398': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277391': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277390': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277393': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277392': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277395': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277394': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277397': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277396': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM1570830': {'line': 'TREx BCBL1-Rta cells', 'antibody': 'none', 'treatment': 'Lytic reactivation'}, 'GSM2565393': {'construction': 'PLATE-Seq', 'drug': 'Raltitrexed'}, 'GSM2565392': {'construction': 'PLATE-Seq', 'drug': 'Pixantrone (BBR-2778), dimaleate salt'}, 'GSM2565391': {'construction': 'PLATE-Seq', 'drug': 'P276-00'}, 'GSM2565390': {'construction': 'PLATE-Seq', 'drug': 'GW 843682X'}, 'GSM2565397': {'construction': 'PLATE-Seq', 'drug': 'Volasertib (BI 6727)'}, 'GSM2565396': {'construction': 'PLATE-Seq', 'drug': 'Tivozanib (AV-951)'}, 'GSM2565395': {'construction': 'PLATE-Seq', 'drug': 'Tandutinib (MLN518)'}, 'GSM2565394': {'construction': 'PLATE-Seq', 'drug': 'Savolitinib (Volitinib; AZD6094; HMPL-504)'}, 'GSM2179774': {'condition': 'Peptide Hydrogel Puramatrix', 'donro': 'Donor B'}, 'GSM2565399': {'construction': 'PLATE-Seq', 'drug': 'SAPPANONE A DIMETHYL ETHER'}, 'GSM2565398': {'construction': 'PLATE-Seq', 'drug': 'CELASTROL'}, 'GSM2179770': {'condition': 'Peptide Hydrogel Puramatrix', 'donro': 'Donor B'}, 'GSM2179771': {'condition': 'Tissue Culture Polystyrene', 'donro': 'Donor A'}, 'GSM2179772': {'condition': 'Peptide Hydrogel Puramatrix', 'donro': 'Donor A'}, 'GSM2179773': {'condition': 'Tissue Culture Polystyrene', 'donro': 'Donor B'}, 'GSM2256659': {'patient': 'patient 2', 'treatment': 'before'}, 'GSM2048522': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2840560': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2048523': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048520': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2396986': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.miR-9/9*.miR-124.pGK.Ascl1.WPRE + u6.shRNA-REST.WPRE'}, 'GSM2396987': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.miR-9/9*.miR-124.pGK.Ascl1.WPRE + u6.shRNA-REST.WPRE'}, 'GSM2396984': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'u6.shRNA-REST.WPRE'}, 'GSM2048521': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2396982': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'u6.shRNA-REST.WPRE'}, 'GSM2396983': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'u6.shRNA-REST.WPRE'}, 'GSM2396980': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE'}, 'GSM2396981': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE'}, 'GSM1425766': {'grade': 'Rhabdoid', 'pretreatment': 'None', 'type': 'R', 'Stage': 'IV'}, 'GSM1642774': {'line': '786-O', 'transfection': 'HIF-2a (pRRL-HIF-2a)'}, 'GSM1425764': {'grade': '4', 'pretreatment': 'None', 'type': 'E*', 'Stage': 'IV'}, 'GSM1425765': {'grade': 'Sarcomatoid', 'pretreatment': 'None', 'type': 'S', 'Stage': 'IV'}, 'GSM1425762': {'grade': '3', 'pretreatment': 'None', 'type': 'E*', 'Stage': 'III'}, 'GSM1425763': {'grade': '4', 'pretreatment': 'None', 'type': 'E*', 'Stage': 'IV'}, 'GSM1425760': {'grade': '3', 'pretreatment': 'None', 'type': 'E*', 'Stage': 'IV'}, 'GSM1425761': {'grade': '3', 'pretreatment': 'None', 'type': 'E*', 'Stage': 'III'}, 'GSM2535895': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5656', 'samplename': '1_T1D#2 ReDraw_C22', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28541', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5656', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C22'}, 'GSM2535897': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5659', 'samplename': '1_T1D#2 ReDraw_C65', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28544', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5659', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C65'}, 'GSM2535896': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5658', 'samplename': '1_T1D#2 ReDraw_C53', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28543', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5658', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C53'}, 'GSM2048524': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2535893': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5655', 'samplename': '1_T1D#2 ReDraw_C29', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28540', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5655', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C29'}, 'GSM2535892': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5654', 'samplename': '1_T1D#2 ReDraw_C17', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28539', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5654', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C17'}, 'GSM2048525': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2535899': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5663', 'samplename': '1_T1D#2 ReDraw_C60', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28548', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5663', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C60'}, 'GSM2535898': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5660', 'samplename': '1_T1D#2 ReDraw_C77', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28545', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5660', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C77'}, 'GSM2112672': {'culture': 'cerebral organoids', 'time': '100 days from the beginning of organoid culture'}, 'GSM2112670': {'culture': 'cerebral organoids', 'time': '54 days from the beginning of organoid culture'}, 'GSM2112671': {'culture': 'cerebral organoids', 'time': '100 days from the beginning of organoid culture'}, 'GSM1234195': {'replicate': '2', 'line': '2610', 'antibody': 'RZ'}, 'GSM2562627': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2391060': {'disease': 'Stable Angina Pectoris'}, 'GSM2391061': {'disease': 'Stable Angina Pectoris'}, 'GSM2391062': {'disease': 'Unstable Angina Pectoris'}, 'GSM2391063': {'disease': 'Unstable Angina Pectoris'}, 'GSM2391064': {'disease': 'Unstable Angina Pectoris'}, 'GSM2391065': {'disease': 'Unstable Angina Pectoris'}, 'GSM2391066': {'disease': 'Unstable Angina Pectoris'}, 'GSM2391067': {'disease': 'Unstable Angina Pectoris'}, 'GSM2391068': {'disease': 'Pulmonary Hypertension'}, 'GSM2391069': {'disease': 'Non-significant Atherosclerosis'}, 'GSM3473717': {'type': 'IPSC-derived neurons', 'genotype': 'R841X-C', 'timepoint': '9wk'}, 'GSM2309467': {'number': 'Exp 3', 'time': '6 hours', 'replicate': '2', 'treatment': 'Meayamycin', 'dose': '80 nM'}, 'GSM2476129': {'line': 'SV7', 'tissue': 'Kidney', 'treatment': 'vehicle', 'time': '24h'}, 'GSM2476128': {'line': 'SV7', 'tissue': 'Kidney', 'treatment': 'GW9662', 'time': '12h'}, 'GSM2476127': {'line': 'SV7', 'tissue': 'Kidney', 'treatment': 'vehicle', 'time': '12h'}, 'GSM2476126': {'line': 'UMB', 'tissue': 'Kidney', 'treatment': 'GW9662', 'time': '24h'}, 'GSM2476125': {'line': 'UMB', 'tissue': 'Kidney', 'treatment': 'vehicle', 'time': '24h'}, 'GSM2476124': {'line': 'UMB', 'tissue': 'Kidney', 'treatment': 'GW9662', 'time': '12h'}, 'GSM2476123': {'line': 'UMB', 'tissue': 'Kidney', 'treatment': 'vehicle', 'time': '12h'}, 'GSM1220554': {'rearrangement': 'non-FOXP1 rearrangement', 'ihc': 'positive', 'tissue': 'lymphoma', 'karyotype': '47,XX,complex/+del(3)(q25q27)', 'diagnosis': 'ABC-DLBCL'}, 'GSM1220555': {'rearrangement': 'non-FOXP1 rearrangement', 'ihc': 'positive', 'tissue': 'lymphoma', 'karyotype': '44-48,XX, complex', 'diagnosis': 'ABC-DLBCL'}, 'GSM1220556': {'rearrangement': 'non-FOXP1 rearrangement', 'ihc': 'positive', 'tissue': 'lymphoma', 'karyotype': '47,XY,complex/t(3;10;14)(q27;p15;q32)', 'diagnosis': 'ABC-DLBCL'}, 'GSM1220557': {'rearrangement': 'non-FOXP1 rearrangement', 'ihc': 'positive', 'tissue': 'lymphoma', 'karyotype': '54,XY,complex/+3', 'diagnosis': 'ABC-DLBCL'}, 'GSM1955768': {'a': '50682', 'cd38': '894', 'cd49f': '1141', 'w': '64071', 'h': '51841', 'lin': '-81', 'cd34': '6011', 'cd90': '1790', 'cd7': '160', 'cd10': '675', 'time': '15325', 'cd135': '5085', 'cd45ra': '2742'}, 'GSM1955769': {'a': '49723', 'cd38': '106', 'cd49f': '544', 'w': '66731', 'h': '48832', 'lin': '23', 'cd34': '5532', 'cd90': '1455', 'cd7': '370', 'cd10': '-81', 'time': '15120', 'cd135': '5250', 'cd45ra': '182'}, 'GSM1955766': {'a': '47016', 'cd38': '1137', 'cd49f': '698', 'w': '66232', 'h': '46522', 'lin': '318', 'cd34': '6946', 'cd90': '4485', 'cd7': '-237', 'cd10': '1323', 'time': '15729', 'cd135': '3396', 'cd45ra': '507'}, 'GSM1955767': {'a': '46557', 'cd38': '704', 'cd49f': '121', 'w': '70474', 'h': '43295', 'lin': '365', 'cd34': '10388', 'cd90': '693', 'cd7': '273', 'cd10': '1107', 'time': '15527', 'cd135': '1332', 'cd45ra': '156'}, 'GSM1955764': {'a': '57548', 'cd38': '1006', 'cd49f': '629', 'w': '66239', 'h': '56937', 'lin': '535', 'cd34': '6658', 'cd90': '535', 'cd7': '166', 'cd10': '530', 'time': '16198', 'cd135': '8438', 'cd45ra': '6415'}, 'GSM1955765': {'a': '57747', 'cd38': '1174', 'cd49f': '332', 'w': '63844', 'h': '59277', 'lin': '-157', 'cd34': '7451', 'cd90': '-139', 'cd7': '165', 'cd10': '671', 'time': '15944', 'cd135': '5063', 'cd45ra': '206'}, 'GSM1955762': {'a': '75622', 'cd38': '1081', 'cd49f': '-172', 'w': '66572', 'h': '74445', 'lin': '209', 'cd34': '8767', 'cd90': '712', 'cd7': '25', 'cd10': '556', 'time': '16652', 'cd135': '4235', 'cd45ra': '1031'}, 'GSM1955763': {'a': '76264', 'cd38': '622', 'cd49f': '153', 'w': '67635', 'h': '73897', 'lin': '257', 'cd34': '3885', 'cd90': '-232', 'cd7': '531', 'cd10': '298', 'time': '16422', 'cd135': '1074', 'cd45ra': '29'}, 'GSM1955760': {'a': '49071', 'cd38': '702', 'cd49f': '486', 'w': '67155', 'h': '47888', 'lin': '-132', 'cd34': '7550', 'cd90': '2601', 'cd7': '409', 'cd10': '239', 'time': '14319', 'cd135': '2235', 'cd45ra': '366'}, 'GSM1955761': {'a': '55049', 'cd38': '630', 'cd49f': '365', 'w': '65991', 'h': '54669', 'lin': '-154', 'cd34': '5650', 'cd90': '5122', 'cd7': '-54', 'cd10': '727', 'time': '16859', 'cd135': '2829', 'cd45ra': '278'}, 'GSM1642308': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM2122589': {'line': 'DU145', 'passages': '13-17', 'with': 'vehicle (DMSO)', 'phenotype': 'AR-negative, EZH2 inhibitor-insensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122588': {'line': 'DU145', 'passages': '13-17', 'with': 'vehicle (DMSO)', 'phenotype': 'AR-negative, EZH2 inhibitor-insensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122587': {'line': 'LNCaP-abl (abl)', 'passages': '61-64', 'with': 'GSK126', 'phenotype': 'AR-positive, EZH2 inhibitor-sensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122586': {'line': 'LNCaP-abl (abl)', 'passages': '61-64', 'with': 'GSK126', 'phenotype': 'AR-positive, EZH2 inhibitor-sensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122585': {'line': 'LNCaP-abl (abl)', 'passages': '61-64', 'with': 'EPZ-6438', 'phenotype': 'AR-positive, EZH2 inhibitor-sensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122584': {'line': 'LNCaP-abl (abl)', 'passages': '61-64', 'with': 'EPZ-6438', 'phenotype': 'AR-positive, EZH2 inhibitor-sensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122583': {'line': 'LNCaP-abl (abl)', 'passages': '61-64', 'with': 'vehicle (DMSO)', 'phenotype': 'AR-positive, EZH2 inhibitor-sensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122582': {'line': 'LNCaP-abl (abl)', 'passages': '61-64', 'with': 'vehicle (DMSO)', 'phenotype': 'AR-positive, EZH2 inhibitor-sensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2898866': {'line': 'NA19102', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898867': {'line': 'NA19108', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898864': {'line': 'NA19098', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898865': {'line': 'NA19101', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898862': {'line': 'NA18870', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898863': {'line': 'NA18912', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898860': {'line': 'NA18852', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898861': {'line': 'NA18855', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM1400958': {'line': 'MCF7'}, 'GSM1400959': {'line': 'MCF7'}, 'GSM2898868': {'line': 'NA19116', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898869': {'line': 'NA19128', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM1217949': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'XK2367'}, 'GSM1217948': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'XK2367'}, 'GSM2543614': {'library_id': 'lib5731', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1234192': {'replicate': '2', 'line': '2610', 'antibody': 'H3K4me3'}, 'GSM2402794': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2402799': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2402798': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2109590': {'subtype': 'N/A', 'state': 'Normal'}, 'GSM1956079': {'a': '75663', 'cd38': '79', 'cd49f': '809', 'w': '68096', 'h': '72818', 'lin': '273', 'cd34': '10726', 'cd90': '6601', 'cd7': '46', 'cd10': '668', 'time': '20491', 'cd135': '2303', 'cd45ra': '313'}, 'GSM1956078': {'a': '54658', 'cd38': '371', 'cd49f': '466', 'w': '66666', 'h': '53732', 'lin': '1013', 'cd34': '7837', 'cd90': '1255', 'cd7': '-112', 'cd10': '940', 'time': '20690', 'cd135': '2018', 'cd45ra': '399'}, 'GSM1956077': {'a': '46888', 'cd38': '753', 'cd49f': '580', 'w': '68057', 'h': '45151', 'lin': '217', 'cd34': '5395', 'cd90': '167', 'cd7': '537', 'cd10': '476', 'time': '20881', 'cd135': '3870', 'cd45ra': '1141'}, 'GSM1956076': {'a': '43273', 'cd38': '851', 'cd49f': '431', 'w': '64742', 'h': '43804', 'lin': '1278', 'cd34': '5745', 'cd90': '2460', 'cd7': '51', 'cd10': '830', 'time': '21102', 'cd135': '2128', 'cd45ra': '79'}, 'GSM1956075': {'a': '49050', 'cd38': '881', 'cd49f': '405', 'w': '66055', 'h': '48664', 'lin': '157', 'cd34': '11012', 'cd90': '1161', 'cd7': '-43', 'cd10': '652', 'time': '21349', 'cd135': '3242', 'cd45ra': '146'}, 'GSM1956074': {'a': '73317', 'cd38': '458', 'cd49f': '660', 'w': '69222', 'h': '69413', 'lin': '128', 'cd34': '7655', 'cd90': '929', 'cd7': '201', 'cd10': '1373', 'time': '21619', 'cd135': '3743', 'cd45ra': '244'}, 'GSM1567929': {'weeks': '20.6'}, 'GSM1956072': {'a': '62105', 'cd38': '120', 'cd49f': '902', 'w': '67088', 'h': '60668', 'lin': '225', 'cd34': '6893', 'cd90': '1827', 'cd7': '364', 'cd10': '795', 'time': '19108', 'cd135': '5702', 'cd45ra': '396'}, 'GSM1956071': {'a': '48819', 'cd38': '965', 'cd49f': '363', 'w': '67000', 'h': '47752', 'lin': '41', 'cd34': '3444', 'cd90': '261', 'cd7': '-79', 'cd10': '936', 'time': '18906', 'cd135': '731', 'cd45ra': '142'}, 'GSM1956070': {'a': '73677', 'cd38': '224', 'cd49f': '543', 'w': '67061', 'h': '72001', 'lin': '986', 'cd34': '8254', 'cd90': '2426', 'cd7': '250', 'cd10': '1204', 'time': '18677', 'cd135': '5527', 'cd45ra': '2548'}, 'GSM2311952': {'culture': '12', 'line': 'DCX+'}, 'GSM2742758': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve, recovery'}, 'GSM2742759': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve, recovery'}, 'GSM2742756': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve'}, 'GSM2742757': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve, recovery'}, 'GSM2742754': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve'}, 'GSM2742755': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve'}, 'GSM2742752': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve'}, 'GSM2742753': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve'}, 'GSM2742750': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve'}, 'GSM2742751': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve'}, 'GSM2251283': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251282': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251281': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251280': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251287': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251286': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251285': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251284': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM1625971': {'with': 'TNF-α, PGE2 and Pam3CSK4 (TPP) for 72 hrs', 'donor': '2', 'type': 'human monocyte derived macrophages'}, 'GSM1625970': {'with': 'TNF-α, PGE2 and Pam3CSK4 (TPP) for 72 hrs', 'donor': '1', 'type': 'human monocyte derived macrophages'}, 'GSM1567928': {'weeks': '20'}, 'GSM2251288': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2221810': {'type': 'RASF'}, 'GSM2420326': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM922180': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2420324': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420325': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420323': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420320': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM922181': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2221812': {'type': 'RASF'}, 'GSM2286704': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2420328': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420329': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2029329': {'type': 'Control embryo a'}, 'GSM2029328': {'type': 'Control embryo a'}, 'GSM2286705': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2029321': {'type': 'Control embryo a'}, 'GSM2286702': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2029323': {'type': 'Control embryo a'}, 'GSM2029322': {'type': 'Control embryo a'}, 'GSM2029325': {'type': 'Control embryo b'}, 'GSM2029324': {'type': 'Control embryo a'}, 'GSM2029327': {'type': 'Control embryo a'}, 'GSM2286703': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2309461': {'number': 'Exp 3', 'time': '18 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2286700': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2286701': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM1706715': {'clone': 'None', 'passages': 'p21', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1523495': {'gender': 'male', 'age': '78', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'yes', 'type': 'follicular lymphoma'}, 'GSM1523494': {'gender': 'male', 'age': '40', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'no', 'type': 'follicular lymphoma'}, 'GSM1523497': {'gender': 'female', 'age': '63', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'no', 'type': 'follicular lymphoma'}, 'GSM1523496': {'gender': 'female', 'age': '63', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'no', 'type': 'follicular lymphoma'}, 'GSM1523491': {'gender': 'male', 'age': '52', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'yes', 'type': 'follicular lymphoma'}, 'GSM1523490': {'gender': 'male', 'age': '53', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'no', 'type': 'follicular lymphoma'}, 'GSM1523493': {'gender': 'female', 'age': '35', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'no', 'type': 'follicular lymphoma'}, 'GSM1523492': {'gender': 'female', 'age': '53', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'yes', 'type': 'follicular lymphoma'}, 'GSM1523499': {'tumor': 'na', 'nhl': 'na', 'tissue': 'Tonsil', 'type': 'centrocyte'}, 'GSM1523498': {'gender': 'male', 'age': '61', 'tumor': 'FL1-2', 'tissue': 'LN', 'nhl': 'no', 'type': 'follicular lymphoma'}, 'GSM1706714': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'None', 'passages': 'p21', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM2670929': {'source': 'Ascending Aorta', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Human Aortic Vascular Smooth Muscle Cells', 'matrix': 'Stiff'}, 'GSM1383766': {'donor': 'A2775', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM2027312': {'tissue': 'Blood', 'type': 'BDCA2+CD2- pDCs', 'id': '1005', 'point': 'Steady state'}, 'GSM1958505': {'type': 'Calvarial osteoblast', 'Sex': 'F'}, 'GSM2649761': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649760': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649763': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649762': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649765': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649764': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649767': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649766': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649769': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649768': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2183049': {'type': 'basal', 'patient': 'BS2553', 'population': 'Trop2+ CD49f Hi'}, 'GSM2183048': {'type': 'luminal', 'patient': 'BS2506', 'population': 'Trop2+ CD49f Lo'}, 'GSM2183043': {'type': 'basal', 'patient': 'BS2339', 'population': 'Trop2+ CD49f Hi'}, 'GSM2183042': {'type': 'luminal', 'patient': 'BS2339', 'population': 'Trop2+ CD49f Lo'}, 'GSM2183041': {'type': 'basal', 'patient': 'BS2339', 'population': 'Trop2+ CD49f Hi'}, 'GSM2183047': {'type': 'basal', 'patient': 'BS2506', 'population': 'Trop2+ CD49f Hi'}, 'GSM2183046': {'type': 'basal', 'patient': 'BS2340', 'population': 'Trop2+ CD49f Hi'}, 'GSM2183045': {'type': 'luminal', 'patient': 'BS2340', 'population': 'Trop2+ CD49f Lo'}, 'GSM2183044': {'type': 'basal', 'patient': 'BS2340', 'population': 'Trop2+ CD49f Hi'}, 'GSM1580935': {'onset': '27', 'death': '50', 'score': '1.201', 'grade': '4', 'rin': '9.2', 'reads': '86025890', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '23', 'cag': '48', 'pmi': '14.75'}, 'GSM1958507': {'type': 'Calvarial osteoblast', 'Sex': 'F'}, 'GSM1580937': {'onset': '38', 'death': '53', 'score': '1.01', 'grade': '4', 'rin': '6', 'reads': '122909122', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '15', 'cag': '48', 'pmi': '16.16'}, 'GSM1580936': {'onset': '60', 'death': '75', 'score': '2.361', 'grade': '3', 'rin': '6.4', 'reads': '101997434', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '15', 'cag': '42', 'pmi': '13.58'}, 'GSM3189419': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.560009', 'percentaligned': '0.958052111', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.866275', 'original': 'Case'}, 'GSM3189418': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A09', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.570953', 'percentaligned': '0.956888566', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.8752', 'original': 'Case'}, 'GSM3189417': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A09', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.576459', 'percentaligned': '0.946544568', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.421773', 'original': 'Case'}, 'GSM1580931': {'onset': '42', 'death': '48', 'score': '0.978', 'grade': '3', 'rin': '7.8', 'reads': '85591704', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '6', 'cag': '44', 'pmi': '11'}, 'GSM3189415': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.73717', 'percentaligned': '0.952997382', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.430692'}, 'GSM3189414': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.675449', 'percentaligned': '0.957521764', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.120995', 'original': 'Case'}, 'GSM3189413': {'boca': 'Yes', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.791233', 'percentaligned': '0.958256686', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.719721', 'original': 'Control'}, 'GSM3189412': {'boca': 'Yes', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.579469', 'percentaligned': '0.941796817', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.513861', 'original': 'Control'}, 'GSM3189411': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.549736', 'percentaligned': '0.946261053', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.03366', 'original': 'Control'}, 'GSM1580930': {'onset': '36', 'death': '61', 'score': '1.604', 'grade': '4', 'rin': '8.1', 'reads': '136764622', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '25', 'cag': '45', 'pmi': '24.3'}, 'GSM1958506': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM2307359': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM1580932': {'onset': '50', 'death': '69', 'score': '1.088', 'grade': '3', 'rin': '7', 'reads': '78493314', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '19', 'cag': '42', 'pmi': '19.06'}, 'GSM2307358': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM434702': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434703': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434700': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434701': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434706': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434704': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434705': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM1567920': {'weeks': '20'}, 'GSM2307355': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1482899': {'with': 'si RNAs against NELF', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM1482898': {'with': 'si RNAs against NELF', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM2307354': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM1482897': {'with': 'si RNAs against NELF', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM2307357': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM1482895': {'with': 'si RNAs against Integrator 11', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM1482894': {'with': 'si RNAs against Integrator 11', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM2307356': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2248021': {'line': 'YAPC', 'grnas': 'RFP'}, 'GSM1100207': {'line': 'HT-29', 'type': '25 M reads', 'treatment': 'IFN-g'}, 'GSM2782497': {'age': 'd48', 'tissue': 'GFP positive neural retina cells', 'type': 'flow sorted CRXp-GFP positive cells at 48 days post neural retina induction'}, 'GSM2782496': {'age': 'd37', 'tissue': 'GFP positive neural retina cells', 'type': 'flow sorted CRXp-GFP positive cells at 37 days post neural retina induction'}, 'GSM2549659': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'non-oxidized control', 'passage': '6'}, 'GSM2782499': {'age': 'd90', 'tissue': 'GFP positive neural retina cells', 'type': 'flow sorted CRXp-GFP positive cells at 90 days post neural retina induction'}, 'GSM2782498': {'age': 'd67', 'tissue': 'GFP positive neural retina cells', 'type': 'flow sorted CRXp-GFP positive cells at 67 days post neural retina induction'}, 'GSM1869431': {'gender': 'female', 'tissue': 'blood', 'type': 'peripheral blood mononuclear cells', 'diagnosis': 'healthy'}, 'GSM1567925': {'weeks': '11.5'}, 'GSM2545229': {'line': 'MCF-7', 'type': 'Luminal A Breast Cancer Cell line'}, 'GSM2545228': {'line': 'MCF10A', 'type': 'Mammary Gland Fibrocystic'}, 'GSM3595519': {'replicate': 'rep3', 'treatment': '10nM E2 + 10nM Aldosterone', 'time': '24h'}, 'GSM3595518': {'replicate': 'rep3', 'treatment': '10nM E2 + 10nM DHT', 'time': '24h'}, 'GSM3595513': {'replicate': 'rep2', 'treatment': '10nM E2 + 10nM Aldosterone', 'time': '24h'}, 'GSM3595512': {'replicate': 'rep2', 'treatment': '10nM E2 + 10nM DHT', 'time': '24h'}, 'GSM3595511': {'replicate': 'rep2', 'treatment': '10nM E2 + 10nM Dexamethasone', 'time': '24h'}, 'GSM2545222': {'line': '76NF2V', 'type': 'Mammary Brest Epithelium'}, 'GSM3595517': {'replicate': 'rep3', 'treatment': '10nM E2 + 10nM Dexamethasone', 'time': '24h'}, 'GSM3595516': {'replicate': 'rep3', 'treatment': '10nM E2 + 10nM Progesterone', 'time': '24h'}, 'GSM3595515': {'replicate': 'rep3', 'treatment': '10nM E2', 'time': '24h'}, 'GSM2545226': {'line': 'MCF10A', 'type': 'Mammary Gland Fibrocystic'}, 'GSM2047606': {'well': 'H06', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047607': {'well': 'H07', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1567924': {'weeks': '10.4'}, 'GSM2047605': {'well': 'H05', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047602': {'well': 'H02', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047603': {'well': 'H03', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047600': {'well': 'G12', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047601': {'well': 'H01', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1665988': {'with': 'enantiomer (control) for 6h', 'line': 'SKmel147', 'type': 'melanoma cell line', 'variation': 'NRAS mutant Q61R'}, 'GSM2047608': {'well': 'H08', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047609': {'well': 'H09', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2549656': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'non-oxidized control', 'passage': '7'}, 'GSM2549657': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'oxidized', 'passage': '7'}, 'GSM2361917': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM3454799': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '5 days'}, 'GSM2027310': {'tissue': 'Blood', 'type': 'CD1c+ DCs', 'id': '1005', 'point': 'Steady state'}, 'GSM2538871': {'donor': '1', 'tissue': 'blood', 'type': 'biological replicate', 'genotype': 'siRNA knockdown of NCOR2'}, 'GSM2538872': {'donor': '2', 'tissue': 'blood', 'type': 'biological replicate', 'genotype': 'siRNA knockdown of NCOR2'}, 'GSM2538873': {'donor': '2', 'tissue': 'blood', 'type': 'technical replicate', 'genotype': 'siRNA knockdown of NCOR2'}, 'GSM2538874': {'donor': '1', 'tissue': 'blood', 'type': 'biological replicate', 'genotype': 'scrambled RNA'}, 'GSM2538875': {'donor': '2', 'tissue': 'blood', 'type': 'biological replicate', 'genotype': 'scrambled RNA'}, 'GSM2538876': {'donor': '2', 'tissue': 'blood', 'type': 'technical replicate', 'genotype': 'scrambled RNA'}, 'GSM2538877': {'donor': '1', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (0h)] cell'}, 'GSM2538878': {'donor': '2', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (0h)] cell'}, 'GSM2538879': {'line': 'MCF7', 'treatment': 'control'}, 'GSM2100172': {'rin': '9', 'Sex': 'Female', 'sspg': '161', 'age': '58', 'bmi': '27.3', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '601', 'method': 'Life-Tech GITC'}, 'GSM2100173': {'rin': '9.5', 'Sex': 'Female', 'sspg': '117', 'age': '61', 'bmi': '28.5', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '614', 'method': 'Qiagen:trizol'}, 'GSM2100170': {'rin': '9.7', 'Sex': 'Female', 'sspg': '161', 'age': '58', 'bmi': '27.3', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '601', 'method': 'Life-Tech GITC'}, 'GSM2100171': {'rin': '9', 'Sex': 'Female', 'sspg': '161', 'age': '58', 'bmi': '27.3', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '601', 'method': 'Life-Tech GITC'}, 'GSM2451018': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451019': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100174': {'rin': '9.7', 'Sex': 'Female', 'sspg': '117', 'age': '61', 'bmi': '28.5', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '614', 'method': 'Qiagen:trizol'}, 'GSM2100175': {'rin': '9.3', 'Sex': 'Female', 'sspg': '117', 'age': '61', 'bmi': '28.5', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '614', 'method': 'Qiagen:trizol'}, 'GSM2451014': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451015': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100178': {'rin': '9.7', 'Sex': 'Female', 'sspg': '105', 'age': '38', 'bmi': '33.9', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'South Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '617', 'method': 'Qiagen:trizol'}, 'GSM2451017': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451010': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451011': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451012': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451013': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1980261': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1380882': {'type': 'Lymphoblastoid cell line', 'mutation': 'RNASEH2B'}, 'GSM1380881': {'type': 'Lymphoblastoid cell line'}, 'GSM2696584': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1980263': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2243121': {'line': 'HeLa', 'treatment': 'DMSO'}, 'GSM1980262': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980265': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980264': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM3494166': {'status': 'p53 wild-type'}, 'GSM1980267': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1833915': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM2204646': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1980266': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2243120': {'line': 'HeLa', 'treatment': 'DMSO'}, 'GSM1334202': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1340953': {'strain': '-', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells', 'antibody': 'none'}, 'GSM1340952': {'strain': '-', 'passages': 'p21-50', 'type': 'H9 Human ESCs', 'antibody': 'none'}, 'GSM1334200': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM2433136': {'state': 'Control', 'tissue': 'lung'}, 'GSM1334201': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM1334206': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM2243123': {'line': 'HeLa', 'treatment': 'Doxycycline (30 ug/mL)'}, 'GSM2720366': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM1334204': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM1334205': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM1955914': {'a': '70387', 'cd38': '-122', 'cd49f': '503', 'w': '67513', 'h': '68326', 'lin': '348', 'cd34': '6571', 'cd90': '3879', 'cd7': '367', 'cd10': '1069', 'time': '4777', 'cd135': '2375', 'cd45ra': '113'}, 'GSM2243122': {'line': 'HeLa', 'treatment': 'Doxycycline (30 ug/mL)'}, 'GSM2552984': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP18', 'Sex': 'M'}, 'GSM2552985': {'point': 'Baseline', 'age': '60', 'number': 'AP18', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '16', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2552986': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP2', 'Sex': 'M'}, 'GSM2552987': {'point': 'Baseline', 'age': '56', 'number': 'AP2', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '6', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2552980': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP14', 'Sex': 'F'}, 'GSM2193189': {'donor': 'Human (donor A)', 'type': 'Testis'}, 'GSM2552982': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP17', 'Sex': 'F'}, 'GSM2552983': {'point': 'Baseline', 'age': '55', 'number': 'AP17', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '16', 'Sex': 'F', 'positivity': 'Positive'}, 'GSM2263390': {'group': 'Ctrl', 'gender': 'M', 'age': '27', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263391': {'group': 'Ctrl', 'gender': 'M', 'age': '23', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263392': {'group': 'Fy', 'gender': 'F', 'age': '24', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2481445': {'line': 'Hct116', 'treatment': 'Lenalidomide'}, 'GSM2552988': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP22', 'Sex': 'M'}, 'GSM2552989': {'point': 'Baseline', 'age': '67', 'number': 'AP22', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '4', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2263396': {'group': 'Fy', 'gender': 'F', 'age': '25', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2263397': {'group': 'RASNP', 'gender': 'M', 'age': '30', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM3581794': {'tissue': 'trophoblast', 'type': 'HTR-8/SVneo trophoblast cell line (SV40 T antigen immortalized)', 'treatment': 'untreated'}, 'GSM3581795': {'tissue': 'trophoblast', 'type': 'HTR-8/SVneo trophoblast cell line (SV40 T antigen immortalized)', 'treatment': 'IFN-gamma 24 h'}, 'GSM2243125': {'line': 'HeLa', 'treatment': 'Actinonin (50 uM)'}, 'GSM2361918': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2243124': {'line': 'HeLa', 'treatment': 'Actinonin (50 uM)'}, 'GSM1569585': {'knockdown': 'negative control', 'line': 'HMC-LT + HMC-LTR', 'antibody': 'ChIP input'}, 'GSM1569584': {'knockdown': 'N/A', 'line': 'HMC-P6', 'antibody': 'ChIP input'}, 'GSM1267814': {'induction': '0 (uninduced)', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM1569586': {'knockdown': 'shKDM3A', 'line': 'HMC-LT', 'antibody': 'ChIP input'}, 'GSM2147713': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147712': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147711': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147710': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2049068': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049069': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049060': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049061': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049062': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049063': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049064': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049065': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM1395302': {'type': 'iPS clone'}, 'GSM2049067': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2243126': {'line': 'HeLa', 'treatment': 'FCCP (10 uM)'}, 'GSM1492881': {'type': 'MRC-5 fibroblasts', 'doublings': '36', 'treatment': 'subjected to quiescence using 150 days contact inhibition'}, 'GSM1492880': {'type': 'MRC-5 fibroblasts', 'doublings': '36', 'treatment': 'subjected to quiescence using 150 days contact inhibition'}, 'GSM1492882': {'type': 'MRC-5 fibroblasts', 'doublings': '36', 'treatment': 'subjected to quiescence using 150 days contact inhibition'}, 'GSM1916426': {'type': 'EBV-immortalized LCL'}, 'GSM2565409': {'construction': 'PLATE-Seq', 'drug': 'Voreloxin (SNS-595)'}, 'GSM2565408': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565403': {'construction': 'PLATE-Seq', 'drug': 'Pacritinib (SB1518)'}, 'GSM2565402': {'construction': 'PLATE-Seq', 'drug': 'Bax channel blocker'}, 'GSM2565401': {'construction': 'PLATE-Seq', 'drug': 'ZK 93423'}, 'GSM2565400': {'construction': 'PLATE-Seq', 'drug': 'Methyl 2,5-dihydroxycinnamate'}, 'GSM2565407': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565406': {'construction': 'PLATE-Seq', 'drug': 'SCIO 469 hydrochloride'}, 'GSM2565405': {'construction': 'PLATE-Seq', 'drug': 'Refametinib (RDEA119, Bay 86-9766)'}, 'GSM2565404': {'construction': 'PLATE-Seq', 'drug': 'Plinabulin (NPI-2358)'}, 'GSM1506106': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000016512)', 'batch': '2'}, 'GSM1506107': {'passages': '7', 'type': 'iPSC (GM8330-8)-derived NPC', 'accession': 'CHD8 (TRCN0000016512)', 'batch': '2'}, 'GSM1506104': {'type': 'Peripheral blood monocytes', 'disease': 'Health control'}, 'GSM1506105': {'type': 'Peripheral blood monocytes', 'disease': 'Health control'}, 'GSM1506102': {'type': 'Peripheral blood monocytes', 'disease': 'Health control'}, 'GSM1330713': {'line': 'MRC5', 'tissue': 'lung', 'type': 'fibroblast cells', 'treatment': '0.2mM H2O2', 'tiime': '3 hours'}, 'GSM1506103': {'type': 'Peripheral blood monocytes', 'disease': 'Health control'}, 'GSM2064634': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064635': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064636': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064637': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064630': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064631': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064632': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064633': {'phenotype': 'Lesional psoriatic skin'}, 'GSM1506101': {'type': 'Peripheral blood monocytes', 'disease': 'Health control'}, 'GSM2064638': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2311779': {'culture': '0'}, 'GSM1267815': {'induction': '24 hours', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM2303435': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303436': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303437': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303430': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303431': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303432': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303433': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCG268'}, 'GSM1665184': {'gender': 'male', 'age': '18.5 weeks', 'feeding': 'UNK', 'assistance': 'UNK'}, 'GSM2303438': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303439': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM1807988': {'tissue': 'Liver'}, 'GSM1807989': {'tissue': 'Liver'}, 'GSM3594684': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM1807982': {'tissue': 'Liver'}, 'GSM1807983': {'tissue': 'Liver'}, 'GSM1807980': {'tissue': 'Liver'}, 'GSM1807981': {'tissue': 'Liver'}, 'GSM1807986': {'tissue': 'Liver'}, 'GSM1807987': {'tissue': 'Liver'}, 'GSM1807984': {'tissue': 'Liver'}, 'GSM1807985': {'tissue': 'Liver'}, 'GSM1611659': {'with': '1µM AGE-BSA with BMP2', 'type': 'Primary human posterior longitudinal ligament cells', 'passage': '3'}, 'GSM1611658': {'with': '5µM AGE-BS', 'type': 'Primary human posterior longitudinal ligament cells', 'passage': '3'}, 'GSM1665185': {'gender': 'female', 'age': '24.3 weeks', 'feeding': 'UNK', 'assistance': 'UNK'}, 'GSM1611657': {'with': '1µM AGE-BSA', 'type': 'Primary human posterior longitudinal ligament cells', 'passage': '3'}, 'GSM1611656': {'with': 'BSA (control)', 'type': 'Primary human posterior longitudinal ligament cells', 'passage': '3'}, 'GSM678060': {'type': 'Granulocytes'}, 'GSM3594685': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2067395': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM1588882': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1665187': {'gender': 'female', 'age': '35 weeks', 'feeding': 'FALSE', 'assistance': 'TRUE'}, 'GSM1536199': {'type': 'H7 hESC cell line', 'point': '15 days'}, 'GSM2287499': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287498': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287495': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287494': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287497': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287496': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287491': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287490': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287493': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287492': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2194344': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194345': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194346': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194347': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194340': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194341': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194342': {'type': 'delta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194343': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1704533': {'protocol': '40 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704532': {'protocol': '24 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704531': {'protocol': '24 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704530': {'protocol': '12 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM2194348': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194349': {'type': 'acinar', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1704535': {'protocol': 'Interferon treatment', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704534': {'protocol': '40 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM2197741': {'passages': '25-30'}, 'GSM2730050': {'tissue': 'LNCaP', 'conditions': 'Hormone starvation + 16 h EtOH', 'variation': 'C-terminal mutant (K231A, K232A, K279A)'}, 'GSM2730051': {'tissue': 'LNCaP', 'conditions': 'Hormone starvation + 16 h DHT', 'variation': 'C-terminal mutant (K231A, K232A, K279A)'}, 'GSM2730052': {'tissue': 'LNCaP', 'conditions': 'Hormone starvation + 16 h DHT', 'variation': 'C-terminal mutant (K231A, K232A, K279A)'}, 'GSM2197740': {'passages': '25-30'}, 'GSM1536190': {'type': 'H7 hESC cell line', 'point': '30 days'}, 'GSM1536191': {'type': 'H7 hESC cell line', 'point': '30 days'}, 'GSM2305878': {'tissue': 'colon'}, 'GSM2305879': {'tissue': 'colon'}, 'GSM2305876': {'tissue': 'colon'}, 'GSM2305877': {'tissue': 'colon'}, 'GSM2305874': {'tissue': 'colon'}, 'GSM2305875': {'tissue': 'colon'}, 'GSM2305872': {'tissue': 'colon'}, 'GSM2305873': {'tissue': 'colon'}, 'GSM2305870': {'tissue': 'colon'}, 'GSM2305871': {'tissue': 'colon'}, 'GSM2197746': {'passages': '25-30'}, 'GSM1331668': {'line': 'bronchial epithelial BEAS2B cells', 'passages': '15-18', 'type': 'epithelial (virus transformed)', 'variation': 'QKI-knockdown', 'tissue': 'lung/bronchus'}, 'GSM2760048': {'tissue': 'Whole blood', 'condition': 'hypothyroid'}, 'GSM2760049': {'tissue': 'Whole blood', 'condition': 'hypothyroid'}, 'GSM2760046': {'tissue': 'Whole blood', 'condition': 'hypothyroid'}, 'GSM2760047': {'tissue': 'Whole blood', 'condition': 'hypothyroid'}, 'GSM2760044': {'tissue': 'Whole blood', 'condition': 'hypothyroid'}, 'GSM2760045': {'tissue': 'Whole blood', 'condition': 'hypothyroid'}, 'GSM1331667': {'line': 'bronchial epithelial BEAS2B cells', 'passages': '15-18', 'type': 'epithelial (virus transformed)', 'variation': 'QKI-knockdown', 'tissue': 'lung/bronchus'}, 'GSM1331666': {'line': 'bronchial epithelial BEAS2B cells', 'passages': '15-18', 'type': 'epithelial (virus transformed)', 'variation': 'control', 'tissue': 'lung/bronchus'}, 'GSM1383776': {'donor': 'A2775', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM1383777': {'donor': 'A2824', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM1980210': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980211': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980212': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1896239': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1980214': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980215': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980216': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980217': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980218': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980219': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1896230': {'individual': 'EU60', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896231': {'individual': 'EU62', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896236': {'individual': 'EU64', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896237': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896234': {'individual': 'EU64', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896235': {'individual': 'EU64', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM3586889': {'origin': 'UNCLASSIFIED', 'pfstt': '783', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '783', 'cycles': '8', 'oscs': '0'}, 'GSM3586888': {'origin': 'GCB', 'pfstt': '678', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '723', 'cycles': '8', 'oscs': '0'}, 'GSM3586881': {'origin': 'GCB', 'pfstt': '691', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '691', 'cycles': '6', 'oscs': '0'}, 'GSM3586880': {'origin': 'GCB', 'pfstt': '999', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1477', 'cycles': '8', 'oscs': '0'}, 'GSM3586883': {'origin': 'GCB', 'pfstt': '858', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '858', 'cycles': '8', 'oscs': '0'}, 'GSM3586882': {'origin': 'GCB', 'pfstt': '727', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '728', 'cycles': '6', 'oscs': '0'}, 'GSM3586885': {'origin': 'ABC', 'pfstt': '775', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '862', 'cycles': '8', 'oscs': '0'}, 'GSM3586884': {'origin': 'GCB', 'pfstt': '358', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '748', 'cycles': '6', 'oscs': '0'}, 'GSM3586887': {'origin': 'GCB', 'pfstt': '781', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '781', 'cycles': '8', 'oscs': '0'}, 'GSM3586886': {'origin': 'GCB', 'pfstt': '1029', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1029', 'cycles': '6', 'oscs': '0'}, 'GSM1869426': {'gender': 'female', 'tissue': 'blood', 'type': 'peripheral blood mononuclear cells', 'diagnosis': 'Guillain-Barre Syndrome'}, 'GSM1372330': {'individual': 'NA12877', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372331': {'individual': 'NA12878', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372332': {'individual': 'NA12879', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372333': {'individual': 'NA12880', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372334': {'individual': 'NA12881', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372335': {'individual': 'NA12887', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372336': {'individual': 'NA12888', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372337': {'individual': 'NA12892', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372338': {'individual': 'NA12893', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1372339': {'individual': 'NA12882', 'type': 'EBV transformed peripheral blood B lymphocytes'}, 'GSM1869429': {'gender': 'female', 'tissue': 'blood', 'type': 'peripheral blood mononuclear cells', 'diagnosis': 'healthy'}, 'GSM2581288': {'race': 'Caucasian', 'patient': '4590', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170310A', 'histology': 'Coronal sample, Section 31', 'age': '20 years'}, 'GSM1574750': {'concentration': '14318.3', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '27.6'}, 'GSM3577504': {'line': 'Human Intrahepatic Biliary Epithelial Cells (HIBEC)', 'agent': 'TGFb', 'passage': 'P4-6'}, 'GSM3577500': {'line': 'Human Intrahepatic Biliary Epithelial Cells (HIBEC)', 'agent': 'Vehicle (Control)', 'passage': 'P4-6'}, 'GSM3577501': {'line': 'Human Intrahepatic Biliary Epithelial Cells (HIBEC)', 'agent': 'Vehicle (Control)', 'passage': 'P4-6'}, 'GSM3577502': {'line': 'Human Intrahepatic Biliary Epithelial Cells (HIBEC)', 'agent': 'TGFb', 'passage': 'P4-6'}, 'GSM3577503': {'line': 'Human Intrahepatic Biliary Epithelial Cells (HIBEC)', 'agent': 'TGFb', 'passage': 'P4-6'}, 'GSM1317869': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1317868': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2153358': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153359': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153356': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2262906': {'protocol': 'Culture only for 6 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2153354': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153355': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153352': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153353': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153350': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153351': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1508939': {'antibody': 'H3K4me3', 'type': 'neural stem cell (NSC)', 'stage': 'asynchronization'}, 'GSM1508938': {'antibody': 'igg', 'type': 'neural stem cell (NSC)', 'stage': 'asynchronization'}, 'GSM2565163': {'construction': 'PLATE-Seq', 'drug': 'Trametinib (GSK1120212)'}, 'GSM2410118': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2410119': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2410112': {'gender': 'male', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2410113': {'gender': 'male', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2410110': {'gender': 'male', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2410111': {'gender': 'male', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2410116': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2410117': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2410114': {'gender': 'male', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2410115': {'gender': 'male', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM1946189': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19147', 'for': '60min'}, 'GSM2229895': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS16'}, 'GSM2229894': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS16'}, 'GSM2229897': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS13'}, 'GSM2229896': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS13'}, 'GSM2229893': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS16'}, 'GSM2229892': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS16'}, 'GSM2794430': {'age': '50 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794431': {'age': '19 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794432': {'age': '28 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794433': {'age': '70 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2229899': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS13'}, 'GSM2229898': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS13'}, 'GSM1184602': {'type': 'ribosome footprint', 'cycloheximide': '0.1 mg/mL cycloheximide', 'point': '12h'}, 'GSM1184601': {'type': 'poly(A) mRNA', 'cycloheximide': 'none', 'point': '12h'}, 'GSM1184600': {'type': 'ribosome footprint', 'cycloheximide': '0.1 mg/mL cycloheximide', 'point': '9h'}, 'GSM2575024': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575025': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575026': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575027': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575020': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2575021': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575022': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575023': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575028': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575029': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM1395306': {'type': 'iPS clone'}, 'GSM1580971': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580970': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580973': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580972': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580975': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580974': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580977': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580976': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580979': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580978': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1678799': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM2931169': {'concentration': '2.5 uM', 'passages': '<25', 'line': 'HepG2', 'treatment': 'TBOEP'}, 'GSM1293573': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1322943': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1678793': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM2122815': {'status': 'knockout of DROSHA'}, 'GSM2122814': {'status': 'wild type'}, 'GSM1678792': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM1910776': {'stability': 'Non stable', 'type': 'ileum'}, 'GSM2151513': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151510': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1678796': {'knockdown': 'Yes', 'type': 'HEK293 cells', 'fraction': 'whole cell'}, 'GSM1574759': {'concentration': '6840.3', 'individual': 'PHH3', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '50'}, 'GSM2151511': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151516': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151517': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM3711281': {'visit': 'Visit 1b', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'percentaligned': '0.940147788', 'mediancvcoverage': '0.682665'}, 'GSM3711280': {'visit': 'Visit 0', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'percentaligned': '0.782548367', 'mediancvcoverage': '1.08466'}, 'GSM3711283': {'mediancvcoverage': '0.61279', 'percentaligned': '0.915271389', 'visit': 'Visit 0', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711282': {'visit': 'Visit 1a', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'percentaligned': '0.935622249', 'mediancvcoverage': '0.674326'}, 'GSM1369086': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siNFYA'}, 'GSM3711284': {'mediancvcoverage': '0.633531', 'percentaligned': '0.949941286', 'visit': 'Visit 1b', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM1369084': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1'}, 'GSM3711286': {'mediancvcoverage': '0.588554', 'percentaligned': '0.951542434', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '12'}, 'GSM3711289': {'mediancvcoverage': '0.726919', 'percentaligned': '0.814961535', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711288': {'mediancvcoverage': '0.716524', 'percentaligned': '0.841274899', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM1369088': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13'}, 'GSM1369089': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siRGS18'}, 'GSM2228431': {'tissue': '10 weeks old fetal brain tissue', 'type': 'fetal brain derived neural stem cells', 'number': 'p2'}, 'GSM1099035': {'line': 'MDA-MB-453', 'type': 'breast cancer'}, 'GSM1099037': {'line': 'MDA-MB-453', 'type': 'breast cancer'}, 'GSM1099036': {'line': 'MDA-MB-453', 'type': 'breast cancer'}, 'GSM2433708': {'line': 'H1', 'time': 'day 20', 'type': 'Human embryonic stem cell', 'genotype': 'inducible knockout of EED', 'treatment': '-DOX'}, 'GSM2433709': {'line': 'H1', 'time': 'day 24', 'type': 'Human embryonic stem cell', 'genotype': 'inducible knockout of EED', 'treatment': '-DOX'}, 'GSM2433704': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'SUZ12 knockout'}, 'GSM2433705': {'line': 'H1', 'time': 'day 8', 'type': 'Human embryonic stem cell', 'genotype': 'inducible knockout of EED', 'treatment': '-DOX'}, 'GSM2433706': {'line': 'H1', 'time': 'day 12', 'type': 'Human embryonic stem cell', 'genotype': 'inducible knockout of EED', 'treatment': '-DOX'}, 'GSM2433707': {'line': 'H1', 'time': 'day 16', 'type': 'Human embryonic stem cell', 'genotype': 'inducible knockout of EED', 'treatment': '-DOX'}, 'GSM2433700': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'EZH2 knockout'}, 'GSM2433701': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'EED knockout'}, 'GSM2433702': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'EED knockout'}, 'GSM2433703': {'line': 'H1', 'type': 'Human embryonic stem cell', 'genotype': 'SUZ12 knockout'}, 'GSM1570589': {'line': '786-0', 'type': 'renal cell carcinoma'}, 'GSM1570588': {'line': '786-0', 'type': 'renal cell carcinoma'}, 'GSM1570587': {'line': '786-0', 'type': 'renal cell carcinoma'}, 'GSM1570586': {'line': '786-0', 'type': 'renal cell carcinoma'}, 'GSM1816429': {'type': 'Cord blood stem cells', 'treatment': 'MSI2 over-expression'}, 'GSM2228433': {'tissue': '12 weeks old fetal brain tissue', 'type': 'fetal brain derived neural stem cells', 'number': 'p2'}, 'GSM808734': {'clone': '3', 'passages': '5', 'type': 'hiPSCs'}, 'GSM808735': {'clone': '3', 'passages': '5', 'type': 'hiPSCs-derived neurons'}, 'GSM2492454': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM1322944': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322945': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1957264': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957267': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957266': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957261': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957260': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957263': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957262': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957269': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957268': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2011515': {'line': 'HEK293FT', 'variation': 'Transfected with mutant FOXE3 (p.C240*) expression vector'}, 'GSM2011514': {'line': 'HEK293FT', 'variation': 'Transfected with mutant FOXE3 (p.C240*) expression vector'}, 'GSM2011517': {'line': 'HEK293FT', 'variation': 'Transfected with mutant FOXE3 (p.C240*) expression vector'}, 'GSM2011516': {'line': 'HEK293FT', 'variation': 'Transfected with mutant FOXE3 (p.C240*) expression vector'}, 'GSM2011511': {'line': 'HEK293FT', 'variation': 'Transfected with mutant FOXE3 (p.C240*) expression vector'}, 'GSM2011510': {'line': 'HEK293FT', 'variation': 'Transfected with mutant FOXE3 (p.C240*) expression vector'}, 'GSM2011513': {'line': 'HEK293FT', 'variation': 'Transfected with mutant FOXE3 (p.C240*) expression vector'}, 'GSM2011512': {'line': 'HEK293FT', 'variation': 'Transfected with mutant FOXE3 (p.C240*) expression vector'}, 'GSM1695886': {'age': '66', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM2011519': {'line': 'HEK293FT', 'variation': 'Transfected with wild type FOXE3 expression vector'}, 'GSM2493830': {'tissue': 'Dental pulp', 'treatment': 'recombinant human Jagged1/Fc immobilization'}, 'GSM1695887': {'age': '57', 'tissue': 'breast ductal carcinoma in situ', 'race': 'Hispanic'}, 'GSM2543988': {'library_id': 'lib8288', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543989': {'library_id': 'lib8289', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543986': {'library_id': 'lib8282', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543987': {'library_id': 'lib8283', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543984': {'library_id': 'lib8280', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543985': {'library_id': 'lib8281', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543982': {'library_id': 'lib8278', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543983': {'library_id': 'lib8279', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1267812': {'induction': '0 (uninduced)', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'poly(A) RNA'}, 'GSM2543981': {'library_id': 'lib8271', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2212209': {'company': 'cat #): Tocris Bioscience: #3631', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Tacrolimus'}, 'GSM2493831': {'tissue': 'Dental pulp', 'treatment': 'Pretreatment with a gamma secretase inhibitor before exposing to recombinant human Jagged1/Fc immobilization'}, 'GSM1695888': {'age': '54', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695889': {'age': '58', 'tissue': 'breast ductal carcinoma in situ', 'race': 'Black'}, 'GSM854379': {'patient': '10', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854378': {'patient': '9', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM1267258': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'normal', 'Sex': 'Female'}, 'GSM1267259': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'normal', 'Sex': 'Female'}, 'GSM854371': {'patient': '8', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854370': {'patient': '7', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM854373': {'patient': '8', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM854372': {'patient': '8', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM854375': {'patient': '9', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854374': {'patient': '8', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM854377': {'patient': '9', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM854376': {'patient': '9', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM5100629': {'sspg': '209', 'age': '50', 'bmi': '34.7', 'batch': '1-80', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100628': {'sspg': '209', 'age': '50', 'bmi': '34.7', 'batch': '1-80', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM2225662': {'disease': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM5100627': {'sspg': '323', 'age': '68', 'bmi': '27.4', 'batch': '1-Jan', 'Sex': 'Female', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'White.Hispanic', 'treatment': 'yes', 'lot': 'unknown', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100626': {'sspg': '323', 'age': '68', 'bmi': '27.4', 'batch': '1-Jan', 'Sex': 'Female', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'White.Hispanic', 'treatment': 'no', 'lot': 'unknown', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM2225663': {'disease': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2635678': {'antibody': 'beta-Catenin', 'genotype': 'WT', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2225660': {'disease': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2212205': {'company': 'cat #): Not applicable', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Untreated'}, 'GSM2644586': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM1956138': {'a': '66043', 'cd38': '976', 'cd49f': '405', 'w': '69851', 'h': '61963', 'lin': '-112', 'cd34': '3191', 'cd90': '420', 'cd7': '-8', 'cd10': '785', 'time': '13313', 'cd135': '1329', 'cd45ra': '146'}, 'GSM1956139': {'a': '78320', 'cd38': '650', 'cd49f': '886', 'w': '72878', 'h': '70430', 'lin': '928', 'cd34': '7695', 'cd90': '1465', 'cd7': '566', 'cd10': '466', 'time': '13552', 'cd135': '5261', 'cd45ra': '1427'}, 'GSM2357401': {'subtype': 'Nucleoplasmic RNA', 'line': 'HeLa', 'variation': 'polyA+ fraction, Nucleoplasm'}, 'GSM1956132': {'a': '49750', 'cd38': '955', 'cd49f': '387', 'w': '63136', 'h': '51642', 'lin': '96', 'cd34': '5450', 'cd90': '-291', 'cd7': '-25', 'cd10': '500', 'time': '9789', 'cd135': '1609', 'cd45ra': '221'}, 'GSM1956133': {'a': '55203', 'cd38': '-459', 'cd49f': '-39', 'w': '62755', 'h': '57650', 'lin': '-46', 'cd34': '14123', 'cd90': '2525', 'cd7': '1088', 'cd10': '21', 'time': '12283', 'cd135': '4504', 'cd45ra': '1134'}, 'GSM1956130': {'a': '56139', 'cd38': '409', 'cd49f': '455', 'w': '69533', 'h': '52912', 'lin': '344', 'cd34': '6039', 'cd90': '461', 'cd7': '521', 'cd10': '314', 'time': '10209', 'cd135': '2446', 'cd45ra': '236'}, 'GSM1956131': {'a': '49432', 'cd38': '760', 'cd49f': '759', 'w': '65948', 'h': '49123', 'lin': '384', 'cd34': '4622', 'cd90': '201', 'cd7': '481', 'cd10': '972', 'time': '10005', 'cd135': '1621', 'cd45ra': '366'}, 'GSM1956136': {'a': '56897', 'cd38': '-637', 'cd49f': '627', 'w': '67261', 'h': '55438', 'lin': '927', 'cd34': '6855', 'cd90': '1154', 'cd7': '830', 'cd10': '422', 'time': '12914', 'cd135': '980', 'cd45ra': '158'}, 'GSM2644584': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM1956134': {'a': '49857', 'cd38': '242', 'cd49f': '-109', 'w': '66800', 'h': '48914', 'lin': '-42', 'cd34': '9228', 'cd90': '9471', 'cd7': '354', 'cd10': '601', 'time': '12526', 'cd135': '3227', 'cd45ra': '200'}, 'GSM1956135': {'a': '64848', 'cd38': '534', 'cd49f': '451', 'w': '64596', 'h': '65792', 'lin': '267', 'cd34': '4931', 'cd90': '1404', 'cd7': '163', 'cd10': '725', 'time': '12720', 'cd135': '3176', 'cd45ra': '91'}, 'GSM2635679': {'antibody': 'beta-Catenin', 'genotype': 'YAP-', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2644585': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644582': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-GATA3 C-terminus (ThermoFisher, PA5-20892)'}, 'GSM2644583': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644580': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-GATA3 C-terminus (ThermoFisher, PA5-20892)'}, 'GSM1867000': {'line': 'HCT116', 'clone': 'E7 Deletion Clone', 'point': 'RNA extracted on day C'}, 'GSM1867005': {'line': 'HCT116', 'clone': '18qNE Deletion Clone 2', 'point': 'RNA extracted on day B'}, 'GSM1867004': {'line': 'HCT116', 'clone': '18qNE Deletion Clone 1', 'point': 'RNA extracted on day A'}, 'GSM1867007': {'line': 'HCT116', 'clone': 'Control Clone 1', 'point': 'RNA extracted on day D'}, 'GSM1867006': {'line': 'HCT116', 'clone': '18qNE Deletion Clone 3', 'point': 'RNA extracted on day A'}, 'GSM1867009': {'line': 'HCT116', 'clone': '18qE Deletion Clone 1', 'point': 'RNA extracted on day D'}, 'GSM1867008': {'line': 'HCT116', 'clone': 'Control Conle 2', 'point': 'RNA extracted on day D'}, 'GSM2211741': {'line': 'RPE-1 cells', 'treatment': '0.5 μM Reversine for 12 hours followed by 330 nM Nocodazole', 'state': 'aneuploid arrested cells'}, 'GSM2549705': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM562117': {'polyadenylation': 'minus', 'line': 'HeLa', 'ploidy': 'highly polyploid', 'type': 'human epithelial cervical cancer cells'}, 'GSM562116': {'passages': '56', 'polyadenylation': 'plus', 'line': 'H9', 'ploidy': 'diploid', 'type': 'human embryonic stem cells'}, 'GSM562115': {'passages': '56', 'polyadenylation': 'minus', 'line': 'H9', 'ploidy': 'diploid', 'type': 'human embryonic stem cells'}, 'GSM562118': {'polyadenylation': 'plus', 'line': 'HeLa', 'ploidy': 'highly polyploid', 'type': 'human epithelial cervical cancer cells'}, 'GSM1863650': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863651': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863652': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863653': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863654': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863655': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863656': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863657': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863658': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863659': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1977478': {'line': 'AIRE-Tet, Tet-On Advanced HEK293 (Clontech) with inducible AIRE expression', 'expression': 'Induced', 'treatment': 'Treated'}, 'GSM1395294': {'type': 'reprogramming CD34+', 'time': 'day 8'}, 'GSM1395295': {'type': 'reprogramming CD34+', 'time': 'day 10'}, 'GSM1395296': {'type': 'reprogramming CD34+', 'time': 'day 12'}, 'GSM1395297': {'type': 'reprogramming CD34+', 'time': 'day 14'}, 'GSM1395290': {'type': 'parental CD34+', 'time': 'day 8'}, 'GSM1395291': {'type': 'parental CD34+', 'time': 'day 10'}, 'GSM1395292': {'type': 'reprogramming CD34+', 'time': 'day 4'}, 'GSM1395293': {'type': 'reprogramming CD34+', 'time': 'day 6'}, 'GSM1395298': {'type': 'reprogramming CD34+', 'time': 'day 16'}, 'GSM1395299': {'type': 'reprogramming CD34+', 'time': 'day 19'}, 'GSM1977479': {'line': 'AIRE-Tet, Tet-On Advanced HEK293 (Clontech) with inducible AIRE expression', 'expression': 'Induced', 'treatment': 'Untreated'}, 'GSM1187398': {'age': '51', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T1bN1aM0', 'Sex': 'male'}, 'GSM1187399': {'age': '39', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T2N1aM0', 'Sex': 'male'}, 'GSM2152357': {'line': 'HT29', 'transfection': 'Control siRNA'}, 'GSM2944149': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'SK-ES'}, 'GSM2944148': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'SK-ES'}, 'GSM2944143': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'A673'}, 'GSM2671304': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2944141': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'A673'}, 'GSM2944140': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'A673'}, 'GSM2944147': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'SK-ES'}, 'GSM2944146': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'SK-ES'}, 'GSM2944145': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'A673'}, 'GSM2944144': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'A673'}, 'GSM2689075': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689074': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689077': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689076': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689071': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689070': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689073': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689072': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689079': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689078': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1900339': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '1 uM PaPE', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1900338': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '1 uM PaPE', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1900337': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '1 uM PaPE', 'time': '24h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM2152359': {'line': 'HT29', 'transfection': 'PRDX2 siRNA'}, 'GSM1900335': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': 'Veh', 'time': '4h', 'line': 'MCF7', 'inhibitor': '1 uM AZD6422'}, 'GSM1900334': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': 'Veh', 'time': '4h', 'line': 'MCF7', 'inhibitor': '1 uM AZD6422'}, 'GSM1900333': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '10 nM E2', 'time': '4h', 'line': 'MCF7', 'inhibitor': '1 uM AZD6422'}, 'GSM1900332': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '10 nM E2', 'time': '4h', 'line': 'MCF7', 'inhibitor': '1 uM AZD6422'}, 'GSM1900331': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '1 uM PaPE', 'time': '4h', 'line': 'MCF7', 'inhibitor': '1 uM AZD6422'}, 'GSM2152358': {'line': 'HT29', 'transfection': 'Control siRNA'}, 'GSM3486127': {'line': 'HPAF-II', 'sampling': '44Y', 'type': 'Pancreatic ductal adenocarcinoma', 'Sex': 'Male'}, 'GSM3586668': {'origin': 'GCB', 'pfstt': '627', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1235', 'cycles': '8', 'oscs': '0'}, 'GSM1187397': {'age': '79', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T1bN0M0', 'Sex': 'male'}, 'GSM2492451': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2391918': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2391919': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2391914': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2391915': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM2391916': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM2391917': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2391910': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391911': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2391912': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2391913': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2183589': {'line': 'HepG2', 'treatment': 'none'}, 'GSM1608273': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608272': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608271': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608270': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608277': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608276': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608275': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608274': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608279': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608278': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1507262': {'resistant': 'No'}, 'GSM2471047': {'tissue': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM1507263': {'resistant': 'No'}, 'GSM955141': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM2471046': {'tissue': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM1507264': {'resistant': 'Yes'}, 'GSM1482910': {'with': 'si RNAs against control (scrambled)', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM1482911': {'with': 'si RNAs against control (scrambled)', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM1897297': {'line': 'HCC1419', 'type': 'breast cancer cell line'}, 'GSM1897296': {'line': 'HCC1395', 'type': 'breast cancer cell line'}, 'GSM1897295': {'line': 'HCC1187', 'type': 'breast cancer cell line'}, 'GSM1897294': {'line': 'HCC1143', 'type': 'breast cancer cell line'}, 'GSM1897293': {'line': 'HCC518', 'type': 'breast cancer cell line'}, 'GSM1897292': {'line': 'HBL51', 'type': 'breast cancer cell line'}, 'GSM1897291': {'line': 'EVSAT', 'type': 'breast cancer cell line'}, 'GSM1897290': {'line': 'EFM192A', 'type': 'breast cancer cell line'}, 'GSM2236644': {'line': 'HEK293', 'protocol': \"3'READS\", 'condition': 'knockdown control'}, 'GSM2236645': {'line': 'HEK293', 'protocol': \"3'READS\", 'condition': 'knockdown'}, 'GSM2236646': {'line': 'HEK293', 'protocol': \"3'READS\", 'condition': 'knockdown'}, 'GSM2236647': {'line': 'HEK293', 'protocol': \"3'READS\", 'condition': 'knockdown'}, 'GSM1897299': {'line': 'HCC1500', 'type': 'breast cancer cell line'}, 'GSM1897298': {'line': 'HCC1428', 'type': 'breast cancer cell line'}, 'GSM2471048': {'tissue': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2243590': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243591': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243592': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'H9', 'cluster': '5', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neuron', 'id': 'BT_S2'}, 'GSM2243593': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243594': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243595': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243596': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243597': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243598': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243599': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1507266': {'resistant': 'Yes'}, 'GSM2550406': {'donor': 'D', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'male'}, 'GSM1617361': {'patient': '9', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617360': {'patient': '8', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617363': {'patient': '1', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617362': {'patient': '10', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617365': {'patient': '3', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617364': {'patient': '2', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617367': {'patient': '5', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617366': {'patient': '4', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617369': {'patient': '7', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617368': {'patient': '6', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1507267': {'resistant': 'No'}, 'GSM2781409': {'line': 'KMB17', 'passages': '20-28', 'type': 'Human fetal lung tissue-derived fibroblast cells', 'infection': 'HSV-1 strain 17 (GenBank: NC_001806.2)'}, 'GSM2781408': {'line': 'KMB17', 'passages': '20-28', 'type': 'Human fetal lung tissue-derived fibroblast cells', 'infection': 'HSV-1 strain 17 (GenBank: NC_001806.2)'}, 'GSM2781407': {'line': 'KMB17', 'passages': '20-28', 'type': 'Human fetal lung tissue-derived fibroblast cells', 'infection': 'none'}, 'GSM2781406': {'line': 'KMB17', 'passages': '20-28', 'type': 'Human fetal lung tissue-derived fibroblast cells', 'infection': 'none'}, 'GSM2781405': {'line': 'KMB17', 'passages': '20-28', 'type': 'Human fetal lung tissue-derived fibroblast cells', 'infection': 'none'}, 'GSM1401783': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1901514': {'count': '1', 'ercc_mix': 'mix2', 'type': 'NA', 'ercc_dilution': '1000000', 'pass': 'FALSE'}, 'GSM1901515': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2243443': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2492453': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM1613598': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613599': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613596': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613597': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613594': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613595': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613592': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613593': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613590': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1613591': {'line': 'CRL2097', 'type': 'fixed cell'}, 'GSM1950233': {'line': 'PANC1', 'treatment': 'KMT2D siRNA2'}, 'GSM1872845': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1950230': {'line': 'PANC1', 'treatment': 'Control siRNA'}, 'GSM1950237': {'line': 'PANC1', 'treatment': 'KMT2C siRNA2'}, 'GSM2559738': {'differentiation': 'Poorly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P10', 'stage': 'A2(BCLC)'}, 'GSM2559739': {'differentiation': 'Poorly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P10', 'stage': 'A2(BCLC)'}, 'GSM2124710': {'origin': 'breast metastatic site in brain'}, 'GSM2124711': {'origin': 'breast metastatic site in brain'}, 'GSM2124712': {'origin': 'breast metastatic site in brain'}, 'GSM2124713': {'origin': 'breast tumor'}, 'GSM2124714': {'origin': 'breast tumor'}, 'GSM2124715': {'origin': 'breast tumor'}, 'GSM2124716': {'origin': 'breast (normal)'}, 'GSM2124717': {'origin': 'breast (normal)'}, 'GSM2184220': {'line': 'NB-1', 'type': 'neuroblastoma', 'agent': 'ceritinib'}, 'GSM2492336': {'line': 'HeLa', 'treatment': 'mock'}, 'GSM2492337': {'line': 'HeLa', 'treatment': 'mock'}, 'GSM2492338': {'line': 'HeLa', 'treatment': 'mock'}, 'GSM2492339': {'line': 'HeLa', 'treatment': 'CF25Im KD'}, 'GSM1965394': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965395': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965396': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965397': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965390': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965391': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965392': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965393': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965398': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965399': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1706707': {'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM2204223': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204222': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2204221': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2455589': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2204227': {'status': 'ex vivo; unstimulated', 'type': 'LN_Tfh', 'phenotype': 'Tfh(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1+CD57+)'}, 'GSM2204226': {'status': 'ex vivo; unstimulated', 'type': 'LN_nGC', 'phenotype': 'nonGCTfh(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1+CD57-)'}, 'GSM2204225': {'status': 'ex vivo; unstimulated', 'type': 'LN_CMPD1lo', 'phenotype': 'CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1-'}, 'GSM2204224': {'status': 'ex vivo; unstimulated', 'type': 'LN_N', 'phenotype': 'Naive(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO-)'}, 'GSM2455582': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455583': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455580': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2204228': {'status': 'ex vivo; unstimulated', 'type': 'LN_EM', 'phenotype': 'EM(CD3+CD20-CD14/CD11c-CD8-CD27-)'}, 'GSM2455586': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455587': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455584': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455585': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2274703': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32752', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9342', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C76', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9342', 'studysiteshort': 'UCSF'}, 'GSM1956175': {'a': '63443', 'cd38': '441', 'cd49f': '566', 'w': '65170', 'h': '63800', 'lin': '457', 'cd34': '7820', 'cd90': '3433', 'cd7': '641', 'cd10': '606', 'time': '21044', 'cd135': '3812', 'cd45ra': '2776'}, 'GSM1844653': {'line': 'LAPC9', 'tissue': 'prostate'}, 'GSM1844652': {'line': 'Du145', 'tissue': 'prostate'}, 'GSM1844651': {'line': 'Du145', 'tissue': 'prostate'}, 'GSM1844650': {'line': 'Du145', 'tissue': 'prostate'}, 'GSM1844655': {'line': 'LAPC9', 'tissue': 'prostate'}, 'GSM1844654': {'line': 'LAPC9', 'tissue': 'prostate'}, 'GSM2552863': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552862': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552861': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552860': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552867': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552866': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552865': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552864': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552869': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2552868': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM1557588': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM1557589': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM3576169': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM3576168': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM1557580': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM1557581': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM1557582': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM1557583': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM1557584': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM1557585': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM1557586': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM1557587': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM1896251': {'individual': 'EU74', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2393531': {'type': 'short RNA', 'line': 'HUVEC', 'replicate': '1', 'treatment': 'untreated'}, 'GSM2492590': {'status': 'healthy donor', 'with': '10ng/mL of LPS', 'type': 'primary human monocytes', 'id': 'Donor 1'}, 'GSM2492591': {'status': 'healthy donor', 'with': '10ng/mL of LPS', 'type': 'primary human monocytes', 'id': 'Donor 2'}, 'GSM2492592': {'status': 'healthy donor', 'with': '10ng/mL of LPS', 'type': 'primary human monocytes', 'id': 'Donor 3'}, 'GSM2492593': {'status': 'healthy donor', 'with': '10ng/mL of LPS', 'type': 'primary human monocytes', 'id': 'Donor 4'}, 'GSM1956179': {'a': '41768', 'cd38': '584', 'cd49f': '211', 'w': '64991', 'h': '42119', 'lin': '116', 'cd34': '5969', 'cd90': '1668', 'cd7': '378', 'cd10': '68413', 'time': '20112', 'cd135': '8221', 'cd45ra': '6883'}, 'GSM2108421': {'stages': 'myoblast nucleus'}, 'GSM1955899': {'a': '45009', 'cd38': '281', 'cd49f': '1182', 'w': '66298', 'h': '44491', 'lin': '766', 'cd34': '5241', 'cd90': '1500', 'cd7': '67', 'cd10': '2858', 'time': '3079', 'cd135': '10004', 'cd45ra': '2945'}, 'GSM2147698': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147699': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM1657145': {'differentiation': '15', 'treated': 'IFN-treated', 'stage': 'post differentiation hepatoblast'}, 'GSM2147692': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147693': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147690': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147691': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147696': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147697': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147694': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147695': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2316591': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316590': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316593': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316592': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316595': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316594': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316597': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316596': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316599': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316598': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2130423': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2130422': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2130421': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2130420': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2130424': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM1704630': {'line': 'MCF7', 'sirna': 'CEBPD', 'time': '48h after transfection'}, 'GSM2374408': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374407': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374406': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374405': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374404': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374403': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374402': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374401': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374400': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM1896252': {'individual': 'EU76', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2433098': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433099': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM1473772': {'origin': 'Skin', 'with': 'None', 'passages': '10-12', 'type': 'MDAH041 LFS fibroblasts', 'group': 'young cells'}, 'GSM1473770': {'origin': 'Skin', 'with': 'None', 'passages': '10-12', 'type': 'MDAH041 LFS fibroblasts', 'group': 'young cells'}, 'GSM3711255': {'mediancvcoverage': '0.641523', 'percentaligned': '0.939584429', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '6'}, 'GSM1473776': {'origin': 'Skin', 'with': 'None', 'passages': '17-19', 'type': 'MDAH041 LFS fibroblasts', 'group': 'aging cells'}, 'GSM1473774': {'origin': 'Skin', 'with': 'None', 'passages': '10-12', 'type': 'MDAH041 LFS fibroblasts', 'group': 'young cells'}, 'GSM1498119': {'type': 'Non-senescent cells', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM1473779': {'origin': 'Skin', 'with': 'None', 'passages': '17-19', 'type': 'MDAH041 LFS fibroblasts', 'group': 'aging cells'}, 'GSM2311811': {'culture': '0'}, 'GSM2311810': {'culture': '0'}, 'GSM2311813': {'culture': '0'}, 'GSM2311812': {'culture': '0'}, 'GSM2311815': {'culture': '0'}, 'GSM3711250': {'mediancvcoverage': '0.701948', 'percentaligned': '0.946130567', 'visit': 'Visit 0', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '13'}, 'GSM2311817': {'culture': '0'}, 'GSM2311816': {'culture': '0'}, 'GSM2311819': {'culture': '12', 'line': 'DCX+'}, 'GSM2287511': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287512': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM3711251': {'mediancvcoverage': '0.644268', 'percentaligned': '0.952968664', 'visit': 'Visit 1b', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '13'}, 'GSM2287514': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287515': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287516': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287517': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610950': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610951': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610952': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610953': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610954': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610955': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610956': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610957': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610958': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610959': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM3711258': {'mediancvcoverage': '0.653994', 'percentaligned': '0.920684244', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '10'}, 'GSM1957491': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2653511': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653510': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653513': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653512': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653515': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653514': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653517': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653516': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653519': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653518': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2458893': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.75'}, 'GSM2458892': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.58'}, 'GSM2458891': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.42'}, 'GSM2458890': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.08'}, 'GSM2458897': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.33'}, 'GSM2458896': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.25'}, 'GSM2458895': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '10.83'}, 'GSM2458894': {'complication': 'yes', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.83'}, 'GSM2458899': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.25'}, 'GSM2458898': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.08'}, 'GSM2027520': {'line': 'H7 derived'}, 'GSM2834983': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '2'}, 'GSM2834982': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '4'}, 'GSM2834981': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '12'}, 'GSM2834980': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '4'}, 'GSM2834987': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '11'}, 'GSM2834986': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '11'}, 'GSM2834985': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '3'}, 'GSM2834984': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '9'}, 'GSM2834989': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '3'}, 'GSM2834988': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '1'}, 'GSM1855992': {'passages': '3-7', 'antibody': 'anti-H3K27ac (ab4729)', 'variation': 'Control cells (vector control)'}, 'GSM1855993': {'passages': '3-7', 'antibody': 'anti-H3K27ac (ab4729)', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1855990': {'passages': '3-7', 'antibody': 'anti-H3K4me1 (ab8895)', 'variation': 'Ty1-TA1del expressed'}, 'GSM1855991': {'passages': '3-7', 'antibody': 'anti-H3K27ac (ab4729)', 'variation': 'Control cells (vector control)'}, 'GSM1855996': {'passages': '3-7', 'antibody': 'anti-H3K27ac (ab4729)', 'variation': 'Ty1-TA1del expressed'}, 'GSM1855997': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (vector control)'}, 'GSM1855994': {'passages': '3-7', 'antibody': 'anti-H3K27ac (ab4729)', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1855995': {'passages': '3-7', 'antibody': 'anti-H3K27ac (ab4729)', 'variation': 'Ty1-TA1del expressed'}, 'GSM1855998': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (vector control)'}, 'GSM1855999': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM2474914': {'duration': '60min', 'treatment': 'EGF'}, 'GSM2474915': {'duration': '60min', 'treatment': 'DEX'}, 'GSM2474916': {'duration': '60min', 'treatment': 'DEX'}, 'GSM2474917': {'duration': '0', 'treatment': 'untreated'}, 'GSM2474911': {'duration': '0', 'treatment': 'untreated'}, 'GSM2474912': {'duration': '0', 'treatment': 'untreated'}, 'GSM2474913': {'duration': '60min', 'treatment': 'EGF'}, 'GSM2474918': {'duration': '0', 'treatment': 'untreated'}, 'GSM2474919': {'duration': '60min', 'treatment': 'EGF'}, 'GSM1467409': {'line': 'HeLa'}, 'GSM2069828': {'status': 'Dead', 'rnaseq': 'unstranded', 'gender': 'F', 'mapki': 'N', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'Crown/scalp, SC', 'time': 'pre-treatment', 'id': 'Pt7', 'treatment': 'Pembrolizumab'}, 'GSM2069829': {'status': 'Alive', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'N', 'site': 'UCLA', 'response': 'Complete Response', 'tissue': 'Melanoma biopsies', 'location': 'R leg, SC', 'treatment': 'Pembrolizumab', 'id': 'Pt8', 'braf': 'V600R'}, 'GSM2093139': {'bin': '16', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093138': {'bin': '16', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': '20', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1467408': {'line': 'HeLa'}, 'GSM2093135': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093134': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093137': {'bin': '2', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093136': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093131': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': '14', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2026924': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q8NHY6'}, 'GSM2093133': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093132': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2026925': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q96NJ6'}, 'GSM2026922': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'B2RXF5'}, 'GSM2307084': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2100868': {'status': 'no', 'gender': 'male', 'age': '51', 'race': 'white'}, 'GSM2307087': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2100864': {'status': 'no', 'gender': 'male', 'age': '77', 'race': 'white'}, 'GSM2100865': {'status': 'no', 'gender': 'male', 'age': '79', 'race': 'white'}, 'GSM644996': {'line': 'NCCIT', 'type': 'embryonic carcinoma cells'}, 'GSM2026921': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9Y330'}, 'GSM2100860': {'status': 'yes', 'gender': 'female', 'age': '62', 'race': 'white'}, 'GSM2100861': {'status': 'no', 'gender': 'male', 'age': '45', 'race': 'white'}, 'GSM2100862': {'status': 'yes', 'gender': 'female', 'age': '76', 'race': 'white'}, 'GSM2100863': {'status': 'no', 'gender': 'male', 'age': '57', 'race': 'white'}, 'GSM2306851': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306850': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306852': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2152764': {'line': 'HeLa', 'treatment': 'control'}, 'GSM2152765': {'line': 'HeLa', 'treatment': 'Tetra-Pt(bpy)-treated'}, 'GSM2152766': {'line': 'U2OS', 'treatment': 'control'}, 'GSM2152767': {'line': 'U2OS', 'treatment': 'Tetra-Pt(bpy)-treated'}, 'GSM2026928': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q96NJ6'}, 'GSM2026929': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9NPA5'}, 'GSM2152768': {'transfection': 'T7-Acinus S* construct', 'antibody': 'T7 Tag antibody Agarose (Novagen, 69026)'}, 'GSM2152769': {'transfection': 'T7-Acinus S* construct', 'antibody': 'T7 Tag antibody Agarose (Novagen, 69026)'}, 'GSM2153495': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153494': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153497': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153496': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153491': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153490': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153493': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153492': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153499': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153498': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM1888630': {'set': 'isogenic', 'type': 'iPSC'}, 'GSM1570833': {'line': 'TREx BCBL1-Rta cells', 'antibody': 'anti-ORF57 (made in-house)', 'treatment': 'Lytic reactivation'}, 'GSM1570832': {'line': 'TREx BCBL1-Rta cells', 'antibody': 'anti-ORF57 (made in-house)', 'treatment': 'Lytic reactivation'}, 'GSM2581271': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161130B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2327806': {'line': 'SKMEL28DDR1', 'treatment': 'withdrawal for 24 hr'}, 'GSM2327805': {'line': 'SKMEL28DDR1', 'treatment': 'withdrawal for 6 hr'}, 'GSM2327804': {'line': 'SKMEL28DDR1', 'treatment': 'treated for 6 hr'}, 'GSM2327803': {'line': 'M249DDR5', 'treatment': 'withdrawal for 24 hr'}, 'GSM2327802': {'line': 'M249DDR5', 'treatment': 'withdrawal for 6 hr'}, 'GSM2327801': {'line': 'M249DDR5', 'treatment': 'treated for 6 hr'}, 'GSM1155152': {'tnm': 'T3N0M0', 'gender': 'M', 'age': '67', 'tissue': 'renal pelvis'}, 'GSM1395701': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1155159': {'tnm': 'T3N0M0', 'gender': 'F', 'age': '56', 'tissue': 'renal pelvis'}, 'GSM1155158': {'tnm': 'T3N0M0', 'gender': 'M', 'age': '57', 'tissue': 'renal pelvis'}, 'GSM2026927': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q96NJ6'}, 'GSM2211610': {'information': 'p53 WT, SET knocking-down', 'line': 'U2OS-derived cell line', 'replicates': '#3'}, 'GSM2211611': {'information': 'p53 KO', 'line': 'U2OS-derived cell line', 'replicates': '#1'}, 'GSM2211612': {'information': 'p53 KO', 'line': 'U2OS-derived cell line', 'replicates': '#2'}, 'GSM1821969': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM2643519': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '0.1% DMSO', 'time': '24 h'}, 'GSM2309508': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'TBBz', 'dose': '30 uM'}, 'GSM2309509': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'TBBz', 'dose': '30 uM'}, 'GSM2309502': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'PD 158780', 'dose': '10 uM'}, 'GSM2309503': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'PD 158780', 'dose': '10 uM'}, 'GSM2309500': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'JAK inhibitor 1', 'dose': '30 uM'}, 'GSM2309501': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'JAK inhibitor 1', 'dose': '30 uM'}, 'GSM2309506': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'SRPIN340', 'dose': '30 uM'}, 'GSM2309507': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'SRPIN340', 'dose': '30 uM'}, 'GSM2309504': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'PHA-665752', 'dose': '30 uM'}, 'GSM2309505': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'PHA-665752', 'dose': '30 uM'}, 'GSM1890602': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor2'}, 'GSM1435529': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'Fibroblast primary cell line'}, 'GSM1435528': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'Fibroblast primary cell line'}, 'GSM2643517': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '0.1% DMSO', 'time': '24 h'}, 'GSM1435521': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'lymphoblastic cell line'}, 'GSM1435520': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'lymphoblastic cell line'}, 'GSM1435523': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'lymphoblastic cell line'}, 'GSM1435522': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'lymphoblastic cell line'}, 'GSM1435525': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'lymphoblastic cell line'}, 'GSM1435524': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'lymphoblastic cell line'}, 'GSM1435527': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'lymphoblastic cell line'}, 'GSM2643511': {'line': 'GM15850 LCLs (FRDA)', 'treatment': '1000nM Syn-TEF1', 'time': '24 h'}, 'GSM987831': {'donor': 'pancreatic cancer patient 4', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM987830': {'donor': 'pancreatic cancer patient 3', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987833': {'donor': 'pancreatic cancer patient 6', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM987832': {'donor': 'pancreatic cancer patient 4', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987835': {'donor': 'pancreatic cancer patient 7', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM987834': {'donor': 'pancreatic cancer patient 6', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987837': {'donor': 'pancreatic cancer patient 9', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM987836': {'donor': 'pancreatic cancer patient 7', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM987839': {'donor': 'pancreatic cancer patient 11', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'EpCAM CTC-Chip'}, 'GSM987838': {'donor': 'pancreatic cancer patient 9', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM2643513': {'line': 'GM15851 LCLs (FRDA)', 'treatment': '1000nM Syn-TEF1', 'time': '24 h'}, 'GSM2475294': {'age': '63', 'tissue': 'Peripheral RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2475295': {'age': '63', 'tissue': 'Macular Retina', 'Sex': 'Male'}, 'GSM2475296': {'age': '63', 'tissue': 'Macular RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2475297': {'age': '62', 'tissue': 'Peripheral Retina', 'Sex': 'Male'}, 'GSM2475290': {'age': '62', 'tissue': 'Peripheral RPE/choroid/sclera', 'Sex': 'Female'}, 'GSM2475291': {'age': '62', 'tissue': 'Macular Retina', 'Sex': 'Female'}, 'GSM2475292': {'age': '62', 'tissue': 'Macular RPE/choroid/sclera', 'Sex': 'Female'}, 'GSM2475293': {'age': '63', 'tissue': 'Peripheral Retina', 'Sex': 'Male'}, 'GSM2316920': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316921': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316922': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316923': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2475298': {'age': '62', 'tissue': 'Peripheral RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2475299': {'age': '62', 'tissue': 'Macular Retina', 'Sex': 'Male'}, 'GSM2316926': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316927': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1620408': {'type': 'U87 human glioma cells'}, 'GSM1620409': {'type': 'U87 human glioma cells'}, 'GSM1620402': {'type': 'U87 human glioma cells'}, 'GSM1620403': {'type': 'U87 human glioma cells'}, 'GSM1620400': {'type': 'U87 human glioma cells'}, 'GSM2392587': {'treatment': 'Vehicle', 'genotype': 'Y537S'}, 'GSM1620406': {'type': 'U87 human glioma cells'}, 'GSM1620407': {'type': 'U87 human glioma cells'}, 'GSM1620404': {'type': 'U87 human glioma cells'}, 'GSM1620405': {'type': 'U87 human glioma cells'}, 'GSM2424964': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424965': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424966': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424967': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424960': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424961': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424962': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM3465592': {'type': 'Epidermal differentitation at Day 45', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiaiton at Day 45'}, 'GSM2424968': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424969': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2157640': {'function': 'GFP', 'line': 'Endo-beta-H1C', 'type': 'pancreatic beta-cell line', 'treatment': 'scrambled control'}, 'GSM2157641': {'function': 'GFP', 'line': 'Endo-beta-H1C', 'type': 'pancreatic beta-cell line', 'treatment': 'scrambled control'}, 'GSM2392584': {'treatment': 'Vehicle', 'genotype': 'Wild type'}, 'GSM2243445': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2451190': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2392585': {'treatment': 'Vehicle', 'genotype': 'Wild type'}, 'GSM1671930': {'type': 'Antigen presenting cells'}, 'GSM1671931': {'type': 'Antigen presenting cells'}, 'GSM1671932': {'type': 'Antigen presenting cells'}, 'GSM2877937': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877936': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2304828': {'used': 'ACGT, CATG', 'type': 'T lymphocyte', 'treatment': 'PHA', 'analysis': '29'}, 'GSM1671933': {'type': 'Antigen presenting cells'}, 'GSM2877933': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877932': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877931': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877930': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM1671934': {'type': 'Antigen presenting cells'}, 'GSM2304826': {'used': 'CGTA, GATC', 'type': 'T lymphocyte', 'treatment': 'input (DMSO)', 'analysis': '29'}, 'GSM2304827': {'used': 'CTGA, TGAC', 'type': 'T lymphocyte', 'treatment': 'input (DMSO)', 'analysis': '29'}, 'GSM2304824': {'used': 'CAGT, CGAT', 'type': 'T lymphocyte', 'treatment': 'input (DMSO)', 'analysis': '29'}, 'GSM1671935': {'type': 'Antigen presenting cells'}, 'GSM1671936': {'type': 'Antigen presenting cells'}, 'GSM1671937': {'type': 'Antigen presenting cells'}, 'GSM2451194': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2543825': {'library_id': 'lib7939', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543824': {'library_id': 'lib7938', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543827': {'library_id': 'lib7941', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': 'NA', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543826': {'library_id': 'lib7940', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': 'NA', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543821': {'library_id': 'lib7935', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543820': {'library_id': 'lib7934', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543823': {'library_id': 'lib7937', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.72', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543822': {'library_id': 'lib7936', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.72', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1897328': {'line': 'MDAMB361', 'type': 'breast cancer cell line'}, 'GSM2543829': {'library_id': 'lib7943', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543828': {'library_id': 'lib7942', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2451267': {'compartment': 'Epithelium', 'id': 'CUMC_005', 'library': 'NuGEN'}, 'GSM2451266': {'compartment': 'Stroma', 'id': 'CUMC_004', 'library': 'NuGEN'}, 'GSM2451265': {'compartment': 'Epithelium', 'id': 'CUMC_004', 'library': 'NuGEN'}, 'GSM2451264': {'compartment': 'Stroma', 'id': 'CUMC_003', 'library': 'NuGEN'}, 'GSM2451263': {'compartment': 'Epithelium', 'id': 'CUMC_003', 'library': 'NuGEN'}, 'GSM2451262': {'compartment': 'Stroma', 'id': 'CUMC_002', 'library': 'NuGEN'}, 'GSM2451261': {'compartment': 'Epithelium', 'id': 'CUMC_002', 'library': 'NuGEN'}, 'GSM2451260': {'compartment': 'Stroma', 'id': 'CUMC_011', 'library': 'NuGEN'}, 'GSM2437166': {'status': 'NGT', 'id': 'GD5'}, 'GSM2451269': {'compartment': 'Bulk', 'id': 'CUMC_013', 'library': 'TruSeq'}, 'GSM2451268': {'compartment': 'Bulk', 'id': 'CUMC_012', 'library': 'TruSeq'}, 'GSM2437167': {'status': 'GDM', 'id': 'GD6'}, 'GSM2437162': {'status': 'NGT', 'id': 'GD1'}, 'GSM3594299': {'cluster': '5', 'disease': 'Remission', 'batch': 'Apr4'}, 'GSM3594298': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594297': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594296': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594295': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1957235': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM3594293': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594292': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594291': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594290': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM2141719': {'individual': 'EU298', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1901301': {'treatment': 'VP55+dsRNA'}, 'GSM1901300': {'treatment': 'GFP+dsRNA'}, 'GSM1901302': {'treatment': 'VP55+dsRNA'}, 'GSM2141718': {'individual': 'EU298', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2718919': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2545892': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2545893': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2545890': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2545891': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2545896': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2807412': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2545894': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2545895': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2807419': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807418': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM1931519': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM1931518': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM1931517': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM1931516': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM1931515': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM1931514': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM1931513': {'tissue': 'blood', 'condition': 'METH-Associated Psychosis'}, 'GSM1931512': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1931511': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1931510': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1097787': {'subtype': 'A172-GBM, A431-epidermoid carcinoma, D538MG-anaplastic astrocytoma', 'line': 'A172, A431, D538MG'}, 'GSM1097789': {'subtype': 'CHL-1-melanoma, DKMG-GBM, JURKAT-TALL', 'line': 'CHL-1, DKMG, JURKAT'}, 'GSM1097788': {'subtype': 'SUPT7-TALL, ONS76-GBM, SH-4-melanoma', 'line': 'SUPT7, ONS76, SH-4'}, 'GSM1937911': {'status': 'Neg', 'gender': 'M', 'stage': 'IVa'}, 'GSM1937910': {'status': 'Neg', 'gender': 'F', 'stage': 'IVa'}, 'GSM1937913': {'status': 'Neg', 'gender': 'F', 'stage': 'IVa'}, 'GSM1937912': {'status': 'Neg', 'gender': 'F', 'stage': 'IVa'}, 'GSM1937915': {'status': 'Neg', 'gender': 'F', 'stage': 'IVb'}, 'GSM1937914': {'status': 'Neg', 'gender': 'F', 'stage': 'II'}, 'GSM1937917': {'status': 'Neg', 'gender': 'M', 'stage': 'IVb'}, 'GSM1937916': {'status': 'Neg', 'gender': 'F', 'stage': 'II'}, 'GSM1937919': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM2055348': {'state': 'adenocarcinoma', 'tissue': 'Prostate'}, 'GSM485418': {'line': 'NA19093'}, 'GSM485419': {'line': 'NA19172'}, 'GSM485412': {'line': 'NA19130'}, 'GSM485413': {'line': 'NA19238'}, 'GSM485410': {'line': 'NA18517'}, 'GSM485411': {'line': 'NA19128'}, 'GSM485416': {'line': 'NA18516'}, 'GSM485417': {'line': 'NA18522'}, 'GSM485414': {'line': 'NA19239'}, 'GSM485415': {'line': 'NA18504'}, 'GSM1523655': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523654': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523653': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523652': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523651': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523650': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM2087390': {'line': 'VU-1729', 'type': 'human oral cavity carcinoma cell line', 'variation': 'LDBI knockout'}, 'GSM2087392': {'line': 'VU-1729', 'type': 'human oral cavity carcinoma cell line', 'variation': 'LDBI knockout'}, 'GSM2087393': {'line': 'VU-1729', 'type': 'human oral cavity carcinoma cell line', 'variation': 'LDBI knockout'}, 'GSM2543936': {'library_id': 'lib8210', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.238', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3148586': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM3148587': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148585': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM3148588': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148589': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM2390968': {'disease': 'Multiple Sclerosis'}, 'GSM2390969': {'disease': 'Multiple Sclerosis'}, 'GSM2390962': {'disease': 'Multiple Sclerosis'}, 'GSM2390963': {'disease': 'Multiple Sclerosis'}, 'GSM2390960': {'disease': 'Multiple Sclerosis'}, 'GSM2390961': {'disease': 'Multiple Sclerosis'}, 'GSM2390966': {'disease': 'Multiple Sclerosis'}, 'GSM2390967': {'disease': 'Multiple Sclerosis'}, 'GSM2390964': {'disease': 'Multiple Sclerosis'}, 'GSM2390965': {'disease': 'Multiple Sclerosis'}, 'GSM2640641': {'line': 'A549', 'agent': 'hRSV NS1 L132A/L133A', 'infection': '96'}, 'GSM2640640': {'line': 'A549', 'agent': 'hRSV NS1 L132A/L133A', 'infection': '96'}, 'GSM2640643': {'line': 'A549', 'agent': 'hRSV NS1 Y125A', 'infection': '96'}, 'GSM2640642': {'line': 'A549', 'agent': 'hRSV NS1 Y125A', 'infection': '96'}, 'GSM2359149': {'stage': 'paired normal sample'}, 'GSM2359148': {'stage': 'Kidney-Grade III'}, 'GSM2027570': {'line': 'hCMEC/D3', 'type': 'Blood Brain Barrier cell line'}, 'GSM2027571': {'line': 'hCMEC/D3', 'type': 'Blood Brain Barrier cell line'}, 'GSM2088018': {'status': 'Dysplasia', 'ratio': '1.46514234602626', 'age': '57', 'years': '37', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '57728088', 'alignment': '35243331'}, 'GSM2088019': {'status': 'Normal', 'ratio': '1.28105109904213', 'age': '63', 'years': '46', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Male', 'alignments': '64528966', 'alignment': '39666680'}, 'GSM2088016': {'status': 'Dysplasia', 'ratio': '1.45509539879331', 'age': '70', 'years': '54', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '56402966', 'alignment': '34916301'}, 'GSM2088017': {'status': 'Normal', 'ratio': '1.06695071801764', 'age': '66', 'years': '26.25', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '64993720', 'alignment': '39933153'}, 'GSM2088014': {'status': 'Normal', 'ratio': '1.4213210484422', 'age': '54', 'years': '41', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Female', 'alignments': '59877542', 'alignment': '37133510'}, 'GSM2088015': {'status': 'Dysplasia', 'ratio': '1.21185633850039', 'age': '66', 'years': '57', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '74706984', 'alignment': '46018833'}, 'GSM2088012': {'status': 'Dysplasia', 'ratio': '1.31135669721003', 'age': '68', 'years': '42.5', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '57617554', 'alignment': '35754032'}, 'GSM2088013': {'status': 'Normal', 'ratio': '1.11885915031614', 'age': '58', 'years': '35', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Female', 'alignments': '62876502', 'alignment': '38969129'}, 'GSM2088010': {'status': 'Dysplasia', 'ratio': '1.17613399332945', 'age': '71', 'years': '30', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '77237204', 'alignment': '47491460'}, 'GSM2088011': {'status': 'Dysplasia', 'ratio': '1.37762051398475', 'age': '70', 'years': '51', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '67190918', 'alignment': '40981086'}, 'GSM2374177': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM938895': {'rnaseq': 'Directional', 'line': 'GM12750', 'experiment': 'cDNAdirectional', 'type': 'B-cells', 'treatment': 'siRNA knockdown of ADAR1'}, 'GSM2374175': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374174': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2585368': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585369': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2374171': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM938894': {'rnaseq': 'Directional', 'line': 'GM12004', 'experiment': 'cDNAdirectional', 'type': 'B-cells', 'treatment': 'no'}, 'GSM2585364': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585365': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585366': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585367': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM938897': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'cDNA-NTC-siRNA', 'type': 'B-cells', 'treatment': 'non-targeting control siRNA'}, 'GSM2374179': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2585363': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM938896': {'rnaseq': 'Directional', 'line': 'GM12750', 'experiment': 'cDNAdirectional', 'type': 'B-cells', 'treatment': 'non-targeting control siRNA'}, 'GSM1256818': {'marker': 'CD33+ within granulocyte gate', 'tissue': 'peripheral blood', 'type': 'Granulocytes'}, 'GSM1256819': {'marker': 'CD33+ within granulocyte gate', 'tissue': 'peripheral blood', 'type': 'Granulocytes'}, 'GSM1256814': {'marker': 'CD19+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'B-cells'}, 'GSM938891': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'cDNAbaseline', 'type': 'B-cells', 'treatment': 'no'}, 'GSM1256816': {'marker': 'CD19+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'B-cells'}, 'GSM1256817': {'marker': 'CD33+ within granulocyte gate', 'tissue': 'peripheral blood', 'type': 'Granulocytes'}, 'GSM1256810': {'marker': 'unsorted', 'tissue': 'peripheral blood', 'type': 'Total white blood cells'}, 'GSM1256811': {'marker': 'unsorted', 'tissue': 'peripheral blood', 'type': 'Total white blood cells'}, 'GSM1256812': {'marker': 'CD19+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'B-cells'}, 'GSM1256813': {'marker': 'CD19+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'B-cells'}, 'GSM938893': {'rnaseq': 'Directional', 'line': 'GM12750', 'experiment': 'cDNAdirectional', 'type': 'B-cells', 'treatment': 'no'}, 'GSM938892': {'rnaseq': 'Non-directional', 'line': 'GM12004', 'experiment': 'cDNAbaseline', 'type': 'B-cells', 'treatment': 'no'}, 'GSM1832661': {'line': 'ZR-75-30', 'antibody': 'none', 'genotype': 'RACK7 knockout'}, 'GSM1933343': {'line': 'Hep-G2', 'shRNA': 'SHC002', 'type': 'Human hepatoma derived cell line', 'passage': '21'}, 'GSM1933344': {'line': 'Hep-G2', 'shRNA': 'TRCN0000255402', 'type': 'Human hepatoma derived cell line', 'passage': '21'}, 'GSM1933345': {'line': 'Hep-G2', 'shRNA': 'TRCN0000246247', 'type': 'Human hepatoma derived cell line', 'passage': '21'}, 'GSM2135484': {'type': 'ATF2', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'ATF2 (C-terminus)'}, 'GSM2135482': {'type': 'CAGE', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Not applicable'}, 'GSM2135483': {'type': 'ATF2', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Input'}, 'GSM2135480': {'type': 'CAGE', 'replicate': 'Not applicable', 'treatment': 'IL10', 'target': 'Not applicable'}, 'GSM2135481': {'type': 'CAGE', 'replicate': 'Not applicable', 'treatment': 'CNT', 'target': 'Not applicable'}, 'GSM2287060': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287061': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287062': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287063': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287064': {'gender': 'male', 'type': 'Pooled'}, 'GSM2287065': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287066': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287067': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287068': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287069': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2571086': {'line': 'IER5_enhancer_KO#2', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1087849': {'wavelength': '4-SU / 365 nm', 'protein': 'LIN28B', 'antibody': 'Flag M2'}, 'GSM1087848': {'wavelength': '4-SU / 365 nm', 'protein': 'LIN28A', 'antibody': 'Flag M2'}, 'GSM2536957': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'wild type'}, 'GSM2571087': {'line': 'IER5_enhancer_KO#2', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2307011': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2536956': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'DNMT3A mutated'}, 'GSM2665771': {'age': 'Day 100', 'well': 'A4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2451045': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2325853': {'type': 'Differentiated embryonic stem cell'}, 'GSM1897312': {'line': 'HCC712', 'type': 'breast cancer cell line'}, 'GSM1897313': {'line': 'HDQP1', 'type': 'breast cancer cell line'}, 'GSM1897310': {'line': 'HCC38', 'type': 'breast cancer cell line'}, 'GSM1897311': {'line': 'HCC70', 'type': 'breast cancer cell line'}, 'GSM1897316': {'line': 'KPL1', 'type': 'breast cancer cell line'}, 'GSM1897317': {'line': 'LY2', 'type': 'breast cancer cell line'}, 'GSM1897314': {'line': 'HS578T', 'type': 'breast cancer cell line'}, 'GSM1897315': {'line': 'JIMT1', 'type': 'breast cancer cell line'}, 'GSM1897318': {'line': 'MACLS2', 'type': 'breast cancer cell line'}, 'GSM1897319': {'line': 'MB157', 'type': 'breast cancer cell line'}, 'GSM1647058': {'illumina_index': '12', 'point': '18', 'batch': '9', 'agent': 'none', 'rin': '8.4', 'individual': 'M372'}, 'GSM1647059': {'illumina_index': '13', 'point': '48', 'batch': '9', 'agent': 'Salm', 'rin': '9', 'individual': 'M374'}, 'GSM1647056': {'illumina_index': '6', 'point': '48', 'batch': '9', 'agent': 'Rv+', 'rin': '3.9', 'individual': 'M375'}, 'GSM1554578': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554579': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1647057': {'illumina_index': '7', 'point': '4', 'batch': '9', 'agent': 'Staph', 'rin': '9.4', 'individual': 'M372'}, 'GSM1554577': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1647054': {'illumina_index': '4', 'point': '48', 'batch': '9', 'agent': 'Salm', 'rin': '9.4', 'individual': 'M376'}, 'GSM3580285': {'phase': 'HCV', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HCV'}, 'GSM3580284': {'phase': 'HCV', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HCV'}, 'GSM3580287': {'phase': 'HCV', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HCV'}, 'GSM1647055': {'illumina_index': '5', 'point': '4', 'batch': '9', 'agent': 'BCG', 'rin': '7.3', 'individual': 'M374'}, 'GSM3580281': {'phase': 'HBeAg- Hepatitis', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580280': {'phase': 'HBeAg- Hepatitis', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580283': {'phase': 'HBeAg- Hepatitis', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580282': {'phase': 'HBeAg- Hepatitis', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM2348567': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1647052': {'illumina_index': '19', 'point': '48', 'batch': '8', 'agent': 'none', 'rin': '4.6', 'individual': 'M373'}, 'GSM3580289': {'phase': 'HCV', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HCV'}, 'GSM1838920': {'replicate': 'Replicate 1', 'line': 'U2OS', 'with': 'HAT mutant BRD4'}, 'GSM1647053': {'illumina_index': '2', 'point': '4', 'batch': '9', 'agent': 'Staph', 'rin': '7', 'individual': 'M376'}, 'GSM2782548': {'genotype': 'WT', 'treatment_time': 'GSK3i for 24h, Wnt inhibitor for 48h', 'treatment': 'GSK3i+Wnt/β-catenin inhibitor'}, 'GSM1647050': {'illumina_index': '16', 'point': '18', 'batch': '8', 'agent': 'Staph', 'rin': '3.1', 'individual': 'M374'}, 'GSM3508660': {'group': 'Active', 'age': '7', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM2932901': {'pucai': '75', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '13'}, 'GSM2544045': {'library_id': 'lib8363', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2348566': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2544042': {'library_id': 'lib8358', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2479739': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2544043': {'library_id': 'lib8359', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2348564': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348563': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2390754': {'disease': 'Healthy Control'}, 'GSM2170588': {'stage': 'Hepatic endoderm 1'}, 'GSM2170589': {'stage': 'Hepatic endoderm 1'}, 'GSM2170584': {'stage': 'Hepatic endoderm 1'}, 'GSM2170585': {'stage': 'Hepatic endoderm 1'}, 'GSM2170586': {'stage': 'Hepatic endoderm 1'}, 'GSM2170587': {'stage': 'Hepatic endoderm 1'}, 'GSM2170580': {'stage': 'Endothelial cells'}, 'GSM2170581': {'stage': 'Endothelial cells'}, 'GSM2170582': {'stage': 'Endothelial cells'}, 'GSM2170583': {'stage': 'Hepatic endoderm 1'}, 'GSM1613616': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2595247': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '79'}, 'GSM3594545': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2602088': {'shRNA': 'METTL3 shRNA #12', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM1965053': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965052': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965051': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965050': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965057': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965056': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965055': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965054': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965059': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965058': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2391952': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391953': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1960713': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'CRISPR sgRNA for Enhancer3507_Hit3'}, 'GSM1960712': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'CRISPR sgRNA for Enhancer3507_Hit2'}, 'GSM1960711': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'CRISPR sgRNA for Enhancer3507_Hit1'}, 'GSM1960710': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'control CRISPR-Cas9 sgRNA'}, 'GSM1960716': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'CRISPR sgRNA p21enhancer_Tiling_Hit147'}, 'GSM1960715': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'CRISPR sgRNA p21enhancer_Tiling_Hit38'}, 'GSM1960714': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'CRISPR sgRNA p21enhancer_Tiling_Hit4'}, 'GSM2882963': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject1', 'drug': 'Placebo'}, 'GSM2451043': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2262821': {'tissue': 'pancreas'}, 'GSM2262820': {'tissue': 'pancreas'}, 'GSM2262823': {'tissue': 'pancreas'}, 'GSM2262822': {'tissue': 'pancreas'}, 'GSM2339840': {'tissue': 'Skeletal Muscle', 'individual': '13', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339841': {'tissue': 'Skeletal Muscle', 'individual': '13', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339842': {'tissue': 'Skeletal Muscle', 'individual': '14', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339843': {'tissue': 'Skeletal Muscle', 'individual': '14', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339844': {'tissue': 'Skeletal Muscle', 'individual': '15', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339845': {'tissue': 'Skeletal Muscle', 'individual': '15', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339846': {'tissue': 'Skeletal Muscle', 'individual': '16', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339847': {'tissue': 'Skeletal Muscle', 'individual': '16', 'treatment': 'control', 'time': 'Basal'}, 'GSM2339848': {'type': 'peripheral neurons', 'infection': 'mock'}, 'GSM2339849': {'type': 'peripheral neurons', 'infection': 'mock'}, 'GSM1613613': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2142479': {'gender': 'male', 'age': '77', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2142478': {'gender': 'female', 'age': '56', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '4', 'smoking': '1'}, 'GSM2142471': {'gender': 'female', 'age': '66', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142470': {'gender': 'male', 'age': '71', 'who': '1', 'dead': '1', 'date': '2007-05-27', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2142473': {'gender': 'female', 'age': '70', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142472': {'gender': 'female', 'age': '71', 'who': '0', 'dead': '1', 'date': '2011-09-13', 'histology': '3', 'tnm': '3', 'smoking': '1'}, 'GSM2142475': {'gender': 'female', 'age': '64', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142474': {'gender': 'male', 'age': '65', 'who': '1', 'dead': '1', 'date': '2007-06-26', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2142477': {'gender': 'male', 'age': '58', 'who': '0', 'dead': '1', 'date': '2009-02-20', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142476': {'gender': 'female', 'age': '61', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '3', 'smoking': '1'}, 'GSM2458758': {'induction': '1h before harvesting', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'labeled RNA (eluate)'}, 'GSM2108495': {'stages': 'myotube nucleus'}, 'GSM2458755': {'induction': 'none', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'labeled RNA (eluate)'}, 'GSM2458756': {'induction': 'none', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'labeled RNA (eluate)'}, 'GSM2458757': {'induction': '1h before harvesting', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'labeled RNA (eluate)'}, 'GSM2433977': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433976': {'origin': 'Bladder', 'line': 'RT112 urothelial carcinoma cell line', 'conditions': 'resistant to BGJ398', 'treatment': 'BGJ398', 'dose': '5um'}, 'GSM2433975': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433974': {'origin': 'Lung', 'line': 'DMS114 small cell lung cancer cell line', 'conditions': 'resistant to BGJ398', 'treatment': 'BGJ398', 'dose': '3um'}, 'GSM2433973': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433972': {'origin': 'Bladder', 'line': 'RT112 urothelial carcinoma cell line', 'conditions': 'parental', 'treatment': 'control'}, 'GSM2433971': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433970': {'origin': 'Lung', 'line': 'DMS114 small cell lung cancer cell line', 'conditions': 'parental', 'treatment': 'control'}, 'GSM2433979': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433978': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2575309': {'line': 'WM989', 'subclone': 'E2', 'condition': 'Drug'}, 'GSM2575308': {'line': 'WM989', 'subclone': 'C3', 'condition': 'NoDrug'}, 'GSM2091014': {'treatmemt': 'untreated', 'type': 'Akata cells'}, 'GSM2091015': {'treatmemt': 'DNAse', 'type': 'Akata cells'}, 'GSM1267845': {'subtype': 'Stau2 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau2-Mutant (65KDa Isoform)'}, 'GSM2091012': {'treatmemt': 'untreated', 'type': 'Akata cells'}, 'GSM2091013': {'treatmemt': 'DNAse', 'type': 'Akata cells'}, 'GSM1914558': {'type': 'cerebral organoid'}, 'GSM1914559': {'type': 'cerebral organoid'}, 'GSM1544131': {'line': 'HMLER', 'treatment': 'siMBD2'}, 'GSM1544130': {'line': 'HMLER', 'treatment': 'siControl'}, 'GSM1544132': {'line': 'HMLER', 'treatment': 'siMBD2'}, 'GSM1914556': {'type': 'cerebral organoid'}, 'GSM1914557': {'type': 'cerebral organoid'}, 'GSM3190808': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C51', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.749701'}, 'GSM3190809': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C25', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.399912'}, 'GSM3190802': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.985546'}, 'GSM3190803': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.237553'}, 'GSM3190800': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.67627'}, 'GSM3190801': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.006538'}, 'GSM3190806': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C49', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.551528'}, 'GSM3190807': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C51', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.746747'}, 'GSM3190804': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.963422'}, 'GSM3190805': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'Yes', 'visit': 'RV-C49', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'M', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', '4': 'No', '2': 'No', 'years': '13', 'libcounts': '4.764701', 'event': 'Case', '229e': 'No', 'nl63': 'No'}, 'GSM2299849': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299848': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299841': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299840': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299843': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299842': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299845': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299844': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299847': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299846': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2048737': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2172147': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2575305': {'line': 'WM989', 'subclone': 'C2', 'condition': 'Drug'}, 'GSM1908513': {'line': 'MRC5', 'treatment': 'Tetra-Pt(bpy)-treated'}, 'GSM1908512': {'line': 'MRC5', 'treatment': 'control'}, 'GSM2815942': {'line': 'H9'}, 'GSM2815943': {'line': 'H9'}, 'GSM2815940': {'line': 'H9'}, 'GSM2815941': {'line': 'H9'}, 'GSM2815946': {'line': 'H9'}, 'GSM2815947': {'line': 'H9'}, 'GSM2815944': {'line': 'H9'}, 'GSM2815945': {'line': 'H9'}, 'GSM2048733': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2815948': {'line': 'H9'}, 'GSM2815949': {'line': 'H9'}, 'GSM2048732': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048731': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048730': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM1467829': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467828': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467827': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467826': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467825': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467824': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467823': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467822': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467821': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467820': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM2549780': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'unlabeled RNA (flowthrough)', 'barcode': 'GTGAAAC', 'infection': 'Infected 15h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2754514': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0293', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2311998': {'culture': '12', 'line': 'DCX+'}, 'GSM2311999': {'culture': '12', 'line': 'DCX+'}, 'GSM2602082': {'shRNA': 'Control shRNA', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2311994': {'culture': '12', 'line': 'DCX+'}, 'GSM2311995': {'culture': '12', 'line': 'DCX+'}, 'GSM2311996': {'culture': '12', 'line': 'DCX+'}, 'GSM2311997': {'culture': '12', 'line': 'DCX+'}, 'GSM2311990': {'culture': '12', 'line': 'DCX+'}, 'GSM2311991': {'culture': '12', 'line': 'DCX+'}, 'GSM2311992': {'culture': '12', 'line': 'DCX+'}, 'GSM2311993': {'culture': '12', 'line': 'DCX+'}, 'GSM2532894': {'condition': 'Term Delivery'}, 'GSM2532895': {'condition': 'Term Delivery'}, 'GSM2532896': {'condition': 'Term Delivery'}, 'GSM2532897': {'condition': 'Term Delivery'}, 'GSM2532893': {'condition': 'Term Delivery'}, 'GSM2532898': {'condition': 'Term Delivery'}, 'GSM2532899': {'condition': 'Term Delivery'}, 'GSM2562569': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562568': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2304934': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '16h'}, 'GSM1957465': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1482489': {'with': '1 uM MG132', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM2562561': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562560': {'gender': 'female', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562563': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562562': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562565': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562564': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562567': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562566': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2544244': {'antibody': 'anti-CTCF (Millipore 07-729)', 'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2653498': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653499': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2544245': {'antibody': 'anti-CTCF (Millipore 07-729)', 'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2653494': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653495': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653496': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653497': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653490': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM3594714': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM2653492': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653493': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM3594715': {'cluster': '4', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594712': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM1964948': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM3594713': {'cluster': '7', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM1581091': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581090': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581093': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581092': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581095': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581094': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581097': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581096': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581099': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581098': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM2544243': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2649118': {'fusion': 'SID4x-dCas9-KRAB', 'tissue': 'Ishikawa endometrial cancer', 'transfected': 'pool of 42 gRNAs targeting 10 ERBS', 'treatment': 'control'}, 'GSM1482483': {'with': '0.5uM Reversine', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM2194588': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194589': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194586': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194587': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194584': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194585': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194582': {'type': 'delta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194583': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194580': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194581': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2533765': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533764': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533767': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533766': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533761': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533760': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533763': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533762': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533769': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533768': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM644989': {'vendor': 'Millipore', 'antibody': 'anti-H2BUb', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells', 'number': '17-650'}, 'GSM644988': {'line': 'NCCIT', 'type': 'embryonic carcinoma cells'}, 'GSM1495936': {'line': 'SF210', 'vector': 'KLHL9', 'induction': 'doxycycline'}, 'GSM644987': {'antibody': 'IgG', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells'}, 'GSM2448984': {'line': 'HMEC-1', 'construct': 'Set7 knock-down'}, 'GSM2448985': {'line': 'HMEC-1', 'construct': 'Non-targeting control'}, 'GSM2581267': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161027', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2581266': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581261': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581260': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2448982': {'line': 'HMEC-1', 'construct': 'Set7 knock-down'}, 'GSM2448983': {'line': 'HMEC-1', 'construct': 'Set7 knock-down'}, 'GSM2044419': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2448988': {'line': 'HMEC-1', 'drug': 'vehicle control (DMSO)'}, 'GSM2448989': {'line': 'HMEC-1', 'drug': 'vehicle control (DMSO)'}, 'GSM1598023': {'vendor': 'Abcam', 'tissue': 'fetal brain', 'antibody': 'H3K4me1', 'stage': '12 weeks after gestation'}, 'GSM2543779': {'library_id': 'lib5923', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.123', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543778': {'library_id': 'lib5922', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.123', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543771': {'library_id': 'lib5915', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543770': {'library_id': 'lib5914', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543773': {'library_id': 'lib5917', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543772': {'library_id': 'lib5916', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543775': {'library_id': 'lib5919', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.128', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543774': {'library_id': 'lib5918', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.128', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543777': {'library_id': 'lib5921', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.123', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543776': {'library_id': 'lib5920', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.123', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1876263': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Caput', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-05'}, 'GSM1598020': {'vendor': 'CST', 'tissue': 'fetal brain', 'antibody': 'H3K27me3', 'stage': '12 weeks after gestation'}, 'GSM2741771': {'sirna': 'none', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM2042810': {'type': 'human colon carcinoma cell line', 'treatment': 'Vitamin C'}, 'GSM2042811': {'type': 'human colon carcinoma cell line', 'treatment': '5-Aza-CdR'}, 'GSM2042812': {'type': 'human colon carcinoma cell line', 'treatment': 'Combination'}, 'GSM2741770': {'sirna': 'none', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'none'}, 'GSM1495938': {'line': 'SF210', 'vector': 'KLHL9', 'induction': 'doxycycline'}, 'GSM1495939': {'line': 'SF210', 'vector': 'KLHL9', 'induction': 'no doxycycline'}, 'GSM1905826': {'line': 'THP1', 'antibody': 'Pol II (ser-5p) (Abcam, ab5131)', 'variation': 'wild type (control)'}, 'GSM1905827': {'line': 'THP1', 'antibody': 'Pol II (ser-5p) (Abcam, ab5131)', 'variation': 'PAF1 knockdown'}, 'GSM1598021': {'tissue': 'fetal brain', 'antibody': 'H3K27me3 (CST, #9733)', 'stage': '12 weeks after gestation'}, 'GSM2741774': {'sirna': 'none', 'line': 'HCT116', 'tissue': 'Human colon cancer cell line HCT116', 'antibody': 'none'}, 'GSM1358002': {'tissue': 'cortical ischemic stroke tissue'}, 'GSM1358003': {'tissue': 'cortical ischemic stroke tissue'}, 'GSM2730438': {'age': '42', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'White', 'Sex': 'M'}, 'GSM2730439': {'age': '36', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'Black', 'Sex': 'F'}, 'GSM1358006': {'tissue': 'cortical ischemic stroke tissue'}, 'GSM1358004': {'tissue': 'healthy cortex'}, 'GSM1358005': {'tissue': 'cortical ischemic stroke tissue'}, 'GSM2730432': {'age': '35', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'Black', 'Sex': 'F'}, 'GSM2730433': {'age': '40', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'White', 'Sex': 'M'}, 'GSM2730430': {'age': '48', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2730431': {'age': '55', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2730436': {'age': '57', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2730437': {'age': '47', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2730434': {'age': '45', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2730435': {'age': '27', 'type': 'Neutrophil', 'disease': 'primary antiphospholipid syndrome', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2741779': {'sirna': 'none', 'line': 'HEK293T', 'tissue': 'Human kidney cancer cell line HEK293T', 'antibody': 'none'}, 'GSM2741778': {'sirna': 'none', 'line': 'HEK293T', 'tissue': 'Human kidney cancer cell line HEK293T', 'antibody': 'none'}, 'GSM3595458': {'donor': 'B', 'region': 'Prefrontal cortex', 'age': '64'}, 'GSM2779261': {'line': 'M397', 'type': 'none', 'treatment': 'none'}, 'GSM3595459': {'donor': 'B', 'region': 'Visual cortex', 'age': '64'}, 'GSM1431879': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '12h, ZNA, 30 uM'}, 'GSM1431878': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '12h, DMSO'}, 'GSM1431877': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '12h, DMSO'}, 'GSM1431876': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '12h, DMSO'}, 'GSM1431875': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '3h, ZNA, 30 uM'}, 'GSM1431874': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '3h, ZNA, 30 uM'}, 'GSM1431873': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '3h, ZNA, 30 uM'}, 'GSM1431872': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '3h, DMSO'}, 'GSM1431871': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '3h, DMSO'}, 'GSM1431870': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '3h, DMSO'}, 'GSM3189329': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.629313', 'percentaligned': '0.960554374', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.229044', 'original': 'Case'}, 'GSM3189328': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.684496', 'percentaligned': '0.954173632', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.260085', 'original': 'Control'}, 'GSM1228228': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM1228229': {'tissue': 'metastatic colorectal cancer to the liver', 'stage': 'Stage IV'}, 'GSM3189325': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.198603', 'percentaligned': '0.792291652', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.27923', 'original': 'Case'}, 'GSM3189324': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '30', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.605058', 'percentaligned': '0.906043243', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.757035'}, 'GSM3189327': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '73', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.58358', 'percentaligned': '0.919623104', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.117587', 'original': 'Control'}, 'GSM3189326': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.661829', 'percentaligned': '0.951006731', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.610985', 'original': 'Case'}, 'GSM3189321': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C48', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.591693', 'percentaligned': '0.948610873', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.319688'}, 'GSM3189320': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '15', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.563582', 'percentaligned': '0.952394', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.412005', 'original': 'Case'}, 'GSM3189323': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.555515', 'percentaligned': '0.933494917', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.876008'}, 'GSM3189322': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '40', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.551077', 'percentaligned': '0.950460328', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.3691'}, 'GSM1982296': {'type': 'CD8a+ re-iNKT', 'synthesis': 'SMARTer Ultra Low Input RNA for Illumina Sequencing-HV kit (Clontech)'}, 'GSM1982297': {'type': 'CD8a- re-iNKT', 'synthesis': 'SMARTer Ultra Low Input RNA for Illumina Sequencing-HV kit (Clontech)'}, 'GSM1982294': {'type': 'CD8 T', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982295': {'type': 'CD4 T', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982292': {'type': 'CD8 T', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982293': {'type': 'NK', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982290': {'type': 'expanded CD4+ iNKT', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982291': {'type': 'expanded re-iNKT', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM1982298': {'type': 'iNKT', 'synthesis': 'SMARTer Ultra Low Input RNA for Illumina Sequencing-HV kit (Clontech)'}, 'GSM1982299': {'type': 'iNKT', 'synthesis': 'SMARTer Ultra Low Input RNA for Illumina Sequencing-HV kit (Clontech)'}, 'GSM1646991': {'illumina_index': '18', 'point': '18', 'batch': '3', 'agent': 'Smeg', 'rin': '8.1', 'individual': 'M372'}, 'GSM1423445': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM1423444': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM1423447': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM1423446': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423441': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM1423440': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423443': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423442': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM2028920': {'concentration': 'N/A', 'treatment': 'DMSO'}, 'GSM2028921': {'concentration': 'N/A', 'treatment': 'DMSO'}, 'GSM2028922': {'concentration': 'N/A', 'treatment': 'DMSO'}, 'GSM2028923': {'concentration': '10nM', 'treatment': 'TCDD'}, 'GSM1423449': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423448': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM2028926': {'concentration': '10nM', 'treatment': 'TCDD'}, 'GSM1681901': {'tissue': 'Normal adjacent lung tissue', 'type': 'immature monocytic myeloid cells (IMMCs)'}, 'GSM1808068': {'tissue': 'LCLs'}, 'GSM1808069': {'tissue': 'LCLs'}, 'GSM1808064': {'tissue': 'Adipose'}, 'GSM1808065': {'tissue': 'Adipose'}, 'GSM1808066': {'tissue': 'Adipose'}, 'GSM1808067': {'tissue': 'LCLs'}, 'GSM1808060': {'tissue': 'Adipose'}, 'GSM1808061': {'tissue': 'Adipose'}, 'GSM1808062': {'tissue': 'Adipose'}, 'GSM1808063': {'tissue': 'Adipose'}, 'GSM1533212': {'treatment': 'no DOX'}, 'GSM2413422': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1681908': {'tissue': 'Normal adjacent lung tissue', 'type': 'epithelial cells (Epi)'}, 'GSM1681909': {'tissue': 'Normal adjacent lung tissue', 'type': 'epithelial cells (Epi)'}, 'GSM1533216': {'treatment': 'DOX days 0-5'}, 'GSM1533217': {'treatment': 'DOX days 0-5'}, 'GSM2676820': {'treatment': 'JQ1'}, 'GSM2676821': {'treatment': 'DMSO'}, 'GSM2676822': {'treatment': 'JQ1'}, 'GSM2676823': {'genotype': 'control'}, 'GSM2676824': {'genotype': 'long_BRD4_KD'}, 'GSM2676825': {'genotype': 'short_BRD4_KD'}, 'GSM2676826': {'genotype': 'both_BRD4_KD'}, 'GSM2676827': {'genotype': 'control'}, 'GSM2676828': {'genotype': 'long_BRD4_KD'}, 'GSM2676829': {'genotype': 'short_BRD4_KD'}, 'GSM1533215': {'treatment': 'DOX days 0-2'}, 'GSM2360164': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing G-actin and SRF binding deficient (Y305A) MRTFB mutant'}, 'GSM1945888': {'line': 'HCT116', 'transfection': 'siUXT'}, 'GSM1945886': {'line': 'HCT116', 'transfection': 'siEZH1'}, 'GSM1945887': {'line': 'HCT116', 'transfection': 'siUXT'}, 'GSM1945884': {'line': 'HCT116'}, 'GSM1945885': {'line': 'HCT116', 'transfection': 'siEZH1'}, 'GSM1945882': {'line': 'HCT116', 'antibody': 'H3K27me3', 'transfection': 'siUXT'}, 'GSM1945883': {'line': 'HCT116'}, 'GSM1945880': {'line': 'HCT116', 'antibody': 'H3K27me1', 'transfection': 'siUXT'}, 'GSM1945881': {'line': 'HCT116', 'antibody': 'H3K27me2', 'transfection': 'siUXT'}, 'GSM1006509': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-prednisolon', 'subject': 'A5'}, 'GSM1698481': {'line': 'HEK293T', 'fraction': 'Two ribosomes'}, 'GSM1698480': {'line': 'HEK293T', 'fraction': 'Monosome (80S)'}, 'GSM1698483': {'line': 'HEK293T', 'fraction': 'Four ribosomes'}, 'GSM1698482': {'line': 'HEK293T', 'fraction': 'Three ribosomes'}, 'GSM1698485': {'line': 'HEK293T', 'fraction': 'Six ribosomes'}, 'GSM1698484': {'line': 'HEK293T', 'fraction': 'Five ribosomes'}, 'GSM1698487': {'line': 'HEK293T', 'fraction': 'Eight+ ribosomes'}, 'GSM1698486': {'line': 'HEK293T', 'fraction': 'Seven ribosomes'}, 'GSM1006508': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-prednisolon', 'subject': 'A4'}, 'GSM1970437': {'line': 'SKOV3', 'type': 'ovarian tumor cell line'}, 'GSM1970436': {'tissue': 'lymph node metastasis', 'site': 'lymph node', 'identifier': '3'}, 'GSM1970435': {'tissue': 'peritoneum metastasis', 'site': 'peritoneum', 'identifier': '3'}, 'GSM1970434': {'tissue': 'primary epithelial ovarian tumor', 'site': 'ovary', 'identifier': '3'}, 'GSM1970433': {'tissue': 'lymph node metastasis', 'site': 'lymph node', 'identifier': '2'}, 'GSM1970432': {'tissue': 'peritoneum metastasis', 'site': 'peritoneum', 'identifier': '2'}, 'GSM1970431': {'tissue': 'primary epithelial ovarian tumor', 'site': 'ovary', 'identifier': '2'}, 'GSM1970430': {'tissue': 'lymph node metastasis', 'site': 'lymph node', 'identifier': '1'}, 'GSM1970439': {'line': 'FB', 'type': 'normal fibroblast cell line'}, 'GSM1970438': {'line': 'GOC2', 'type': 'ovarian tumor cell line'}, 'GSM2456019': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456018': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2595284': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'A8', 'unit': '4', '280': '1.61', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM2595285': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'B11', 'unit': '5', '280': '1.76', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM2456015': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456014': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456017': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2595289': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'C11', 'unit': '6', '280': '1.82', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '3', 'condition': 'Vehicle Control'}, 'GSM2456011': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456010': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456013': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456012': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1104374': {'line': 'HeLa S3', 'treatment': 'siRNA against SFMBT1 (#1) + LSD1 (#2) + CoREST (#1)', 'reference': '120123_lane7_VLB4'}, 'GSM1104373': {'line': 'HeLa S3', 'treatment': 'siRNA control', 'reference': '120123_lane7_VLB1'}, 'GSM2580019': {'gender': 'male', 'type': 'hiPSC-astrocyte'}, 'GSM1185138': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '6 hours'}, 'GSM1185139': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '6 hours'}, 'GSM1185132': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '24 hours'}, 'GSM1185133': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '24 hours'}, 'GSM1185130': {'with': 'Sulforaphane (SFN)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '6 hours'}, 'GSM1185131': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '24 hours'}, 'GSM1185136': {'with': 'Sulforaphane (SFN)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '24 hours'}, 'GSM1185137': {'with': 'Dimethyl sulfoxide (DMSO; vehicle control)', 'type': 'Androgen-dependent prostate cancer epithelial cells (LNCaP)', 'point': '6 hours'}, 'GSM1185134': {'with': 'Sulforaphane (SFN)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '24 hours'}, 'GSM1185135': {'with': 'Sulforaphane (SFN)', 'type': 'Normal prostate epithelial cells (PrEC)', 'point': '24 hours'}, 'GSM2877872': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877873': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877870': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877871': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877876': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877877': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877874': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877875': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM1381987': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2877878': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877879': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2047574': {'well': 'E10', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1943691': {'type': 'Monocyte', 'classification': 'none', 'condition': 'co-culture'}, 'GSM2047576': {'well': 'E12', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047577': {'well': 'F01', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047570': {'well': 'E06', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047571': {'well': 'E07', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047572': {'well': 'E08', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047573': {'well': 'E09', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2361993': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361992': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361991': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361990': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2047578': {'well': 'F02', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1604265': {'type': 'iPS-derived cardiomyocytes', 'stage': 'Day 30 post-differentiation'}, 'GSM1604266': {'type': 'iPS-derived cardiomyocytes', 'stage': 'Day 30 post-differentiation'}, 'GSM1604267': {'type': 'iPS-derived cardiomyocytes', 'stage': 'Day 30 post-differentiation'}, 'GSM1648835': {'group': 'ASD', 'gender': 'Male', 'clone': 'AERO_3_14', 'biopsy': '20 (Fluent Speech - Child/Adolescent)', 'years': '3.2', 'volume': '1338', 'type': 'iPSC-derived neural progenitors', 'id': 'AERO'}, 'GSM1648834': {'group': 'ASD', 'gender': 'Male', 'clone': 'AERO_3_7', 'biopsy': '20 (Fluent Speech - Child/Adolescent)', 'years': '3.2', 'volume': '1338', 'type': 'iPSC-derived neural progenitors', 'id': 'AERO'}, 'GSM1648837': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_4', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSC-derived neural progenitors', 'id': 'AHOY'}, 'GSM1648836': {'group': 'ASD', 'gender': 'Male', 'clone': 'AERO_3_13', 'biopsy': '20 (Fluent Speech - Child/Adolescent)', 'years': '3.2', 'volume': '1338', 'type': 'iPSC-derived neural progenitors', 'id': 'AERO'}, 'GSM1171579': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171578': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1648833': {'group': 'ASD', 'gender': 'Male', 'clone': 'AERO_3_6', 'biopsy': '20 (Fluent Speech - Child/Adolescent)', 'years': '3.2', 'volume': '1338', 'type': 'iPSC-derived neural progenitors', 'id': 'AERO'}, 'GSM1648832': {'group': 'ASD', 'gender': 'Male', 'clone': 'ACAI_1_1', 'biopsy': '13 (Fluent Speech - Child/Adolescent)', 'years': '4.5', 'volume': '1458', 'type': 'iPSC-derived neural progenitors', 'id': 'ACAI'}, 'GSM1171575': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171574': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171577': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171576': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171571': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171570': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171573': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171572': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM2242812': {'line': 'A375', 'replicate': '4'}, 'GSM2242813': {'line': 'A375', 'replicate': '4'}, 'GSM2242810': {'line': 'A375', 'replicate': '4'}, 'GSM2242811': {'line': 'A375', 'replicate': '4'}, 'GSM2242816': {'line': 'A375', 'replicate': '4'}, 'GSM2242817': {'line': 'A375', 'replicate': '4'}, 'GSM2242814': {'line': 'A375', 'replicate': '4'}, 'GSM2242815': {'line': 'A375', 'replicate': '4'}, 'GSM2242818': {'line': 'A375', 'replicate': '4'}, 'GSM2242819': {'line': 'A375', 'replicate': '4'}, 'GSM2374317': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374316': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2303496': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM1613678': {'line': 'A549', 'type': 'bulk'}, 'GSM2839728': {'cohort': 'Original', 'age': '58', 'id': 'C8', 'Sex': 'Female'}, 'GSM2839729': {'cohort': 'Original', 'age': '72', 'id': 'C9', 'Sex': 'Female'}, 'GSM1071860': {'knockdown': 'HEB/TCF12 and E2A/TCF3', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM1071861': {'knockdown': 'none', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM2390771': {'disease': 'Healthy Control'}, 'GSM2705511': {'condition': 'normoxia', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': 'DMSO', 'variation': 'WT'}, 'GSM2705510': {'condition': 'normoxia', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': 'DMSO', 'variation': 'WT'}, 'GSM2705513': {'condition': 'hypoxia (1% O2 24hrs)', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': 'DMSO', 'variation': 'WT'}, 'GSM2705512': {'condition': 'hypoxia (1% O2 24hrs)', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': 'DMSO', 'variation': 'WT'}, 'GSM2705515': {'condition': 'normoxia', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': '3MB-PP1', 'variation': 'WT'}, 'GSM2705514': {'condition': 'normoxia', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': '3MB-PP1', 'variation': 'WT'}, 'GSM2705517': {'condition': 'hypoxia (1% O2 24hrs)', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': '3MB-PP1', 'variation': 'WT'}, 'GSM2705516': {'condition': 'hypoxia (1% O2 24hrs)', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': '3MB-PP1', 'variation': 'WT'}, 'GSM2705519': {'condition': 'normoxia', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': 'DMSO', 'variation': 'CDK8as/as'}, 'GSM2705518': {'condition': 'normoxia', 'line': 'HCT116', 'type': 'colorectal adenocarcinoma', 'treatment': 'DMSO', 'variation': 'CDK8as/as'}, 'GSM2374318': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1613671': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2482837': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM1613670': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2482834': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM2390774': {'disease': 'Healthy Control'}, 'GSM1613676': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2147028': {'line': 'BJ', 'genotype': 'SFRS11 Knock-down'}, 'GSM2147027': {'line': 'BJ', 'genotype': 'SMAD3 Knock-down'}, 'GSM2147026': {'line': 'BJ', 'genotype': 'WT'}, 'GSM2361850': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2482839': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM2455739': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455738': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455735': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455734': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455737': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455736': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455731': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455730': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455733': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455732': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2516089': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'hi'}, 'GSM2516088': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'hi'}, 'GSM2883431': {'tissue': 'human mesenchymal stem cells'}, 'GSM2883430': {'tissue': 'human mesenchymal stem cells'}, 'GSM2516087': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'hi'}, 'GSM2516086': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'hi'}, 'GSM2516081': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516080': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516083': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516082': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM1656064': {'patient': '7', 'group': 'PP', 'gender': 'male'}, 'GSM1946148': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19131', 'for': '60min'}, 'GSM1946149': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19131', 'for': '60min'}, 'GSM2840148': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840149': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840144': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840145': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840146': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840147': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1946146': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19131', 'for': '30min'}, 'GSM1946147': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19131', 'for': '60min'}, 'GSM1946144': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19131', 'for': '30min'}, 'GSM1946145': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19131', 'for': '30min'}, 'GSM1931498': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931499': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931493': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931496': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931497': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931494': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931495': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1396589': {'status': 'MUT', 'Sex': 'M', 'histotype': 'AB', 'diagnosis': '60', 'type': 'Frozen', 'Stage': 'IIA'}, 'GSM1396588': {'status': 'MUT', 'Sex': 'M', 'histotype': 'AB', 'diagnosis': '52', 'type': 'Frozen', 'Stage': 'IIA'}, 'GSM1396585': {'status': 'WT', 'Sex': 'F', 'histotype': 'B3', 'diagnosis': '71', 'type': 'Frozen', 'Stage': 'IIA'}, 'GSM1396587': {'status': 'WT', 'Sex': 'F', 'histotype': 'TC:SCC', 'diagnosis': '76', 'type': 'Frozen', 'Stage': 'III'}, 'GSM1396586': {'status': 'WT', 'Sex': 'F', 'histotype': 'TC: SCC', 'diagnosis': '54', 'type': 'Frozen', 'Stage': 'IIB'}, 'GSM2665914': {'age': 'Day 130', 'well': 'F11', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665915': {'age': 'Day 130', 'well': 'B8', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665916': {'age': 'Day 130', 'well': 'B5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665917': {'age': 'Day 130', 'well': 'D6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM1717520': {'line': 'LNCaP', 'treatment': 'DHT 10nM', 'time': '12 h'}, 'GSM1717521': {'line': 'LNCaP', 'treatment': 'DHT 10nM', 'time': '24 h'}, 'GSM2665912': {'age': 'Day 130', 'well': 'C8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665913': {'age': 'Day 130', 'well': 'H7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665918': {'age': 'Day 130', 'well': 'F9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665919': {'age': 'Day 130', 'well': 'H8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2454062': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454063': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454060': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454061': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454066': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454067': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454064': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454065': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454068': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454069': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2374032': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374033': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374030': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374031': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374036': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374037': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374034': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374035': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374038': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374039': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2944190': {'gender': 'Female', 'age': '23', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944191': {'gender': 'Female', 'age': '23', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944192': {'gender': 'Female', 'age': '54', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2478109': {'state': 'IPF', 'tissue': 'lung', 'type': 'sorted Epithelial type2 cell'}, 'GSM2463222': {'line': 'HepG2 HCC cell line', 'expressing': 'NC TuD'}, 'GSM2944193': {'gender': 'Male', 'age': '53', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944194': {'gender': 'Male', 'age': '53', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2463220': {'line': 'HepG2 HCC cell line', 'expressing': 'miR-17 TuD'}, 'GSM2944195': {'gender': 'Female', 'age': '56', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2754984': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0143', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754985': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0386', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754986': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0386', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754987': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0180', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754980': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_1003', 'previousdiagnosisoftb': 'No', 'tst': '12', 'type': 'Tcells'}, 'GSM2754981': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_1003', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754982': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0143', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754983': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0143', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2944197': {'gender': 'Female', 'age': '48', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2754988': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0180', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754989': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0030', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2413526': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413527': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413524': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413525': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413522': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413523': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413520': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413521': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413528': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413529': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM927318': {'patient': '8', 'gender': 'female', 'age': '62 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927319': {'patient': '8', 'gender': 'female', 'age': '62 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IA'}, 'GSM927316': {'patient': '6', 'gender': 'female', 'age': '70 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927317': {'patient': '6', 'gender': 'female', 'age': '70 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIB'}, 'GSM927314': {'patient': '5', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927315': {'patient': '5', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIA'}, 'GSM927312': {'patient': '4', 'gender': 'female', 'age': '60 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927313': {'patient': '4', 'gender': 'female', 'age': '60 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IA'}, 'GSM927310': {'patient': '3', 'gender': 'female', 'age': '53 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM927311': {'patient': '3', 'gender': 'female', 'age': '53 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIB'}, 'GSM2069659': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'SPOP F133V'}, 'GSM2069658': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'SPOP F133V'}, 'GSM2069655': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'wildtype'}, 'GSM2069654': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'wildtype'}, 'GSM2069657': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'wildtype'}, 'GSM2069656': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'wildtype'}, 'GSM2069653': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'wildtype'}, 'GSM2069652': {'line': 'C4-2', 'passages': '25-28', 'genotype': 'wildtype'}, 'GSM2158182': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158183': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158180': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158181': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158186': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158187': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158184': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158185': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158188': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158189': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM1133328': {'status': 'MSI', 'age': '44', 'Sex': 'male', 'state': 'benign', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P3'}, 'GSM1133329': {'status': 'MSI', 'age': '44', 'Sex': 'male', 'state': 'tumor', 'tissue': 'colorectal biopsy, colon ascendens', 'subject': 'P3'}, 'GSM1133322': {'status': 'MSS', 'age': '70', 'Sex': 'male', 'state': 'benign', 'tissue': 'colorectal biopsy, sigma', 'subject': 'P1'}, 'GSM1133323': {'status': 'MSS', 'age': '70', 'Sex': 'male', 'state': 'tumor', 'tissue': 'colorectal biopsy, sigma', 'subject': 'P1'}, 'GSM1133326': {'status': 'MSS', 'age': '74', 'Sex': 'male', 'state': 'tumor', 'tissue': 'colorectal biopsy, coecum', 'subject': 'P2'}, 'GSM1133327': {'status': 'MSS', 'age': '74', 'Sex': 'male', 'state': 'metastasis', 'tissue': 'metastasis biopsy, liver', 'subject': 'P2'}, 'GSM1133324': {'status': 'MSS', 'age': '70', 'Sex': 'male', 'state': 'metastasis', 'tissue': 'metastasis biopsy, liver', 'subject': 'P1'}, 'GSM1133325': {'status': 'MSS', 'age': '74', 'Sex': 'male', 'state': 'benign', 'tissue': 'colorectal biopsy, coecum', 'subject': 'P2'}, 'GSM1105855': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105854': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105857': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105856': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105851': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105850': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105853': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105852': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105859': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105858': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2666028': {'age': 'Day 130', 'well': 'E2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1233301': {'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'ATRA 48h', 'genome': 'HG18'}, 'GSM1233300': {'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'ATRA 24h', 'genome': 'HG18'}, 'GSM2100132': {'rin': '9.4', 'Sex': 'Male', 'sspg': '69', 'age': '41', 'bmi': '24.6', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '475', 'method': 'Life-Tech GITC'}, 'GSM2816129': {'line': 'H9'}, 'GSM2816128': {'line': 'H9'}, 'GSM2816125': {'line': 'H9'}, 'GSM2816124': {'line': 'H9'}, 'GSM2816127': {'line': 'H9'}, 'GSM2816126': {'line': 'H9'}, 'GSM2816121': {'line': 'H9'}, 'GSM2816120': {'line': 'H9'}, 'GSM2816123': {'line': 'H9'}, 'GSM2816122': {'line': 'H9'}, 'GSM1588870': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588871': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588872': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588873': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588874': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM2667980': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2_enhancer_KO#2'}, 'GSM1588876': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM2667982': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM1588878': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588879': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM996202': {'age': '58', 'treatment': 'incubated for 1h with GM-CSF (5 ng/mL)', 'Sex': 'male'}, 'GSM2411319': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411318': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411313': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411312': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411311': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411310': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411317': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411316': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411315': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411314': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1105768': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1376079': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376078': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376077': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376076': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376075': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376074': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376073': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376072': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376071': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376070': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2285419': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'OPM2', 'treatment': 'DMSO'}, 'GSM2285418': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'OPM2', 'treatment': 'DMSO'}, 'GSM1505594': {'line': 'Pbmc'}, 'GSM1505595': {'tissue': 'Esophagus'}, 'GSM1505596': {'tissue': 'Heart'}, 'GSM1505597': {'tissue': 'Kidney'}, 'GSM1505590': {'line': 'K562'}, 'GSM1505591': {'line': 'Hela'}, 'GSM1505592': {'line': 'K562'}, 'GSM1505593': {'line': 'Mcf7'}, 'GSM2171932': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171933': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171930': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171931': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM1505598': {'tissue': 'Liver'}, 'GSM2171937': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171934': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2171935': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM1281849': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '18', 'gender': 'Male', 'age': '67', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2003', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '545'}, 'GSM1281848': {'status': '6 months LVAD support', 'pacemaker': 'Yes', 'fraction': '18', 'gender': 'Male', 'age': '67', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2003', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '545'}, 'GSM1281843': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '12', 'gender': 'Male', 'age': '66', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1983', 'race': 'Asian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '409'}, 'GSM1281842': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '12', 'gender': 'Male', 'age': '66', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1983', 'race': 'Asian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '409'}, 'GSM1281841': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '17', 'gender': 'Male', 'age': '73', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2002', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281840': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '20', 'gender': 'Male', 'age': '73', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1997', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '536'}, 'GSM1281847': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '18', 'gender': 'Male', 'age': '67', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2003', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281846': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '17', 'gender': 'Male', 'age': '74', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1980', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281845': {'status': '6 months LVAD support', 'pacemaker': 'Yes', 'fraction': '17', 'gender': 'Male', 'age': '74', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1980', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281844': {'status': '3 months LVAD support', 'pacemaker': 'Yes', 'fraction': '17', 'gender': 'Male', 'age': '74', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1980', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1385888': {'line': 'LM2', 'treatment': 'control'}, 'GSM2759493': {'tissue': 'dermal fibroblast', 'genotype': 'Null mutant', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM1385885': {'line': 'LM2', 'treatment': 'hnRNPM siRNA treated'}, 'GSM1385886': {'line': 'LM2', 'treatment': 'hnRNPM siRNA treated'}, 'GSM1385887': {'line': 'LM2', 'treatment': 'control'}, 'GSM3587860': {'treatment': 'control'}, 'GSM3587861': {'treatment': 'control'}, 'GSM3587862': {'treatment': 'control'}, 'GSM3587863': {'treatment': 'VS-4718'}, 'GSM3587864': {'treatment': 'VS-4718'}, 'GSM3587865': {'treatment': 'VS-4718'}, 'GSM925763': {'transfection': 'Scramble siRNA', 'tissue': 'lung fibroblasts'}, 'GSM925762': {'transfection': 'Scramble siRNA', 'tissue': 'lung fibroblasts'}, 'GSM925765': {'transfection': 'HOXA1 knockdown', 'tissue': 'lung fibroblasts'}, 'GSM925764': {'transfection': 'Scramble siRNA', 'tissue': 'lung fibroblasts'}, 'GSM925767': {'transfection': 'HOXA1 knockdown', 'tissue': 'lung fibroblasts'}, 'GSM925766': {'transfection': 'HOXA1 knockdown', 'tissue': 'lung fibroblasts'}, 'GSM925769': {'transfection': 'Scramble siRNA', 'tissue': 'lung fibroblasts'}, 'GSM925768': {'transfection': 'Scramble siRNA', 'tissue': 'lung fibroblasts'}, 'GSM2072170': {'status': 'HIV-', 'tissue': 'Tonsil', 'phenotype': 'CD27highCD45ROhighCCR7lowCXCR5high'}, 'GSM2072171': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROhighCCR7lowCXCR5high'}, 'GSM2072172': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROhighCCR7lowCXCR5high'}, 'GSM2072173': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROhighCCR7lowCXCR5high'}, 'GSM1537603': {'transfection': 'Con-siRNA', 'passages': '4-10', 'type': 'pulmonary microvascular EC'}, 'GSM2248145': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM1537605': {'transfection': 'Con-siRNA', 'passages': '4-10', 'type': 'pulmonary microvascular EC'}, 'GSM1537604': {'transfection': 'Con-siRNA', 'passages': '4-10', 'type': 'pulmonary microvascular EC'}, 'GSM1537607': {'transfection': 'PPARy-siRNA', 'passages': '4-10', 'type': 'pulmonary microvascular EC'}, 'GSM1537606': {'transfection': 'Con-siRNA', 'passages': '4-10', 'type': 'pulmonary microvascular EC'}, 'GSM1537609': {'transfection': 'PPARy-siRNA', 'passages': '4-10', 'type': 'pulmonary microvascular EC'}, 'GSM1537608': {'transfection': 'PPARy-siRNA', 'passages': '4-10', 'type': 'pulmonary microvascular EC'}, 'GSM2414853': {'age': 'Adult', 'markers': 'Viable CD45Low CD34+', 'state': 'Healthy', 'tissue': 'Peripheral blood', 'treatment': 'Unstimulated', 'donor': '2'}, 'GSM2414852': {'age': 'Adult', 'markers': 'Viable CD45+ Lin- CD7+ CD127+ CD117+', 'state': 'Healthy', 'tissue': 'Peripheral blood', 'treatment': 'Unstimulated', 'donor': '2'}, 'GSM2414851': {'age': 'Adult', 'markers': 'Viable CD45Low CD34+', 'state': 'Healthy', 'tissue': 'Peripheral blood', 'treatment': 'Unstimulated', 'donor': '1'}, 'GSM2414850': {'age': 'Adult', 'markers': 'Viable CD45+ Lin- CD7+ CD127+ CD117+', 'state': 'Healthy', 'tissue': 'Peripheral blood', 'treatment': 'Unstimulated', 'donor': '1'}, 'GSM2039119': {'line': 'KYSE510', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '200nM', 'drug': 'THZ1'}, 'GSM2039118': {'line': 'KYSE510', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2039117': {'line': 'KYSE510', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2039116': {'line': 'KYSE510', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2039115': {'line': 'KYSE510', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': '50nM', 'drug': 'THZ1'}, 'GSM2039114': {'line': 'KYSE510', 'type': 'Esophageal squamous cell carcinoma (ESCC)', 'concentration': 'None', 'drug': 'DMSO'}, 'GSM2722944': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.474', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.061', 'age': '55', 'tcga_subtype_dif': '0.058', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.45', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2722946': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.041', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.303', 'age': '68', 'tcga_subtype_dif': '-0.326', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.088', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722940': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.414', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.29', 'age': '63', 'tcga_subtype_dif': '-0.088', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.008', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722942': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.411', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.288', 'age': '60', 'tcga_subtype_dif': '0.392', 'stic': 'No', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.372', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722948': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.394', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.275', 'age': '74', 'tcga_subtype_dif': '0.038', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.106', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIB'}, 'GSM1396721': {'lane': '2', 'librarybatch': 'A', 'replicate': '1', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'WAT', 'multiplex': '1'}, 'GSM2695329': {'type': 'primed human ESC'}, 'GSM1396723': {'lane': '4', 'librarybatch': 'A', 'replicate': '3', 'treatment': 'DMSO', 'time': '24 hours', 'type': 'WAT', 'multiplex': '3'}, 'GSM1712273': {'type': 'Primary fibroblasts'}, 'GSM1712272': {'type': 'Primary fibroblasts'}, 'GSM1712271': {'type': 'Primary fibroblasts'}, 'GSM1712270': {'state': 'healthy', 'tissue': 'Venous peripheral blood', 'type': 'Monocytes'}, 'GSM1712277': {'type': 'Primary fibroblasts'}, 'GSM1712276': {'type': 'Primary fibroblasts'}, 'GSM1712275': {'type': 'Primary fibroblasts'}, 'GSM1712274': {'type': 'Primary fibroblasts'}, 'GSM2348624': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565121': {'construction': 'PLATE-Seq', 'drug': 'Temsirolimus'}, 'GSM1712279': {'type': 'Primary fibroblasts'}, 'GSM1712278': {'type': 'Primary fibroblasts'}, 'GSM2348620': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348621': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348622': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1396724': {'lane': '3', 'librarybatch': 'A', 'replicate': '1', 'treatment': 'JAK3i', 'time': '24 hours', 'type': 'WAT', 'multiplex': '1'}, 'GSM2307302': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307303': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1467788': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467789': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM2307306': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307307': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307304': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307305': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1467783': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM2307308': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307309': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM1467786': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467787': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467784': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467785': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1278353': {'stimulation': '18 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A-C464A'}, 'GSM1278352': {'stimulation': '18 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A-C464A'}, 'GSM1278351': {'stimulation': '18 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-C464A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278350': {'stimulation': '18 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-C464A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM2458844': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '16.75'}, 'GSM2374382': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2303175': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACIW009'}, 'GSM2303174': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2303177': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACIW009'}, 'GSM2303176': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303171': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303170': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303173': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303172': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303179': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303178': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2458845': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.08'}, 'GSM2473278': {'genotype': 'YFFF'}, 'GSM2473279': {'genotype': 'rWT'}, 'GSM2302888': {'tetracycline': 'TET(-)', 'id': '3', 'treatment': 'IL17'}, 'GSM2302889': {'tetracycline': 'TET(-)', 'id': '3', 'treatment': 'TNF'}, 'GSM2302886': {'tetracycline': 'TET(+)', 'id': '2', 'treatment': 'IL17+TNF'}, 'GSM2302887': {'tetracycline': 'TET(-)', 'id': '3', 'treatment': 'control'}, 'GSM2302884': {'tetracycline': 'TET(+)', 'id': '2', 'treatment': 'IL17'}, 'GSM2302885': {'tetracycline': 'TET(+)', 'id': '2', 'treatment': 'TNF'}, 'GSM2302882': {'tetracycline': 'TET(-)', 'id': '2', 'treatment': 'IL17+TNF'}, 'GSM2302883': {'tetracycline': 'TET(+)', 'id': '2', 'treatment': 'control'}, 'GSM2302880': {'tetracycline': 'TET(-)', 'id': '2', 'treatment': 'IL17'}, 'GSM2302881': {'tetracycline': 'TET(-)', 'id': '2', 'treatment': 'TNF'}, 'GSM2279928': {'passages': '40-60', 'type': 'ES-derived cardiomyocyte', 'stage': 'Differentiation D30'}, 'GSM2279929': {'passages': '40-60', 'type': 'ES-derived cardiomyocyte', 'stage': 'Differentiation D30'}, 'GSM1018009': {'line': 'SNU484'}, 'GSM1018008': {'type': 'primary cell culture from gastric cancer tissue'}, 'GSM1018007': {'type': 'primary cell culture from gastric cancer tissue'}, 'GSM1018006': {'type': 'primary cell culture from gastric cancer tissue'}, 'GSM1018005': {'tissue': 'normal gastric tissue'}, 'GSM1018004': {'tissue': 'normal gastric tissue'}, 'GSM2279924': {'passages': '40-60', 'type': 'ES-derived cardiac progenitor', 'stage': 'Differentiation D7'}, 'GSM2279925': {'passages': '40-60', 'type': 'ES-derived cardiac progenitor', 'stage': 'Differentiation D7'}, 'GSM2279926': {'passages': '40-60', 'type': 'ES-derived cardiac progenitor', 'stage': 'Differentiation D7+ GATA4si'}, 'GSM2279927': {'passages': '40-60', 'type': 'ES-derived cardiac progenitor', 'stage': 'Differentiation D7+ GATA4si'}, 'GSM1581118': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581119': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581114': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581115': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581116': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581117': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581110': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581111': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581112': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581113': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1722609': {'antibody': 'H3K4me3', 'variation': 'KO'}, 'GSM1722608': {'antibody': 'H3K4me3', 'variation': 'KO'}, 'GSM2458848': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '5.75'}, 'GSM2656057': {'type': 'Human prostate cancer cell line'}, 'GSM1722607': {'antibody': 'H3K4me3', 'variation': 'WT'}, 'GSM2656059': {'type': 'Human prostate cancer cell line'}, 'GSM2656058': {'type': 'Human prostate cancer cell line'}, 'GSM485683': {'line': 'GM12878', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM485682': {'line': 'GM10847', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM2194427': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194426': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM485687': {'line': 'GM18505', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM485686': {'line': 'GM15510', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM485685': {'line': 'GM12892', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM485684': {'line': 'GM12891', 'type': 'Lymphoblastoid cell', 'treatment': 'TNF-alpha induced (6h)'}, 'GSM2719770': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719771': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719772': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719773': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719774': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719775': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2410319': {'antibody': 'anti-FLAG(M2) (Sigma-1804, Lot# SLBK1346V)', 'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'p.P177L EBF3-FLAG'}, 'GSM1154031': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'cycloheximide (5µg/mL) pretreat 30min'}, 'GSM1154030': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154033': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1154032': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr; cycloheximide (5µg/mL) pretreat 30min'}, 'GSM1154035': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1154034': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154037': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1154036': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'IFN-γ (50ng/mL) 2hr'}, 'GSM1154039': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1154038': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': '5α-dihydrotestosterone (100nM) 4hr'}, 'GSM2248182': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM1297639': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1616461': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Hyperactivated MYC and depleted BUD31'}, 'GSM1616460': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Hyperactivated MYC and depleted BUD31'}, 'GSM2248180': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM1705109': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 10ng/ml IL1α', 'passage': 'p4-5'}, 'GSM1705108': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum', 'passage': 'p4-5'}, 'GSM2228801': {'donor': '11', 'treatment': 'RESTV', 'infection': '48'}, 'GSM2228800': {'donor': '11', 'treatment': 'EBOV', 'infection': '48'}, 'GSM2228803': {'donor': '11', 'treatment': 'RESTV/LPS', 'infection': '24'}, 'GSM2228802': {'donor': '11', 'treatment': 'EBOV/LPS', 'infection': '24'}, 'GSM1705105': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum', 'passage': 'p4-5'}, 'GSM1705107': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum', 'passage': 'p4-5'}, 'GSM1705106': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum', 'passage': 'p4-5'}, 'GSM1545061': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM2125810': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM2125811': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125812': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125813': {'cancer': 'gastric cancer', 'stage': '4'}, 'GSM2858992': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES, 100 ng/mL doxycycline, and 100 nM PD173074 (Stemgent)', 'type': 'eAEP line MS64 cultured in the presence of 100 nM PD173074 for four days'}, 'GSM2858993': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS64 matured for four days in the absence of doxycycline, as a negative control for sample MS64_PD17_Day8'}, 'GSM2858990': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS58 matured for four days in the absence of doxycycline after exposure to PD173074 for four days'}, 'GSM2858991': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS64 cultured without exposure to PD173074, as a negative control for sample MS64_PD17_Day4'}, 'GSM2858996': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES, 100 ng/mL doxycycline, and 100 nM PD173074 (Stemgent)', 'type': 'eAEP line MS49 cultured in the presence of 100 nM PD173074 for four days'}, 'GSM2858997': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS49 matured for four days in the absence of doxycycline, as a negative control for sample MS49_PD17_Day8'}, 'GSM2858994': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS64 matured for four days in the absence of doxycycline after exposure to PD173074 for four days'}, 'GSM2858995': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS49 cultured without exposure to PD173074, as a negative control for sample MS49_PD17_Day4'}, 'GSM2258356': {'status': 'Borrellia burgdorferi infected', 'type': 'astrocytes', 'point': '24h'}, 'GSM2258357': {'status': 'Borrellia burgdorferi infected', 'type': 'astrocytes', 'point': '24h'}, 'GSM2858998': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS49 matured for four days in the absence of doxycycline after exposure to PD173074 for four days'}, 'GSM2858999': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS53 cultured without exposure to PD173074, as a negative control for sample MS53_PD17_Day4'}, 'GSM1250473': {'genotype': 'No Known Relevant Mutations', 'gender': 'Male', 'age': '56 Years', 'onset': 'N/A', 'course': 'N/A', 'tissue': 'Fibroblast', 'treatment': 'ASO Treatment - Cells were transfected with a nuclear RNase-H dependent antisense oligonucleotide targeting Exon 2 of Hs C9orf72. This ASO has been shown in previous work to efficiently knockdown all known isoforms of C9orf72.', 'diagnosis': 'Non-Neurologic Control'}, 'GSM2808447': {'region': 'whole retina'}, 'GSM1250475': {'genotype': 'No Known Relevant Mutations', 'gender': 'Male', 'age': '55 Years', 'onset': 'N/A', 'course': 'N/A', 'tissue': 'Fibroblast', 'treatment': 'ASO Treatment - Cells were transfected with a nuclear RNase-H dependent antisense oligonucleotide targeting Exon 2 of Hs C9orf72. This ASO has been shown in previous work to efficiently knockdown all known isoforms of C9orf72.', 'diagnosis': 'Non-Neurologic Control'}, 'GSM2579330': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579331': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579332': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579333': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579334': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579335': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579336': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579337': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579338': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579339': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM1642324': {'tissue': 'Cerebellum', 'genotype': 'Healthy'}, 'GSM2544716': {'line': 'K562'}, 'GSM2544717': {'line': 'K562'}, 'GSM2544714': {'line': 'K562'}, 'GSM2544715': {'line': 'K562'}, 'GSM2544712': {'line': 'K562'}, 'GSM2544713': {'line': 'K562'}, 'GSM2544710': {'line': 'K562'}, 'GSM2544711': {'line': 'K562'}, 'GSM2738134': {'line': 'G401'}, 'GSM2738133': {'line': 'G401'}, 'GSM2738132': {'line': 'G401'}, 'GSM2738131': {'line': 'G401'}, 'GSM2738130': {'line': 'G401'}, 'GSM735419': {'line': 'HK-2', 'type': 'kidney proximal tubule epithelial cell line'}, 'GSM1945925': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18498', 'for': '60min'}, 'GSM1945924': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18498', 'for': '60min'}, 'GSM1945927': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18498', 'for': '60min'}, 'GSM1945926': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18498', 'for': '60min'}, 'GSM1945921': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18498', 'for': '30min'}, 'GSM1945920': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18498', 'for': '30min'}, 'GSM1945923': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18498', 'for': '30min'}, 'GSM1945922': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18498', 'for': '30min'}, 'GSM1945929': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18499', 'for': '30min'}, 'GSM1945928': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18499', 'for': '30min'}, 'GSM2049105': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM1138792': {'line': 'WM2664'}, 'GSM1138790': {'line': 'SKMEL28'}, 'GSM1138791': {'line': 'SKMEL5'}, 'GSM2735286': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'II', 'burden': '246', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735287': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'II', 'burden': '245', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'I'}, 'GSM2735284': {'cohort': 'Paired', 'tils': '10', 'subtype': 'I', 'burden': '31', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735285': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'I', 'burden': '266', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735282': {'cohort': 'Paired', 'tils': '30', 'subtype': 'II', 'burden': '18', 'morphology': 'undifferentiated, spindle', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735283': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'II', 'burden': '227', 'morphology': 'undifferentiated, round', 'event': 'N/A', 'stage': 'IV'}, 'GSM2735280': {'cohort': 'Paired', 'tils': '10', 'subtype': 'III', 'burden': '17', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'I'}, 'GSM2735281': {'cohort': 'Unpaired', 'tils': '20', 'subtype': 'II', 'burden': '244', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM1823306': {'line': '553.C2', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM2049109': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2735288': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'III', 'burden': '268', 'morphology': 'undifferentiated, spindle', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735289': {'cohort': 'Unpaired', 'tils': '40', 'subtype': 'III', 'burden': '292', 'morphology': 'undifferentiated, round', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2616595': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2595321': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'F4', 'unit': '7', '280': '1.83', 'concentration': '0.1 uM', 'type': 'cardiac myocytes', 'id': '14', 'condition': 'Sunitinib'}, 'GSM2595320': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'F3', 'unit': '7', '280': '1.85', 'concentration': '0.1 uM', 'type': 'cardiac myocytes', 'id': '13', 'condition': 'Sunitinib'}, 'GSM2616591': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2607609': {'line': 'WA26'}, 'GSM2649939': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2390739': {'disease': 'Healthy Control'}, 'GSM2390738': {'disease': 'Healthy Control'}, 'GSM2390737': {'disease': 'Healthy Control'}, 'GSM2390736': {'disease': 'Healthy Control'}, 'GSM2390735': {'disease': 'Healthy Control'}, 'GSM2390734': {'disease': 'Healthy Control'}, 'GSM2390733': {'disease': 'Healthy Control'}, 'GSM2390732': {'disease': 'Healthy Control'}, 'GSM2390731': {'disease': 'Healthy Control'}, 'GSM2390730': {'disease': 'Healthy Control'}, 'GSM2361816': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361817': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361814': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361815': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361812': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361813': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361810': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361811': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2185684': {'race': 'NB', 'staging': '6', 'total_grade': 'NA', 'cea': 'NA', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '59', 'focal_lytic_nec_apop': 'NA', 'batch': '0', 'sgpt': '31', 'Sex': 'M', 'confluent_necrosis': 'NA', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '60', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': '46', 'hcv_viral_load': '0'}, 'GSM2185683': {'race': 'B', 'staging': '6', 'total_grade': 'NA', 'cea': '4', 'hcv_genotype': '1', 'hcv_activity': '0', 'age': '55', 'focal_lytic_nec_apop': 'NA', 'batch': '1', 'sgpt': '110', 'Sex': 'M', 'confluent_necrosis': 'NA', 'state': 'Tumor', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '128', 'ca19_9': '58.4', 'differentiation': '1', 'portal_inflammation': 'NA', 'afp': '178', 'hcv_viral_load': '12754046'}, 'GSM2185682': {'race': 'B', 'staging': '6', 'total_grade': 'NA', 'cea': '4', 'hcv_genotype': '1', 'hcv_activity': '0', 'age': '55', 'focal_lytic_nec_apop': 'NA', 'batch': '0', 'sgpt': '110', 'Sex': 'M', 'confluent_necrosis': 'NA', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '128', 'ca19_9': '58.4', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': '178', 'hcv_viral_load': '12754046'}, 'GSM2185681': {'race': 'B', 'staging': '3', 'total_grade': '4', 'cea': 'NA', 'hcv_genotype': '1', 'hcv_activity': '3', 'age': '69', 'focal_lytic_nec_apop': '1', 'batch': '1', 'sgpt': '56', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Tumor', 'tissue': 'liver', 'interface_necrosis': '1', 'sgot': '58', 'ca19_9': 'NA', 'differentiation': '2', 'portal_inflammation': '2', 'afp': '5650', 'hcv_viral_load': '158883'}, 'GSM2185680': {'race': 'B', 'staging': '3', 'total_grade': '4', 'cea': 'NA', 'hcv_genotype': '1', 'hcv_activity': '3', 'age': '69', 'focal_lytic_nec_apop': '1', 'batch': '1', 'sgpt': '56', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': '1', 'sgot': '58', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': '2', 'afp': '5650', 'hcv_viral_load': '158883'}, 'GSM2242134': {'line': 'T-47D', 'karyotype': 'breast cancer', 'treatment': 'None', 'description': 'None'}, 'GSM2242131': {'line': 'MDA-MB-231', 'karyotype': 'breast cancer', 'treatment': 'BMP4 (100 ng/ml)', 'description': '3 hours treatment with BMP4 (100 ng/ml)'}, 'GSM2242133': {'line': 'T-47D', 'karyotype': 'breast cancer', 'treatment': 'BMP4 (100 ng/ml)', 'description': '3 hours treatment with BMP4 (100 ng/ml)'}, 'GSM2242132': {'line': 'MDA-MB-231', 'karyotype': 'breast cancer', 'treatment': 'None', 'description': 'None'}, 'GSM1465034': {'vendor': 'Covance', 'antibody': 'RNA polymerase II', 'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'wild type'}, 'GSM1465032': {'vendor': 'Covance', 'antibody': 'RNA polymerase II', 'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1465033': {'vendor': 'Covance', 'antibody': 'RNA polymerase II', 'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1465030': {'vendor': 'CST', 'antibody': 'H3K4me3', 'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1465031': {'vendor': 'CST', 'antibody': 'H3K4me3', 'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'mutations in DNA methyltransferases (double knockout)'}, 'GSM1524371': {'line': 'T29H', 'passages': '13', 'type': 'a RasV12-transformed human ovarian epithelial cell line', 'tissue': 'ovarian epithelial'}, 'GSM1524370': {'line': 'T29', 'passages': '13', 'type': 'an immortalized but non-transformed ovarian epithelial cell line', 'tissue': 'ovarian epithelial'}, 'GSM2127438': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127439': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127434': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127435': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127436': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127437': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127430': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127431': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127432': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2127433': {'tissue': 'blood', 'type': 'Human monocyte-derived macrophages'}, 'GSM2551208': {'antibody': 'H3K4me3 (Cat # 9751, Cell Signaling)', 'type': 'cardiac progenitor cells (CPCs)'}, 'GSM2551209': {'antibody': 'none', 'type': 'cardiac progenitor cells (CPCs)'}, 'GSM2551202': {'antibody': 'H3K4me3 (Cat # 9751, Cell Signaling)', 'type': 'hemogenic mesoderm (H-ECs)'}, 'GSM2551203': {'antibody': 'none', 'type': 'hemogenic mesoderm (H-ECs)'}, 'GSM2551200': {'antibody': 'none', 'type': 'hemogenic mesoderm (H-ECs)'}, 'GSM2551201': {'antibody': 'H3K27me3 (Cat # 07-449; Millipore)', 'type': 'hemogenic mesoderm (H-ECs)'}, 'GSM2551206': {'antibody': 'none', 'type': 'cardiac progenitor cells (CPCs)'}, 'GSM2551207': {'antibody': 'H3K27me3 (Cat # 07-449; Millipore)', 'type': 'cardiac progenitor cells (CPCs)'}, 'GSM2551204': {'antibody': 'H3K27me3 (Cat # 07-449; Millipore)', 'type': 'cardiac progenitor cells (CPCs)'}, 'GSM2551205': {'antibody': 'H3K4me3 (Cat # 9751, Cell Signaling)', 'type': 'cardiac progenitor cells (CPCs)'}, 'GSM2048764': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048765': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048766': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048767': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048760': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048761': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048762': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048763': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048768': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048769': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2616802': {'variation': 'scrambled control knockdown', 'background': 'HeLa', 'point': '0h after ActinomycinD'}, 'GSM2616803': {'variation': 'scrambled control knockdown', 'background': 'HeLa', 'point': '3h after ActinomycinD'}, 'GSM2616804': {'variation': 'scrambled control knockdown', 'background': 'HeLa', 'point': '6h after ActinomycinD'}, 'GSM2616805': {'variation': 'G3BP1 knockdown + METTL3 knockdown', 'background': 'HeLa', 'point': '0h after ActinomycinD'}, 'GSM2616806': {'variation': 'G3BP1 knockdown + METTL3 knockdown', 'background': 'HeLa', 'point': '3h after ActinomycinD'}, 'GSM2616807': {'variation': 'G3BP1 knockdown + METTL3 knockdown', 'background': 'HeLa', 'point': '6h after ActinomycinD'}, 'GSM2616808': {'variation': 'scrambled control knockdown', 'background': 'HeLa', 'point': '0h after ActinomycinD'}, 'GSM2616809': {'variation': 'scrambled control knockdown', 'background': 'HeLa', 'point': '3h after ActinomycinD'}, 'GSM1619479': {'type': 'peripheral monocytes', 'id': '#08', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1619478': {'type': 'peripheral monocytes', 'id': '#06', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1619477': {'type': 'peripheral monocytes', 'id': '#05', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1619476': {'type': 'peripheral monocytes', 'id': '#02', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1619475': {'type': 'peripheral monocytes', 'id': '#01', 'procedure': 'adjustable gastric banding', 'point': 'T0; before bariatric surgery'}, 'GSM2649978': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649979': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2577226': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '22h'}, 'GSM2649971': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649972': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649973': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649974': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649975': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649976': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649977': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM1899707': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM2786459': {'subtype': 'IFN+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '4'}, 'GSM2786458': {'subtype': 'IL17A+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '1'}, 'GSM2786455': {'subtype': 'IL17A+GMCSF+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '2'}, 'GSM2786454': {'subtype': 'IFN+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '2'}, 'GSM2786457': {'subtype': 'CSF+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '1'}, 'GSM2786456': {'subtype': 'CD45RA+Cyt-', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '1'}, 'GSM957470': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'none', 'id': '5'}, 'GSM957471': {'gender': 'female', 'tissue': 'skin', 'group': '<=30 years'}, 'GSM2786453': {'subtype': 'IL17A+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '2'}, 'GSM2786452': {'subtype': 'CSF+', 'tissue': 'blood', 'type': 'PBMC CD4', 'number': '3'}, 'GSM2204731': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204730': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204733': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204732': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204735': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204734': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204737': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204736': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1645003': {'gender': 'female', 'tissue': 'Hippocampus', 'group': 'age-matched control', 'genotype': '2/3', 'stage': 'II'}, 'GSM1645002': {'gender': 'male', 'tissue': 'Hippocampus', 'group': 'age-matched control', 'genotype': '3/3', 'stage': 'II'}, 'GSM1645001': {'gender': 'male', 'tissue': 'Hippocampus', 'group': 'age-matched control', 'genotype': 'Not available', 'stage': 'II'}, 'GSM1645000': {'gender': 'female', 'tissue': 'Hippocampus', 'group': 'age-matched control', 'genotype': '2/3', 'stage': 'I'}, 'GSM2142220': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH-43-34-'}, 'GSM2142221': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH-43+'}, 'GSM2142222': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH+34+43-'}, 'GSM2142223': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH-34+43-'}, 'GSM2142224': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH-43-34-'}, 'GSM2142225': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH-34+43-'}, 'GSM2142226': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH+34-43-'}, 'GSM2142227': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH+34+43-'}, 'GSM2142228': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH-43+'}, 'GSM2142229': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH-43-34-'}, 'GSM2200922': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200923': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200924': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200925': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200926': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200927': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM1846969': {'group': 'Fixed cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846968': {'group': 'Fixed cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846967': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846966': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846965': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846964': {'group': 'Live cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846963': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846962': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846961': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846960': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM2759495': {'tissue': 'dermal fibroblast', 'genotype': 'Null mutant', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM1872990': {'tissue': 'Human normal mucosa'}, 'GSM2316667': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316666': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316665': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316664': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316663': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316662': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316661': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316660': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316669': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316668': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2284055': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM1898009': {'phase': 'M phase', 'subtype': 'Total mRNA (RNA-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898008': {'phase': 'M phase', 'subtype': 'Total mRNA (RNA-seq)', 'type': 'HeLa S3 cells'}, 'GSM1834801': {'line': 'HepaRG', 'agent': 'CITCO', 'variation': 'WT'}, 'GSM1834800': {'line': 'HepaRG', 'agent': 'CITCO', 'variation': 'WT'}, 'GSM1834803': {'line': 'HepaRG', 'agent': 'DMSO', 'variation': 'hCAR-KO'}, 'GSM1834802': {'line': 'HepaRG', 'agent': 'DMSO', 'variation': 'hCAR-KO'}, 'GSM1834805': {'line': 'HepaRG', 'agent': 'PB', 'variation': 'hCAR-KO'}, 'GSM1834804': {'line': 'HepaRG', 'agent': 'PB', 'variation': 'hCAR-KO'}, 'GSM1834807': {'line': 'HepaRG', 'agent': 'CITCO', 'variation': 'hCAR-KO'}, 'GSM1834806': {'line': 'HepaRG', 'agent': 'CITCO', 'variation': 'hCAR-KO'}, 'GSM2233209': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233208': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233203': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233202': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233201': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233200': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233207': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233206': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233205': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233204': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2093064': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM4599149': {'type': 'melanoma', 'name': 'UACC62R', 'treatment': '10 uM CCG-222740'}, 'GSM4599147': {'type': 'melanoma', 'name': 'UACC62R', 'treatment': '10 uM CCG-222740'}, 'GSM4599144': {'type': 'melanoma', 'name': 'UACC62R', 'treatment': '10 uM CCG-222740'}, 'GSM4599142': {'type': 'melanoma', 'name': 'UACC62R', 'treatment': '10 uM CCG-222740'}, 'GSM1379041': {'agent': 'none'}, 'GSM1379040': {'agent': 'UM171', 'time': '72hr'}, 'GSM2754863': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_0692', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754862': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0692', 'previousdiagnosisoftb': 'No', 'tst': '19', 'type': 'Tcells'}, 'GSM2754861': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0692', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754860': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_0811', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754867': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1104', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754866': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_1119', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754865': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_1119', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754864': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_1119', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2759490': {'tissue': 'dermal fibroblast', 'genotype': 'Dominant negative mutant_glycine missense', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2754869': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_1104', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754868': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_1104', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2136957': {'subtype': '2', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '1'}, 'GSM2136956': {'subtype': '1', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '1'}, 'GSM1381985': {'line': 'H1', 'type': 'Embryonic stem cells', 'passage': '30-38'}, 'GSM1381984': {'line': 'H1', 'type': 'Embryonic stem cells', 'passage': '30-38'}, 'GSM1654746': {'line': 'SCC13', 'type': 'Epidermal squamous cell carcinoma'}, 'GSM1654747': {'line': 'SCC13', 'type': 'Epidermal squamous cell carcinoma'}, 'GSM1654744': {'line': 'SCC13', 'type': 'Epidermal squamous cell carcinoma'}, 'GSM1654745': {'line': 'SCC13', 'type': 'Epidermal squamous cell carcinoma'}, 'GSM1654742': {'line': 'SCC13', 'type': 'Epidermal squamous cell carcinoma'}, 'GSM1654743': {'line': 'SCC13', 'type': 'Epidermal squamous cell carcinoma'}, 'GSM1654741': {'line': 'SCC13', 'type': 'Epidermal squamous cell carcinoma'}, 'GSM1381986': {'line': 'H1', 'type': 'Embryonic stem cells', 'passage': '30-38'}, 'GSM1654748': {'line': 'SCC13', 'type': 'Epidermal squamous cell carcinoma'}, 'GSM1335489': {'source': 'bone marrow', 'type': 'Mantle cell lymphoma cells'}, 'GSM1335488': {'source': 'bone marrow', 'type': 'Mantle cell lymphoma cells'}, 'GSM1335487': {'source': 'lymph node', 'type': 'Mantle cell lymphoma cells'}, 'GSM1335486': {'source': 'lymph node', 'type': 'Mantle cell lymphoma cells'}, 'GSM1964313': {'type': 'Primary normal human bronchial epithelial (NHBE) cells', 'treatment': 'infected A/PR/8/34 influenza virus (MOI = 1)', 'time': '24 hour infection'}, 'GSM1964312': {'type': 'Primary normal human bronchial epithelial (NHBE) cells', 'treatment': 'infected A/PR/8/34 influenza virus (MOI = 1)', 'time': '8 hour infection'}, 'GSM1964311': {'type': 'Primary normal human bronchial epithelial (NHBE) cells', 'treatment': 'infected A/PR/8/34 influenza virus (MOI = 1)', 'time': '8 hour infection'}, 'GSM1964310': {'type': 'Primary normal human bronchial epithelial (NHBE) cells', 'treatment': 'control', 'time': 'control'}, 'GSM2759492': {'tissue': 'dermal fibroblast', 'genotype': 'Null mutant', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM1964314': {'type': 'Primary normal human bronchial epithelial (NHBE) cells', 'treatment': 'infected A/PR/8/34 influenza virus (MOI = 1)', 'time': '24 hour infection'}, 'GSM2158021': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158020': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158023': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158022': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM1899750': {'of': 'ERK1', 'type': 'mammary epithelial cells'}, 'GSM1899751': {'of': 'ERK1', 'type': 'mammary epithelial cells'}, 'GSM1899752': {'of': 'ERK1', 'type': 'mammary epithelial cells'}, 'GSM1899753': {'of': 'ERK1', 'type': 'mammary epithelial cells'}, 'GSM2459115': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2459114': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2543120': {'line': 'A549'}, 'GSM2543121': {'line': 'A549'}, 'GSM2543122': {'line': 'A549'}, 'GSM2543123': {'line': 'A549'}, 'GSM2543124': {'line': 'A549'}, 'GSM2543125': {'line': 'A549'}, 'GSM2543126': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'none', 'agent': 'none'}, 'GSM2543127': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'none', 'agent': 'none'}, 'GSM2543128': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'BRD4 short and long forms (anti-BRD4-SL , against short and long isoforms of BRD4, 5 ul per IP, Bethyl, catalog no. A301-985A)', 'agent': 'none'}, 'GSM2543129': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'BRD4 short and long forms (anti-BRD4-SL , against short and long isoforms of BRD4, 5 ul per IP, Bethyl, catalog no. A301-985A)', 'agent': 'none'}, 'GSM2339325': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM1700508': {'clone': 'A375 resistant clone 1', 'line': 'A375', 'treatment': 'CPI203'}, 'GSM1700509': {'clone': 'A375 resistant clone 1', 'line': 'A375', 'treatment': 'CPI203'}, 'GSM1700506': {'clone': 'A375 resistant clone 1', 'line': 'A375', 'treatment': 'DMSO'}, 'GSM1700507': {'clone': 'A375 resistant clone 1', 'line': 'A375', 'treatment': 'DMSO'}, 'GSM1700504': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'CPI203'}, 'GSM1700505': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'CPI203'}, 'GSM1700502': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'DMSO'}, 'GSM1700503': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'DMSO'}, 'GSM1700500': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'None'}, 'GSM1700501': {'clone': 'A375 parental', 'line': 'A375', 'treatment': 'None'}, 'GSM1597918': {'status': 'DCM-diagnosed patients who had undergone heart transplant (hDCM)', 'tissue': 'heart'}, 'GSM1597917': {'status': 'DCM-diagnosed patients who had undergone heart transplant (hDCM)', 'tissue': 'heart'}, 'GSM1597916': {'status': 'DCM-diagnosed patients who had undergone heart transplant (hDCM)', 'tissue': 'heart'}, 'GSM1597915': {'status': 'DCM-diagnosed patients who had undergone heart transplant (hDCM)', 'tissue': 'heart'}, 'GSM1597914': {'status': 'DCM-diagnosed patients who had undergone heart transplant (hDCM)', 'tissue': 'heart'}, 'GSM1597913': {'status': 'DCM-diagnosed patients who had undergone heart transplant (hDCM)', 'tissue': 'heart'}, 'GSM1597912': {'status': 'control', 'tissue': 'heart'}, 'GSM1597911': {'status': 'control', 'tissue': 'heart'}, 'GSM1597910': {'status': 'control', 'tissue': 'heart'}, 'GSM1259078': {'line': 'A2780', 'expression': 'p181a#2( clone 2 expressing miR-181a)', 'histology': 'ovarian cancer cell line derived from an undifferentiated ovarian tumor'}, 'GSM1259077': {'line': 'A2780', 'expression': 'p181a#1( clone 1 expressing miR-181a)', 'histology': 'ovarian cancer cell line derived from an undifferentiated ovarian tumor'}, 'GSM1259076': {'line': 'A2780', 'expression': 'pBABE vector', 'histology': 'ovarian cancer cell line derived from an undifferentiated ovarian tumor'}, 'GSM3191557': {'individual': 'T1', 'type': 'peripheral T lymphocytes', 'treatment': 'exosomes treated (Exo-T)'}, 'GSM3191559': {'individual': 'T3', 'type': 'peripheral T lymphocytes', 'treatment': 'exosomes treated (Exo-T)'}, 'GSM3191558': {'individual': 'T2', 'type': 'peripheral T lymphocytes', 'treatment': 'exosomes treated (Exo-T)'}, 'GSM2829998': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1808259': {'line': '--', 'type': 'EBV-positive gastric carcinoma'}, 'GSM1808258': {'line': '--', 'type': 'EBV-positive gastric carcinoma'}, 'GSM2050637': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050636': {'line': 'U2OS', 'antibody': 'non'}, 'GSM1376138': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376139': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2050633': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050632': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050631': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050630': {'line': 'U2OS', 'antibody': 'non'}, 'GSM1376132': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376133': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376130': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376131': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376136': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376137': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376134': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376135': {'state': 'COPD', 'tissue': 'lung'}, 'GSM3190604': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A75', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.313256'}, 'GSM3190605': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-Cpat24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.578796'}, 'GSM3190606': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-Cpat24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.920707'}, 'GSM3190607': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C48', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.230438'}, 'GSM3190600': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.287758'}, 'GSM3190601': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.986856'}, 'GSM3190602': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'Yes', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.643688'}, 'GSM3190603': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A75', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.90802'}, 'GSM3190608': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C48', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.780716'}, 'GSM3190609': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C48', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.783398'}, 'GSM2332726': {'point': 'day 0', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2332727': {'point': 'day 0', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2151927': {'with': '100 ng/ml doxyciclin for 3 days', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM2151926': {'with': 'pInd-ATF3', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM2151928': {'with': '500 ng/ml doxyciclin for 3 days', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM2144087': {'line': 'HCC827', 'tissue': 'in vitro cultured lung cancer cell line', 'transfection': 'empty pcDNA3.1 vector plasmid', 'passage': '29'}, 'GSM2092958': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092959': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092950': {'bin': '1', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092951': {'bin': '1', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092952': {'bin': '4', 'group': 'case (TB progressor)', 'qft': 'negative', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092953': {'bin': '4', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092954': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092955': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092956': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092957': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2274978': {'area_under_the_curve': '0.787159375', 'siteandparticipantcode': '505125', 'baseline_area_under_the_curve': '0.638933438', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '123.1989639', 'auc_percent_of_baseline': '123.1989639', 'trunkbarcode': '916781', 'sampleID': 'S10676', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib821', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_505125', 'gender': 'Male', 'age': '15', 'race': 'White; White', 'libraryid': 'lib821', 'studysiteshort': 'COLUMBIA'}, 'GSM2274979': {'area_under_the_curve': '0.639140313', 'siteandparticipantcode': '493934', 'baseline_area_under_the_curve': '1.24331875', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '51.40599002', 'auc_percent_of_baseline': '51.40599002', 'trunkbarcode': '919266', 'sampleID': 'S10677', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib822', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_493934', 'gender': 'Female', 'age': '10', 'race': 'Black or African American', 'libraryid': 'lib822', 'studysiteshort': 'COLUMBIA'}, 'GSM2274974': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-10', 'trunkbarcode': '930954', 'sampleID': 'S33357', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9820', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9820', 'studysiteshort': 'YALE'}, 'GSM2274975': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-12', 'trunkbarcode': '930954', 'sampleID': 'S33358', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9821', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9821', 'studysiteshort': 'YALE'}, 'GSM2274976': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-13', 'trunkbarcode': '930954', 'sampleID': 'S33359', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9822', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9822', 'studysiteshort': 'YALE'}, 'GSM2274977': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-14', 'trunkbarcode': '930954', 'sampleID': 'S33360', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9823', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9823', 'studysiteshort': 'YALE'}, 'GSM2274970': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-6', 'trunkbarcode': '930954', 'sampleID': 'S33353', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9816', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9816', 'studysiteshort': 'YALE'}, 'GSM2274971': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '500', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-11', 'trunkbarcode': '930954', 'sampleID': 'S33354', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9817', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9817', 'studysiteshort': 'YALE'}, 'GSM2274972': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-7', 'trunkbarcode': '930954', 'sampleID': 'S33355', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9818', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9818', 'studysiteshort': 'YALE'}, 'GSM2274973': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-13', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-8', 'trunkbarcode': '930954', 'sampleID': 'S33356', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9819', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9819', 'studysiteshort': 'YALE'}, 'GSM2125748': {'cancer': 'adjacent normal'}, 'GSM2125749': {'cancer': 'adjacent normal'}, 'GSM2125744': {'cancer': 'adjacent normal'}, 'GSM2125745': {'cancer': 'adjacent normal'}, 'GSM2125746': {'cancer': 'adjacent normal'}, 'GSM2125747': {'cancer': 'adjacent normal'}, 'GSM2125740': {'cancer': 'adjacent normal'}, 'GSM2125741': {'cancer': 'adjacent normal'}, 'GSM2125742': {'cancer': 'adjacent normal'}, 'GSM2125743': {'cancer': 'adjacent normal'}, 'GSM2719891': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719890': {'source': 'none', 'RNAi': 'scrambled control'}, 'GSM2719893': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM2719892': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM3711652': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM3711653': {'Sex': 'F', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM3711650': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '8'}, 'GSM3711651': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '8'}, 'GSM3711656': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '11'}, 'GSM3711657': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '11'}, 'GSM3711654': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '8'}, 'GSM3711655': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM2359806': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM2359807': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM3711658': {'Sex': 'F', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '11'}, 'GSM3711659': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '11'}, 'GSM2359802': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM2359803': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM1533991': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533990': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533993': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM920963': {'barcode': 'TTTAGG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Noninduced', 'name': 'Charlotte', 'day': 'd0'}, 'GSM920964': {'barcode': 'ATTCCA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd1'}, 'GSM920965': {'barcode': 'GCTCAA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd2'}, 'GSM920966': {'barcode': 'CATCCC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd3'}, 'GSM920967': {'barcode': 'TTGGAC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd4'}, 'GSM920968': {'barcode': 'CTGTGT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd5'}, 'GSM920969': {'barcode': 'GGACAT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd6'}, 'GSM2307409': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307408': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307405': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307404': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307407': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307406': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307401': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307400': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307403': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307402': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1207918': {'transfection': 'empty vector', 'line': 'HEK293T'}, 'GSM1094368': {'donor': 'Donor2', 'type': 'macrophage', 'treatments': 'M-CSF + IL27'}, 'GSM1094366': {'donor': 'Donor2', 'type': 'macrophage', 'treatments': 'M-CSF'}, 'GSM1094367': {'donor': 'Donor1', 'type': 'macrophage', 'treatments': 'M-CSF + IL27'}, 'GSM1094365': {'donor': 'Donor1', 'type': 'macrophage', 'treatments': 'M-CSF'}, 'GSM1202521': {'tissue': 'peripheral blood', 'agent': 'BIO_2µM', 'time': '16h'}, 'GSM1202520': {'tissue': 'peripheral blood', 'agent': 'SR1_500nM', 'time': '16h'}, 'GSM1202523': {'tissue': 'peripheral blood', 'agent': 'SR1_500nM+BIO_1µM', 'time': '16h'}, 'GSM1202522': {'tissue': 'peripheral blood', 'agent': 'MeBIO_500nM', 'time': '16h'}, 'GSM1202525': {'tissue': 'bone marrow', 'agent': 'none', 'time': '0h'}, 'GSM1202524': {'tissue': 'peripheral blood', 'agent': 'SR1_500nM+MeBIO_250nM', 'time': '16h'}, 'GSM1202527': {'tissue': 'bone marrow', 'agent': 'SR1_500nM', 'time': '16h'}, 'GSM1202526': {'tissue': 'bone marrow', 'agent': 'DMSO_0.1%', 'time': '16h'}, 'GSM1202529': {'tissue': 'bone marrow', 'agent': 'MeBIO_500nM', 'time': '16h'}, 'GSM1202528': {'tissue': 'bone marrow', 'agent': 'BIO_2µM', 'time': '16h'}, 'GSM3586453': {'origin': 'ABC', 'pfstt': '138', 'pfscs': '1', 'region': 'North America', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '172', 'cycles': '6', 'oscs': '1'}, 'GSM3586451': {'origin': 'UNCLASSIFIED', 'pfstt': '1496', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1675', 'cycles': '6', 'oscs': '0'}, 'GSM1982478': {'transfection': 'negative control'}, 'GSM1982479': {'transfection': 'negative control'}, 'GSM1982477': {'transfection': 'negative control'}, 'GSM1503899': {'line': 'HeLa', 'strategy': 'PARE', 'transfection': 'siSMG6 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503898': {'line': 'HeLa', 'strategy': 'PARE', 'transfection': 'siGL2 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503893': {'line': 'HeLa', 'strategy': 'PARE', 'transfection': 'siSMG6 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503892': {'line': 'HeLa', 'strategy': 'PARE', 'transfection': 'siGL2 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503897': {'line': 'HeLa', 'strategy': 'C-PARE', 'transfection': 'siUPF1 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503896': {'line': 'HeLa', 'strategy': 'C-PARE', 'transfection': 'siSMG6 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503895': {'line': 'HeLa', 'strategy': 'C-PARE', 'transfection': 'siGL2 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503894': {'line': 'HeLa', 'strategy': 'PARE', 'transfection': 'siUPF1 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM2547148': {'tissue': 'right atrial appendage biopsies', 'treatment': 'TGFB1', 'hour': 'cultured for 24 hours'}, 'GSM2102531': {'information': 'Preeclampsia', 'type': 'Amnion', 'gender': 'Male'}, 'GSM2547146': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2547147': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM2547144': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2547145': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM2547142': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2547143': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM2547140': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2547141': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM1084144': {'with': 'scrambled control sequence', 'line': 'HEK293', 'type': 'Human Embryonic Kidney cells'}, 'GSM2102534': {'information': 'Control', 'type': 'Amnion', 'gender': 'Female'}, 'GSM1084142': {'with': 'scrambled control sequence', 'line': 'HEK293', 'type': 'Human Embryonic Kidney cells'}, 'GSM2124761': {'rin': '6.9', 'Sex': 'male'}, 'GSM2112708': {'status': 'Healthy individuals', 'gender': 'female', 'age': '30', 'type': 'CD14-Positive Monocytes cells'}, 'GSM2112709': {'status': 'Healthy individuals', 'gender': 'female', 'age': '31', 'type': 'CD14-Positive Monocytes cells'}, 'GSM1861607': {'name': 'GV_rep2', 'stage': 'Immature oocyte'}, 'GSM1861606': {'name': 'GV_rep1', 'stage': 'Immature oocyte'}, 'GSM1861609': {'name': 'MI_rep2', 'stage': 'Immature oocyte'}, 'GSM1861608': {'name': 'MI_rep1', 'stage': 'Immature oocyte'}, 'GSM2112706': {'status': 'Healthy individuals', 'gender': 'male', 'age': '39', 'type': 'CD14-Positive Monocytes cells'}, 'GSM2112707': {'status': 'Healthy individuals', 'gender': 'male', 'age': '35', 'type': 'CD14-Positive Monocytes cells'}, 'GSM2112705': {'status': 'Healthy individuals', 'gender': 'male', 'age': '25', 'type': 'CD14-Positive Monocytes cells'}, 'GSM2302925': {'status': 'Healthy Adult Control', 'subtype': 'CD161- Tconv', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302924': {'status': 'Healthy Adult Control', 'subtype': 'CD161+ Tconv', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2124762': {'rin': '3.5', 'Sex': 'female'}, 'GSM2302921': {'status': 'Healthy Adult Control', 'subtype': 'CD161- Tconv', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302920': {'status': 'Healthy Adult Control', 'subtype': 'CD161+ Tconv', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302923': {'status': 'Healthy Adult Control', 'subtype': 'CD161- Treg', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2302922': {'status': 'Healthy Adult Control', 'subtype': 'CD161+ Treg', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM2170632': {'stage': 'Hepatic endoderm 1'}, 'GSM2124764': {'rin': '4.3', 'Sex': 'female'}, 'GSM2705964': {'tissue': '17D'}, 'GSM2705965': {'tissue': '19D'}, 'GSM2705966': {'tissue': '21D'}, 'GSM2705967': {'tissue': '23D'}, 'GSM2705960': {'tissue': '5D'}, 'GSM2705961': {'tissue': '6D'}, 'GSM2705962': {'tissue': '7D'}, 'GSM2705963': {'tissue': '15D'}, 'GSM2124766': {'rin': '4.9', 'Sex': 'female'}, 'GSM2705968': {'tissue': '25D'}, 'GSM2705969': {'tissue': '26D'}, 'GSM2837065': {'line': 'KHYG-1', 'type': 'natural killer cell line'}, 'GSM2285414': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'MOLP8', 'treatment': 'DMSO'}, 'GSM2837064': {'line': 'KAI3', 'type': 'natural killer cell line'}, 'GSM1969347': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Trunk wall'}, 'GSM2476013': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2476012': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2476011': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2476010': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2476017': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2476016': {'line': 'Huh7', 'type': 'Ribo-seq', 'time': '60 min'}, 'GSM2476015': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2476014': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2476019': {'line': 'Huh7', 'type': 'mRNA-seq', 'time': '60 min'}, 'GSM2476018': {'line': 'Huh7', 'type': 'Ribo-seq', 'time': '60 min'}, 'GSM2086982': {'knockdown': 'igf2bp3', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2837063': {'line': 'IMC-1', 'type': 'natural killer cell line'}, 'GSM2837062': {'line': 'DERL-7', 'type': 'NK cell characteristics'}, 'GSM2081446': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081447': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081444': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081445': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2883048': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject7', 'drug': 'Metformin'}, 'GSM2883049': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject7', 'drug': 'Metformin'}, 'GSM2081440': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081441': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2883044': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject5', 'drug': 'Metformin'}, 'GSM2883045': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject5', 'drug': 'Metformin'}, 'GSM2883046': {'tissue': 'Abdominal subcutaneous adipose', 'id': 'Subject5', 'drug': 'Metformin'}, 'GSM2883047': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject6', 'drug': 'Metformin'}, 'GSM2883040': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject3', 'drug': 'Metformin'}, 'GSM2883041': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject3', 'drug': 'Metformin'}, 'GSM2883042': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject4', 'drug': 'Metformin'}, 'GSM2883043': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject4', 'drug': 'Metformin'}, 'GSM2067916': {'treatment': 'None', 'variation': 'WT'}, 'GSM2067917': {'treatment': 'None', 'variation': 'WT'}, 'GSM2067918': {'treatment': '4-OHT induced H-Ras V12', 'variation': 'MLL1 KD'}, 'GSM2247749': {'line': 'H9', 'type': 'Mesenchymal stem cells', 'transformation': 'No', 'variation': 'NRF2 A245G/A245G', 'passage': 'early'}, 'GSM2247748': {'line': 'H9', 'type': 'Mesenchymal stem cells', 'transformation': 'No', 'variation': 'NRF2 A245G/A245G', 'passage': 'early'}, 'GSM2067919': {'treatment': '4-OHT induced H-Ras V12', 'variation': 'MLL1 KD'}, 'GSM2247747': {'line': 'H9', 'type': 'Mesenchymal stem cells', 'transformation': 'No', 'variation': 'NRF2 +/+', 'passage': 'early'}, 'GSM2247746': {'line': 'H9', 'type': 'Mesenchymal stem cells', 'transformation': 'No', 'variation': 'NRF2 +/+', 'passage': 'early'}, 'GSM1865618': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865619': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865616': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865617': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM2817122': {'tissues': 'decidual tissues', 'stage': 'early pregnancy'}, 'GSM2817120': {'tissues': 'decidual tissues', 'stage': 'early pregnancy'}, 'GSM2817121': {'tissues': 'decidual tissues', 'stage': 'early pregnancy'}, 'GSM1395661': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395660': {'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395663': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395662': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395665': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395664': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395667': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395666': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395669': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395668': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2373910': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373911': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373912': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373913': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373914': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373915': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373916': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373917': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373918': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373919': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2784529': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '48h'}, 'GSM2784528': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '48h'}, 'GSM2784527': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '48h'}, 'GSM2784526': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '48h'}, 'GSM2784525': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '48h'}, 'GSM2784524': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '48h'}, 'GSM2784523': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '48h'}, 'GSM2784522': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '48h'}, 'GSM2784521': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '48h'}, 'GSM2784520': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '48h'}, 'GSM2092543': {'repertoire': 'TCR-alpha', 'individual': 'patient 8 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2092542': {'repertoire': 'TCR-beta', 'individual': 'patient 8 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092541': {'repertoire': 'TCR-alpha', 'individual': 'patient 8 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092540': {'individual': 'patient 7 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092547': {'repertoire': 'TCR-beta', 'individual': 'patient 9 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092546': {'repertoire': 'TCR-alpha', 'individual': 'patient 9 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092545': {'individual': 'patient 8 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092544': {'repertoire': 'TCR-beta', 'individual': 'patient 8 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2092549': {'repertoire': 'TCR-beta', 'individual': 'patient 9 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2092548': {'repertoire': 'TCR-alpha', 'individual': 'patient 9 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2111660': {'type': 'TC7 cells (Caco-2)', 'condition': 'Non treated cells infected with E. coli LF82'}, 'GSM2111661': {'type': 'TC7 cells (Caco-2)', 'condition': 'Cells treated with TSA and infected with E. coli LF82'}, 'GSM2325968': {'type': 'Human embryonic stem cell'}, 'GSM2325969': {'type': 'Human embryonic stem cell'}, 'GSM2325966': {'type': 'Human embryonic stem cell'}, 'GSM2325967': {'type': 'Human embryonic stem cell'}, 'GSM2325964': {'type': 'Human embryonic stem cell'}, 'GSM2325965': {'type': 'Human embryonic stem cell'}, 'GSM2325962': {'type': 'Human embryonic stem cell'}, 'GSM2325963': {'type': 'Human embryonic stem cell'}, 'GSM2325960': {'type': 'Human embryonic stem cell'}, 'GSM2325961': {'type': 'Human embryonic stem cell'}, 'GSM2131578': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131579': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131576': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131577': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131574': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131575': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131572': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131573': {'tumor': 'tumor', 'step': 'CaP', 'site': 'prostate'}, 'GSM2131570': {'tumor': 'nomal', 'step': 'BPH', 'site': 'prostate'}, 'GSM2131571': {'tumor': 'nomal', 'step': 'BPH', 'site': 'prostate'}, 'GSM2932861': {'pucai': '20', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '12'}, 'GSM2932860': {'pucai': '75', 'score': '4', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '8'}, 'GSM2932863': {'pucai': '35', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932862': {'pucai': '65', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2932865': {'pucai': '50', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2932864': {'pucai': '85', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '17'}, 'GSM2932867': {'pucai': '75', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM2932866': {'pucai': '65', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '12'}, 'GSM2932869': {'pucai': '30', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '13'}, 'GSM2932868': {'pucai': '45', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '7'}, 'GSM1717107': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '11'}, 'GSM1574132': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '34', 'treatment': '100 nM rotenone'}, 'GSM1574133': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '34', 'treatment': '100 nM rotenone'}, 'GSM1574130': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '30', 'treatment': 'none'}, 'GSM1574131': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '34', 'treatment': '100 nM rotenone'}, 'GSM1574136': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '34', 'treatment': 'none'}, 'GSM1574137': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '58', 'treatment': '100 nM rotenone'}, 'GSM1574134': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '34', 'treatment': 'none'}, 'GSM1574135': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '34', 'treatment': 'none'}, 'GSM1574138': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '58', 'treatment': '100 nM rotenone'}, 'GSM1574139': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '58', 'treatment': '100 nM rotenone'}, 'GSM1717103': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '0'}, 'GSM2778481': {'type': 'BRAFi+MEKi', 'treatment': 'on-treatment'}, 'GSM2778480': {'type': 'BRAFi+MEKi', 'treatment': 'on-treatment'}, 'GSM1717101': {'line': 'C32 iPSC', 'type': 'mini-kidney derived from human induced pluripotent stem cells (C32 iPSC)', 'cultured': '0'}, 'GSM2711215': {'tissue': 'Meningioma tumor'}, 'GSM2711214': {'tissue': 'Meningioma tumor'}, 'GSM2649697': {'tumor': 'NORMAL', 'barcode': 'BC2', 'Sex': 'female'}, 'GSM2649696': {'tumor': 'TUMOR', 'barcode': 'BC1', 'Sex': 'female'}, 'GSM2649699': {'tumor': 'TUMOR', 'barcode': 'BC4', 'Sex': 'male'}, 'GSM2711219': {'tissue': 'Meningioma tumor'}, 'GSM2462074': {'strain': 'none', 'time': 'N/A'}, 'GSM2462075': {'strain': 'none', 'time': 'N/A'}, 'GSM2711218': {'tissue': 'Meningioma tumor'}, 'GSM2462070': {'strain': 'V. parahaemolyticus POR4', 'time': '90 minutes'}, 'GSM2462071': {'strain': 'V. parahaemolyticus POR4', 'time': '90 minutes'}, 'GSM2462072': {'strain': 'V. parahaemolyticus POR4', 'time': '90 minutes'}, 'GSM2462073': {'strain': 'none', 'time': 'N/A'}, 'GSM2218715': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2141245': {'individual': 'AF21', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141244': {'individual': 'AF19', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2610782': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2653604': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM434636': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434637': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434634': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434635': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434632': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434633': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434630': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434631': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM2390672': {'tissue': 'Undiff iPS line', 'subject': 'TKDA3 cell line'}, 'GSM2390673': {'tissue': 'Undiff T-cell iPS', 'subject': 'SU042'}, 'GSM2390670': {'tissue': 'Undiff iPS line', 'subject': 'WT3 cell line'}, 'GSM2390671': {'tissue': 'Undiff iPS line', 'subject': 'JMC1 cell line'}, 'GSM2390676': {'tissue': 'Undiff T-cell iPS', 'subject': 'SU223'}, 'GSM2390677': {'tissue': 'Undiff T-cell iPS', 'subject': 'SU223'}, 'GSM434638': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM2390675': {'tissue': 'Undiff T-cell iPS', 'subject': 'SU223'}, 'GSM1533214': {'treatment': 'DOX days 0-2'}, 'GSM2394445': {'individual': 'donor1', 'type': 'HAEC', 'treatment': 'siERG, 4h', 'passage': '6 to 10'}, 'GSM2631731': {'tissue': 'PDX tumor', 'agent': 'Abemaciclib'}, 'GSM2631730': {'tissue': 'PDX tumor', 'agent': 'control'}, 'GSM2394444': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siCEBPD, TNFa, 4h', 'passage': '6 to 10'}, 'GSM1970055': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2429931': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f3', 'treatment': 'none'}, 'GSM1970057': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970056': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970051': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970050': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970053': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970052': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2265806': {'line': 'HeLa', 'sirna': 'TUT7', 'timepoint': '30'}, 'GSM2632274': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2265804': {'line': 'HeLa', 'sirna': 'TUT4', 'timepoint': '30'}, 'GSM2265805': {'line': 'HeLa', 'sirna': 'TUT7', 'timepoint': '0'}, 'GSM1970059': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970058': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2265800': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '30'}, 'GSM2265801': {'line': 'HeLa', 'sirna': 'TUT4', 'timepoint': '0'}, 'GSM3177243': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C18', 'cdai': 'N/A'}, 'GSM3177242': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C18', 'cdai': 'N/A'}, 'GSM3177241': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C17', 'cdai': 'N/A'}, 'GSM3177240': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C17', 'cdai': 'N/A'}, 'GSM3177247': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C20', 'cdai': 'N/A'}, 'GSM3177246': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C20', 'cdai': 'N/A'}, 'GSM3177245': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C19', 'cdai': 'N/A'}, 'GSM3177244': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C19', 'cdai': 'N/A'}, 'GSM3177249': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C3', 'cdai': 'N/A'}, 'GSM3177248': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C3', 'cdai': 'N/A'}, 'GSM2516869': {'death': '91', 'score': 'IV', 'post_mortem_interval': '3', 'caseid': '11-108', 'Sex': 'F', 'rin_score': '6.9', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655379'}, 'GSM2516868': {'death': '87', 'score': 'III', 'post_mortem_interval': '3.5', 'caseid': '02-24', 'Sex': 'M', 'rin_score': '6.2', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655494'}, 'GSM1033478': {'tissue': 'Fetal placenta tissue', 'variation': 'Trisomy 21'}, 'GSM1033475': {'tissue': 'Fetal placenta tissue', 'variation': 'Trisomy 21'}, 'GSM1033474': {'tissue': 'CVS tissue', 'variation': 'normal'}, 'GSM1033477': {'tissue': 'Fetal placenta tissue', 'variation': 'Trisomy 21'}, 'GSM1033476': {'tissue': 'CVS tissue', 'variation': 'Trisomy 21'}, 'GSM1033471': {'tissue': 'CVS tissue', 'variation': 'normal'}, 'GSM1033470': {'tissue': 'CVS tissue', 'variation': 'normal'}, 'GSM1033473': {'tissue': 'CVS tissue', 'variation': 'normal'}, 'GSM1033472': {'tissue': 'CVS tissue', 'variation': 'normal'}, 'GSM1581024': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM2571042': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'SERPINE2_enhancer_KO#2', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571043': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'SERPINE2_enhancer_KO#2', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2674635': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2648906': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM Progesterone', 'time': '24 hours'}, 'GSM2248020': {'line': 'YAPC', 'grnas': 'RFP'}, 'GSM2648904': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': 'Vehicle', 'time': '24 hours'}, 'GSM2571041': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'SERPINE2_enhancer_KO#2', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM3594558': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594559': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594554': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594555': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594556': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594557': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594550': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594551': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594552': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594553': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2807415': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2674631': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674630': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM957399': {'sample': 'GM14408', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1705'}, 'GSM957398': {'sample': 'GM14382', 'protocol': 'non-directional', 'relation': 'twin sister', 'family': '1700'}, 'GSM957395': {'sample': 'GM12874', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1459'}, 'GSM957394': {'sample': 'GM12872', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1459'}, 'GSM957397': {'sample': 'GM14381', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1700'}, 'GSM957396': {'sample': 'GM12891', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1463'}, 'GSM957391': {'sample': 'GM12813', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1454'}, 'GSM957390': {'sample': 'GM12762', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1447'}, 'GSM957393': {'sample': 'GM12815', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1454'}, 'GSM957392': {'sample': 'GM12814', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1454'}, 'GSM2098541': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-FTO_KO'}, 'GSM2187248': {'antibody': 'ZMYND8/RACK7 (Bethyl, A310-739A, lot A310-739A-1)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM1836506': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836507': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U2'}, 'GSM1836504': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836505': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836502': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836503': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836500': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'CAGCTTNNNNT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM1836501': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U1'}, 'GSM2635728': {'genotype': 'YAP-, bCatenin-', 'treatment_time': '24h', 'treatment': 'ChIR'}, 'GSM2635729': {'genotype': 'YAP-, bCatenin-', 'treatment_time': '24h', 'treatment': 'ChIR'}, 'GSM1836508': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM1836509': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM2100086': {'rin': '9.6', 'Sex': 'Female', 'sspg': '253', 'age': '58', 'bmi': '26.7', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '408', 'method': 'Qiagen:trizol'}, 'GSM2100087': {'rin': '8.8', 'Sex': 'Female', 'sspg': '253', 'age': '58', 'bmi': '26.7', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '408', 'method': 'Qiagen:trizol'}, 'GSM2100084': {'rin': '9.5', 'Sex': 'Female', 'sspg': '73', 'age': '41', 'bmi': '33.4', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '371', 'method': 'Life-Tech GITC'}, 'GSM2100085': {'rin': '9.5', 'Sex': 'Female', 'sspg': '73', 'age': '41', 'bmi': '33.4', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '371', 'method': 'Life-Tech GITC'}, 'GSM2100082': {'rin': '10', 'Sex': 'Female', 'sspg': '217', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '28.6', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '62', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '368', 'method': 'Life-Tech GITC'}, 'GSM2100083': {'rin': '9.3', 'Sex': 'Female', 'sspg': '73', 'age': '41', 'bmi': '33.4', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '371', 'method': 'Life-Tech GITC'}, 'GSM2100080': {'rin': '8.8', 'Sex': 'Female', 'sspg': '212', 'age': '43', 'bmi': '32.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '358', 'method': 'Qiagen:trizol'}, 'GSM2100081': {'rin': '9.1', 'Sex': 'Female', 'sspg': '212', 'age': '43', 'bmi': '32.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '358', 'method': 'Qiagen:trizol'}, 'GSM2100088': {'rin': '9.7', 'Sex': 'Female', 'sspg': '253', 'age': '58', 'bmi': '26.7', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '408', 'method': 'Qiagen:trizol'}, 'GSM2100089': {'rin': '10', 'Sex': 'Male', 'sspg': '61', 'age': '59', 'bmi': '21.8', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '410', 'method': 'Life-Tech GITC'}, 'GSM2348497': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348496': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348495': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348494': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348493': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348492': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348491': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348490': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348499': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348498': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2496138': {'line': 'UMRC6', 'variation': 'FLAG-BAP', 'point': 'T0; regular growth medium for 8 h'}, 'GSM2496139': {'line': 'UMRC6', 'variation': 'FLAG-BAP', 'point': 'T4; no glucose in the growth medium for 4hr'}, 'GSM2496132': {'line': 'UMRC6', 'variation': 'Empty-vector', 'point': 'T0; regular growth medium for 8 h'}, 'GSM2496133': {'line': 'UMRC6', 'variation': 'Empty-vector', 'point': 'T4; no glucose in the growth medium for 4hr'}, 'GSM2496131': {'line': 'UMRC6', 'variation': 'Empty-vector', 'point': 'T0; regular growth medium for 8 h'}, 'GSM2496136': {'line': 'UMRC6', 'variation': 'Empty-vector', 'point': 'T8; no glucose in the growth medium for 8hr'}, 'GSM2496137': {'line': 'UMRC6', 'variation': 'FLAG-BAP', 'point': 'T0; regular growth medium for 8 h'}, 'GSM2496134': {'line': 'UMRC6', 'variation': 'Empty-vector', 'point': 'T4; no glucose in the growth medium for 4hr'}, 'GSM2496135': {'line': 'UMRC6', 'variation': 'Empty-vector', 'point': 'T8; no glucose in the growth medium for 8hr'}, 'GSM2176149': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2302030': {'timepoint': 'Pre', 'id': '6', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM1844460': {'line': 'Kasumi-1', 'agent': 'RN-1_1uM', 'point': '72h'}, 'GSM1844461': {'line': 'Kasumi-1', 'agent': 'GSK690*_1uM', 'point': '72h'}, 'GSM1844462': {'line': 'Kasumi-1', 'agent': 'GSK690_1uM', 'point': '72h'}, 'GSM1844463': {'line': 'SK-NO-1', 'agent': 'DMSO', 'point': '72h'}, 'GSM1844464': {'line': 'SK-NO-1', 'agent': 'RN-1_1uM', 'point': '72h'}, 'GSM1844465': {'line': 'SK-NO-1', 'agent': 'GSK690*_1uM', 'point': '72h'}, 'GSM1844466': {'line': 'SK-NO-1', 'agent': 'GSK690_1uM', 'point': '72h'}, 'GSM1844467': {'line': 'SK-NO-1', 'agent': 'DMSO', 'point': '72h'}, 'GSM1844468': {'line': 'SK-NO-1', 'agent': 'RN-1_1uM', 'point': '72h'}, 'GSM1844469': {'line': 'SK-NO-1', 'agent': 'GSK690*_1uM', 'point': '72h'}, 'GSM1967994': {'line': 'MIA PaCa-2'}, 'GSM2311850': {'culture': '12', 'line': 'DCX+'}, 'GSM1967996': {'line': 'MIA PaCa-2'}, 'GSM1967997': {'line': 'MIA PaCa-2'}, 'GSM1319849': {'type': 'in vitro differentiated erythroid cells', 'composition': 'orthochromatic erythrolast and 30% reticulocyte', 'day': 'D14'}, 'GSM1319848': {'type': 'in vitro differentiated erythroid cells', 'composition': 'including basophilic and polychromatic erythroblast cells', 'day': 'D11'}, 'GSM2100214': {'rin': '9.3', 'Sex': 'Female', 'sspg': '158', 'age': '69', 'bmi': '27.3', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '432', 'method': 'Life-Tech GITC'}, 'GSM2479699': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM1319847': {'type': 'in vitro differentiated erythroid cells', 'composition': 'majority in proerythroblast stage', 'day': 'D8'}, 'GSM1319846': {'type': 'in vitro differentiated erythroid cells', 'composition': 'immature erythroid cells', 'day': 'D4'}, 'GSM2453528': {'tissue': 'H1-ESC-1'}, 'GSM2453529': {'tissue': 'H1-EC1-PC'}, 'GSM1545598': {'count': '4', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545599': {'count': '3', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM2031988': {'type': 'Keratinocytes', 'stage': 'Undifferentiated'}, 'GSM2031989': {'type': 'Keratinocytes', 'stage': 'Undifferentiated'}, 'GSM1545590': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545591': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545592': {'count': '2', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545593': {'count': '3', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545594': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545595': {'count': '1', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545596': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545597': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1536671': {'age': '~ Differentiation day 82', 'disease': 'Healthy'}, 'GSM2509539': {'source': 'mammary gland/breast', 'line': 'MDA-MB-231', 'with': 'BETi-211 (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509538': {'source': 'mammary gland/breast', 'line': 'MDA-MB-231', 'with': 'Thalidomide (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2287407': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2509531': {'source': 'mammary gland/breast', 'line': 'MDA-MB-157', 'with': 'BETi-211 (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509530': {'source': 'mammary gland/breast', 'line': 'MDA-MB-157', 'with': 'Thalidomide (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509533': {'source': 'mammary gland/breast', 'line': 'MDA-MB-157', 'with': 'BETd-246 (100 nmol/L) for 3 hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509532': {'source': 'mammary gland/breast', 'line': 'MDA-MB-157', 'with': 'BETi-211 (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509535': {'source': 'mammary gland/breast', 'line': 'MDA-MB-231', 'with': 'DMSO for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509534': {'source': 'mammary gland/breast', 'line': 'MDA-MB-157', 'with': 'BETd-246 (100 nmol/L) for 3 hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509537': {'source': 'mammary gland/breast', 'line': 'MDA-MB-231', 'with': 'Thalidomide (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509536': {'source': 'mammary gland/breast', 'line': 'MDA-MB-231', 'with': 'DMSO for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2179008': {'shrna': 'SF3B1', 'added': 'plus dox', 'name': 'Cal51 CRISPR copy neutral'}, 'GSM2179009': {'shrna': 'SF3B1', 'added': 'plus dox', 'name': 'Cal51'}, 'GSM2287404': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1694203': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694202': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM2303508': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303509': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM1694200': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2287385': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287384': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287387': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2718899': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2287389': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287388': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2303502': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2303503': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2303504': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303505': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303506': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303507': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2179004': {'shrna': 'SF3B1', 'added': 'minus dox', 'name': 'BT549'}, 'GSM2179005': {'shrna': 'Luciferase', 'added': 'plus dox', 'name': 'HCC1954'}, 'GSM2479745': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479742': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479743': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2287400': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2889015': {'tissue': 'pancreatic islets'}, 'GSM2889014': {'tissue': 'pancreatic islets'}, 'GSM1053749': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DTF(3SEQ) signature'}, 'GSM1053748': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DTF(3SEQ) signature'}, 'GSM2889017': {'tissue': 'pancreatic islets'}, 'GSM2889016': {'tissue': 'pancreatic islets'}, 'GSM2889011': {'tissue': 'pancreatic islets'}, 'GSM2889010': {'tissue': 'pancreatic islets'}, 'GSM1298247': {'type': 'CD34+ cells', 'treatment': 'control'}, 'GSM2479748': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479749': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM1298249': {'type': 'CD34+ cells', 'treatment': 'control'}, 'GSM1298248': {'type': 'CD34+ cells', 'treatment': 'ERG overexpression'}, 'GSM2687198': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM2687199': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM1299112': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1299113': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM2687190': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687191': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687192': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687193': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687194': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM1299119': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM2687196': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM2687197': {'cells': 'CHP212', 'tissue': 'Tumor', 'treatment': 'RA', 'point': 'EP'}, 'GSM2527980': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527981': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527982': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527983': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527984': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2305902': {'tissue': 'colon'}, 'GSM2305903': {'tissue': 'colon'}, 'GSM2305900': {'tissue': 'colon'}, 'GSM2305901': {'tissue': 'colon'}, 'GSM2305906': {'tissue': 'colon'}, 'GSM2305907': {'tissue': 'colon'}, 'GSM2305904': {'tissue': 'colon'}, 'GSM2305905': {'tissue': 'colon'}, 'GSM2305908': {'tissue': 'colon'}, 'GSM2305909': {'tissue': 'colon'}, 'GSM1658400': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM2311008': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Invasive mucinous adenocarcinoma of the lung', 'tissue': 'lung', 'id': 'Case5'}, 'GSM2311009': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Invasive mucinous adenocarcinoma of the lung', 'tissue': 'lung', 'id': 'Case6'}, 'GSM2311006': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Invasive mucinous adenocarcinoma of the lung', 'tissue': 'lung', 'id': 'Case3'}, 'GSM2311007': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Invasive mucinous adenocarcinoma of the lung', 'tissue': 'lung', 'id': 'Case4'}, 'GSM2311004': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Invasive mucinous adenocarcinoma of the lung', 'tissue': 'lung', 'id': 'Case1'}, 'GSM2311005': {'status': 'invasive mucinous adenocarcinoma (IMA) patient', 'subtype': 'Invasive mucinous adenocarcinoma of the lung', 'tissue': 'lung', 'id': 'Case2'}, 'GSM1980364': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980365': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980366': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980367': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980360': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980361': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1333379': {'gender': 'Male', 'type': 'METOPIC'}, 'GSM1333378': {'gender': 'Male', 'type': 'METOPIC'}, 'GSM1980368': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980369': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1113360': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 4 post-vaccine'}, 'GSM1113361': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 5 post-vaccine'}, 'GSM1113362': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 6 post-vaccine'}, 'GSM1113363': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 7 post-vaccine'}, 'GSM1113364': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 8 post-vaccine'}, 'GSM1113365': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 9 post-vaccine'}, 'GSM1113366': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 10 post-vaccine'}, 'GSM1113367': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 0 (pre-vaccine)'}, 'GSM1113368': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 1 post-vaccine'}, 'GSM1113369': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 2 post-vaccine'}, 'GSM2385614': {'line': '308', 'type': 'glioblastoma stem cell'}, 'GSM2385615': {'line': '308', 'type': 'glioblastoma stem cell'}, 'GSM2385612': {'line': '1502', 'type': 'glioblastoma stem cell'}, 'GSM2385613': {'line': '1502', 'type': 'glioblastoma stem cell'}, 'GSM2385610': {'line': '1406', 'type': 'glioblastoma stem cell'}, 'GSM2385611': {'line': '1502', 'type': 'glioblastoma stem cell'}, 'GSM2290172': {'antibody': 'p300 (Bethyl, A300-358A/3)', 'type': 'Paediatric pre B-cell line derived from cALL with t(1;19)(q23;p13) translocation'}, 'GSM2290173': {'antibody': 'PBX1/2/3 (Santa Cruz, sc888/J0212)', 'type': 'Paediatric pre B-cell line derived from cALL with t(1;19)(q23;p13) translocation'}, 'GSM2290170': {'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2290171': {'antibody': 'E2A (Cell Signaling, 12258/1)', 'type': 'Paediatric pre B-cell line derived from cALL with t(1;19)(q23;p13) translocation'}, 'GSM2290174': {'type': 'Paediatric pre B-cell line derived from cALL with t(1;19)(q23;p13) translocation'}, 'GSM1963815': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963814': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2719862': {'transduction': 'control', 'line': 'UWB1.289'}, 'GSM2719863': {'transduction': 'shHBO1', 'line': 'UWB1.289'}, 'GSM2392617': {'treatment': 'Vehicle', 'genotype': 'D538G'}, 'GSM2739457': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739456': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739455': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739454': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739453': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739452': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739451': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739450': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739459': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739458': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM1423119': {'dysplasia': 'Low Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423118': {'dysplasia': 'Low Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423113': {'dysplasia': 'High Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423112': {'dysplasia': 'High Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423111': {'dysplasia': 'High Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423110': {'dysplasia': 'High Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423117': {'dysplasia': 'Low Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423116': {'dysplasia': 'High Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423115': {'dysplasia': 'High Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM1423114': {'dysplasia': 'High Grade Dsyplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM2250150': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM3383921': {'tissue': 'pancreas tumor', 'id': 'patient1', 'diagnosis': 'pancreatic cancer'}, 'GSM2448991': {'line': 'HMEC-1', 'drug': 'AMI-1 100μM in DMSO, 16 h'}, 'GSM2275147': {'area_under_the_curve': '0.318277188', 'siteandparticipantcode': '623229', 'baseline_area_under_the_curve': '0.930989219', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '34.18698961', 'auc_percent_of_baseline': '34.18698961', 'trunkbarcode': '926827', 'sampleID': 'S13157', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1565', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'Control', 'name': 'AbATE_623229', 'gender': 'Female', 'age': '15', 'race': 'Black or African American; White', 'libraryid': 'lib1565', 'studysiteshort': 'PNRI'}, 'GSM3383920': {'tissue': 'normal pancreas', 'id': 'patient10', 'diagnosis': 'pancreatic cancer'}, 'GSM1702269': {'line': 'MCF-7', 'tissue': 'breast adenocarcinoma'}, 'GSM1702268': {'line': 'MCF-7', 'tissue': 'breast adenocarcinoma'}, 'GSM2300422': {'variation': 'G870SdeltaHCF1'}, 'GSM2300420': {'variation': 'G870SdeltaHCF1'}, 'GSM2300421': {'variation': 'G870SdeltaHCF1'}, 'GSM2392614': {'treatment': 'Vehicle', 'genotype': 'D538G'}, 'GSM1383544': {'line': 'KMS11', 'type': 'Multiple myeloma', 'phenotype': 'High levels of MMSET', 'passage': '15-20'}, 'GSM2342006': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM2342007': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM1503916': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': \"TCRβ68U_5'Partial\", 'reporter': 'N/A'}, 'GSM1503917': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': \"TCRβ68U_3'Partial\", 'reporter': 'N/A'}, 'GSM1503914': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Unfav1', 'reporter': 'N/A'}, 'GSM1503915': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Unfav2', 'reporter': 'N/A'}, 'GSM1503912': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Fav2', 'reporter': 'N/A'}, 'GSM1503913': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Fav3', 'reporter': 'N/A'}, 'GSM1503910': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_wt', 'reporter': 'N/A'}, 'GSM1503911': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Fav1', 'reporter': 'N/A'}, 'GSM1503918': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_wt', 'reporter': 'N/A'}, 'GSM1503919': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Fav1', 'reporter': 'N/A'}, 'GSM1531416': {'line': 'HeLa', 'transfection': 'RNA-7'}, 'GSM1531417': {'line': 'HeLa', 'transfection': 'pre-miR-106a'}, 'GSM1531414': {'line': 'HeLa', 'transfection': 'control'}, 'GSM1531415': {'line': 'HeLa', 'transfection': 'RNA-7'}, 'GSM1531413': {'line': 'HeLa', 'transfection': 'control'}, 'GSM2139080': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #2 knockdown 96 hrs'}, 'GSM2139081': {'tumor': 'prostatic carcinoma', 'passages': '10 to 15', 'tissue': 'prostate brain metastasis', 'variation': 'shRNA NUSAP #2 knockdown 96 hrs'}, 'GSM2335756': {'line': 'MCF-7', 'tissue': 'breast cancer', 'variation': 'Control'}, 'GSM1531418': {'line': 'HeLa', 'transfection': 'pre-miR-106a'}, 'GSM1531419': {'transfection': 'control', 'type': 'primary human myoblast'}, 'GSM2448994': {'line': 'HMEC-1', 'drug': 'AMI-5 100μM in DMSO, 16 h'}, 'GSM2696576': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1916677': {'line': 'T-47D'}, 'GSM2696577': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1916676': {'line': 'T-47D'}, 'GSM1346273': {'individual': 'Patient-4 (a.k.a. BRx-50)', 'type': 'circulating tumor cell from blood'}, 'GSM2109315': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109314': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109317': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109316': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109311': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109310': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109313': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109312': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM1402581': {'control': 'TRUE', 'line': 'P493-6', 'type': 'B cells', 'treatment': 'FALSE'}, 'GSM1402580': {'control': 'FALSE', 'line': 'P493-6', 'type': 'B cells', 'treatment': 'TRUE'}, 'GSM1402582': {'control': 'FALSE', 'line': 'P493-6', 'type': 'B cells', 'treatment': 'TRUE'}, 'GSM2109319': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2109318': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM1957319': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957318': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957311': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957310': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957313': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957312': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957315': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957314': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957317': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957316': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1400983': {'passage': 'Passage 5', 'tissue': 'foreskin specimen', 'type': 'neonatal dermal blood vascular endothelial cells (BECs)', 'condition': 'laminar flow at 2 Dyne/cm2', 'stage': 'Neonates'}, 'GSM1400982': {'passage': 'Passage 5', 'tissue': 'foreskin specimen', 'type': 'neonatal dermal blood vascular endothelial cells (BECs)', 'condition': 'static', 'stage': 'Neonates'}, 'GSM2696572': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1273840': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'overt GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM2455618': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2092988': {'bin': '28', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM1273841': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'overt GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM1314482': {'culture': '0d culture'}, 'GSM1314483': {'culture': '7d culture'}, 'GSM2455612': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2092982': {'bin': '3', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1273846': {'storage': 'room temperature', 'tissue': 'Soft Tissue', 'group': 'mini GIST (Gastrointestinal stromal tumor)', 'method': 'FFPE'}, 'GSM2092981': {'bin': '3', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2108048': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2108049': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM1980100': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2287568': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2108042': {'type': 'AML cell line', 'translocation': 'MLL-AF4'}, 'GSM2108043': {'type': 'AML cell line', 'translocation': 'MLL-AF4'}, 'GSM2108040': {'type': 'AML cell line', 'translocation': 'MLL-AF4'}, 'GSM2108041': {'type': 'AML cell line', 'translocation': 'MLL-AF4'}, 'GSM2108046': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2108047': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2108044': {'type': 'AML cell line', 'translocation': 'MLL-AF4'}, 'GSM2108045': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2676335': {'type': 'MCF10A-ER-Src', 'agent': 'EtOH', 'variation': 'Ctrl'}, 'GSM2676336': {'type': 'MCF10A-ER-Src', 'agent': 'TAM', 'variation': 'Ctrl'}, 'GSM2676337': {'type': 'MCF10A-ER-Src', 'agent': 'EtOH', 'variation': 'Ctrl'}, 'GSM2676338': {'type': 'MCF10A-ER-Src', 'agent': 'TAM', 'variation': 'Ctrl'}, 'GSM2676339': {'type': 'MCF10A-ER-Src', 'agent': 'TAM', 'variation': 'FOSL1i'}, 'GSM2455615': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2649524': {'set': 'Type 2 (SE)', 'assay': 'IFNg capture'}, 'GSM2649523': {'set': 'Type 1 (ML)', 'assay': 'IFNg capture'}, 'GSM2649522': {'set': 'Type 2 (SE)', 'assay': 'IFNg capture'}, 'GSM2649521': {'set': 'Type 1 (ML)', 'assay': 'IFNg capture'}, 'GSM2649520': {'set': 'Type 1 (ML)', 'assay': 'IFNg capture'}, 'GSM1980102': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2287562': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1687391': {'line': 'HEK293T', 'type': 'Epithelial fetal human kidney cells', 'modifications': 'Contains SV40 T-antigen'}, 'GSM1687390': {'line': 'HEK293T', 'type': 'Epithelial fetal human kidney cells', 'modifications': 'Contains SV40 T-antigen'}, 'GSM1234108': {'replicate': '1', 'line': '19239', 'antibody': 'H3K36me3'}, 'GSM1234109': {'replicate': '2', 'line': '19239', 'antibody': 'H3K36me3'}, 'GSM1234106': {'replicate': '2.2', 'line': '19239', 'antibody': 'H3K27me3'}, 'GSM1234107': {'replicate': '2', 'line': '19239', 'antibody': 'H3K27me3'}, 'GSM1234104': {'replicate': '1.1', 'line': '19239', 'antibody': 'H3K27me3'}, 'GSM1234105': {'replicate': '1.3', 'line': '19239', 'antibody': 'H3K27me3'}, 'GSM1234102': {'replicate': '2', 'line': '19239', 'antibody': 'H3K27Ac'}, 'GSM1234103': {'replicate': '3', 'line': '19239', 'antibody': 'H3K27Ac'}, 'GSM1234100': {'replicate': '2', 'line': '19239', 'antibody': 'CTCF'}, 'GSM1234101': {'replicate': '1.1', 'line': '19239', 'antibody': 'H3K27Ac'}, 'GSM2287567': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2626951': {'origin': 'pancreas', 'patient_id': '144', 'type': 'primary', 'tumor_id': '118'}, 'GSM2626950': {'origin': 'pancreas', 'patient_id': '143', 'type': 'primary', 'tumor_id': '117'}, 'GSM2626953': {'origin': 'pancreas', 'patient_id': '12', 'type': 'primary', 'tumor_id': '12'}, 'GSM2626952': {'origin': 'pancreas', 'patient_id': '145', 'type': 'primary', 'tumor_id': '119'}, 'GSM2626955': {'origin': 'pancreas', 'patient_id': '147', 'type': 'primary', 'tumor_id': '121'}, 'GSM2626954': {'origin': 'pancreas', 'patient_id': '146', 'type': 'primary', 'tumor_id': '120'}, 'GSM2626957': {'origin': 'pancreas', 'patient_id': '151', 'type': 'primary', 'tumor_id': '125'}, 'GSM2626956': {'origin': 'pancreas', 'patient_id': '150', 'type': 'primary', 'tumor_id': '124'}, 'GSM2626959': {'origin': 'pancreas', 'patient_id': '154', 'type': 'primary', 'tumor_id': '128'}, 'GSM2610925': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610924': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM1953940': {'origin': 'human foreskin fibroblast', 'subtype': 'induced pluripotent stem cells', 'line': 'BJ (ATCC, CRL-2522)', 'number': 'p5', 'time': '80% confluence'}, 'GSM2774129': {'status': 'wild-type', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK343'}, 'GSM2610928': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2774122': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK343'}, 'GSM2774124': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK669'}, 'GSM2774126': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK669'}, 'GSM1881544': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881545': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881546': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881547': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM2158274': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2158275': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1881542': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881543': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM2158278': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2158279': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1881548': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM1881549': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'untreated'}, 'GSM979660': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10034', 'readtype': '1x50', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '051WC'}, 'GSM2670996': {'line': 'HCT116', 'antibody': 'rabbit anti H3K4me3 (Zhang et al EMBO J, 24: 2379, 2005)', 'genotype': 'Cdk7as mutant'}, 'GSM2670997': {'line': 'HCT116', 'antibody': 'rabbit anti H3K36me3 (Kim et al PNAS 108:13564, 2011)', 'genotype': 'wildtype'}, 'GSM2670994': {'line': 'HCT116', 'antibody': 'rabbit anti H3K4me3 (Zhang et al EMBO J, 24: 2379, 2005)', 'genotype': 'Cdk7as mutant'}, 'GSM2670995': {'line': 'HCT116', 'antibody': 'rabbit anti H3K4me3 (Zhang et al EMBO J, 24: 2379, 2005)', 'genotype': 'wildtype'}, 'GSM2670992': {'line': 'HCT116', 'antibody': 'rabbit anti-HCE (Glover-Cutter et al NSMB. 15:71, 2008)', 'genotype': 'Cdk7as mutant'}, 'GSM2670993': {'line': 'HCT116', 'antibody': 'rabbit anti H3K4me3 (Zhang et al EMBO J, 24: 2379, 2005)', 'genotype': 'wildtype'}, 'GSM2670990': {'line': 'HCT116', 'antibody': 'rabbit anti-HCE (Glover-Cutter et al NSMB. 15:71, 2008)', 'genotype': 'Cdk7as mutant'}, 'GSM2670991': {'line': 'HCT116', 'antibody': 'rabbit anti-HCE (Glover-Cutter et al NSMB. 15:71, 2008)', 'genotype': 'wildtype'}, 'GSM979662': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10032', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '049WC'}, 'GSM2670998': {'line': 'HCT116', 'antibody': 'rabbit anti H3K36me3 (Kim et al PNAS 108:13564, 2011)', 'genotype': 'Cdk7as mutant'}, 'GSM2670999': {'line': 'HCT116', 'antibody': 'rabbit anti H3 Cter (Zhang et al EMBO J, 24: 2379, 2005)', 'genotype': 'wildtype'}, 'GSM1395368': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSDM13 DMSO', 'timepoint': '12hr'}, 'GSM1395369': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 vorinostat', 'timepoint': '8hr'}, 'GSM1863726': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863727': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863720': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863721': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863722': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863723': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1395360': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '4hr'}, 'GSM1395361': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '8hr'}, 'GSM1395362': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '12hr'}, 'GSM1395363': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 DMSO', 'timepoint': '4hr'}, 'GSM1395364': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 DMSO', 'timepoint': '8hr'}, 'GSM1395365': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 vorinostat', 'timepoint': '4hr'}, 'GSM1395366': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 vorinostat', 'timepoint': '8hr'}, 'GSM1395367': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 DMSO', 'timepoint': '8hr'}, 'GSM2325885': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325884': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325887': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325886': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325881': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325880': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325883': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325882': {'type': 'Differentiated embryonic stem cell'}, 'GSM2175044': {'line': 'K562'}, 'GSM2325889': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325888': {'type': 'Differentiated embryonic stem cell'}, 'GSM2348739': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1202554': {'line': 'MDA-MB-231', 'rep': '2', 'point': '0'}, 'GSM1202555': {'line': 'MDA-MB-231', 'rep': '3', 'point': '0'}, 'GSM3397816': {'status': 'Deficient', 'type': 'Cancer cells'}, 'GSM3397817': {'status': 'Deficient', 'type': 'Cancer cells'}, 'GSM2298954': {'line': 'DU145', 'tissue': 'prostate adenocarcinoma metastaticized to brain', 'type': 'Pca'}, 'GSM2298955': {'line': 'DU145', 'tissue': 'prostate adenocarcinoma metastaticized to brain', 'type': 'Pca'}, 'GSM2298956': {'line': 'DU145', 'tissue': 'prostate adenocarcinoma metastaticized to brain', 'type': 'Pca'}, 'GSM2298957': {'line': 'DU145', 'tissue': 'prostate adenocarcinoma metastaticized to brain', 'type': 'Pca'}, 'GSM2348733': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2298958': {'line': 'DU145', 'tissue': 'prostate adenocarcinoma metastaticized to brain', 'type': 'Pca'}, 'GSM2348730': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2124047': {'type': 'TEMRA', 'id': 'LH068'}, 'GSM2971189': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE424'}, 'GSM2971188': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE415'}, 'GSM2971183': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE382'}, 'GSM2971182': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE267'}, 'GSM2971181': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE267'}, 'GSM2971180': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE224'}, 'GSM2971187': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE415'}, 'GSM2971186': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE413'}, 'GSM2971185': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE413'}, 'GSM2971184': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE382'}, 'GSM3711609': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '8'}, 'GSM3711608': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '14'}, 'GSM2304703': {'antibody': 'H3K4me3 antibody (Millipore, 07-473)', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells'}, 'GSM2304702': {'with': 'MYC shRNAs', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells', 'antibody': 'RNA Pol II antibody (Santa Cruz Biotechnology, sc-899)'}, 'GSM3711607': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '14'}, 'GSM3711606': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'C97JMANXX', 'years': '6'}, 'GSM3711603': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'C97JMANXX', 'years': '14'}, 'GSM3711602': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C97JMANXX', 'years': '9'}, 'GSM2305327': {'subtype': 'RUNX2 DOX inducible model', 'type': 'MCF7', 'condition': 'Full Medium + Doxycycline'}, 'GSM2511624': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511625': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511626': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511627': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511620': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511621': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511622': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511623': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511628': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511629': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM1197614': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM2419778': {'posttransfection': 'Total RNA was extracted at 72h posttransfection', 'knockdown': 'LKB1 siRNA', 'line': 'U87', 'type': 'Glioblastoma'}, 'GSM1197616': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM1197617': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM2153455': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1197611': {'line': 'HeLa', 'treatment': 'over-express N-terminal flag-tagged YTHDF2 for 24h(0.75ug plasmid/mL)'}, 'GSM2176388': {'line': 'K562'}, 'GSM2176389': {'line': 'K562'}, 'GSM2176384': {'line': 'K562'}, 'GSM2176385': {'line': 'K562'}, 'GSM2176386': {'line': 'K562'}, 'GSM2176387': {'line': 'K562'}, 'GSM1197618': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM1197619': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM2125137': {'status': 'ER+/PRA-/PRB+', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2125136': {'status': 'ER+/PRA-/PRB+', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2125135': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2125134': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-PR (inhouse KD68)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2700358': {'line': 'MDA-MB-231', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM2700359': {'line': 'MDA-MB-231', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM2125131': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2125130': {'status': 'ER+/PRA-/PRB+', 'antibody': 'anti-PR (inhouse KD68)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2700354': {'line': 'HT1080', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM2700355': {'line': 'HT1080', 'condition': '6 mg/mL collagen matrix'}, 'GSM2700356': {'line': 'HT1080', 'condition': '6 mg/mL collagen matrix'}, 'GSM2700357': {'line': 'HT1080', 'condition': '6 mg/mL collagen matrix'}, 'GSM2700350': {'line': 'HFF', 'condition': '6 mg/mL collagen matrix'}, 'GSM2700351': {'line': 'HFF', 'condition': '6 mg/mL collagen matrix'}, 'GSM2700352': {'line': 'HT1080', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM2700353': {'line': 'HT1080', 'condition': '2.5 mg/mL collagen matrix'}, 'GSM1937850': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1667179': {'line': 'HCT116', 'shRNA': 'HIF1A null', 'type': 'colorectal carcinoma cell line', 'condition': 'normoxia'}, 'GSM1667178': {'line': 'HCT116', 'shRNA': 'CDK8', 'type': 'colorectal carcinoma cell line', 'condition': 'normoxia'}, 'GSM1667173': {'line': 'HCT116', 'shRNA': 'non-targeting', 'type': 'colorectal carcinoma cell line', 'condition': 'normoxia'}, 'GSM1667177': {'line': 'HCT116', 'shRNA': 'CDK8', 'type': 'colorectal carcinoma cell line', 'condition': 'normoxia'}, 'GSM1667176': {'line': 'HCT116', 'shRNA': 'TIP60', 'type': 'colorectal carcinoma cell line', 'condition': 'normoxia'}, 'GSM1667175': {'line': 'HCT116', 'shRNA': 'TIP60', 'type': 'colorectal carcinoma cell line', 'condition': 'normoxia'}, 'GSM1667174': {'line': 'HCT116', 'shRNA': 'non-targeting', 'type': 'colorectal carcinoma cell line', 'condition': 'normoxia'}, 'GSM2274747': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32812', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9402', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C86', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9402', 'studysiteshort': 'UCSF'}, 'GSM2274746': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32811', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9401', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C68', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9401', 'studysiteshort': 'UCSF'}, 'GSM2274745': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32810', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9400', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C56', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9400', 'studysiteshort': 'UCSF'}, 'GSM2274744': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32809', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9399', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C50', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9399', 'studysiteshort': 'UCSF'}, 'GSM2274743': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32808', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9398', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C75', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9398', 'studysiteshort': 'UCSF'}, 'GSM2274742': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32807', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9397', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C67', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9397', 'studysiteshort': 'UCSF'}, 'GSM2274741': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32806', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9396', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C61', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9396', 'studysiteshort': 'UCSF'}, 'GSM2274740': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32805', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9395', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C55', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9395', 'studysiteshort': 'UCSF'}, 'GSM2274749': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32816', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9406', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C63', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9406', 'studysiteshort': 'UCSF'}, 'GSM2274748': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32814', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9404', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C57', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9404', 'studysiteshort': 'UCSF'}, 'GSM2553020': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'lung', 'Sex': 'female'}, 'GSM2553021': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'tumor', 'Sex': 'female'}, 'GSM2553022': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'tumor', 'Sex': 'female'}, 'GSM2553023': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'tumor', 'Sex': 'female'}, 'GSM2553024': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'tumor', 'Sex': 'female'}, 'GSM2553025': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'tumor', 'Sex': 'female'}, 'GSM2553026': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'tumor', 'Sex': 'female'}, 'GSM1712141': {'line': 'MR49F', 'treatment': 'JQ1-Enzalutamide: CSM'}, 'GSM2348513': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1567938': {'weeks': '20.6'}, 'GSM1567939': {'weeks': '10.3'}, 'GSM1712145': {'line': 'MR49F', 'treatment': 'JQ1: CSM'}, 'GSM1712144': {'line': 'MR49F', 'treatment': 'Enzalutamide-Treated:CSM'}, 'GSM2348514': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348515': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1567932': {'weeks': '20'}, 'GSM1567933': {'weeks': '10.2'}, 'GSM1567930': {'weeks': '10.3'}, 'GSM1567931': {'weeks': '16.4'}, 'GSM1567936': {'weeks': '17.5'}, 'GSM1567937': {'weeks': '20'}, 'GSM1567934': {'weeks': '10.4'}, 'GSM1567935': {'weeks': '17.1'}, 'GSM1965268': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965269': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2667011': {'type': 'Macrophage'}, 'GSM2667010': {'type': 'Macrophage'}, 'GSM2667017': {'type': 'Macrophage'}, 'GSM2667016': {'type': 'Macrophage'}, 'GSM2667015': {'type': 'Macrophage'}, 'GSM2667014': {'type': 'Macrophage'}, 'GSM1965260': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965261': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965262': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965263': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965264': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965265': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965266': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965267': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2055802': {'tissue': 'Hepatocellular carcinoma'}, 'GSM1569578': {'knockdown': 'negative control', 'line': 'HMC-LT', 'antibody': 'H3K9me2'}, 'GSM1569579': {'knockdown': 'shKDM3A', 'line': 'HMC-LT', 'antibody': 'H3K9me2'}, 'GSM1569574': {'knockdown': 'N/A', 'line': 'HMC-LTR', 'antibody': 'H3K9me2'}, 'GSM1569575': {'knockdown': 'N/A', 'line': 'HMC-LTR', 'antibody': 'H3K9me3'}, 'GSM1569576': {'knockdown': 'N/A', 'line': 'HMC-LTR', 'antibody': 'H3K27me3'}, 'GSM1569577': {'knockdown': 'N/A', 'line': 'HMC-LTR', 'antibody': 'H3K4me3'}, 'GSM1569570': {'knockdown': 'N/A', 'line': 'HMC-LT', 'antibody': 'H3K9me2'}, 'GSM1569571': {'knockdown': 'N/A', 'line': 'HMC-LT', 'antibody': 'H3K9me3'}, 'GSM1569572': {'knockdown': 'N/A', 'line': 'HMC-LT', 'antibody': 'H3K27me3'}, 'GSM1569573': {'knockdown': 'N/A', 'line': 'HMC-LT', 'antibody': 'H3K4me3'}, 'GSM1297642': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 9'}, 'GSM1297643': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 9'}, 'GSM1297640': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297641': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 7'}, 'GSM1297646': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM1297647': {'differentiation': 'Differentiation 2, full confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM1297644': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM1297645': {'differentiation': 'Differentiation 1, 80% confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM2535918': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6010', 'samplename': '1_HealthyCtl_RO+_C73', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28969', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6010', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C73'}, 'GSM2535919': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6011', 'samplename': '1_HealthyCtl_RO+_C91', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28970', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6011', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C91'}, 'GSM1297648': {'differentiation': 'Differentiation 2, full confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM1297649': {'differentiation': 'Differentiation 2, full confluency', 'material': 'single cells', 'point': 'Day 14'}, 'GSM2526761': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2616466': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616467': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616464': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2616465': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616462': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2392153': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2616460': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2616461': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2526767': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2392152': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2616468': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2526766': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2153183': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2454741': {'subtype': 'HER2-overexpressing Breast Cancer', 'line': 'SkBr3', 'protocol': 'SkBr3 cells cultured on TCPS', 'platform': 'TCPS'}, 'GSM2454740': {'subtype': 'Triple Negative Breast Cancer', 'line': 'MDA-MB-231', 'protocol': 'MDA-MB-231 cells cultured on TCPS', 'platform': 'TCPS'}, 'GSM2526765': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2153182': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2141446': {'individual': 'AF139', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2142646': {}, 'GSM2142647': {}, 'GSM2142644': {}, 'GSM2142645': {}, 'GSM2142642': {}, 'GSM2142643': {}, 'GSM2142640': {'gender': 'male', 'age': '77', 'who': '0', 'dead': '1', 'date': '2008-11-14', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142641': {'gender': 'female', 'age': '56', 'who': '1', 'dead': '1', 'date': '2013-07-20', 'histology': '2', 'tnm': '4', 'smoking': '1'}, 'GSM2392159': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2142648': {}, 'GSM2142649': {}, 'GSM2141599': {'individual': 'EU164', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141598': {'individual': 'EU164', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141593': {'individual': 'EU156', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141592': {'individual': 'EU156', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141591': {'individual': 'EU152', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141590': {'individual': 'EU152', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141597': {'individual': 'EU162', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141596': {'individual': 'EU162', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141595': {'individual': 'EU162', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141594': {'individual': 'EU156', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141393': {'individual': 'EU76', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2287519': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1446206': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK and EGFR'}, 'GSM1446207': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with GFP'}, 'GSM1446204': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK'}, 'GSM1446205': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with EGFR'}, 'GSM1446202': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK and EGFR'}, 'GSM1446203': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with GFP'}, 'GSM1446200': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK'}, 'GSM1446201': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with EGFR'}, 'GSM1446208': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK'}, 'GSM1446209': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with EGFR'}, 'GSM2286732': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2286731': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2286730': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM1155630': {'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM1155631': {'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM1155632': {'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM1155633': {'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM1155634': {'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM1155635': {'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM1599906': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599907': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599904': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599905': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599902': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T0'}, 'GSM1599903': {'procedure': 'adjustable gastric banding', 'time': 'T3'}, 'GSM1599900': {'procedure': 'adjustable gastric banding', 'time': 'T0'}, 'GSM1599901': {'procedure': 'adjustable gastric banding', 'time': 'T0'}, 'GSM1599908': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1599909': {'procedure': 'Roux-en-Y gastric bypass', 'time': 'T3'}, 'GSM1479455': {'index': '14', 'diagnosis': '7', 'cellcount': '2000000', 'gender': 'F', 'age': '24', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '34', 'collectiondate': 'May 23 2012', 'samplename': '34_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479454': {'index': '20', 'diagnosis': '7', 'cellcount': '19800000', 'gender': 'F', 'age': '24', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '34', 'collectiondate': 'May 23 2012', 'samplename': '34_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479457': {'index': '15', 'diagnosis': '7', 'cellcount': '2000000', 'gender': 'F', 'age': '24', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '34', 'collectiondate': 'May 23 2012', 'samplename': '34_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479456': {'index': '21', 'diagnosis': '7', 'cellcount': '1006332', 'gender': 'F', 'age': '24', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '34', 'collectiondate': 'May 23 2012', 'samplename': '34_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479451': {'index': '7', 'diagnosis': '--', 'cellcount': '273769', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '33', 'collectiondate': 'May 22 2012', 'samplename': '33_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'MS posttreatment'}, 'GSM1479450': {'index': '10', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '33', 'collectiondate': 'May 22 2012', 'samplename': '33_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'MS posttreatment'}, 'GSM1479453': {'index': '12', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '33', 'collectiondate': 'May 22 2012', 'samplename': '33_CD8T', 'celltype': 'CD8', 'diseasestatus': 'MS posttreatment'}, 'GSM1479452': {'index': '11', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '33', 'collectiondate': 'May 22 2012', 'samplename': '33_CD4T', 'celltype': 'CD4', 'diseasestatus': 'MS posttreatment'}, 'GSM1479459': {'index': '16', 'diagnosis': '7', 'cellcount': '320942', 'gender': 'F', 'age': '24', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '34', 'collectiondate': 'May 23 2012', 'samplename': '34_NK', 'celltype': 'NK', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479458': {'index': '22', 'diagnosis': '7', 'cellcount': '2000000', 'gender': 'F', 'age': '24', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '34', 'collectiondate': 'May 23 2012', 'samplename': '34_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1620446': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2218668': {'line': 'WIN1', 'medium': '4i/L/A', 'state': 'naive'}, 'GSM2218669': {'line': 'WIN1', 'medium': '5i/L/A (IM)', 'state': 'naive'}, 'GSM1620447': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2218662': {'line': 'NPC 1.1', 'medium': 'hESM', 'state': 'primed'}, 'GSM2218663': {'line': 'WIBR2', 'medium': 'hESM', 'state': 'primed'}, 'GSM2218660': {'line': 'WIBR1', 'medium': 'hESM', 'state': 'primed'}, 'GSM2218661': {'line': 'NPC 1.1', 'medium': 'hESM', 'state': 'primed'}, 'GSM2218666': {'line': 'WIBR2', 'medium': '5i/L/A (IM)', 'state': 'naive'}, 'GSM2218667': {'line': 'WIBR2', 'medium': '5i/L/A (CH)', 'state': 'naive'}, 'GSM2218664': {'line': 'WIBR2', 'medium': 'hESM', 'state': 'primed'}, 'GSM2218665': {'line': 'WIBR2', 'medium': '4i/L/A', 'state': 'naive'}, 'GSM2424923': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620442': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620443': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2285828': {'status': 'healthy volunteer', 'gender': 'female', 'age': '26', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285829': {'status': 'healthy volunteer', 'gender': 'female', 'age': '75', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1620440': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2285822': {'status': 'healthy volunteer', 'gender': 'female', 'age': '79', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285823': {'status': 'healthy volunteer', 'gender': 'female', 'age': '22', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285820': {'status': 'healthy volunteer', 'gender': 'female', 'age': '83', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1620441': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2285826': {'status': 'healthy volunteer', 'gender': 'female', 'age': '73', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285827': {'status': 'healthy volunteer', 'gender': 'female', 'age': '81', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285824': {'status': 'healthy volunteer', 'gender': 'female', 'age': '72', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285825': {'status': 'healthy volunteer', 'gender': 'female', 'age': '72', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1669188': {'with': 'E2+Progesterone_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669189': {'with': 'E2', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM2251383': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1669180': {'with': 'E2+Progesterone_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669181': {'with': 'E2+Progesterone_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669182': {'with': 'E2+Progesterone_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669183': {'with': 'E2', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669184': {'with': 'E2', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669185': {'with': 'E2+R5020_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669186': {'with': 'E2+Progesterone_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669187': {'with': 'E2+Progesterone_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM678054': {'type': 'Granulocytes'}, 'GSM678055': {'type': 'Granulocytes'}, 'GSM678056': {'type': 'Granulocytes'}, 'GSM678057': {'type': 'Granulocytes'}, 'GSM678050': {'type': 'Granulocytes'}, 'GSM678051': {'type': 'Granulocytes'}, 'GSM678052': {'type': 'Granulocytes'}, 'GSM678053': {'type': 'Granulocytes'}, 'GSM2287464': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287465': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287466': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287467': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM678058': {'type': 'Granulocytes'}, 'GSM678059': {'type': 'Granulocytes'}, 'GSM2287462': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287463': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610824': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610825': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610826': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610827': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610820': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610821': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610822': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610823': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610828': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610829': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1909459': {'line': 'embryonic kidney cell line HEK293T', 'antibody': 'HNRNPG (sc-14581, Santa Cruz, lot# K0614)', 'genotype': 'wild type'}, 'GSM1649155': {'culture': 'alone', 'line': 'ALL leukemia cell line REH', 'replicate': '1', 'time': '0 h'}, 'GSM2114353': {'state': 'Systemic lupus erythematosus', 'group': 'anti-ENA'}, 'GSM2114352': {'state': 'Systemic lupus erythematosus', 'group': 'anti-dsDNA and anti-ENA'}, 'GSM2114351': {'state': 'Systemic lupus erythematosus', 'group': 'anti-dsDNA and anti-ENA'}, 'GSM2114350': {'state': 'Systemic lupus erythematosus', 'group': 'anti-dsDNA and anti-ENA'}, 'GSM2114357': {'state': 'control'}, 'GSM2114356': {'state': 'Systemic lupus erythematosus', 'group': 'anti-ENA'}, 'GSM2114355': {'state': 'Systemic lupus erythematosus', 'group': 'anti-ENA'}, 'GSM2114354': {'state': 'Systemic lupus erythematosus', 'group': 'anti-ENA'}, 'GSM2151523': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151522': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2114359': {'state': 'control'}, 'GSM2114358': {'state': 'control'}, 'GSM2151527': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151526': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151525': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151524': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2535789': {'status': 'HiAff_Unstim_Bulk', 'lane': '4,8', 'samplelabel': 'lib2368', 'samplename': 'HiAff_Unstim_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19790', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '3', 'stim': 'Unstim', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2368', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM2932935': {'pucai': '80', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '13'}, 'GSM2366264': {'line': 'SNU-638', 'genotype': 'wild type'}, 'GSM2366265': {'line': 'SNU-638', 'genotype': 'knockout of miR-221'}, 'GSM2366266': {'line': 'SNU-638', 'genotype': 'knockout of miR-222'}, 'GSM2366267': {'line': 'SNU-638', 'genotype': 'knockout of miR-221 and miR-222'}, 'GSM2212237': {'antibody': 'BRD4 (Bethyl, A301-985A/1)', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212236': {'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212235': {'antibody': 'KDM2B (gift from Rob Klose)', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212234': {'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212239': {'antibody': 'MED1 (Bethyl, A300-793A/2)', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2212238': {'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation'}, 'GSM2225659': {'disease': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2225658': {'disease': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM1704588': {'protocol': '24 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704589': {'protocol': '48 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704582': {'protocol': '24 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704583': {'protocol': '48 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704580': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704581': {'protocol': '12 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704586': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704587': {'protocol': '12 h DENV2 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704584': {'protocol': '6 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704585': {'protocol': '72 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM2093221': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093220': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093223': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093222': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093225': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093224': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093227': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093226': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093229': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093228': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2828609': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 2653', 'type': 'CD8 T cells'}, 'GSM1354843': {'donor': 'donor No.2', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354841': {'donor': 'donor No.1', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354846': {'donor': 'donor No.3', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354847': {'donor': 'donor No.4', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354844': {'donor': 'donor No.2', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1354845': {'donor': 'donor No.3', 'tissue': 'adjacent normal tissue', 'organ': 'endometrium', 'gender': 'female'}, 'GSM2828601': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3028', 'type': 'CD8 T cells'}, 'GSM2828600': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3027', 'type': 'CD8 T cells'}, 'GSM2828603': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3037', 'type': 'CD8 T cells'}, 'GSM2828602': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3031', 'type': 'CD8 T cells'}, 'GSM2828605': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3043', 'type': 'CD8 T cells'}, 'GSM2828604': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3038', 'type': 'CD8 T cells'}, 'GSM2828607': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3047', 'type': 'CD8 T cells'}, 'GSM2828606': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3045', 'type': 'CD8 T cells'}, 'GSM2507570': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'SF3B1 Q698del'}, 'GSM2153389': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153388': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153381': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153380': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153383': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153382': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153385': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153384': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153387': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153386': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1642801': {'line': 'HeLa', 'type': 'Cervical cancer cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM2692578': {'line': 'PC9', 'treatment': 'PC9+DMSO'}, 'GSM2692579': {'line': 'PC9', 'treatment': 'PC9+DMSO'}, 'GSM2692577': {'line': 'PC9', 'treatment': 'PC9+DMSO'}, 'GSM1435821': {'type': 'Monocyte-derived denditric cells'}, 'GSM2361544': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361545': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1183338': {'start': '15 minutes after washout', 'stranded': 'TRUE', 'type': 'Foreskin fibroblasts', 'treatment': 'CPT exposure', 'time': '15 minutes'}, 'GSM1183339': {'start': 'NA', 'stranded': 'TRUE', 'type': 'Cockayne syndrome group B fibroblasts', 'treatment': 'Control', 'time': '30 minutes'}, 'GSM2361540': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361541': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361542': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361543': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1183336': {'start': '15 minutes prior to washout', 'stranded': 'TRUE', 'type': 'Foreskin fibroblasts', 'treatment': 'CPT exposure', 'time': '15 minutes'}, 'GSM1183337': {'start': 'Immediately after washout', 'stranded': 'TRUE', 'type': 'Foreskin fibroblasts', 'treatment': 'CPT exposure', 'time': '15 minutes'}, 'GSM1183334': {'start': 'NA', 'stranded': 'TRUE', 'type': 'Foreskin fibroblasts', 'treatment': 'Control', 'time': '30 minutes'}, 'GSM1183335': {'start': 'NA', 'stranded': 'TRUE', 'type': 'Foreskin fibroblasts', 'treatment': 'Control', 'time': '30 minutes'}, 'GSM2175737': {'type': 'CD19+ B cells', 'by': 'EBV strain B95-8', 'treatment': 'pretreated for 2 minutes with harringtonine'}, 'GSM2175738': {'type': 'CD19+ B cells', 'by': 'EBV strain B95-8', 'treatment': 'pretreated for 5 minutes with harringtonine'}, 'GSM2175739': {'type': 'CD19+ B cells', 'by': 'EBV strain B95-8', 'treatment': 'pretreated for 2 minutes with harringtonine'}, 'GSM1955876': {'a': '63296', 'cd38': '862', 'cd49f': '575', 'w': '66498', 'h': '62380', 'lin': '-166', 'cd34': '12170', 'cd90': '536', 'cd7': '169', 'cd10': '666', 'time': '19457', 'cd135': '4192', 'cd45ra': '313'}, 'GSM1955877': {'a': '70633', 'cd38': '-19', 'cd49f': '622', 'w': '66018', 'h': '70117', 'lin': '192', 'cd34': '8783', 'cd90': '1156', 'cd7': '837', 'cd10': '545', 'time': '19678', 'cd135': '6639', 'cd45ra': '504'}, 'GSM1955874': {'a': '53864', 'cd38': '891', 'cd49f': '253', 'w': '64610', 'h': '54636', 'lin': '131', 'cd34': '6792', 'cd90': '794', 'cd7': '-51', 'cd10': '664', 'time': '19025', 'cd135': '6098', 'cd45ra': '1710'}, 'GSM1955875': {'a': '73251', 'cd38': '1046', 'cd49f': '452', 'w': '74326', 'h': '64588', 'lin': '-161', 'cd34': '4086', 'cd90': '168', 'cd7': '346', 'cd10': '1486', 'time': '19252', 'cd135': '4892', 'cd45ra': '8321'}, 'GSM1955872': {'a': '68502', 'cd38': '-276', 'cd49f': '825', 'w': '66714', 'h': '67292', 'lin': '749', 'cd34': '13145', 'cd90': '2142', 'cd7': '617', 'cd10': '823', 'time': '18632', 'cd135': '2117', 'cd45ra': '245'}, 'GSM1955873': {'a': '53231', 'cd38': '952', 'cd49f': '102', 'w': '68305', 'h': '51073', 'lin': '-212', 'cd34': '9166', 'cd90': '450', 'cd7': '98', 'cd10': '1075', 'time': '18833', 'cd135': '2584', 'cd45ra': '165'}, 'GSM1955870': {'a': '55736', 'cd38': '777', 'cd49f': '436', 'w': '66024', 'h': '55324', 'lin': '-247', 'cd34': '3565', 'cd90': '1351', 'cd7': '-125', 'cd10': '453', 'time': '18157', 'cd135': '861', 'cd45ra': '103'}, 'GSM1955871': {'a': '61446', 'cd38': '662', 'cd49f': '381', 'w': '65826', 'h': '61176', 'lin': '4', 'cd34': '3898', 'cd90': '1140', 'cd7': '-170', 'cd10': '1034', 'time': '18358', 'cd135': '2444', 'cd45ra': '251'}, 'GSM1955878': {'a': '75145', 'cd38': '715', 'cd49f': '376', 'w': '66151', 'h': '74446', 'lin': '-182', 'cd34': '5881', 'cd90': '2075', 'cd7': '414', 'cd10': '699', 'time': '19887', 'cd135': '5021', 'cd45ra': '405'}, 'GSM1955879': {'a': '58049', 'cd38': '688', 'cd49f': '521', 'w': '66836', 'h': '56920', 'lin': '373', 'cd34': '3994', 'cd90': '683', 'cd7': '453', 'cd10': '913', 'time': '20090', 'cd135': '1542', 'cd45ra': '294'}, 'GSM2689208': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689209': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689206': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689207': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689204': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689205': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689202': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689203': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689200': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689201': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2350113': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350112': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350111': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2304591': {'type': 'HUVEC', 'treatment': 'non-treated'}, 'GSM2350117': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350116': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350115': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350114': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350119': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350118': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2307023': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307022': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307021': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307020': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307027': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307026': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307025': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307024': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307029': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307028': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1838919': {'replicate': 'Replicate 2', 'line': 'U2OS', 'with': 'Wild type BRD4'}, 'GSM1838918': {'replicate': 'Replicate 1', 'line': 'U2OS', 'with': 'Wild type BRD4'}, 'GSM1838913': {'replicate': 'Replicate 2', 'line': 'U2OS', 'with': 'Wild type BRD4'}, 'GSM1838912': {'replicate': 'Replicate 1', 'line': 'U2OS', 'with': 'Wild type BRD4'}, 'GSM1838911': {'replicate': 'Replicate 2', 'line': 'U2OS', 'with': 'pCDNA vector'}, 'GSM1838910': {'replicate': 'Replicate 1', 'line': 'U2OS', 'with': 'pCDNA vector'}, 'GSM1838917': {'replicate': 'Replicate 2', 'line': 'U2OS', 'with': 'pCDNA vector'}, 'GSM1838916': {'replicate': 'Replicate 1', 'line': 'U2OS', 'with': 'pCDNA vector'}, 'GSM1838915': {'replicate': 'Replicate 2', 'line': 'U2OS', 'with': 'HAT mutant BRD4'}, 'GSM1838914': {'replicate': 'Replicate 1', 'line': 'U2OS', 'with': 'HAT mutant BRD4'}, 'GSM699727': {'vendor': 'Millipore', 'number': '05-690', 'variation': 'Wild type', 'stimulation': 'none', 'program': 'ELAND', 'numbers': '1501782 and 17908001', 'line': 'HCT116', 'antibody': 'HP1 gamma'}, 'GSM699729': {'vendor': 'Millipore', 'number': '05-690', 'variation': 'Wild type', 'stimulation': 'none', 'program': 'ELAND', 'numbers': '1501782 and 17908001', 'line': 'HCT116', 'antibody': 'HP1 gamma'}, 'GSM699728': {'stimulation': 'none', 'line': 'HCT116', 'program': 'ELAND', 'antibody': 'none', 'variation': 'Wild type'}, 'GSM1957438': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957439': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2672100': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM1957430': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957431': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957432': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957433': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957434': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957435': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957436': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957437': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2544235': {'antibody': 'anti-POLR3D (abcam ab86786; lot# GR267691-1)', 'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2544234': {'antibody': 'anti-POLR3D (abcam ab86786; lot# GR267691-1)', 'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2544237': {'antibody': 'anti-H3K27ac (abcam ab4729)', 'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2544236': {'antibody': 'anti-H3K27ac (abcam ab4729)', 'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2544231': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2544230': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM3594721': {'cluster': '8', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594720': {'cluster': '5', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM2544239': {'antibody': 'anti-H3K27ac (abcam ab4729)', 'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM1906590': {'modification': 'Stably transduced with shRNA to SREBF2', 'line': 'THP1 monocytic cells', 'condition': '80nM PMA for 72h'}, 'GSM2133538': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133539': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133530': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133531': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133532': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133533': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133534': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133535': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133536': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133537': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2771739': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_14', 'structure': 'cell body'}, 'GSM1327344': {'stage': 'Human umbilical vein endothelial cells', 'type': 'HUVEC', 'time': '0 days'}, 'GSM1173131': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Mesenchymal with OVOL2 overexpression'}, 'GSM1173130': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Mesenchymal with OVOL2 overexpression'}, 'GSM2561533': {'line': 'MCF7', 'tissue': 'breast cancer', 'treatment': '24h normoxia', 'density': '0.6 million per 6cm tissue culture dish'}, 'GSM1948931': {'line': 'IMR90', 'passage': 'p13', 'variation': 'ARID1B overexpression', 'time': '6 days after infection'}, 'GSM1948930': {'line': 'IMR90', 'passage': 'p13', 'variation': 'ARID1B overexpression', 'time': '6 days after infection'}, 'GSM1948932': {'line': 'IMR90', 'passage': 'p13', 'variation': 'ARID1B overexpression', 'time': '6 days after infection'}, 'GSM1826312': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1142038': {'line': 'HEK293', 'passages': '5-15', 'plasmid': 'pCag-EGFP'}, 'GSM1142039': {'line': 'HEK293', 'passages': '5-15', 'plasmid': 'pCag-EGFP_MosIR'}, 'GSM1826313': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1826310': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1826311': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM2840355': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840354': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840357': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840356': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840351': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840350': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840353': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840352': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840359': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840358': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1632191': {'type': 'U2OS', 'treatment': 'control'}, 'GSM2590124': {'level': 'mycnLow', 'treatment': 'doxorubicin_washout', 'time': '72h_3d'}, 'GSM2590125': {'level': 'mycnHigh', 'treatment': 'doxorubicin_washout', 'time': '72h_3d'}, 'GSM2590126': {'level': 'mycnLow', 'treatment': 'doxorubicin_washout', 'time': '72h_3d'}, 'GSM2590127': {'level': 'mycnHigh', 'treatment': 'doxorubicin_washout', 'time': '72h_8d'}, 'GSM2590120': {'level': 'mycnLow', 'treatment': 'doxorubicin_treatment_for_72h', 'time': '72h'}, 'GSM2590121': {'level': 'mycnHigh', 'treatment': 'doxorubicin_treatment_for_72h', 'time': '72h'}, 'GSM2590122': {'level': 'mycnLow', 'treatment': 'doxorubicin_treatment_for_72h', 'time': '72h'}, 'GSM2590123': {'level': 'mycnHigh', 'treatment': 'doxorubicin_washout', 'time': '72h_3d'}, 'GSM2590128': {'level': 'mycnLow', 'treatment': 'doxorubicin_washout', 'time': '72h_8d'}, 'GSM2590129': {'level': 'mycnHigh', 'treatment': 'doxorubicin_washout', 'time': '72h_8d'}, 'GSM2665789': {'age': 'Day 175', 'well': 'B12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665788': {'age': 'Day 175', 'well': 'G1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665785': {'age': 'Day 175', 'well': 'C11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665784': {'age': 'Day 175', 'well': 'G11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665787': {'age': 'Day 175', 'well': 'A4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665786': {'age': 'Day 175', 'well': 'D8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665781': {'age': 'Day 175', 'well': 'F8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665780': {'age': 'Day 175', 'well': 'C1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665783': {'age': 'Day 175', 'well': 'F11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665782': {'age': 'Day 175', 'well': 'H5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2754571': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0886', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754570': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0886', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754573': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': '13.2', 'type': 'Tcells'}, 'GSM2754572': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754575': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754574': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754577': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_1125', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754576': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_1125', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754579': {'bin': '2', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0910', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754578': {'bin': '2', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0910', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2068357': {'time': '6hrs', 'antibody': 'Histone H3 (abcam, ab1791)', 'dose': '0 ng/ml doxycycline'}, 'GSM2068356': {'time': '6hrs', 'antibody': 'H3K27Ac (abcam, ab4729)', 'dose': '0 ng/ml doxycycline'}, 'GSM2068355': {'time': '6hrs', 'antibody': 'none', 'dose': '0 ng/ml doxycycline'}, 'GSM2068359': {'time': '6hrs', 'dose': '0 ng/ml doxycycline'}, 'GSM2068358': {'time': '6hrs', 'antibody': 'H3K4me3 (abcam, ab8580)', 'dose': '0 ng/ml doxycycline'}, 'GSM2616707': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616706': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616705': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616704': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616703': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616702': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616701': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616700': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2142420': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2616709': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616708': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM1233947': {'replicate': '1', 'line': '12891', 'antibody': 'H3K4me3'}, 'GSM1233946': {'replicate': '3', 'line': '12891', 'antibody': 'H3K4me1'}, 'GSM1233945': {'replicate': '2', 'line': '12891', 'antibody': 'H3K4me1'}, 'GSM1233944': {'replicate': '1', 'line': '12891', 'antibody': 'H3K4me1'}, 'GSM1233943': {'replicate': '2', 'line': '12891', 'antibody': 'H3K36me3'}, 'GSM1233942': {'replicate': '1', 'line': '12891', 'antibody': 'H3K36me3'}, 'GSM1233941': {'replicate': '2', 'line': '12891', 'antibody': 'H3K27me3'}, 'GSM1233940': {'replicate': '2.2', 'line': '12891', 'antibody': 'H3K27me3'}, 'GSM1233949': {'replicate': '3', 'line': '12891', 'antibody': 'H3K4me3'}, 'GSM1233948': {'replicate': '2', 'line': '12891', 'antibody': 'H3K4me3'}, 'GSM1863683': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863682': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863681': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863680': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863687': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863686': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863685': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863684': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863689': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863688': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM2200844': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2124793': {'type': 'non-tumor CD11b+ microglia samples'}, 'GSM2088122': {'status': 'Dysplasia', 'ratio': '1.672625951', 'point': 't3', 'age': '59.625', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '47', 'alignments': '60446978', 'id': 'Patient_P29', 'alignment': '37332235'}, 'GSM2088123': {'status': 'Dysplasia', 'ratio': '1.775185012', 'point': 't2', 'age': '57.818', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '59', 'alignments': '58343240', 'id': 'Patient_P8', 'alignment': '35875110'}, 'GSM2088120': {'status': 'Normal', 'ratio': '1.398158602', 'point': 't2', 'age': '64.57', 'Sex': 'Female', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'years': '106', 'alignments': '78288376', 'id': 'Patient_P24', 'alignment': '48181395'}, 'GSM2088121': {'status': 'Normal', 'ratio': '1.514892093', 'point': 't2', 'age': '64.34', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'years': '54', 'alignments': '61583322', 'id': 'Patient_P20', 'alignment': '37935705'}, 'GSM2088126': {'status': 'Dysplasia', 'ratio': '1.799440332', 'point': 't3', 'age': '65.252', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'years': '53', 'alignments': '60299050', 'id': 'Patient_P31', 'alignment': '36856096'}, 'GSM2088127': {'status': 'Normal', 'ratio': '1.907018713', 'point': 't2', 'age': '58.565', 'Sex': 'Male', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'years': '30', 'alignments': '56590450', 'id': 'Patient_P26', 'alignment': '35301936'}, 'GSM2088124': {'status': 'Normal', 'ratio': '1.492860982', 'point': 't2', 'age': '61.963', 'Sex': 'Male', 'content': '50.51', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '80', 'alignments': '59513646', 'id': 'Patient_P9', 'alignment': '37078843'}, 'GSM2088125': {'status': 'Normal', 'ratio': '1.777650261', 'point': 't3', 'age': '53.371', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '52', 'alignments': '70526688', 'id': 'Patient_P17', 'alignment': '43661020'}, 'GSM2088128': {'status': 'Dysplasia', 'ratio': '1.545489296', 'point': 't1', 'age': '72.396', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'years': '8', 'alignments': '67950740', 'id': 'Patient_P11', 'alignment': '42018141'}, 'GSM2088129': {'status': 'Normal', 'ratio': '2.166042335', 'point': 't2', 'age': '56.818', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '78', 'alignments': '61998066', 'id': 'Patient_P22', 'alignment': '37653112'}, 'GSM1395618': {'subtype': 'Cla+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2526903': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1548014': {'sample': 'passages 10-15', 'line': 'UCLA1', 'type': 'TRA-1-81+ FACS sort'}, 'GSM1548012': {'sample': 'passages 42-45', 'line': 'H1', 'type': 'TRA-1-81+ FACS sort'}, 'GSM1548013': {'sample': 'passages 10-15', 'line': 'UCLA1', 'type': 'TRA-1-81+ FACS sort'}, 'GSM1548010': {'sample': 'embryo', 'age': '137 days', 'type': 'cKIT+ FACS sort'}, 'GSM1548011': {'sample': 'passages 42-45', 'line': 'H1', 'type': 'TRA-1-81+ FACS sort'}, 'GSM2098976': {'status': 'T. gondii infected', 'type': 'hff'}, 'GSM2526900': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526904': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2302020': {'timepoint': 'Pre', 'id': '1', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302021': {'timepoint': 'Post', 'id': '1', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302022': {'timepoint': 'Pre', 'id': '2', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302023': {'timepoint': 'Post', 'id': '2', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302024': {'timepoint': 'Pre', 'id': '3', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302025': {'timepoint': 'Post', 'id': '3', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302026': {'timepoint': 'Pre', 'id': '4', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302027': {'timepoint': 'Post', 'id': '4', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302028': {'timepoint': 'Pre', 'id': '5', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302029': {'timepoint': 'Post', 'id': '5', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2243543': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243542': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243541': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243540': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243547': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243546': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243545': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243544': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'B3', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243549': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243548': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1914458': {'group': 'C116_NSC', 'region': 'C116', 'type': 'NSC'}, 'GSM2332414': {'line': 'HUH7', 'point': 'NoEU'}, 'GSM2332415': {'line': 'HUH7', 'point': 'NoEU'}, 'GSM2332412': {'line': 'HUH7', 'point': 'asynchronous'}, 'GSM2332413': {'line': 'HUH7', 'point': 'NoEU'}, 'GSM2332410': {'line': 'HUH7', 'point': 'asynchronous'}, 'GSM2332411': {'line': 'HUH7', 'point': 'asynchronous'}, 'GSM1914457': {'group': 'C116_NSC', 'region': 'C116', 'type': 'NSC'}, 'GSM2883019': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject14', 'drug': 'Metformin'}, 'GSM2883018': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject13', 'drug': 'Metformin'}, 'GSM1643966': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2 for 3h'}, 'GSM1616201': {'origin': 'derived from parental OVCAR-3 ovarian carcinoma cells', 'status': 'wild-type', 'shrna': 'scrambled pRS shRNA HuSH-29 plasmid (OriGene)'}, 'GSM1643964': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643965': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643962': {'antibody': 'p65 (Vendor: Santa Cruz, cat# sc-372, lot# D0604)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa for 45m'}, 'GSM1643963': {'antibody': 'p65 (Vendor: Santa Cruz, cat# sc-372, lot# D0604)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa for 45m'}, 'GSM1643960': {'antibody': 'p65 (Vendor: Santa Cruz, cat# sc-372, lot# D0604)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b for 45m'}, 'GSM1643961': {'antibody': 'p65 (Vendor: Santa Cruz, cat# sc-372, lot# D0604)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b for 45m'}, 'GSM1643968': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+ICI for 3h'}, 'GSM1643969': {'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2+ICI for 3h'}, 'GSM1492706': {'status': 'EBV(+); experimentally infected with EBV', 'line': 'NUGC3-EBV', 'type': 'NUGC3 in vitro infected with EBV'}, 'GSM1492707': {'status': 'EBV(-)', 'line': 'SNU-484', 'type': 'human gastric cancer cell line'}, 'GSM1492704': {'status': 'EBV(+); naturally infected with EBV', 'line': 'NCC-24', 'type': 'human gastric cancer cell line with natural EBV infection'}, 'GSM1492705': {'status': 'EBV(-)', 'line': 'NUGC3', 'type': 'human gastric cancer cell line'}, 'GSM2299187': {'from': 'human induced pluripotent stem cells', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM1492708': {'status': 'EBV(+); experimentally infected with EBV', 'line': 'SNU-484-EBV', 'type': 'SNU-484 in vitro infected with EBV'}, 'GSM1492709': {'status': 'EBV(-)', 'line': 'SNU-638', 'type': 'human gastric cancer cell line'}, 'GSM2284653': {'tissue': 'Cord blood'}, 'GSM2100248': {'rin': '10', 'Sex': 'Male', 'sspg': '136', 'age': '61', 'bmi': '35.6', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'L2110088', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '906', 'method': 'Life-Tech GITC'}, 'GSM2100249': {'rin': '10', 'Sex': 'Male', 'sspg': '136', 'age': '61', 'bmi': '35.6', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'L2110088', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '906', 'method': 'Life-Tech GITC'}, 'GSM2229912': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS17'}, 'GSM2229913': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS17'}, 'GSM2229914': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS23'}, 'GSM2229915': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS23'}, 'GSM2229916': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS23'}, 'GSM2229917': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS23'}, 'GSM2100240': {'rin': '9.7', 'Sex': 'Female', 'sspg': '41', 'age': '53', 'bmi': '25.9', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '845', 'method': 'Qiagen:trizol'}, 'GSM2100241': {'rin': '9.5', 'Sex': 'Male', 'sspg': '43', 'age': '63', 'bmi': '31.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '864', 'method': 'Qiagen:trizol'}, 'GSM2100242': {'rin': '9.7', 'Sex': 'Male', 'sspg': '43', 'age': '63', 'bmi': '31.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '864', 'method': 'Qiagen:trizol'}, 'GSM2100243': {'rin': '9.6', 'Sex': 'Male', 'sspg': '43', 'age': '63', 'bmi': '31.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '864', 'method': 'Qiagen:trizol'}, 'GSM2100244': {'rin': '10', 'Sex': 'Male', 'sspg': '235', 'age': '62', 'bmi': '36.7', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '865', 'method': 'Life-Tech GITC'}, 'GSM2100245': {'rin': '10', 'Sex': 'Male', 'sspg': '235', 'age': '62', 'bmi': '36.7', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '865', 'method': 'Life-Tech GITC'}, 'GSM2100246': {'rin': '10', 'Sex': 'Male', 'sspg': '235', 'age': '62', 'bmi': '36.7', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '865', 'method': 'Life-Tech GITC'}, 'GSM2100247': {'rin': '10', 'Sex': 'Male', 'sspg': '136', 'age': '61', 'bmi': '35.6', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': 'L2110088', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '906', 'method': 'Life-Tech GITC'}, 'GSM2684099': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2471974': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM1915999': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'Ribo-Zero'}, 'GSM1915998': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'Ribo-Zero'}, 'GSM2471972': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM1367787': {'strain': 'A549', 'sensitivity': 'sensitive', 'tissue': 'lung', 'type': 'non-small cell lung cancer'}, 'GSM1367786': {'strain': 'A549', 'sensitivity': 'sensitive', 'tissue': 'lung', 'type': 'non-small cell lung cancer'}, 'GSM1367785': {'strain': 'A549', 'sensitivity': 'sensitive', 'tissue': 'lung', 'type': 'non-small cell lung cancer'}, 'GSM1367789': {'strain': 'A549/Abr', 'sensitivity': 'resistant', 'tissue': 'lung', 'type': 'non-small cell lung cancer'}, 'GSM1367788': {'strain': 'A549/Abr', 'sensitivity': 'resistant', 'tissue': 'lung', 'type': 'non-small cell lung cancer'}, 'GSM2679461': {'line': 'BLCL (165)'}, 'GSM2679460': {'line': 'BLCL (165)'}, 'GSM2679463': {'line': 'BLCL (165)'}, 'GSM2679462': {'line': 'BLCL (165)'}, 'GSM2679465': {'line': 'BLCL (165)'}, 'GSM2679464': {'line': 'BLCL (165)'}, 'GSM2679467': {'line': 'BLCL (165)'}, 'GSM2679466': {'line': 'BLCL (165)'}, 'GSM2679469': {'line': 'BLCL (165)'}, 'GSM2679468': {'line': 'BLCL (165)'}, 'GSM2887503': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2107739': {'line': 'REH', 'treatment': 'lnc-RTN4R-1 LNA GapmeR1', 'time': '72h'}, 'GSM2107738': {'line': 'REH', 'treatment': 'lnc-NKX2-3-1 LNA GapmeR2', 'time': '72h'}, 'GSM2887502': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2107731': {'line': 'REH', 'treatment': 'lnc-NKX2-3-1 LNA GapmeR2', 'time': '72h'}, 'GSM2107730': {'line': 'REH', 'treatment': 'lnc-NKX2-3-1 LNA GapmeR1', 'time': '72h'}, 'GSM2107733': {'line': 'REH', 'treatment': 'lnc-RTN4R-1 LNA GapmeR2', 'time': '72h'}, 'GSM2107732': {'line': 'REH', 'treatment': 'lnc-RTN4R-1 LNA GapmeR1', 'time': '72h'}, 'GSM2107735': {'line': 'REH', 'treatment': 'non-targeting LNA GapmeR', 'time': '72h'}, 'GSM2107734': {'line': 'REH', 'treatment': 'lnc-ASTN1-1 LNA GapmeR1', 'time': '72h'}, 'GSM2107737': {'line': 'REH', 'treatment': 'lnc-TIMM21-5 LNA GapmeR2', 'time': '72h'}, 'GSM2887504': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1957144': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2312159': {'culture': '12', 'line': 'DCX-'}, 'GSM2312158': {'culture': '12', 'line': 'DCX-'}, 'GSM1423528': {'line': 'HeLa', 'barcode': 'GATCAGCAG', 'treatment': 'Egfp knock down (control)'}, 'GSM1423529': {'line': 'HeLa', 'barcode': 'ATGCAGCAG', 'treatment': 'Mtr4 knock down (exosome)'}, 'GSM1423526': {'line': 'HeLa', 'barcode': 'ATGCAGCAG', 'treatment': 'Egfp knock down (control)'}, 'GSM1423527': {'line': 'HeLa', 'barcode': 'ATGCAGCAG', 'treatment': 'Egfp knock down (control)'}, 'GSM2312157': {'culture': '12', 'line': 'DCX-'}, 'GSM2312156': {'culture': '12', 'line': 'DCX-'}, 'GSM2312151': {'culture': '12', 'line': 'DCX-'}, 'GSM2312150': {'culture': '12', 'line': 'DCX-'}, 'GSM2312153': {'culture': '12', 'line': 'DCX-'}, 'GSM2312152': {'culture': '12', 'line': 'DCX-'}, 'GSM3594250': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594257': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594256': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3586706': {'origin': 'GCB', 'pfstt': '1274', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1282', 'cycles': '8', 'oscs': '0'}, 'GSM3586707': {'origin': 'ABC', 'pfstt': '1206', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1214', 'cycles': '8', 'oscs': '0'}, 'GSM3586704': {'origin': 'UNCLASSIFIED', 'pfstt': '283', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '477', 'cycles': '8', 'oscs': '1'}, 'GSM3586705': {'origin': 'UNCLASSIFIED', 'pfstt': '1367', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1502', 'cycles': '8', 'oscs': '0'}, 'GSM3586702': {'origin': 'GCB', 'pfstt': '81', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '350', 'cycles': '8', 'oscs': '0'}, 'GSM3586703': {'origin': 'GCB', 'pfstt': '191', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '290', 'cycles': '8', 'oscs': '1'}, 'GSM3586700': {'origin': 'UNCLASSIFIED', 'pfstt': '392', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '619', 'cycles': '6', 'oscs': '1'}, 'GSM3586701': {'origin': 'UNCLASSIFIED', 'pfstt': '1590', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1598', 'cycles': '8', 'oscs': '0'}, 'GSM3594254': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3417910': {'protocol': '10%FBS/F12/DMEM', 'number': 'KF297339', 'infection': 'MOI=3', 'passage': '27-34', 'strain': 'CMV/TB40e', 'treatment': 'N/A', 'time': '48', 'type': 'ARPE19'}, 'GSM3586708': {'origin': 'GCB', 'pfstt': '1023', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1031', 'cycles': '8', 'oscs': '0'}, 'GSM3586709': {'origin': 'GCB', 'pfstt': '365', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '798', 'cycles': '8', 'oscs': '0'}, 'GSM3417911': {'protocol': '10%FBS/F12/DMEM', 'number': 'KF297339', 'infection': 'MOI=3', 'passage': '27-34', 'strain': 'CMV/TB40e', 'treatment': 'N/A', 'time': '48', 'type': 'ARPE19'}, 'GSM802457': {'tissue': 'tumor'}, 'GSM3417916': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'N/A', 'time': '24', 'type': 'MRC5'}, 'GSM802459': {'tissue': 'tumor'}, 'GSM802458': {'tissue': 'tumor'}, 'GSM3417917': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'N/A', 'time': '24', 'type': 'MRC5'}, 'GSM3417914': {'protocol': '10%FBS/DMEM', 'number': 'GU734771', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'HSV1/strain F', 'treatment': 'N/A', 'time': '9', 'type': 'MRC5'}, 'GSM3417915': {'protocol': '10%FBS/DMEM', 'number': 'GU734771', 'infection': 'MOI=3', 'passage': '10-15', 'strain': 'HSV1/strain F', 'treatment': 'N/A', 'time': '9', 'type': 'MRC5'}, 'GSM2362497': {'line': 'HEK293'}, 'GSM1354443': {'treatment': 'NiCl2'}, 'GSM1477600': {'variation': 'CPSF2'}, 'GSM1299381': {'labexpid': '12823', 'line': 'GM12878'}, 'GSM2806219': {'tissue': 'lateral temporal lobe', 'group': 'Young'}, 'GSM1299380': {'labexpid': '12822', 'line': 'GM12878'}, 'GSM1299383': {'labexpid': '13268', 'line': 'GM12878'}, 'GSM2141416': {'individual': 'AF113', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141417': {'individual': 'AF113', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141414': {'individual': 'AF111', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141415': {'individual': 'AF113', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141412': {'individual': 'AF111', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141413': {'individual': 'AF111', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141410': {'individual': 'AF109', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141411': {'individual': 'AF109', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1299385': {'labexpid': '13270', 'line': 'GM12878'}, 'GSM2141418': {'individual': 'AF115', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141419': {'individual': 'AF115', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1299387': {'labexpid': '13272', 'line': 'GM12878'}, 'GSM1299386': {'labexpid': '13271', 'line': 'GM12878'}, 'GSM2098691': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM1299389': {'labexpid': '13280', 'line': 'GM12878'}, 'GSM1826822': {'line': 'MOLP-8', 'condition': 'LIN28B KO cells'}, 'GSM2098692': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098695': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098694': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098697': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM1299388': {'labexpid': '13273', 'line': 'GM12878'}, 'GSM2098699': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098698': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2385603': {'line': '827', 'type': 'glioblastoma stem cell'}, 'GSM1269469': {'line': 'MCF7', 'type': 'input or total RNA', 'purification': 'oligo(dT) beads'}, 'GSM1246809': {'tissue': 'primary skin fibroblast', 'point': 'early timepoint (E)'}, 'GSM1269467': {'line': 'MCF7', 'type': '4SU-labeled RNA', 'purification': 'oligo(dT) beads'}, 'GSM1269466': {'line': 'HEK293', 'type': 'input or total RNA', 'purification': 'oligo(dT) beads'}, 'GSM1269465': {'line': 'HEK293', 'type': 'non-labeled RNA', 'purification': 'oligo(dT) beads'}, 'GSM1269464': {'line': 'HEK293', 'type': '4SU-labeled RNA', 'purification': 'oligo(dT) beads'}, 'GSM1624292': {'gender': 'M', 'age': '60', 'tissue': 'skin', 'disease': 'LP', 'subject': '7'}, 'GSM1587318': {'losses': '5', 'age': '31', 'bmi': '26', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+8'}, 'GSM1587319': {'losses': '8', 'age': '38', 'bmi': 'n/a', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+8'}, 'GSM1587314': {'losses': '4', 'age': '38', 'bmi': '24', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+6'}, 'GSM1587315': {'losses': '4', 'age': '36', 'bmi': '23', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+9'}, 'GSM1587316': {'losses': '3', 'age': '39', 'bmi': '32', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+7'}, 'GSM1587317': {'losses': '3', 'age': '39', 'bmi': '28', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+6'}, 'GSM1587310': {'losses': '7', 'age': '38', 'bmi': '26', 'births': '1', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+9'}, 'GSM1587311': {'losses': '6', 'age': '38', 'bmi': '22', 'births': '1', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+10'}, 'GSM1587312': {'losses': '4', 'age': '38', 'bmi': '23', 'births': '1', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+8'}, 'GSM1587313': {'losses': '5', 'age': '40', 'bmi': '25', 'births': '0', 'tissue': 'Endometrial pipelle biopsy', 'day': 'LH+10'}, 'GSM2061468': {'protein': 'siRNA insensitive protein HBS1LV3', 'sirna': '#3_HBS1LV3', 'line': 'HEK 293'}, 'GSM2061469': {'protein': 'siRNA insensitive protein HBS1LV3', 'sirna': '#3_HBS1LV3', 'line': 'HEK 293'}, 'GSM2061462': {'line': 'HEK 293', 'sirna': '#3_HBS1LV3'}, 'GSM2061463': {'line': 'HEK 293', 'sirna': '#3_HBS1LV3'}, 'GSM2061460': {'line': 'HEK 293', 'sirna': 'HBS1LV1'}, 'GSM2061461': {'line': 'HEK 293', 'sirna': '#3_HBS1LV3'}, 'GSM2061466': {'protein': 'siRNA insensitive protein HBS1LV1', 'sirna': 'HBS1LV1', 'line': 'HEK 293'}, 'GSM2061467': {'protein': 'siRNA insensitive protein HBS1LV3', 'sirna': '#3_HBS1LV3', 'line': 'HEK 293'}, 'GSM2061464': {'protein': 'siRNA insensitive protein HBS1LV1', 'sirna': 'HBS1LV1', 'line': 'HEK 293'}, 'GSM2061465': {'protein': 'siRNA insensitive protein HBS1LV1', 'sirna': 'HBS1LV1', 'line': 'HEK 293'}, 'GSM1401661': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401660': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401663': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401662': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401665': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401664': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401667': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401666': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401669': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401668': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1908609': {'line': 'H1', 'type': 'eGFP+CD34+CD31+CD43- hemogenic endothelium', 'genotype': 'GATA2/eGFP knockin'}, 'GSM1957180': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957181': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957182': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957183': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957184': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957185': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957186': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957187': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957188': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957189': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1706665': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706664': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706667': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706666': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706661': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1706660': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1706663': {'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1706662': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Minicircle'}, 'GSM1706669': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706668': {'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM2535718': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1190', 'samplename': '1gr_413CD3_C10', 'seqsite': 'BRI', 'sampleID': 'S13317', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1190', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C10'}, 'GSM2610983': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610982': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610981': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610980': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610987': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610986': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610985': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610984': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610989': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610988': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2395259': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'PWS Large deletion'}, 'GSM2395258': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'PWS Large deletion'}, 'GSM2395257': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM2395256': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM2395255': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM2395254': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM2395253': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM2395252': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM2395251': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM2395250': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM2535712': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1182', 'samplename': '1gr_413CD3_C12', 'seqsite': 'BRI', 'sampleID': 'S13309', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1182', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C12'}, 'GSM2535713': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1183', 'samplename': '1gr_413CD3_C18', 'seqsite': 'BRI', 'sampleID': 'S13310', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1183', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C18'}, 'GSM2816220': {'line': 'H9'}, 'GSM2577130': {'line': 'T24', 'type': 'bladder cancer cell line'}, 'GSM2577131': {'line': 'TCCSUPB', 'type': 'bladder cancer cell line'}, 'GSM2577132': {'line': 'UM-UC10', 'type': 'bladder cancer cell line'}, 'GSM2577133': {'line': 'UM-UC11', 'type': 'bladder cancer cell line'}, 'GSM2577134': {'line': 'UM-UC12', 'type': 'bladder cancer cell line'}, 'GSM2577135': {'line': 'UM-UC13', 'type': 'bladder cancer cell line'}, 'GSM2577136': {'line': 'UM-UC14', 'type': 'bladder cancer cell line'}, 'GSM2577137': {'line': 'UM-UC15', 'type': 'bladder cancer cell line'}, 'GSM2577138': {'line': 'UM-UC16', 'type': 'bladder cancer cell line'}, 'GSM2577139': {'line': 'UM-UC17', 'type': 'bladder cancer cell line'}, 'GSM2535717': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1189', 'samplename': '1gr_413CD3_C47', 'seqsite': 'BRI', 'sampleID': 'S13316', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1189', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C47'}, 'GSM1868761': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2535714': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1185', 'samplename': '1gr_413CD3_C40', 'seqsite': 'BRI', 'sampleID': 'S13312', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1185', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C40'}, 'GSM1709558': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709559': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709556': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'no EGF + DMSO'}, 'GSM1709557': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709554': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'no EGF + DMSO'}, 'GSM1709555': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'no EGF + DMSO'}, 'GSM1709552': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + A66'}, 'GSM1709553': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + A66'}, 'GSM1709550': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709551': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + A66'}, 'GSM2742111': {'state': 'skin cancer', 'line': 'A375', 'variation': 'Parental cells'}, 'GSM2742112': {'state': 'skin cancer', 'line': 'A375', 'variation': 'SMARCB1 KO'}, 'GSM2742113': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'Parental cells'}, 'GSM2742114': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'Parental cells'}, 'GSM2742115': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'VX680'}, 'GSM2742116': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'VX680'}, 'GSM2742117': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'AZD1132'}, 'GSM2742118': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'AZD1132'}, 'GSM2742119': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'MLN8237'}, 'GSM2815799': {'line': 'H9'}, 'GSM1963811': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1868764': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868767': {'type': 'Central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868766': {'type': 'Memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1679677': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '80'}, 'GSM1679676': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '57'}, 'GSM1679675': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '46'}, 'GSM1679674': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '57'}, 'GSM1679673': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '53'}, 'GSM1679672': {'gender': 'male', 'study': 'C_29', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '93'}, 'GSM1679671': {'death': '88', 'gender': 'male', 'study': 'C_26', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.0314914', 'sv3': '0.157037925', 'sv1': '0.2241993333'}, 'GSM1679670': {'gender': 'male', 'study': 'C_25', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '61'}, 'GSM2350070': {'culture': '4 months', 'line': 'ARPE-19', 'type': 'retinal pigment epithelial (RPE) cell line'}, 'GSM2225758': {'tissue': 'pancreas'}, 'GSM2225759': {'tissue': 'pancreas'}, 'GSM1679679': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '69'}, 'GSM1679678': {'gender': 'male', 'study': 'no', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '74'}, 'GSM2194292': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194293': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194290': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194291': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194296': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194297': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194294': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194295': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194298': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194299': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM960607': {'line': 'CCL30', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'Untreated'}, 'GSM960606': {'line': '584-A2', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM960601': {'line': '584-A2', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM960603': {'line': '584-A2', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'AZ8010'}, 'GSM960609': {'line': 'CCL30', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM960608': {'line': 'CCL30', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM2392708': {'type': 'Induced pluripotent stem cell'}, 'GSM2392709': {'type': 'Induced pluripotent stem cell'}, 'GSM2392704': {'type': 'Induced pluripotent stem cell'}, 'GSM2392705': {'type': 'Induced pluripotent stem cell'}, 'GSM2392706': {'type': 'Induced pluripotent stem cell'}, 'GSM2392707': {'type': 'Induced pluripotent stem cell'}, 'GSM2392700': {'type': 'Induced pluripotent stem cell'}, 'GSM2392701': {'type': 'Induced pluripotent stem cell'}, 'GSM2392702': {'type': 'Induced pluripotent stem cell'}, 'GSM2392703': {'type': 'Induced pluripotent stem cell'}, 'GSM2044529': {'transduction': 'empty control'}, 'GSM1527726': {'passages': '13 days', 'type': 'Th1'}, 'GSM1527724': {'passages': '13 days', 'type': 'Th2'}, 'GSM2476776': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476777': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476774': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476775': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476772': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476773': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476770': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476771': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476778': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476779': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM1835914': {'line': 'BT16', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835915': {'line': 'BT16', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835916': {'line': 'BT16', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835917': {'line': 'BT16', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835910': {'line': 'G401', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835911': {'line': 'G401', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835912': {'line': 'G401', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835913': {'line': 'BT16', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835918': {'line': 'BT16', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835919': {'line': 'TTC549', 'type': 'liver rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM3189251': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A21', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.709141', 'percentaligned': '0.954012395', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.247449'}, 'GSM3189250': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.580415', 'percentaligned': '0.931966087', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.276299', 'original': 'Control'}, 'GSM3189253': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '10', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.71357', 'percentaligned': '0.947063542', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.472271', 'original': 'Control'}, 'GSM3189252': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '17', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.855059', 'percentaligned': '0.927658523', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.563307', 'original': 'Control'}, 'GSM3189255': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.765392', 'percentaligned': '0.945331775', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.141925', 'original': 'Control'}, 'GSM3189254': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.812435', 'percentaligned': '0.934765405', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.325863', 'original': 'Control'}, 'GSM3189257': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '56', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.69041', 'percentaligned': '0.81381155', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.502662', 'original': 'Control'}, 'GSM3189256': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A61', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.668736', 'percentaligned': '0.831489889', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.573081', 'original': 'Case'}, 'GSM3189259': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.881955', 'percentaligned': '0.925573439', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.23968', 'original': 'Case'}, 'GSM3189258': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '60', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.602993', 'percentaligned': '0.86736308', 'Sex': 'M', 'nl63': 'No', 'libcounts': '2.618676', 'original': 'Control'}, 'GSM1363505': {'grade': 'NA', 'alb': '40.6', 'tb': '22.8', 'individual': 'HCC1', 'alt': '37', 'pt': '12.1', 'hbvdna': '<1000', 'ca199': '33.2', 'hgb': '131', 'method': 'RFA', 'ggt': '133', 'cea': '2.07', 'ast': '39', 'rna': 'Yes', 'db': '5.7', 'cirrhosis': 'No', 'afp': '2935.9', 'hbsag': '>240ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '48', 'ltx': 'A3', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.19'}, 'GSM1363507': {'grade': 'NA', 'alb': '40.2', 'tb': '29.6', 'individual': 'HCC10', 'alt': '71', 'pt': '12.7', 'hbvdna': '<500', 'ca199': '70.8', 'hgb': '136', 'method': 'RFA', 'ggt': '79.5', 'cea': '3.97', 'ast': '96', 'rna': 'Yes', 'db': '10.7', 'cirrhosis': 'No', 'afp': '1888.2', 'hbsag': '>250ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '59', 'ltx': 'A3', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.03'}, 'GSM1363506': {'grade': 'NA', 'alb': '40.6', 'tb': '22.8', 'individual': 'HCC1', 'alt': '37', 'pt': '12.1', 'hbvdna': '<1000', 'ca199': '33.2', 'hgb': '131', 'method': 'RFA', 'ggt': '133', 'cea': '2.07', 'ast': '39', 'rna': 'Yes', 'db': '5.7', 'cirrhosis': 'No', 'afp': '2935.9', 'hbsag': '>240ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '48', 'ltx': 'A3', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.19'}, 'GSM2188701': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188700': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188703': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188702': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188705': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188704': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188707': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188706': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188709': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188708': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2358894': {'type': 'Primary Brain Pericytes (ScienCell Research laboratories, USA)'}, 'GSM2358895': {'type': 'Aorta smooth muscle cells'}, 'GSM2358892': {'type': 'Mature Smooth Muscle Cells (mSMCs)'}, 'GSM2358893': {'type': 'Primary Placental Pericytes (PromoCell, GmbH, Germany)'}, 'GSM2358890': {'type': 'Mature Smooth Muscle Cells (mSMCs)'}, 'GSM2358891': {'type': 'Mature Smooth Muscle Cells (mSMCs)'}, 'GSM2425088': {'marker': 'KIT-/SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425089': {'marker': 'KIT-/SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425080': {'marker': 'SSEA4-/KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425081': {'marker': 'SSEA4-/KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425082': {'marker': 'KIT-/SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425083': {'marker': 'KIT-/SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425084': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425085': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425086': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425087': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1571121': {'stage': 'definitive cardiomyocyte'}, 'GSM2550186': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550187': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550184': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550185': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550183': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'l': {'code': '200'}, 'GSM2550188': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550189': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM1782881': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1782880': {'line': 'H1', 'treatment': 'lentiviral infection with sh TCOF1', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM2361739': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390693': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'infection': 'shEPAS_pGIPz (V2LHS_113753)'}, 'GSM1782885': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1782884': {'line': 'H1', 'treatment': 'lentiviral infection with sh TCOF1', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM2390696': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'infection': 'shEPAS_pGIPz (V2LHS_113753)'}, 'GSM2390697': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 1', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM1133670': {'tissue': 'whole blood', 'time': '180 days post LVAD'}, 'GSM1133671': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM1133672': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM1133673': {'tissue': 'whole blood', 'time': '180 days post LVAD'}, 'GSM1133674': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM1133675': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM1133676': {'tissue': 'whole blood', 'time': '180 days post LVAD'}, 'GSM1133677': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM1133678': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM1133679': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM1177215': {'tissue': 'Prostate Tumour', 'point': 'Post-Treatment'}, 'GSM2178801': {'ir': '1.15473441108545', 'weight': 'obese', 'gender': 'male', 'age': '56', 'bmi': '39.9', 'disease': 'ngt', 'l': '0.06', 'h': '0.5', 'id': '27'}, 'GSM1177211': {'tissue': 'Prostate Tumour', 'point': 'Pre-treament'}, 'GSM2357068': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 5', 'point': '03h'}, 'GSM1470389': {'line': 'U-2 OS', 'type': 'total RNA'}, 'GSM2357067': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2131811': {'type': 'TC7 cells (Caco-2)', 'condition': 'Cells treated with TSA and infected with E. coli K12'}, 'GSM2131810': {'type': 'TC7 cells (Caco-2)', 'condition': 'Non treated cells infected with E. coli K12'}, 'GSM2875110': {'gender': 'Male', 'age': 'fetal 18 weeks', 'type': 'Chondrocytes isolated from growth plate'}, 'GSM2398397': {'line': 'L3.6', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398396': {'line': 'L3.6', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398399': {'line': 'L3.6', 'type': 'SV40 large T antigen immortalized'}, 'GSM2398398': {'line': 'L3.6', 'type': 'SV40 large T antigen immortalized'}, 'GSM2178802': {'ir': '1.15473441108545', 'weight': 'obese', 'gender': 'male', 'age': '56', 'bmi': '39.9', 'disease': 'ngt', 'l': '0.06', 'h': '1', 'id': '27'}, 'GSM2757505': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2757504': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2757507': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2757506': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2757501': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2757500': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2757503': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2757502': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2242926': {'line': 'A375', 'replicate': '4'}, 'GSM2242927': {'line': 'A375', 'replicate': '4'}, 'GSM2242924': {'line': 'A375', 'replicate': '4'}, 'GSM2242925': {'line': 'A375', 'replicate': '4'}, 'GSM2242922': {'line': 'A375', 'replicate': '4'}, 'GSM2242923': {'line': 'A375', 'replicate': '4'}, 'GSM2242920': {'line': 'A375', 'replicate': '4'}, 'GSM2242921': {'line': 'A375', 'replicate': '4'}, 'GSM2242928': {'line': 'A375', 'replicate': '4'}, 'GSM2242929': {'line': 'A375', 'replicate': '4'}, 'GSM2746172': {'treatment': 'SCCO28 shCSL n 2'}, 'GSM2746170': {'treatment': 'SCCO28 shRNA control'}, 'GSM2746171': {'treatment': 'SCCO28 shCSL n 1'}, 'GSM2607503': {'line': 'WA26'}, 'GSM2551346': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2172052': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1863315': {'replicate': 'I', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'none', 'variation': 'wildtype'}, 'GSM1863317': {'replicate': 'I', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'IFNa', 'variation': 'wildtype'}, 'GSM1863316': {'replicate': 'II', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'none', 'variation': 'wildtype'}, 'GSM2607507': {'line': 'WA26'}, 'GSM1863319': {'clone': '1', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'none', 'variation': 'Ro60 null'}, 'GSM1863318': {'replicate': 'II', 'line': 'GM12878', 'type': 'ENCODE EBV-immortalized B cell line', 'treatment': 'IFNa', 'variation': 'wildtype'}, 'GSM2551342': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2607505': {'line': 'WA26'}, 'GSM2607504': {'line': 'WA26'}, 'GSM1383910': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383911': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383912': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383913': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383914': {'type': 'Fertile mature sperm', 'kit': 'Encore NGS Multiplex System I (NuGEN)'}, 'GSM1383915': {'type': 'Fertile mature sperm', 'kit': 'Ovation Ultralow Library Systems (NuGEN)'}, 'GSM1383916': {'type': 'Fertile mature sperm', 'kit': 'Ovation Ultralow Library Systems (NuGEN)'}, 'GSM1383917': {'type': 'Fertile mature sperm', 'kit': 'Ovation Ultralow Library Systems (NuGEN)'}, 'GSM1383918': {'type': 'Fertile mature sperm', 'kit': 'Ovation Ultralow Library Systems (NuGEN)'}, 'GSM2047468': {'well': 'E01', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2100869': {'status': 'no', 'gender': 'male', 'age': '85', 'race': 'white'}, 'GSM2470070': {'line': 'U-2 OS (ATCC HTB-96)', 'tag': 'untreated (deactivated protein)', 'protein': 'delta-TF (truncated)'}, 'GSM1138978': {'gender': 'male', 'type': 'blood lymphocyte', 'phenotype': 'control'}, 'GSM1138979': {'gender': 'female', 'type': 'blood lymphocyte', 'phenotype': 'control'}, 'GSM1138976': {'gender': 'male', 'type': 'blood lymphocyte', 'phenotype': 'intellectual disability'}, 'GSM1138977': {'gender': 'female', 'type': 'blood lymphocyte', 'phenotype': 'control'}, 'GSM1138974': {'gender': 'male', 'type': 'blood lymphocyte', 'phenotype': 'intellectual disability'}, 'GSM1138975': {'gender': 'male', 'type': 'blood lymphocyte', 'phenotype': 'intellectual disability'}, 'GSM2536098': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10695', 'samplename': '1D_T1D2-REDRAW _C77', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34795', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10695', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C77'}, 'GSM2536099': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10696', 'samplename': '1D_T1D2-REDRAW _C83', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34796', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10696', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C83'}, 'GSM2632552': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632553': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632554': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632555': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632556': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632557': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2536090': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10686', 'samplename': '1D_T1D2-REDRAW _C16', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34786', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10686', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C16'}, 'GSM2536091': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10687', 'samplename': '1_T1D2-REDRAW _C22', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34787', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10687', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C22'}, 'GSM2536092': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10688', 'samplename': '1D_T1D2-REDRAW _C30', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34788', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10688', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C30'}, 'GSM2536093': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10689', 'samplename': '1D_T1D2-REDRAW _C36', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34789', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10689', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C36'}, 'GSM2536094': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10690', 'samplename': '1_T1D2-REDRAW _C42', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34790', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10690', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C42'}, 'GSM2536095': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10691', 'samplename': '1_T1D2-REDRAW _C78', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34791', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10691', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C78'}, 'GSM2536096': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10693', 'samplename': '1_T1D2-REDRAW _C53', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34793', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10693', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C53'}, 'GSM2536097': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10694', 'samplename': '1_T1D2-REDRAW _C65', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34794', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10694', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C65'}, 'GSM1395458': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2327641': {'strain': 'human', 'type': 'papillary thyroid cancer cells'}, 'GSM2327640': {'strain': 'human', 'type': 'papillary thyroid cancer cells'}, 'GSM1354730': {'donor': '3', 'fraction': '20-40 nucleotide fraction'}, 'GSM1354731': {'donor': '4', 'fraction': '20-40 nucleotide fraction'}, 'GSM1354732': {'donor': '5', 'fraction': '20-40 nucleotide fraction'}, 'GSM1354733': {'donor': '6', 'fraction': '20-40 nucleotide fraction'}, 'GSM1234528': {'tissue': 'Prostate Tumour', 'point': 'Post-treatment'}, 'GSM1234529': {'tissue': 'Prostate Tumour', 'point': 'Post-treatment'}, 'GSM1234524': {'tissue': 'Prostate Tumour', 'point': 'Pre-treatment'}, 'GSM1234525': {'tissue': 'Prostate Tumour', 'point': 'Pre-treatment'}, 'GSM1234526': {'tissue': 'Prostate Tumour', 'point': 'Pre-treatment'}, 'GSM1234527': {'tissue': 'Prostate Tumour', 'point': 'Post-treatment'}, 'GSM1234521': {'tissue': 'Prostate Tumour', 'point': 'Pre-treatment'}, 'GSM1234522': {'tissue': 'Prostate Tumour', 'point': 'Pre-treatment'}, 'GSM1234523': {'tissue': 'Prostate Tumour', 'point': 'Pre-treatment'}, 'GSM1649193': {'tissue': 'beta cells', 'stage': 'adult'}, 'GSM1414500': {'tissue': 'Human ovarian PDX tumor'}, 'GSM1414501': {'tissue': 'Human ovarian PDX tumor'}, 'GSM2070033': {'source': 'primary HCC tissue', 'type': 'HCC'}, 'GSM2070032': {'source': 'cell line', 'type': 'HCC'}, 'GSM2070031': {'source': 'PDC', 'type': 'HCC'}, 'GSM2070030': {'source': 'primary HCC tissue', 'type': 'HCC'}, 'GSM2070037': {'source': 'PDC', 'type': 'HCC'}, 'GSM2070036': {'source': 'primary HCC tissue', 'type': 'HCC'}, 'GSM2070035': {'source': 'cell line', 'type': 'HCC'}, 'GSM2070034': {'source': 'PDC', 'type': 'HCC'}, 'GSM2070039': {'source': 'PDC', 'type': 'HCC'}, 'GSM2070038': {'source': 'cell line', 'type': 'HCC'}, 'GSM2875681': {'line': 'MRC-5 fibroblasts', 'infection': '0.1', 'point': '9 days'}, 'GSM1447369': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM1875330': {'line': 'H2087', 'type': 'established lung cancer cell line', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875331': {'line': 'H2087', 'type': 'established lung cancer cell line', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875332': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875333': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM2310023': {'line': '293T', 'type': 'wild type (WT)', 'condition': 'monolayer (m) cultured cell'}, 'GSM1875334': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM2310026': {'line': 'MCF7', 'type': 'wild type (WT)', 'condition': 'sphere (s) forming cell'}, 'GSM2310025': {'line': '293T', 'type': 'wild type (WT)', 'condition': 'sphere (s) forming cell'}, 'GSM2543877': {'library_id': 'lib8013', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM485455': {'line': 'NA18505'}, 'GSM1875336': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM485452': {'line': 'NA19160'}, 'GSM1875337': {'line': 'H2087', 'type': 'H2087 derivative isolated from BLI-negative organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM485453': {'line': 'NA19140'}, 'GSM2931172': {'concentration': '0.1 percent', 'passages': '<25', 'line': 'HepG2', 'treatment': 'DMSO'}, 'GSM485450': {'line': 'NA18517'}, 'GSM1312742': {'line': 'HGDP01029', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'San'}, 'GSM485451': {'line': 'NA18498'}, 'GSM2931170': {'concentration': '0.1 percent', 'passages': '<25', 'line': 'HepG2', 'treatment': 'DMSO'}, 'GSM2287657': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287656': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287655': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287654': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM811628': {'type': 'Polarbody_pooled', 'strategy': 'Sigma-Aldrich WTA2'}, 'GSM811629': {'type': 'Polarbody_pooled', 'strategy': 'Sigma-Aldrich WTA2'}, 'GSM2287651': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287650': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1279769': {'antibody': 'LSD1 antibody (Abcam, ab17721, lot # GR79477-2)', 'transfection': 'no treatment', 'type': 'LNCaP', 'passage': '14-17'}, 'GSM1279768': {'antibody': \"H3T6ph antibody (provided by Dr. Roland Schüle's lab)\", 'transfection': 'no treatment', 'type': 'LNCaP', 'passage': '14-17'}, 'GSM811626': {'type': 'Oocyte_single', 'strategy': 'Sigma-Aldrich WTA2'}, 'GSM811627': {'type': 'Oocyte_single', 'strategy': 'Sigma-Aldrich WTA2'}, 'GSM2303232': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACIW009'}, 'GSM2303233': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2287659': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2303231': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM1312745': {'line': 'HGDP00950', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Yakut'}, 'GSM701868': {'vendor': 'Millipore', 'line': 'HCT116', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701869': {'vendor': 'Millipore', 'line': 'K562', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701866': {'vendor': 'Millipore', 'line': 'MDA-MB-231', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701864': {'vendor': 'Millipore', 'line': 'HCT116', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM701865': {'vendor': 'Millipore', 'line': 'K562', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM545220': {'vendor': 'Sigma', 'wavelength': '4-SU / 365 nm', 'line': 'HEK 293', 'antibody': 'anti-FLAG antibody', 'protein': 'TNRC6C', 'recovered': 'ca. 200 kDa'}, 'GSM2458918': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.83'}, 'GSM2458919': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.83'}, 'GSM2458916': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.25'}, 'GSM2458917': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.42'}, 'GSM2458914': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.83'}, 'GSM2458915': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.33'}, 'GSM2458912': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.17'}, 'GSM2458913': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.75'}, 'GSM2458910': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.58'}, 'GSM2458911': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.92'}, 'GSM1395405': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395404': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2889067': {'tissue': 'pancreatic islets'}, 'GSM2664368': {'antibody': 'none', 'type': 'neural crest line', 'treatment': 'none'}, 'GSM2664369': {'antibody': 'sc-376997X (mouse monoclonal)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664360': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664361': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664362': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664363': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664364': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664365': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'neural crest line', 'treatment': 'none'}, 'GSM2664366': {'antibody': 'none', 'type': 'neural crest line', 'treatment': 'none'}, 'GSM2664367': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'neural crest line', 'treatment': 'none'}, 'GSM2093152': {'bin': '21', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1395409': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395408': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1866108': {'line': 'Gliobmastoma cell line'}, 'GSM2816051': {'line': 'H9'}, 'GSM2816050': {'line': 'H9'}, 'GSM2816053': {'line': 'H9'}, 'GSM2816052': {'line': 'H9'}, 'GSM2816055': {'line': 'H9'}, 'GSM2816054': {'line': 'H9'}, 'GSM2816057': {'line': 'H9'}, 'GSM2816056': {'line': 'H9'}, 'GSM2816059': {'line': 'H9'}, 'GSM2816058': {'line': 'H9'}, 'GSM2153510': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153511': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153512': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153513': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153514': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM1828769': {'type': 'HUVEC', 'treatment': 'EZH2 knock-down', 'condition': 'fluid shear stress 20 dyne/cm^2'}, 'GSM1828768': {'type': 'HUVEC', 'treatment': 'scrambled control', 'condition': 'fluid shear stress 20 dyne/cm^2'}, 'GSM1828765': {'type': 'HUVEC', 'treatment': 'EZH2 knock-down', 'condition': 'static'}, 'GSM1828764': {'type': 'HUVEC', 'treatment': 'EZH2 knock-down', 'condition': 'static'}, 'GSM1828767': {'type': 'HUVEC', 'treatment': 'scrambled control', 'condition': 'fluid shear stress 20 dyne/cm^2'}, 'GSM1828766': {'type': 'HUVEC', 'treatment': 'scrambled control', 'condition': 'fluid shear stress 20 dyne/cm^2'}, 'GSM1828761': {'type': 'HUVEC', 'treatment': 'scrambled control', 'condition': 'static'}, 'GSM1828760': {'type': 'HUVEC', 'treatment': 'scrambled control', 'condition': 'static'}, 'GSM1828763': {'type': 'HUVEC', 'treatment': 'EZH2 knock-down', 'condition': 'static'}, 'GSM1828762': {'type': 'HUVEC', 'treatment': 'scrambled control', 'condition': 'static'}, 'GSM1399261': {'transduction': 'LV sh-TRIM28', 'antibody': 'none', 'type': 'H1-embryonic stem cells', 'point': '10 days post LV-sh transduction'}, 'GSM1399260': {'transduction': 'LV sh-non-specific', 'antibody': 'none', 'type': 'H1-embryonic stem cells', 'point': '10 days post LV-sh transduction'}, 'GSM1399263': {'transduction': 'LV sh-TRIM28', 'antibody': 'H3K4me1', 'type': 'H1-embryonic stem cells', 'vendor': 'Diagenode, pAb-037-050, 5mg per IP', 'point': '10 days post LV-sh transduction'}, 'GSM1399262': {'transduction': 'LV sh-non-specific', 'antibody': 'H3K4me1', 'type': 'H1-embryonic stem cells', 'vendor': 'Diagenode, pAb-037-050, 5mg per IP', 'point': '10 days post LV-sh transduction'}, 'GSM1399265': {'vendor': 'AbCam, ab10483, 5μl per IP', 'antibody': 'KAP1', 'type': 'H1-embryonic stem cells'}, 'GSM1399264': {'antibody': 'none', 'type': 'H1-embryonic stem cells'}, 'GSM2316887': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316886': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316885': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316884': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316883': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316882': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316881': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316880': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2218834': {'knockdown': 'siJUNB, final 25 nM', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'TGFβ3, 5 ng/ml, 16h'}, 'GSM2218833': {'knockdown': 'siJUNB, final 25 nM', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'TGFβ3, 5 ng/ml, 1.5h'}, 'GSM2218832': {'knockdown': 'siJUNB, final 25 nM', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'untreated'}, 'GSM2218831': {'knockdown': 'siControl, final 25 nM', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'TGFβ3, 5 ng/ml, 16h'}, 'GSM2218830': {'knockdown': 'siControl, final 25 nM', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'TGFβ3, 5 ng/ml, 1.5h'}, 'GSM2093154': {'bin': '25', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1915818': {'type': 'Lymphocytes', 'genotype': 'L254F OGT', 'relationship': 'Affected nephew'}, 'GSM1915819': {'type': 'Lymphocytes', 'genotype': 'L254F OGT', 'relationship': 'Affected brother'}, 'GSM2195099': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195098': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195093': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195092': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195091': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195090': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195097': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195096': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1915816': {'type': 'Lymphocytes', 'genotype': 'WT OGT', 'relationship': 'Unaffected brother'}, 'GSM1915817': {'type': 'Lymphocytes', 'genotype': 'WT OGT', 'relationship': 'Unaffected brother'}, 'GSM1609380': {'line': 'GM12890', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609381': {'line': 'GM12890', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609382': {'line': 'GM12891', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609383': {'line': 'GM12891', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609384': {'line': 'GM12892', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609385': {'line': 'GM12892', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609386': {'line': 'GM18489', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609387': {'line': 'GM18499', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609388': {'line': 'GM18499', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609389': {'line': 'GM18501', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1980128': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980129': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2815771': {'line': 'H9'}, 'GSM2815770': {'line': 'H9'}, 'GSM2815773': {'line': 'H9'}, 'GSM2815772': {'line': 'H9'}, 'GSM2815775': {'line': 'H9'}, 'GSM2815774': {'line': 'H9'}, 'GSM2815777': {'line': 'H9'}, 'GSM2815776': {'line': 'H9'}, 'GSM2815779': {'line': 'H9'}, 'GSM2815778': {'line': 'H9'}, 'GSM2586969': {'with': 'siRNA targeting HOTAIR (siHOTAIR)', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma (HCC)'}, 'GSM2586968': {'with': 'siRNA targeting HOTAIR (siHOTAIR)', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma (HCC)'}, 'GSM2586967': {'with': 'siRNA targeting HOTAIR (siHOTAIR)', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma (HCC)'}, 'GSM1503444': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': 'DMSO for 2 hours'}, 'GSM1503445': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': '200 nM INK128 for 2 hours'}, 'GSM1511878': {'line': 'MCF10A', 'tissue': 'breast'}, 'GSM1511879': {'line': 'MCF10A', 'tissue': 'breast'}, 'GSM1503440': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': 'DMSO for 2 hours'}, 'GSM1503441': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': '25 nM Silvestrol for 2 hours'}, 'GSM1503442': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': 'DMSO for 2 hours'}, 'GSM1503443': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': '200 nM INK128 for 2 hours'}, 'GSM1511873': {'line': 'MCF10A', 'tissue': 'breast'}, 'GSM1980125': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1511876': {'line': 'MCF10A', 'tissue': 'breast'}, 'GSM1511877': {'line': 'MCF10A', 'tissue': 'breast'}, 'GSM1511874': {'line': 'MCF10A', 'tissue': 'breast'}, 'GSM1511875': {'line': 'MCF10A', 'tissue': 'breast'}, 'GSM2109069': {'treatment': '3 h'}, 'GSM2109068': {'treatment': '3 h'}, 'GSM2109067': {'treatment': '3 h'}, 'GSM2109066': {'treatment': '3 h'}, 'GSM1585222': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM1585223': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1585220': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM1585221': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM1585226': {'type': 'Ribosomal profiling', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM1585227': {'type': 'Ribosomal profiling', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM1484329': {'protocol': 'cells were treated with 10nM of scamble siRNA. Cells were harvested 72h after transfection.', 'type': 'low passage primary melanoma cultures'}, 'GSM1484328': {'line': 'SKMEL5', 'type': 'melanoma cell line'}, 'GSM1484327': {'type': 'low passage primary melanoma cultures'}, 'GSM1484326': {'type': 'low passage primary melanoma cultures'}, 'GSM1484325': {'type': 'low passage primary melanoma cultures'}, 'GSM1484324': {'type': 'low passage primary melanoma cultures'}, 'GSM1484323': {'type': 'low passage primary melanoma cultures'}, 'GSM1484322': {'type': 'low passage primary melanoma cultures'}, 'GSM1484321': {'type': 'low passage primary melanoma cultures'}, 'GSM1484320': {'type': 'low passage primary melanoma cultures'}, 'GSM1697907': {'differentiation': 'd0', 'tumor': 'N/A'}, 'GSM1697909': {'differentiation': 'd12', 'tumor': 'N/A'}, 'GSM1697908': {'differentiation': 'd4', 'tumor': 'N/A'}, 'GSM2157989': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2157988': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2157987': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2157986': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2157985': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2157984': {'gender': 'F', 'age': '23', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2157983': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2157982': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2157981': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2157980': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM1012157': {'donor': 'healthy human donor 7', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012156': {'donor': 'healthy human donor 6', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012155': {'donor': 'healthy human donor 6', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012154': {'donor': 'healthy human donor 5', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012153': {'donor': 'healthy human donor 5', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012152': {'donor': 'healthy human donor 4', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012151': {'donor': 'healthy human donor 4', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012150': {'donor': 'healthy human donor 3', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012159': {'donor': 'healthy human donor 8', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012158': {'donor': 'healthy human donor 7', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1111649': {'protocol': 'Hard spin, Unwashed', 'id': '187', 'stage': 'Colostrum'}, 'GSM1111648': {'protocol': 'Hard spin, Washed once', 'id': '160', 'stage': 'Transitional'}, 'GSM1820130': {'stimulation': 'none', 'line': 'BEAS-2B', 'treatment': 'mimic control'}, 'GSM1820131': {'stimulation': 'TNFa, 6 hours', 'line': 'BEAS-2B', 'treatment': 'mimic control'}, 'GSM1820132': {'stimulation': 'none', 'line': 'BEAS-2B', 'treatment': 'miR-26 mimic'}, 'GSM1820133': {'stimulation': 'TNFa, 6 hours', 'line': 'BEAS-2B', 'treatment': 'miR-26 mimic'}, 'GSM1820134': {'stimulation': 'none', 'line': 'BEAS-2B', 'treatment': 'inhibitor control'}, 'GSM1820135': {'stimulation': 'TNFa, 6 hours', 'line': 'BEAS-2B', 'treatment': 'inhibitor control'}, 'GSM1111647': {'protocol': 'Hard spin, Unwashed', 'id': '158', 'stage': 'Transitional'}, 'GSM1111646': {'protocol': 'Soft spin, Unwashed', 'id': '154', 'stage': 'Transitional'}, 'GSM2685239': {'type': 'PBMCs', 'number': '3', 'subtype': 'total RNA from single cell', 'donor': 'NA', 'protein': 'mRNA', 'with': 'none; untreated', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685238': {'type': 'PBMCs', 'number': '2', 'subtype': 'total RNA from single cell', 'donor': 'NA', 'protein': 'mRNA', 'with': 'none; untreated', 'condition': 'AbBs and No Blocking buffer'}, 'GSM2098718': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098719': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098714': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098715': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098716': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098717': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2685237': {'type': 'PBMCs', 'number': '1', 'subtype': 'total RNA from single cell', 'donor': 'NA', 'protein': 'mRNA', 'with': 'none; untreated', 'condition': 'No AbBs and No Blocking buffer'}, 'GSM2098711': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098712': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098713': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2638017': {'with': 'IL-2 and IL-7', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638016': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM1269348': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'HeLa cells'}, 'GSM1269349': {'transfection': 'Puc19(mock)', 'type': 'RNA-seq fastq', 'line': 'HeLa cells'}, 'GSM2638013': {'with': 'IL-12 and IL-15', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638012': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638011': {'with': 'IL-12 and IL-15', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638010': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM1269346': {'transfection': 'miR-155', 'type': 'RNA-seq fastq', 'line': 'HeLa cells'}, 'GSM1269347': {'transfection': 'miR-155', 'type': 'RNA-seq fastq', 'line': 'HeLa cells'}, 'GSM1269344': {'transfection': 'miR-124', 'type': 'RNA-seq fastq', 'line': 'HeLa cells'}, 'GSM1269345': {'transfection': 'miR-124', 'type': 'RNA-seq fastq', 'line': 'HeLa cells'}, 'GSM2550408': {'donor': 'D', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'male'}, 'GSM2047350': {'well': 'C04', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047351': {'well': 'C05', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047352': {'well': 'C06', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047353': {'well': 'C07', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047354': {'well': 'C08', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047355': {'well': 'C09', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047356': {'well': 'C10', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047357': {'well': 'C11', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047358': {'well': 'C12', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047359': {'well': 'D01', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2649839': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649838': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649835': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649834': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649837': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649836': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649831': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649830': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649833': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649832': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2105039': {'gender': 'Male', 'age': '1 Year old', 'batch': '1F', 'condition': 'Disomic'}, 'GSM2105034': {'gender': 'Female', 'age': '2 Day old', 'batch': '2F', 'condition': 'Disomic'}, 'GSM2105037': {'gender': 'Female', 'age': '2 Day old', 'batch': '2F', 'condition': 'Disomic'}, 'GSM2066438': {'vendor': 'Abcam', 'source': 'H2087', 'type': 'lung adenocarcinoma cell line', 'antibody': 'PolII', 'subtype': 'Latency Competent Cancer Cell (LCC) Derivative'}, 'GSM2066439': {'vendor': 'Abcam', 'source': 'HCC1954', 'type': 'breast adenocarcinoma cell line', 'antibody': 'PolII', 'subtype': 'Parental Population'}, 'GSM2066434': {'vendor': 'Active Motif', 'source': 'H2087', 'type': 'lung adenocarcinoma cell line', 'antibody': 'H3K27Ac', 'subtype': 'Latency Competent Cancer Cell (LCC) Derivative'}, 'GSM2066435': {'vendor': 'Active Motif', 'source': 'HCC1954', 'type': 'breast adenocarcinoma cell line', 'antibody': 'H3K27Ac', 'subtype': 'Parental Population'}, 'GSM2066436': {'vendor': 'Active Motif', 'source': 'HCC1954', 'type': 'breast adenocarcinoma cell line', 'antibody': 'H3K27Ac', 'subtype': 'Latency Competent Cancer Cell (LCC) Derivative'}, 'GSM2066437': {'vendor': 'Abcam', 'source': 'H2087', 'type': 'lung adenocarcinoma cell line', 'antibody': 'PolII', 'subtype': 'Parental Population'}, 'GSM2066430': {'source': 'H2087', 'type': 'lung adenocarcinoma cell line', 'antibody': 'none (Input)', 'subtype': 'Latency Competent Cancer Cell (LCC) Derivative'}, 'GSM2066431': {'source': 'HCC1954', 'type': 'breast adenocarcinoma cell line', 'antibody': 'none (Input)', 'subtype': 'Parental Population'}, 'GSM2066432': {'source': 'HCC1954', 'type': 'breast adenocarcinoma cell line', 'antibody': 'none (Input)', 'subtype': 'Latency Competent Cancer Cell (LCC) Derivative'}, 'GSM2066433': {'vendor': 'Active Motif', 'source': 'H2087', 'type': 'lung adenocarcinoma cell line', 'antibody': 'H3K27Ac', 'subtype': 'Parental Population'}, 'GSM1668473': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with ENY2 siRNA.', 'genotype': 'ENY2 Knock-down'}, 'GSM1668472': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with ZMYM2 siRNA.', 'genotype': 'ZMYM2 Knock-down'}, 'GSM1668471': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with ZMYM2 siRNA.', 'genotype': 'ZMYM2 Knock-down'}, 'GSM1668470': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with SFRS11 siRNA.', 'genotype': 'SFRS11 Knock-down'}, 'GSM1668477': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with SAE1 siRNA.', 'genotype': 'SAE1 Knock-down'}, 'GSM1668476': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with SAE1 siRNA.', 'genotype': 'SAE1 Knock-down'}, 'GSM1668475': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with non-targeting siRNA.', 'genotype': 'WT'}, 'GSM1668474': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with non-targeting siRNA.', 'genotype': 'WT'}, 'GSM1668479': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with SMAD3 siRNA.', 'genotype': 'SMAD3 Knock-down'}, 'GSM1668478': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with SMAD3 siRNA.', 'genotype': 'SMAD3 Knock-down'}, 'GSM2325928': {'type': 'Human embryonic stem cell'}, 'GSM1872979': {'tissue': 'Human colon adenoma'}, 'GSM1872978': {'tissue': 'Human normal mucosa'}, 'GSM2194559': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194558': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2325929': {'type': 'Human embryonic stem cell'}, 'GSM2194551': {'type': 'delta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194550': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194553': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194552': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194555': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194554': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194557': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194556': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1401368': {'rin': '9.09', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2014-03-11'}, 'GSM1401369': {'subtype': 'mesenchymal stem cells (MSCs)', 'type': 'patient-derived iPSCs', 'genotype': 'Li-Fraumeni Syndrome (LFS) patient', 'point': 'day 0 of osteoblast differentiation treatment'}, 'GSM1401360': {'rin': '8.3', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-10-29'}, 'GSM1401361': {'rin': '9.4', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-11-05'}, 'GSM1401362': {'rin': '8.8', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-11-26'}, 'GSM1401363': {'rin': '9.19', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-12-03'}, 'GSM1401364': {'rin': '9.3', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2014-01-07'}, 'GSM1401365': {'rin': '6.79', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2014-01-21'}, 'GSM1401366': {'rin': '9.5', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2014-02-18'}, 'GSM1401367': {'rin': '8.8', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2014-02-25'}, 'GSM2048615': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2390801': {'disease': 'Healthy Control'}, 'GSM2390800': {'disease': 'Healthy Control'}, 'GSM2390803': {'disease': 'Healthy Control'}, 'GSM2390802': {'disease': 'Healthy Control'}, 'GSM2390805': {'disease': 'Healthy Control'}, 'GSM2390804': {'disease': 'Healthy Control'}, 'GSM2390807': {'disease': 'Healthy Control'}, 'GSM2390806': {'disease': 'Healthy Control'}, 'GSM2825130': {'line': 'HeLa (sh FBL integrated)', 'treatment': '- doxycycline'}, 'GSM2825131': {'line': 'HeLa (sh FBL integrated)', 'treatment': '+ doxycycline'}, 'GSM2825132': {'line': 'HeLa (sh FBL integrated)', 'treatment': '- doxycycline'}, 'GSM2825133': {'line': 'HeLa (sh FBL integrated)', 'treatment': '+ doxycycline'}, 'GSM3496106': {'line': 'AH017', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons'}, 'GSM3496107': {'line': 'NHDF1', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons'}, 'GSM3496104': {'line': 'AD2-01', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons'}, 'GSM3496105': {'line': 'AD3-01', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons'}, 'GSM3496102': {'line': 'AH017', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons'}, 'GSM3496103': {'line': 'NHDF1', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons'}, 'GSM3496100': {'line': 'AD2-01', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons'}, 'GSM3496101': {'line': 'AD3-01', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons'}, 'GSM2430436': {'line': 'HeLa', 'treatment': 'peptide/oligonucleotide'}, 'GSM2430435': {'line': 'HeLa', 'treatment': 'peptide'}, 'GSM2430434': {'line': 'HeLa', 'treatment': 'Untreated (control)'}, 'GSM3496108': {'line': 'AD2-01', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons late'}, 'GSM3496109': {'line': 'AD3-01', 'build': 'GRCh38', 'condition': 'Differentiated sensory neurons late'}, 'GSM765396': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID9001', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '017WC', 'spikeinpool': 'Nist14'}, 'GSM765397': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8831', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'karyotype': 'normal', 'biorep': '036WC', 'spikeinpool': 'Nist14'}, 'GSM765394': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8692', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'karyotype': 'normal', 'biorep': '033WC', 'spikeinpool': '14'}, 'GSM765395': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8967', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '019WC', 'spikeinpool': 'Nist14'}, 'GSM765392': {'description': 'tier 3', 'datatype': 'RnaSeq', 'labexpid': 'LID9185', 'readtype': '2x76D', 'rnaextract': 'total', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '025CH', 'spikeinpool': 'Nist14'}, 'GSM765393': {'description': 'tier 3', 'datatype': 'RnaSeq', 'labexpid': 'LID9187', 'readtype': '2x76D', 'rnaextract': 'total', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '025NL', 'spikeinpool': 'Nist14'}, 'GSM765390': {'description': 'tier 3', 'datatype': 'RnaSeq', 'labexpid': 'LID9189', 'readtype': '2x76D', 'rnaextract': 'total', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '025NP', 'spikeinpool': 'Nist14'}, 'GSM765391': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8826', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '023WC', 'spikeinpool': 'Nist14'}, 'GSM765398': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8665', 'readtype': '2x76D', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '007WC', 'spikeinpool': 'Nist14'}, 'GSM765399': {'description': 'tier 3', 'datatype': 'RnaSeq', 'labexpid': 'LID8797', 'readtype': '2x76D', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '027N', 'spikeinpool': 'Nist14'}, 'GSM946849': {'line': 'MCF7', 'antibody': 'H3K4me1 (CellSignalingTechnologies, 9723S, lot#1)', 'passage': '5'}, 'GSM1833460': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '4 hours'}, 'GSM1261030': {'type': 'HER2 Positive Breast Tumor'}, 'GSM1261031': {'type': 'HER2 Positive Breast Tumor'}, 'GSM1261032': {'type': 'HER2 Positive Breast Tumor'}, 'GSM1261033': {'type': 'Normal Breast Organoids'}, 'GSM1261034': {'type': 'Normal Breast Organoids'}, 'GSM1261035': {'type': 'Normal Breast Organoids'}, 'GSM931723': {'status': 'Atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM2359268': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '100nM / 1 uM', 'drug': 'THZ1 / BGJ398'}, 'GSM2359269': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359266': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '100nM / 1 uM', 'drug': 'THZ1 / BGJ398'}, 'GSM2359267': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '100nM / 1 uM', 'drug': 'THZ1 / BGJ398'}, 'GSM2359264': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '1 uM', 'drug': 'BGJ398'}, 'GSM2359265': {'duration': '48h', 'line': 'RT112', 'tissue': 'bladder', 'concentration': '1 uM', 'drug': 'BGJ398'}, 'GSM1253400': {'cluster': 'CL', 'as': 'Brx61_1_CL4_032012', 'patient': 'Patient#8'}, 'GSM1253401': {'cluster': 'CL', 'as': 'Brx61_1_CL5_032012', 'patient': 'Patient#8'}, 'GSM1253402': {'cluster': 'SC', 'as': 'Brx61_1_SC2_032012', 'patient': 'Patient#8'}, 'GSM1253403': {'cluster': 'SC', 'as': 'Brx61_1_SC4_032012', 'patient': 'Patient#8'}, 'GSM1981350': {'status': 'smoker', 'type': 'airway basal cells'}, 'GSM2544628': {'line': 'HT1080', 'passages': '15-18', 'type': 'Connective tissue-derived fibrosarcoma cells', 'treatment': 'None', 'condition': 'collagen type I matrices, 50 cells/mm^3'}, 'GSM2840270': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840271': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2544626': {'line': 'HT1080', 'passages': '15-18', 'type': 'Connective tissue-derived fibrosarcoma cells', 'treatment': 'Addition of recombinant IL-8', 'condition': 'collagen type I matrices, 10 cells/mm^3'}, 'GSM2544627': {'line': 'HT1080', 'passages': '15-18', 'type': 'Connective tissue-derived fibrosarcoma cells', 'treatment': 'Addition of IL-6 and IL-8 in a ratio of 5:2', 'condition': 'collagen type I matrices, 10 cells/mm^3'}, 'GSM2544624': {'line': 'HT1080', 'passages': '15-18', 'type': 'Connective tissue-derived fibrosarcoma cells', 'treatment': 'None', 'condition': 'collagen type I matrices, 10 cells/mm^3'}, 'GSM2544625': {'line': 'HT1080', 'passages': '15-18', 'type': 'Connective tissue-derived fibrosarcoma cells', 'treatment': 'Addition of recombinant IL-6', 'condition': 'collagen type I matrices, 10 cells/mm^3'}, 'GSM3124794': {'individual': 'mi334', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM1955090': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1955091': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM2393596': {'age': 'post natal day 21', 'type': 'human osteosarcoma cells'}, 'GSM2393597': {'age': 'post natal day 21', 'type': 'human osteosarcoma cells'}, 'GSM2393598': {'age': 'post natal day 21', 'type': 'human osteosarcoma cells'}, 'GSM2393599': {'age': 'post natal day 21', 'type': 'human osteosarcoma cells'}, 'GSM2085679': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085678': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM1862665': {'line': 'Jeu_3', 'condition': 'hypoxic', 'Stage': '8h'}, 'GSM2085675': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085674': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085677': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085676': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085671': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085670': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085673': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085672': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2361388': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'PBMC', 'type': 'Regulatory T cells'}, 'GSM2361389': {'category': 'naïve', 'activation': 'CD45RA+', 'tissue': 'PBMC', 'type': 'Regulatory T cells'}, 'GSM2361386': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'PBMC', 'type': 'Regulatory T cells'}, 'GSM2361387': {'category': 'naïve', 'activation': 'CD45RA+', 'tissue': 'PBMC', 'type': 'Regulatory T cells'}, 'GSM2361384': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'CACTCA'}, 'GSM2361385': {'category': 'naïve', 'activation': 'CD45RA+', 'tissue': 'PBMC', 'type': 'Regulatory T cells'}, 'GSM2361382': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'ACTGAT'}, 'GSM2361383': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'CAACTA'}, 'GSM2361380': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'CAGATC'}, 'GSM2361381': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Conventional CD4 T cells', 'barcode': 'TGACCA'}, 'GSM2807440': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2048617': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2545826': {'treatment': 'DMSO', 'histology': 'colon adenocarcinoma'}, 'GSM1555726': {'antibodies': 'anti-CHKA (Sigma) cat no. HPA024153', 'group': 'SiCHKA', 'line': 'C4-2'}, 'GSM1555727': {'line': 'C4-2', 'group': 'SiNTCONTROL'}, 'GSM1555724': {'antibodies': 'anti-CHKA (Sigma) cat no. HPA024153', 'group': 'SiCHKA', 'line': 'C4-2'}, 'GSM1555725': {'antibodies': 'anti-CHKA (Sigma) cat no. HPA024153', 'group': 'SiCHKA', 'line': 'C4-2'}, 'GSM1555722': {'antibodies': 'anti-CHKA (Sigma) cat no. HPA024153', 'group': 'SiCHKA', 'line': 'C4-2'}, 'GSM1555723': {'antibodies': 'anti-CHKA (Sigma) cat no. HPA024153', 'group': 'SiCHKA', 'line': 'C4-2'}, 'GSM1555721': {'antibodies': 'anti-CHKA (Sigma) cat no. HPA024153', 'group': 'SiCHKA', 'line': 'C4-2'}, 'GSM2545824': {'treatment': 'DMSO', 'histology': 'colon adenocarcinoma'}, 'GSM1555728': {'line': 'C4-2', 'group': 'SiNTCONTROL'}, 'GSM1555729': {'line': 'C4-2', 'group': 'SiNTCONTROL'}, 'GSM1448990': {'line': 'HEK-293', 'treatment': 'siPTBP1'}, 'GSM1448991': {'line': 'HEK-293', 'treatment': 'siUPF1'}, 'GSM1448992': {'line': 'HEK-293', 'treatment': 'siUPF1'}, 'GSM1448993': {'line': 'HEK-293', 'treatment': 'siPTBP1/siUPF1'}, 'GSM1448994': {'line': 'HEK-293', 'treatment': 'siPTBP1/siUPF1'}, 'GSM1868748': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2688979': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1395878': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395879': {'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM2666052': {'age': 'Day 450', 'well': 'C3', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666053': {'age': 'Day 450', 'well': 'F7', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666054': {'age': 'Day 450', 'well': 'B10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666055': {'age': 'Day 450', 'well': 'D8', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666056': {'age': 'Day 450', 'well': 'G7', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666057': {'age': 'Day 450', 'well': 'C8', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM1395870': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395871': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395872': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395873': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395874': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395875': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395876': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395877': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2361928': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361929': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361922': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361923': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361920': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361921': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361926': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361927': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361924': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361925': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705304': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'E54K,L372P', 'date': '05.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705305': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'E54K,L372P-Batch1', 'date': '05.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705306': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'E54K,L372P-Batch1', 'date': '05.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705307': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '05.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705300': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '16.12.2016', 'input': '225 pg', 'line': 'HeLa', 'dilution': '1:20'}, 'GSM2705301': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '16.12.2016', 'input': '225 pg', 'line': 'HeLa', 'dilution': '1:20'}, 'GSM2705302': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '16.12.2016', 'input': '75 pg', 'line': 'HeLa', 'dilution': '1:40'}, 'GSM2705303': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '16.12.2016', 'input': '75 pg', 'line': 'HeLa', 'dilution': '1:40'}, 'GSM2071059': {'type': 'activated naive CD4 T cells', 'with': 'Activin A+IL12'}, 'GSM2705308': {'pcr': 'KAPA Pol', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '05.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705309': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '11.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2862456': {'death': 'Aortic aneurysm', 'gender': 'Male', 'age': '67', 'delay': '9:00 hours', 'tissue': 'Circle of Willis', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'id': 'CoW4'}, 'GSM2747147': {'antibody': 'anti-MAF1 (Santa Cruz sc-365312 lot # G1411)', 'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2862457': {'death': 'Acute renal failure', 'gender': 'Female', 'age': '54', 'delay': '8:00 hours', 'tissue': 'Circle of Willis', 'antibody': 'H3K27ac (Abcam, ab4729)', 'id': 'CoW1'}, 'GSM2747148': {'antibody': 'anti-MAF1 (Santa Cruz sc-365312 lot # G1411)', 'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2747149': {'antibody': 'anti-MAF1 (Santa Cruz sc-365312 lot # G1411)', 'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2862454': {'death': 'Euthanasia (metastasized non-small cell lung carcinoma)', 'gender': 'Female', 'age': '60', 'delay': '8:25 hours', 'tissue': 'Circle of Willis', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'id': 'CoW2'}, 'GSM2011518': {'line': 'HEK293FT', 'variation': 'Transfected with wild type FOXE3 expression vector'}, 'GSM2199509': {'age': '34', 'tissue': 'Liver', 'bmi': '41.9'}, 'GSM2199508': {'source': 'liver', 'line': 'HepG2', 'variation': 'WT control', 'to': 'low concentration DEHP for 3 months'}, 'GSM2199507': {'source': 'liver', 'line': 'HepG2', 'variation': 'WT control', 'to': 'control solvent for three months'}, 'GSM3123422': {'state': 'WT', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3123420': {'state': 'WT', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3123421': {'state': 'WT', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3594345': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594344': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594347': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594346': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594341': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2865067': {'tisue': 'retina', 'antibody': 'H3K27ac (Abcam, ab4729)', 'disease': 'normal', 'agent': 'largazole_37.5nM'}, 'GSM3594343': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2865065': {'tisue': 'retina', 'antibody': 'none', 'disease': 'normal', 'agent': 'DMSO'}, 'GSM1965156': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965157': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2865068': {'tisue': 'retina', 'antibody': 'H3K27ac (Abcam, ab4729)', 'disease': 'normal', 'agent': 'largazole_75nM'}, 'GSM2865069': {'tisue': 'retina', 'antibody': 'H3K27ac (Abcam, ab4729)', 'disease': 'normal', 'agent': 'largazole_300nM'}, 'GSM3594349': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594348': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1965150': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965151': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1171580': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM2411577': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2630232': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630231': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630230': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630237': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630236': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630235': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630234': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2886599': {'age': '71', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'no', 'npm1': '-', 'flt3': '-'}, 'GSM2630239': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630238': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2411579': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2411578': {'source': 'prenatal human brain', 'age': 'GW 16', 'type': 'single-cell sequencing'}, 'GSM2453919': {'code': '404'}, 'GSM2453918': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2886595': {'age': '58', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': 'not done', 'flt3': 'not done'}, 'GSM2516078': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516079': {'line': 'NAMEC8', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2886594': {'age': '73', 'cytorisk': 'intermed1', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': '-'}, 'GSM2677364': {'replicate': 'B', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'white-tufted ear marmoset FOXP2 cDNA'}, 'GSM2677365': {'replicate': 'B', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'Rhesus monkey FOXP2 cDNA'}, 'GSM2677366': {'replicate': 'B', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'common chimpanzee FOXP2 cDNA'}, 'GSM2677360': {'replicate': 'A', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'Rhesus monkey FOXP2 cDNA'}, 'GSM2677361': {'replicate': 'A', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'common chimpanzee FOXP2 cDNA'}, 'GSM2677362': {'replicate': 'B', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'empty expression vector (pcDNA-3)'}, 'GSM2677363': {'replicate': 'B', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'human FOXP2 cDNA'}, 'GSM2886596': {'age': '58', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': 'not done', 'flt3': 'not done'}, 'GSM2886591': {'age': '73', 'cytorisk': 'intermed1', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': '-'}, 'GSM2632589': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2886590': {'age': '50', 'cytorisk': 'intermed2', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '+', 'flt3': '-'}, 'GSM2170469': {'stage': 'Definitive endoderm 1'}, 'GSM2170468': {'stage': 'Definitive endoderm 1'}, 'GSM2453911': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2170463': {'stage': 'Definitive endoderm 1'}, 'GSM2170462': {'stage': 'Definitive endoderm 1'}, 'GSM2170461': {'stage': 'Definitive endoderm 1'}, 'GSM2170460': {'stage': 'Definitive endoderm 1'}, 'GSM2170467': {'stage': 'Definitive endoderm 1'}, 'GSM2170466': {'stage': 'Definitive endoderm 1'}, 'GSM2170465': {'stage': 'Definitive endoderm 1'}, 'GSM2607599': {'line': 'WA26'}, 'GSM2862459': {'death': 'Unknown', 'gender': 'Female', 'age': '90', 'delay': '5:50 hours', 'tissue': 'Circle of Willis', 'antibody': 'H3K27ac (Abcam, ab4729)', 'id': 'CoW3'}, 'GSM2048678': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048679': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1234229': {'replicate': '2', 'line': 'MS1', 'antibody': 'H3K36me3'}, 'GSM1234228': {'replicate': '2.2', 'line': 'MS1', 'antibody': 'H3K36me3'}, 'GSM1234227': {'replicate': '1', 'line': 'MS1', 'antibody': 'H3K36me3'}, 'GSM1234226': {'replicate': '2', 'line': 'MS1', 'antibody': 'H3K27me3'}, 'GSM1234225': {'replicate': '1', 'line': 'MS1', 'antibody': 'H3K27me3'}, 'GSM1234224': {'replicate': '2', 'line': 'MS1', 'antibody': 'H3K27Ac'}, 'GSM1234223': {'replicate': '1', 'line': 'MS1', 'antibody': 'H3K27Ac'}, 'GSM1234222': {'replicate': '1.3', 'line': 'MS1', 'antibody': 'H3K27Ac'}, 'GSM1234221': {'replicate': '1.2', 'line': 'MS1', 'antibody': 'H3K27Ac'}, 'GSM1234220': {'replicate': '1.1', 'line': 'MS1', 'antibody': 'H3K27Ac'}, 'GSM1980495': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2071229': {'treatment': '10nM E2'}, 'GSM2071228': {'treatment': 'Ethanol'}, 'GSM2071227': {'treatment': 'Ethanol'}, 'GSM2071226': {'treatment': 'Ethanol'}, 'GSM2632699': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632698': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632697': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632696': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632695': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632694': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632693': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632692': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632691': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632690': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142534': {'gender': 'female', 'age': '73', 'who': '1', 'dead': '1', 'date': '2012-10-29', 'histology': '3', 'tnm': '1', 'smoking': '3'}, 'GSM2142535': {'gender': 'male', 'age': '65', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142536': {'gender': 'male', 'age': '67', 'who': '0', 'dead': '1', 'date': '2012-11-11', 'histology': '1', 'tnm': '2', 'smoking': '2'}, 'GSM2142537': {'gender': 'male', 'age': '67', 'who': '1', 'dead': '1', 'date': '2010-01-21', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142530': {'gender': 'female', 'age': '76', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142531': {'gender': 'male', 'age': '63', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '3', 'tnm': '3', 'smoking': '3'}, 'GSM2142532': {'gender': 'female', 'age': '65', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142533': {'gender': 'female', 'age': '77', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2341175': {'state': 'control', 'individual': 'patient 9', 'type': 'cell culture of endometrial stromal cells', 'sites': 'Endometrial stroma'}, 'GSM2341174': {'state': 'control', 'individual': 'patient 8', 'type': 'cell culture of endometrial stromal cells', 'sites': 'Endometrial stroma'}, 'GSM2142538': {'gender': 'female', 'age': '69', 'who': '0', 'dead': '1', 'date': '2012-01-03', 'histology': '1', 'tnm': '2', 'smoking': '3'}, 'GSM2142539': {'gender': 'male', 'age': '82', 'who': '1', 'dead': '1', 'date': '2009-04-21', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM2341171': {'state': 'control', 'individual': 'patient 5', 'type': 'cell culture of endometrial stromal cells', 'sites': 'Endometrial stroma'}, 'GSM2341170': {'state': 'endometriosis', 'individual': 'patient 4', 'type': 'cell culture of endometriotic stromal cells', 'sites': 'Ectopic endometriotic stroma : ovary'}, 'GSM2889464': {'state': 'SMA', 'type': 'iPSC-derived motor neuros'}, 'GSM2267220': {'type': 'Normal Human Bronchial Epithelial Cells (NHBE)', 'genotype': 'TRPV1 WT', 'passage': 'between 4 and 6'}, 'GSM2267221': {'type': 'Normal Human Bronchial Epithelial Cells (NHBE)', 'genotype': 'TRPV1 WT', 'passage': 'between 4 and 6'}, 'GSM2267222': {'type': 'Normal Human Bronchial Epithelial Cells (NHBE)', 'genotype': 'TRPV1 I585I/V (HET)', 'passage': 'between 4 and 6'}, 'GSM2267223': {'type': 'Normal Human Bronchial Epithelial Cells (NHBE)', 'genotype': 'TRPV1 I585I/V (HET)', 'passage': 'between 4 and 6'}, 'GSM2100051': {'rin': '6.9', 'Sex': 'Female', 'sspg': '163', 'age': '38', 'bmi': '27.2', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '303', 'method': 'Qiagen:trizol'}, 'GSM2889465': {'state': 'SMA', 'type': 'iPSC-derived motor neuros'}, 'GSM2100050': {'rin': '6.8', 'Sex': 'Female', 'sspg': '163', 'age': '38', 'bmi': '27.2', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '303', 'method': 'Qiagen:trizol'}, 'GSM2100053': {'rin': '9.3', 'Sex': 'Female', 'sspg': '199', 'age': '72', 'bmi': '29.6', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '307', 'method': 'Qiagen:trizol'}, 'GSM2100052': {'rin': '9.4', 'Sex': 'Female', 'sspg': '199', 'age': '72', 'bmi': '29.6', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '307', 'method': 'Qiagen:trizol'}, 'GSM2451137': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451136': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2317008': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2287753': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287750': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287751': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287756': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287757': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287754': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287755': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2317000': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317001': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2287758': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287759': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2317004': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317005': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317006': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317007': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2878311': {'type': 'ESA+CD24lowCD44+ cells', 'variation': 'shPRMT5', 'background': 'MCF7'}, 'GSM2131172': {'method': 'improved AGPC method'}, 'GSM2131171': {'method': 'conventional AGPC method'}, 'GSM2205866': {'type': 'Tumor tissue'}, 'GSM1084077': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'hippuristanol', 'manufacturer': 'Sigma'}, 'GSM1084076': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Sigma'}, 'GSM1084075': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'hippuristanol', 'manufacturer': 'Santa Cruz'}, 'GSM1084074': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Santa Cruz'}, 'GSM1084073': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'hippuristanol', 'manufacturer': 'Abnova'}, 'GSM1084072': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1084071': {'line': '293S', 'treatment': 'emetine'}, 'GSM1084070': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1084079': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'hippuristanol', 'manufacturer': 'Abnova'}, 'GSM1084078': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1273653': {'antibody': 'H3K4me2(abcam, ab32356)', 'type': 'hESC derived definitive endoderm cells'}, 'GSM1273652': {'antibody': 'none', 'type': 'hESC derived definitive endoderm cells'}, 'GSM1273651': {'antibody': 'H3K27me3 (Millipore/upstate , 07-449 )', 'type': 'hESC derived anterior primitive streak (APS)'}, 'GSM1273650': {'antibody': 'H3K27ac (abcam, ab4729)', 'type': 'hESC derived anterior primitive streak (APS)'}, 'GSM1273657': {'antibody': 'none', 'type': 'hESC derived anterior foregut (AFG)'}, 'GSM1273656': {'antibody': 'H3K27me3 (Millipore/upstate , 07-449 )', 'type': 'hESC derived definitive endoderm cells'}, 'GSM2747933': {'type': 'iPSC derived astrocytes', 'mutation': 'SOD1 D90A', 'variation': 'SOD1 D90A mutation'}, 'GSM1273654': {'antibody': 'H3K4me3 (abcam, ab8580)', 'type': 'hESC derived definitive endoderm cells'}, 'GSM1273659': {'antibody': 'H3K4me3 (abcam, ab8580)', 'type': 'hESC derived anterior foregut (AFG)'}, 'GSM1273658': {'antibody': 'H3K4me2(abcam, ab32356)', 'type': 'hESC derived anterior foregut (AFG)'}, 'GSM2805323': {'status': 'Healthy', 'gender': 'male', 'age': '64', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805322': {'status': 'Healthy', 'gender': 'male', 'age': '64', 'timepoint': 'D2_ZT_15:30'}, 'GSM2805321': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '56', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805320': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '56', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805327': {'status': 'Healthy', 'gender': 'male', 'age': '53', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805326': {'status': 'Healthy', 'gender': 'male', 'age': '53', 'timepoint': 'D2_ZT_15:30'}, 'GSM2805325': {'status': 'Healthy', 'gender': 'male', 'age': '64', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805324': {'status': 'Healthy', 'gender': 'male', 'age': '64', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805329': {'status': 'Healthy', 'gender': 'male', 'age': '53', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805328': {'status': 'Healthy', 'gender': 'male', 'age': '53', 'timepoint': 'D3_ZT_5:45'}, 'GSM2048818': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048819': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048812': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048813': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048810': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048811': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048816': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048817': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048814': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048815': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2205865': {'type': 'Noncancerous tissue'}, 'GSM2752559': {'line': 'A549', 'agent': 'trametinib treated 50nM'}, 'GSM2752558': {'line': 'A549', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2374127': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2752551': {'line': 'LU65', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752550': {'line': 'LU65', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752553': {'line': 'LU65', 'agent': 'trametinib treated 50nM'}, 'GSM2752552': {'line': 'LU65', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752555': {'line': 'A549', 'agent': 'DMSO treated'}, 'GSM2752554': {'line': 'LU65', 'agent': 'trametinib treated 50nM'}, 'GSM2752557': {'line': 'A549', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2752556': {'line': 'A549', 'agent': 'DMSO treated'}, 'GSM2562604': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562605': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562606': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562607': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562600': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2616360': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2562602': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562603': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562608': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562609': {'gender': 'female', 'race': 'Bruneian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1842497': {'duration': '12h', 'line': 'SUM149', 'treatment': 'DMSO'}, 'GSM2543634': {'library_id': 'lib5751', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511544': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2511547': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2511546': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2511541': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM1217962': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH070'}, 'GSM1217961': {'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'CITH053'}, 'GSM1217960': {'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'CITH068'}, 'GSM2511549': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2511548': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2842528': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM1656078': {'patient': '14', 'group': 'PP', 'gender': 'female'}, 'GSM1656079': {'patient': '14', 'group': 'PN', 'gender': 'female'}, 'GSM2842529': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM1656072': {'patient': '11', 'group': 'PP', 'gender': 'female'}, 'GSM1656073': {'patient': '11', 'group': 'PN', 'gender': 'female'}, 'GSM1656070': {'patient': '10', 'group': 'PP', 'gender': 'male'}, 'GSM1656071': {'patient': '10', 'group': 'PN', 'gender': 'male'}, 'GSM1656076': {'patient': '13', 'group': 'PP', 'gender': 'female'}, 'GSM1922707': {'status': 'WT', 'tissue': 'breast', 'treatment': 'ReACp53', 'line': 'MCF7', 'type': 'breast cancer', 'stage': 'N/A'}, 'GSM1656074': {'patient': '12', 'group': 'PP', 'gender': 'female'}, 'GSM1656075': {'patient': '12', 'group': 'PN', 'gender': 'female'}, 'GSM2754727': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0745', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2342281': {'type': 'EBV (Epstein Barr Virus)-transformed B lymphocyte cells', 'genotype': '(GG)'}, 'GSM2342282': {'type': 'EBV (Epstein Barr Virus)-transformed B lymphocyte cells', 'genotype': '(GG)'}, 'GSM2342283': {'type': 'EBV (Epstein Barr Virus)-transformed B lymphocyte cells', 'genotype': '(GG)'}, 'GSM2342284': {'type': 'EBV (Epstein Barr Virus)-transformed B lymphocyte cells', 'genotype': '(CC)'}, 'GSM2342285': {'type': 'EBV (Epstein Barr Virus)-transformed B lymphocyte cells', 'genotype': '(CC)'}, 'GSM2342286': {'type': 'EBV (Epstein Barr Virus)-transformed B lymphocyte cells', 'genotype': '(CC)'}, 'GSM2671240': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671242': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2842520': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM1842499': {'duration': '12h', 'line': 'SUM149', 'treatment': 'JQ1'}, 'GSM2842521': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM2344898': {'line': 'Patient-derived neurosphere line GSC4', 'treatment': 'none'}, 'GSM2305799': {'tissue': 'colon'}, 'GSM2305798': {'tissue': 'colon'}, 'GSM2305793': {'tissue': 'colon'}, 'GSM2305792': {'tissue': 'colon'}, 'GSM1545076': {'type': 'gastric cancer tumor', 'class': 'IIIC', 'location': 'Body'}, 'GSM2305790': {'tissue': 'colon'}, 'GSM2305797': {'tissue': 'colon'}, 'GSM2305796': {'tissue': 'colon'}, 'GSM2305795': {'tissue': 'colon'}, 'GSM2305794': {'tissue': 'colon'}, 'GSM1599205': {'line': 'CSC_shH1.0-2', 'treatment': 'SHOT (16h Dox)'}, 'GSM1599204': {'line': 'CSC_shH1.0-2', 'treatment': 'NT (uninduced)'}, 'GSM1599207': {'line': 'CSC_shH1.0-2', 'treatment': 'SHOT (16h Dox)'}, 'GSM1599206': {'line': 'CSC_shH1.0-2', 'treatment': 'SHOT (16h Dox)'}, 'GSM1599201': {'line': 'CSC_shH1.0-1', 'treatment': 'washDOX (4d after Dox removal)'}, 'GSM1599200': {'line': 'CSC_shH1.0-1', 'treatment': 'washDOX (4d after Dox removal)'}, 'GSM1599203': {'line': 'CSC_shH1.0-2', 'treatment': 'NT (uninduced)'}, 'GSM1599202': {'line': 'CSC_shH1.0-2', 'treatment': 'NT (uninduced)'}, 'GSM2581188': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581189': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2842527': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM1599209': {'line': 'CSC_shH1.0-2', 'treatment': 'DOX (14d Dox)'}, 'GSM1599208': {'line': 'CSC_shH1.0-2', 'treatment': 'DOX (14d Dox)'}, 'GSM1545075': {'type': 'gastric cancer tumor', 'class': 'IIIB', 'location': 'Artrum'}, 'GSM1545074': {'type': 'gastric cancer tumor', 'class': 'IIIC', 'location': 'Proximal'}, 'GSM1579154': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_48h_0.1µM'}, 'GSM2195117': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195115': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195113': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195111': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195118': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195119': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM3190518': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.13363'}, 'GSM3190519': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.755041'}, 'GSM3190510': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.0079'}, 'GSM3190511': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.713552'}, 'GSM3190512': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.185971'}, 'GSM3190513': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A104', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '5.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.9', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.874146'}, 'GSM3190514': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A02', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.868187'}, 'GSM3190515': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.741935'}, 'GSM3190516': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.726877'}, 'GSM3190517': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.961114'}, 'GSM1545071': {'type': 'gastric cancer tumor', 'class': 'IIIA', 'location': 'Body'}, 'GSM3576357': {'line': 'Hek293FT', 'transfection': 'Transfected with WT-Cas9, gRNA targeting MIAT locus and activator domains'}, 'GSM2151819': {'status': 'healthy control', 'subtype': 'cuadate nucleus', 'tissue': 'Brain'}, 'GSM2151818': {'status': 'healthy control', 'subtype': 'cuadate nucleus', 'tissue': 'Brain'}, 'GSM1620648': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620649': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620644': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620645': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620646': {'type': 'MCF10a human breast cancer cells'}, 'GSM1368019': {'line': 'HEK293', 'transfection': 'mock', 'purification': 'oligo(dT) beads'}, 'GSM1620640': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620641': {'type': 'MCF10a human breast cancer cells'}, 'GSM3576358': {'line': 'Hek293FT', 'transfection': 'Transfected with WT-Cas9, gRNA targeting MIAT locus and activator domains'}, 'GSM3576359': {'line': 'Hek293FT', 'transfection': 'Transfected with Cas9Beta, gRNA targeting MIAT locus and activator domains'}, 'GSM1908809': {'tissue': 'CD34+ HSPCs', 'stage': 'fetal liver'}, 'GSM1908808': {'tissue': 'CD34+ HSPCs', 'stage': 'fetal liver'}, 'GSM1583181': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583180': {'tissue': 'thyroid', 'type': 'Control sample', 'diagnosis': 'healthy'}, 'GSM1545070': {'type': 'gastric cancer tumor', 'class': 'IB', 'location': 'Distal'}, 'GSM1369947': {'vendor': 'Millipore', 'type': 'MCF7'}, 'GSM1369946': {'vendor': 'Abcam', 'antibody': 'H3K36me3', 'type': 'MCF7'}, 'GSM1369945': {'vendor': 'Millipore', 'antibody': 'H3K9me2', 'type': 'MCF7'}, 'GSM1369944': {'vendor': 'Millipore', 'antibody': 'AGO1', 'type': 'MCF7'}, 'GSM1369943': {'vendor': 'Abcam', 'antibody': 'H3', 'type': 'MCF7'}, 'GSM2840429': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840428': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1369949': {'vendor': 'Diagenode', 'antibody': '5metC', 'type': 'MCF7'}, 'GSM1369948': {'vendor': 'Abcam', 'antibody': 'HP1_alpha', 'type': 'MCF7'}, 'GSM2840427': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840426': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2361803': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2947322': {'tumor': 'CD30+LPD', 'tissue': 'skin', 'classification': 'SATB1-'}, 'GSM2947320': {'tumor': 'CD30+LPD', 'tissue': 'skin', 'classification': 'SATB1-'}, 'GSM2947321': {'tumor': 'CD30+LPD', 'tissue': 'skin', 'classification': 'SATB1-'}, 'GSM763404': {'line': 'OCI-LY1', 'antibody': 'BCL6 (D8-antibody)'}, 'GSM763405': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763406': {'line': 'OCI-LY1', 'antibody': 'SMRT'}, 'GSM763407': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763400': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763402': {'line': 'OCI-LY1', 'antibody': 'BCL6 (N3-antibody)'}, 'GSM763403': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM1963752': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963753': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963750': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963751': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963756': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963757': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963754': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963755': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1559443': {'ir': '0.32123353678124', 'weight': 'non-obese', 'gender': 'female', 'age': '48', 'bmi': '24', 'disease': 'ngt', 'l': '0.03', 'h': '0', 'id': '13a'}, 'GSM1559442': {'ir': '0.46882325363338', 'weight': 'non-obese', 'gender': 'female', 'age': '49', 'bmi': '23', 'disease': 'ngt', 'l': '0.05', 'h': '0', 'id': '23a'}, 'GSM1559441': {'ir': '0.375657400450789', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '24.4', 'disease': 'ngt', 'l': '0.12', 'h': '0', 'id': '35a'}, 'GSM1559440': {'ir': '0.48030739673391', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '23.9', 'disease': 'ngt', 'l': '0.08', 'h': '0', 'id': '32a'}, 'GSM1559444': {'ir': '0.693000693000693', 'weight': 'non-obese', 'gender': 'female', 'age': '63', 'bmi': '24.8', 'disease': 'ngt', 'l': '0.05', 'h': '0', 'id': '2a'}, 'GSM2243610': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2686863': {'individual': '60', 'group': 'Fulani', 'ID': '136', 'population': 'CD14- lymphocytes'}, 'GSM2686862': {'individual': '57', 'group': 'Fulani', 'ID': '123', 'population': 'CD14- lymphocytes'}, 'GSM2686861': {'individual': '51', 'group': 'Fulani', 'ID': '201', 'population': 'CD14- lymphocytes'}, 'GSM2686860': {'individual': '49', 'group': 'Fulani', 'ID': '124', 'population': 'CD14- lymphocytes'}, 'GSM2686866': {'individual': '54', 'group': 'Fulani', 'ID': '131', 'population': 'CD14- lymphocytes'}, 'GSM2686865': {'individual': '53', 'group': 'Fulani', 'ID': '132', 'population': 'CD14- lymphocytes'}, 'GSM2686864': {'individual': '47', 'group': 'Fulani', 'ID': '121', 'population': 'CD14- lymphocytes'}, 'GSM2756629': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756628': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM1726312': {'generation': '2nd generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Post-treatment'}, 'GSM2756623': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756622': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756627': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756626': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756625': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756624': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM1279704': {'passages': 'PDL15', 'crosslinking': 'not applied', 'treatment': 'PDL 15 Contro siRNA', 'protein': 'not applied', 'type': 'WI-38 Total RNA', 'line': 'WI-38'}, 'GSM1858943': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'Control'}, 'GSM1692718': {'with': 'shRNA targeting ELAVL2', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'ELAVL2 knockdown', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM1436481': {'line': 'HeLa'}, 'GSM2882403': {'patient': '1', 'tissue': 'Skin biopsy', 'group': 'uninvolved skin of psoriasis patients (PN)'}, 'GSM2882402': {'patient': '1', 'tissue': 'Skin biopsy', 'group': 'lesional skin of psoriasis patients (PP)'}, 'GSM2882401': {'patient': '8', 'tissue': 'Monolayer keratinocytes', 'group': 'normal skin from control individuals (NN)'}, 'GSM2882400': {'patient': '7', 'tissue': 'Monolayer keratinocytes', 'group': 'normal skin from control individuals (NN)'}, 'GSM2882407': {'patient': '3', 'tissue': 'Skin biopsy', 'group': 'uninvolved skin of psoriasis patients (PN)'}, 'GSM2882406': {'patient': '3', 'tissue': 'Skin biopsy', 'group': 'lesional skin of psoriasis patients (PP)'}, 'GSM2882405': {'patient': '2', 'tissue': 'Skin biopsy', 'group': 'uninvolved skin of psoriasis patients (PN)'}, 'GSM2882404': {'patient': '2', 'tissue': 'Skin biopsy', 'group': 'lesional skin of psoriasis patients (PP)'}, 'GSM2882409': {'patient': '4', 'tissue': 'Skin biopsy', 'group': 'uninvolved skin of psoriasis patients (PN)'}, 'GSM2882408': {'patient': '4', 'tissue': 'Skin biopsy', 'group': 'lesional skin of psoriasis patients (PP)'}, 'GSM2411760': {'polarization': 'M1', 'type': 'M1 macrophage', 'treatment': 'Media', 'id': '33'}, 'GSM2176026': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2411766': {'line': '1293B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411767': {'line': '1441F', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM1698571': {'donors': '3', 'vendor': 'Agilent', 'gender': 'Female', 'age': '39, 70, & 52 years old', 'isolate': 'Lot no.: 0006056559', 'tissue': 'Stomach'}, 'GSM1698570': {'donors': '1', 'vendor': 'Biochain', 'gender': 'Male', 'age': '26 years old', 'isolate': 'Lot no.: B106007', 'tissue': 'Kidney'}, 'GSM1698573': {'donors': '1', 'vendor': 'Origene', 'gender': 'Male', 'age': '59 years old', 'isolate': 'Cat. no.: CR561840', 'tissue': 'Stomach'}, 'GSM1698572': {'donors': '1', 'vendor': 'Biochain', 'gender': 'Male', 'age': '24 years old', 'isolate': 'Lot no.: A506301', 'tissue': 'Stomach'}, 'GSM1698575': {'donors': '1', 'vendor': 'Origene', 'gender': 'Female', 'age': '32 years old', 'isolate': 'Cat. no.: CR560393', 'tissue': 'Stomach'}, 'GSM2411764': {'line': '12569B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM1698577': {'donors': '1', 'vendor': 'Biochain', 'gender': 'Male', 'age': '29 years old', 'isolate': 'Lot no.: 302060', 'tissue': 'Colon'}, 'GSM1698576': {'donors': '1', 'vendor': 'Agilent', 'gender': 'Male', 'age': '82 years old', 'isolate': 'Lot no.: 0006055759', 'tissue': 'Colon'}, 'GSM2411765': {'line': '1293A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM1888619': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1848796': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 5', 'point': 'pre exercise'}, 'GSM2136849': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 5 days, AF9 Knock Down', 'batch': '1'}, 'GSM1848797': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 8', 'point': 'immediately after exercise'}, 'GSM2136848': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 3 days, AF9 Knock Down', 'batch': '1'}, 'GSM1848794': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 5', 'point': 'immediately after exercise'}, 'GSM2230408': {'type': 'fetal-derived neural progenitor cells', 'genotype': 'TRIM-28 KD'}, 'GSM1848795': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 5', 'point': '3 hours after exercise'}, 'GSM2632235': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632234': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2455854': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455855': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455856': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455857': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455850': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455851': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455852': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455853': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2666116': {'age': 'Day 130', 'well': 'E12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2455858': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455859': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2431625': {'number': '2_38', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_24h', 'donor': 'D2', 'concentration': '10μM'}, 'GSM2431624': {'number': '2_39', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D2', 'concentration': '100ng/ml'}, 'GSM2431627': {'number': '2_28', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D2', 'concentration': '10μM'}, 'GSM2431626': {'number': '2_37', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D2'}, 'GSM2431621': {'number': '2_8', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_24h', 'donor': 'D3', 'concentration': '10μM'}, 'GSM2431620': {'number': '2_9', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D1', 'concentration': '100ng/ml'}, 'GSM2431623': {'number': '2_40', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D2', 'concentration': '10μM'}, 'GSM2431622': {'number': '2_7', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D1'}, 'GSM2431629': {'number': '2_26', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_06h', 'donor': 'D2', 'concentration': '10μM'}, 'GSM2431628': {'number': '2_27', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D2', 'concentration': '100ng/ml'}, 'GSM2256181': {'infected': 'Gal4', 'type': 'HeLa'}, 'GSM2256180': {'infected': 'common:TSS11541_+_102133421.23-P1P2', 'type': 'HeLa'}, 'GSM2256183': {'infected': 'common:TSS11541_+_102133389.23-P1P2', 'type': 'U87'}, 'GSM2256182': {'infected': 'Gal4', 'type': 'HeLa'}, 'GSM2256185': {'infected': 'Gal4', 'type': 'U87'}, 'GSM2256184': {'infected': 'common:TSS11541_+_102133421.23-P1P2', 'type': 'U87'}, 'GSM2256187': {'infected': 'common:TSS11541_+_102133389.23-P1P2', 'type': 'HeLa'}, 'GSM2256186': {'infected': 'Gal4', 'type': 'U87'}, 'GSM2256189': {'infected': 'Gal4', 'type': 'HeLa'}, 'GSM2256188': {'infected': 'common:TSS11541_+_102133421.23-P1P2', 'type': 'HeLa'}, 'GSM2501443': {'time': '0', 'treatment': 'none', 'infection': 'mock', 'Stage': 'latency'}, 'GSM2459000': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.25'}, 'GSM2501445': {'time': '2 weeks', 'treatment': 'none', 'infection': 'mock', 'Stage': 'latency'}, 'GSM2501444': {'time': '0', 'treatment': 'none', 'infection': 'HIV vector', 'Stage': 'latency'}, 'GSM2501447': {'time': '4 weeks', 'treatment': 'none', 'infection': 'mock', 'Stage': 'latency'}, 'GSM2501446': {'time': '2 weeks', 'treatment': 'none', 'infection': 'HIV vector', 'Stage': 'latency'}, 'GSM2501449': {'time': '6 weeks', 'treatment': 'none', 'infection': 'mock', 'Stage': 'latency'}, 'GSM2501448': {'time': '4 weeks', 'treatment': 'none', 'infection': 'HIV vector', 'Stage': 'latency'}, 'GSM1395795': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395794': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395797': {'subtype': 'Neu+Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395796': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2358070': {'tissue': 'fetal cortex', 'treatment': 'SOX5 Overexpression', 'construct': 'pLVU-SOX5-GFP'}, 'GSM2358071': {'tissue': 'fetal cortex', 'treatment': 'SOX5 Overexpression', 'construct': 'pLVU-SOX5-GFP'}, 'GSM1395793': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395792': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2152531': {'line': 'RWPE1', 'expression': 'Control vector'}, 'GSM2152530': {'line': 'RWPE1', 'expression': 'Control vector'}, 'GSM2152533': {'line': 'RWPE1', 'expression': 'NKX3.1'}, 'GSM2204156': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM1395799': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395798': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2152537': {'line': 'RWPE1', 'expression': 'NKX3.1'}, 'GSM2152536': {'line': 'RWPE1', 'expression': 'NKX3.1'}, 'GSM1681926': {'gender': 'male', 'age': '33', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681927': {'gender': 'female', 'age': '51', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1533238': {'enrichment': 'SSEA3+', 'treatment': 'DOX days 0-13; LSD1 inhibition'}, 'GSM1533239': {}, 'GSM1533234': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-24'}, 'GSM1533235': {'treatment': 'DOX days 0-5; LSD1 inhibition'}, 'GSM1533236': {'treatment': 'DOX days 0-5; LSD1 control'}, 'GSM1533237': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-13; LSD1 inhibition'}, 'GSM1533230': {'enrichment': 'TRA-1-60-', 'treatment': 'DOX days 0-20'}, 'GSM1681929': {'gender': 'male', 'age': '65', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1533232': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-19'}, 'GSM1533233': {'enrichment': 'TRA-1-60+', 'treatment': 'DOX days 0-19'}, 'GSM2784413': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '48h'}, 'GSM2784412': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '48h'}, 'GSM2784411': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '48h'}, 'GSM2784410': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '48h'}, 'GSM2784417': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '48h'}, 'GSM2784416': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '48h'}, 'GSM2784415': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '48h'}, 'GSM2784414': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_1', 'time': '48h'}, 'GSM2784419': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '48h'}, 'GSM2784418': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORA siRNA_2', 'time': '48h'}, 'GSM2877319': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877318': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877313': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '1 uM pioglitazone'}, 'GSM2877312': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '1 uM pioglitazone'}, 'GSM2877311': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '1 uM pioglitazone'}, 'GSM2877310': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877317': {'passages': '8', 'line': '575A', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877316': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877315': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877314': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM1055814': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K4me1 (Abcam ab8895)', 'treatment': 'no treat'}, 'GSM2871626': {'tissue': 'Femur', 'stage': '17 wks'}, 'GSM2084463': {'induction': 'PMA', 'time': '168 hr'}, 'GSM2084462': {'induction': 'PMA', 'time': '168 hr'}, 'GSM2084461': {'induction': 'PMA', 'time': '168 hr'}, 'GSM2084460': {'induction': 'PMA', 'time': '144 hr'}, 'GSM2084466': {'induction': 'PMA+LPS', 'time': '168 hr'}, 'GSM2084465': {'induction': 'PMA+LPS', 'time': '168 hr'}, 'GSM2084464': {'induction': 'PMA+LPS', 'time': '168 hr'}, 'GSM1965289': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1395300': {'type': 'reprogramming CD34+', 'time': 'day 21'}, 'GSM1941369': {'tissue': 'Blood', 'type': 'Monocyte', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM1941368': {'tissue': 'Blood', 'type': 'Monocyte', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM863056': {'state': 'paracancerous', 'tissue': 'bladder'}, 'GSM863057': {'state': 'cancerous', 'tissue': 'bladder'}, 'GSM1941365': {'tissue': 'Blood', 'type': 'BDCA1+CD14+', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM863055': {'state': 'normal', 'tissue': 'bladder'}, 'GSM1941363': {'tissue': 'Blood', 'type': 'BDCA1+ DC', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM1941362': {'tissue': 'Blood', 'type': 'BDCA1+ DC', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM1690209': {'line': 'HeLa', 'expression': 'shRNA against GFP'}, 'GSM2871628': {'tissue': 'Femur', 'stage': '17 wks'}, 'GSM2845509': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siCtrl', 'sirna': 'siCtrl'}, 'GSM2845508': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siCtrl', 'sirna': 'siCtrl'}, 'GSM3082789': {'subtype': 'total RNA from cytosol fraction', 'line': 'HEK293', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM3082788': {'subtype': 'total RNA from cytosol fraction', 'line': 'HEK293', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM3082787': {'subtype': 'total RNA from cytosol fraction', 'line': 'HEK293', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM3082786': {'subtype': 'total RNA from cytosol fraction', 'line': 'HEK293', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2845507': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siCtrl', 'sirna': 'siCtrl'}, 'GSM2845506': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siCtrl', 'sirna': 'siCtrl'}, 'GSM2845505': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siCtrl', 'sirna': 'siCtrl'}, 'GSM2932995': {'pucai': '70', 'score': '3', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM2932994': {'pucai': '20', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '17'}, 'GSM2932997': {'pucai': '25', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '15'}, 'GSM2932996': {'pucai': '40', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932991': {'pucai': '70', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '11'}, 'GSM2932990': {'pucai': '65', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2932993': {'pucai': '15', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '15'}, 'GSM2932992': {'pucai': '60', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '17'}, 'GSM2932999': {'pucai': '25', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '9'}, 'GSM2932998': {'pucai': '50', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '14'}, 'GSM1977403': {'tissue': 'neonatal cord blood', 'type': 'MLP'}, 'GSM1977402': {'tissue': 'neonatal cord blood', 'type': 'MEP+-'}, 'GSM1977401': {'tissue': 'neonatal cord blood', 'type': 'HSC'}, 'GSM1977400': {'tissue': 'neonatal cord blood', 'type': 'CMP--'}, 'GSM1977407': {'tissue': 'neonatal cord blood', 'type': 'HSC'}, 'GSM1977406': {'tissue': 'neonatal cord blood', 'type': 'CMP--'}, 'GSM2933028': {'pucai': '50', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '6'}, 'GSM2933029': {'pucai': '30', 'score': '6', 'remission': 'Yes', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '12'}, 'GSM2933026': {'pucai': '55', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2933027': {'pucai': '85', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM2933024': {'pucai': '55', 'score': '4', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '11'}, 'GSM2933025': {'pucai': '55', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '17'}, 'GSM2933022': {'pucai': '65', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '13'}, 'GSM2933023': {'pucai': '70', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2933020': {'pucai': '65', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2933021': {'pucai': '50', 'score': '3', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM1551898': {'line': 'HeLa-S3', 'tissue': 'cervix', 'genotype': 'LATS2+/+'}, 'GSM1551899': {'line': 'HeLa-S3', 'tissue': 'cervix', 'genotype': 'LATS2-/-'}, 'GSM1517661': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Afum', 'time': '12hr'}, 'GSM1517660': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Afum', 'time': '6hr'}, 'GSM1517662': {'tissue': 'lung', 'type': 'NHBE', 'infection': 'Afum', 'time': '12hr'}, 'GSM2142484': {'gender': 'male', 'age': '74', 'who': '1', 'dead': '1', 'date': '2009-09-13', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2142485': {'gender': 'female', 'age': '69', 'who': '1', 'dead': '1', 'date': '2008-09-08', 'histology': '3', 'tnm': '1', 'smoking': '2'}, 'GSM2142488': {'gender': 'male', 'age': '56', 'who': '0', 'dead': '1', 'date': '2007-12-01', 'histology': '3', 'tnm': '3', 'smoking': '1'}, 'GSM1510129': {'line': 'BJ-NT-ES-5', 'type': 'Undifferentiated nuclear-transfer embryonic stem cells'}, 'GSM1510128': {'line': '1018-Fib', 'type': 'Fibroblasts'}, 'GSM2142489': {'gender': 'male', 'age': '78', 'who': '1', 'dead': '1', 'date': '2008-08-18', 'histology': '1', 'tnm': '2', 'smoking': '2'}, 'GSM1510127': {'line': 'BJ-Fib', 'type': 'Fibroblasts'}, 'GSM2563829': {'status': 'healthy', 'gender': 'female', 'tissue': 'decidual tissues', 'type': 'CD4+ T cells', 'pregnancy': 'early'}, 'GSM2563828': {'status': 'healthy', 'gender': 'female', 'tissue': 'decidual tissues', 'type': 'CD4+ T cells', 'pregnancy': 'early'}, 'GSM1936646': {'antibody': 'none', 'type': 'T-lymphocyte', 'stage': 'Activated'}, 'GSM1936644': {'antibody': 'Normal Rabbit IgG [2729] (Cell signaling) Lot #5', 'type': 'T-lymphocyte', 'stage': 'Activated'}, 'GSM1936645': {'antibody': 'none', 'type': 'T-lymphocyte', 'stage': 'Activated'}, 'GSM1936642': {'antibody': 'none', 'type': 'T-lymphocyte', 'stage': 'Naïve'}, 'GSM1936643': {'antibody': 'none', 'type': 'T-lymphocyte', 'stage': 'Naïve'}, 'GSM1936640': {'antibody': 'anti-5-hydroxymethylcytidine [A-1018] (Epigentek) Lot #A503009', 'type': 'T-lymphocyte', 'stage': 'Activated'}, 'GSM1936641': {'antibody': 'Normal Rabbit IgG [2729] (Cell signaling) Lot #5', 'type': 'T-lymphocyte', 'stage': 'Naïve'}, 'GSM1414980': {'region': 'BA46', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM2327638': {'strain': 'human', 'type': 'papillary thyroid cancer cells'}, 'GSM2327639': {'strain': 'human', 'type': 'papillary thyroid cancer cells'}, 'GSM2455241': {'line': 'SET2', 'type': 'cultured sAML cells', 'treatment': 'ARV-825'}, 'GSM2133909': {'status': 'mild metabolic syndrome', 'type': 'pheripheral mononuclear cells', 'group': 'pterocarpan-rich extract soybean leaf (PT)', 'id': 'PT_3', 'point': 'before PT-supplemented'}, 'GSM2298384': {'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM2455243': {'line': 'SET2', 'type': 'cultured sAML cells', 'treatment': 'OTX015'}, 'GSM2309793': {'line': 'A549', 'tissue': 'lung adenocarcinoma'}, 'GSM1105796': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105797': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105794': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105795': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105792': {'subtypes': 'Not assigned', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105793': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105790': {'subtypes': 'Not assigned', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105791': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2259812': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM1162984': {'patient': 'Disease_K1', 'gender': 'M', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Agonist', 'id': '3'}, 'GSM2259810': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259811': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259816': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259817': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM1105798': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105799': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1162986': {'patient': 'Disease_K1', 'gender': 'M', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Untreated', 'id': '5'}, 'GSM855978': {'vendor': 'Cell Signaling', 'antibody': 'anti-H2Bub', 'line': 'siRNF20-transfected NCCIT', 'type': 'embryonic carcinoma cells', 'number': '5546'}, 'GSM2455246': {'line': 'SET2', 'type': 'cultured sAML cells', 'treatment': 'Control'}, 'GSM855979': {'vendor': 'Cell Signaling (5546) with lot number #1', 'antibody': 'anti-H2Bub', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells'}, 'GSM1162988': {'patient': 'Disease_K1', 'gender': 'M', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Agonist', 'id': '7'}, 'GSM1162989': {'patient': 'Disease_K1', 'gender': 'M', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Antagonist', 'id': '8'}, 'GSM2176115': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2616394': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2176117': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176116': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176111': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176110': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176113': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176112': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176119': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176118': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2418719': {'type': 'Umbilical vein endothelial cells', 'passage': '6-8'}, 'GSM3711661': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '11'}, 'GSM1553232': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553233': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553230': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553231': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553234': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM2792494': {'storage': 'fresh blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 3'}, 'GSM2792495': {'storage': '72-hour preserved blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 3'}, 'GSM2792496': {'storage': 'fresh blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 4'}, 'GSM2792497': {'storage': '48-hour preserved blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 4'}, 'GSM2792490': {'storage': 'fresh blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 3'}, 'GSM2792491': {'storage': '24-hour preserved blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 3'}, 'GSM2792492': {'storage': 'fresh blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 3'}, 'GSM2792493': {'storage': '48-hour preserved blood', 'type': 'enriched prostate CTCs from patient blood sample', 'id': 'patient 3'}, 'GSM2266296': {'with': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM2266297': {'with': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM2266295': {'with': 'Silencer select negative control siRNA #2 (Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM3586474': {'origin': 'GCB', 'pfstt': '274', 'pfscs': '0', 'region': 'North America', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '542', 'cycles': '6', 'oscs': '0'}, 'GSM3586475': {'origin': 'ABC', 'pfstt': '297', 'pfscs': '1', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '741', 'cycles': '6', 'oscs': '1'}, 'GSM3586476': {'origin': 'GCB', 'pfstt': '1', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '122', 'cycles': '6', 'oscs': '0'}, 'GSM3586477': {'origin': 'GCB', 'pfstt': '177', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '864', 'cycles': '6', 'oscs': '0'}, 'GSM3586470': {'origin': 'GCB', 'pfstt': '833', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '839', 'cycles': '6', 'oscs': '0'}, 'GSM3586471': {'origin': 'ABC', 'pfstt': '791', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '829', 'cycles': '6', 'oscs': '0'}, 'GSM3586472': {'origin': 'UNCLASSIFIED', 'pfstt': '703', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '753', 'cycles': '6', 'oscs': '0'}, 'GSM3586473': {'pfstt': '867', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1262', 'cycles': '6', 'oscs': '0'}, 'GSM3586478': {'origin': 'GCB', 'pfstt': '746', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '746', 'cycles': '6', 'oscs': '0'}, 'GSM3586479': {'origin': 'ABC', 'pfstt': '939', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1090', 'cycles': '8', 'oscs': '0'}, 'GSM2691246': {'tissue': 'lesion', 'patient': 'p23'}, 'GSM2691245': {'tissue': 'lesion', 'patient': 'p83'}, 'GSM2691244': {'tissue': 'lesion', 'patient': 'p22'}, 'GSM2691243': {'tissue': 'lesion', 'patient': 'p32'}, 'GSM2691242': {'tissue': 'control', 'patient': 'p23'}, 'GSM2691241': {'tissue': 'control', 'patient': 'p83'}, 'GSM2691240': {'tissue': 'control', 'patient': 'p22'}, 'GSM1897943': {'line': 'HFL-1', 'transfection': 'siTAZ #1'}, 'GSM1897942': {'line': 'HFL-1', 'transfection': 'siTAZ #1'}, 'GSM2348789': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348788': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348783': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348782': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348781': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348780': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348787': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348786': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348785': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348784': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565087': {'construction': 'PLATE-Seq', 'drug': 'Sorafenib'}, 'GSM2434065': {'line': 'MDA-MB-231', 'protocol': '4 kPa', 'point': '24 hours'}, 'GSM2434066': {'line': 'MDA-MB-231', 'protocol': '8 kPa', 'point': '24 hours'}, 'GSM2434067': {'line': 'MDA-MB-231', 'protocol': '41 kPa', 'point': '24 hours'}, 'GSM2565083': {'construction': 'PLATE-Seq', 'drug': 'Cobimetinib (GDC-0973, RG7420)'}, 'GSM2565082': {'construction': 'PLATE-Seq', 'drug': 'Ixabepilone'}, 'GSM2565081': {'construction': 'PLATE-Seq', 'drug': 'Azacitidine'}, 'GSM2434063': {'line': 'MDA-MB-231', 'point': '0'}, 'GSM2434068': {'line': 'MDA-MB-231', 'protocol': '1 kPa', 'point': '6 days'}, 'GSM2434069': {'line': 'MDA-MB-231', 'protocol': '4 kPa', 'point': '6 days'}, 'GSM2565089': {'construction': 'PLATE-Seq', 'drug': 'Lenalidomide'}, 'GSM2565088': {'construction': 'PLATE-Seq', 'drug': 'Melphalan'}, 'GSM2405949': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF8 knockdown'}, 'GSM1593041': {'type': 'aortic vascular smooth muscle cells', 'treatment': 'Cytosolic Hsp60 normal and TNF-alpha positive'}, 'GSM2348362': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1593040': {'type': 'aortic vascular smooth muscle cells', 'treatment': 'Cytosolic Hsp60 depletion and TNF-alpha negative'}, 'GSM2361878': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2027531': {'line': 'H7 derived'}, 'GSM1509297': {'line': 'Hela', 'transfection': 'U2AF65 siRNA'}, 'GSM1509296': {'line': 'Hela', 'transfection': 'NC siRNA'}, 'GSM1509295': {'line': 'Hela', 'transfection': 'NC siRNA'}, 'GSM1509294': {'line': 'Hela', 'transfection': 'NC siRNA'}, 'GSM1509293': {'line': 'Hela'}, 'GSM2571061': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1509291': {'line': 'Hela'}, 'GSM1509290': {'line': 'Hela', 'transfection': 'U2AF65 siRNA'}, 'GSM2571068': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571069': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1509299': {'line': 'Hela', 'transfection': 'U2AF65 siRNA'}, 'GSM1509298': {'line': 'Hela', 'transfection': 'U2AF65 siRNA'}, 'GSM2538900': {'donor': '3', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (72-144h)] cell'}, 'GSM1836543': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM2747456': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': 'DMSO'}, 'GSM1836540': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM2747457': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': 'DMSO'}, 'GSM2454178': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454179': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM1836541': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U4'}, 'GSM2454170': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM1586021': {'line': 'HCT116', 'type': 'essential thrombocythemia', 'treatment': 'DMSO'}, 'GSM2454172': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454173': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454174': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454175': {'gender': 'Female', 'age': '57 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454176': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM1586020': {'line': 'HCT116', 'type': 'essential thrombocythemia', 'treatment': 'DMSO'}, 'GSM1586023': {'line': 'HCT116', 'type': 'essential thrombocythemia', 'treatment': '100nM CA for 3hrs'}, 'GSM2137718': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'AZ1366 Treated'}, 'GSM1586022': {'line': 'HCT116', 'type': 'essential thrombocythemia', 'treatment': 'DMSO'}, 'GSM2747458': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': '5uM GW4064'}, 'GSM1308594': {'line': 'HeLa'}, 'GSM2479768': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479769': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2747459': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': '5uM GW4065'}, 'GSM2186947': {'sensitivity': 'resisitant', 'type': '3D culture'}, 'GSM2479760': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479761': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479762': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479763': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479764': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479765': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479766': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2479767': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2889037': {'tissue': 'pancreatic islets'}, 'GSM1964907': {'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'Infected cells were selected with puromycin (1mg/mL) for 5 days', 'infection': 'WDR77 shRNA'}, 'GSM2889035': {'tissue': 'pancreatic islets'}, 'GSM1700787': {'antibody': 'NFκB p65 Antibody (C-20) from Santa Cruz Biotechnology', 'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM1700780': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM1700781': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM1700782': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM2889030': {'tissue': 'pancreatic islets'}, 'GSM1507268': {'resistant': 'No'}, 'GSM1507269': {'resistant': 'Yes'}, 'GSM1700788': {'antibody': 'NFκB p65 Antibody (C-20) from Santa Cruz Biotechnology', 'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM1700789': {'antibody': 'NFκB p65 Antibody (C-20) from Santa Cruz Biotechnology', 'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM1964908': {'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'Infected cells were selected with puromycin (1mg/mL) for 5 days', 'infection': 'PRMT5 shRNA'}, 'GSM1964909': {'line': 'breast cancer cell line MDA-MB-231', 'treatment': '5µM DMSO for 4 hours at 37°C'}, 'GSM2141684': {'individual': 'EU272', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2137710': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2137711': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM1829832': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'No doxycycline'}, 'GSM1829830': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'No doxycycline'}, 'GSM2141681': {'individual': 'EU270', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2187269': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shZMYND8'}, 'GSM2187268': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shLuciferase'}, 'GSM2187267': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shLuciferase'}, 'GSM2187266': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shJARID1D'}, 'GSM2187265': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shJARID1D'}, 'GSM2141680': {'individual': 'EU270', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2187263': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR251663-1), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shJARID1D'}, 'GSM2187262': {'antibody': 'H3K4me3 (Millipore, 07-473, lot 2664283), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shZMYND8'}, 'GSM2187261': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR251663-1), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shZMYND8'}, 'GSM2187260': {'antibody': 'H3K4me3 (Millipore, 07-473, lot 2664283), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shLuciferase'}, 'GSM1278472': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278473': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278470': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1278471': {'state': 'Healthy donor', 'tissue': 'whole lumbar spinal cord'}, 'GSM1162728': {'preparation': 'NuGEN Ovation', 'involution': 'No', 'type': 'human mammary epithelial cell'}, 'GSM1162729': {'preparation': 'NuGEN Ovation', 'involution': 'Yes', 'type': 'human mammary epithelial cell'}, 'GSM1162720': {'preparation': 'Illumina PolyA', 'involution': 'No', 'type': 'human mammary epithelial cell'}, 'GSM1162721': {'preparation': 'Illumina PolyA', 'involution': 'Yes', 'type': 'human mammary epithelial cell'}, 'GSM1162722': {'preparation': 'Illumina PolyA', 'involution': 'No', 'type': 'human mammary epithelial cell'}, 'GSM1162723': {'preparation': 'Illumina PolyA', 'involution': 'No', 'type': 'human mammary epithelial cell'}, 'GSM1162724': {'preparation': 'Illumina PolyA', 'involution': 'Yes', 'type': 'human mammary epithelial cell'}, 'GSM1162725': {'preparation': 'NuGEN Ovation', 'involution': 'Yes', 'type': 'human mammary epithelial cell'}, 'GSM1162726': {'preparation': 'NuGEN Ovation', 'involution': 'No', 'type': 'human mammary epithelial cell'}, 'GSM1162727': {'preparation': 'NuGEN Ovation', 'involution': 'Yes', 'type': 'human mammary epithelial cell'}, 'GSM2481530': {'line': 'HeLa', 'phenotype': 'DDX39B DDX_3 siRNA Knockdown'}, 'GSM2481531': {'line': 'HeLa', 'phenotype': 'DDX39B DDX_4 siRNA Knockdown'}, 'GSM2095421': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 12'}, 'GSM2095420': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'N/A', 'time': 'day 5'}, 'GSM2095423': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 12'}, 'GSM2095422': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 12'}, 'GSM2095425': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 12'}, 'GSM2095424': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 12'}, 'GSM1540528': {'state': 'Lyme disease', 'individual': 'patient 01-37', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540529': {'state': 'Lyme disease', 'individual': 'patient 01-39', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540526': {'state': 'Lyme disease', 'individual': 'patient 01-33', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540527': {'state': 'Lyme disease', 'individual': 'patient 01-34', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540524': {'state': 'Lyme disease', 'individual': 'patient 01-31', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540525': {'state': 'Lyme disease', 'individual': 'patient 01-32', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540522': {'state': 'Lyme disease', 'individual': 'patient 01-29', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540523': {'state': 'Lyme disease', 'individual': 'patient 01-30', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540520': {'state': 'Lyme disease', 'individual': 'patient 01-27', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540521': {'state': 'Lyme disease', 'individual': 'patient 01-28', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM2692390': {'donor': 'YF653', 'type': 'sorted CD45RA+ CCR7+ CD8 T cells', 'day': 'Day 28 post YFV-17D'}, 'GSM782658': {'state': 'castration resistant prostate cancer', 'tissue': 'bone metastatic tumor', 'stage': 'metastatic'}, 'GSM782659': {'state': 'castration resistant prostate cancer', 'tissue': 'bone metastatic tumor', 'stage': 'metastatic'}, 'GSM2303614': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEL337'}, 'GSM782655': {'state': 'castration resistant prostate cancer', 'tissue': 'bone metastatic tumor', 'stage': 'metastatic'}, 'GSM782656': {'state': 'castration resistant prostate cancer', 'tissue': 'bone metastatic tumor', 'stage': 'metastatic'}, 'GSM782657': {'state': 'castration resistant prostate cancer', 'tissue': 'bone metastatic tumor', 'stage': 'metastatic'}, 'GSM2303610': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEL337'}, 'GSM2303611': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303612': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303613': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2265659': {'antibody': 'Homemade (ref PMID: 24081332)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM1924957': {'line': 'HPV31-positive, CIN612-9E cells', 'treatment': 'control'}, 'GSM2565357': {'construction': 'PLATE-Seq', 'drug': 'Rucaparib (AG-014699, PF-01367338)'}, 'GSM1924956': {'line': 'HPV31-positive, CIN612-9E cells', 'treatment': 'control'}, 'GSM2572744': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '16', 'day': '7'}, 'GSM2572745': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '8', 'day': '0'}, 'GSM2572746': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '8', 'day': '3'}, 'GSM2572747': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '8', 'day': '7'}, 'GSM2572740': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '17', 'day': '7'}, 'GSM2572741': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '16', 'day': '0'}, 'GSM2572742': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '16', 'day': '1'}, 'GSM2572743': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '16', 'day': '3'}, 'GSM2226843': {'information': 'Active Tuberculosis', 'tissue': 'whole blood'}, 'GSM2572748': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '18', 'day': '0'}, 'GSM2572749': {'tissue': 'blood', 'lanes': '1,2,3,4', 'number': '18', 'day': '1'}, 'GSM2226842': {'information': 'Active Tuberculosis', 'tissue': 'whole blood'}, 'GSM2693930': {'morphology': 'epithelial', 'age': 'fetus', 'tissue': 'embryonic kidney'}, 'GSM2226841': {'information': 'Active Tuberculosis', 'tissue': 'whole blood'}, 'GSM2226840': {'information': 'Active Tuberculosis', 'tissue': 'whole blood'}, 'GSM2476264': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476260': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476261': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476262': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476263': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM960577': {'line': 'UMSCC25', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM960575': {'line': 'UMSCC25', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'Untreated'}, 'GSM2228763': {'donor': '9', 'treatment': 'LPS', 'infection': '6'}, 'GSM2228764': {'donor': '9', 'treatment': 'EBOV', 'infection': '6'}, 'GSM2228765': {'donor': '9', 'treatment': 'RESTV', 'infection': '6'}, 'GSM2228766': {'donor': '9', 'treatment': 'mock', 'infection': '24'}, 'GSM2228767': {'donor': '9', 'treatment': 'LPS', 'infection': '24'}, 'GSM2228768': {'donor': '9', 'treatment': 'EBOV', 'infection': '24'}, 'GSM2228769': {'donor': '9', 'treatment': 'RESTV', 'infection': '24'}, 'GSM960579': {'line': 'UMSCC25', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM2108550': {'stages': 'mononucleated cell nucleus'}, 'GSM2108551': {'stages': 'mononucleated cell nucleus'}, 'GSM2108552': {'stages': 'mononucleated cell nucleus'}, 'GSM2108553': {'stages': 'mononucleated cell nucleus'}, 'GSM2108554': {'stages': 'mononucleated cell nucleus'}, 'GSM2108555': {'stages': 'mononucleated cell nucleus'}, 'GSM2108556': {'stages': 'mononucleated cell nucleus'}, 'GSM2108557': {'stages': 'mononucleated cell nucleus'}, 'GSM2108558': {'stages': 'mononucleated cell nucleus'}, 'GSM2108559': {'stages': 'mononucleated cell nucleus'}, 'GSM2816038': {'line': 'H9'}, 'GSM2817746': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 3uM 6h'}, 'GSM2817747': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 3uM 6h'}, 'GSM2817744': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 30nM 6h'}, 'GSM2817745': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 3uM 6h'}, 'GSM2817742': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 30nM 6h'}, 'GSM2817743': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 30nM 6h'}, 'GSM2817740': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 300nM 6h'}, 'GSM2817741': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 30nM 6h'}, 'GSM2817748': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 3uM 6h'}, 'GSM2817749': {'type': 'MIA PACA-2', 'treatment': 'untreated'}, 'GSM2251377': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251376': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251375': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251374': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251373': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251372': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251371': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251370': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251379': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251378': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2153176': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153177': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153174': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153175': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153172': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153173': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153170': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153171': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153178': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153179': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM3229546': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229547': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229544': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229545': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229542': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229543': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229540': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229541': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229548': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229549': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM1438971': {'with': 'E2 (10-9mol/L) plus 4-OHT (10-6mol/L) for 72 hrs', 'line': 'MCF-7:5C', 'type': 'breast cancer cell line'}, 'GSM1438970': {'with': '4-OHT (10-6mol/L) for 72 hrs', 'line': 'MCF-7:5C', 'type': 'breast cancer cell line'}, 'GSM1438973': {'with': 'E2 (10-9mol/L) plus PP2 (5x10-6mol/L) for 72 hrs', 'line': 'MCF-7:5C', 'type': 'breast cancer cell line'}, 'GSM1438972': {'with': 'PP2 (5x10-6mol/L) for 72 hrs', 'line': 'MCF-7:5C', 'type': 'breast cancer cell line'}, 'GSM1438975': {'with': 'E2 (10-9mol/L)for 24 hrs', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM1438974': {'with': 'vehicle (0.1% EtOH) as control for 24hrs', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM1097879': {'type': 'CD34+ cells', 'antibody': 'ERG (Santa Cruz, sc-354X), A2510 & H1612'}, 'GSM1438976': {'with': '4-OHT (10-6mol/L) for 24 hrs', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM2471959': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471958': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2251953': {'type': 'Ascitic fluid-isolated mesothelial cells'}, 'GSM2251952': {'type': 'Ascitic fluid-isolated mesothelial cells'}, 'GSM2251951': {'type': 'Human peritoneal mesothelial cells'}, 'GSM2251950': {'type': 'Human peritoneal mesothelial cells'}, 'GSM2251954': {'type': 'Ascitic fluid-isolated mesothelial cells'}, 'GSM2142482': {'gender': 'female', 'age': '79', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM1695903': {'age': '51', 'tissue': 'breast ductal carcinoma in situ', 'race': 'Black'}, 'GSM1695902': {'age': '47', 'tissue': 'breast ductal carcinoma in situ', 'race': 'AMIndian/AlaskaNativ'}, 'GSM1695901': {'age': '82', 'tissue': 'breast ductal carcinoma in situ', 'race': 'Asian'}, 'GSM1695900': {'age': '52', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695904': {'age': '74', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM2640579': {'enrichment': 'None'}, 'GSM2142434': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM1267821': {'induction': '4 hours', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM1267820': {'induction': '2 hours', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM1267823': {'induction': '24 hours', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM1267822': {'induction': '8 hours', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM1267824': {'induction': '48 hours', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM2142431': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142430': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2112326': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'knee', 'type': 'Fibroblast-like synoviocytes'}, 'GSM2142432': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM896804': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (Oocyte)', 'stage': 'early blastomere'}, 'GSM1281792': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '18', 'gender': 'Female', 'age': '45', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2000', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '159'}, 'GSM2361759': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361758': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361755': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361754': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361757': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361756': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361751': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361750': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361753': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361752': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2462650': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '50P/S'}, 'GSM2462651': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '50P/S'}, 'GSM2462652': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '100P/S'}, 'GSM2462653': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '100P/S'}, 'GSM2043769': {'status': 'HIV-', 'individual': '0575-419neg', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM2043768': {'status': 'HIV-', 'individual': '0575-419neg', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2462656': {'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '100P/S'}, 'GSM2462657': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '100P/S'}, 'GSM2043765': {'status': 'HIV-', 'individual': '0518-370neg', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM2043764': {'status': 'HIV-', 'individual': '0518-370neg', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2043767': {'status': 'HIV-', 'individual': '0560-420neg', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM2043766': {'status': 'HIV-', 'individual': '0560-420neg', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2043761': {'status': 'HIV-', 'individual': '0311-217HIVneg', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM2043760': {'status': 'HIV-', 'individual': '0311-217HIVneg', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2043763': {'status': 'HIV-', 'individual': '0440-307neg', 'type': 'Innate Lymphoid Cell 3', 'infection': 'uninfected'}, 'GSM2043762': {'status': 'HIV-', 'individual': '0440-307neg', 'type': 'Innate Lymphoid Cell 2', 'infection': 'uninfected'}, 'GSM2607569': {'line': 'WA26'}, 'GSM2607568': {'line': 'WA26'}, 'GSM1949045': {'type': 'none', 'treatment': 'none'}, 'GSM2607565': {'line': 'WA26'}, 'GSM2607564': {'line': 'WA26'}, 'GSM2607567': {'line': 'WA26'}, 'GSM2607566': {'line': 'WA26'}, 'GSM2607561': {'line': 'WA26'}, 'GSM2607560': {'line': 'WA26'}, 'GSM2607563': {'line': 'WA26'}, 'GSM2607562': {'line': 'WA26'}, 'GSM2311947': {'culture': '12', 'line': 'DCX+'}, 'GSM1554608': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554609': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554606': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554607': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554604': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554605': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554602': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554603': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554600': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554601': {'disease': 'Acute Myeloid Leukemia'}, 'GSM3301485': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM3301482': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM3301483': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM3301480': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM2296648': {'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM2296646': {'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'DMSO', 'batch': '2'}, 'GSM2296647': {'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM3301481': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM2296643': {'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'DMSO', 'batch': '1'}, 'GSM2296640': {'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM2296641': {'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM1322959': {'subtype': 'EMC', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322958': {'subtype': 'EMC', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1312727': {'line': 'HGDP01259', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mozabite'}, 'GSM1312726': {'line': 'HGDP01258', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mozabite'}, 'GSM1312721': {'line': 'HGDP00462', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mbuti Pygmy'}, 'GSM1312720': {'line': 'HGDP00456', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mbuti Pygmy'}, 'GSM1312723': {'line': 'HGDP00471', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Mbuti Pygmy'}, 'GSM1312722': {'line': 'HGDP00467', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mbuti Pygmy'}, 'GSM1322951': {'subtype': 'DDLPS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322950': {'subtype': 'DDLPS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322953': {'subtype': 'MLPS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322952': {'subtype': 'MLPS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322955': {'subtype': 'MLPS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1312728': {'line': 'HGDP01262', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Mozabite'}, 'GSM1322957': {'subtype': 'EMC', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322956': {'subtype': 'MLPS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2756186': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2544083': {'library_id': 'lib8407', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2756184': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756185': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756182': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756183': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756180': {'status': 'healthy donor (HD)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756181': {'status': 'healthy donor (HD)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2544088': {'library_id': 'lib8418', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544089': {'library_id': 'lib8419', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2756188': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM2756189': {'status': 'intraductal papillary mucinous neoplasm (IPMN), low-risk', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM3301488': {'gender': 'unknown', 'type': 'pericyte (primary cell)', 'protocol': 'Ctrl'}, 'GSM2287661': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1642819': {'line': 'MCF-7', 'type': 'Breast cancer cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM1642818': {'line': 'MCF-7', 'type': 'Breast cancer cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642815': {'line': 'BPH-1', 'type': 'Non-transformed prostatic epithelial cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM1642814': {'line': 'BPH-1', 'type': 'Non-transformed prostatic epithelial cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642817': {'line': 'BPH-1', 'type': 'Non-transformed prostatic epithelial cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1642816': {'line': 'BPH-1', 'type': 'Non-transformed prostatic epithelial cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM1642811': {'line': 'A549', 'type': 'Non-small cell lung cancer cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM1642810': {'line': 'A549', 'type': 'Non-small cell lung cancer cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642813': {'line': 'A549', 'type': 'Non-small cell lung cancer cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1642812': {'line': 'A549', 'type': 'Non-small cell lung cancer cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM1163044': {'patient': 'Disease_K9', 'gender': 'M', 'age': '45', 'tissue': 'Nonlesion', 'treatment': 'Agonist', 'id': '7'}, 'GSM2109409': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109408': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM1163045': {'patient': 'Disease_K9', 'gender': 'M', 'age': '45', 'tissue': 'Nonlesion', 'treatment': 'Antagonist', 'id': '8'}, 'GSM2109401': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109400': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109403': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109402': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109405': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109404': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109407': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109406': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2041727': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 27, 8 days of culture in EpiLC media'}, 'GSM2041726': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 28'}, 'GSM2041725': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 27'}, 'GSM2041724': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 5 passages after initial sorting 16 days of culture in EpiLC media'}, 'GSM2041723': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 4 passages after initial sorting 16 days of culture in EpiLC media'}, 'GSM2041722': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 5 passages after initial sorting 8 days of culture in EpiLC media'}, 'GSM2041721': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 4 passages after initial sorting 8 days of culture in EpiLC media'}, 'GSM2041720': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 5 passages after initial sorting'}, 'GSM2430839': {'duration': '12 hr', 'pattern': 'Oscillatory', 'type': 'HUVEC', 'batch': '1'}, 'GSM2430838': {'duration': '4 hr', 'pattern': 'Oscillatory', 'type': 'HUVEC', 'batch': '1'}, 'GSM2041729': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 27, 16 days of culture in EpiLC media'}, 'GSM2041728': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 28, 8 days of culture in EpiLC media'}, 'GSM718712': {'status': '3 Current', 'cancer': '3 No', 'gender': '1 Male, 2 Female', 'age': '41.7', 'type': 'large airway epithelial cells', 'packyears': '21.5'}, 'GSM718713': {'status': '2 Former, 1 Current', 'cancer': '3 No', 'gender': '1 Male, 2 Female', 'age': '49', 'type': 'large airway epithelial cells', 'packyears': '49.5'}, 'GSM718710': {'status': '2 Former, 1 Current', 'cancer': '3 Yes', 'gender': '2 Male, 1 Female', 'age': '64.7', 'type': 'large airway epithelial cells', 'packyears': '75.7'}, 'GSM718711': {'status': '3 Never', 'gender': '3 Female', 'age': '29.7', 'type': 'large airway epithelial cells', 'cancer': '3 No'}, 'GSM2486704': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486705': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM718714': {'status': '2 Former, 1 Current', 'cancer': '3 Yes', 'gender': '2 Male, 1 Female', 'age': '64.7', 'type': 'large airway epithelial cells', 'packyears': '75.7'}, 'GSM2486707': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486708': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486709': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2494157': {'with': 'none (untreated control)', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM1639695': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'immortalized': 'No'}, 'GSM1639694': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'immortalized': 'Yes'}, 'GSM1639697': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'immortalized': 'Yes'}, 'GSM1639696': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'immortalized': 'No'}, 'GSM1639691': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'immortalized': 'No'}, 'GSM1639690': {'type': 'Neurons', 'genotype': 'Deletion 15q (Angelman syndrome)', 'number': '1'}, 'GSM1639693': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'immortalized': 'Yes'}, 'GSM1639692': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'immortalized': 'No'}, 'GSM2467183': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM2467182': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM2467181': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM2467180': {'state': 'non-Diabetic', 'type': 'retinal endothelial cells'}, 'GSM1639699': {'type': 'DPSC', 'genotype': 'Neurotypical Control', 'immortalized': 'No'}, 'GSM1639698': {'type': 'Neurons', 'genotype': 'Neurotypical Control', 'immortalized': 'Yes'}, 'GSM2200889': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200888': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2277356': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2666181': {'age': 'Day 130', 'well': 'E9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM1261896': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'non-invasive adenocarcinoma in situ (ais)', 'id': '5'}, 'GSM1261897': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'invasive lung carcinoma (inv)', 'id': '5'}, 'GSM1261894': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'invasive lung carcinoma (inv)', 'id': '4'}, 'GSM1261895': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'surrounding normal lung (nor)', 'id': '4'}, 'GSM1261892': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'surrounding normal lung (nor)', 'id': '3'}, 'GSM1261893': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'non-invasive adenocarcinoma in situ (ais)', 'id': '4'}, 'GSM715498': {'tissue': 'dedifferentiated liposarcoma', 'method': 'FFPE'}, 'GSM1261891': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'invasive lung carcinoma (inv)', 'id': '3'}, 'GSM715496': {'tissue': 'dedifferentiated liposarcoma', 'method': 'FFPE'}, 'GSM715497': {'tissue': 'dedifferentiated liposarcoma', 'method': 'FFPE'}, 'GSM715494': {'tissue': 'leiomyosarcoma', 'method': 'FFPE'}, 'GSM715495': {'tissue': 'leiomyosarcoma', 'method': 'FFPE'}, 'GSM715492': {'tissue': 'leiomyosarcoma', 'method': 'FFPE'}, 'GSM715493': {'tissue': 'leiomyosarcoma', 'method': 'FFPE'}, 'GSM715490': {'tissue': 'gastrointestinal stromal tumor', 'method': 'FFPE'}, 'GSM715491': {'tissue': 'gastrointestinal stromal tumor', 'method': 'FFPE'}, 'GSM2071070': {'type': 'activated naive CD4 T cells', 'with': 'Activin A'}, 'GSM2071071': {'type': 'activated naive CD4 T cells', 'with': 'Activin A+IL12'}, 'GSM1521598': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521599': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521592': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521593': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521590': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521591': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521596': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521597': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521594': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521595': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2256664': {'patient': 'patient 4', 'treatment': 'after'}, 'GSM2256660': {'patient': 'patient 2', 'treatment': 'after'}, 'GSM2256661': {'patient': 'patient 3', 'treatment': 'before'}, 'GSM2256662': {'patient': 'patient 3', 'treatment': 'after'}, 'GSM2256663': {'patient': 'patient 4', 'treatment': 'before'}, 'GSM1647944': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647945': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647946': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647947': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647940': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647941': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647942': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647943': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647948': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647949': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM2562595': {'gender': 'male', 'race': 'Caucasian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1885089': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885088': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1574745': {'concentration': '10629.2', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Compound 1uM', 'conc': '35.8'}, 'GSM1574744': {'concentration': '2435.7', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Control', 'conc': '38.2'}, 'GSM1574747': {'concentration': '14502.3', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Compound 10uM', 'conc': '42'}, 'GSM1574746': {'concentration': '11192.4', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Compound 3uM', 'conc': '46.1'}, 'GSM1574749': {'concentration': '9853.1', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'CPZ', 'conc': '33.1'}, 'GSM1885080': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885083': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885082': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885085': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885084': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885087': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885086': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM2875676': {'line': 'THP-1 macrophages', 'infection': '1', 'point': '24 hours'}, 'GSM2875677': {'line': 'THP-1 macrophages', 'infection': '1', 'point': '24 hours'}, 'GSM2875674': {'line': 'MRC-5 fibroblasts', 'infection': '1', 'point': '24 hours'}, 'GSM2875675': {'line': 'MRC-5 fibroblasts', 'infection': '1', 'point': '24 hours'}, 'GSM2406931': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406930': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2875678': {'line': 'MRC-5 fibroblasts', 'infection': '0.1', 'point': '9 days'}, 'GSM2875679': {'line': 'MRC-5 fibroblasts', 'infection': '0.1', 'point': '9 days'}, 'GSM2754748': {'bin': '5', 'group': 'case', 'qft': 'negative', 'gender': 'male', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754749': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0782', 'previousdiagnosisoftb': 'No', 'tst': '9.6', 'type': 'Tcells'}, 'GSM2754746': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '18', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0157', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754747': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0140', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754744': {'bin': '5', 'group': 'case', 'qft': 'negative', 'gender': 'male', 'age': '18', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754745': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '18', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0157', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754742': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0074', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754743': {'bin': '5', 'group': 'case', 'qft': 'negative', 'gender': 'male', 'age': '18', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754740': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0074', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754741': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0074', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1940715': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940714': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940717': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940716': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940711': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940710': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940713': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940712': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940719': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940718': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1873040': {'antibody': 'FoxA1 (Abcam ab23738)', 'line': 'LNCaP-abl', 'passages': '62-64', 'type': 'prostate cancer cells'}, 'GSM1873041': {'antibody': 'CREB1 (Abcam ab31387)', 'line': 'LNCaP-abl', 'passages': '62-64', 'type': 'prostate cancer cells'}, 'GSM1873042': {'antibody': 'CREB1 (Abcam ab31387)', 'line': 'LNCaP-abl', 'passages': '62-64', 'type': 'prostate cancer cells'}, 'GSM1873043': {'antibody': 'FoxA1 (Abcam ab23738)', 'line': 'LNCaP-abl', 'passages': '62-64', 'type': 'prostate cancer cells'}, 'GSM1873044': {'antibody': 'FoxA1 (Abcam ab23738)', 'line': 'LNCaP-abl', 'passages': '62-64', 'type': 'prostate cancer cells'}, 'GSM1873045': {'antibody': 'CREB1 (Abcam ab31387)', 'line': 'LNCaP-abl', 'passages': '62-64', 'type': 'prostate cancer cells'}, 'GSM1873046': {'antibody': 'CREB1 (Abcam ab31387)', 'line': 'LNCaP-abl', 'passages': '62-64', 'type': 'prostate cancer cells'}, 'GSM3190846': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '3.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.250966'}, 'GSM3190847': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '6.789835'}, 'GSM3190844': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.128327'}, 'GSM2212743': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM3190845': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '3.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.076165'}, 'GSM2664080': {'status': 'p53+/+', 'identifier': 'P4902_1019', 'type': 'polysome-associated RNA', 'method': 'Linear gradient', 'background': 'HCT116'}, 'GSM3190842': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'No', 'visit': 'None', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'M', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB5HFANXX', '4': 'No', '2': 'No', 'years': '13', 'libcounts': '6.810881', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM2212741': {'gender': 'female', 'condition': 'control'}, 'GSM1958522': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'F'}, 'GSM2232217': {'status': 'non-HCV', 'patient_identifier': 'C173', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'NA'}, 'GSM2232216': {'status': 'non-HCV', 'patient_identifier': 'C51a', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'NA'}, 'GSM2232215': {'status': 'non-HCV', 'patient_identifier': 'B986', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'NA'}, 'GSM2232214': {'status': 'HCV', 'patient_identifier': 'B346', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 144h', 'endogenous_ifn': 'low ISG'}, 'GSM2232213': {'status': 'HCV', 'patient_identifier': 'B320', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 144h', 'endogenous_ifn': 'high ISG'}, 'GSM3190840': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.308839'}, 'GSM2232211': {'status': 'HCV', 'patient_identifier': 'A972', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 144h', 'endogenous_ifn': 'low ISG'}, 'GSM2232210': {'status': 'HCV', 'patient_identifier': 'A707', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 144h', 'endogenous_ifn': 'low ISG'}, 'GSM2212747': {'gender': 'female', 'condition': 'control'}, 'GSM3190841': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.935012'}, 'GSM2232219': {'status': 'non-HCV', 'patient_identifier': 'C250a', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'NA'}, 'GSM2232218': {'status': 'non-HCV', 'patient_identifier': 'C369', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'NA'}, 'GSM2543782': {'library_id': 'lib5926', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2306988': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM3190849': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '3.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.450347'}, 'GSM2816008': {'line': 'H9'}, 'GSM785398': {'type': 'transitional', 'normal': 'normal'}, 'GSM785399': {'type': 'testicular germ', 'normal': 'cancer'}, 'GSM2543788': {'library_id': 'lib7890', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543789': {'library_id': 'lib7891', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2632598': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2816009': {'line': 'H9'}, 'GSM913880': {'tissue': 'Parathyroid tumor', 'patient': '2', 'agent': 'Control', 'time': '48h'}, 'GSM2632594': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632595': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632596': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2453968': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453969': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1194158': {'status': 'wild-type', 'line': 'HEK293T-rex', 'clone': '18', 'treatment': 'Doxycycline 40 min'}, 'GSM1194156': {'status': 'wild-type', 'line': 'HEK293T-rex', 'clone': '18', 'treatment': 'Doxycycline 10 min'}, 'GSM1194157': {'status': 'wild-type', 'line': 'HEK293T-rex', 'clone': '18', 'treatment': 'Doxycycline 25 min'}, 'GSM1194154': {'status': 'knock-down', 'line': 'HEK293T-rex', 'clone': '18', 'treatment': 'Doxycycline 40 min'}, 'GSM1194155': {'status': 'wild-type', 'line': 'HEK293T-rex', 'clone': '18', 'treatment': 'Doxycycline 0 min'}, 'GSM1194152': {'status': 'knock-down', 'line': 'HEK293T-rex', 'clone': '18', 'treatment': 'Doxycycline 10 min'}, 'GSM1194153': {'status': 'knock-down', 'line': 'HEK293T-rex', 'clone': '18', 'treatment': 'Doxycycline 25 min'}, 'GSM1194150': {'status': 'wild-type', 'line': 'HEK293T-rex', 'clone': '15', 'treatment': 'Doxycycline 40 min'}, 'GSM1194151': {'status': 'knock-down', 'line': 'HEK293T-rex', 'clone': '18', 'treatment': 'Doxycycline 0 min'}, 'GSM2632592': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM785397': {'type': 'transitional', 'normal': 'cancer'}, 'GSM847883': {'type': 'RNA-seq', 'line': 'A549', 'protocol': 'Induced and PA-treated'}, 'GSM847882': {'type': 'RNA-seq', 'line': 'A549', 'protocol': 'Induced and PA-treated'}, 'GSM847881': {'type': 'RNA-seq', 'line': 'A549', 'protocol': 'Induced'}, 'GSM847880': {'type': 'RNA-seq', 'line': 'A549', 'protocol': 'Induced'}, 'GSM847885': {'type': 'RNA-seq', 'line': 'A549', 'protocol': 'Induced and PS1145-treated'}, 'GSM847884': {'type': 'RNA-seq', 'line': 'A549', 'protocol': 'Induced and PS1145-treated'}, 'GSM2072066': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gCIC-1', 'treatment': 'DMSO'}, 'GSM1414972': {'region': 'BA39', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM2072064': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gGFP-1', 'treatment': '100 nM Trametinib'}, 'GSM2147947': {'patient': 'IL1', 'age': 'missing', 'Sex': 'missing', 'prognosis': 'Healthy', 'tissue': 'Ile', 'diagnosis': 'Normal', 'biopsytime': 'NA', 'ethnicity': 'Caucasian'}, 'GSM2072065': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gCIC-1', 'treatment': 'DMSO'}, 'GSM2265639': {'antibody': 'BRD4 (CST, 13440)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265638': {'antibody': 'BRD4 (CST, 13440)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265635': {'antibody': 'Homemade (ref PMID: 25170156)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2072062': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gGFP-1', 'treatment': 'DMSO'}, 'GSM2265637': {'antibody': 'BRD2 (CST, 5848)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265636': {'antibody': 'BRD2 (CST, 5848)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265631': {'antibody': 'SUZ12 (CST, 3737)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265630': {'antibody': 'SUZ12 (CST, 3737)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265633': {'antibody': 'EZH2 (CST, 5246)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2072063': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gGFP-1', 'treatment': '100 nM Trametinib'}, 'GSM1414975': {'region': 'BA44', 'identifier': '4924', 'age': '48', 'Sex': 'M'}, 'GSM2072061': {'duration': '24 hours', 'line': 'PATU8902', 'grna': 'gGFP-1', 'treatment': 'DMSO'}, 'GSM2278008': {'type': 'MDA-MB-468 (Human adenocarcinoma)', 'line': 'MDA-MB-468', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2278009': {'type': 'MDA-MB-468 (Human adenocarcinoma)', 'line': 'MDA-MB-468', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2816002': {'line': 'H9'}, 'GSM2278000': {'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'line': 'MDA-MB-157', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2278001': {'type': 'MDA-MB-157 (Human Medulallary Carcinoma)', 'line': 'MDA-MB-157', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2278002': {'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'line': 'MDA-MB-231', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2278003': {'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'line': 'MDA-MB-231', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2278004': {'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'line': 'HCC70', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2278005': {'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'line': 'HCC70', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'ethanol'}, 'GSM2278006': {'tumor': 'Tumor A139', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'N/A'}, 'GSM2278007': {'tumor': 'Tumor A137', 'antibody': 'anti-STAT3 (Santa Cruz Biotechnology, sc-482)', 'treatment': 'N/A'}, 'e': {'code': '200'}, 'GSM1399209': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1399208': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1216759': {'gender': 'Male', 'age': '63', 'tissue': 'pancreatic islets', 'birth': '1946', 'bmi': '21.1'}, 'GSM957348': {'sample': 'GM11994', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1362'}, 'GSM957349': {'sample': 'GM11995', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1362'}, 'GSM957342': {'sample': 'GM12004', 'protocol': 'directional', 'relation': 'paternal grandmother', 'family': '1420'}, 'GSM957343': {'sample': 'GM12750', 'protocol': 'directional', 'relation': 'maternal grandfather', 'family': '1444'}, 'GSM957346': {'sample': 'GM11992', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1362'}, 'GSM957347': {'sample': 'GM11993', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1362'}, 'GSM957344': {'sample': 'GM07000', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1340'}, 'GSM957345': {'sample': 'GM10839', 'protocol': 'non-directional', 'relation': 'mother', 'family': '1420'}, 'GSM2632288': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632289': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632284': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632285': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632286': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632287': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632280': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632281': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632282': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632283': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1216753': {'gender': 'Male', 'age': '69', 'bmi': '24.7', 'hba1c': '5.8', 'tissue': 'pancreatic islets', 'birth': '1939'}, 'GSM1216752': {'subtype': 'Ribosome depleted total RNA', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM2629512': {'type': 'H9 cells', 'treatment': 'dox-treated from (day 10 to 23)', 'time': 'day 14 of differentiation'}, 'GSM1704810': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1704811': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1704812': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'wild-type'}, 'GSM1704813': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'wild-type'}, 'GSM1704814': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'wild-type'}, 'GSM1704815': {'line': 'H1 embryonic stem cells', 'type': 'day 10 ES cells differentiating along the cardiac lineage', 'variation': 'wild-type'}, 'GSM1963965': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963964': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963967': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2178495': {'medium': 'DMEMF12, 5% Horse Serum, 20 ng/mL EGF, 0.5 mg/mL Hydrocortisone, 100 ng/mL Cholera Toxin, 10 mg/ml Insulin, Pen/Strep', 'type': 'breast epithelium', 'treatment': 'TGFb, 5 ng/mL, 72h'}, 'GSM1963961': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963960': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963963': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963962': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2390938': {'disease': 'Multiple Sclerosis'}, 'GSM1508041': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508040': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508042': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1234086': {'replicate': '1', 'line': '19238', 'antibody': 'H3K36me3'}, 'GSM2219081': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3', 'protocol': 'low density (2D)'}, 'GSM2219080': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3', 'protocol': 'low density (2D)'}, 'GSM2226832': {'information': 'Control - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM2226833': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2226830': {'information': 'Control - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2226831': {'information': 'Latent Tuberculosis - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2226836': {'information': 'Control - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2565327': {'construction': 'PLATE-Seq', 'drug': 'TOTAROL'}, 'GSM2226834': {'information': 'Control - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2226835': {'information': 'Latent Tuberculosis - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM2565328': {'construction': 'PLATE-Seq', 'drug': '3-CPMT'}, 'GSM2226839': {'information': 'Control - BCG - vaccinated', 'tissue': 'whole blood'}, 'GSM2348428': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348429': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1276912': {'score': '9.2', 'sequence': 'TGACCA', 'number': '4', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'control'}, 'GSM1276911': {'score': '9.8', 'sequence': 'TTAGGC', 'number': '3', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'control'}, 'GSM1276910': {'score': '9.5', 'sequence': 'CTTGTA', 'number': '12', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'control'}, 'GSM2307144': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307145': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307146': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307147': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307140': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307141': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307142': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307143': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307148': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307149': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM1509310': {'line': 'Hela', 'transfection': 'U2AF65 siRNA and Flag-U2AF35'}, 'GSM1509311': {'line': 'Hela', 'transfection': 'U2AF65 siRNA and Flag-U2AF35'}, 'GSM2808463': {'region': 'fovea/macula'}, 'GSM2808462': {'region': 'fovea/macula'}, 'GSM2808461': {'region': 'fovea/macula'}, 'GSM2808460': {'region': 'nasal central'}, 'GSM2535865': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4285', 'samplename': '1_T1D_CD154+_C77', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25524', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4285', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C77'}, 'GSM2535867': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4287', 'samplename': '1_T1D_CD154+_C54', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25526', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4287', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C54'}, 'GSM2535861': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4282', 'samplename': '1_T1D_CD154+_C59', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25521', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4282', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C59'}, 'GSM2535863': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4283', 'samplename': '1_T1D_CD154+_C65', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25522', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4283', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C65'}, 'GSM1145198': {'phase': 'G1 (day6-0 h)', 'line': 'H9', 'type': 'hESC-derived endoderm cells'}, 'GSM2535869': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5632', 'samplename': '1_T1D#2 ReDraw_C15', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28517', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5632', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C15'}, 'GSM1145199': {'phase': 'G1/S (day6-3 h)', 'line': 'H9', 'type': 'hESC-derived endoderm cells'}, 'GSM2523146': {'line': 'HNE1', 'condition': 'scramble shRNA'}, 'GSM2035708': {'with': 'DMSO on OP9 for 6 days', 'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM2035709': {'with': 'DMSO on OP9 for 6 days', 'type': 'EB-derived hematopoietic stem/progenitor cell (HSPC)'}, 'GSM1514013': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1514011': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1514010': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM2193316': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2193317': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2193314': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2193315': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2193312': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2193313': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2193310': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2193311': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM1917122': {'transduction': 'cotransduced with pWZL-Hygro and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917123': {'transduction': 'cotransduced with pWZL-Hygro and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917120': {'transduction': 'cotransduced with pWZL-Hygro and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917121': {'transduction': 'cotransduced with pWZL-Hygro and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917126': {'transduction': 'cotransduced with pWZL HRASV12 and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917127': {'transduction': 'cotransduced with pWZL HRASV12 and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917124': {'transduction': 'cotransduced with pWZL-Hygro and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1917125': {'transduction': 'cotransduced with pWZL HRASV12 and shp16/p21', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917128': {'transduction': 'cotransduced with pWZL-Hygro and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1917129': {'transduction': 'cotransduced with pWZL-Hygro and shp53/Rb', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1622044': {'type': 'Derived from cSCC tumors'}, 'GSM1622045': {'type': 'Derived from cSCC tumors'}, 'GSM1622046': {'type': 'Derived from cSCC tumors'}, 'GSM1622040': {'type': 'Derived from cSCC tumors'}, 'GSM1622041': {'type': 'Derived from cSCC tumors'}, 'GSM1622042': {'type': 'Derived from cSCC tumors'}, 'GSM1622043': {'type': 'Derived from cSCC tumors'}, 'GSM758325': {'line': 'H9', 'stage': 'Embryonic stem cells'}, 'GSM758324': {'line': 'H9', 'stage': 'Embryonic stem cells'}, 'GSM758323': {'line': 'H9', 'stage': 'Embryonic stem cells'}, 'GSM3586644': {'origin': 'UNCLASSIFIED', 'pfstt': '1309', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1309', 'cycles': '6', 'oscs': '0'}, 'GSM3586649': {'origin': 'GCB', 'pfstt': '889', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '889', 'cycles': '6', 'oscs': '0'}, 'GSM3586648': {'origin': 'ABC', 'pfstt': '936', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1083', 'cycles': '6', 'oscs': '0'}, 'GSM2889077': {'tissue': 'pancreatic islets'}, 'GSM1004066': {'technique': 'MethylCap-sequencing', 'tissue': 'tumor colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM1004067': {'technique': 'MethylCap-sequencing', 'tissue': 'tumor colon tissue', 'molecule': 'genomic DNA', 'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)'}, 'GSM2251232': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251233': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251230': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251231': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251236': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251237': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251234': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251235': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2152144': {'line': 'U1810', 'type': 'NSCLC', 'treatment': 'non-targeting control siRNA'}, 'GSM2152145': {'line': 'U1810', 'type': 'NSCLC', 'treatment': 'miR-372-3p mimic'}, 'GSM2152146': {'line': 'U1810', 'type': 'NSCLC', 'treatment': 'miR-372-3p mimic'}, 'GSM2152147': {'line': 'U1810', 'type': 'NSCLC', 'treatment': 'miR-372-3p mimic'}, 'GSM2152142': {'line': 'U1810', 'type': 'NSCLC', 'treatment': 'non-targeting control siRNA'}, 'GSM2152143': {'line': 'U1810', 'type': 'NSCLC', 'treatment': 'non-targeting control siRNA'}, 'GSM2029358': {'antibody': 'None', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/+ (Het)'}, 'GSM2029359': {'antibody': 'H3K27me3 (Millipore, 07-449)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- (Null)'}, 'GSM2438538': {'donor': 'BC3', 'tissue': 'peripheral blood', 'type': 'moDC', 'treatment': 'undiff'}, 'GSM2438539': {'donor': 'BC3', 'tissue': 'peripheral blood', 'type': 'moDC', 'treatment': 'LPS'}, 'GSM2029350': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM2029351': {'antibody': 'H3K27ac (Abcam, ab4729)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM2029352': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM2029353': {'antibody': 'None', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM2029354': {'antibody': 'H3K27me3 (Millipore, 07-449)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/+ (Het)'}, 'GSM2029355': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/+ (Het)'}, 'GSM2029356': {'antibody': 'H3K27ac (Abcam, ab4729)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/+ (Het)'}, 'GSM2029357': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/+ (Het)'}, 'GSM2527953': {'line': 'DL40', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM2527952': {'line': 'TLBR4', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM2527951': {'line': 'TLBR3', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM2527950': {'line': 'TLBR2', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM2527957': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527956': {'type': 'Embryonic stem cells'}, 'GSM2527955': {'type': 'Embryonic stem cells'}, 'GSM2527954': {'type': 'Embryonic stem cells'}, 'GSM2430705': {'state': 'High risk MDS', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2430704': {'state': 'High risk MDS', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2430707': {'state': 'MDS/AML', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2430706': {'state': 'MDS/AML', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2430701': {'state': 'Low risk MDS', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2430700': {'state': 'Normal', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2430703': {'state': 'High risk MDS', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2430702': {'state': 'Low risk MDS', 'type': 'CD34+ cells derived from iPSCs'}, 'GSM2387229': {'tissue': 'heart'}, 'GSM2387228': {'tissue': 'heart'}, 'GSM1556295': {'type': 'follicular dendritic cells isolated and grown in culture'}, 'GSM1556294': {'type': 'follicular dendritic cells isolated and grown in culture'}, 'GSM2392597': {'treatment': 'Estrogen', 'genotype': 'Wild type'}, 'GSM602575': {'tissue': 'kidney normal'}, 'GSM602572': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T2N0M0'}, 'GSM602573': {'tissue': 'kidney normal'}, 'GSM2392593': {'treatment': 'Vehicle', 'genotype': 'D538G'}, 'GSM2392592': {'treatment': 'Vehicle', 'genotype': 'D538G'}, 'GSM1694979': {'line': 'hIPSC18c'}, 'GSM1694978': {'line': 'hIPSC18b'}, 'GSM2390644': {'tissue': 'Primary AML', 'subject': 'SU042'}, 'GSM1228185': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1694971': {'line': 'HUES66'}, 'GSM1694970': {'line': 'HUES65'}, 'GSM1694973': {'line': 'hIPSC11c'}, 'GSM1694972': {'line': 'hIPSC11b'}, 'GSM1694975': {'line': 'hIPSC17a'}, 'GSM1694974': {'line': 'hIPSC15b'}, 'GSM1694977': {'line': 'hIPSC18'}, 'GSM1694976': {'line': 'hIPSC17b'}, 'GSM2649710': {'tumor': 'TUMOR', 'barcode': 'BC3', 'Sex': 'female'}, 'GSM2303544': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM2649712': {'tumor': 'TUMOR', 'barcode': 'BC5', 'Sex': 'male'}, 'GSM2649713': {'tumor': 'NORMAL', 'barcode': 'BC6', 'Sex': 'male'}, 'GSM2649714': {'tumor': 'TUMOR', 'barcode': 'BC7', 'Sex': 'female'}, 'GSM2649715': {'tumor': 'NORMAL', 'barcode': 'BC8', 'Sex': 'female'}, 'GSM2649716': {'tumor': 'TUMOR', 'barcode': 'BC9', 'Sex': 'male'}, 'GSM2303545': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM2649718': {'tumor': 'TUMOR', 'barcode': 'BC11', 'Sex': 'male'}, 'GSM2649719': {'tumor': 'NORMAL', 'barcode': 'BC12', 'Sex': 'male'}, 'GSM2303546': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2610786': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303540': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2303541': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACEK420A'}, 'GSM2303542': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM1861988': {'group': 'DDIS'}, 'GSM1861989': {'group': 'DDIS'}, 'GSM1861986': {'group': 'DDIS'}, 'GSM1861987': {'group': 'DDIS'}, 'GSM1861984': {'group': 'DDIS'}, 'GSM1861985': {'group': 'DDIS'}, 'GSM1861982': {'group': 'DDIS'}, 'GSM1861983': {'group': 'DDIS'}, 'GSM1861980': {'group': 'RIS'}, 'GSM1861981': {'group': 'RIS'}, 'GSM1835789': {'line': 'HT1080', 'type': 'fibroscarcoma cell line', 'treatment': 'No DOX', 'integration': 'chr12'}, 'GSM1835788': {'line': 'HT1080', 'type': 'fibroscarcoma cell line', 'treatment': '5day DOX', 'integration': 'chr1'}, 'GSM2194631': {'type': 'pp', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1835787': {'line': 'HT1080', 'type': 'fibroscarcoma cell line', 'treatment': 'No DOX', 'integration': 'chr1'}, 'GSM2209639': {'with': 'Leptomycin B', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209638': {'with': 'Extracellular vesicles + Importazole', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209637': {'with': 'Extracellular vesicles + Importazole', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209636': {'with': 'Extracellular vesicles + Leptomycin B', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209635': {'with': 'Extracellular vesicles + Leptomycin B', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209634': {'with': 'Extracellular vesicles from CD9sh cells', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209633': {'with': 'Extracellular vesicles from CD9sh cells', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209632': {'with': 'Extracellular vesicles', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209631': {'with': 'Extracellular vesicles', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209630': {'with': 'none (solvent only)', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2471859': {'with': 'none', 'type': 'Diffuse intrinsic pontine glioma (DIPG) cells', 'antibody': 'Active Motif #39133', 'subtype': 'immunoprecipitated DNA'}, 'GSM2995445': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995446': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995447': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995448': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995449': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2560482': {'name': '5B5', 'antibody': 'none', 'type': 'column goblet cells', 'ko': 'LS174T_CDX2+/- Tet3G KO', 'cdx2opt': 'none', 'line': 'LS174T CL-188', 'induction': 'none'}, 'GSM908342': {'line': 'HepG2', 'antibody': 'none'}, 'GSM908343': {'line': 'HepG2', 'antibody': 'none'}, 'GSM908340': {'vendor': 'Synaptic Systems', 'line': 'HepG2', 'antibody': 'anti-m6A'}, 'GSM908341': {'line': 'HepG2', 'antibody': 'none'}, 'GSM2631679': {'transfection': 'EGFP(control)', 'type': 'HeLa Kyoto'}, 'GSM1917154': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'senescent'}, 'GSM1702298': {'knockout': 'CRISPR/Cas9', 'line': 'Jurkat', 'type': 'T-acute lymphoblastic leukemia'}, 'GSM1702299': {'knockout': 'shRNA', 'line': 'Jurkat', 'type': 'T-acute lymphoblastic leukemia'}, 'GSM1702295': {'knockout': 'shRNA', 'line': 'Jurkat', 'type': 'T-acute lymphoblastic leukemia'}, 'GSM1702296': {'knockout': 'shRNA', 'line': 'Jurkat', 'type': 'T-acute lymphoblastic leukemia'}, 'GSM1702297': {'knockout': 'CRISPR/Cas9', 'line': 'Jurkat', 'type': 'T-acute lymphoblastic leukemia'}, 'GSM2808445': {'region': 'whole retina'}, 'GSM1955908': {'a': '56342', 'cd38': '512', 'cd49f': '977', 'w': '64646', 'h': '57117', 'lin': '114', 'cd34': '4565', 'cd90': '4386', 'cd7': '235', 'cd10': '632', 'time': '6042', 'cd135': '3161', 'cd45ra': '265'}, 'GSM1955909': {'a': '69529', 'cd38': '1161', 'cd49f': '583', 'w': '68115', 'h': '66896', 'lin': '0', 'cd34': '7009', 'cd90': '2541', 'cd7': '-99', 'cd10': '904', 'time': '5827', 'cd135': '3427', 'cd45ra': '553'}, 'GSM2808444': {'region': 'whole retina'}, 'GSM1955902': {'a': '55907', 'cd38': '-28', 'cd49f': '1036', 'w': '67412', 'h': '54352', 'lin': '-170', 'cd34': '4047', 'cd90': '118', 'cd7': '566', 'cd10': '8194', 'time': '3682', 'cd135': '7290', 'cd45ra': '5549'}, 'GSM1955903': {'a': '56400', 'cd38': '552', 'cd49f': '275', 'w': '66927', 'h': '55228', 'lin': '-416', 'cd34': '9298', 'cd90': '1909', 'cd7': '471', 'cd10': '135', 'time': '3943', 'cd135': '3133', 'cd45ra': '222'}, 'GSM1955900': {'a': '45896', 'cd38': '-2666', 'cd49f': '177', 'w': '66651', 'h': '45128', 'lin': '769', 'cd34': '7801', 'cd90': '2056', 'cd7': '4096', 'cd10': '-1893', 'time': '3268', 'cd135': '6017', 'cd45ra': '226'}, 'GSM1955901': {'a': '47381', 'cd38': '746', 'cd49f': '525', 'w': '64853', 'h': '47880', 'lin': '542', 'cd34': '5548', 'cd90': '7367', 'cd7': '61', 'cd10': '801', 'time': '3479', 'cd135': '2346', 'cd45ra': '484'}, 'GSM1955906': {'a': '52030', 'cd38': '1004', 'cd49f': '785', 'w': '66661', 'h': '51152', 'lin': '-227', 'cd34': '4708', 'cd90': '332', 'cd7': '221', 'cd10': '785', 'time': '6462', 'cd135': '2406', 'cd45ra': '608'}, 'GSM1955907': {'a': '63402', 'cd38': '670', 'cd49f': '462', 'w': '67700', 'h': '61375', 'lin': '432', 'cd34': '7533', 'cd90': '6264', 'cd7': '193', 'cd10': '880', 'time': '6254', 'cd135': '4188', 'cd45ra': '311'}, 'GSM1955904': {'a': '73908', 'cd38': '718', 'cd49f': '617', 'w': '68426', 'h': '70786', 'lin': '507', 'cd34': '6592', 'cd90': '1648', 'cd7': '-81', 'cd10': '1070', 'time': '4149', 'cd135': '5013', 'cd45ra': '134'}, 'GSM1955905': {'a': '51974', 'cd38': '840', 'cd49f': '446', 'w': '66963', 'h': '50866', 'lin': '-136', 'cd34': '6891', 'cd90': '690', 'cd7': '507', 'cd10': '147', 'time': '6695', 'cd135': '4534', 'cd45ra': '255'}, 'GSM2808446': {'region': 'whole retina'}, 'GSM2808441': {'region': 'whole retina'}, 'GSM2808440': {'region': 'whole retina'}, 'GSM2545258': {'line': 'MB468', 'type': 'TNBC Basal Breast Cancer Cell Line'}, 'GSM2545259': {'line': 'MB468', 'type': 'TNBC Basal Breast Cancer Cell Line'}, 'GSM2808443': {'region': 'whole retina'}, 'GSM2545250': {'line': 'AU565', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545251': {'line': 'AU565', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545252': {'line': 'AU565', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2808442': {'region': 'whole retina'}, 'GSM2545254': {'line': 'HCC1954', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545255': {'line': 'HCC1954', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545256': {'line': 'HCC1954', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545257': {'line': 'MB468', 'type': 'TNBC Basal Breast Cancer Cell Line'}, 'GSM2202571': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2202570': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2202573': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2202572': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2127237': {'virus': 'DENV'}, 'GSM2127238': {'virus': 'DENV'}, 'GSM2127239': {'virus': 'DENV'}, 'GSM2172379': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172378': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172371': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172370': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172373': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172372': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172375': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172374': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172377': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172376': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2455883': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2100129': {'rin': '10', 'Sex': 'Female', 'sspg': '163', 'age': '56', 'bmi': '23.1', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '460', 'method': 'Life-Tech GITC'}, 'GSM2100128': {'rin': '10', 'Sex': 'Female', 'sspg': '163', 'age': '56', 'bmi': '23.1', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '460', 'method': 'Life-Tech GITC'}, 'GSM2451049': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451048': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1440662': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM2451046': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1440660': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM1440661': {'line': 'HeLa', 'type': 'human cervical cancer cell line'}, 'GSM2100121': {'rin': '7.7', 'Sex': 'Female', 'sspg': '76', 'age': '48', 'bmi': '28.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'South Asian', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '197', 'method': 'Qiagen:trizol'}, 'GSM2100120': {'rin': '7.3', 'Sex': 'Female', 'sspg': '76', 'age': '48', 'bmi': '28.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'South Asian', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '197', 'method': 'Qiagen:trizol'}, 'GSM2455882': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2451040': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1071442': {'line': 'HEK293T'}, 'GSM1071443': {'line': 'HEK293T'}, 'GSM1071440': {'line': 'HEK293T'}, 'GSM3594618': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1957509': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM3594613': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594612': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594611': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594610': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594617': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594616': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594615': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594614': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2411861': {'line': '921B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411860': {'line': '554D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411863': {'line': '9462A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411862': {'line': '921C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411865': {'line': '2098A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411864': {'line': '9462B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Major/Major'}, 'GSM2411867': {'line': '10950C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411866': {'line': '10950A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM1642990': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': 'control'}, 'GSM1642991': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': 'control'}, 'GSM1642992': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': 'control'}, 'GSM1642993': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': \"Crohn's disease-associated fibrosis\"}, 'GSM1642994': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': \"Crohn's disease-associated fibrosis\"}, 'GSM1642995': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': \"Crohn's disease-associated fibrosis\"}, 'GSM2711697': {'type': 'PAX6+ neuroectoderm'}, 'GSM2711696': {'type': 'PAX6+ neuroectoderm'}, 'GSM2711699': {'type': 'SOX10+ neural crest'}, 'GSM2711698': {'type': 'PAX6+ neuroectoderm'}, 'GSM2151480': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2794844': {'status': 'poorly differentiated', 'tissue': 'non-tumor', 'infection': 'HBV-infected', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2591'}, 'GSM1053787': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NPAF signature'}, 'GSM1444180': {'reagent': 'mock', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': 'mock'}, 'GSM985093': {'line': 'HT1080', 'protocol': 'Doxycycline +/ Shield -', 'clone': 'm6A-Tracer'}, 'GSM2151483': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM985095': {'line': 'HT1080', 'protocol': 'Doxycycline -/ Shield +', 'clone': 'm6A-Tracer'}, 'GSM985094': {'line': 'HT1080', 'protocol': 'Doxycycline -/ Shield -', 'clone': 'm6A-Tracer'}, 'GSM985097': {'line': 'HT1080', 'protocol': 'Doxycycline -/ Shield -', 'clone': 'm6A-Tracer-VP16'}, 'GSM985096': {'line': 'HT1080', 'protocol': 'Doxycycline +/ Shield -', 'clone': 'm6A-Tracer-VP16'}, 'GSM985099': {'line': 'HT1080', 'protocol': 'Doxycycline +/ Shield -', 'clone': 'm6A-Tracer'}, 'GSM985098': {'line': 'HT1080', 'protocol': 'Doxycycline -/ Shield +', 'clone': 'm6A-Tracer-VP16'}, 'GSM1053780': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'PF signature'}, 'GSM2151486': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151487': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2794849': {'status': 'poorly differentiated', 'tissue': 'tumor', 'infection': 'HBV-infected', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2701'}, 'GSM2588921': {'type': 'HuT78', 'treatment': 'Untreated', 'sequence': 'GGCTCGGTCCCGCGTCGTCG'}, 'GSM2575274': {'line': 'WM989', 'type': 'melanoma', 'condition': 'neg', 'drug': '4 weeks'}, 'GSM1617985': {'replicates': '2', 'sorting': 'Unsorted', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-HA'}, 'GSM2243828': {'selection': 'Microglia(CD45)', 'neoplastic': 'Neoplastic', 'well': 'C4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243829': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2611259': {'tissue': 'Placenta', 'stage': 'Third trimester'}, 'GSM2243824': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243825': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243826': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243827': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243820': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243821': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243822': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243823': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1159898': {'with': '100 nM DHT', 'type': 'LNCaP cells'}, 'GSM2049104': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2575278': {'line': 'WM989', 'type': 'melanoma', 'condition': 'mix', 'drug': 'no drug'}, 'GSM2197437': {'tissue': 'peripheral blood', 'type': 'Peripheral blood IgM memory B cells', 'markers': 'CD19+ CD20+ CD27+ IgM+ CD2-'}, 'GSM2197436': {'tissue': 'peripheral blood', 'type': 'Peripheral blood IgG memory B cells', 'markers': 'CD19+ CD20+ CD27+ IgM- CD2-'}, 'GSM2197435': {'tissue': 'peripheral blood', 'type': 'Peripheral blood plasmablasts', 'markers': 'CD19+ CD27-high CD38-high CD20- CD2-'}, 'GSM2197434': {'tissue': 'bone marrow', 'type': 'bone marrow plasma cells', 'markers': 'CD19+ CD138+'}, 'GSM686950': {'transgenes': 'none', 'line': 'LNCaP', 'antibody': 'none', 'transfection': 'siFoxA1 (M-010319)', 'agent': 'DHT'}, 'GSM2197432': {'tissue': 'bone marrow', 'type': 'bone marrow plasma cells', 'markers': 'CD19+ CD138+'}, 'GSM2197431': {'tissue': 'bone marrow', 'type': 'bone marrow plasma cells', 'markers': 'CD19+ CD138+'}, 'GSM2197438': {'tissue': 'peripheral blood', 'type': 'Peripheral blood naive B cells', 'markers': 'CD19+ CD20+ CD27- IgM+ CD2-'}, 'GSM1208970': {'gender': 'male', 'source': 'second trimester amniotic fluid supernatant'}, 'GSM1208971': {'gender': 'male', 'source': 'second trimester amniotic fluid supernatant'}, 'GSM1208972': {'gender': 'male', 'source': 'second trimester amniotic fluid supernatant'}, 'GSM1057039': {'with': 'control lentivirus', 'line': 'CNE1', 'passages': '3', 'type': 'human nasopharyngeal carcinoma cells'}, 'GSM2492460': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492461': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492462': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492463': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492464': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492465': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492466': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492467': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492468': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492469': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2274688': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32736', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9326', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C33', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9326', 'studysiteshort': 'UCSF'}, 'GSM1396608': {'status': 'WT', 'histotype': 'TC: SCC', 'type': 'Cell Line', 'Stage': 'uk'}, 'GSM1396609': {'status': 'WT', 'histotype': 'TC: Undifferentiated', 'type': 'Cell Line', 'Stage': 'uk'}, 'GSM1396602': {'status': 'WT', 'Sex': 'M', 'histotype': 'TC:SCC', 'diagnosis': '38', 'type': 'Frozen', 'Stage': 'IVB'}, 'GSM1396603': {'status': 'WT', 'Sex': 'M', 'histotype': 'B3', 'diagnosis': '58', 'type': 'Frozen', 'Stage': 'IVB'}, 'GSM1396600': {'status': 'WT', 'Sex': 'F', 'histotype': 'B3', 'diagnosis': '48', 'type': 'Frozen', 'Stage': 'IVA'}, 'GSM1396601': {'status': 'WT', 'Sex': 'M', 'histotype': 'TC:SCC', 'diagnosis': '62', 'type': 'Frozen', 'Stage': 'IVB'}, 'GSM1396606': {'status': 'WT', 'Sex': 'F', 'histotype': 'TC: Undiferentiated', 'diagnosis': '53', 'type': 'Frozen', 'Stage': 'IVB'}, 'GSM1396607': {'status': 'WT', 'histotype': 'B1', 'type': 'Cell Line', 'Stage': 'uk'}, 'GSM1396604': {'status': 'WT', 'Sex': 'M', 'histotype': 'TC: Undiferentiated', 'diagnosis': '46', 'type': 'Frozen', 'Stage': 'IVB'}, 'GSM1396605': {'status': 'WT', 'Sex': 'F', 'histotype': 'B3', 'diagnosis': '55', 'type': 'Frozen', 'Stage': 'IVA'}, 'GSM2779624': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779625': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779626': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779627': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779620': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779621': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779622': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779623': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM1060228': {'line': 'MDA-MB-231', 'treatment': 'CXCL12 (30ng/mL) + IGF1 (10ng/mL)'}, 'GSM2274687': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32735', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9325', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C20', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9325', 'studysiteshort': 'UCSF'}, 'GSM1249869': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siCTL'}, 'GSM1444188': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 2-3 h p.i.'}, 'GSM2616679': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616678': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616673': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616672': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616671': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616670': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616677': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616676': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616675': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616674': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM1820483': {'type': 'HEK293', 'genotype': 'PIN RNB mutant DIS3'}, 'GSM2717439': {'status': 'Fuchs endothelial corneal dystrophy', 'tissue': 'corneal endothelium'}, 'GSM2717438': {'line': 'HEK293T', 'variation': 'CFIm68 knockout'}, 'GSM2474568': {'isolation': 'total RNA', 'induction': 'none', 'treatment': '1h before harvesting'}, 'GSM2717435': {'line': 'HEK293T', 'variation': 'CFIm59 knockout'}, 'GSM2717434': {'line': 'HEK293T', 'variation': 'wild type control'}, 'GSM2717437': {'line': 'HEK293T', 'variation': 'CFIm68 knockout'}, 'GSM2717436': {'line': 'HEK293T', 'variation': 'CFIm59 knockout'}, 'GSM1194695': {'pathology': 'Premalignant', 'tissue': 'Premalignant lesion', 'patient': 'Patient 4'}, 'GSM1194694': {'type': 'Normal basal cells', 'pathology': 'Normal', 'patient': 'Patient 4'}, 'GSM1194697': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 4'}, 'GSM1194696': {'pathology': 'Premalignant', 'tissue': 'Premalignant lesion', 'patient': 'Patient 4'}, 'GSM1194691': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 3'}, 'GSM1194690': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 3'}, 'GSM1194693': {'type': 'Normal basal cells', 'pathology': 'Normal', 'patient': 'Patient 4'}, 'GSM1194692': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 3'}, 'GSM2738551': {'genotype': 'wild type'}, 'GSM1194699': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 4'}, 'GSM1194698': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 4'}, 'GSM2738550': {'genotype': 'wild type'}, 'GSM2901755': {'type': 'HeLa', 'variation': 'STAT3 KO'}, 'GSM2738552': {'genotype': 'wild type'}, 'GSM2303467': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303466': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCG268'}, 'GSM2303465': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303464': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCG268'}, 'GSM2303463': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM1400967': {'line': 'MCF7'}, 'GSM2303461': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303460': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303469': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303468': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM859996': {'length': '76', 'line': '293T', 'treatment': 'hnRNPA1 siRNAs'}, 'GSM859994': {'length': '36', 'line': '293T', 'treatment': 'hnRNPA1 siRNAs'}, 'GSM2543730': {'library_id': 'lib5871', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1963997': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM859992': {'line': '293T', 'antibody': 'hnRNPU', 'manufacturer': 'Bethyl Laboratories'}, 'GSM1963991': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2901756': {'wth': 'none', 'type': 'HeLa'}, 'GSM859990': {'line': '293T', 'antibody': 'hnRNPU', 'manufacturer': 'Bethyl Laboratories'}, 'GSM859991': {'line': '293T', 'antibody': 'hnRNPU', 'manufacturer': 'Bethyl Laboratories'}, 'GSM1722946': {'tissue': 'Bone', 'score': '33.90467203', 'stage': 'metastatic castration resistant'}, 'GSM1722947': {'tissue': 'Bone', 'score': '39.23665376', 'stage': 'metastatic castration resistant'}, 'GSM1722944': {'tissue': 'Bone', 'score': '27.45213911', 'stage': 'metastatic castration resistant'}, 'GSM1722945': {'tissue': 'Bone', 'score': '31.14459098', 'stage': 'metastatic castration resistant'}, 'GSM1722942': {'tissue': 'Bone', 'score': '21.84214719', 'stage': 'metastatic castration resistant'}, 'GSM1722943': {'tissue': 'Bone', 'score': '23.859308', 'stage': 'metastatic castration resistant'}, 'GSM1722948': {'tissue': 'Bone', 'score': '48.91866365', 'stage': 'metastatic castration resistant'}, 'GSM1722949': {'tissue': 'Bone', 'score': '60.35766204', 'stage': 'metastatic castration resistant'}, 'GSM2696527': {'status': '-', 'grade': '2', 'age': '65', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '1.1'}, 'GSM2696526': {'status': '-', 'grade': '2', 'age': '65', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '9'}, 'GSM2696525': {'status': '-', 'grade': '2', 'age': '65', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '9'}, 'GSM2696524': {'status': '2+', 'grade': '2', 'age': '76', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '5.1'}, 'GSM2696523': {'status': '2+', 'grade': '3', 'age': '78', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.2'}, 'GSM2696522': {'status': '2+', 'grade': '3', 'age': '78', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.2'}, 'GSM2696521': {'status': '0', 'grade': '2', 'age': '54', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '7'}, 'GSM2696520': {'status': '3+', 'grade': '3', 'age': '78', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.2'}, 'GSM2275021': {'area_under_the_curve': '0.638933438', 'siteandparticipantcode': '505125', 'baseline_area_under_the_curve': '0.638933438', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '910001', 'sampleID': 'S12558', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib866', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_505125', 'gender': 'Male', 'age': '15', 'race': 'White; White', 'libraryid': 'lib866', 'studysiteshort': 'COLUMBIA'}, 'GSM2275020': {'area_under_the_curve': '0.281039688', 'siteandparticipantcode': '209864', 'baseline_area_under_the_curve': '0.48657', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '57.75935374', 'auc_percent_of_baseline': '57.75935374', 'trunkbarcode': '922070', 'sampleID': 'S10751', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib865', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_209864', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib865', 'studysiteshort': 'COLUMBIA'}, 'GSM1424518': {'line': 'DU145', 'condition': 'ETS1 shRNA'}, 'GSM1424519': {'line': 'DU145', 'condition': 'ETS1 shRNA'}, 'GSM2275025': {'area_under_the_curve': '0.648708281', 'siteandparticipantcode': '406442', 'baseline_area_under_the_curve': '0.648708281', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '913976', 'sampleID': 'S12562', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib870', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_406442', 'gender': 'Female', 'age': '13', 'race': 'White', 'libraryid': 'lib870', 'studysiteshort': 'COLUMBIA'}, 'GSM2275024': {'area_under_the_curve': '1.24331875', 'siteandparticipantcode': '493934', 'baseline_area_under_the_curve': '1.24331875', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '911119', 'sampleID': 'S12561', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib869', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_493934', 'gender': 'Female', 'age': '10', 'race': 'Black or African American', 'libraryid': 'lib869', 'studysiteshort': 'COLUMBIA'}, 'GSM2696529': {'status': '0', 'grade': '1', 'age': '71', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '3'}, 'GSM2696528': {'status': '0', 'grade': '2', 'age': '59', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '7'}, 'GSM1896265': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '24 hr'}, 'GSM1896264': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '24 hr'}, 'GSM1896267': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '24 hr'}, 'GSM1896266': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '24 hr'}, 'GSM1896261': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '24 hr'}, 'GSM1896260': {'individual': 'EU80', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896263': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '24 hr'}, 'GSM1896262': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '24 hr'}, 'GSM1896269': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '24 hr'}, 'GSM1896268': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '24 hr'}, 'GSM2194317': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194316': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194315': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194314': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194313': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194312': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194311': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194310': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194319': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194318': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2731750': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2731751': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2731752': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM921018': {'barcode': 'GTAATG', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd2'}, 'GSM921017': {'barcode': 'AGATGG', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd1'}, 'GSM921016': {'barcode': 'GCTGTG', 'type': 'Fibroblasts', 'treatment': 'Noninduced', 'name': 'Daphne', 'day': 'd0'}, 'GSM921015': {'barcode': 'GGCTGC', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd7'}, 'GSM921014': {'barcode': 'AACGCC', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd6'}, 'GSM921013': {'barcode': 'TTCATA', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd5'}, 'GSM921012': {'barcode': 'ATGGCG', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd4'}, 'GSM921011': {'barcode': 'GGGTTT', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd3'}, 'GSM921010': {'barcode': 'CCTAGA', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Charlotte', 'day': 'd2'}, 'GSM2332522': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332523': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2332520': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332521': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2332526': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332527': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2332524': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332525': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2332528': {'tissue': 'Liver', 'stage': 'post-reperfusion'}, 'GSM2332529': {'tissue': 'Liver', 'stage': 'pre-reperfusion'}, 'GSM2333699': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'non-targetting siRNA pool (siNC)', 'passage': 'passage 3 to passage 5'}, 'GSM2333698': {'line': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'with': 'non-targetting siRNA pool (siNC)', 'passage': 'passage 3 to passage 5'}, 'GSM1625965': {'type': 'mixed sample of both (1:64)'}, 'GSM2724451': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir adrenal metastasis, mouse number 15'}, 'GSM2724450': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir ST metastasis, mouse number A 15'}, 'GSM2724453': {'line': 'Kif2a', 'type': 'Kif2a Brain metastasis, mouse number 42'}, 'GSM2724452': {'line': 'Control', 'type': 'Control bone metastasis, mouse number 73'}, 'GSM2724455': {'line': 'Kif2a', 'type': 'Kif2a brain metastasis, mouse number 56'}, 'GSM2724454': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir primary tumor, mouse number 12'}, 'GSM2724457': {'line': 'Kif2a', 'type': 'Kif2a adrenal metastasis, mouse number 56'}, 'GSM2724456': {'line': 'Control', 'type': 'Control brain metastasis, mouse number 31'}, 'GSM2724459': {'line': 'Control', 'type': 'Control brain metastasis, mouse number 35'}, 'GSM2724458': {'line': 'Kif2b', 'type': 'Kif2b bone metastasis, mouse number 32'}, 'GSM1281798': {'status': 'No LVAD', 'pacemaker': 'NA', 'fraction': 'NA', 'gender': 'Male', 'age': '49', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': 'NA', 'race': 'African American', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM2048539': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048538': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1642769': {'line': '786-O', 'antibody': 'HIF-2alpha Antibody (PM9)', 'transfection': 'HIF-2a (pRRL-HIF-2a)'}, 'GSM1642768': {'line': '786-O', 'antibody': 'Novus Biological, NB100-110', 'transfection': 'HIF-2a (pRRL-HIF-2a)'}, 'GSM1642767': {'line': '786-O', 'antibody': 'none', 'transfection': 'HIF-1a (pRRL-HIF-1a)'}, 'GSM2048530': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1642765': {'line': '786-O', 'antibody': 'Novus Biological, NB100-110', 'transfection': 'HIF-1a (pRRL-HIF-1a)'}, 'GSM1642764': {'line': '786-O', 'antibody': 'HIF-1alpha Antibody (PM14)', 'transfection': 'HIF-1a (pRRL-HIF-1a)'}, 'GSM1642763': {'line': '786-O', 'antibody': 'none', 'transfection': 'control (pRRL)'}, 'GSM1642762': {'line': '786-O', 'antibody': 'HIF-2alpha Antibody (PM9)', 'transfection': 'control (pRRL)'}, 'GSM1642761': {'line': '786-O', 'antibody': 'Novus Biological, NB100-110', 'transfection': 'control (pRRL)'}, 'GSM2048536': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM3473709': {'type': 'IPSC-derived neurons', 'genotype': 'R841X', 'timepoint': '9wk'}, 'GSM3473708': {'type': 'IPSC-derived neurons', 'genotype': 'R841X', 'timepoint': '4wk'}, 'GSM1060352': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'supplemented with 1:1 ratio of MSC'}, 'GSM1060353': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'supplemented with 1:1 ratio of MSC'}, 'GSM1060354': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'supplemented with 1:1 ratio of MSC'}, 'GSM1060355': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'supplemented with 1:1 ratio of MSC'}, 'GSM1060356': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'supplemented with 1:1 ratio of MSC'}, 'GSM1060357': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'without MSC supplementation'}, 'GSM1060358': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'without MSC supplementation'}, 'GSM1060359': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'without MSC supplementation'}, 'GSM2058082': {'line': 'V784', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058083': {'line': 'V8', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM3473705': {'type': 'IPSC-derived neurons', 'genotype': 'R841X', 'timepoint': '9wk'}, 'GSM3473704': {'type': 'IPSC-derived neurons', 'genotype': 'R841X', 'timepoint': '4wk'}, 'GSM3473707': {'type': 'IPSC-derived neurons', 'genotype': 'R841X', 'timepoint': '9wk'}, 'GSM3473706': {'type': 'IPSC-derived neurons', 'genotype': 'R841X', 'timepoint': '4wk'}, 'GSM1708781': {'gender': 'male', 'age': '57', 'tissue': 'Posterior longitudinal ligament', 'passage': 'Passage 3'}, 'GSM2414798': {'line': 'SW620', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414799': {'line': 'SW948', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414794': {'line': 'SNUC2B', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414795': {'line': 'SW1116', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414796': {'line': 'SW1222', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414797': {'line': 'SW480', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414790': {'line': 'LS513', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414791': {'line': 'NCIH747', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414792': {'line': 'RKO', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414793': {'line': 'SNU175', 'type': 'epithelial colorectal cancer cell line'}, 'GSM1955757': {'a': '57736', 'cd38': '778', 'cd49f': '865', 'w': '67669', 'h': '55916', 'lin': '259', 'cd34': '6584', 'cd90': '1045', 'cd7': '195', 'cd10': '699', 'time': '13664', 'cd135': '2401', 'cd45ra': '221'}, 'GSM1276898': {'score': '9.1', 'sequence': 'CGTACG', 'targeted': 'SRSF8', 'number': '22', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276899': {'score': '9.1', 'sequence': 'TAGCTT', 'targeted': 'SRSF8', 'number': '10', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1955756': {'a': '56925', 'cd38': '399', 'cd49f': '621', 'w': '67176', 'h': '55536', 'lin': '896', 'cd34': '3772', 'cd90': '8351', 'cd7': '97', 'cd10': '846', 'time': '13460', 'cd135': '3572', 'cd45ra': '411'}, 'GSM1276892': {'score': '8.9', 'sequence': 'GTGGCC', 'targeted': 'HNRPH1', 'number': '20', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276893': {'score': '9.2', 'sequence': 'GCCAAT', 'targeted': 'HNRPH1', 'number': '6', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276890': {'score': '8.9', 'sequence': 'GATCAG', 'targeted': 'HNRPK', 'number': '9', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276891': {'score': '8.5', 'sequence': 'GGCTAC', 'targeted': 'HNRPH1', 'number': '11', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276896': {'score': '9.3', 'sequence': 'GATCAG', 'targeted': 'HNRPF', 'number': '9', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276897': {'score': '8.9', 'sequence': 'TTAGGC', 'targeted': 'SRSF8', 'number': '3', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276894': {'score': '8.5', 'sequence': 'CGATGT', 'targeted': 'HNRPF', 'number': '2', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276895': {'score': '9.2', 'sequence': 'GTTTCG', 'targeted': 'HNRPF', 'number': '21', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1580900': {'death': '57', 'rin': '7.7', 'reads': '61019098', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '20'}, 'GSM1580901': {'death': '80', 'rin': '7.3', 'reads': '74892650', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '15'}, 'GSM1580902': {'death': '74', 'rin': '8.5', 'reads': '85310070', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM1580903': {'death': '69', 'rin': '8.4', 'reads': '167044880', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM3112189': {'status': 'WT no splice', 'line': 'CAL62', 'type': 'mRNA'}, 'GSM3112188': {'status': 'WT no splice', 'line': 'CAL62', 'type': 'mRNA'}, 'GSM1580906': {'death': '87', 'rin': '8.7', 'reads': '83773400', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM1580907': {'death': '86', 'rin': '8.7', 'reads': '115714502', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM3112185': {'status': 'Splice Reversed', 'line': 'C643', 'type': 'mRNA'}, 'GSM3112184': {'status': 'Splice Reversed', 'line': 'C643', 'type': 'mRNA'}, 'GSM3112187': {'status': 'WT no splice', 'line': 'CAL62', 'type': 'mRNA'}, 'GSM3112186': {'status': 'Splice Reversed', 'line': 'C643', 'type': 'mRNA'}, 'GSM3112181': {'status': 'WT-splice', 'line': 'C643', 'type': 'mRNA'}, 'GSM3112183': {'status': 'WT-splice', 'line': 'C643', 'type': 'mRNA'}, 'GSM3112182': {'status': 'WT-splice', 'line': 'C643', 'type': 'mRNA'}, 'GSM1843218': {'line': 'THP-1 leukemia cell line'}, 'GSM1843219': {'line': 'MonoMac-1 leukemia cell line'}, 'GSM923419': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL526', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM923418': {'description': 'Single 36 nt reads', 'datatype': 'RnaSeq', 'labexpid': 'SL1256', 'readtype': '1x36', 'mapalgorithm': 'bow125', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'cufflinks_v_0.9'}, 'GSM2186481': {'line': 'LNCaP', 'treatment': 'DMSO 24h'}, 'GSM2105095': {'gender': 'Female', 'age': '7 Year old', 'batch': '1L', 'condition': 'Disomic'}, 'GSM1843216': {'line': 'HL60 leukemia cell line'}, 'GSM1843217': {'line': 'KG1a leukemia cell line'}, 'GSM2791399': {'host': 'female athymic nude mice (Foxn1nu)', 'tissue': 'breast cancer patient-derived xenografts (PDX)', 'type': 'snapfrozen xenograft specimen', 'tag': 'Hormone receptor positive'}, 'GSM3067252': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'serum starvation', 'fraction': 'total RNA'}, 'GSM3067253': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'serum starvation', 'fraction': 'total RNA'}, 'GSM3067250': {'line': 'MCF7', 'replicate': '#1', 'treatment': 'serum starvation + EGF treatment', 'fraction': 'total RNA'}, 'GSM3067251': {'line': 'MCF7', 'replicate': '#2', 'treatment': 'serum starvation + EGF treatment', 'fraction': 'total RNA'}, 'GSM844016': {'vendor': 'Santa Cruz Biotechnology.', 'antibody': 'Pol II (N20)', 'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM2105099': {'gender': 'Female', 'age': '14 Year old', 'batch': '1L', 'condition': 'Disomic'}, 'GSM2159812': {'line': 'MCF-7', 'transfection': 'Anti-miR-29a'}, 'GSM2253977': {'line': 'HEK293T'}, 'GSM2253976': {'line': 'HEK293T'}, 'GSM2253975': {'line': 'HEK293T'}, 'GSM2253974': {'line': 'HEK293T'}, 'GSM2253973': {'line': 'HEK293T'}, 'GSM2253972': {'line': 'HEK293T'}, 'GSM2253971': {'line': 'HEK293T'}, 'GSM2253970': {'line': 'HEK293T'}, 'GSM2253978': {'line': 'HEK293T'}, 'GSM2575077': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2575076': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 2', 'point': '06h'}, 'GSM2575075': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 2', 'point': '06h'}, 'GSM3186675': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'male', 'age': '25', 'sample_id': '01-0036', 'tissue': 'muscle biopsy', 'batch': 'II', 'rank': '1', 't1': '0', 'score': '0.14115', 'fraction': '0.050003', 'inflam': '0', 'active': '0', 'stir': '0'}, 'GSM2575073': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2575072': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 2', 'point': '03h'}, 'GSM2575071': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 2', 'point': '03h'}, 'GSM2575070': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2575079': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'A/Wyoming/03/03 (H3N2), MOI 2', 'point': '12h'}, 'GSM2575078': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2304938': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '16h'}, 'GSM2433759': {'sample_label': '38-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2304939': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '24h'}, 'GSM2433757': {'sample_label': '36-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433756': {'sample_label': '35-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433755': {'sample_label': '32-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433754': {'sample_label': '31-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433753': {'sample_label': '28-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433752': {'sample_label': '22-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433751': {'sample_label': '19-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433750': {'sample_label': '16-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM1359504': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'line': 'LEC', 'type': 'Dermal lymphatic endothelial cells'}, 'GSM1359505': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'line': 'LEC-219', 'type': 'Dermal lymphatic endothelial cells', 'infection': 'rKSHV.219'}, 'GSM1359506': {'antibody': 'Pol II (Santa Cruz Biotechnology, sc-899 X)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM2026983': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q5T5D7'}, 'GSM1359500': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'BCBL-1', 'type': 'Primary effusion lymphoma B cells', 'infection': 'KSHV'}, 'GSM1359501': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'BCBL-1', 'type': 'Primary effusion lymphoma B cells', 'infection': 'KSHV'}, 'GSM1359502': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'line': 'iSLK', 'type': 'Kidney epithelial cells'}, 'GSM1359503': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM2026988': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9H5H4'}, 'GSM2026989': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q6IQ21'}, 'GSM1359508': {'antibody': 'H3K27me3 (Millipore, 07-449)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM1359509': {'antibody': 'IgG (Millipore, pp64b)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM1678814': {'knockdown': 'No', 'type': 'HBL melanocyte cells', 'fraction': 'whole cell'}, 'GSM2251247': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1678810': {'knockdown': 'No', 'type': 'HBL melanocyte cells', 'fraction': 'cytoplasmic'}, 'GSM1678811': {'knockdown': 'No', 'type': 'HBL melanocyte cells', 'fraction': 'nuclear'}, 'GSM1678812': {'knockdown': 'No', 'type': 'HBL melanocyte cells', 'fraction': 'nuclear'}, 'GSM1678813': {'knockdown': 'No', 'type': 'HBL melanocyte cells', 'fraction': 'whole cell'}, 'GSM2445620': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D6', 'type': 'primary human hepatocyte'}, 'GSM1369217': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2144489': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2815781': {'line': 'H9'}, 'GSM2915395': {'antibody': 'SUMO2/3 (Cedarlane M114-3)', 'type': 'MCF-7 cells'}, 'GSM3186679': {'status': 'Facioscapulohumeral muscular dystrophy (FSHD)', 'gender': 'female', 'age': '64', 'sample_id': '32-0009', 'tissue': 'muscle biopsy', 'batch': 'II', 'rank': '3', 't1': '0', 'score': '10.6272', 'fraction': '0.11392', 'inflam': '3', 'active': '3', 'stir': '2'}, 'GSM2815782': {'line': 'H9'}, 'GSM1545666': {'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'none', 'serum': 'starved'}, 'GSM1545667': {'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'none', 'serum': 'activated'}, 'GSM1545664': {'serum': 'activated', 'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'TPL for 1 hour'}, 'GSM1545665': {'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'none', 'serum': 'starved'}, 'GSM1545662': {'serum': 'activated', 'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'TPL for 1 hour'}, 'GSM1545663': {'serum': 'activated', 'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'DMSO for 1 hour'}, 'GSM1545660': {'serum': 'starved', 'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'TPL for 1 hour'}, 'GSM1545661': {'serum': 'activated', 'strain': 'HCT116', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'DMSO for 1 hour'}, 'GSM1313403': {'line': '--', 'type': 'normal primary dermal fibroblasts'}, 'GSM1313402': {'line': 'CC-2511', 'type': 'normal dermal fibroblasts'}, 'GSM2445625': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'IFN', 'time': '4h', 'type': 'primary human hepatocyte'}, 'GSM1545668': {'strain': 'HCT116', 'by': 'scramble shRNA', 'type': 'human colon cancer cell', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'serum': 'starved'}, 'GSM1369212': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2187247': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2304936': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '4h'}, 'GSM1369210': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM2144480': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144481': {'status': 'HIV-infected ART-treated patient', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2122553': {'line': 'HTR-8/SVneo', 'transfection': 'siControl', 'variation': 'control', 'time': '48h after transfection'}, 'GSM3348030': {'tissue': 'amnionic membrane', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348031': {'tissue': 'chorionic plate', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348032': {'tissue': 'chorionic plate', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348033': {'tissue': 'chorionic plate', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348034': {'tissue': 'chorionic plate', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348035': {'tissue': 'umbilical cord', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348036': {'tissue': 'umbilical cord', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348037': {'tissue': 'umbilical cord', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM3348038': {'tissue': 'umbilical cord', 'type': 'primary mesenchymal stem cells', 'passage': '5'}, 'GSM2141523': {'individual': 'AF191', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141520': {'individual': 'AF189', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141521': {'individual': 'AF189', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2862290': {'line': 'AD4-01', 'type': 'Differentiated sensory neurons'}, 'GSM2862291': {'line': 'AD4-01', 'type': 'Differentiated sensory neurons'}, 'GSM2862292': {'line': 'NHDF1', 'type': 'Differentiated sensory neurons'}, 'GSM2862293': {'line': 'NHDF1', 'type': 'Differentiated sensory neurons'}, 'GSM2391178': {'disease': 'NSCLC'}, 'GSM2391179': {'disease': 'NSCLC'}, 'GSM2391176': {'disease': 'NSCLC'}, 'GSM2391177': {'disease': 'NSCLC'}, 'GSM2391174': {'disease': 'NSCLC'}, 'GSM2391175': {'disease': 'NSCLC'}, 'GSM2391172': {'disease': 'NSCLC'}, 'GSM2391173': {'disease': 'NSCLC'}, 'GSM2391170': {'disease': 'NSCLC'}, 'GSM2391171': {'disease': 'NSCLC'}, 'GSM2227048': {'tissue': 'Heart', 'stage': 'day 48 from hPSC'}, 'GSM2227049': {'tissue': 'Heart', 'stage': 'day 12 from hPSC'}, 'GSM565967': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'HAS1 inhibitor'}, 'GSM565966': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'PTGIS inhibitor'}, 'GSM565965': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'CXCR2 inhibitor'}, 'GSM2790816': {'status': 'Healthy', 'point': 'Baseline', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'None', 'donor': '15', 'type': 'Monocyte'}, 'GSM2790817': {'status': 'Healthy', 'point': '1 month', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'donor': '15', 'type': 'Monocyte'}, 'GSM2790814': {'status': 'Healthy', 'point': 'Baseline', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'None', 'donor': '9', 'type': 'Monocyte'}, 'GSM2790815': {'status': 'Healthy', 'point': '1 month', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'donor': '9', 'type': 'Monocyte'}, 'GSM2790812': {'status': 'Healthy', 'point': 'Baseline', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'None', 'donor': '7', 'type': 'Monocyte'}, 'GSM2790813': {'status': 'Healthy', 'point': '1 month', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'donor': '7', 'type': 'Monocyte'}, 'GSM2790810': {'status': 'Healthy', 'donor': '23', 'type': 'Monocyte', 'treatment': 'None', 'point': 'Baseline'}, 'GSM2790811': {'status': 'Healthy', 'donor': '23', 'type': 'Monocyte', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'point': '1 month'}, 'GSM2576757': {'tissue': 'Fetal brain', 'type': 'Primary microglia'}, 'GSM2576756': {'tissue': 'Peripheral blood', 'type': 'Circulating macrophage', 'treatment': 'Extra 2 days in IL-10'}, 'GSM2576755': {'tissue': 'Peripheral blood', 'type': 'Circulating macrophage', 'treatment': 'Extra 2 days in IL-4 and IL-13'}, 'GSM2576754': {'tissue': 'Peripheral blood', 'type': 'Circulating macrophage', 'treatment': 'Extra 2 days in IFN-γ and LPS'}, 'GSM2576753': {'tissue': 'Peripheral blood', 'type': 'Circulating macrophage'}, 'GSM2576752': {'tissue': 'Peripheral blood', 'type': 'Circulating macrophage', 'treatment': 'Extra 2 days in IL-10'}, 'GSM2790818': {'status': 'Healthy', 'point': 'Baseline', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'None', 'donor': '18', 'type': 'Monocyte'}, 'GSM2790819': {'status': 'Healthy', 'point': '1 month', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'treatment': 'Bacillus Calmette-Guérin (BCG) vaccine', 'donor': '18', 'type': 'Monocyte'}, 'GSM921048': {'barcode': 'CGCTTG', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd2'}, 'GSM2324254': {'group': 'HighA422', 'type': 'PBMC', 'day': '84', 'subjectid': '6923'}, 'GSM1940653': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1401795': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401794': {'tissue': 'Reduction Mammoplasty - No known cancer'}, 'GSM1401797': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401796': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401791': {'tissue': 'Reduction Mammoplasty - No known cancer'}, 'GSM1401790': {'tissue': 'Reduction Mammoplasty - No known cancer'}, 'GSM1401793': {'tissue': 'Reduction Mammoplasty - No known cancer'}, 'GSM1401792': {'tissue': 'Reduction Mammoplasty - No known cancer'}, 'GSM2437186': {'status': 'NGT', 'id': 'GD9'}, 'GSM2437187': {'status': 'GDM', 'id': 'GD10'}, 'GSM2437184': {'status': 'NGT', 'id': 'GD7'}, 'GSM2437185': {'status': 'GDM', 'id': 'GD8'}, 'GSM1401799': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM1401798': {'tissue': 'Uninvolved Breast Tissue Adjacent to TNBC Primary Tumor'}, 'GSM2437180': {'status': 'NGT', 'id': 'GD3'}, 'GSM2437181': {'status': 'GDM', 'id': 'GD4'}, 'GSM1706719': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1706718': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1957296': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957297': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957290': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957291': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957292': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957293': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1706711': {'clone': 'None', 'passages': 'p38', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706710': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'None', 'passages': 'p38', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706713': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'None', 'passages': 'p21', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706712': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'None', 'passages': 'p21', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM2889459': {'state': 'control', 'type': 'iPSC-derived motor neuros'}, 'GSM2889458': {'state': 'control', 'type': 'iPSC-derived motor neuros'}, 'GSM1706717': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1706716': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'mRNA'}, 'GSM1956165': {'a': '55529', 'cd38': '278', 'cd49f': '195', 'w': '68461', 'h': '53156', 'lin': '400', 'cd34': '5873', 'cd90': '5488', 'cd7': '234', 'cd10': '514', 'time': '19083', 'cd135': '4042', 'cd45ra': '266'}, 'GSM1956164': {'a': '56378', 'cd38': '205', 'cd49f': '987', 'w': '65855', 'h': '56105', 'lin': '34', 'cd34': '8259', 'cd90': '1088', 'cd7': '-16', 'cd10': '1109', 'time': '18879', 'cd135': '892', 'cd45ra': '262'}, 'GSM1956167': {'a': '66380', 'cd38': '886', 'cd49f': '783', 'w': '68358', 'h': '63640', 'lin': '-115', 'cd34': '6631', 'cd90': '549', 'cd7': '236', 'cd10': '8296', 'time': '19499', 'cd135': '4352', 'cd45ra': '2639'}, 'GSM1956166': {'a': '49543', 'cd38': '471', 'cd49f': '351', 'w': '64572', 'h': '50282', 'lin': '54', 'cd34': '5580', 'cd90': '931', 'cd7': '241', 'cd10': '578', 'time': '19302', 'cd135': '1928', 'cd45ra': '250'}, 'GSM1956161': {'a': '42480', 'cd38': '-115', 'cd49f': '740', 'w': '66652', 'h': '41769', 'lin': '221', 'cd34': '6194', 'cd90': '-82', 'cd7': '326', 'cd10': '449', 'time': '18265', 'cd135': '1135', 'cd45ra': '228'}, 'GSM1956160': {'a': '56197', 'cd38': '-108', 'cd49f': '729', 'w': '69103', 'h': '53296', 'lin': '527', 'cd34': '6684', 'cd90': '744', 'cd7': '385', 'cd10': '696', 'time': '18040', 'cd135': '3782', 'cd45ra': '250'}, 'GSM1956163': {'a': '49123', 'cd38': '350', 'cd49f': '607', 'w': '67446', 'h': '47732', 'lin': '192', 'cd34': '7255', 'cd90': '622', 'cd7': '-92', 'cd10': '1207', 'time': '18676', 'cd135': '6988', 'cd45ra': '361'}, 'GSM1956162': {'a': '58324', 'cd38': '513', 'cd49f': '644', 'w': '65187', 'h': '58636', 'lin': '563', 'cd34': '7045', 'cd90': '863', 'cd7': '295', 'cd10': '936', 'time': '18465', 'cd135': '3291', 'cd45ra': '366'}, 'GSM1113323': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 0 (pre-vaccine)'}, 'GSM1956169': {'a': '59627', 'cd38': '265', 'cd49f': '320', 'w': '67384', 'h': '57992', 'lin': '-238', 'cd34': '11128', 'cd90': '833', 'cd7': '-33', 'cd10': '1143', 'time': '22264', 'cd135': '2704', 'cd45ra': '205'}, 'GSM1956168': {'a': '63712', 'cd38': '453', 'cd49f': '628', 'w': '67637', 'h': '61733', 'lin': '-10', 'cd34': '11056', 'cd90': '2504', 'cd7': '274', 'cd10': '908', 'time': '19691', 'cd135': '4475', 'cd45ra': '190'}, 'GSM2093096': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2308956': {'line': 'HeLa', 'variation': 'Wild-type'}, 'GSM2308957': {'line': 'HeLa', 'variation': 'Wild-type'}, 'GSM2308955': {'line': 'HeLa', 'variation': 'Wild-type'}, 'GSM2308958': {'line': 'HeLa', 'variation': 'ATF7IP KO'}, 'GSM2308959': {'line': 'HeLa', 'variation': 'ATF7IP KO'}, 'GSM2609184': {'wavelength': '4-SU / 365 nm', 'line': 'HK-2', 'antibody': 'Anti-pan Ago (Millipore 2A8, MABE56)'}, 'GSM2609181': {'wavelength': '4-SU / 365 nm', 'line': 'HK-2', 'antibody': 'anti-AGO2 (Cell Signaling C34C6, #2897)'}, 'GSM2609180': {'wavelength': '4-SU / 365 nm', 'line': 'HK-2', 'antibody': 'anti-AGO2 (Cell Signaling C34C6, #2897)'}, 'GSM2609183': {'wavelength': '4-SU / 365 nm', 'line': 'HK-2', 'antibody': 'anti-AGO2 (Cell Signaling C34C6, #2897)'}, 'GSM2609182': {'wavelength': '4-SU / 365 nm', 'line': 'HK-2', 'antibody': 'anti-AGO2 (Cell Signaling C34C6, #2897)'}, 'GSM2327728': {'type': 'Transformed B lymphoblastoid cells', 'genotype': 'NEK6 SE1 wild-type'}, 'GSM2327729': {'type': 'Transformed B lymphoblastoid cells', 'genotype': 'NEK6 SE1 wild-type'}, 'GSM1348550': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM2689084': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689085': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689086': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689087': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689080': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689081': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689082': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689083': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689088': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689089': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2044638': {'age': '0.2', 'race': 'AA', 'Sex': 'M'}, 'GSM2044639': {'age': '0.2', 'race': 'AA', 'Sex': 'M'}, 'GSM2044632': {'age': '33', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044633': {'age': '33', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044630': {'age': '24', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044631': {'age': '24', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044636': {'age': '23', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044637': {'age': '23', 'race': 'Cauc', 'Sex': 'M'}, 'GSM2044634': {'age': '36', 'race': 'HISP', 'Sex': 'M'}, 'GSM2044635': {'age': '36', 'race': 'HISP', 'Sex': 'M'}, 'GSM2419229': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '12 hours'}, 'GSM1595847': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with erlotinib + PBS-1086'}, 'GSM1595846': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with PBS-1086'}, 'GSM1595845': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with PBS-1086'}, 'GSM1595844': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with PBS-1086'}, 'GSM1595843': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with erlotinib'}, 'GSM1595842': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with erlotinib'}, 'GSM1595841': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with erlotinib'}, 'GSM1595840': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with DMSO'}, 'GSM1595849': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with erlotinib + PBS-1086'}, 'GSM1595848': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with erlotinib + PBS-1086'}, 'GSM984203': {'status': 'normal', 'tissue': 'breast', 'method': 'FFPE', 'stage': 'adult'}, 'GSM2295996': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM1631262': {'line': 'HEK293T', 'gene': 'dcas9', 'sites': 'IL1RN'}, 'GSM1631263': {'line': 'HEK293T', 'gene': 'dCas9-VP64', 'sites': 'IL1RN'}, 'GSM984207': {'status': 'normal', 'tissue': 'breast', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984206': {'status': 'normal', 'tissue': 'breast', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984205': {'status': 'normal', 'tissue': 'breast', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984204': {'status': 'normal', 'tissue': 'breast', 'method': 'FFPE', 'stage': 'adult'}, 'GSM1631268': {'line': 'HEK293T', 'gene': 'dCas9-p300 core', 'sites': 'IL1RN'}, 'GSM1631269': {'line': 'HEK293T', 'gene': 'dCas9-p300 D1399Y', 'sites': 'IL1RN'}, 'GSM984209': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'adult'}, 'GSM984208': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'adult'}, 'GSM2882973': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject7', 'drug': 'Placebo'}, 'GSM2882972': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject7', 'drug': 'Placebo'}, 'GSM2882971': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject6', 'drug': 'Placebo'}, 'GSM2882970': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject5', 'drug': 'Placebo'}, 'GSM2882977': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject10', 'drug': 'Placebo'}, 'GSM2882976': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject10', 'drug': 'Placebo'}, 'GSM2882975': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject9', 'drug': 'Placebo'}, 'GSM2882974': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject9', 'drug': 'Placebo'}, 'GSM2391947': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391946': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2882979': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject11', 'drug': 'Placebo'}, 'GSM2882978': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject11', 'drug': 'Placebo'}, 'GSM2391943': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391942': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391941': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391940': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1941671': {'status': 'Unaffected', 'age': '3.0 years', 'Sex': 'Male'}, 'GSM1941672': {'status': 'Affected', 'age': '5.4 years', 'Sex': 'Male'}, 'GSM1558068': {'gender': 'Male', 'age': '62', 'disease': 'normal'}, 'GSM1558069': {'gender': 'Male', 'age': '51', 'disease': 'normal'}, 'GSM1558066': {'gender': 'Female', 'age': '65', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558067': {'gender': 'Male', 'age': '71', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558064': {'gender': 'Male', 'age': '50', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558065': {'gender': 'Male', 'age': '76', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558062': {'gender': 'Male', 'age': '62', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558063': {'gender': 'Male', 'age': '72', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558060': {'gender': 'Male', 'age': '72', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM1558061': {'gender': 'Male', 'age': '74', 'disease': 'myelodysplastic syndrome (MDS)'}, 'GSM2048582': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2684106': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'BPK9'}, 'GSM2684107': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'BPK9'}, 'GSM2684104': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'BPK29'}, 'GSM2684105': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'BPK9'}, 'GSM2684102': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'BPK29'}, 'GSM2684103': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'BPK29'}, 'GSM2684100': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2684101': {'line': 'H460', 'type': 'NSCLC', 'treatment': 'DMSO'}, 'GSM2616694': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2784376': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '24h'}, 'GSM2784377': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '24h'}, 'GSM2784374': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '24h'}, 'GSM2784375': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '24h'}, 'GSM2784372': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '24h'}, 'GSM2784373': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '24h'}, 'GSM2784370': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '0h'}, 'GSM2784371': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '0h'}, 'GSM2390863': {'disease': 'Healthy Control'}, 'GSM2784378': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '24h'}, 'GSM2784379': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '24h'}, 'GSM2047758': {'well': 'D12', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047759': {'well': 'E01', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047754': {'well': 'D08', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047755': {'well': 'D09', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047756': {'well': 'D10', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047757': {'well': 'D11', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047750': {'well': 'D04', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047751': {'well': 'D05', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047752': {'well': 'D06', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047753': {'well': 'D07', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1223908': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'treatment': 'WTAP deficient'}, 'GSM1906568': {'line': 'HEK293T', 'type': 'ALKBH3 KO HEK293T', 'genotype': 'ALKBH3 Knockout', 'treatment': 'none', 'enrichment': 'none'}, 'GSM1906569': {'line': 'HEK293T', 'type': 'ALKBH3 KO HEK293T', 'genotype': 'ALKBH3 Knockout', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1906564': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1223903': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'treatment': 'normal'}, 'GSM1906566': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody followed by demethylase treatment'}, 'GSM1906567': {'line': 'HEK293T', 'type': 'ALKBH3 KO HEK293T', 'genotype': 'ALKBH3 Knockout', 'treatment': 'none', 'enrichment': 'none'}, 'GSM1223906': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'treatment': 'normal ES cells'}, 'GSM1223907': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'treatment': 'METTL3 deficient'}, 'GSM1223904': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'treatment': 'METTL3 deficient'}, 'GSM1223905': {'age': 'Embryo', 'line': '293T', 'tissue': 'Embryonic kidney', 'treatment': 'WTAP deficient'}, 'GSM2176269': {'line': 'MCF7', 'type': 'epithelial', 'treatment': 'ethanol 4 hours'}, 'GSM1704489': {'with': 'hypoxia (1% O2) for 1 week', 'line': 'PC9', 'type': 'non-small cell lung cancer cells'}, 'GSM2747359': {'line': 'NHDF Line 2', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM2747358': {'line': 'NHDF Line 2', 'type': 'Dermal fibroblasts isolated from healthy human skin biopsies', 'treatment': 'anti-PTP4A1 ASO'}, 'GSM1683278': {'type': 'U87 human glioma cells'}, 'GSM1683279': {'type': 'U87 human glioma cells'}, 'GSM1683276': {'type': 'U87 human glioma cells'}, 'GSM2048588': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM1683274': {'type': 'U87 human glioma cells'}, 'GSM1683275': {'type': 'U87 human glioma cells'}, 'GSM1683272': {'type': 'U87 human glioma cells'}, 'GSM1683273': {'type': 'U87 human glioma cells'}, 'GSM1683270': {'type': 'U87 human glioma cells'}, 'GSM1683271': {'type': 'U87 human glioma cells'}, 'GSM2451368': {'compartment': 'Epithelium', 'id': 'CUMC_062', 'library': 'NuGEN'}, 'GSM2451369': {'compartment': 'Stroma', 'id': 'CUMC_062', 'library': 'NuGEN'}, 'GSM2451362': {'compartment': 'Epithelium', 'id': 'CUMC_059', 'library': 'NuGEN'}, 'GSM2451363': {'compartment': 'Stroma', 'id': 'CUMC_059', 'library': 'NuGEN'}, 'GSM2451360': {'compartment': 'Epithelium', 'id': 'CUMC_058', 'library': 'NuGEN'}, 'GSM2451361': {'compartment': 'Stroma', 'id': 'CUMC_058', 'library': 'NuGEN'}, 'GSM2451366': {'compartment': 'Epithelium', 'id': 'CUMC_065', 'library': 'NuGEN'}, 'GSM2616693': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2451364': {'compartment': 'Epithelium', 'id': 'CUMC_060', 'library': 'NuGEN'}, 'GSM2362588': {'line': 'HEK293'}, 'GSM2883009': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject11', 'drug': 'Metformin'}, 'GSM1354556': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM genistein', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM2048589': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM1495282': {'line': 'tracheal basal cells', 'infection': 'infected with lenti-POU2AF1 virus'}, 'GSM1495280': {'line': 'tracheal basal cells', 'infection': 'infected with lenti-POU2AF1 virus'}, 'GSM1495281': {'line': 'tracheal basal cells', 'infection': 'infected with lenti-POU2AF1 virus'}, 'GSM1241139': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1354558': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM S-equol', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1241138': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2931398': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931399': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931396': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931397': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931394': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931395': {'age': 'WEEK13', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931392': {'age': 'WEEK13', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931393': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931390': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM2931391': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Female'}, 'GSM1614661': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614660': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614663': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614662': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614665': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614664': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614667': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614666': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614669': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614668': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM2561586': {'variation': 'healthy control'}, 'GSM2561587': {'variation': 'healthy control'}, 'GSM2561584': {'variation': 'MCT8-deficient'}, 'GSM2561585': {'variation': 'healthy control'}, 'GSM2561582': {'variation': 'MCT8-deficient'}, 'GSM2561583': {'variation': 'MCT8-deficient'}, 'GSM2561580': {'line': 'H929', 'type': 'Multiple myeloma'}, 'GSM2561581': {'line': 'H929', 'type': 'Multiple myeloma'}, 'GSM2561588': {'variation': 'healthy control'}, 'GSM2561589': {'variation': 'healthy control'}, 'GSM1241137': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2049176': {'overexpression': 'Arg', 'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM2049174': {'overexpression': 'Arg', 'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049175': {'overexpression': 'Arg', 'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM2049172': {'overexpression': 'control', 'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM2049173': {'overexpression': 'Arg', 'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM2049170': {'overexpression': 'control', 'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049171': {'overexpression': 'control', 'line': 'MDA-parental', 'rep': '1', 'fraction': 'TT'}, 'GSM2616585': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616584': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616587': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616586': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616581': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2616580': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616583': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616582': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2194537': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194536': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2288036': {'transfection': 'pCIneo', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2288034': {'transfection': 'pCIneo', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2288035': {'transfection': 'pCIneo', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2288032': {'transfection': 'Mouse Dux', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2288033': {'transfection': 'Mouse Dux', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2288030': {'transfection': 'Human DUX4', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2288031': {'transfection': 'Mouse Dux', 'type': 'immortalized human myoblasts: clone WS236 15Vbic (unaffected)'}, 'GSM2840548': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840549': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1557559': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM2533731': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2840540': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840541': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840542': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840543': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840544': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840545': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840546': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840547': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1835019': {'phase': 'G1 (2c)', 'status': 'Undifferentiated', 'line': 'd-pES12', 'type': 'Diploid pES12 cells', 'passage': '18'}, 'GSM1835018': {'phase': 'G1 (1c)', 'status': 'Undifferentiated', 'line': 'h-pES12', 'type': 'Haploid pES12 cells', 'passage': '22'}, 'GSM2170692': {'stage': 'Hepatic endoderm 2'}, 'GSM2170693': {'stage': 'Hepatic endoderm 2'}, 'GSM2170694': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170695': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170696': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170697': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1835011': {'phase': 'G1 (1c)', 'status': 'Undifferentiated', 'line': 'h-pES10', 'type': 'Haploid pES10 cells', 'passage': '15'}, 'GSM2170699': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1835013': {'phase': 'G1 (2c)', 'status': 'Undifferentiated', 'line': 'd-pES10', 'type': 'Diploid pES10 cells', 'passage': '13'}, 'GSM1835012': {'phase': 'G1 (1c)', 'status': 'Undifferentiated', 'line': 'h-pES10', 'type': 'Haploid pES10 cells', 'passage': '19'}, 'GSM1835015': {'phase': 'G2/M', 'status': 'Undifferentiated', 'line': 'h-pES10', 'type': 'Diploid pES10 cells', 'passage': '15'}, 'GSM1835014': {'phase': 'G1 (2c)', 'status': 'Undifferentiated', 'line': 'd-pES10', 'type': 'Diploid pES10 cells', 'passage': '17'}, 'GSM1835017': {'phase': 'G1 (1c)', 'status': 'Undifferentiated', 'line': 'h-pES12', 'type': 'Haploid pES12 cells', 'passage': '18'}, 'GSM1835016': {'phase': 'G2/M', 'status': 'Undifferentiated', 'line': 'd-pES10', 'type': 'Diploid pES10 cells', 'passage': '13'}, 'GSM1411130': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411131': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411132': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411133': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411134': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411135': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM1411136': {'tissue': 'Pterygia', 'race': 'Caucasian'}, 'GSM2225780': {'tissue': 'pancreas'}, 'GSM2664428': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664427': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664426': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664425': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664424': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664423': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664422': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664421': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2664420': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2225783': {'tissue': 'pancreas'}, 'GSM2293571': {'line': 'RPE1', 'ploidy': '4n', 'replicate': '1', 'drug': 'ZM447439'}, 'GSM2638029': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2225782': {'tissue': 'pancreas'}, 'GSM2197573': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197576': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197577': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197574': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197575': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197578': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197579': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2632424': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632425': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632426': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632427': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632420': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632421': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632422': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632423': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632428': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632429': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2293579': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '4n', 'RNAi': 'Random', 'sample_id': '13'}, 'GSM2638021': {'with': 'IL-12 and IL-15', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2652140': {'origin': 'endothelial cell', 'tissue': 'umbilical vein'}, 'GSM2193073': {'sirna': 'non-targeting siRNA control', 'line': 'OVSAHO', 'type': 'High grade serous ovarian carcinoma'}, 'GSM2193072': {'sirna': 'non-transfection control', 'line': 'OVSAHO', 'type': 'High grade serous ovarian carcinoma'}, 'GSM2420318': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2193071': {'sirna': 'PAX8 siRNA pool', 'line': 'FT246', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15403, s15404, s15405, Ambion'}, 'GSM2309840': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Lupus (SLE)', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '38.04'}, 'GSM2193076': {'sirna': 'PAX8 siRNA pool', 'line': 'OVSAHO', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15403, s15404, s15405, Ambion'}, 'GSM1561648': {'type': 'normal skin'}, 'GSM1561649': {'type': 'normal skin'}, 'GSM2665778': {'age': 'Day 175', 'well': 'E5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2193075': {'sirna': 'PAX8 siRNA 405', 'line': 'OVSAHO', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15405, Ambion'}, 'GSM1561642': {'type': 'Uninvolved skin'}, 'GSM1561643': {'type': 'Uninvolved skin'}, 'GSM1561640': {'type': 'Uninvolved skin'}, 'GSM1561641': {'type': 'psoriatic skin'}, 'GSM1561646': {'type': 'Uninvolved skin'}, 'GSM1561647': {'type': 'Uninvolved skin'}, 'GSM1561644': {'type': 'Uninvolved skin'}, 'GSM1561645': {'type': 'Uninvolved skin'}, 'GSM922214': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922215': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922216': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922217': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922210': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922211': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922212': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922213': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2186828': {'stimulation': 'interferon gamma', 'length': '6 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186829': {'stimulation': 'media alone', 'length': '24 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM922218': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922219': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2303342': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACJV399'}, 'GSM2303343': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303340': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303341': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303346': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM1279690': {'passages': 'unknown', 'crosslinking': 'not applied', 'treatment': 'p37, p40, p42, p45 overexpresion', 'protein': 'not applied', 'type': 'HEK293 Total RNA', 'line': 'HEK293'}, 'GSM2303344': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303345': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303348': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303349': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2143659': {'line': 'MV4;11', 'tissue': 'peripheral blood', 'type': 'macrophage'}, 'GSM1406303': {'type': 'Macrophages(BC17)'}, 'GSM2225789': {'tissue': 'pancreas'}, 'GSM1406302': {'type': 'Macrophages(BC17)'}, 'GSM2391000': {'disease': 'Pulmonary Hypertension'}, 'GSM2218701': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218703': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218702': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218705': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218704': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218707': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218706': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218709': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218708': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM1406306': {'type': 'Primary Monocytes(BC8)'}, 'GSM1287858': {'transfection': 'control', 'line': 'U251'}, 'GSM1287859': {'transfection': 'miR137', 'line': 'U251'}, 'GSM1406309': {'type': 'Macrophages(BC8)'}, 'GSM2527979': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM1406308': {'type': 'Primary Monocytes(BC8)'}, 'GSM2029377': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- (Null)'}, 'GSM2311860': {'culture': '12', 'line': 'DCX+'}, 'GSM2311861': {'culture': '12', 'line': 'DCX+'}, 'GSM2311862': {'culture': '12', 'line': 'DCX+'}, 'GSM2311863': {'culture': '12', 'line': 'DCX+'}, 'GSM2311864': {'culture': '12', 'line': 'DCX+'}, 'GSM2311865': {'culture': '12', 'line': 'DCX+'}, 'GSM2311866': {'culture': '12', 'line': 'DCX+'}, 'GSM2311867': {'culture': '12', 'line': 'DCX+'}, 'GSM2311868': {'culture': '12', 'line': 'DCX+'}, 'GSM2311869': {'culture': '12', 'line': 'DCX+'}, 'GSM2029373': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/+ (Het)'}, 'GSM2571045': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'IER5_enhancer_KO#1', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2253671': {'line': 'GES1', 'tissue': 'stomach', 'antibody': '5-mC (#33D3, Diagenode lot#GF-003)', 'variation': 'wild type'}, 'GSM1274119': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line', 'treatment': 'RON and MSP'}, 'GSM1274118': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line'}, 'GSM2653562': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653563': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653564': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653565': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653566': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653567': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653568': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653569': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2029379': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- +EZH2 (Null + EZH2)'}, 'GSM1274117': {'line': 'MCF-7', 'passages': '4-8', 'type': 'breast cancer cell line'}, 'GSM1098415': {'line': 'MDA-MB-231; Human breast carcinoma cell line', 'tissue': 'human metastatic pleural effusion', 'stage': 'Stage IV', 'passage': 'low passage (<15X)'}, 'GSM1338813': {'type': 'M2-polarized IPSDM'}, 'GSM1338812': {'type': 'M2-polarized IPSDM'}, 'GSM1338811': {'type': 'M1-polarized IPSDM'}, 'GSM1338810': {'type': 'M1-polarized IPSDM'}, 'GSM1338815': {'type': 'M2-polarized IPSDM'}, 'GSM1338814': {'type': 'M2-polarized IPSDM'}, 'GSM2671000': {'line': 'HCT116', 'antibody': 'rabbit anti H3 Cter (Zhang et al EMBO J, 24: 2379, 2005)', 'genotype': 'Cdk7as mutant'}, 'GSM2101128': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101129': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101126': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101127': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2101125': {'line': 'MD901', 'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2287652': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1216763': {'gender': 'Female', 'age': '45', 'bmi': '29.4', 'hba1c': '6.9', 'tissue': 'pancreatic islets', 'birth': '1964'}, 'GSM2309555': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2309554': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM1197609': {'line': 'HeLa', 'treatment': 'over-express N-terminal flag-tagged YTHDF2 for 24h (0.75ug plasmid/mL)'}, 'GSM1197608': {'line': 'HeLa', 'treatment': 'over-express N-terminal flag-tagged YTHDF2 for 24h (0.75ug plasmid/mL)'}, 'GSM2309551': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2309550': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2309553': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2309552': {'source': 'biopsy', 'identifier': 'B', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM1197607': {'line': 'HeLa', 'treatment': 'over-express N-terminal flag-tagged YTHDF2 for 24h (0.75ug plasmid/mL)'}, 'GSM1197606': {'line': 'HeLa', 'treatment': 'over-express N-terminal flag-tagged YTHDF2 for 24h (0.75ug plasmid/mL)'}, 'GSM1197605': {'line': 'HeLa', 'treatment': 'over-express N-terminal flag-tagged YTHDF2 for 24h (0.75ug plasmid/mL)'}, 'GSM2153464': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153465': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153466': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153467': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153460': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153461': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153462': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153463': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153468': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153469': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2392168': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392169': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392160': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392161': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392162': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392163': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392164': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392165': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392166': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392167': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1537289': {'gender': 'Female', 'line': 'WI38', 'type': 'Normal Cells', 'antibody': 'Millipore; ab07449'}, 'GSM1537288': {'gender': 'Female', 'line': 'HMEC', 'type': 'Normal Cells', 'antibody': 'Millipore; ab07449'}, 'GSM1537285': {'gender': 'Female', 'line': 'SKBR3', 'type': 'HER2+', 'antibody': 'Abcam; ab8580'}, 'GSM1537284': {'gender': 'Female', 'line': 'WI38', 'type': 'Normal Cells', 'antibody': 'Abcam; ab8580'}, 'GSM1537287': {'gender': 'Female', 'line': 'ZR751', 'type': 'Luminal', 'antibody': 'Abcam; ab8580'}, 'GSM1537286': {'gender': 'Female', 'line': 'MDAMB436', 'type': 'Basal-Like Carcinoma', 'antibody': 'Abcam; ab8580'}, 'GSM1537283': {'gender': 'Female', 'line': 'HMEC', 'type': 'Normal Cells', 'antibody': 'Abcam; ab8580'}, 'GSM1620455': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620454': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620457': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620456': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620451': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620450': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2424931': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620452': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620459': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620458': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2424939': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424938': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2350098': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350099': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350096': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350097': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350094': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350095': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350092': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350093': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350090': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350091': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2477627': {'agent': 'H3B-8800', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 WT'}, 'GSM2477626': {'agent': 'H3B-8800', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 WT'}, 'GSM2477625': {'agent': 'H3B-8800', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 WT'}, 'GSM2477624': {'agent': 'control', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 WT'}, 'GSM2477623': {'agent': 'control', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 WT'}, 'GSM2477622': {'agent': 'control', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 WT'}, 'GSM2477629': {'agent': 'control', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 K700E'}, 'GSM2477628': {'agent': 'control', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 K700E'}, 'GSM2840625': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840624': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840627': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840626': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840621': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840620': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840623': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840622': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2390149': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 1', 'treatment': 'normoxia', 'fraction': 'total RNA'}, 'GSM2150344': {'treatment': 'DACSB'}, 'GSM2150345': {'treatment': 'DAC'}, 'GSM2150346': {'antibody': 'H3K27ac', 'treatment': 'DAC'}, 'GSM2150347': {'antibody': 'H3K27me3', 'treatment': 'DAC'}, 'GSM2150340': {'treatment': 'DAC'}, 'GSM2150341': {'treatment': 'DMSO'}, 'GSM2150342': {'treatment': 'SB939'}, 'GSM2150343': {'treatment': 'SAHA'}, 'GSM2150348': {'antibody': 'H3K36me3', 'treatment': 'DAC'}, 'GSM2150349': {'antibody': 'H3K4me1', 'treatment': 'DAC'}, 'GSM2877833': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2643292': {'gender': 'male', 'line': 'LNCaP-shAR/pATK human prostate tumor cell line', 'type': 'prostate cancer', 'media': 'pheno-red free RPMI-1640 + 5% CSS (Charcoal Dextran stripped FBS) (Gemini) + 1% PenStrep + 1nM R1881'}, 'GSM1253390': {'cluster': 'SC', 'as': 'Brx66_2_SC1_012913', 'patient': 'Patient#7'}, 'GSM2643291': {'gender': 'male', 'line': 'LNCaP-shAR/pATK human prostate tumor cell line', 'type': 'prostate cancer', 'media': 'pheno-red free RPMI-1640 + 5% CSS (Charcoal Dextran stripped FBS) (Gemini) + 1% PenStrep + 1nM R1881'}, 'GSM1872945': {'10': 'Non-remitter', 'name': 'HF-35117', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1523197': {'line': 'MCF7', 'treatment': 'cells were transfected with siNCAPD3, after 1hr treatment with ethanol'}, 'GSM1957153': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957152': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957151': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957150': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957157': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957156': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM3594228': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594229': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594226': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594227': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594224': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594225': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594222': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594223': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM979633': {'description': 'Single 50 nt reads', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'CThi10106', 'readtype': '1x50', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '3', 'biorep': '087N'}, 'GSM2333488': {'line': 'U87MG', 'type': 'malignant glioblastoma cell line', 'population': 'highly invasive'}, 'GSM1626471': {'tissue': 'placental villus parenchyma'}, 'GSM1626470': {'tissue': 'placental villus parenchyma'}, 'GSM1626473': {'tissue': 'placental villus parenchyma'}, 'GSM1626472': {'tissue': 'placental villus parenchyma'}, 'GSM1626475': {'tissue': 'placental villus parenchyma'}, 'GSM1626474': {'tissue': 'placental villus parenchyma'}, 'GSM1626477': {'tissue': 'placental villus parenchyma'}, 'GSM1626476': {'tissue': 'placental villus parenchyma'}, 'GSM1626479': {'tissue': 'placental villus parenchyma'}, 'GSM1626478': {'tissue': 'placental villus parenchyma'}, 'GSM2356676': {'type': 'Head and neck squamous cell carcinoma', 'treatment': 'siNC (siRNA negative control)'}, 'GSM2356677': {'type': 'Head and neck squamous cell carcinoma', 'treatment': 'siNC (siRNA negative control)'}, 'GSM2356673': {'type': 'Head and neck squamous cell carcinoma', 'treatment': 'siKLF5 (siRNA silencing KLF5)'}, 'GSM2362518': {'line': 'HEK293'}, 'GSM2362519': {'line': 'HEK293'}, 'GSM1649214': {'tissue': 'beta cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1649212': {'tissue': 'beta cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1649213': {'tissue': 'beta cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1649210': {'tissue': 'beta cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1649211': {'tissue': 'beta cells', 'stage': 'fetal (12-18 gestational weeks)'}, 'GSM1709589': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1418976': {'line': 'IMR90', 'passages': '30-35', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1418975': {'line': 'IMR90', 'passages': '30-35', 'treatment': 'DMSO (6hrs)'}, 'GSM1418974': {'line': 'IMR90', 'passages': '30-35', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1418973': {'line': 'IMR90', 'passages': '30-35', 'treatment': 'DMSO (6hrs)'}, 'GSM1418972': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'none', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1418971': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'none', 'treatment': 'DMSO (6hrs)'}, 'GSM1418970': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'p53 (EMD Millipore (DO1))', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1709581': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709580': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709583': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709582': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709585': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709584': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709587': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709586': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1701354': {'status': 'healthy', 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701350': {'status': \"Crohn's disease\", 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'unstimulated'}, 'GSM1701351': {'status': 'healthy', 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701352': {'status': 'healthy', 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'stimulated with muramyl dipeptide (MDP)'}, 'GSM1701353': {'status': 'healthy', 'type': 'monocytes', 'genotype': 'WT NOD2 + WT ATG16L1', 'treatment': 'unstimulated'}, '0': {'code': '200'}, 'GSM2840197': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1401332': {'rin': '3', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-12-11'}, 'GSM2840195': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM485469': {'line': 'NA18871'}, 'GSM2840194': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM3189059': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '17', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.61473', 'percentaligned': '0.872513', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.378908', 'original': 'Case'}, 'GSM3189058': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.683101', 'percentaligned': '0.944469', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.5369'}, 'GSM485463': {'line': 'NA19160'}, 'GSM2840193': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM3189055': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A66', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.675918', 'percentaligned': '0.955959', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.759848'}, 'GSM3189054': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.910858', 'percentaligned': '0.911412', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.428231'}, 'GSM3189053': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B69', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'Yes', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.598219', 'percentaligned': '0.951513', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.653032'}, 'GSM485466': {'line': 'NA18516'}, 'GSM485465': {'line': 'NA19114'}, 'GSM1946198': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19153', 'for': '30min'}, 'GSM2093094': {'bin': '30', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2840190': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1401339': {'rin': '7.29', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-02-19'}, 'GSM1401338': {'rin': '7.59', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-02-12'}, 'GSM945006': {'aso': 'scrambled', 'line': 'PA-1', 'ploidy': 'diploid', 'type': 'embryonal carcinoma (EC) cells'}, 'GSM945007': {'aso': 'specific to PWS-associated sno-lncRNAs', 'line': 'PA-1', 'ploidy': 'diploid', 'type': 'embryonal carcinoma (EC) cells'}, 'GSM2689314': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2840199': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840198': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1980139': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980138': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2390937': {'disease': 'Healthy Control'}, 'GSM2390936': {'disease': 'Healthy Control'}, 'GSM2390931': {'disease': 'Healthy Control'}, 'GSM2390930': {'disease': 'Healthy Control'}, 'GSM2390933': {'disease': 'Healthy Control'}, 'GSM2304373': {'line': 'HeLa', 'treatment': '2hr recovery after 3hr ethanol treatment'}, 'GSM2573772': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573773': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573770': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573771': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573776': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573777': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573774': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1980136': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2304375': {'line': 'HeLa', 'treatment': '3hr recovery after 3hr ethanol treatment'}, 'GSM2689163': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689162': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689161': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689160': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689167': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689166': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689165': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689164': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689169': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2857622': {'line': 'HCT116', 'shRNA': 'lncLAST'}, 'GSM1261108': {'state': 'Normal control', 'barcode': 'ATGACAG', 'type': 'iPSC derived motor neuron culture'}, 'GSM1261109': {'state': 'ALS', 'barcode': 'CACCTCC', 'type': 'iPSC derived motor neuron culture'}, 'GSM2135457': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'B', 'treatment': 'CNT', 'target': 'Not applicable'}, 'GSM2135456': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'A', 'treatment': 'CNT', 'target': 'Not applicable'}, 'GSM2135459': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'B', 'treatment': 'IL10', 'target': 'Not applicable'}, 'GSM1261105': {'state': 'Normal control', 'barcode': 'TGAGGTT', 'type': 'iPSC derived motor neuron culture'}, 'GSM1261106': {'state': 'Normal control', 'barcode': 'AGACTGA', 'type': 'iPSC derived motor neuron culture'}, 'GSM1261107': {'state': 'Normal control', 'barcode': 'GCTTAGA', 'type': 'iPSC derived motor neuron culture'}, 'GSM4008593': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008592': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM1386603': {'line': 'SKMES1', 'tissue': 'Lung', 'type': 'Squamous (NLSCLC)'}, 'GSM1386602': {'line': 'H596', 'tissue': 'Lung', 'type': 'Squamous (NLSCLC)'}, 'GSM1386601': {'line': 'H226', 'tissue': 'Lung', 'type': 'Squamous (NLSCLC)'}, 'GSM1386600': {'line': 'H157', 'tissue': 'Lung', 'type': 'Squamous (NLSCLC)'}, 'GSM2328312': {'followup': '11.96', 'grade': 'II', 'age': '63', 'Sex': 'Male', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328313': {'followup': '11.96', 'grade': 'II', 'age': '63', 'Sex': 'Male', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328310': {'followup': '3.28', 'grade': 'III', 'age': '57', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328311': {'followup': '3.28', 'grade': 'III', 'age': '57', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328316': {'followup': '8.24', 'grade': 'II', 'age': '61', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'BAC', 'Stage': 'IA'}, 'GSM2328317': {'followup': '8.24', 'grade': 'II', 'age': '61', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328314': {'followup': '5.68', 'grade': 'II', 'age': '89', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IA'}, 'GSM2328315': {'followup': '5.68', 'grade': 'II', 'age': '89', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2645794': {'line': 'A375', 'type': 'human metastatic melanoma cell line', 'treatment': '6-thio-dG'}, 'GSM2645795': {'line': 'A375', 'type': 'human metastatic melanoma cell line', 'treatment': 'BIBR1532'}, 'GSM2328318': {'followup': '6.75', 'grade': 'II', 'age': '68', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328319': {'followup': '6.75', 'grade': 'II', 'age': '68', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2645791': {'line': 'A375', 'type': 'human metastatic melanoma cell line', 'treatment': 'control'}, 'GSM2645792': {'line': 'A375', 'type': 'human metastatic melanoma cell line', 'treatment': 'control'}, 'GSM2645793': {'line': 'A375', 'type': 'human metastatic melanoma cell line', 'treatment': '6-thio-dG'}, 'GSM1602998': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602999': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602994': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602995': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602996': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602997': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602990': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602991': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602992': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602993': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM2361496': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361497': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361495': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2739488': {'differentiation': 'GM-CSF', 'donor': 'Donor 2'}, 'GSM2361498': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361499': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2739489': {'differentiation': 'M. obuense', 'donor': 'Donor 2'}, 'GSM1897349': {'line': 'SW527', 'type': 'breast cancer cell line'}, 'GSM1897348': {'line': 'SUM52', 'type': 'breast cancer cell line'}, 'GSM1897345': {'line': 'SUM225', 'type': 'breast cancer cell line'}, 'GSM1897344': {'line': 'SUM190', 'type': 'breast cancer cell line'}, 'GSM1897347': {'line': 'SUM44', 'type': 'breast cancer cell line'}, 'GSM2995465': {'gender': 'Female', 'type': 'iPSC'}, 'GSM1897341': {'line': 'SUM149', 'type': 'breast cancer cell line'}, 'GSM1897340': {'line': 'SUM1315', 'type': 'breast cancer cell line'}, 'GSM1897343': {'line': 'SUM185', 'type': 'breast cancer cell line'}, 'GSM1897342': {'line': 'SUM159', 'type': 'breast cancer cell line'}, 'GSM1519403': {'line': '8988T', 'type': 'pancreatic ductal adenocarcinoma', 'treatment': 'siTFE3_2'}, 'GSM1519402': {'line': '8988T', 'type': 'pancreatic ductal adenocarcinoma', 'treatment': 'siTFE3_2'}, 'GSM1519401': {'line': '8988T', 'type': 'pancreatic ductal adenocarcinoma', 'treatment': 'siTFE3_1'}, 'GSM1519400': {'line': '8988T', 'type': 'pancreatic ductal adenocarcinoma', 'treatment': 'siTFE3_1'}, 'GSM2739486': {'differentiation': 'M. obuense', 'donor': 'Donor 1'}, 'GSM2739487': {'differentiation': 'M-CSF', 'donor': 'Donor 2'}, 'GSM2243668': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243669': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243666': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243667': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243664': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243665': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243662': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243663': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243660': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243661': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1652553': {'type': 'tumor tissue isolated from Nude mice', 'genotype': 'Li-Fraumeni Syndrome patient'}, 'GSM1652552': {'type': 'tumor tissue isolated from Nude mice', 'genotype': 'Li-Fraumeni Syndrome patient'}, 'GSM1858951': {'line': 'LChIT clone 3.2', 'treatment': 'TNF', 'sgrna': 'Control'}, 'GSM1858950': {'line': 'LChIT clone 3.2', 'treatment': 'TNF', 'sgrna': 'Control'}, 'GSM2456042': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456043': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1638209': {'age': '62', 'tissue': 'Prostate', 'type': 'basal epithelial cells', 'number': 'HPCa173N'}, 'GSM2456040': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1848785': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 20', 'point': 'immediately after exercise'}, 'GSM1848784': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 16', 'point': 'pre exercise'}, 'GSM1848787': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 20', 'point': 'pre exercise'}, 'GSM1848786': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 20', 'point': '3 hours after exercise'}, 'GSM1848781': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 13', 'point': 'pre exercise'}, 'GSM1848780': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 13', 'point': '3 hours after exercise'}, 'GSM1848783': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 16', 'point': '3 hours after exercise'}, 'GSM1848782': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 16', 'point': 'immediately after exercise'}, 'GSM2235689': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'rabbit antiserum against AR', 'treatment': '10nM R1881', 'time': '4h'}, 'GSM2235688': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'rabbit antiserum against AR', 'treatment': '10nM R1881', 'time': '4h'}, 'GSM1848789': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 3', 'point': '3 hours after exercise'}, 'GSM1848788': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 3', 'point': 'immediately after exercise'}, 'GSM2456047': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1937847': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM2047397': {'well': 'G03', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2456044': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1937846': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM2047390': {'well': 'F08', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM3025238': {'line': 'MCF7', 'treatment': 'PBDE47', 'batch': 'batch2'}, 'GSM2456045': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1937845': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM2047391': {'well': 'F09', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2455923': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1267846': {'subtype': 'Cytoplasmic Poly(A) RNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM2047392': {'well': 'F10', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1937843': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM2047393': {'well': 'F11', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2456048': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1980079': {'status': 'primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM2456049': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1937841': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1937840': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM2040773': {'line': 'GM06990', 'type': 'lymphoblastoid cell', 'age': '41', 'genotype': 'wild type'}, 'GSM2040772': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM2040771': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040770': {'line': 'ID00016', 'type': 'lymphoblastoid cell', 'age': '11', 'genotype': '22q11del'}, 'GSM2040777': {'line': 'ID00016', 'type': 'lymphoblastoid cell', 'age': '11', 'genotype': '22q11del'}, 'GSM2040776': {'line': 'ID00015', 'type': 'lymphoblastoid cell', 'age': '57', 'genotype': 'wild type'}, 'GSM2040775': {'line': 'ID00015', 'type': 'lymphoblastoid cell', 'age': '57', 'genotype': 'wild type'}, 'GSM2040774': {'line': 'ID00014', 'type': 'lymphoblastoid cell', 'age': '34', 'genotype': '22q11del'}, 'GSM2705559': {'replicate': '2', 'treatment': 'DMSO'}, 'GSM2705558': {'replicate': '1', 'treatment': 'RFP14'}, 'GSM1162997': {'patient': 'Disease_K2', 'gender': 'M', 'age': '52', 'tissue': 'Nonlesion', 'treatment': 'Antagonist', 'id': '8'}, 'GSM1162996': {'patient': 'Disease_K2', 'gender': 'M', 'age': '52', 'tissue': 'Nonlesion', 'treatment': 'Agonist', 'id': '7'}, 'GSM1162995': {'patient': 'Disease_K2', 'gender': 'M', 'age': '52', 'tissue': 'Nonlesion', 'treatment': 'Culture/DMSO', 'id': '6'}, 'GSM1162994': {'patient': 'Disease_K2', 'gender': 'M', 'age': '52', 'tissue': 'Nonlesion', 'treatment': 'Untreated', 'id': '5'}, 'GSM1162993': {'patient': 'Disease_K2', 'gender': 'M', 'age': '52', 'tissue': 'Lesion', 'treatment': 'Antagonist', 'id': '4'}, 'GSM1162992': {'patient': 'Disease_K2', 'gender': 'M', 'age': '52', 'tissue': 'Lesion', 'treatment': 'Agonist', 'id': '3'}, 'GSM1162991': {'patient': 'Disease_K2', 'gender': 'M', 'age': '52', 'tissue': 'Lesion', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1162990': {'patient': 'Disease_K2', 'gender': 'M', 'age': '52', 'tissue': 'Lesion', 'treatment': 'Untreated', 'id': '1'}, 'GSM1162999': {'patient': 'Disease_K3', 'gender': 'F', 'age': '63', 'tissue': 'Lesion', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1162998': {'patient': 'Disease_K3', 'gender': 'F', 'age': '63', 'tissue': 'Lesion', 'treatment': 'Untreated', 'id': '1'}, 'GSM1267844': {'subtype': 'Stau2 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau2-WT (65KDa Isoform)'}, 'GSM3580276': {'phase': 'HBeAg- Hepatitis', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580277': {'phase': 'HBeAg- Hepatitis', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580278': {'phase': 'HBeAg- Hepatitis', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580279': {'phase': 'HBeAg- Hepatitis', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM2348354': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348355': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348356': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348357': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348350': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348351': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348352': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348353': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348358': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348359': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2720340': {'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2262858': {'protocol': 'LPS and 1 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262859': {'protocol': 'LPS and 5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2635269': {'line': 'K562'}, 'GSM2635268': {'line': 'K562'}, 'GSM2262850': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262851': {'protocol': 'IBET151 exposed, collected at 1 hour post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262852': {'protocol': 'BG exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262853': {'protocol': 'BG and 1 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2635263': {'line': 'K562'}, 'GSM2635262': {'line': 'K562'}, 'GSM2262856': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2635260': {'line': 'K562'}, 'GSM1657075': {'knockdown': 'Scrambled', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM1657077': {'knockdown': 'Scrambled', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM1657076': {'knockdown': 'Scrambled', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM1657079': {'knockdown': 'PANCR', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM1657078': {'knockdown': 'PANCR', 'type': 'ES-derived cardiomyocytes', 'subtype': 'poly-A mRNA'}, 'GSM2112331': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'hip', 'type': 'Fibroblast-like synoviocytes'}, 'GSM2112330': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'hip', 'type': 'Fibroblast-like synoviocytes'}, 'GSM1898020': {'phase': 'G1 phase', 'subtype': 'ribosome-protected fragments (Ribo-seq)', 'type': 'HeLa S3 cells'}, 'GSM2720344': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM1945838': {'line': 'MV4-11'}, 'GSM2290625': {'type': 'Hepatic Specification'}, 'GSM3190855': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.535711'}, 'GSM3190854': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.787167'}, 'GSM3190857': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.147403'}, 'GSM3190856': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1.1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.742531'}, 'GSM3190851': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.8', 'mpv': 'Yes', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.848846'}, 'GSM3190850': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.9', 'mpv': 'Yes', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.449989'}, 'GSM3190853': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.407992'}, 'GSM3190852': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.437858'}, 'GSM3190859': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A75', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.580783'}, 'GSM3190858': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A75', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.146018'}, 'GSM2299836': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299837': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2632583': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632582': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM913894': {'tissue': 'Parathyroid tumor', 'patient': '4', 'agent': 'OHT', 'time': '24h'}, 'GSM913895': {'tissue': 'Parathyroid tumor', 'patient': '4', 'agent': 'OHT', 'time': '48h'}, 'GSM913892': {'tissue': 'Parathyroid tumor', 'patient': '4', 'agent': 'DPN', 'time': '24h'}, 'GSM913893': {'tissue': 'Parathyroid tumor', 'patient': '4', 'agent': 'DPN', 'time': '48h'}, 'GSM913890': {'tissue': 'Parathyroid tumor', 'patient': '3', 'agent': 'OHT', 'time': '48h'}, 'GSM2632584': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142400': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142401': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142402': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142403': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142404': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142405': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142406': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142407': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2361948': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2815919': {'line': 'H9'}, 'GSM2815918': {'line': 'H9'}, 'GSM2361949': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2815915': {'line': 'H9'}, 'GSM2815914': {'line': 'H9'}, 'GSM2815917': {'line': 'H9'}, 'GSM2815916': {'line': 'H9'}, 'GSM2815911': {'line': 'H9'}, 'GSM2815910': {'line': 'H9'}, 'GSM2815913': {'line': 'H9'}, 'GSM2815912': {'line': 'H9'}, 'GSM2047586': {'well': 'F10', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047581': {'well': 'F05', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047580': {'well': 'F04', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047583': {'well': 'F07', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047582': {'well': 'F06', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2720348': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2050828': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050829': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050827': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2047588': {'well': 'F12', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2501575': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2324268': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood'}, 'GSM2791578': {'line': 'MDA-MB-231', 'barcode': 'U776', 'replicate': 'Biological replicate 1', 'treatment': 'Normoxia+PP242', 'fraction': 'Total mRNA'}, 'GSM2791579': {'line': 'MDA-MB-231', 'barcode': 'U777', 'replicate': 'Biological replicate 1', 'treatment': 'Hypoxia+PP242', 'fraction': 'Total mRNA'}, 'GSM2791576': {'line': 'MDA-MB-231', 'barcode': 'U774', 'replicate': 'Biological replicate 1', 'treatment': 'Normoxia', 'fraction': 'Total mRNA'}, 'GSM2791577': {'line': 'MDA-MB-231', 'barcode': 'U775', 'replicate': 'Biological replicate 1', 'treatment': 'Hypoxia', 'fraction': 'Total mRNA'}, 'GSM2791574': {'line': 'MCF10A', 'barcode': 'O111', 'replicate': 'Biological replicate 2', 'treatment': 'Normoxia+PP242', 'fraction': 'Polysomal mRNA'}, 'GSM2791575': {'line': 'MCF10A', 'barcode': 'O112', 'replicate': 'Biological replicate 2', 'treatment': 'Hypoxia+PP242', 'fraction': 'Polysomal mRNA'}, 'GSM2791572': {'line': 'MCF10A', 'barcode': 'O109', 'replicate': 'Biological replicate 2', 'treatment': 'Normoxia', 'fraction': 'Polysomal mRNA'}, 'GSM2791573': {'line': 'MCF10A', 'barcode': 'O110', 'replicate': 'Biological replicate 2', 'treatment': 'Hypoxia', 'fraction': 'Polysomal mRNA'}, 'GSM2791570': {'line': 'MCF10A', 'barcode': 'O107', 'replicate': 'Biological replicate 2', 'treatment': 'Normoxia+PP242', 'fraction': 'Total mRNA'}, 'GSM2791571': {'line': 'MCF10A', 'barcode': 'O108', 'replicate': 'Biological replicate 2', 'treatment': 'Hypoxia+PP242', 'fraction': 'Total mRNA'}, 'GSM1617975': {'replicates': '1', 'sorting': 'CD44high/CD24low', 'treatment': 'Dox', 'construct': 'pInducer21-HA-MYC'}, 'GSM2458870': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '4.58'}, 'GSM2257959': {'line': 'A549', 'type': 'lung cancer cell line'}, 'GSM2212035': {'line': 'Kasumi-1 cells', 'treatment': '125 nM MS417, 1 hr'}, 'GSM2212034': {'line': 'Kasumi-1 cells', 'treatment': '250 nM JQ1, 1 hr'}, 'GSM2212037': {'line': 'Kasumi-1 cells', 'treatment': '250 nM JQ1, 3 hr'}, 'GSM2212036': {'line': 'Kasumi-1 cells', 'treatment': 'DMSO, 3 hr'}, 'GSM2212033': {'line': 'Kasumi-1 cells', 'treatment': 'DMSO, 1 hr'}, 'GSM2264841': {'line': 'C15', 'type': 'hiPSC-derived cells'}, 'GSM2264840': {'line': 'C15', 'type': 'hiPSC-derived cells'}, 'GSM2264843': {'line': 'C20', 'type': 'hiPS cell'}, 'GSM2264842': {'line': 'C20', 'type': 'hiPS cell'}, 'GSM2264845': {'line': 'C20', 'type': 'hiPSC-derived cells'}, 'GSM2264844': {'line': 'C20', 'type': 'hiPSC-derived cells'}, 'GSM2264847': {'line': 'C20', 'type': 'hiPSC-derived cells'}, 'GSM2264846': {'line': 'C20', 'type': 'hiPSC-derived cells'}, 'GSM2533794': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533795': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533796': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533797': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533790': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533791': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533792': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2084556': {'line': 'H1299', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2473520': {'library_name': 'Drug A Replicate1', 'age': '36', 'Sex': 'Female', 'tissue': 'Cell Line HL-60', 'treatment': \"5-aza-2'-deoxycytidine (decitabine, 5-AZA-CdR)\", 'type': 'acute promyelocytic leukemia'}, 'GSM2533799': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2473522': {'library_name': 'Control Replicate1', 'age': '36', 'Sex': 'Female', 'tissue': 'Cell Line HL-60', 'treatment': 'None', 'type': 'acute promyelocytic leukemia'}, 'GSM2562518': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562519': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562510': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562511': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562512': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562513': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562514': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562515': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562516': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562517': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2581294': {'race': 'African American', 'patient': '0006-YO', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Female', 'source': 'U Miami Brain Endowment Bank', 'experiment': '20170314B', 'histology': 'Not specified', 'age': '49 years'}, 'GSM2581295': {'race': 'African American', 'patient': '0007-OX', 'area': 'BA10', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'U Miami Brain Endowment Bank', 'experiment': '20170315A', 'histology': 'Not specified', 'age': '48 years'}, 'GSM2581296': {'race': 'African American', 'patient': '0007-OX', 'area': 'BA10', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'U Miami Brain Endowment Bank', 'experiment': '20170315A', 'histology': 'Not specified', 'age': '48 years'}, 'GSM2581297': {'race': 'African American', 'patient': '0007-OX', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'U Miami Brain Endowment Bank', 'experiment': '20170315B', 'histology': 'Not specified', 'age': '48 years'}, 'GSM2581290': {'race': 'African American', 'patient': '5342', 'area': 'BA6', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170310B', 'histology': 'Coronal sample, Section 11', 'age': '23 years'}, 'GSM2044448': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2581292': {'race': 'African American', 'patient': '0006-YO', 'area': 'BA10', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Female', 'source': 'U Miami Brain Endowment Bank', 'experiment': '20170314A', 'histology': 'Not specified', 'age': '49 years'}, 'GSM2581293': {'race': 'African American', 'patient': '0006-YO', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Female', 'source': 'U Miami Brain Endowment Bank', 'experiment': '20170314B', 'histology': 'Not specified', 'age': '49 years'}, 'GSM2044445': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044444': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044447': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044446': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044441': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM1239125': {'status': '+ / + / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB277', 'size': '3cm'}, 'GSM2044443': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044442': {'state': 'diabetic', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2543708': {'library_id': 'lib5844', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543709': {'library_id': 'lib5845', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1556296': {'line': 'CRL-4003', 'type': 'endometrial stromal fibroblast (ATCC: CRL-4003) grown in culture'}, 'GSM1946105': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19102', 'for': '60min'}, 'GSM2543700': {'library_id': 'lib5831', 'stim': 'NS', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1239123': {'status': '+ / + / -', 'grade': '2', 'subtype': 'rRNA depleted RNA', 'id': 'BRB215', 'size': '3.5cm'}, 'GSM2543702': {'library_id': 'lib5833', 'stim': 'DM', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543703': {'library_id': 'lib5839', 'stim': 'CR', 'group': 'Case', 'classification': 'Not Included', 'level': '7.149', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543704': {'library_id': 'lib5840', 'stim': 'TT', 'group': 'Case', 'classification': 'Not Included', 'level': '7.149', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1686545': {'index': 'AML29', 'tissue': 'blood', 'type': 'Leukemic blasts', 'disease': 'AML', 'subtype': 'M1'}, 'GSM2543706': {'library_id': 'lib5842', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1239122': {'status': '- / - / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB212', 'size': '2cm'}, 'GSM2159798': {'line': 'LCC9', 'transfection': 'Pre-miR-29b-1'}, 'GSM1239121': {'status': '+ / + / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB157', 'size': '1.3cm'}, 'GSM1833435': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': 'Unactivated'}, 'GSM1239120': {'status': '+ / - / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB147', 'size': '3cm'}, 'GSM1833434': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': 'Unactivated'}, 'GSM1480811': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM1686541': {'index': 'AML2', 'tissue': 'blood', 'type': 'Leukemic blasts', 'disease': 'AML', 'subtype': 'M1'}, 'GSM1480810': {'type': 'PBMCs', 'treatment': 'sham'}, 'GSM2084558': {'line': 'H1299', 'type': 'non-small-cell lung cancer cell line'}, 'GSM1480813': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM1281762': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '22', 'gender': 'Male', 'age': '52', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '91'}, 'GSM1281763': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '22', 'gender': 'Male', 'age': '52', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '91'}, 'GSM1281760': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '22', 'gender': 'Male', 'age': '52', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '91'}, 'GSM1281761': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '22', 'gender': 'Male', 'age': '52', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '91'}, 'GSM1281766': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '17', 'gender': 'Male', 'age': '46', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2004', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281767': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '62', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '1996', 'race': 'African American', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281764': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '22', 'gender': 'Male', 'age': '52', 'tissue': 'Serum', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '91'}, 'GSM1281765': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '22', 'gender': 'Male', 'age': '52', 'tissue': 'Serum', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '91'}, 'GSM1480815': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM1281768': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '15', 'gender': 'Male', 'age': '48', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2007', 'race': 'Hispanic', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281769': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '30', 'gender': 'Male', 'age': '65', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '1998', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM2204385': {'treatment': 'treated with Dox to induce knockdown'}, 'GSM2060290': {'line': 'HCT116'}, 'GSM2204386': {'treatment': 'treated with Dox to induce knockdown'}, 'GSM2204387': {'treatment': 'treated with Dox to induce knockdown'}, 'GSM2144499': {'status': 'uninfected control', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144498': {'status': 'uninfected control', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2445633': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D3', 'type': 'primary human hepatocyte'}, 'GSM2445632': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D2', 'type': 'primary human hepatocyte'}, 'GSM2445635': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D13', 'type': 'primary human hepatocyte'}, 'GSM2445634': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D6', 'type': 'primary human hepatocyte'}, 'GSM2445637': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'pIC', 'time': '24h', 'type': 'primary human hepatocyte'}, 'GSM2445636': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D13', 'type': 'primary human hepatocyte'}, 'GSM2144491': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144490': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144493': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144492': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144495': {'status': 'uninfected control', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144494': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144497': {'status': 'uninfected control', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144496': {'status': 'uninfected control', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM3594630': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2883035': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject13', 'drug': 'Placebo'}, 'GSM2042846': {'antibody': 'anti-FLAG (Sigma, F1804)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '2hr'}, 'GSM2042845': {'antibody': 'anti-NR1H2 (Active Motif, 61178)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042844': {'antibody': 'anti-NR1H2 (Active Motif, 61178)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042843': {'antibody': 'anti-NR1H2 (Active Motif, 61178)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '2hr'}, 'GSM2042842': {'antibody': 'anti-NR1H2 (Active Motif, 61178)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '2hr'}, 'GSM2042848': {'antibody': 'anti-FLAG (Sigma, F1804)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '2hr'}, 'GSM1363528': {'grade': '0', 'alb': '25.8', 'tb': '22.1', 'individual': 'HCC-C13', 'alt': '26', 'pt': '12.1', 'hbvdna': '<500', 'ca199': '21.5', 'hgb': '130', 'method': '0', 'ggt': '55', 'cea': '1.97', 'ast': '38', 'rna': 'Yes', 'db': '3.5', 'cirrhosis': '0', 'afp': '4.3', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '49', 'ltx': 'C', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.19'}, 'GSM2359236': {'duration': '48h', 'line': 'N87', 'tissue': 'Stomach', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2195028': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2195029': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1808039': {'tissue': 'Heart'}, 'GSM2290618': {'type': 'iPSC'}, 'GSM1808037': {'tissue': 'Heart'}, 'GSM1808036': {'tissue': 'Heart'}, 'GSM1808035': {'tissue': 'Heart'}, 'GSM1808034': {'tissue': 'Heart'}, 'GSM1808033': {'tissue': 'Heart'}, 'GSM2195027': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1808031': {'tissue': 'Heart'}, 'GSM1808030': {'tissue': 'Heart'}, 'GSM2316836': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316837': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316834': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316835': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316832': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316833': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316830': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316831': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316838': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316839': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM1833282': {'type': 'MII oocyte'}, 'GSM1833283': {'type': 'zygote'}, 'GSM1833280': {'type': 'MII oocyte'}, 'GSM1833281': {'type': 'MII oocyte'}, 'GSM1833286': {'type': 'zygote'}, 'GSM1833287': {'type': 'zygote'}, 'GSM1833284': {'type': 'zygote'}, 'GSM1833285': {'type': 'zygote'}, 'GSM1833288': {'type': '2 cell'}, 'GSM1833289': {'type': '2 cell'}, 'GSM1862903': {'tissue': 'peripheral blood', 'type': 'additionally cultured with IL-1b (10 ng/ml)'}, 'GSM1862902': {'tissue': 'peripheral blood', 'type': 'additionally cultured with IL-1b (10 ng/ml)'}, 'GSM1862901': {'tissue': 'peripheral blood', 'type': 'additionally cultured with IL-1b (10 ng/ml)'}, 'GSM1862900': {'tissue': 'peripheral blood', 'type': 'freshly isolated'}, 'GSM2127252': {'virus': 'ZIKVM'}, 'GSM1342291': {'karyotype': '35-47,X,-X[9],?der(2)dup(2)(q13q23),+3[2],t(3;14)(p13;q32),del(5)(q11q13),del(6)(p23p25),+7[5],-8[4],add(11)(p15),+19,-20[3],+22[2],inc[cp11]', 'tissue': 'Spleen', 'diagnosis': 'Peripheral T-cell lymphoma not otherwise specified (PTCL-NOS)'}, 'GSM1273622': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2877829': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM1185160': {'with': 'Sulforaphane (SFN)', 'type': 'androgen-independent prostate cancer epithelial cells (PC-3)', 'point': '24 hours'}, 'GSM2877825': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2723029': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '0.023', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.586', 'age': '54', 'tcga_subtype_dif': '-0.231', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.482', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM1694663': {'typed': 'motor neurons', 'line': 'BJ-riPS'}, 'GSM2877826': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877821': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877820': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877823': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM1694666': {'typed': 'motor neurons', 'line': '1-38G'}, 'GSM2047527': {'well': 'A11', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047526': {'well': 'A10', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1102997': {'index': 'Index 4', 'line': 'HeLa cell', 'variation': 'Control GL2-depleted'}, 'GSM1102996': {'index': 'Index 2', 'line': 'HeLa cell', 'variation': 'Control GL2-depleted'}, 'GSM2047523': {'well': 'A07', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047522': {'well': 'A06', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047521': {'well': 'A05', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047520': {'well': 'A04', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1102999': {'index': 'Index 6', 'line': 'HeLa cell', 'variation': 'Control GL2-depleted'}, 'GSM1102998': {'index': 'Index 5', 'line': 'HeLa cell', 'variation': 'SUMO-1 depleted'}, 'GSM2047529': {'well': 'B01', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047528': {'well': 'A12', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2242849': {'line': 'A375', 'replicate': '4'}, 'GSM2242848': {'line': 'A375', 'replicate': '4'}, 'GSM2242845': {'line': 'A375', 'replicate': '4'}, 'GSM2242844': {'line': 'A375', 'replicate': '4'}, 'GSM2242847': {'line': 'A375', 'replicate': '4'}, 'GSM2242846': {'line': 'A375', 'replicate': '4'}, 'GSM2242841': {'line': 'A375', 'replicate': '4'}, 'GSM2242840': {'line': 'A375', 'replicate': '4'}, 'GSM2242843': {'line': 'A375', 'replicate': '4'}, 'GSM2242842': {'line': 'A375', 'replicate': '4'}, 'GSM2357385': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'DMSO control for pla-B, Ser5 phospho'}, 'GSM2882399': {'patient': '6', 'tissue': 'Monolayer keratinocytes', 'group': 'normal skin from control individuals (NN)'}, 'GSM2882398': {'patient': '5', 'tissue': 'Monolayer keratinocytes', 'group': 'normal skin from control individuals (NN)'}, 'GSM2882393': {'patient': '4', 'tissue': 'Monolayer keratinocytes', 'group': 'uninvolved skin of psoriasis patients (PN)'}, 'GSM2882392': {'patient': '3', 'tissue': 'Monolayer keratinocytes', 'group': 'uninvolved skin of psoriasis patients (PN)'}, 'GSM2882391': {'patient': '2', 'tissue': 'Monolayer keratinocytes', 'group': 'uninvolved skin of psoriasis patients (PN)'}, 'GSM2882390': {'patient': '1', 'tissue': 'Monolayer keratinocytes', 'group': 'uninvolved skin of psoriasis patients (PN)'}, 'GSM2882397': {'patient': '4', 'tissue': 'Monolayer keratinocytes', 'group': 'lesional skin of psoriasis patients (PP)'}, 'GSM2882396': {'patient': '3', 'tissue': 'Monolayer keratinocytes', 'group': 'lesional skin of psoriasis patients (PP)'}, 'GSM2882395': {'patient': '2', 'tissue': 'Monolayer keratinocytes', 'group': 'lesional skin of psoriasis patients (PP)'}, 'GSM2882394': {'patient': '1', 'tissue': 'Monolayer keratinocytes', 'group': 'lesional skin of psoriasis patients (PP)'}, 'GSM2166280': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166281': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166282': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166283': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166284': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166285': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166286': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166287': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166288': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166289': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM980600': {'line': 'HEK293', 'treatment': 'LIN28 Flp-In-293'}, 'GSM2047383': {'well': 'F01', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047382': {'well': 'E12', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047381': {'well': 'E11', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047380': {'well': 'E10', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047387': {'well': 'F05', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047386': {'well': 'F04', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047385': {'well': 'F03', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047384': {'well': 'F02', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047389': {'well': 'F07', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047388': {'well': 'F06', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2324420': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2705560': {'replicate': '2', 'treatment': 'RAB25'}, 'GSM2705561': {'replicate': '2', 'treatment': 'RFP14'}, 'GSM1956983': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day3'}, 'GSM1956982': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day2'}, 'GSM1956981': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day2'}, 'GSM1956980': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day2'}, 'GSM1956987': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day4'}, 'GSM1956986': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day4'}, 'GSM1956985': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day3'}, 'GSM1956984': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day3'}, 'GSM1956989': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day5'}, 'GSM1956988': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day4'}, 'GSM2357381': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Ser7 phospho'}, 'GSM1817345': {'line': 'SET-2', 'exposure': 'none'}, 'GSM1817344': {'line': 'SET-2', 'exposure': 'none'}, 'GSM1817346': {'line': 'SET-2', 'exposure': 'none'}, 'GSM1817341': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1817340': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1817343': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1817342': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM2451251': {'compartment': 'Stroma', 'id': 'CUMC_007', 'library': 'NuGEN'}, 'GSM1528616': {'with': '100nM SMN-C1 for 24hrs', 'line': 'GM03813', 'type': 'SMA type I fibroblasts'}, 'GSM1528617': {'with': '100nM SMN-C1 for 24hrs', 'line': 'GM03813', 'type': 'SMA type I fibroblasts'}, 'GSM1528614': {'with': '0.5% dimethyl sulfoxide (DMSO) for 24hrs', 'line': 'PNN 1-46', 'type': 'SMA type I fibroblasts'}, 'GSM1528615': {'with': '100nM SMN-C1 for 24hrs', 'line': 'GM03813', 'type': 'SMA type I fibroblasts'}, 'GSM1528612': {'with': '0.5% dimethyl sulfoxide (DMSO) for 24hrs', 'line': 'PNN 1-46', 'type': 'SMA type I fibroblasts'}, 'GSM1528613': {'with': '0.5% dimethyl sulfoxide (DMSO) for 24hrs', 'line': 'PNN 1-46', 'type': 'SMA type I fibroblasts'}, 'GSM1528610': {'with': '500nM SMN-C3 for 24hrs', 'line': 'PNN 1-46', 'type': 'SMA type I fibroblasts'}, 'GSM1528611': {'with': '500nM SMN-C3 for 24hrs', 'line': 'PNN 1-46', 'type': 'SMA type I fibroblasts'}, 'GSM2454024': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM1528618': {'with': '0.5% dimethyl sulfoxide (DMSO) for 24hrs', 'line': 'GM03813', 'type': 'SMA type I fibroblasts'}, 'GSM1528619': {'with': '0.5% dimethyl sulfoxide (DMSO) for 24hrs', 'line': 'GM03813', 'type': 'SMA type I fibroblasts'}, 'GSM1946115': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19108', 'for': '60min'}, 'GSM1946114': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19108', 'for': '60min'}, 'GSM1946117': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '30min'}, 'GSM1946116': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '30min'}, 'GSM1946111': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19108', 'for': '30min'}, 'GSM1946110': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19108', 'for': '30min'}, 'GSM1946113': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19108', 'for': '60min'}, 'GSM1946112': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19108', 'for': '60min'}, 'GSM2454022': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM1946119': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '30min'}, 'GSM1946118': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19116', 'for': '30min'}, 'GSM2454023': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454020': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454021': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2886836': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'hypoxia'}, 'GSM2886837': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'normoxia'}, 'GSM2732470': {'treatment': 'untreated'}, 'GSM2732471': {'treatment': 'untreated'}, 'GSM2732472': {'treatment': 'E7107 treated'}, 'GSM2665947': {'age': 'Day 130', 'well': 'B3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2723011': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.326', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.24', 'age': '56', 'tcga_subtype_dif': '0.397', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.229', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2665945': {'age': 'Day 130', 'well': 'D11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665944': {'age': 'Day 130', 'well': 'B2', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2723014': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.593', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.159', 'age': '68', 'tcga_subtype_dif': '-0.303', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.486', 'outcome': 'Suboptimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2665942': {'age': 'Day 130', 'well': 'E9', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2723016': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.009', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.031', 'age': '59', 'tcga_subtype_dif': '0.187', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.128', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2665940': {'age': 'Day 130', 'well': 'E1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2723019': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '-0.191', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.289', 'age': '47', 'tcga_subtype_dif': '0.214', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.323', 'outcome': 'Suboptimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2665949': {'age': 'Day 130', 'well': 'B12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM1166093': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM3189158': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A61', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.749384', 'percentaligned': '0.950212683', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.621097', 'original': 'Case'}, 'GSM3189159': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A61', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.729424', 'percentaligned': '0.912585152', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.815728', 'original': 'Case'}, 'GSM2454039': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454038': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM3189152': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.809966', 'percentaligned': '0.958800076', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '8.984876', 'original': 'Control'}, 'GSM3189153': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '7', 'mpv': 'Yes', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.684458', 'percentaligned': '0.934840211', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.828253', 'original': 'Control'}, 'GSM3189150': {'boca': 'No', 'years': '17', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '25', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.877838', 'percentaligned': '0.873923932', 'Sex': 'F', 'nl63': 'No', 'libcounts': '0.425166', 'original': 'Control'}, 'GSM3189151': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.730826', 'percentaligned': '0.931778171', 'Sex': 'M', 'nl63': 'No', 'libcounts': '29.290666'}, 'GSM3189156': {'boca': 'No', 'years': '17', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.581009', 'percentaligned': '0.955027897', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.662581', 'original': 'Case'}, 'GSM3189157': {'boca': 'No', 'years': '17', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.529135', 'percentaligned': '0.950694662', 'Sex': 'F', 'nl63': 'No', 'libcounts': '15.059325', 'original': 'Case'}, 'GSM3189154': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'Yes', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.735267', 'percentaligned': '0.946387318', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.897205', 'original': 'Control'}, 'GSM3189155': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.648927', 'percentaligned': '0.951931281', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.6972', 'original': 'Control'}, 'GSM2093018': {'bin': '30', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093019': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093012': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093013': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093010': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093011': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093016': {'bin': '30', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093017': {'bin': '30', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093014': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093015': {'bin': '30', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1930798': {'tool': 'pairwise limma voom', 'molecule': 'eIF4E RIP nuclear RNAs'}, 'GSM1930799': {'tool': 'pairwise limma voom', 'molecule': 'eIF4E RIP nuclear RNAs'}, 'GSM2711149': {'line': 'HCT116 (ATCC)', 'treatment': 'treated with 1uM Senexin B for 3 hours'}, 'GSM2711148': {'line': 'HCT116 (ATCC)', 'treatment': 'treated with 0.1% DMSO (vehicle control) for 3 hours'}, 'GSM1957522': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957520': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2047634': {'well': 'B09', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2085602': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM988638': {'line': 'HeLa', 'sirna': 'siTUTs', 'treatment': 'transfected with 14nM of each siTUT7'}, 'GSM988637': {'line': 'HeLa', 'sirna': 'siLuc', 'treatment': 'transfected with 42nM of siLuciferase'}, 'GSM1444179': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 7-8 h p.i.'}, 'GSM2047632': {'well': 'B07', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2374069': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374068': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374065': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374064': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374067': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374066': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374061': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374060': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374063': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374062': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2459301': {'line': 'MDA-MB-157', 'type': 'breast cancer cell line', 'treatment': 'untreated'}, 'GSM2459302': {'line': 'MDA-MB-157', 'type': 'breast cancer cell line', 'treatment': 'lacZ'}, 'GSM2459303': {'line': 'MDA-MB-157', 'type': 'breast cancer cell line', 'treatment': 'Wt1 KO'}, 'GSM1444172': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 0-1 h p.i.'}, 'GSM1444173': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 1-2 h p.i.'}, 'GSM1023654': {'line': 'IMR90', 'passages': '7-9', 'transfection': 'siRNA targeting H1.5'}, 'GSM1023653': {'line': 'IMR90', 'passages': '7-9', 'transfection': 'control siRNA'}, 'GSM2747934': {'type': 'iPSC derived astrocytes', 'mutation': 'SOD1 D90A', 'variation': 'SOD1 D90A mutation'}, 'GSM1081379': {'sirna': 'EGFP100 pro-siRNA', 'line': 'HeLa-d1EGFP', 'type': 'derived from HeLa cells'}, 'GSM1081378': {'sirna': 'EGFP siRNA', 'line': 'HeLa-d1EGFP', 'type': 'derived from HeLa cells'}, 'GSM1081377': {'sirna': 'control siRNA', 'line': 'HeLa-d1EGFP', 'type': 'derived from HeLa cells'}, 'GSM2648748': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648749': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648744': {'disease_status': 'healthy control', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648745': {'disease_status': 'healthy control', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648746': {'disease_status': 'healthy control', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648747': {'disease_status': 'healthy control', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648740': {'disease_status': 'healthy control', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648741': {'disease_status': 'healthy control', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648742': {'disease_status': 'healthy control', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2648743': {'disease_status': 'healthy control', 'tissue': 'lung', 'appearance': 'normal'}, 'GSM2361359': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'ACAGTG'}, 'GSM2361358': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'TTAGGC'}, 'GSM2287178': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287179': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2361351': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'GTTTCG'}, 'GSM2287177': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287174': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287175': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287172': {'pair': 'P8_10', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2361354': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'GCCAAT'}, 'GSM2361357': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'AGTCAA'}, 'GSM2361356': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'GTGGCC'}, 'GSM2564969': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM1233298': {'antibody': 'H3K9K14ac (Diagenode)', 'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'MC2392 48h', 'genome': 'HG18'}, 'GSM2243785': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1551969': {'replicate': '1', 'synchronization': '0', 'passages': '6-9', 'type': 'human mammary epithelial cells (HMECS), Invitrogen'}, 'GSM2243787': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243786': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C6', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243781': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243780': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243783': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243782': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1308994': {'line': 'NP460', 'type': 'immortalized nasopharyngeal epithelial cell line'}, 'GSM2411888': {'line': '22512A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM1308991': {'line': 'C666', 'type': 'undifferentiated Epstein-Barr virus (EBV)-positive NPC cell line'}, 'GSM2243788': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1308993': {'line': 'HK1', 'type': 'well-differentiated NPC cell line'}, 'GSM1308992': {'line': 'X666', 'type': 'undifferentiated Epstein-Barr virus (EBV)-positive NPC xenograft'}, 'GSM1132422': {'tissue': '14 day neurons', 'group': 'patients'}, 'GSM1132423': {'tissue': '14 day neurons', 'group': 'patients'}, 'GSM1132420': {'tissue': 'Bone Marrow, Iliac Crest', 'type': 'leukemic blasts'}, 'GSM1132421': {'tissue': '14 day neurons', 'group': 'patients'}, 'GSM1132426': {'tissue': '14 day neurons', 'group': 'control'}, 'GSM1132427': {'tissue': '14 day neurons', 'group': 'control'}, 'GSM1132424': {'tissue': '14 day neurons', 'group': 'patients'}, 'GSM1132425': {'tissue': '14 day neurons', 'group': 'control'}, 'GSM2085688': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085689': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085684': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085685': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085686': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085687': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085680': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085681': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085682': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085683': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2667974': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2_enhancer_KO#1'}, 'GSM2667975': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2_enhancer_KO#1'}, 'GSM2667976': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2_enhancer_KO#1'}, 'GSM2667977': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2_enhancer_KO#1'}, 'GSM2667970': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'IER5_enhancer_KO#2'}, 'GSM2667971': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'IER5_enhancer_KO#2'}, 'GSM2667972': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'IER5_enhancer_KO#2'}, 'GSM2667973': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'IER5_enhancer_KO#2'}, 'GSM2667978': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2_enhancer_KO#2'}, 'GSM2667979': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'SERPINE2_enhancer_KO#2'}, 'GSM1334171': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4- CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1642279': {'tissue': 'Frontal Cortex', 'genotype': 'c9ALS'}, 'GSM1642278': {'tissue': 'Cerebellum', 'genotype': 'c9ALS'}, 'GSM2517980': {'group': 'Knockdown', 'line': 'SW480', 'type': 'Colorectal carcinoma'}, 'GSM2782705': {'line': 'TC32 Ewing sarcoma cell line', 'variation': 'WT Control'}, 'GSM2782707': {'line': 'TC32 Ewing sarcoma cell line', 'variation': 'treatment with YK-4-279'}, 'GSM2782706': {'line': 'TC32 Ewing sarcoma cell line', 'variation': 'knockdown of EWS-FLI1'}, 'GSM2627021': {'origin': 'pancreas', 'patient_id': '55', 'type': 'primary', 'tumor_id': 'YC99'}, 'GSM2666083': {'age': 'Day 450', 'well': 'E11', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666082': {'age': 'Day 450', 'well': 'G6', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666081': {'age': 'Day 450', 'well': 'H2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666080': {'age': 'Day 450', 'well': 'A9', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666087': {'age': 'Day 450', 'well': 'F8', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666086': {'age': 'Day 450', 'well': 'G1', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666085': {'age': 'Day 450', 'well': 'D2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666084': {'age': 'Day 450', 'well': 'A3', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666089': {'age': 'Day 450', 'well': 'E9', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666088': {'age': 'Day 450', 'well': 'B9', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2171965': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171964': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171967': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171966': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171961': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171960': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171963': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171962': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171969': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171968': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM1645722': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes', 'antibody': 'H3K4me1 (Abcam, cat#ab8895, lot#GR114265-2) (Active Motif)'}, 'GSM1645723': {'knockdown': 'Brg1/Brm', 'type': 'primary human neonatal keratinocytes', 'antibody': 'H3K4me1 (Abcam, cat#ab8895, lot#GR114265-2) (Active Motif)'}, 'GSM1645720': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes', 'antibody': 'H3K27me3 (millipore, cat#07-449, lot#1764447) (millipore)'}, 'GSM1645721': {'knockdown': 'Brg1/Brm', 'type': 'primary human neonatal keratinocytes', 'antibody': 'H3K27me3 (millipore, cat#07-449, lot#1764447) (millipore)'}, 'GSM1645724': {'knockdown': 'Brg1/Brm', 'type': 'primary human neonatal keratinocytes', 'antibody': 'H3K27Ac (Active Motif, cat#39134, lot#01613007) (Active Motif)'}, 'GSM1645725': {'knockdown': 'control', 'type': 'primary human neonatal keratinocytes', 'antibody': 'H3K27Ac (Active Motif, cat#39134, lot#01613007) (Active Motif)'}, 'GSM2747483': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': '5uM GW4065'}, 'GSM2747482': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': '5uM GW4064'}, 'GSM1965189': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965188': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1893658': {'donor': 'Donor 3', 'type': 'Human islet cells'}, 'GSM1893653': {'donor': 'Donor 2', 'type': 'Human islet cells'}, 'GSM1893652': {'donor': 'Donor 1', 'type': 'Human islet cells'}, 'GSM1893651': {'donor': 'Donor 1', 'type': 'Human islet cells'}, 'GSM1893650': {'donor': 'Donor 1', 'type': 'Human islet cells'}, 'GSM1893657': {'donor': 'Donor 3', 'type': 'Human islet cells'}, 'GSM1893656': {'donor': 'Donor 3', 'type': 'Human islet cells'}, 'GSM1893655': {'donor': 'Donor 2', 'type': 'Human islet cells'}, 'GSM1893654': {'donor': 'Donor 2', 'type': 'Human islet cells'}, 'GSM2033106': {'line': 'Hela', 'medium': 'DMEM', 'antibody': 'RPA1 (gifted by Dr. Bruce Stillman)', 'stage': 'asynchronization'}, 'GSM2033107': {'line': 'Hela', 'medium': 'DMEM', 'treatment': 'NT', 'stage': 'asynchronization'}, 'GSM2033104': {'line': 'Hela', 'medium': 'DMEM', 'antibody': 'RPA2 (Abcam, catalog# ab16850, lot# GR88602-1)', 'stage': 'asynchronization'}, 'GSM2033105': {'line': 'Hela', 'medium': 'DMEM', 'antibody': 'RPA2 (Abcam, catalog# ab16850, lot# GR88602-1)', 'stage': 'asynchronization'}, 'GSM1660910': {'line': 'Bel-7402', 'transduced': 'FRA1 knockdown', 'type': 'Hepatocellular Carcinoma'}, 'GSM2033103': {'line': 'Hela', 'medium': 'DMEM', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM2267415': {'histology': 'not applicable', 'tissuetype': 'Gastric primary non-malignant tissue'}, 'GSM2267414': {'histology': 'diffuse', 'tissuetype': 'Gastric primary tumor tissue'}, 'GSM2267419': {'histology': 'mixed', 'tissuetype': 'Gastric primary tumor tissue'}, 'GSM2267418': {'histology': 'not applicable', 'tissuetype': 'Gastric primary non-malignant tissue'}, 'GSM2033108': {'line': 'Hela', 'medium': 'DMEM', 'treatment': 'shRPA1', 'stage': 'asynchronization'}, 'GSM2033109': {'line': 'Hela', 'medium': 'DMEM', 'treatment': 'NT', 'stage': 'asynchronization'}, 'GSM3416476': {'compartment': 'Stroma', 'id': 'CUMC_092', 'library': 'NuGEN'}, 'GSM3416477': {'compartment': 'Stroma', 'id': 'CUMC_093', 'library': 'NuGEN'}, 'GSM3416474': {'compartment': 'Stroma', 'id': 'CUMC_090', 'library': 'NuGEN'}, 'GSM3416475': {'compartment': 'Stroma', 'id': 'CUMC_091', 'library': 'NuGEN'}, 'GSM3416472': {'compartment': 'Stroma', 'id': 'CUMC_088', 'library': 'NuGEN'}, 'GSM3416473': {'compartment': 'Stroma', 'id': 'CUMC_089', 'library': 'NuGEN'}, 'GSM3416470': {'compartment': 'Stroma', 'id': 'CUMC_086', 'library': 'NuGEN'}, 'GSM3416471': {'compartment': 'Stroma', 'id': 'CUMC_087', 'library': 'NuGEN'}, 'GSM3416478': {'compartment': 'Stroma', 'id': 'CUMC_094', 'library': 'NuGEN'}, 'GSM3416479': {'compartment': 'Stroma', 'id': 'CUMC_095', 'library': 'NuGEN'}, 'GSM1537677': {'antibody': 'MED1 (M-255; sc-8998; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1537678': {'antibody': 'MED1 (M-255; sc-8998; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1537679': {'antibody': 'MED1 (M-255; sc-8998; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1697664': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'induced pluripotent stem cells generated by a modified 5i/L/FA system', 'type': 'Fibroblasts'}, 'GSM1697665': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'induced pluripotent stem cells generated by a modified 5i/L/FA system', 'type': 'Fibroblasts'}, 'GSM1697666': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'conventional iPSCs', 'type': 'Fibroblasts'}, 'GSM1697667': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'conventional iPSCs', 'type': 'Fibroblasts'}, 'GSM1697668': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'embryonic stem cells', 'type': 'Fibroblasts'}, 'GSM1697669': {'status': 'β-thalassemia patients carrying the β-41/42 mutation', 'subtype': 'induced pluripotent stem cells generated by a modified 5i/L/FA system', 'type': 'Fibroblasts', 'antibody': 'H3K27me3', 'vendor': 'Millipore'}, 'GSM2348679': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348678': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348677': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348676': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348675': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348674': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348673': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348672': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348671': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348670': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1558624': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2666000': {'age': 'Day 130', 'well': 'C5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2091362': {'genotype': 'pluripotent'}, 'GSM2091363': {'genotype': 'pluripotent'}, 'GSM2091360': {'genotype': 'pluripotent'}, 'GSM2091361': {'genotype': 'pluripotent'}, 'GSM2316768': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316769': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316762': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316763': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316760': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316761': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316766': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316767': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316764': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316765': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2560031': {'gender': 'female', 'stage': 'T3N0M0'}, 'GSM2560033': {'gender': 'male', 'stage': 'T1(G3)N0M0'}, 'GSM2560032': {'gender': 'male', 'stage': 'T3N0M0'}, 'GSM2560035': {'gender': 'male'}, 'GSM2560034': {'gender': 'female'}, 'GSM2560036': {'gender': 'male'}, 'GSM2288410': {'tissue': 'hESCs-derived endothelial progenitor cells'}, 'GSM2288411': {'tissue': 'Human umbilical vein endothelial cells'}, 'GSM2877935': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2815898': {'line': 'H9'}, 'GSM2815899': {'line': 'H9'}, 'GSM2815890': {'line': 'H9'}, 'GSM2815891': {'line': 'H9'}, 'GSM2815892': {'line': 'H9'}, 'GSM2815893': {'line': 'H9'}, 'GSM2815894': {'line': 'H9'}, 'GSM2815895': {'line': 'H9'}, 'GSM2815896': {'line': 'H9'}, 'GSM2815897': {'line': 'H9'}, 'GSM2636195': {'type': 'primed embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2232697': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM2232696': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM2232695': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM2232694': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM1126690': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126691': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM2232699': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM2232698': {'protein': 'AML-ETO', 'line': 'SKNO1'}, 'GSM2307351': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307350': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307353': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307352': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2549658': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'oxidized', 'passage': '7'}, 'GSM1100206': {'line': 'MCF10A', 'type': '50 M reads'}, 'GSM1100205': {'line': 'MCF10A', 'type': '25 M reads'}, 'GSM2549655': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'non-oxidized control', 'passage': '7'}, 'GSM1100209': {'line': 'MDA-MB-436', 'type': '25 M reads'}, 'GSM1100208': {'line': 'HT-29', 'type': '50 M reads', 'treatment': 'IFN-g'}, 'GSM2193187': {'donor': 'Human (donor A)', 'type': 'Esophagus'}, 'GSM2193186': {'donor': 'Human (donor A)', 'type': 'Colon'}, 'GSM2481442': {'line': 'Hct116', 'treatment': 'DMSO'}, 'GSM2481443': {'line': 'Hct116', 'treatment': 'Lenalidomide'}, 'GSM2481440': {'line': 'Hct116', 'treatment': 'DMSO'}, 'GSM2481441': {'line': 'Hct116', 'treatment': 'DMSO'}, 'GSM2481446': {'line': 'Hct116', 'treatment': 'Lenalidomide'}, 'GSM2481444': {'line': 'Hct116', 'treatment': 'Lenalidomide'}, 'GSM2193188': {'donor': 'Human (donor A)', 'type': 'Prostate'}, 'GSM2303184': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACIW009'}, 'GSM2303185': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACIW009'}, 'GSM2303186': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303187': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACIW009'}, 'GSM2303180': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACIW009'}, 'GSM2303181': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303182': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303183': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACIW009'}, 'GSM3189070': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '44', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.759235', 'percentaligned': '0.891793', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.327285', 'original': 'Case'}, 'GSM2303188': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACIW009'}, 'GSM2303189': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACIW009'}, 'GSM1154040': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'β-estradiol (100nM) 160min'}, 'GSM1154041': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1154042': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154043': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'no', 'treatment': 'IFN-γ (50ng/mL) 2hr'}, 'GSM1154044': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'NF-κB p65 (Santa Cruz sc-372)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154045': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'no treat'}, 'GSM1154046': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154047': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'IFN-γ (50ng/mL) 2hr'}, 'GSM2436509': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436508': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436505': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436504': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436507': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436506': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436501': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436500': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436503': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436502': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM1504005': {'gender': 'male', 'repeats': 'not tested', 'tissue': 'peripheral blood'}, 'GSM1504004': {'gender': 'female', 'repeats': 'not tested', 'tissue': 'peripheral blood'}, 'GSM1504007': {'gender': 'female', 'repeats': 'not tested', 'tissue': 'peripheral blood'}, 'GSM1504006': {'gender': 'female', 'repeats': 'not tested', 'tissue': 'peripheral blood'}, 'GSM1540636': {'agent': 'Vehicle', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'Control'}, 'GSM1504003': {'gender': 'female', 'repeats': 'not tested', 'tissue': 'peripheral blood'}, 'GSM1504002': {'gender': 'male', 'repeats': 'not tested', 'tissue': 'peripheral blood'}, 'GSM1540638': {'agent': 'Vehicle', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'Control'}, 'GSM1504009': {'gender': 'female', 'repeats': '42', 'tissue': 'peripheral blood'}, 'GSM1504008': {'gender': 'male', 'repeats': '42', 'tissue': 'peripheral blood'}, 'GSM1581141': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581140': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM2104428': {'expression': 'positive', 'individual': 'Patient 4', 'type': 'Ascites fluid macrophage'}, 'GSM2104429': {'expression': 'positive', 'individual': 'Patient 5', 'type': 'Ascites fluid macrophage'}, 'GSM2104420': {'expression': 'positive', 'individual': 'Patient 3', 'type': 'Ascites fluid macrophage'}, 'GSM2104421': {'expression': 'positive', 'individual': 'Patient 4', 'type': 'Ascites fluid macrophage'}, 'GSM2104422': {'expression': 'positive', 'individual': 'Patient 5', 'type': 'Ascites fluid macrophage'}, 'GSM2104423': {'expression': 'positive', 'individual': 'Patient 6', 'type': 'Ascites fluid macrophage'}, 'GSM2104424': {'expression': 'positive', 'individual': 'Patient 6', 'type': 'Ascites fluid macrophage'}, 'GSM2104425': {'expression': 'positive', 'individual': 'Patient 1', 'type': 'Ascites fluid macrophage'}, 'GSM2104426': {'expression': 'positive', 'individual': 'Patient 2', 'type': 'Ascites fluid macrophage'}, 'GSM2104427': {'expression': 'positive', 'individual': 'Patient 3', 'type': 'Ascites fluid macrophage'}, 'GSM2394548': {'id': 'IonXpress_059', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_MB', 'point': 'after 12h of compound treatment'}, 'GSM2394549': {'id': 'IonXpress_060', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2394544': {'id': 'IonXpress_055', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Misoprostol, free acid', 'point': 'after 12h of compound treatment'}, 'GSM2394545': {'id': 'IonXpress_056', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'PAF C18', 'point': 'after 12h of compound treatment'}, 'GSM2394546': {'id': 'IonXpress_057', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Prostaglandin B1', 'point': 'after 12h of compound treatment'}, 'GSM2394547': {'id': 'IonXpress_058', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Prostaglandin J2', 'point': 'after 12h of compound treatment'}, 'GSM2394540': {'id': 'IonXpress_051', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Carbacyclin', 'point': 'after 12h of compound treatment'}, 'GSM2394541': {'id': 'IonXpress_052', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Eicosadienoic acid (20:2 n-6)', 'point': 'after 12h of compound treatment'}, 'GSM2394542': {'id': 'IonXpress_053', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Farnesylthioacetic acid', 'point': 'after 12h of compound treatment'}, 'GSM2394543': {'id': 'IonXpress_054', 'plate': 'A1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Lyso-PAF C16', 'point': 'after 12h of compound treatment'}, 'GSM2808849': {'tissue': 'Lung', 'metastasis': 'N/A', 'histology': 'normal lung tissues'}, 'GSM2047396': {'well': 'G02', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1915093': {'status': 'healthy participant', 'culture': '24 hours', 'with': '20 µM hydroxychloroquine (HCQ)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM756310': {'line': 'DLBCL cell line OCI-LY1', 'variation': 'siBCL6 mediated knockdown', 'time': '24hrs'}, 'GSM756311': {'line': 'DLBCL cell line OCI-LY1', 'variation': 'siBCL6 mediated knockdown', 'time': '48hrs'}, 'GSM756312': {'line': 'DLBCL cell line OCI-LY1', 'variation': 'siNT mediated knockdown', 'time': '24hrs'}, 'GSM756313': {'line': 'DLBCL cell line OCI-LY1', 'variation': 'siNT mediated knockdown'}, 'GSM1980548': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980549': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980544': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980545': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980546': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980547': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980540': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980541': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980542': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980543': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2944210': {'gender': 'Male', 'age': '25', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM3271565': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': 'None'}, 'GSM2877939': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM3189078': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'Yes', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.587046', 'percentaligned': '0.95845', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.160277', 'original': 'Control'}, 'GSM2877938': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM1444181': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '2 h p.i.'}, 'GSM2243807': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2785134': {'transfection': 'CIBN-TetR, PHR-YFP-VP16, mCherry-MCP', 'tissue': 'U2OS 2-6-3 cell line', 'protocol': \"Roche Xtreme gene according to manufacturer's protocol\", 'night': 'yes'}, 'GSM2785133': {'transfection': 'CIBN-TetR, PHR-YFP-VP16, mCherry-MCP', 'tissue': 'U2OS 2-6-3 cell line', 'protocol': \"Roche Xtreme gene according to manufacturer's protocol\", 'night': 'yes'}, 'GSM2785132': {'transfection': 'TetR-RFP & YFP', 'tissue': 'U2OS 2-6-3 cell line', 'protocol': \"Roche Xtreme gene according to manufacturer's protocol\", 'night': 'yes'}, 'GSM2785131': {'transfection': 'TetR-RFP & YFP', 'tissue': 'U2OS 2-6-3 cell line', 'protocol': \"Roche Xtreme gene according to manufacturer's protocol\", 'night': 'yes'}, 'GSM2785130': {'transfection': 'none', 'tissue': 'U2OS 2-6-3 cell line', 'protocol': 'none', 'night': 'yes'}, 'GSM1845153': {'with': '500nM I-BET151 and 5uM SGC0946', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'Mixed lineage leukemia (MLL) fusion protein (FP) leukemia cell line'}, 'GSM1444186': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 0-1 h p.i.'}, 'GSM2108424': {'stages': 'myoblast nucleus'}, 'GSM2108425': {'stages': 'myoblast nucleus'}, 'GSM2108426': {'stages': 'myoblast nucleus'}, 'GSM2108427': {'stages': 'myoblast nucleus'}, 'GSM2108420': {'stages': 'myoblast nucleus'}, 'GSM1845151': {'with': '5uM SGC0946', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'Mixed lineage leukemia (MLL) fusion protein (FP) leukemia cell line'}, 'GSM2108422': {'stages': 'myoblast nucleus'}, 'GSM2108423': {'stages': 'myoblast nucleus'}, 'GSM1845150': {'with': '500nM I-BET151', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'Mixed lineage leukemia (MLL) fusion protein (FP) leukemia cell line'}, 'GSM2108428': {'stages': 'myoblast nucleus'}, 'GSM2108429': {'stages': 'myoblast nucleus'}, 'GSM2287103': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287102': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1444189': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 3-4 h p.i.'}, 'GSM1207919': {'transfection': 'TET1-CD expression plasmid', 'line': 'HEK293T'}, 'GSM2098975': {'status': 'Uninfected', 'type': 'hff'}, 'GSM2153009': {'type': 'cultured adult CECs', 'time': 'NA'}, 'GSM1288389': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288388': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288383': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288382': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288381': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288380': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288387': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288386': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288385': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288384': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM2735251': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '52', 'morphology': 'undifferentiated, spindle', 'event': 'Disease progression', 'stage': 'IV'}, 'GSM2735250': {'cohort': 'Paired', 'tils': '5', 'subtype': 'III', 'burden': '17', 'morphology': 'undifferentiated, spindle', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735253': {'cohort': 'Paired', 'tils': '10', 'subtype': 'I', 'burden': '41', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735252': {'cohort': 'Unpaired', 'tils': '2', 'subtype': 'I', 'burden': '275', 'morphology': 'differentiated', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735255': {'cohort': 'Unpaired', 'tils': '30', 'subtype': 'I', 'burden': '277', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735254': {'cohort': 'Paired', 'tils': '40', 'subtype': 'III', 'burden': '20', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735257': {'cohort': 'Unpaired', 'tils': '20', 'subtype': 'II', 'burden': '260', 'morphology': 'N/A', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735256': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'III', 'burden': '293', 'morphology': 'undifferentiated, round', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735259': {'cohort': 'Paired', 'tils': '10', 'subtype': 'II', 'burden': '181', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735258': {'cohort': 'Paired', 'tils': '20', 'subtype': 'I', 'burden': '36', 'morphology': 'undifferentiated, spindle', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2526819': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526818': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526811': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526810': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526813': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526812': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526815': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526814': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526817': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526816': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2049919': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM1341697': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1833329': {'type': 'ICM'}, 'GSM1833328': {'type': 'late blastocyst'}, 'GSM1833321': {'type': 'early blastocsyt'}, 'GSM1833323': {'type': 'middle blastocyst'}, 'GSM1833325': {'type': 'middle blastocyst'}, 'GSM1833324': {'type': 'middle blastocyst'}, 'GSM1833327': {'type': 'late blastoycst'}, 'GSM1833326': {'type': 'late blastoycst'}, 'GSM1583178': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583179': {'tissue': 'thyroid', 'type': 'Control sample', 'diagnosis': 'healthy'}, 'GSM1583174': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583175': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583176': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583177': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583170': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583171': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583172': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM1583173': {'tissue': 'thyroid', 'type': 'Tumor sample', 'diagnosis': 'papillary thyroid carcinoma'}, 'GSM2348705': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2098973': {'status': 'Uninfected', 'type': 'hff'}, 'GSM1521748': {'antibody': 'Diagenode,pAb-003-50,A5051-001P', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2806911': {'phase': 'G2', 'line': 'U2OS'}, 'GSM2806910': {'phase': 'G2', 'line': 'U2OS'}, 'GSM1659549': {'source': 'skin', 'subtype': 'Dermal Normal Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM1659548': {'source': 'colon tumor', 'subtype': 'Colon Tumor Fibroblasts', 'type': 'Fibroblast', 'passage': 'p4-7'}, 'GSM2393871': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'FH-AGO2_5xA'}, 'GSM2393870': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'FH-AGO2_WT'}, 'GSM2393873': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'FH-AGO2_5xA'}, 'GSM2393872': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'FH-AGO2_5xA'}, 'GSM2390788': {'disease': 'Healthy Control'}, 'GSM2390789': {'disease': 'Healthy Control'}, 'GSM2390786': {'disease': 'Healthy Control'}, 'GSM2390787': {'disease': 'Healthy Control'}, 'GSM2390784': {'disease': 'Healthy Control'}, 'GSM2390785': {'disease': 'Healthy Control'}, 'GSM2390782': {'disease': 'Healthy Control'}, 'GSM2390783': {'disease': 'Healthy Control'}, 'GSM2390780': {'disease': 'Healthy Control'}, 'GSM2390781': {'disease': 'Healthy Control'}, 'GSM2170459': {'stage': 'Definitive endoderm 1'}, 'GSM2043611': {'tissue': 'placental villous tissue', 'pool': 'Mix_2', 'sex': 'Female'}, 'GSM2043610': {'tissue': 'placental villous tissue', 'pool': 'Mix_1', 'sex': 'Male'}, 'GSM2043613': {'tissue': 'placental villous tissue', 'pool': 'Mix_1', 'sex': 'Male'}, 'GSM2043612': {'tissue': 'placental villous tissue', 'pool': 'Mix_2', 'sex': 'Female'}, 'GSM2172146': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048736': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048735': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048734': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2172142': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172143': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172140': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172141': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2565457': {'construction': 'PLATE-Seq', 'drug': 'AMINACRINE'}, 'GSM2048739': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048738': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2565458': {'construction': 'PLATE-Seq', 'drug': 'DIHYDROCELASTROL'}, 'GSM2424935': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2492447': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492444': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM1440433': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440432': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440431': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440430': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440437': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440436': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440435': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440434': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440439': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440438': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM2243795': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2424934': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1395513': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395512': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395511': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395510': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395517': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395516': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395515': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395514': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395519': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395518': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2204740': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204741': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204742': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204743': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204744': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204745': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204746': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204747': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204748': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204749': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2839726': {'cohort': 'Original', 'age': '71', 'id': 'C6', 'Sex': 'Female'}, 'GSM2839727': {'cohort': 'Original', 'age': '44', 'id': 'C7', 'Sex': 'Male'}, 'GSM1613677': {'line': 'CRL2097', 'type': 'bulk'}, 'GSM2839721': {'cohort': 'Original', 'age': '71', 'id': 'C1', 'Sex': 'Male'}, 'GSM2839722': {'cohort': 'Original', 'age': '83', 'id': 'C2', 'Sex': 'Female'}, 'GSM2839723': {'cohort': 'Original', 'age': '62', 'id': 'C3', 'Sex': 'Male'}, 'GSM2464768': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464769': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464766': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464767': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464764': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464765': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464762': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464763': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2464761': {'status': 'Healthy control', 'type': 'Human Intestinal Lymphatic Endothelial cells (HILEC)'}, 'GSM2829970': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829971': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829972': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829973': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829974': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829975': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829976': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829977': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829978': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829979': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM3586845': {'origin': 'GCB', 'pfstt': '818', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '892', 'cycles': '8', 'oscs': '0'}, 'GSM2284160': {'transduction': 'NLRP1 mutant A54T', 'type': 'N-TERT/1 immortalized keratinocytes'}, 'GSM2284161': {'transduction': 'NLRP1 mutant A66V', 'type': 'N-TERT/1 immortalized keratinocytes'}, 'GSM2753340': {'type': 'Ovarian Carcinoma'}, 'GSM3586847': {'origin': 'ABC', 'pfstt': '466', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '906', 'cycles': '8', 'oscs': '0'}, 'GSM927344': {'patient': '5', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM3586846': {'origin': 'GCB', 'pfstt': '834', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '834', 'cycles': '8', 'oscs': '0'}, 'GSM1880781': {'preparation': '5.16.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM2285417': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'RPMI8226', 'treatment': 'DMSO'}, 'GSM2285416': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'RPMI8226', 'treatment': 'DMSO'}, 'GSM2285415': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'MOLP8', 'treatment': 'DMSO'}, 'GSM1915628': {'donorid': 'SU048', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM2285413': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'IM9', 'treatment': 'DMSO'}, 'GSM2285412': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'IM9', 'treatment': 'DMSO'}, 'GSM2285411': {'replicate': '3', 'time': '24 h', 'type': 'mm', 'name': 'MM1S', 'treatment': 'DMSO'}, 'GSM2285410': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'MM1S', 'treatment': 'DMSO'}, 'GSM1915623': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915622': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915621': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915620': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915627': {'donorid': 'SU048', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915626': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915625': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915624': {'donorid': '7653', 'type': 'primary human blood cell from fresh sample'}, 'GSM1414748': {'tissue': 'Human tonsil', 'type': 'TFH', 'markers': 'CD4+CD45RA-TCRb+PD-1hiCXCR5hiPSGL-1lo'}, 'GSM1414749': {'tissue': 'Human tonsil', 'type': 'TEFF', 'markers': 'CD4+CD45RA-TCRb+PD-1loCXCR5loPSGL-1hi'}, 'GSM1414744': {'tissue': 'Human tonsil', 'type': 'Naïve', 'markers': 'CD4+CD45RA+TCRb+PSGL-1hi'}, 'GSM1414745': {'tissue': 'Human tonsil', 'type': 'Naïve', 'markers': 'CD4+CD45RA+TCRb+PSGL-1hi'}, 'GSM1414746': {'tissue': 'Human tonsil', 'type': 'TFH', 'markers': 'CD4+CD45RA-TCRb+PD-1hiCXCR5hiPSGL-1lo'}, 'GSM1414747': {'tissue': 'Human tonsil', 'type': 'TFH', 'markers': 'CD4+CD45RA-TCRb+PD-1hiCXCR5hiPSGL-1lo'}, 'GSM2157543': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM1414742': {'tissue': 'Human tonsil', 'type': 'Naïve', 'markers': 'CD4+CD45RA+TCRb+PSGL-1hi'}, 'GSM1414743': {'tissue': 'Human tonsil', 'type': 'Naïve', 'markers': 'CD4+CD45RA+TCRb+PSGL-1hi'}, 'GSM2637999': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637998': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM1470409': {'line': 'A-431', 'type': 'cytoplasmic RNA'}, 'GSM1470408': {'line': 'A-431', 'type': 'cytoplasmic RNA'}, 'GSM1470401': {'line': 'U-2 OS', 'type': 'cytoplasmic RNA'}, 'GSM1470400': {'line': 'U-2 OS', 'type': 'cytoplasmic RNA'}, 'GSM1470403': {'line': 'U-251MG', 'type': 'cytoplasmic RNA'}, 'GSM1470402': {'line': 'U-2 OS', 'type': 'cytoplasmic RNA'}, 'GSM1470405': {'line': 'U-251MG', 'type': 'cytoplasmic RNA'}, 'GSM1470404': {'line': 'U-251MG', 'type': 'cytoplasmic RNA'}, 'GSM1470407': {'line': 'A-431', 'type': 'cytoplasmic RNA'}, 'GSM1470406': {'line': 'U-251MG', 'type': 'cytoplasmic RNA'}, 'GSM2374388': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2441042': {'culture': '6', 'line': 'H9', 'set': 'Data Set 2-FGF2 effects days 1-6', 'run': 'run1513', 'treatment': '6'}, 'GSM2627201': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': '7p15.2 risk region deleted'}, 'GSM2627206': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': '7p15.2 risk region deleted'}, 'GSM2627207': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': '7p15.2 risk region deleted'}, 'GSM2627204': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': '7p15.2 risk region deleted'}, 'GSM2627205': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': '7p15.2 risk region deleted'}, 'GSM2374380': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374381': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2627208': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': 'wild type'}, 'GSM2627209': {'line': 'prostate cell line RWPE1', 'treatment': 'Genome Editing', 'variation': 'wild type'}, 'GSM2374384': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374385': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374386': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374387': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2441041': {'culture': '6', 'line': 'H9', 'set': 'Data Set 2-FGF2 effects days 1-6', 'run': 'run1513', 'treatment': '0'}, 'GSM2157541': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM2348549': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464319': {'status': 'small cell lung cancer'}, 'GSM2141720': {'individual': 'EU298', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141721': {'individual': 'EU300', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141722': {'individual': 'EU300', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141723': {'individual': 'EU300', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141724': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141725': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141726': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141727': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141728': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141729': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2441045': {'culture': '12', 'line': 'H9', 'set': 'Data Set 3-FGF2 effects days 7-12', 'run': 'run1513', 'treatment': '0'}, 'GSM1464314': {'status': 'small cell lung cancer'}, 'GSM2042093': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM1464315': {'status': 'small cell lung cancer'}, 'GSM1464316': {'status': 'small cell lung cancer'}, 'GSM1464317': {'status': 'small cell lung cancer'}, 'GSM1464310': {'status': 'small cell lung cancer'}, 'GSM1464311': {'status': 'small cell lung cancer'}, 'GSM1895361': {'index': 'AR007', 'level': 'high', 'barcode': 'CAGATC', 'variation': 'WWTR1 cDNA plasmid', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM1895360': {'index': 'AR006', 'level': 'normal', 'barcode': 'GCCAAT', 'variation': 'lentiviral vector controls', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM1895363': {'index': 'AR013', 'level': 'high', 'barcode': 'AGTCAA', 'variation': 'WWTR1 cDNA plasmid', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM1895362': {'index': 'AR012', 'level': 'high', 'barcode': 'CTTGTA', 'variation': 'WWTR1 cDNA plasmid', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM1895365': {'line': 'WI38 lung fibroblast cells', 'treatment': 'none (control)'}, 'GSM1895364': {'index': 'AR014', 'level': 'high', 'barcode': 'AGTTCC', 'variation': 'WWTR1 cDNA plasmid', 'line': 'A375', 'type': 'melanoma cell line'}, 'GSM1895367': {'line': 'WI38 lung fibroblast cells', 'treatment': 'To induce heat stress, cells were incubated at 42°C in a waterbath for 4 hours'}, 'GSM1895366': {'line': 'WI38 lung fibroblast cells', 'treatment': 'RNA interference targeting BRD4 was performed using HiPerFect transfection reagent (Qiagen). Cells were then incubated for 72 hours.'}, 'GSM1895369': {'line': 'WI38 lung fibroblast cells', 'treatment': 'To induce heat stress, cells were incubated at 42°C in a waterbath for 4 hours'}, 'GSM1895368': {'line': 'WI38 lung fibroblast cells', 'treatment': 'RNA interference targeting BRD4 was performed using HiPerFect transfection reagent (Qiagen). Cells were then incubated for 72 hours. To induce heat stress, cells were incubated at 42°C in a waterbath for 4 hours.'}, 'GSM1464313': {'status': 'small cell lung cancer'}, 'GSM1914459': {'group': 'C116_NSC', 'region': 'C116', 'type': 'NSC'}, 'GSM1953964': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM999656': {'identifier': '2', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM999657': {'identifier': '2', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM999654': {'identifier': '1', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM999655': {'identifier': '1', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM999658': {'identifier': '3', 'type': 'monocyte-derived macrophages', 'treatment': 'mock'}, 'GSM999659': {'identifier': '3', 'type': 'monocyte-derived macrophages', 'treatment': 'West Nile virus (WNV)'}, 'GSM1493976': {'gender': 'female', 'age': '36 years-old', 'tissue': 'brain', 'condition': 'Multiple sclerosis'}, 'GSM1493974': {'gender': 'female', 'age': '36 years-old', 'tissue': 'brain', 'condition': 'Multiple sclerosis'}, 'GSM1493975': {'gender': 'female', 'age': '36 years-old', 'tissue': 'brain', 'condition': 'Multiple sclerosis'}, 'GSM2158058': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158059': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1899709': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899708': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM2158050': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158051': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158052': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158053': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158054': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158055': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158056': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158057': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2232102': {'status': 'yes', 'gender': 'male', 'age': '70', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IA'}, 'GSM2232101': {'status': 'yes', 'gender': 'male', 'age': '74', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IIIA'}, 'GSM2232100': {'status': 'yes', 'gender': 'male', 'age': '82', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IA'}, 'GSM1382027': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382026': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382025': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382024': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382023': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382022': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382021': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382020': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382029': {'line': 'H1', 'type': 'Embryonic stem cells', 'passage': '30-38'}, 'GSM1382028': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1385790': {'antibody': 'none (input)', 'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1953960': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM2437920': {'type': 'skin fibroblasts'}, 'GSM2437921': {'type': 'human iNSCs'}, 'GSM2437922': {'type': 'human iNSCs'}, 'GSM2437923': {'type': 'human iNSCs'}, 'GSM2437924': {'type': 'human iNSCs'}, 'GSM2437925': {'type': 'brain-derived neural progenitor cells'}, 'GSM2437926': {'type': 'brain-derived neural progenitor cells'}, 'GSM2437927': {'type': 'brain-derived neural progenitor cells'}, 'GSM2437928': {'type': 'brain-derived neural progenitor cells'}, 'GSM2653872': {'gender': 'M', 'passages': 'p16', 'type': 'Human liver tumoral cell'}, 'GSM2653873': {'gender': 'M', 'passages': 'p4', 'type': 'Human liver tumoral cell'}, 'GSM2653870': {'gender': 'F', 'passages': 'p20', 'type': 'Human liver tumoral cell'}, 'GSM2653871': {'gender': 'M', 'passages': 'p8', 'type': 'Human liver tumoral cell'}, 'GSM2653874': {'gender': 'M', 'passages': 'p10', 'type': 'Human liver tumoral cell'}, 'GSM1965413': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965412': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965411': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965410': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965417': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965416': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965415': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965414': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965419': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965418': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM2309629': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309628': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309623': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309622': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309621': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309620': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309627': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309626': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309625': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309624': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2679952': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM1880782': {'preparation': '5.16.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM2711213': {'tissue': 'Meningioma tumor'}, 'GSM2711212': {'tissue': 'Meningioma tumor'}, 'GSM2711211': {'tissue': 'Meningioma tumor'}, 'GSM2711210': {'tissue': 'Meningioma tumor'}, 'GSM2711217': {'tissue': 'Meningioma tumor'}, 'GSM2711216': {'tissue': 'Meningioma tumor'}, 'GSM2392258': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392259': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392256': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392257': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392254': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392255': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392252': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392253': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392250': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392251': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376165': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376164': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376167': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376166': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376161': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376160': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376163': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376162': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2635712': {'genotype': 'WT', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM1376169': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376168': {'state': 'COPD', 'tissue': 'lung'}, 'GSM3190657': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.328156'}, 'GSM3190656': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A51', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.988936'}, 'GSM3190655': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A51', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.243018'}, 'GSM3190654': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.13946'}, 'GSM3190653': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.819112'}, 'GSM3190652': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '6.971851'}, 'GSM3190651': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.701272'}, 'GSM3190650': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.791897'}, 'GSM3190659': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.982835'}, 'GSM3190658': {'boca': 'No', 'years': '17', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.332959'}, 'GSM2048877': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2158289': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158288': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2616653': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2515707': {'age': '12', 'state': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2490553': {'differentiation': '12', 'type': 'iPSC-derived neuronal cells (non-motoneurons)', 'genotype': 'FUS-WT'}, 'GSM2490550': {'differentiation': '12', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-WT'}, 'GSM2515704': {'age': '63', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2490556': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-WT'}, 'GSM2515702': {'age': '60', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2158281': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2515701': {'age': '60', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2158280': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2490555': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-WT'}, 'GSM2274929': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-21', 'trunkbarcode': '927496', 'sampleID': 'S32689', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9302', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9302', 'studysiteshort': 'UCSF'}, 'GSM2274928': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-20', 'trunkbarcode': '927496', 'sampleID': 'S32688', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9301', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9301', 'studysiteshort': 'UCSF'}, 'GSM2274927': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-19', 'trunkbarcode': '927496', 'sampleID': 'S32687', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9300', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9300', 'studysiteshort': 'UCSF'}, 'GSM2274926': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-18', 'trunkbarcode': '927496', 'sampleID': 'S32686', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9299', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9299', 'studysiteshort': 'UCSF'}, 'GSM2274925': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-17', 'trunkbarcode': '927496', 'sampleID': 'S32685', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9298', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9298', 'studysiteshort': 'UCSF'}, 'GSM2274924': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-16', 'trunkbarcode': '927496', 'sampleID': 'S32684', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9297', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9297', 'studysiteshort': 'UCSF'}, 'GSM2274923': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-15', 'trunkbarcode': '927496', 'sampleID': 'S32683', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9296', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9296', 'studysiteshort': 'UCSF'}, 'GSM2274922': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-13', 'trunkbarcode': '927496', 'sampleID': 'S32682', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9295', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'Unstimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9295', 'studysiteshort': 'UCSF'}, 'GSM2274921': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-12', 'trunkbarcode': '927496', 'sampleID': 'S32681', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9294', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'Unstimulated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9294', 'studysiteshort': 'UCSF'}, 'GSM2274920': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-11', 'trunkbarcode': '927496', 'sampleID': 'S32680', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9293', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'Unstimulated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9293', 'studysiteshort': 'UCSF'}, 'GSM2125719': {'cancer': 'gastritis/IM'}, 'GSM2125718': {'cancer': 'normal'}, 'GSM2125717': {'cancer': 'gastritis/IM'}, 'GSM2125716': {'cancer': 'gastritis/IM'}, 'GSM2125715': {'cancer': 'gastritis/IM'}, 'GSM2125714': {'cancer': 'gastritis/IM'}, 'GSM2125713': {'cancer': 'normal'}, 'GSM2125712': {'cancer': 'gastritis/IM'}, 'GSM2125711': {'cancer': 'gastritis/IM'}, 'GSM2125710': {'cancer': 'gastritis/IM'}, 'GSM2719864': {'transduction': 'shHBO1', 'line': 'UWB1.289'}, 'GSM1963810': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963813': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963812': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2719860': {'transduction': 'control', 'line': 'UWB1.289'}, 'GSM2719861': {'transduction': 'control', 'line': 'UWB1.289'}, 'GSM1963817': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963816': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963819': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963818': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2068657': {'line': 'MCF7', 'with': '10nM E2 for 4hr', 'passage': 'p9'}, 'GSM2341649': {'source': 'none', 'line': 'U2OS', 'RNAi': 'Nup153 RNAi', 'factor': 'none'}, 'GSM2341648': {'source': 'none', 'line': 'U2OS', 'RNAi': 'Nup153 RNAi', 'factor': 'none'}, 'GSM2407547': {'line': 'MDA-MB-231', 'treatment': 'scrambled siRNA'}, 'GSM2341641': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341640': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341643': {'source': 'H3K27ac (Abcam: ab4729, GR184557-2)', 'line': 'IMR90', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341642': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341645': {'source': 'none', 'line': 'IMR90', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341644': {'source': 'H3K4me3 (Abcam: ab8580, GR273043-2)', 'line': 'IMR90', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341647': {'source': 'none', 'line': 'U2OS', 'RNAi': 'Control RNAi', 'factor': 'none'}, 'GSM2341646': {'source': 'none', 'line': 'U2OS', 'RNAi': 'Control RNAi', 'factor': 'none'}, 'GSM2779269': {'line': 'M249', 'type': 'none', 'treatment': 'none'}, 'GSM2177866': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM2092989': {'bin': '28', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2455619': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2092983': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2455613': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455610': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2092980': {'bin': '3', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092987': {'bin': '28', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2092986': {'bin': '28', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': '16', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2092985': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092984': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1880784': {'preparation': '5.16.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM2177864': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '4'}, 'GSM3586540': {'origin': 'GCB', 'pfstt': '934', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1111', 'cycles': '8', 'oscs': '0'}, 'GSM2348738': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1202553': {'line': 'MDA-MB-231', 'rep': '1', 'point': '0'}, 'GSM2124048': {'type': 'Effector Memory T cells', 'id': 'HS60223'}, 'GSM2124049': {'type': 'Effector Memory T cells', 'id': 'LH097'}, 'GSM1202556': {'line': 'MDA-MB-231', 'rep': '4', 'point': '0'}, 'GSM1202557': {'line': 'MDA-MB-231', 'rep': '1', 'point': '2'}, 'GSM1202558': {'line': 'MDA-MB-231', 'rep': '2', 'point': '2'}, 'GSM1202559': {'line': 'MDA-MB-231', 'rep': '3', 'point': '2'}, 'GSM2124046': {'type': 'TEMRA', 'id': 'LH083'}, 'GSM2348731': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348736': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348737': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348734': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348735': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565036': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2565037': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2565034': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2565035': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM2565032': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2565033': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2565030': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565031': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM3711605': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C97JMANXX', 'years': '14'}, 'GSM3711604': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C97JMANXX', 'years': '8'}, 'GSM2304701': {'with': 'non-targeting control shRNA', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells', 'antibody': 'RNA Pol II antibody (Santa Cruz Biotechnology, sc-899)'}, 'GSM2304700': {'antibody': 'Menin antibody (Bethyl lab, A300-105A)', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells'}, 'GSM3711601': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'C97JMANXX', 'years': '9'}, 'GSM3711600': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '6'}, 'GSM2565038': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565039': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2132013': {'treatment': 'none'}, 'GSM2132014': {'treatment': 'FLX 10μg/l; VNX 50μg/l; CBZ 100μg/l'}, 'GSM2132015': {'treatment': 'VPA: 0.035mM'}, 'GSM1234211': {'replicate': '1', 'line': '2630', 'antibody': 'Input'}, 'GSM2306703': {'type': 'T cells', 'infection': 'HIV1', 'time': '5d'}, 'GSM2306702': {'type': 'T cells', 'infection': 'control', 'time': '5d'}, 'GSM2526769': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526768': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2243601': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2397378': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2397379': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2526763': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526762': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2397374': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2526760': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2397372': {'status': 'RA patient', 'group': 'Newly diagnosed RA', 'treatment': 'NO'}, 'GSM2397373': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2397370': {'status': 'RA patient', 'group': 'Newly diagnosed RA', 'treatment': 'NO'}, 'GSM2526764': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2046861': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me3 (5ug Abcam, AB8580)', 'agasga': 'SGA'}, 'GSM2046860': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me1 (2ug Abcam, AB8895)', 'agasga': 'AGA'}, 'GSM2046863': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me3 (5ug Abcam, AB8580)', 'agasga': 'SGA'}, 'GSM2046862': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me3 (5ug Abcam, AB8580)', 'agasga': 'SGA'}, 'GSM2046865': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me3 (5ug Abcam, AB8580)', 'agasga': 'AGA'}, 'GSM2046864': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me3 (5ug Abcam, AB8580)', 'agasga': 'AGA'}, 'GSM2046867': {'type': 'Mesenchymal stem cells', 'antibody': 'none', 'agasga': 'SGA'}, 'GSM2046866': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me3 (5ug Abcam, AB8580)', 'agasga': 'AGA'}, 'GSM2046869': {'type': 'Mesenchymal stem cells', 'antibody': 'none', 'agasga': 'SGA'}, 'GSM2046868': {'type': 'Mesenchymal stem cells', 'antibody': 'none', 'agasga': 'SGA'}, 'GSM2112755': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': 'Vehicle', 'time': '48 Hours'}, 'GSM2112754': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '24 Hours'}, 'GSM2112757': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10 nM R5020', 'time': '48 Hours'}, 'GSM2112756': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '48 Hours'}, 'GSM2112751': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': 'Vehicle', 'time': '24 Hours'}, 'GSM2112750': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '24 Hours'}, 'GSM2112753': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10 nM R5020', 'time': '24 Hours'}, 'GSM2112752': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '24 Hours'}, 'GSM1700949': {'line': 'HCT116'}, 'GSM2112759': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': 'Vehicle', 'time': '48 Hours'}, 'GSM2112758': {'status': 'ER+/PR-', 'type': 'ER+/PR- Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '48 Hours'}, 'GSM2889086': {'tissue': 'pancreatic islets'}, 'GSM2889087': {'tissue': 'pancreatic islets'}, 'GSM2889084': {'tissue': 'pancreatic islets'}, 'GSM2889085': {'tissue': 'pancreatic islets'}, 'GSM2889082': {'tissue': 'pancreatic islets'}, 'GSM2889083': {'tissue': 'pancreatic islets'}, 'GSM2889080': {'tissue': 'pancreatic islets'}, 'GSM2889081': {'tissue': 'pancreatic islets'}, 'GSM2889088': {'tissue': 'pancreatic islets'}, 'GSM2889089': {'tissue': 'pancreatic islets'}, 'GSM1288871': {'with': 'miR-16 (final conc. of 50nM)', 'type': 'HeLa-229 cells', 'time': '72h post-transfection'}, 'GSM1288870': {'with': 'miR-15a (final conc. of 50nM)', 'type': 'HeLa-229 cells', 'time': '72h post-transfection'}, 'GSM1288873': {'type': 'HeLa-229 cells', 'infection': 'mock'}, 'GSM1288872': {'with': 'miR-503 (final conc. of 50nM)', 'type': 'HeLa-229 cells', 'time': '72h post-transfection'}, 'GSM1288875': {'type': 'HeLa-229 cells', 'infection': 'mock'}, 'GSM1288874': {'type': 'HeLa-229 cells', 'infection': 'mock'}, 'GSM1288877': {'type': 'HeLa-229 cells', 'infection': 'Salmonella Typhimurium, MOI 100'}, 'GSM1288876': {'type': 'HeLa-229 cells', 'infection': 'Salmonella Typhimurium, MOI 100'}, 'GSM1435820': {'type': 'Monocyte-derived denditric cells'}, 'GSM1288878': {'type': 'HeLa-229 cells', 'infection': 'Salmonella Typhimurium, MOI 100'}, 'GSM1435822': {'type': 'Monocyte-derived denditric cells'}, 'GSM1435823': {'type': 'Monocyte-derived denditric cells'}, 'GSM1435824': {'type': 'Monocyte-derived denditric cells'}, 'GSM1435825': {'type': 'Monocyte-derived denditric cells'}, 'GSM1435826': {'type': 'Monocyte-derived denditric cells'}, 'GSM2113402': {'with': 'PROX1 siRNA (Sigma)', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113403': {'with': 'PROX1 siRNA (Sigma)', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113400': {'with': 'non-targeting siRNA', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113401': {'with': 'PROX1 siRNA (Sigma)', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113406': {'with': 'PROX1 siRNA (Scruz)', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113404': {'with': 'PROX1 siRNA (Scruz)', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2113405': {'with': 'PROX1 siRNA (Scruz)', 'line': 'CGTH-W-1', 'type': 'follicular thyroid carcinoma cells'}, 'GSM2125173': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Dexamethasone', 'time': '60 minutes'}, 'GSM2125172': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Estradiol', 'time': '75 minutes'}, 'GSM1380870': {'type': 'Primary fibroblast', 'mutation': 'TREX2'}, 'GSM2449220': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'overexpressing LIN28A'}, 'GSM2449221': {'culture': 'Day 14 Culture', 'type': 'CD34+ Cells', 'variation': 'overexpressing LIN28A'}, 'GSM2046893': {'sirna': 'scramble', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM1395610': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395611': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395612': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395613': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395614': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395615': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395616': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395617': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1298382': {'tissue': '3-dimensional neuronal aggregates that resemble a first trimester telencephalon', 'group': '39C for 24 hrs'}, 'GSM1395619': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1298380': {'tissue': '3-dimensional neuronal aggregates that resemble a first trimester telencephalon', 'group': '37C control'}, 'GSM1298381': {'tissue': '3-dimensional neuronal aggregates that resemble a first trimester telencephalon', 'group': '39C for 24 hrs'}, 'GSM2643626': {'antibody': 'H3K4me3 (Abcam ab8580)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9(B)_HA'}, 'GSM2643627': {'antibody': 'N/A', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9(B)_HA'}, 'GSM2643624': {'antibody': 'H3K4me3 (Abcam ab8580)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM2643625': {'antibody': 'H3K4me3 (Abcam ab8580)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9(B)_HA'}, 'GSM2643622': {'antibody': 'H3K36me3 (ab9050)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9(B)_HA'}, 'GSM2643623': {'antibody': 'H3K4me3 (Abcam ab8580)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM2643620': {'antibody': 'V5 (ab9116)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9(B)_V5'}, 'GSM2643621': {'antibody': 'H3K36me3 (ab9050)', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'None'}, 'GSM2643628': {'antibody': 'N/A', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'PRDM9 (no ZF array)'}, 'GSM2643629': {'antibody': 'N/A', 'line': 'HEK293T (ATCC CRL-3216)', 'with': 'HumanPRDM9 (B allele ZF array only)'}, 'GSM2081491': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081490': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081493': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081492': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081495': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081494': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081497': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081496': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2883017': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject13', 'drug': 'Metformin'}, 'GSM2883016': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject13', 'drug': 'Metformin'}, 'GSM2883015': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject13', 'drug': 'Metformin'}, 'GSM2883014': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject12', 'drug': 'Metformin'}, 'GSM2883013': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject12', 'drug': 'Metformin'}, 'GSM2883012': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject12', 'drug': 'Metformin'}, 'GSM2883011': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject12', 'drug': 'Metformin'}, 'GSM2883010': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject11', 'drug': 'Metformin'}, 'GSM3526879': {'tissue': 'placenta', 'type': 'Cytotrophoblast', 'Stage': 'Term'}, 'GSM1704564': {'protocol': '6 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704565': {'protocol': '12 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2362499': {'line': 'HEK293'}, 'GSM2362498': {'line': 'HEK293'}, 'GSM2362493': {'line': 'HEK293'}, 'GSM2362492': {'line': 'HEK293'}, 'GSM2362491': {'line': 'HEK293'}, 'GSM2362490': {'line': 'HEK293'}, 'GSM1354442': {'treatment': 'none'}, 'GSM2362496': {'line': 'HEK293'}, 'GSM2362495': {'line': 'HEK293'}, 'GSM2362494': {'line': 'HEK293'}, 'GSM3417899': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM2816228': {'line': 'H9'}, 'GSM2816229': {'line': 'H9'}, 'GSM2648132': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'Control', 'time': '3 weeks'}, 'GSM2648131': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'CDB4124', 'time': '3 weeks'}, 'GSM2648130': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': '4124+Tamoxifen', 'time': '3 weeks'}, 'GSM2816222': {'line': 'H9'}, 'GSM2816223': {'line': 'H9'}, 'GSM2535710': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1180', 'samplename': '1gr_413CD3_C73', 'seqsite': 'BRI', 'sampleID': 'S13307', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1180', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C73'}, 'GSM2816221': {'line': 'H9'}, 'GSM2816226': {'line': 'H9'}, 'GSM2816227': {'line': 'H9'}, 'GSM2816224': {'line': 'H9'}, 'GSM2816225': {'line': 'H9'}, 'GSM2932810': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '8'}, 'GSM2932811': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '17'}, 'GSM2932812': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '16'}, 'GSM2932813': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '14'}, 'GSM2932814': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '16'}, 'GSM2932815': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '9'}, 'GSM2932816': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '9'}, 'GSM2932817': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '17'}, 'GSM2932818': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '11'}, 'GSM2932819': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '11'}, 'GSM2212701': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2501180': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3K27M; Tp53 mut; High Pdgfra'}, 'GSM2501181': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3K27M; Tp53 mut; High Pdgfra'}, 'GSM2501182': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3K27M; Tp53 mut; High Pdgfra'}, 'GSM2501183': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3K27M; Tp53 mut; High Pdgfra'}, 'GSM2501184': {'status': 'pediatric brain tumor patient', 'tissue': 'pediatric high-grade gliomas (pHGG)', 'variation': 'H3.3K27M; Tp53 mut; High Pdgfra'}, 'GSM2672036': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM2108581': {'stages': 'mononucleated cell nucleus'}, 'GSM2108580': {'stages': 'mononucleated cell nucleus'}, 'GSM2326220': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'eHDAC6-Guide'}, 'GSM2326221': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'eHDAC6-Guide'}, 'GSM2326222': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'eHDAC6-Guide'}, 'GSM2326223': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'eHDAC6-Guide'}, 'GSM2339264': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339265': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305845': {'tissue': 'colon'}, 'GSM2305844': {'tissue': 'colon'}, 'GSM2287198': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2339261': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2056802': {'shRNA': 'TDP43', 'type': 'Motor Neuron', 'variation': 'TDP43 Knockdown'}, 'GSM2056803': {'shRNA': 'TDP43', 'type': 'Motor Neuron', 'variation': 'TDP43 Knockdown'}, 'GSM2056800': {'shRNA': 'TAF15', 'type': 'Motor Neuron', 'variation': 'TAF15 Knockdown'}, 'GSM2056801': {'shRNA': 'TAF15', 'type': 'Motor Neuron', 'variation': 'TAF15 Knockdown'}, 'GSM2056806': {'type': 'Motor Neuron', 'variation': 'FUS R521G'}, 'GSM2056807': {'type': 'Motor Neuron', 'variation': 'WT'}, 'GSM2056804': {'type': 'Motor Neuron', 'variation': 'FUS R521G'}, 'GSM2056805': {'type': 'Motor Neuron', 'variation': 'FUS R521G'}, 'GSM2056808': {'type': 'Motor Neuron', 'variation': 'WT'}, 'GSM2056809': {'shRNA': 'scramble', 'type': 'Motor Neuron', 'variation': 'WT'}, 'GSM1922944': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'NA', 'treatment': 'none'}, 'GSM2944162': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP and HOTAIR overexpression', 'background': 'hTERT-hMSC'}, 'GSM2370629': {'state': '15 hrs activated with anti-CD3/28 beads', 'type': 'TEM CD4 purified cells', 'ids': '403'}, 'GSM2370628': {'state': '150 min activated with anti-CD3/28 beads', 'type': 'TEM CD4 purified cells', 'ids': '402'}, 'GSM2370623': {'state': '40 min activated with anti-CD3/28 beads', 'type': 'TCM CD4 purified cells', 'ids': '397'}, 'GSM2370622': {'state': 'resting', 'type': 'TCM CD4 purified cells', 'ids': '396'}, 'GSM2370621': {'state': '15 hrs activated with anti-CD3/28 beads', 'type': 'naive CD4 purified cells', 'ids': '407'}, 'GSM2370620': {'state': '150 min activated with anti-CD3/28 beads', 'type': 'naive CD4 purified cells', 'ids': '406'}, 'GSM2370627': {'state': '40 min activated with anti-CD3/28 beads', 'type': 'TEM CD4 purified cells', 'ids': '401'}, 'GSM2370626': {'state': 'resting', 'type': 'TEM CD4 purified cells', 'ids': '400'}, 'GSM2370625': {'state': '15 hrs activated with anti-CD3/28 beads', 'type': 'TCM CD4 purified cells', 'ids': '399'}, 'GSM2370624': {'state': '150 min activated with anti-CD3/28 beads', 'type': 'TCM CD4 purified cells', 'ids': '398'}, 'GSM1126612': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM2944165': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP and HOTAIR overexpression', 'background': 'hTERT-hMSC'}, 'GSM1126613': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126614': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM2672038': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM2285786': {'status': 'healthy volunteer', 'gender': 'female', 'age': '64', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1142685': {'tissue': \"Wharton's jelly of umbilical cord\", 'type': 'mesenchymal stem cells', 'passage': '<10'}, 'GSM1142684': {'tissue': 'bone marrow', 'type': 'mesenchymal stem cells', 'passage': '<10'}, 'GSM1142687': {'tissue': 'bone marrow', 'type': 'mesenchymal stem cells', 'passage': '<10'}, 'GSM1142686': {'tissue': 'bone marrow', 'type': 'mesenchymal stem cells', 'passage': '<10'}, 'GSM2550407': {'donor': 'D', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'male'}, 'GSM1126616': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM2550405': {'donor': 'D', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'male'}, 'GSM2550404': {'donor': 'D', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'male'}, 'GSM2550409': {'donor': 'D', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'male'}, 'GSM1126617': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM2944164': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP and HOTAIR overexpression', 'background': 'hTERT-hMSC'}, 'GSM2806898': {'phase': 'G1', 'line': 'HeLa'}, 'GSM2806899': {'phase': 'G1', 'line': 'HeLa'}, 'GSM1642297': {'tissue': 'Frontal Cortex', 'genotype': 'sALS'}, 'GSM2806897': {'phase': 'G1', 'line': 'HeLa'}, 'GSM1834797': {'line': 'HepaRG', 'agent': 'DMSO', 'variation': 'WT'}, 'GSM1834796': {'line': 'HepaRG', 'agent': 'DMSO', 'variation': 'WT'}, 'GSM1834799': {'line': 'HepaRG', 'agent': 'PB', 'variation': 'WT'}, 'GSM1834798': {'line': 'HepaRG', 'agent': 'PB', 'variation': 'WT'}, 'GSM2666138': {'age': 'Day 130', 'well': 'E5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1642298': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM3594509': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594508': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594507': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594506': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594505': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594504': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594503': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594502': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594501': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594500': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM2176090': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176091': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176092': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176093': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176094': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176095': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176096': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176097': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176098': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176099': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2048672': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048673': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048670': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048671': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048676': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048677': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048674': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048675': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2607594': {'line': 'WA26'}, 'GSM2607595': {'line': 'WA26'}, 'GSM2607596': {'line': 'WA26'}, 'GSM2607597': {'line': 'WA26'}, 'GSM2607590': {'line': 'WA26'}, 'GSM2607591': {'line': 'WA26'}, 'GSM2607592': {'line': 'WA26'}, 'GSM2607593': {'line': 'WA26'}, 'GSM2141346': {'individual': 'EU42', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2231157': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM2218634': {'with': '+UV (Recovery time=1.5h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-hypo'}, 'GSM2231159': {'tissue': 'skin', 'type': 'actinic keratosis (AK)'}, 'GSM2231158': {'tissue': 'skin', 'type': 'nonlesional,chronically UV-exposed skin (NS)'}, 'GSM2451133': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451132': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451131': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451130': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100055': {'rin': '10', 'Sex': 'Male', 'sspg': '97', 'age': '65', 'bmi': '31.1', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '22615', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '313', 'method': 'Life-Tech GITC'}, 'GSM2100054': {'rin': '9.4', 'Sex': 'Female', 'sspg': '199', 'age': '72', 'bmi': '29.6', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '307', 'method': 'Qiagen:trizol'}, 'GSM2100057': {'rin': '10', 'Sex': 'Male', 'sspg': '97', 'age': '65', 'bmi': '31.1', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '22615', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '313', 'method': 'Life-Tech GITC'}, 'GSM2100056': {'rin': '10', 'Sex': 'Male', 'sspg': '97', 'age': '65', 'bmi': '31.1', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '22615', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '313', 'method': 'Life-Tech GITC'}, 'GSM2100059': {'rin': '9.5', 'Sex': 'Female', 'sspg': '115', 'age': '66', 'bmi': '36.5', 'batch': '1-80', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '334', 'method': 'Life-Tech GITC'}, 'GSM2100058': {'rin': '10', 'Sex': 'Female', 'sspg': '115', 'age': '66', 'bmi': '36.5', 'batch': '1-80', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '334', 'method': 'Life-Tech GITC'}, 'GSM2451139': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451138': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2218630': {'with': 'NO UV (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser5P'}, 'GSM1071856': {'knockdown': 'LMO2', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM2141340': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141341': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2576208': {'tissue': 'breast cancer xenograft'}, 'GSM1233886': {'replicate': '2', 'line': '10847', 'antibody': 'SA1'}, 'GSM1233887': {'replicate': '1', 'line': '12878', 'antibody': 'CTCF'}, 'GSM2287108': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2409869': {'culture': '4 weeks', 'tissue': 'iPSC derived colonic organoids', 'variation': 'wt'}, 'GSM2141348': {'individual': 'EU42', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2274702': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32751', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9341', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C65', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9341', 'studysiteshort': 'UCSF'}, 'GSM2141349': {'individual': 'EU46', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2274701': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32749', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9339', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C59', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9339', 'studysiteshort': 'UCSF'}, 'GSM2274700': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32748', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9338', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C48', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9338', 'studysiteshort': 'UCSF'}, 'GSM2274707': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32758', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9348', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C43', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9348', 'studysiteshort': 'UCSF'}, 'GSM2274706': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32757', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9347', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C31', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9347', 'studysiteshort': 'UCSF'}, 'GSM2274705': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32756', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9346', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C15', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9346', 'studysiteshort': 'UCSF'}, 'GSM2666132': {'age': 'Day 130', 'well': 'H11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2274704': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32753', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9343', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C94', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9343', 'studysiteshort': 'UCSF'}, 'GSM2068758': {'line': 'NHEK'}, 'GSM2068757': {'line': 'NHEK'}, 'GSM2068756': {'line': 'NHEK'}, 'GSM2068755': {'line': 'NHEK'}, 'GSM2068754': {'line': 'U2OS AID-DlvA'}, 'GSM2068753': {'line': 'HeLa'}, 'GSM2666131': {'age': 'Day 130', 'well': 'H1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000288'}, 'GSM1071852': {'knockdown': 'AML1-ETO', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM2230406': {'type': 'fetal-derived neural progenitor cells', 'genotype': 'TRIM-28 KD'}, 'GSM2230407': {'type': 'fetal-derived neural progenitor cells', 'genotype': 'TRIM-28 KD'}, 'GSM2136847': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 3 days, AF9 Knock Down', 'batch': '1'}, 'GSM2230409': {'type': 'iPS-derived neural progenitor cells', 'genotype': 'TRIM-28 KD'}, 'GSM2142334': {'medium': 'not cultured', 'treatment': 'primary tissue', 'population': 'cd34+90-43+'}, 'GSM2142335': {'medium': 'not cultured', 'treatment': 'primary tissue', 'population': 'CD34+90+43+'}, 'GSM2142332': {'medium': 'not cultured', 'treatment': 'primary tissue', 'population': 'cd34+90+43+'}, 'GSM2142333': {'medium': 'not cultured', 'treatment': 'primary tissue', 'population': 'cd34+90+43-'}, 'GSM2142330': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'Rx+sox-34+90+(45lo)'}, 'GSM2142331': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'Rx-sox+34++90+(45-)'}, 'GSM1464291': {'status': 'small cell lung cancer'}, 'GSM1464290': {'status': 'small cell lung cancer'}, 'GSM1464293': {'status': 'small cell lung cancer'}, 'GSM1464292': {'status': 'small cell lung cancer'}, 'GSM1464295': {'status': 'small cell lung cancer'}, 'GSM1464294': {'status': 'small cell lung cancer'}, 'GSM1464297': {'status': 'small cell lung cancer'}, 'GSM1464296': {'status': 'small cell lung cancer'}, 'GSM1464299': {'status': 'small cell lung cancer'}, 'GSM1464298': {'status': 'small cell lung cancer'}, 'GSM2807389': {'tissue': 'Hepatoblastoma cell line', 'type': 'cell line'}, 'GSM651549': {'antibody': 'none', 'condition': 'BRG1 KD shLuc control'}, 'GSM651548': {'antibody': 'none', 'condition': 'CD34 WT'}, 'GSM651547': {'vendor': 'Abcam', 'antibody': 'Anti-GATA1', 'condition': 'BRG1 KD shLuc control'}, 'GSM651546': {'vendor': 'Abcam', 'antibody': 'Anti-GATA1', 'condition': 'BRG1 RNAi KD'}, 'GSM651545': {'vendor': 'Santa cruz biotechnology', 'antibody': 'Anti-TAL1(C-21)', 'condition': 'BRG1 KD shLuc control'}, 'GSM651544': {'vendor': 'Santa cruz biotechnology', 'antibody': 'Anti-TAL1(C-21)', 'condition': 'BRG1 RNAi KD'}, 'GSM651543': {'vendor': 'Upstate', 'antibody': 'Anti-CTCF', 'condition': 'BRG1 RNAi KD'}, 'GSM651542': {'vendor': 'Upstate', 'antibody': 'Anti-CTCF', 'condition': 'BRG1 KD shLuc control'}, 'GSM651541': {'vendor': 'Upstate', 'antibody': 'Anti-CTCF', 'condition': 'CD34 WT'}, 'GSM2453575': {'tissue': 'HUVEC'}, 'GSM2453574': {'tissue': 'HUVEC'}, 'GSM2453571': {'tissue': 'HUVEC'}, 'GSM2453570': {'tissue': 'H1-EC2'}, 'GSM2453573': {'tissue': 'HUVEC'}, 'GSM2453572': {'tissue': 'HUVEC'}, 'GSM855977': {'vendor': 'Cell Signaling (5546) with lot number #1', 'antibody': 'anti-H2Bub', 'line': 'siEGFP-transfected NCCIT', 'type': 'embryonic carcinoma cells'}, 'GSM2754179': {'with': 'shRNA Clone TRCN0000005418 to knockdown RIOK3 gene expression', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2754178': {'with': 'shRNA Clone TRCN0000005418 to knockdown RIOK3 gene expression', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM715467': {'tissue': 'extraskeletal myxoid chondrosarcoma', 'method': 'FFPE'}, 'GSM715466': {'tissue': 'extraskeletal myxoid chondrosarcoma', 'method': 'FFPE'}, 'GSM715465': {'tissue': \"Ewing's sarcoma\", 'method': 'FFPE'}, 'GSM715464': {'tissue': \"Ewing's sarcoma\", 'method': 'FFPE'}, 'GSM715463': {'tissue': \"Ewing's sarcoma\", 'method': 'FFPE'}, 'GSM715462': {'tissue': \"Ewing's sarcoma\", 'method': 'FFPE'}, 'GSM715461': {'tissue': 'endometrial stromal sarcoma', 'method': 'FFPE'}, 'GSM715460': {'tissue': 'endometrial stromal sarcoma', 'method': 'FFPE'}, 'GSM1492944': {'line': 'A673', 'type': \"Ewing's sarcoma\"}, 'GSM1492945': {'line': 'A673', 'type': \"Ewing's sarcoma\"}, 'GSM1492946': {'line': 'A673', 'type': \"Ewing's sarcoma\"}, 'GSM1492940': {'age': '16 years old', 'tissue': 'primary bone marrow derived mesenchymal progenitor cells'}, 'GSM1492941': {'age': '13 years old', 'tissue': 'primary bone marrow derived mesenchymal progenitor cells'}, 'GSM1492942': {'age': '13 years old', 'tissue': 'primary bone marrow derived mesenchymal progenitor cells'}, 'GSM1492943': {'line': 'A673', 'type': \"Ewing's sarcoma\"}, 'GSM1919379': {'status': 'Treatment-naïve', 'patient': 'Patient 08', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1919378': {'status': 'Treatment-naïve', 'patient': 'Patient 08', 'tissue': 'Colonic mucosa', 'type': 'Whole tissue', 'diagnosis': 'normal'}, 'GSM1919371': {'status': 'Treatment-naïve', 'patient': 'Patient 20', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919370': {'status': 'Treatment-naïve', 'patient': 'Patient 20', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919373': {'status': 'Treatment-naïve', 'patient': 'Patient 21', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919372': {'status': 'Treatment-naïve', 'patient': 'Patient 20', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919375': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1919374': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'Colonic mucosa', 'type': 'Whole tissue', 'diagnosis': 'normal'}, 'GSM1919377': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1919376': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM2509540': {'source': 'mammary gland/breast', 'line': 'MDA-MB-231', 'with': 'BETi-211 (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509541': {'source': 'mammary gland/breast', 'line': 'MDA-MB-231', 'with': 'BETd-246 (100 nmol/L) for 3 hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509542': {'source': 'mammary gland/breast', 'line': 'MDA-MB-231', 'with': 'BETd-246 (100 nmol/L) for 3 hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM1593042': {'type': 'aortic vascular smooth muscle cells', 'treatment': 'Cytosolic Hsp60 normal and TNF-alpha negative'}, 'GSM1308595': {'line': 'HeLa'}, 'GSM2137719': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'AZ1366 Treated'}, 'GSM2141689': {'individual': 'EU276', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141688': {'individual': 'EU276', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141687': {'individual': 'EU274', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141686': {'individual': 'EU274', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141685': {'individual': 'EU274', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2137717': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'AZ1366 Treated'}, 'GSM2141683': {'individual': 'EU272', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141682': {'individual': 'EU272', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2137712': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib Treated'}, 'GSM2137713': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib Treated'}, 'GSM1921818': {'replicate': '2', 'line': 'MCF10A', 'sirna': 'siLATS1/2/p53'}, 'GSM1921817': {'replicate': '1', 'line': 'MCF10A', 'sirna': 'siLATS1/2/p53'}, 'GSM1921816': {'replicate': '2', 'line': 'MCF10A', 'sirna': 'sip53'}, 'GSM1921815': {'replicate': '1', 'line': 'MCF10A', 'sirna': 'sip53'}, 'GSM1921814': {'replicate': '2', 'line': 'MCF10A', 'sirna': 'siLATS1/2'}, 'GSM1921813': {'replicate': '1', 'line': 'MCF10A', 'sirna': 'siLATS1/2'}, 'GSM1921812': {'replicate': '2', 'line': 'MCF10A', 'sirna': 'siControl'}, 'GSM1921811': {'replicate': '1', 'line': 'MCF10A', 'sirna': 'siControl'}, 'GSM2754799': {'bin': '9', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '01_0673', 'previousdiagnosisoftb': 'No', 'tst': '15.5', 'type': 'Tcells'}, 'GSM2754798': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0424', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2535663': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1126', 'samplename': '1_413UNST_C85', 'seqsite': 'BRI', 'sampleID': 'S13209', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1126', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C85'}, 'GSM2754791': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0414', 'previousdiagnosisoftb': 'No', 'tst': '23', 'type': 'Tcells'}, 'GSM2754790': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0177', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754793': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0226', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754792': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_1073', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754795': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0290', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754794': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0425', 'previousdiagnosisoftb': 'No', 'tst': '22', 'type': 'Tcells'}, 'GSM2754797': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0236', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754796': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': '13', 'type': 'Tcells'}, 'GSM1545549': {'count': '3', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545548': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM2535666': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1129', 'samplename': '1_413UNST_C18', 'seqsite': 'BRI', 'sampleID': 'S13236', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1129', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C18'}, 'GSM1545547': {'count': '3', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545546': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM2535667': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1131', 'samplename': '1_413UNST_C05', 'seqsite': 'BRI', 'sampleID': 'S13195', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1131', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C05'}, 'GSM2241547': {'batch': 'A', 'condition': 'Disomic'}, 'GSM2816174': {'line': 'H9'}, 'GSM2816175': {'line': 'H9'}, 'GSM2241549': {'batch': 'A', 'condition': 'Disomic'}, 'GSM2241548': {'batch': 'A', 'condition': 'Disomic'}, 'GSM2816178': {'line': 'H9'}, 'GSM2816179': {'line': 'H9'}, 'GSM1545084': {'type': 'gastric cancer tumor', 'class': 'IIIA', 'location': 'Body'}, 'GSM1545085': {'type': 'gastric cancer tumor', 'class': 'IIIA', 'location': 'Proximal'}, 'GSM1545088': {'type': 'gastric cancer tumor', 'class': 'IA', 'location': 'Body'}, 'GSM2283969': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells by differentiation on Laminin411-coated dish', 'day': 'day7'}, 'GSM2283968': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells by differentiation on Laminin411-coated dish', 'day': 'day7'}, 'GSM2494158': {'with': 'none (untreated control)', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM2494159': {'with': '15nM E7107 for 6hrs', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM2283961': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day0'}, 'GSM2283963': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day0'}, 'GSM2283962': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day0'}, 'GSM2283965': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells, control', 'day': 'day7'}, 'GSM2283964': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells, control', 'day': 'day7'}, 'GSM2283967': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells by differentiation on Laminin411-coated dish', 'day': 'day7'}, 'GSM2283966': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells, control', 'day': 'day7'}, 'GSM2212749': {'gender': 'male', 'condition': 'control'}, 'GSM2212748': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2664081': {'status': 'p53-/-', 'identifier': 'P4902_1020', 'type': 'polysome-associated RNA', 'method': 'Linear gradient', 'background': 'HCT116'}, 'GSM2212742': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2664083': {'status': 'p53-/-', 'identifier': 'P4902_1022', 'type': 'polysome-associated RNA', 'method': 'Optimized non-linear gradient', 'background': 'HCT116'}, 'GSM2212740': {'gender': 'male', 'condition': 'Ulcerative Colitis'}, 'GSM2664085': {'status': 'p53-/-', 'identifier': 'P4902_1024', 'type': 'cytosolic RNA', 'method': 'NA', 'background': 'HCT116'}, 'GSM2212746': {'gender': 'female', 'condition': 'control'}, 'GSM2212745': {'gender': 'male', 'condition': 'control'}, 'GSM2212744': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM3020699': {'passages': '15-20', 'type': 'HFF', 'infection': 'HCMV', 'time': '72h'}, 'GSM3020698': {'passages': '15-20', 'type': 'HFF', 'infection': 'HCMV', 'time': '72h'}, 'GSM3020697': {'passages': '15-20', 'type': 'HFF', 'infection': 'HCMV', 'time': '24h'}, 'GSM3020696': {'passages': '15-20', 'type': 'HFF', 'infection': 'HCMV', 'time': '24h'}, 'GSM3020695': {'passages': '15-20', 'type': 'HFF', 'infection': 'HCMV', 'time': '24h'}, 'GSM3020694': {'passages': '15-20', 'type': 'HFF', 'infection': 'control', 'time': '0h'}, 'GSM3020693': {'passages': '15-20', 'type': 'HFF', 'infection': 'control', 'time': '0h'}, 'GSM3020692': {'passages': '15-20', 'type': 'HFF', 'infection': 'control', 'time': '0h'}, 'GSM1652616': {'induction': 'Day 67', 'type': 'GFP positive neural retina cells'}, 'GSM1652617': {'induction': 'Day 90', 'type': 'GFP positive neural retina cells'}, 'GSM1652614': {'induction': 'Day 67', 'type': 'GFP positive neural retina cells'}, 'GSM1652615': {'induction': 'Day 67', 'type': 'GFP positive neural retina cells'}, 'GSM1652612': {'induction': 'Day 47', 'type': 'GFP positive neural retina cells'}, 'GSM1652613': {'induction': 'Day 47', 'type': 'GFP positive neural retina cells'}, 'GSM1652610': {'induction': 'Day 37', 'type': 'GFP positive neural retina cells'}, 'GSM1652611': {'induction': 'Day 47', 'type': 'GFP positive neural retina cells'}, 'GSM2248255': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM1571077': {'stage': 'mesoderm'}, 'GSM1652618': {'induction': 'Day 90', 'type': 'GFP positive neural retina cells'}, 'GSM1652619': {'induction': 'Day 90', 'type': 'GFP positive neural retina cells'}, 'GSM1722606': {'antibody': 'H3K4me3', 'variation': 'WT'}, 'GSM2230685': {'line': 'HMLE-Ras; Cell type: Human mammary epithelial cell line; Transformation stage: Tumorigenic'}, 'GSM1980337': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980336': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980335': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980334': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980333': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980332': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980331': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980330': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980339': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980338': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2360161': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing G-actin and YAP binding deficient (dPY) MRTFB mutant'}, 'GSM1969369': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Trunk wall'}, 'GSM1969368': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Gyneacological area'}, 'GSM1969361': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM1969360': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM1969363': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM1969362': {'metastasis': 'No', 'fusion': 'Yes', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Lower limb'}, 'GSM1969365': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Trunk wall'}, 'GSM1969364': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1969367': {'metastasis': 'No', 'fusion': 'No', 'type': 'Low grade fibromyxoid sarcoma', 'localization': 'Trunk wall'}, 'GSM1969366': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM602576': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T4N0M0'}, 'GSM2392594': {'treatment': 'Estrogen', 'genotype': 'Wild type'}, 'GSM602574': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T2N0M0'}, 'GSM2392596': {'treatment': 'Estrogen', 'genotype': 'Wild type'}, 'GSM2392591': {'treatment': 'Vehicle', 'genotype': 'D538G'}, 'GSM2392590': {'treatment': 'Vehicle', 'genotype': 'D538G'}, 'GSM602570': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T1N0M0'}, 'GSM602571': {'tissue': 'kidney normal'}, 'GSM2392599': {'treatment': 'Estrogen', 'genotype': 'Y537S'}, 'GSM2392598': {'treatment': 'Estrogen', 'genotype': 'Y537S'}, 'GSM3190752': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.90971'}, 'GSM3190753': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.288211'}, 'GSM3190750': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.947831'}, 'GSM3190751': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.132055'}, 'GSM3190756': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.315893'}, 'GSM3190757': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.294311'}, 'GSM3190754': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.887785'}, 'GSM3190755': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.694815'}, 'GSM3190758': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.770679'}, 'GSM3190759': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-Cpat24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.983508'}, 'GSM931734': {'status': 'Non-atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931733': {'status': 'Non-atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931732': {'status': 'Non-atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931731': {'status': 'Non-atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931730': {'status': 'Non-atopic healthy control', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM2535956': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6758', 'samplename': '1_Ctl_RO+_C46', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30121', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6758', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C46'}, 'GSM1323749': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '3', 'reads': '114,205,668', 'tissue': 'prostate', 'u': '26.0', 'mapped': '62.0%', 'id': 'VA-PC-96-44', 'bcr': '1'}, 'GSM1323748': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '9.1', 'reads': '138,708,238', 'tissue': 'prostate', 'u': '48.9', 'mapped': '61.1%', 'id': 'VA-PC-96-43', 'bcr': '1'}, 'GSM1323743': {'tgleason': '8', 'race': 'W', 'score': '448', 'sms': 'Positive', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '14.8', 'reads': '80,420,126', 'tissue': 'prostate', 'u': '1.6', 'mapped': '74.4%', 'id': 'VA-PC-94-71', 'bcr': '1'}, 'GSM1323742': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Positive', 'pstage': 'pT2', 'site': 'Atlanta VA Medical Center', 'prepsa': '20.2', 'reads': '76,165,456', 'tissue': 'prostate', 'u': '18.3', 'mapped': '44.8%', 'id': 'VA-PC-93-24', 'bcr': '1'}, 'GSM1323741': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'unknown', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '6.2', 'reads': '112,486,354', 'tissue': 'prostate', 'u': '95.0', 'mapped': '65.3%', 'id': 'VA-PC-93-21', 'bcr': '1'}, 'GSM1323740': {'tgleason': '8', 'race': 'W', 'score': '448', 'sms': 'Positive', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '12.8', 'reads': '99,607,176', 'tissue': 'prostate', 'u': '1.0', 'mapped': '75.2%', 'id': 'VA-PC-93-20', 'bcr': '1'}, 'GSM1323747': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'unknown', 'pstage': 'pT4', 'site': 'Atlanta VA Medical Center', 'prepsa': '14.5', 'reads': '46,548,402', 'tissue': 'prostate', 'u': '11.8', 'mapped': '51.0%', 'id': 'VA-PC-95-42', 'bcr': '1'}, 'GSM1323746': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '6.5', 'reads': '86,453,316', 'tissue': 'prostate', 'u': '101.1', 'mapped': '56.3%', 'id': 'VA-PC-95-41', 'bcr': '1'}, 'GSM1323745': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '5.6', 'reads': '80,399,890', 'tissue': 'prostate', 'u': '60.5', 'mapped': '62.3%', 'id': 'VA-PC-95-37', 'bcr': '1'}, 'GSM1323744': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '17.2', 'reads': '62,706,238', 'tissue': 'prostate', 'u': '3.5', 'mapped': '48.5%', 'id': 'VA-PC-95-34', 'bcr': '1'}, 'GSM2360162': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing G-actin and YAP binding deficient (dPY) MRTFB mutant'}, 'GSM2886586': {'age': '58', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'no', 'npm1': '-', 'flt3': '-'}, 'GSM2360165': {'line': 'MCF-10A', 'type': 'mammary epithelial cells', 'variation': 'expressing G-actin, YAP and SRF binding deficient (dPY/Y305A) MRTFB mutant'}, 'GSM2616426': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616427': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM1376024': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1060226': {'line': 'MDA-MB-231', 'treatment': 'CXCL12 (0ng/mL) + IGF1 (0ng/mL)'}, 'GSM1060227': {'line': 'MDA-MB-231', 'treatment': 'CXCL12 (0ng/mL) + IGF1 (0ng/mL)'}, 'GSM1376025': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1513922': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM1513923': {'type': 'Neural stem cell', 'genotype': 'KO'}, 'GSM1513920': {'type': 'Neural stem cell', 'genotype': 'KO'}, 'GSM1513921': {'type': 'Neural stem cell', 'genotype': 'WT'}, 'GSM2058390': {'tissue': 'skin fibroblasts', 'genotype': 'Control Tissue'}, 'GSM1060229': {'line': 'MDA-MB-231', 'treatment': 'CXCL12 (30ng/mL) + IGF1 (10ng/mL)'}, 'GSM1513924': {'type': 'Neural stem cell', 'genotype': 'KO'}, 'GSM2274685': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32732', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9322', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C25', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9322', 'studysiteshort': 'UCSF'}, 'GSM2125698': {'cancer': 'gastric cancer', 'stage': '1'}, 'GSM2125699': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM2474566': {'isolation': 'total RNA', 'induction': 'none', 'treatment': '1h before harvesting'}, 'GSM2738554': {'genotype': 'wild type'}, 'GSM2125696': {'cancer': 'gastritis/IM'}, 'GSM2125697': {'cancer': 'normal'}, 'GSM2738553': {'genotype': 'wild type'}, 'GSM2125695': {'cancer': 'normal'}, 'GSM1963998': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963999': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM859998': {'length': '50', 'line': '293T', 'treatment': 'hnRNPA1 siRNAs'}, 'GSM859999': {'length': '50', 'line': '293T', 'treatment': 'hnRNPA1 siRNAs'}, 'GSM1963994': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963995': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963996': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM859995': {'length': '42', 'line': '293T', 'treatment': 'hnRNPA1 siRNAs'}, 'GSM1963990': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM859993': {'length': '36', 'line': '293T', 'treatment': 'hnRNPA1 siRNAs'}, 'GSM1963992': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963993': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2886585': {'age': '58', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'no', 'npm1': '-', 'flt3': '-'}, 'GSM1422218': {'line': 'MCF7'}, 'GSM1422217': {'line': 'MCF7'}, 'GSM1422216': {'line': 'MCF7'}, 'GSM1422215': {'line': 'MCF7'}, 'GSM2679503': {'line': 'BLCL (165)'}, 'GSM2138320': {'with': 'DMSO (control)', 'passages': '4', 'type': 'Human umbilical cord blood MNCs-derived ECFCs', 'id': 'ECFC clone2 cord6 p4'}, 'GSM2138321': {'with': '5 µM GSK-343 for 72hrs and 10nM panobinostat for 2hrs', 'passages': '3', 'type': 'Human umbilical cord blood MNCs-derived ECFCs', 'id': 'ECFC clone28 cord5 p3'}, 'GSM2138322': {'with': '5 µM GSK-343 for 72hrs and 10nM panobinostat for 2hrs', 'passages': '4', 'type': 'Human umbilical cord blood MNCs-derived ECFCs', 'id': 'ECFC clone28 cord5 p4'}, 'GSM2138323': {'with': '5 µM GSK-343 for 72hrs and 10nM panobinostat for 2hrs', 'passages': '4', 'type': 'Human umbilical cord blood MNCs-derived ECFCs', 'id': 'ECFC clone2 cord6 p4'}, 'GSM2886582': {'age': '53', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': 'D835'}, 'GSM2139051': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'with shRNA NUSAP #1 knockdown 72 hrs'}, 'GSM2139050': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'with shRNA NUSAP #1 knockdown 72 hrs'}, 'GSM2139053': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'with shRNA NUSAP #2 knockdown 72 hrs'}, 'GSM2139052': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'with shRNA NUSAP #2 knockdown 72 hrs'}, 'GSM2139055': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'Scramble knockdown 96 hrs'}, 'GSM2139054': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'with shRNA NUSAP #2 knockdown 72 hrs'}, 'GSM2139057': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'Scramble knockdown 96 hrs'}, 'GSM2139056': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'Scramble knockdown 96 hrs'}, 'GSM2139059': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'shRNA NUSAP #1 knockdown 96 hrs'}, 'GSM2139058': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'shRNA NUSAP #1 knockdown 96 hrs'}, 'GSM2886580': {'age': '65', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'no', 'npm1': '-', 'flt3': '-'}, 'GSM2219078': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3', 'protocol': 'low density (2D)'}, 'GSM2219079': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3', 'protocol': 'low density (2D)'}, 'GSM2219074': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3', 'protocol': 'aggregates'}, 'GSM2219075': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3', 'protocol': 'aggregates'}, 'GSM2219076': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3', 'protocol': 'aggregates'}, 'GSM2219077': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3', 'protocol': 'aggregates'}, 'GSM2219073': {'status': 'pancreatic bud cells', 'gender': 'male', 'line': 'KhES-3'}, 'GSM2086406': {'line': 'HEK293'}, 'GSM2113305': {'score': '7.8', 'type': 'Accuracy sample', 'histology': 'Normal tissue'}, 'GSM2113304': {'score': '9', 'type': 'Accuracy sample', 'histology': 'Adenocarcinoma'}, 'GSM2113307': {'score': '9.2', 'type': 'Accuracy sample', 'histology': 'Normal tissue'}, 'GSM2113306': {'score': '8.4', 'type': 'Accuracy sample', 'histology': 'Normal tissue'}, 'GSM2113301': {'score': '10', 'type': 'Accuracy sample', 'histology': 'extraskeletal myxoid chondrosarcoma'}, 'GSM2113300': {'score': '9.9', 'type': 'Accuracy sample', 'histology': 'enchondroma v. fibromyxoid sarcoma'}, 'GSM2113303': {'score': '8.5', 'type': 'Accuracy sample', 'histology': 'Adenocarcinoma'}, 'GSM2113302': {'score': '7.7', 'type': 'Accuracy sample', 'histology': 'Metastatic adenocarcinoma consistent with cholangiocarcinoma'}, 'GSM2113309': {'score': '3.4', 'type': 'Accuracy sample', 'histology': 'Normal tissue'}, 'GSM2113308': {'score': '8.2', 'type': 'Accuracy sample', 'histology': 'Normal tissue'}, 'GSM2048641': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2498239': {'line': 'CFPAC-1', 'type': 'pancreatic adenocarcinoma', 'gctm5': 'negative'}, 'GSM2806564': {'line': 'A549', 'replicate': '2', 'treatment': '5 hr'}, 'GSM2806565': {'line': 'A549', 'replicate': '1', 'treatment': '7 hr'}, 'GSM2806566': {'line': 'A549', 'replicate': '2', 'treatment': '7 hr'}, 'GSM2806567': {'line': 'A549', 'replicate': '1', 'treatment': '9 hr'}, 'GSM2806560': {'line': 'A549', 'replicate': '2', 'treatment': '1 hr'}, 'GSM2806561': {'line': 'A549', 'replicate': '1', 'treatment': '3 hr'}, 'GSM2806562': {'line': 'A549', 'replicate': '2', 'treatment': '3 hr'}, 'GSM2806563': {'line': 'A549', 'replicate': '1', 'treatment': '5 hr'}, 'GSM2806568': {'line': 'A549', 'replicate': '2', 'treatment': '9 hr'}, 'GSM2806569': {'line': 'A549', 'replicate': '1', 'treatment': '11 hr'}, 'GSM2123699': {'with': 'DPRX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123690': {'with': 'empty control vector', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123692': {'with': 'empty control vector', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123693': {'with': 'ARGFX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123694': {'with': 'ARGFX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123696': {'with': 'ARGFX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123697': {'with': 'DPRX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2307319': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2391002': {'disease': 'Pulmonary Hypertension'}, 'GSM2391003': {'disease': 'Pulmonary Hypertension'}, 'GSM1406301': {'type': 'Macrophages(BC17)'}, 'GSM1406300': {'type': 'Macrophages(BC17)'}, 'GSM1406307': {'type': 'Primary Monocytes(BC8)'}, 'GSM2391007': {'disease': 'Pulmonary Hypertension'}, 'GSM1406305': {'type': 'Macrophages(BC17)'}, 'GSM1406304': {'type': 'Macrophages(BC17)'}, 'GSM1287857': {'transfection': 'control', 'line': 'U251'}, 'GSM2391008': {'disease': 'Pulmonary Hypertension'}, 'GSM2391009': {'disease': 'Pulmonary Hypertension'}, 'GSM2464339': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464338': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464335': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464334': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464337': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464336': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464331': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464330': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464333': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464332': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM1946269': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19223', 'for': '30min'}, 'GSM1946268': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19223', 'for': '30min'}, 'GSM2840629': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840628': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1946263': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19222', 'for': '30min'}, 'GSM1946262': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19222', 'for': '30min'}, 'GSM1946261': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19222', 'for': '30min'}, 'GSM1946260': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19222', 'for': '30min'}, 'GSM1946267': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19222', 'for': '60min'}, 'GSM1946266': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19222', 'for': '60min'}, 'GSM1946265': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19222', 'for': '60min'}, 'GSM1946264': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19222', 'for': '60min'}, 'GSM1957368': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957369': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957360': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957361': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957362': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957363': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957364': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957365': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957366': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957367': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1956019': {'a': '61758', 'cd38': '168', 'cd49f': '464', 'w': '67600', 'h': '59872', 'lin': '223', 'cd34': '7869', 'cd90': '2496', 'cd7': '440', 'cd10': '1278', 'time': '8083', 'cd135': '4117', 'cd45ra': '240'}, 'GSM1956018': {'a': '46058', 'cd38': '528', 'cd49f': '585', 'w': '64807', 'h': '46576', 'lin': '199', 'cd34': '7280', 'cd90': '4042', 'cd7': '157', 'cd10': '747', 'time': '7885', 'cd135': '4079', 'cd45ra': '338'}, 'GSM2362514': {'line': 'HEK293'}, 'GSM2362515': {'line': 'HEK293'}, 'GSM2362512': {'line': 'HEK293'}, 'GSM2362513': {'line': 'HEK293'}, 'GSM2362510': {'line': 'HEK293'}, 'GSM2362511': {'line': 'HEK293'}, 'GSM1956011': {'a': '60988', 'cd38': '986', 'cd49f': '522', 'w': '63495', 'h': '62949', 'lin': '531', 'cd34': '4985', 'cd90': '248', 'cd7': '280', 'cd10': '462', 'time': '4608', 'cd135': '5142', 'cd45ra': '348'}, 'GSM1956010': {'a': '55600', 'cd38': '121', 'cd49f': '1253', 'w': '66702', 'h': '54628', 'lin': '733', 'cd34': '9339', 'cd90': '7129', 'cd7': '67', 'cd10': '1102', 'time': '4811', 'cd135': '1787', 'cd45ra': '149'}, 'GSM1956013': {'a': '56989', 'cd38': '600', 'cd49f': '819', 'w': '67616', 'h': '55236', 'lin': '-23', 'cd34': '6186', 'cd90': '3353', 'cd7': '189', 'cd10': '947', 'time': '6866', 'cd135': '4804', 'cd45ra': '287'}, 'GSM1956012': {'a': '57931', 'cd38': '1026', 'cd49f': '626', 'w': '67891', 'h': '55922', 'lin': '109', 'cd34': '7725', 'cd90': '14', 'cd7': '329', 'cd10': '606', 'time': '4400', 'cd135': '6009', 'cd45ra': '6821'}, 'GSM1956015': {'a': '72067', 'cd38': '663', 'cd49f': '372', 'w': '65552', 'h': '72049', 'lin': '-152', 'cd34': '3822', 'cd90': '1576', 'cd7': '119', 'cd10': '769', 'time': '7280', 'cd135': '2982', 'cd45ra': '385'}, 'GSM1956014': {'a': '45793', 'cd38': '416', 'cd49f': '463', 'w': '65241', 'h': '46000', 'lin': '308', 'cd34': '6694', 'cd90': '99', 'cd7': '336', 'cd10': '349', 'time': '7066', 'cd135': '1502', 'cd45ra': '153'}, 'GSM1956017': {'a': '51255', 'cd38': '836', 'cd49f': '313', 'w': '67239', 'h': '49957', 'lin': '51', 'cd34': '6598', 'cd90': '357', 'cd7': '12', 'cd10': '921', 'time': '7672', 'cd135': '5088', 'cd45ra': '160'}, 'GSM1956016': {'a': '67254', 'cd38': '418', 'cd49f': '261', 'w': '66123', 'h': '66657', 'lin': '-49', 'cd34': '9916', 'cd90': '799', 'cd7': '427', 'cd10': '569', 'time': '7474', 'cd135': '1515', 'cd45ra': '78'}, 'GSM2572692': {'antibody': 'none', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced'}, 'GSM2572693': {'antibody': 'none', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2572690': {'antibody': 'RNAPII_Ser2 antibody (Anti-RNA polymerase II CTD repeat YSPTSPS (phospho S2) antibody; vendor: Abcam; clonality: Rb Polyclonal; catalog number: ab5095; lot: GR124547-2)', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced'}, 'GSM2572691': {'antibody': 'RNAPII_Ser2 antibody (Anti-RNA polymerase II CTD repeat YSPTSPS (phospho S2) antibody; vendor: Abcam; clonality: Rb Polyclonal; catalog number: ab5095; lot: GR124547-2)', 'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2572696': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced', 'time': '30min'}, 'GSM2572697': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced', 'time': '60min'}, 'GSM2572694': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced'}, 'GSM2572695': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2572698': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced', 'time': '150min'}, 'GSM2572699': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced', 'time': '240min'}, 'GSM2626920': {'origin': 'pancreas', 'patient_id': '76', 'type': 'liver metastasis', 'tumor_id': '50'}, 'GSM2626921': {'origin': 'pancreas', 'patient_id': '77', 'type': 'liver metastasis', 'tumor_id': '51'}, 'GSM2626922': {'origin': 'pancreas', 'patient_id': '84', 'type': 'liver metastasis', 'tumor_id': '58'}, 'GSM2626923': {'origin': 'pancreas', 'patient_id': '89', 'type': 'liver metastasis', 'tumor_id': '63'}, 'GSM2626924': {'origin': 'pancreas', 'patient_id': '91', 'type': 'liver metastasis', 'tumor_id': '65'}, 'GSM2626925': {'origin': 'pancreas', 'patient_id': '93', 'type': 'liver metastasis', 'tumor_id': '67'}, 'GSM2626926': {'origin': 'pancreas', 'patient_id': '97', 'type': 'liver metastasis', 'tumor_id': '71'}, 'GSM2626927': {'origin': 'pancreas', 'patient_id': '98', 'type': 'liver metastasis', 'tumor_id': '72'}, 'GSM2626928': {'origin': 'pancreas', 'patient_id': '101', 'type': 'liver metastasis', 'tumor_id': '75'}, 'GSM2626929': {'origin': 'pancreas', 'patient_id': '102', 'type': 'liver metastasis', 'tumor_id': '76'}, 'GSM1195961': {'type': 'induced pluripotent stem cell', 'variation': 'Euploid'}, 'GSM3508645': {'group': 'Active', 'age': '8', 'number': '57', 'Sex': 'M', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508644': {'group': 'GFD', 'age': '36', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM3508647': {'group': 'GFD', 'age': '22', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508646': {'group': 'Active', 'age': '8', 'number': '100', 'Sex': 'M', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM3508641': {'group': 'Active', 'age': '6', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508640': {'group': 'GFD', 'age': '61', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM3508643': {'group': 'Control', 'age': '23', 'number': '100', 'Sex': 'M', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508642': {'group': 'Active', 'age': '6', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM1957403': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM3508649': {'group': 'Active', 'age': '17', 'number': '83', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508648': {'group': 'GFD', 'age': '22', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM3526880': {'tissue': 'placenta', 'type': 'Cytotrophoblast', 'Stage': 'Term'}, 'GSM2670941': {'source': 'Coronary Artery', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Coronary Artery Vascular Smooth Muscle Cell', 'matrix': 'Soft'}, 'GSM2670940': {'source': 'Coronary Artery', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Coronary Artery Vascular Smooth Muscle Cell', 'matrix': 'Stiff'}, 'GSM2670943': {'source': 'Coronary Artery', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Coronary Artery Vascular Smooth Muscle Cell', 'matrix': 'Soft'}, 'GSM2670942': {'source': 'Coronary Artery', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Coronary Artery Vascular Smooth Muscle Cell', 'matrix': 'Soft'}, 'GSM2670944': {'source': 'Coronary Artery', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Coronary Artery Vascular Smooth Muscle Cell', 'matrix': 'Soft'}, 'GSM1957402': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2325874': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325875': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325876': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325877': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325870': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325871': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325872': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325873': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325878': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325879': {'type': 'Differentiated embryonic stem cell'}, 'GSM1940690': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940691': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940692': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940693': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940694': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940695': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940696': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940697': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940698': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940699': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2053492': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '62', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#24'}, 'GSM2053493': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '48', 'infection': 'Yes', 'cirrhosis': 'No', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#25'}, 'GSM2053490': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '40', 'infection': 'NA', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#21'}, 'GSM2053491': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '53', 'infection': 'Yes', 'cirrhosis': 'No', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#22'}, 'GSM2053494': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '49', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#26'}, 'GSM2671098': {'line': 'T47D', 'tissue': 'breast cancer', 'genotype': 'HectD1 depletion by shRNA'}, 'GSM2671099': {'line': 'T47D', 'tissue': 'breast cancer', 'genotype': 'HectD1 depletion by shRNA'}, 'GSM2671095': {'line': 'T47D', 'tissue': 'breast cancer', 'genotype': 'ACF7 overexpression'}, 'GSM2671096': {'line': 'T47D', 'tissue': 'breast cancer', 'genotype': 'ACF7 overexpression'}, 'GSM2671097': {'line': 'T47D', 'tissue': 'breast cancer', 'genotype': 'HectD1 depletion by shRNA'}, 'GSM1370704': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'Silvestrol', 'purification': 'Total RNA'}, 'GSM1370703': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'Silvestrol', 'purification': 'Total RNA'}, 'GSM1370702': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'Silvestrol', 'purification': 'Total RNA'}, 'GSM1370701': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'control', 'purification': 'Total RNA'}, 'GSM1370700': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'control', 'purification': 'Total RNA'}, 'GSM1571108': {'stage': 'cardiac progenitor'}, 'GSM1571109': {'stage': 'cardiac progenitor'}, 'GSM1571104': {'stage': 'cardiac progenitor'}, 'GSM1571105': {'stage': 'cardiac progenitor'}, 'GSM1571106': {'stage': 'cardiac progenitor'}, 'GSM1571107': {'stage': 'cardiac progenitor'}, 'GSM1571100': {'stage': 'cardiac progenitor'}, 'GSM1571101': {'stage': 'cardiac progenitor'}, 'GSM1571102': {'stage': 'cardiac progenitor'}, 'GSM1571103': {'stage': 'cardiac progenitor'}, 'GSM2870619': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2898239': {'donor': 'P4_Healthy', 'point': '46H', 'number': '10k_cells', 'exposure': 'TLR8'}, 'GSM2898238': {'donor': 'P4_Healthy', 'point': '46H', 'number': '10k_cells', 'exposure': 'TLR2'}, 'GSM2714506': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM1233297': {'antibody': 'H3K9K14ac (Diagenode)', 'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'MC2392 24h', 'genome': 'HG18'}, 'GSM1233296': {'antibody': 'H3K9K14ac (Diagenode)', 'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'MC2392 4h', 'genome': 'HG18'}, 'GSM1233295': {'antibody': 'H3K9K14ac (Diagenode)', 'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'MS275 4h', 'genome': 'HG18'}, 'GSM1233294': {'antibody': 'H3K9K14ac (Diagenode)', 'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'ATRA 24h', 'genome': 'HG18'}, 'GSM1233293': {'antibody': 'H3K9K14ac (Diagenode)', 'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'ATRA 4h', 'genome': 'HG18'}, 'GSM1233292': {'antibody': 'H3K9K14ac (Diagenode)', 'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'DMSO', 'genome': 'HG18'}, 'GSM1233291': {'challenge': 'Unchallenged control', 'tissue': 'whole blood'}, 'GSM1233290': {'challenge': 'Unchallenged control', 'tissue': 'whole blood'}, 'GSM3189471': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'percentage': '23', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.696027', 'percentaligned': '0.789983624', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '1.323407', 'original': 'Case'}, 'GSM3189470': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'percentage': '18', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.632327', 'percentaligned': '0.952257782', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '7.231506', 'original': 'Control'}, 'GSM3189472': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'percentage': '14', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.770222', 'percentaligned': '0.938875395', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '6.069486', 'original': 'Control'}, 'GSM1233299': {'type': 'NB4 promyelocytic leukaemia cell line', 'treatment': 'DMSO', 'genome': 'HG18'}, 'GSM2564968': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2632369': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632368': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632363': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632362': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632361': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632360': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632367': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632366': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632365': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632364': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2538904': {'line': 'H1933', 'treatment': 'control'}, 'GSM2125479': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'none (untransfected)'}, 'GSM1599137': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM1599136': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM1599135': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM1599134': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1599133': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1599132': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1599131': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM1599130': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM1401709': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1599139': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM1599138': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM1401704': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401705': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM2787575': {'subtype': 'Plasmid Reporter Library', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787577': {'subtype': 'Plasmid Reporter Library', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787576': {'subtype': 'Plasmid Reporter Library', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787579': {'subtype': 'Plasmid Reporter Library', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2787578': {'subtype': 'Plasmid Reporter Library', 'line': 'GM12878', 'type': 'lymphoblastoid cell line'}, 'GSM2743852': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'After RPMI for 24 hrs, additional 10 ng/mL LPS expousre for 2 hrs'}, 'GSM2743853': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'After cIgG priming for 24 hrs,additional 10 ng/mL LPS expousre for 2 hrs'}, 'GSM2743850': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'After RPMI for 24 hrs, additional 10 ng/mL LPS expousre for 2 hrs'}, 'GSM2743851': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'After RPMI for 24 hrs, additional 10 ng/mL LPS expousre for 2 hrs'}, 'GSM2743854': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'After cIgG priming for 24 hrs, additional 10 ng/mL LPS expousre for 2 hrs'}, 'GSM2743855': {'tissue': 'Peripheral blood', 'chip_antibody': 'N/A', 'treatment': 'After cIgG priming for 24 hrs, additional 10 ng/mL LPS expousre for 2 hrs'}, 'GSM2059933': {'donor': '1', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059932': {'donor': '1', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059931': {'donor': '2', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059930': {'donor': '2', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM1683302': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683303': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683300': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683301': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683306': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683307': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683304': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683305': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683308': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM1683309': {'type': 'WI-38 human lung fibroblast cells'}, 'GSM2696596': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1980273': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2696594': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696595': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696592': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'No clinical information available', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696593': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Normal Breast', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1712130': {'line': 'MR49F', 'treatment': 'Vehicle: CSM'}, 'GSM1712131': {'line': 'MR49F', 'treatment': 'DHT: CSM'}, 'GSM1712132': {'line': 'MR49F', 'treatment': 'Enzalutamide-Treated:CSM'}, 'GSM1712133': {'line': 'MR49F', 'treatment': 'JQ1: CSM'}, 'GSM1464318': {'status': 'small cell lung cancer'}, 'GSM2348548': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1712136': {'line': 'MR49F', 'treatment': 'Vehicle: CSM'}, 'GSM1712137': {'line': 'MR49F', 'treatment': 'DHT: CSM'}, 'GSM1712138': {'line': 'MR49F', 'treatment': 'Enzalutamide-Treated:CSM'}, 'GSM1712139': {'line': 'MR49F', 'treatment': 'JQ1: CSM'}, 'GSM2348547': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348546': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348541': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348540': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464312': {'status': 'small cell lung cancer'}, 'GSM2348542': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM881820': {'condition': 'leiomyosarcoma'}, 'GSM2714508': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2805882': {'genotype': 'shRNA BCOR', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805883': {'genotype': 'shRNA BCOR', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805880': {'genotype': 'RNF2-R', 'antibody': 'KDM2B (rabbit A) (Beguelin et al, 2016, Gearhart et al, 2006)', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': '1micro/ml Doxycyclin', 'type': 'H1 hESC'}, 'GSM2805881': {'genotype': 'RNF2-R', 'antibody': 'KDM2B (rabbit A) (Beguelin et al, 2016, Gearhart et al, 2006)', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805886': {'genotype': 'shRNA Ring1, shRNA RNF2', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805887': {'genotype': 'shRNA Ring1, shRNA RNF2', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805884': {'genotype': 'shRNA Cntrl', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805885': {'genotype': 'shRNA Cntrl', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805888': {'genotype': 'shRNA Cntrl', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805889': {'genotype': 'shRNA Cntrl', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'NA', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM714679': {'crosslinking': '365nm', 'line': 'HEK293', 'nucleotide': '4SU', 'transfection': 'none'}, 'GSM714678': {'crosslinking': '365nm', 'line': 'HEK293', 'nucleotide': '4SU', 'transfection': 'none'}, 'GSM1859760': {'line': 'Jurkat', 'treatment': 'None'}, 'GSM2714509': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2407548': {'line': 'MDA-MB-231', 'treatment': 'scrambled siRNA'}, 'GSM2068658': {'line': 'MCF7', 'with': '10nM E2 for 5hr', 'passage': 'p9'}, 'GSM2068659': {'line': 'MCF7', 'with': '10nM E2 for 6hr', 'passage': 'p9'}, 'GSM2068652': {'line': 'MCF7', 'with': '10nM E2 for 24hr', 'passage': 'p9'}, 'GSM2068653': {'line': 'MCF7', 'with': 'EtOH', 'passage': 'p9'}, 'GSM2068650': {'line': 'MCF7', 'with': '10nM E2 for 8hr', 'passage': 'p9'}, 'GSM2068651': {'line': 'MCF7', 'with': '10nM E2 for 12hr', 'passage': 'p9'}, 'GSM2068656': {'line': 'MCF7', 'with': '10nM E2 for 3hr', 'passage': 'p9'}, 'GSM2407544': {'line': 'MDA-MB-231', 'treatment': 'CDK12 siRNA-1'}, 'GSM2068654': {'line': 'MCF7', 'with': '10nM E2 for 1hr', 'passage': 'p9'}, 'GSM2068655': {'line': 'MCF7', 'with': '10nM E2 for 2hr', 'passage': 'p9'}, 'GSM2094787': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM proscillaridin A for 48 hours'}, 'GSM2094786': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM digoxigenin for 48 hours'}, 'GSM2094785': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM strophantin K for 48 hours'}, 'GSM2094784': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM digoxin for 48 hours'}, 'GSM2094783': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with DMSO vehicle for 48 hours'}, 'GSM2094782': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM proscillaridin A for 24 hours'}, 'GSM2094781': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM digoxigenin for 24 hours'}, 'GSM2094780': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM strophantin K for 24 hours'}, 'GSM1700946': {'line': 'A549'}, 'GSM1700947': {'line': 'A549'}, 'GSM1700944': {'line': 'A549'}, 'GSM1700945': {'line': 'A549'}, 'GSM1700942': {'line': 'MHCC97H'}, 'GSM1700943': {'line': 'MHCC97H'}, 'GSM1700940': {'line': 'MHCC97H'}, 'GSM1700941': {'line': 'MHCC97H'}, 'GSM1411008': {'ercc_mix': '1', 'donor': 'AS012811-M9', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Albuterol'}, 'GSM1411009': {'ercc_mix': '1', 'donor': 'AS021111-F44', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Albuterol'}, 'GSM1411004': {'ercc_mix': '1', 'donor': 'AS072610-M13', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Albuterol'}, 'GSM1411005': {'ercc_mix': '1', 'donor': 'N080910-F16', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1411006': {'ercc_mix': '1', 'donor': 'N090710-F52', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1411007': {'ercc_mix': '1', 'donor': 'N120610-M50', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM1411000': {'ercc_mix': '1', 'donor': 'N010912-F18', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1411001': {'ercc_mix': '1', 'donor': 'N012412-M48', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1411002': {'ercc_mix': '1', 'donor': 'N021612-M17', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Baseline'}, 'GSM1411003': {'ercc_mix': '1', 'donor': 'AS070808-M59', 'tissue': 'human airway smooth muscle cells', 'disease': 'Asthma', 'treatment': 'Albuterol'}, 'GSM2779013': {'time_hr': '12', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779012': {'time_hr': '9', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779011': {'time_hr': '6', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779010': {'time_hr': '4', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779017': {'time_hr': '24', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779016': {'time_hr': '20', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779015': {'time_hr': '1', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779014': {'time_hr': '16', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779019': {'time_hr': '3', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779018': {'time_hr': '2', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM1249898': {'transfection': 'siJMJD6', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'CDK9', 'details': '2316S (Cell Signaling Technology)'}, 'GSM1249899': {'transfection': 'siBrd4', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'CDK9', 'details': '2316S (Cell Signaling Technology)'}, 'GSM1646977': {'illumina_index': '15', 'point': '4', 'batch': '2', 'agent': 'Yers', 'rin': '8.5', 'individual': 'M374'}, 'GSM1249894': {'transfection': 'siCTL', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'Pol II', 'details': 'SC-899 (Santa Cruz Biotechnology)'}, 'GSM1249895': {'transfection': 'siJMJD6', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'Pol II', 'details': 'SC-899 (Santa Cruz Biotechnology)'}, 'GSM1249896': {'transfection': 'siBrd4', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'Pol II', 'details': 'SC-899 (Santa Cruz Biotechnology)'}, 'GSM1249897': {'transfection': 'siCTL', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'CDK9', 'details': '2316S (Cell Signaling Technology)'}, 'GSM1249890': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'P300', 'details': 'SC-585 (Santa Cruz biotechnology)'}, 'GSM1249891': {'transfection': 'siCTL', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'Pol II', 'details': 'SC-899 (Santa Cruz Biotechnology)'}, 'GSM1249892': {'transfection': 'siJMJD6', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'Pol II', 'details': 'SC-899 (Santa Cruz Biotechnology)'}, 'GSM1249893': {'transfection': 'siBrd4', 'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'Pol II', 'details': 'SC-899 (Santa Cruz Biotechnology)'}, 'GSM927084': {'overexpressing': 'empty vector containing GFP', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '2'}, 'GSM927082': {'overexpressing': 'empty vector containing GFP', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '2'}, 'GSM927083': {'overexpressing': 'empty vector containing GFP', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '2'}, 'GSM927080': {'overexpressing': 'truncated ERG', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '2'}, 'GSM927081': {'overexpressing': 'empty vector containing GFP', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '2'}, 'GSM2218635': {'with': '+UV (Recovery time=48h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-hypo'}, 'GSM2141347': {'individual': 'EU42', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2218637': {'with': '+UV preDMSO (Recovery time=1h', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218636': {'with': 'preDMSO NO UV (Recovery time=1h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2141342': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141343': {'individual': 'EU36', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2218633': {'with': 'NO UV (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-hypo'}, 'GSM2218632': {'with': '+UV (Recovery time=48h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser5P'}, 'GSM1233882': {'replicate': '1', 'line': '10847', 'antibody': 'Input'}, 'GSM1233883': {'replicate': '1', 'line': '10847', 'antibody': 'RNA-seq'}, 'GSM1233880': {'replicate': '1', 'line': '10847', 'antibody': 'H3K4me3'}, 'GSM1233881': {'replicate': '2', 'line': '10847', 'antibody': 'H3K4me3'}, 'GSM2218639': {'with': '+UV preDRB (Recovery time=1h', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218638': {'with': 'NO UV preDRB (Recovery time=1h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM1233884': {'replicate': '2', 'line': '10847', 'antibody': 'RNA-seq'}, 'GSM1233885': {'replicate': '1', 'line': '10847', 'antibody': 'SA1'}, 'GSM2085691': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM1545082': {'type': 'gastric cancer tumor', 'class': 'IIB', 'location': 'Body'}, 'GSM1545083': {'type': 'gastric cancer tumor', 'class': 'IIIB', 'location': 'Body'}, 'GSM1545080': {'type': 'gastric cancer tumor', 'class': 'IA', 'location': 'Body'}, 'GSM1545081': {'type': 'gastric cancer tumor', 'class': 'IIIC', 'location': 'Distal'}, 'GSM1545086': {'type': 'gastric cancer tumor', 'class': 'IIA', 'location': 'Body'}, 'GSM1545087': {'type': 'gastric cancer tumor', 'class': 'IIB', 'location': 'GE junction'}, 'GSM2287439': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287438': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287437': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287436': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287435': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287434': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287433': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287432': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287431': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287430': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610877': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610876': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610875': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610874': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610873': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610872': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610871': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610870': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610879': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610878': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM1960344': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'GFP'}, 'GSM1960345': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'PUM1 overexpression'}, 'GSM1960346': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'PUM1 overexpression'}, 'GSM1960347': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'PUM1 overexpression'}, 'GSM1960340': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'NORAD-/-'}, 'GSM1960341': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'NORAD-/-'}, 'GSM1960342': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'GFP'}, 'GSM1960343': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'GFP'}, 'GSM1960348': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'PUM1 overexpression'}, 'GSM1960349': {'line': 'HCT116', 'tissue': 'Colorectal cancer cell line', 'genotype': 'PUM2 overexpression'}, 'GSM2085697': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM1565958': {'condition': 'Non-infected'}, 'GSM1565959': {'condition': 'MTB-infected'}, 'GSM1565956': {'condition': 'Non-infected'}, 'GSM1565957': {'condition': 'MTB-infected'}, 'GSM1565955': {'condition': 'MTB-infected'}, 'GSM1382445': {'barcode': 'CGTGAT', 'line': 'HEK293', 'gene': 'b-globin PTC39 reporter expressed from Flp-In locus', 'variation': 'control (EGFP siRNA-treated)'}, 'GSM1382447': {'barcode': 'GATCTG', 'line': 'HEK293', 'gene': 'b-globin PTC39 reporter expressed from Flp-In locus', 'variation': 'SMG6/XRN1 depletion'}, 'GSM1382446': {'barcode': 'ACATCG', 'line': 'HEK293', 'gene': 'b-globin PTC39 reporter expressed from Flp-In locus', 'variation': 'XRN1 depletion'}, 'GSM1382449': {'line': 'HEK293', 'gene': 'b-globin PTC39 reporter expressed from Flp-In locus', 'variation': 'control (EGFP siRNA-treated)'}, 'GSM1382448': {'barcode': 'TCAAGT', 'line': 'HEK293', 'gene': 'b-globin PTC39 reporter expressed from Flp-In locus', 'variation': 'UPF1/XRN1 depletion'}, 'GSM2310207': {'gender': 'Male', 'age': '25', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2310206': {'gender': 'Male', 'age': '26', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2310205': {'gender': 'Male', 'age': '26', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2310204': {'gender': 'Male', 'age': '26', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2310209': {'gender': 'Male', 'age': '25', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2310208': {'gender': 'Male', 'age': '25', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2085695': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2388493': {'line': 'HEK 293 T', 'treatment': 'Emetine'}, 'GSM2388492': {'line': 'HEK 293 T', 'treatment': 'Emetine'}, 'GSM2388491': {'line': 'HEK 293 T', 'treatment': 'Control'}, 'GSM2388490': {'line': 'HEK 293 T', 'treatment': 'Control'}, 'GSM2388497': {'line': 'HEK 293 T', 'treatment': 'Rapamycin'}, 'GSM2388496': {'line': 'HEK 293 T', 'treatment': 'Rapamycin'}, 'GSM2388495': {'line': 'HEK 293 T', 'treatment': 'Rapamycin'}, 'GSM2388494': {'line': 'HEK 293 T', 'treatment': 'Emetine'}, 'GSM2388499': {'tissue': 'Normal liver'}, 'GSM2388498': {'tissue': 'Normal liver'}, 'GSM2085694': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2093250': {'bin': '32', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093251': {'bin': '32', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2093252': {'bin': '32', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2093253': {'bin': '14', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093254': {'bin': '14', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093255': {'bin': '19', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2093256': {'bin': '19', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2093257': {'bin': '31', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093258': {'bin': '31', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2221809': {'type': 'RASF'}, 'GSM1513225': {'gender': 'Female', 'line': 'GM19116', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513224': {'gender': 'Female', 'line': 'GM19114', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513227': {'gender': 'Female', 'line': 'GM19127', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513226': {'gender': 'Male', 'line': 'GM19119', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513221': {'gender': 'Male', 'line': 'GM19101', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513220': {'gender': 'Female', 'line': 'GM19099', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513223': {'gender': 'Female', 'line': 'GM19108', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513222': {'gender': 'Female', 'line': 'GM19102', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513229': {'gender': 'Male', 'line': 'GM19130', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513228': {'gender': 'Male', 'line': 'GM19128', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2543591': {'library_id': 'lib5704', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543593': {'library_id': 'lib5706', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543592': {'library_id': 'lib5705', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543595': {'library_id': 'lib5708', 'stim': 'NS', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543594': {'library_id': 'lib5707', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543597': {'library_id': 'lib5710', 'stim': 'TT', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543596': {'library_id': 'lib5709', 'stim': 'CR', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543599': {'library_id': 'lib5712', 'stim': 'NS', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543598': {'library_id': 'lib5711', 'stim': 'DM', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2152029': {'line': 'K562'}, 'GSM2152028': {'line': 'K562'}, 'GSM2152023': {'line': 'K562'}, 'GSM2152022': {'line': 'K562'}, 'GSM2152027': {'line': 'K562'}, 'GSM2152026': {'line': 'K562'}, 'GSM2152025': {'line': 'K562'}, 'GSM2152024': {'line': 'K562'}, 'GSM1980272': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2696597': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1980270': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980271': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980276': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980277': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2696590': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Normal Breast', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1980275': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980278': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980279': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2696598': {'status': '3+', 'grade': '2', 'age': '73', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '4.2'}, 'GSM2696599': {'status': '1+', 'grade': '2', 'age': '43', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '1.5'}, 'GSM3454801': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '8 days'}, 'GSM3454800': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '5 days'}, 'GSM3454803': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '8 days'}, 'GSM3454802': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '8 days'}, 'GSM3454805': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '12 days'}, 'GSM3454804': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '12 days'}, 'GSM3454807': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '21 days'}, 'GSM3454806': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '12 days'}, 'GSM3454809': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '21 days'}, 'GSM3454808': {'line': 'MCF10A', 'agent': 'TGF-beta', 'time': '21 days'}, 'GSM1956112': {'a': '58161', 'cd38': '742', 'cd49f': '405', 'w': '66423', 'h': '57384', 'lin': '-110', 'cd34': '4576', 'cd90': '2576', 'cd7': '124', 'cd10': '633', 'time': '7785', 'cd135': '2836', 'cd45ra': '31'}, 'GSM2445480': {'type': 'iMGL', 'treatment': 'None'}, 'GSM2651055': {'donor': '1', 'treg': 'TH2'}, 'GSM2475001': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'PEO23', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2526890': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526893': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2651058': {'donor': '1', 'treg': 'TH1-17'}, 'GSM2651059': {'donor': '2', 'treg': 'TH2'}, 'GSM2475005': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'SKOV3', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2651056': {'donor': '1', 'treg': 'TH17'}, 'GSM2651057': {'donor': '1', 'treg': 'TH1'}, 'GSM2475004': {'subtype': 'clear cell', 'line': 'RMG-1', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2526897': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526896': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526899': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526898': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2154858': {'line': 'BE(2)C:MYCN-ORF'}, 'GSM2154859': {'line': 'BE(2)C:MYCN-ORF'}, 'GSM2391988': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1545608': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM2255540': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'Nutlin-3'}, 'GSM2255541': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'untreated'}, 'GSM2255542': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'IR'}, 'GSM2255543': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'Nutlin-3'}, 'GSM2211739': {'line': 'RPE-1 cells', 'treatment': '0.5 μM Reversine for 12 hours', 'state': 'aneuploid cycling cells'}, 'GSM2211738': {'line': 'RPE-1 cells', 'treatment': '0.5 μM Reversine for 12 hours', 'state': 'aneuploid cycling cells'}, 'GSM2211737': {'line': 'RPE-1 cells', 'treatment': 'vehicle', 'state': 'control'}, 'GSM2211736': {'line': 'RPE-1 cells', 'treatment': 'vehicle', 'state': 'control'}, 'GSM2042058': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042059': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2361517': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361516': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361515': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361514': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361513': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361512': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361511': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361510': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2641026': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM2641027': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM2641024': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM2641025': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM2641022': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM2641023': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM2641020': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM2361518': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2172234': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172235': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172236': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172237': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172230': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172231': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172232': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172233': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172238': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172239': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM1678784': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM1678785': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'cytoplasmic'}, 'GSM3586561': {'origin': 'GCB', 'pfstt': '870', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '870', 'cycles': '8', 'oscs': '0'}, 'GSM2307092': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2026952': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q8TF45'}, 'GSM2026951': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q53GI3'}, 'GSM2307091': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2026957': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q8N9F8'}, 'GSM2307097': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2026955': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8N9F8'}, 'GSM2026954': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8N9F8'}, 'GSM1467412': {'line': 'HeLa'}, 'GSM1467413': {'line': 'HeLa'}, 'GSM1467410': {'line': 'HeLa'}, 'GSM1467411': {'line': 'HeLa'}, 'GSM2632279': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1678788': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'nuclear'}, 'GSM1678789': {'knockdown': 'No', 'type': 'HEK293 cells', 'fraction': 'whole cell'}, 'GSM1211433': {'line': 'MHCC97H', 'type': 'hepatocellular carcinoma cell line', 'strategy': 'RNC-mRNA'}, 'GSM1211432': {'line': 'MHCC97H', 'type': 'hepatocellular carcinoma cell line', 'strategy': 'mRNA'}, 'GSM1211431': {'line': 'HCCLM3', 'type': 'hepatocellular carcinoma cell line', 'strategy': 'RNC-mRNA'}, 'GSM1211430': {'line': 'HCCLM3', 'type': 'hepatocellular carcinoma cell line', 'strategy': 'mRNA'}, 'GSM2632278': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2127799': {'tissue': 'Kidney', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2127798': {'tissue': 'Kidney', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2127795': {'tissue': 'Liver', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2127797': {'tissue': 'Liver', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2127796': {'tissue': 'Liver', 'type': 'normal', 'Sex': 'pooled male and female'}, 'GSM2543928': {'library_id': 'lib8196', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543929': {'library_id': 'lib8197', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543920': {'library_id': 'lib8072', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543921': {'library_id': 'lib8073', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543922': {'library_id': 'lib8074', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543923': {'library_id': 'lib8075', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543924': {'library_id': 'lib8076', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.547', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543925': {'library_id': 'lib8077', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.547', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543926': {'library_id': 'lib8194', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '1.827', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543927': {'library_id': 'lib8195', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '1.827', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1836124': {'irradiation': 'UVC', 'dose': '0.2', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836125': {'irradiation': 'UVC', 'dose': '0.5', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836126': {'irradiation': 'UVC', 'dose': '0.5', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836127': {'irradiation': 'UVC', 'dose': '0.5', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836120': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1695871': {'age': '19', 'tissue': 'normal breast epithelial organoid', 'race': 'Black'}, 'GSM1836122': {'irradiation': 'UVC', 'dose': '0.2', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836123': {'irradiation': 'UVC', 'dose': '0.2', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836128': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836129': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1234054': {'replicate': '1', 'line': '19099', 'antibody': 'H3K4me3'}, 'GSM1234055': {'replicate': '2', 'line': '19099', 'antibody': 'H3K4me3'}, 'GSM1234056': {'replicate': '1', 'line': '19099', 'antibody': 'Input'}, 'GSM1234057': {'replicate': '1', 'line': '19099', 'antibody': 'RZ'}, 'GSM1234050': {'replicate': '1', 'line': '19099', 'antibody': 'H3K36me3'}, 'GSM1234051': {'replicate': '2', 'line': '19099', 'antibody': 'H3K36me3'}, 'GSM1234052': {'replicate': '1', 'line': '19099', 'antibody': 'H3K4me1'}, 'GSM1234053': {'replicate': '2', 'line': '19099', 'antibody': 'H3K4me1'}, 'GSM2391110': {'disease': 'NSCLC'}, 'GSM1234058': {'replicate': '2', 'line': '19099', 'antibody': 'RZ'}, 'GSM1234059': {'replicate': '1', 'line': '19099', 'antibody': 'SA1'}, 'GSM1406030': {'type': 'induced pluripotent stem cell'}, 'GSM2754500': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0361', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754501': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0369', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754502': {'bin': '7', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '03_0545', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754503': {'bin': '7', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '03_0697', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754504': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0226', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754505': {'bin': '7', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0818', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754506': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0757', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754507': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0397', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754508': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0398', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754509': {'bin': '9', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0278', 'previousdiagnosisoftb': 'No', 'tst': '20', 'type': 'Tcells'}, 'GSM1406032': {'type': 'induced pluripotent stem cell'}, 'GSM1220019': {'line': 'HEK293T', 'with': 'none (control)'}, 'GSM1220018': {'line': 'HEK293T', 'with': 'shRNA against BRD4'}, 'GSM2632270': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1220017': {'line': 'HEK293T', 'with': 'none (control)'}, 'GSM1976408': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1976409': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1976404': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1976405': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Pre-treatment'}, 'GSM1976406': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1976407': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Pre-treatment'}, 'GSM1976400': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Pre-treatment'}, 'GSM1976401': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1976402': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1976403': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Pre-treatment'}, 'GSM2632273': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1863633': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1943688': {'type': 'Monocyte', 'classification': 'none', 'condition': 'single'}, 'GSM1943689': {'type': 'Monocyte', 'classification': 'none', 'condition': 'co-culture'}, 'GSM1863636': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_low'}, 'GSM1863637': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_low'}, 'GSM1863634': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863635': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863638': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_low'}, 'GSM1863639': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1943687': {'line': 'MDA-MB-231', 'type': 'Breast cancer', 'classification': 'TNBC', 'condition': 'single'}, 'GSM2165957': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Thr4 phospho'}, 'GSM2165956': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Tyr1 phospho'}, 'GSM2165959': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'DMSO control for pla-B, Ser5 phospho'}, 'GSM2165958': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa cells', 'variation': 'Ser7 phospho'}, 'GSM2585423': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585422': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585421': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585420': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585427': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585426': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585425': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585424': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585429': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585428': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2445479': {'type': 'iMGL', 'treatment': 'None'}, 'GSM2445478': {'type': 'iMGL', 'treatment': 'None'}, 'GSM1980561': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1900351': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '10 nM E2', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'PP242'}, 'GSM1900350': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '10 nM E2', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'PP242'}, 'GSM1900353': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': 'Veh', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'PP242'}, 'GSM1900352': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': 'Veh', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'PP242'}, 'GSM2759488': {'tissue': 'dermal fibroblast', 'genotype': 'Dominant negative mutant_glycine missense', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2759489': {'tissue': 'dermal fibroblast', 'genotype': 'Dominant negative mutant_glycine missense', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2759486': {'tissue': 'dermal fibroblast', 'genotype': 'Dominant negative mutant_exon skipping', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2759487': {'tissue': 'dermal fibroblast', 'genotype': 'Dominant negative mutant_exon skipping', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2759484': {'tissue': 'dermal fibroblast', 'genotype': 'Dominant negative mutant_exon skipping', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2759485': {'tissue': 'dermal fibroblast', 'genotype': 'Dominant negative mutant_exon skipping', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2295926': {'time': '24 hours', 'line': 'UCSD-AML1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295927': {'time': '24 hours', 'line': 'UCSD-AML1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295924': {'time': '24 hours', 'line': 'UT-7', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295925': {'time': '24 hours', 'line': 'UCSD-AML1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295922': {'time': '24 hours', 'line': 'UT-7', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295923': {'time': '24 hours', 'line': 'UT-7', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295920': {'time': '24 hours', 'line': 'UT-7', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295921': {'time': '24 hours', 'line': 'UT-7', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM2295928': {'time': '24 hours', 'line': 'UCSD-AML1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Vehicle'}, 'GSM2295929': {'time': '24 hours', 'line': 'UCSD-AML1', 'tissue': 'Human blood', 'disease': 'Acute Myeloid Leukemia', 'treatment': 'Cyclocreatine (3mM)'}, 'GSM1896180': {'individual': 'EU22', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896181': {'individual': 'EU22', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896182': {'individual': 'EU22', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896183': {'individual': 'EU24', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896184': {'individual': 'EU24', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896185': {'individual': 'EU24', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896186': {'individual': 'EU26', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896187': {'individual': 'EU26', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896188': {'individual': 'EU26', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896189': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2665561': {'differentiation': 'Day35', 'type': 'hESC derived cIN'}, 'GSM1970803': {'type': 'Human cervical cancer cells (HeLa)'}, 'GSM2665563': {'differentiation': 'Day35', 'type': 'hESC derived cIN'}, 'GSM2665562': {'differentiation': 'Day35', 'type': 'hESC derived cIN'}, 'GSM1970806': {'type': 'Human cervical cancer cells (HeLa)'}, 'GSM1970807': {'type': 'Human cervical cancer cells (HeLa)'}, 'GSM1970804': {'type': 'Human cervical cancer cells (HeLa)'}, 'GSM1970805': {'type': 'Human cervical cancer cells (HeLa)'}, 'GSM2665569': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2665568': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM1970808': {'type': 'Human cervical cancer cells (HeLa)'}, 'GSM1970809': {'type': 'Human cervical cancer cells (HeLa)'}, 'GSM1646699': {'status': 'Tumor', 'gender': 'M', 'age': '39', 'tissue': 'liver'}, 'GSM1646698': {'status': 'Tumor', 'gender': 'M', 'age': '41', 'tissue': 'liver'}, 'GSM1646693': {'status': 'Tumor', 'gender': 'M', 'age': '52', 'tissue': 'liver'}, 'GSM1646692': {'status': 'Tumor', 'gender': 'M', 'age': '31', 'tissue': 'liver'}, 'GSM1646691': {'status': 'Tumor', 'gender': 'F', 'age': '32', 'tissue': 'liver'}, 'GSM1646690': {'status': 'Tumor', 'gender': 'M', 'age': '56', 'tissue': 'liver'}, 'GSM1646697': {'status': 'Tumor', 'gender': 'M', 'age': '46', 'tissue': 'liver'}, 'GSM1646696': {'status': 'Tumor', 'gender': 'F', 'age': '51', 'tissue': 'liver'}, 'GSM1646695': {'status': 'Tumor', 'gender': 'M', 'age': '43', 'tissue': 'liver'}, 'GSM1646694': {'status': 'Tumor', 'gender': 'M', 'age': '44', 'tissue': 'liver'}, 'GSM2641028': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM2243519': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1267264': {'tissue': 'lung', 'group': 'Admixed or American ancestry', 'phenotype': 'Idiopathic pulmonary fibrosis', 'Sex': 'Female'}, 'GSM2361519': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1267263': {'tissue': 'lung', 'group': 'Asian ancestry', 'phenotype': 'Idiopathic pulmonary fibrosis', 'Sex': 'Female'}, 'GSM2641021': {'line': 'Bel-7402', 'type': 'hepatocellular carcinoma'}, 'GSM854345': {'patient': '1', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM854346': {'patient': '1', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM854347': {'patient': '2', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM1607120': {'gender': 'M', 'age': '42', 'tissue': 'non-lesional skin'}, 'GSM2440298': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'DMSO for 28 days'}, 'GSM2190600': {'with': 'lenti-viral based shNT', 'line': 'A375', 'type': 'melanoma cell line', 'point': '4 days after transfection'}, 'GSM2190603': {'with': 'lenti-viral based shIno80', 'line': 'A375', 'type': 'melanoma cell line', 'point': '4 days after transfection'}, 'GSM2190602': {'with': 'lenti-viral based shIno80', 'line': 'A375', 'type': 'melanoma cell line', 'point': '4 days after transfection'}, 'GSM2440290': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'DMSO for 96hr'}, 'GSM2440291': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'DMSO for 96hr'}, 'GSM2440292': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'DMSO for 96hr'}, 'GSM2440293': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'LBH589 (10nM) for 96hr'}, 'GSM2440294': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'LBH589 (10nM) for 96hr'}, 'GSM2440295': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'LBH589 (10nM) for 96hr'}, 'GSM2440296': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'DMSO for 28 days'}, 'GSM2440297': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'DMSO for 28 days'}, 'GSM2284968': {'protocol': 'Cells were grown in DMEM supplemented with 10%FBS', 'line': 'MDA-MB231', 'type': 'Breast cancer (Basal type)', 'treatment': '40microg/ml MMS for 8 hours'}, 'GSM1290015': {'line': 'IMR90', 'type': 'proliferating'}, 'GSM1592572': {'gender': 'male', 'type': 'NCCIT cells, hECC', 'subtype': 'total RNA (rRNA depleted)'}, 'GSM1592573': {'gender': 'male', 'type': 'NCCIT cells, hECC', 'subtype': 'total RNA (rRNA depleted)'}, 'GSM1592570': {'gender': 'male', 'type': 'NCCIT cells, hECC', 'subtype': 'total RNA (rRNA depleted)'}, 'GSM1592571': {'gender': 'male', 'type': 'NCCIT cells, hECC', 'subtype': 'total RNA (rRNA depleted)'}, 'GSM1057332': {'type': 'neuron'}, 'GSM1057333': {'type': 'iPSC'}, 'GSM1057334': {'type': 'NPC'}, 'GSM949587': {'line': 'SUM159PT_MCF7', 'type': 'Heterofusion'}, 'GSM949586': {'line': 'T-47D', 'type': 'Luminal cells'}, 'GSM949585': {'line': 'MCF7', 'type': 'Luminal cells'}, 'GSM949584': {'line': 'SUM159PT_BT-474', 'type': 'Heterofusion'}, 'GSM949583': {'line': 'SUM159PT_T-47D', 'type': 'Heterofusion'}, 'GSM949582': {'line': 'MDA-MB-231_MCF7', 'type': 'Heterofusion'}, 'GSM1872851': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872852': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM949589': {'line': 'MDA-MB-231', 'type': 'Basal-like cells'}, 'GSM949588': {'line': 'SUM159PT', 'type': 'Basal-like cells'}, 'GSM2643389': {'type': 'explant derived cells in culture', 'agent': 'DMSO', 'point': '1h'}, 'GSM1872855': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1634452': {'type': 'U2OS', 'treatment': 'Myc activation + Torin-1'}, 'GSM2107740': {'line': 'REH', 'treatment': 'lnc-RTN4R-1 LNA GapmeR2', 'time': '72h'}, 'GSM2107741': {'line': 'REH', 'treatment': 'lnc-ASTN1-1 LNA GapmeR1', 'time': '72h'}, 'GSM2107742': {'line': 'REH', 'treatment': 'lnc-ASTN1-1 LNA GapmeR2', 'time': '72h'}, 'GSM1872857': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2124772': {'rin': '2.2', 'Sex': 'female'}, 'GSM2170642': {'stage': 'Hepatic endoderm 2'}, 'GSM2124770': {'rin': '2.8', 'Sex': 'female'}, 'GSM2124771': {'rin': '3.6', 'Sex': 'female'}, 'GSM2170647': {'stage': 'Hepatic endoderm 2'}, 'GSM2170646': {'stage': 'Hepatic endoderm 2'}, 'GSM2837078': {'selected': 'TRUE', 'treatment': '2 hr'}, 'GSM2837079': {'selected': 'TRUE', 'treatment': '4 hr'}, 'GSM2837077': {'selected': 'TRUE', 'treatment': '1 hr'}, 'GSM2170649': {'stage': 'Hepatic endoderm 2'}, 'GSM2170648': {'stage': 'Hepatic endoderm 2'}, 'GSM2837070': {'line': 'YT', 'type': 'natural killer cell line'}, 'GSM1965376': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965377': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965374': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965375': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965372': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965373': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965370': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965371': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1571089': {'stage': 'mesoderm'}, 'GSM1965378': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965379': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM3465586': {'type': 'Epidermal differentitation at Day 7', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 7'}, 'GSM1571085': {'stage': 'mesoderm'}, 'GSM3465587': {'type': 'Epidermal differentitation at Day 14', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 14'}, 'GSM2082554': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM1571087': {'stage': 'mesoderm'}, 'GSM2082556': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM2616578': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616579': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616574': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616575': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616576': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616577': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2616570': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM2616571': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616572': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616573': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM1571083': {'stage': 'mesoderm'}, 'GSM2373110': {'tissue': 'CTX', 'treatment': 'IFN', 'replicates': '3', 'time': '4h'}, 'GSM2082552': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM2627120': {'origin': 'small intestine', 'patient_id': '195', 'type': 'primary', 'tumor_id': 'YCS12-31032T'}, 'GSM2194476': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3465589': {'type': 'Epidermal differentitation at Day 21', 'genotype': 'Differentiation from wild type hESC', 'stage': 'Differentiation at Day 21'}, 'GSM1907085': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM1547783': {'gender': 'MALE', 'tissue': 'Nasopharynx', 'stage': 'Primary tumor'}, 'GSM1547782': {'gender': 'MALE', 'tissue': 'Nasopharynx', 'stage': 'Primary tumor'}, 'GSM1547781': {'gender': 'MALE', 'tissue': 'Nasopharynx', 'stage': 'Primary tumor'}, 'GSM1547784': {'gender': 'MALE', 'tissue': 'Nasopharynx', 'stage': 'Primary tumor'}, 'GSM2091137': {'type': 'Akata cells'}, 'GSM2091139': {'type': 'Akata cells'}, 'GSM2091138': {'type': 'Akata cells'}, 'GSM2316533': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316532': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316531': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316537': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316536': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316535': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316534': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316539': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316538': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1499800': {'treatment': '12 hour'}, 'GSM1499801': {'treatment': '12 hour'}, 'GSM2560284': {'with': 'siRNA anti-DAZAP1', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2560282': {'with': 'siRNA anti-Luciferase', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2560283': {'with': 'siRNA anti-TDP-43', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2560280': {'with': 'siRNA anti-TDP-43', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM2560281': {'with': 'siRNA anti-DAZAP1', 'line': 'SH-SY5Y', 'type': 'neuroblastoma'}, 'GSM1479503': {'index': '27', 'diagnosis': '--', 'cellcount': '1500000', 'gender': 'F', 'age': '29', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '20', 'collectiondate': 'January 25 2012', 'samplename': '20_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Healthy Control'}, 'GSM1479502': {'index': '5', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '29', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '20', 'collectiondate': 'January 25 2012', 'samplename': '20_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Healthy Control'}, 'GSM1479501': {'index': '4', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '29', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '20', 'collectiondate': 'January 25 2012', 'samplename': '20_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Healthy Control'}, 'GSM1479500': {'index': '2', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '29', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '20', 'collectiondate': 'January 25 2012', 'samplename': '20_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Healthy Control'}, 'GSM1479507': {'index': '3', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '22', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '21', 'collectiondate': 'February 2 2012', 'samplename': '21_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Healthy Control'}, 'GSM1479506': {'index': '21', 'diagnosis': '--', 'cellcount': '3700000', 'gender': 'F', 'age': '22', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '21', 'collectiondate': 'February 2 2012', 'samplename': '21_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Healthy Control'}, 'GSM1479505': {'index': '6', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '29', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '20', 'collectiondate': 'January 25 2012', 'samplename': '20_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Healthy Control'}, 'GSM1479504': {'index': '11', 'diagnosis': '--', 'cellcount': '285000', 'gender': 'F', 'age': '29', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '20', 'collectiondate': 'January 25 2012', 'samplename': '20_NK', 'celltype': 'NK', 'diseasestatus': 'Healthy Control'}, 'GSM1479509': {'index': '12', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '22', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '21', 'collectiondate': 'February 2 2012', 'samplename': '21_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Healthy Control'}, 'GSM1479508': {'index': '7', 'diagnosis': '--', 'cellcount': '363469', 'gender': 'F', 'age': '22', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '21', 'collectiondate': 'February 2 2012', 'samplename': '21_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Healthy Control'}, 'GSM603081': {'marker': 'CD44', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM603080': {'marker': 'CD24', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM603083': {'marker': 'CD44', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM603082': {'marker': 'CD44', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM603085': {'marker': 'CD24', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM1706691': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'None', 'passages': 'p28', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706692': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'None', 'passages': 'p28', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM603086': {'marker': 'CD24', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM603089': {'marker': 'EPCR', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM603088': {'marker': 'EPCR', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM1706698': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM1706699': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM1350529': {'line': 'MDA-MB-231', 'antibody': 'Glucocorticoid Receptor (D8H2) XP® Rabbit mAb #3660 from CST', 'cancer': 'Breast adenocarcinoma'}, 'GSM1350528': {'line': 'MDA-MB-231', 'antibody': 'Glucocorticoid Receptor (D8H2) XP® Rabbit mAb #3660 from CST', 'cancer': 'Breast adenocarcinoma'}, 'GSM1350527': {'line': 'MDA-MB-231', 'antibody': 'Glucocorticoid Receptor (D8H2) XP® Rabbit mAb #3660 from CST', 'cancer': 'Breast adenocarcinoma'}, 'GSM1350526': {'line': 'MDA-MB-231', 'antibody': 'Glucocorticoid Receptor (D8H2) XP® Rabbit mAb #3660 from CST', 'cancer': 'Breast adenocarcinoma'}, 'GSM2307156': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2287578': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287579': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287572': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287573': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287570': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287571': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287576': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287577': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287574': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287575': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2791402': {'host': 'female athymic nude mice (Foxn1nu)', 'tissue': 'breast cancer patient-derived xenografts (PDX)', 'type': 'snapfrozen xenograft specimen', 'tag': 'Hormone receptor positive'}, 'GSM2610933': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2791400': {'host': 'female athymic nude mice (Foxn1nu)', 'tissue': 'breast cancer patient-derived xenografts (PDX)', 'type': 'snapfrozen xenograft specimen', 'tag': 'Hormone receptor positive'}, 'GSM2610931': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610936': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610937': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610934': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2090429': {'subtype': 'nascent RNA', 'line': 'MOLT4', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'dBET6'}, 'GSM2090426': {'subtype': 'nascent RNA', 'line': 'MOLT4', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'DMSO'}, 'GSM2090427': {'subtype': 'nascent RNA', 'line': 'MOLT4', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'JQ1'}, 'GSM2610938': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610939': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2686852': {'individual': '49', 'group': 'Fulani', 'ID': '104', 'population': 'CD14+ monocyte'}, 'GSM2166366': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2686850': {'individual': '20', 'group': 'Fulani', 'ID': '105', 'population': 'CD14+ monocyte'}, 'GSM2686851': {'individual': '43', 'group': 'Fulani', 'ID': '117', 'population': 'CD14+ monocyte'}, 'GSM2166363': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2686857': {'individual': '53', 'group': 'Fulani', 'ID': '101', 'population': 'CD14+ monocyte'}, 'GSM2686854': {'individual': '57', 'group': 'Fulani', 'ID': '109', 'population': 'CD14+ monocyte'}, 'GSM2166360': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1838456': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM1838454': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM1838455': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM1838452': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM1838453': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM1838450': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM1838451': {'type': 'day 15 iPSC-derived cardiomyocytes', 'genotype': 'wild-type'}, 'GSM2152786': {'transfection': 'ON-TARGETplus Non-targeting siRNA (Dharmacon)'}, 'GSM2152787': {'transfection': 'ON-TARGETplus Non-targeting siRNA (Dharmacon)'}, 'GSM2152784': {'transfection': 'siAcinus (CUGCAGAGCAUGAAGUAAAUU)'}, 'GSM2152785': {'transfection': 'ON-TARGETplus Non-targeting siRNA (Dharmacon)'}, 'GSM1534510': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534511': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534512': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534513': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534518': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534519': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1865458': {'line': 'DKO-1', 'type': 'exosomes'}, 'GSM2026953': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q96HQ0'}, 'GSM2307093': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307090': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2026950': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9GZX5'}, 'GSM1865459': {'line': 'DKO-1', 'type': 'exosomes'}, 'GSM2093199': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093198': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093197': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093196': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': '14', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093195': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093194': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093193': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093192': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093191': {'bin': '18', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2026956': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8N9F8'}, 'GSM2687207': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2157099': {'type': 'hepatocellular carcinoma (HCC)', 'stage': 'stage II'}, 'GSM2157098': {'type': 'adjacent non-tumor tissue', 'stage': 'stage II'}, 'GSM2157097': {'type': 'hepatocellular carcinoma (HCC)', 'stage': 'stage II'}, 'GSM2307095': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2735246': {'cohort': 'Paired', 'tils': '10', 'subtype': 'I', 'burden': '18', 'morphology': 'undifferentiated, spindle', 'event': 'Disease progression', 'stage': 'III'}, 'GSM2026959': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q7Z7K2'}, 'GSM2026958': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q7Z7K2'}, 'GSM2535636': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1096', 'samplename': '1_413UNST_C15', 'seqsite': 'BRI', 'sampleID': 'S13200', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1096', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C15'}, 'GSM2889013': {'tissue': 'pancreatic islets'}, 'GSM1888624': {'set': 'isogenic', 'type': 'iPSC'}, 'GSM1888625': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888621': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM2526808': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2058157': {'line': 'V576', 'tissue': 'colorectal cancer cell line'}, 'GSM2058155': {'line': 'V457', 'tissue': 'colorectal cancer cell line'}, 'GSM1835942': {'line': 'TM87', 'type': 'retroperitoneum rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835941': {'line': 'TM87', 'type': 'retroperitoneum rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835940': {'line': 'TM87', 'type': 'retroperitoneum rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM2039407': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM2058159': {'line': 'V576', 'tissue': 'colorectal cancer cell line'}, 'GSM3189220': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '34', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.714794', 'percentaligned': '0.834749276', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.312085'}, 'GSM3189221': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.694038', 'percentaligned': '0.940359264', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '10.605337'}, 'GSM3189222': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '62', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.706547', 'percentaligned': '0.722579352', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.660031', 'original': 'Control'}, 'GSM3189223': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.862924', 'percentaligned': '0.882607877', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.270724', 'original': 'Control'}, 'GSM3189224': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '35.48387097', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.727293', 'percentaligned': '0.747159348', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.430112', 'original': 'Control'}, 'GSM3189225': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-Cpat19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.683461', 'percentaligned': '0.941536139', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.978022', 'original': 'Control'}, 'GSM3189226': {'boca': 'Yes', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '36', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.676549', 'percentaligned': '0.906402777', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.515388'}, 'GSM3189227': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '37', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.640765', 'percentaligned': '0.932083869', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.557925', 'original': 'Control'}, 'GSM3189228': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '23', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.690407', 'percentaligned': '0.948388389', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.876971', 'original': 'Control'}, 'GSM3189229': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A47', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.624315', 'percentaligned': '0.956104641', 'Sex': 'F', 'nl63': 'No', 'libcounts': '12.93965', 'original': 'Control'}, 'GSM1888629': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM2580015': {'gender': 'female', 'type': 'hiPSC-astrocyte'}, 'GSM2580014': {'gender': 'female', 'type': 'hiPSC-astrocyte'}, 'GSM2580017': {'gender': 'female', 'type': 'hiPSC-astrocyte'}, 'GSM2580016': {'gender': 'female', 'type': 'hiPSC-astrocyte'}, 'GSM2776941': {'line': 'M263', 'type': 'none', 'treatment': 'none'}, 'GSM2776942': {'line': 'M263', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2776943': {'line': 'M395', 'type': 'none', 'treatment': 'none'}, 'GSM2776944': {'line': 'M395', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2776945': {'line': 'M395', 'type': 'none', 'treatment': 'none'}, 'GSM2776946': {'line': 'M395', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2776947': {'line': 'M397', 'type': 'none', 'treatment': 'none'}, 'GSM2776948': {'line': 'M397', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2042939': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042938': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2124987': {'tissue': 'DLBCL'}, 'GSM2124986': {'tissue': 'DLBCL'}, 'GSM2042933': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': '48hr'}, 'GSM2042932': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '24hr'}, 'GSM2042931': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '24hr'}, 'GSM2042930': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '24hr'}, 'GSM2042937': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042936': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': '48hr'}, 'GSM2042935': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': '48hr'}, 'GSM2042934': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': '48hr'}, 'GSM1378017': {'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM2361589': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM3362559': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM1941114': {'with': 'siRNAs targeting ECI2', 'line': 'RWPE-1', 'type': 'normal prostate epithelium cell line', 'antibody': 'none'}, 'GSM1941115': {'with': 'siRNAs targeting ECI2', 'line': 'RWPE-1', 'type': 'normal prostate epithelium cell line', 'antibody': 'none'}, 'GSM2175040': {'line': 'K562'}, 'GSM2175041': {'line': 'K562'}, 'GSM1941110': {'with': 'scrambled siRNA', 'line': 'RWPE-1', 'type': 'normal prostate epithelium cell line', 'antibody': 'none'}, 'GSM1941111': {'with': 'siRNAs targeting ECI2', 'line': 'RWPE-1', 'type': 'normal prostate epithelium cell line', 'antibody': 'none'}, 'GSM1941112': {'with': 'siRNAs targeting ECI2', 'line': 'RWPE-1', 'type': 'normal prostate epithelium cell line', 'antibody': 'none'}, 'GSM1941113': {'with': 'scrambled siRNA', 'line': 'RWPE-1', 'type': 'normal prostate epithelium cell line', 'antibody': 'none'}, 'GSM2175048': {'line': 'K562'}, 'GSM2175049': {'line': 'K562'}, 'GSM1357216': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357217': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM2316948': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1357215': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM2361581': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2316942': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316943': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316940': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316941': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316946': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316947': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1357218': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357219': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6-, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM2361583': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2881026': {'donor': 'Donor_3', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM3362557': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM2361585': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM3362555': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM2361587': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2424986': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2689355': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689356': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689357': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424982': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424983': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2689352': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689353': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689358': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689359': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424988': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424989': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2527244': {'age': '6 post conception weeks (pcw)', 'type': 'Cultured embryonic lung stalk epithelium', 'number': '5'}, 'GSM2425059': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425058': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425053': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425052': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425051': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425050': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425057': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425056': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425055': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425054': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1709930': {'type': 'SGBS adipocyte D10'}, 'GSM1709931': {'type': 'SGBS adipocyte D10'}, 'GSM1709932': {'type': 'SGBS adipocyte D10'}, 'GSM1709933': {'type': 'SGBS adipocyte D10'}, 'GSM1709934': {'type': 'SGBS adipocyte D10'}, 'GSM1709935': {'type': 'SGBS adipocyte D10'}, 'GSM1709936': {'type': 'SGBS adipocyte D10'}, 'GSM1709937': {'type': 'SGBS adipocyte D10'}, 'GSM1709938': {'antibody': 'BRD4 (A301-985A, Bethyl)', 'type': 'SGBS adipocyte D10'}, 'GSM1709939': {'antibody': 'BRD4 (A301-985A, Bethyl)', 'type': 'SGBS adipocyte D10'}, 'GSM2527242': {'age': '7 post conception weeks (pcw)', 'type': 'Cultured embryonic lung tip epithelium', 'number': '7'}, 'GSM1603029': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603028': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603023': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603022': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603021': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603020': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603027': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603026': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603025': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603024': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM2451201': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451200': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451203': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451202': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451205': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451204': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451207': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451206': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451209': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451208': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2527241': {'age': '6 post conception weeks (pcw)', 'type': 'Cultured embryonic lung tip epithelium', 'number': '5'}, 'GSM1095141': {'subset': 'poly A RNA', 'type': 'lymphoblastoid cell lines (LCLs) derived from patient'}, 'GSM1095140': {'subset': 'poly A RNA', 'type': 'lymphoblastoid cell lines (LCLs) derived from healthy control'}, 'GSM2047419': {'well': 'bulk', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047418': {'well': 'H12', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2877955': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877954': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877957': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877956': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2047413': {'well': 'H07', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2877958': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2047411': {'well': 'H05', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047410': {'well': 'H04', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047417': {'well': 'H11', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047416': {'well': 'H10', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047415': {'well': 'H09', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047414': {'well': 'H08', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1875305': {'media': 'RPM1-1640', 'line': 'COLO 205', 'type': 'human colorectal metastatic adenocarcinoma'}, 'GSM1875304': {'media': 'RPM1-1640', 'line': 'NCI-H508', 'type': 'colorectal metastatic adenocarcinoma'}, 'GSM1875307': {'line': 'HCC1954', 'type': 'established breast cancer cell line', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1875306': {'media': 'L-15 Leibovitz', 'line': 'MB-157', 'type': 'breast medullary carcinoma'}, 'GSM1875301': {'media': 'DMEM', 'line': '42-MG', 'type': 'glioblastoma'}, 'GSM1875300': {'media': 'DMEM', 'line': '8-MG', 'type': 'glioblastoma'}, 'GSM1875303': {'media': 'McCoyâ\\x80\\x99s 5A', 'line': 'HTB-38', 'type': 'colorectal primary adenocarcinoma'}, 'GSM1875302': {'media': 'RPM1-1640', 'line': 'AU565', 'type': 'breast adenocarcinoma'}, 'GSM1875309': {'line': 'HCC1954', 'type': 'established breast cancer cell line', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1875308': {'line': 'HCC1954', 'type': 'established breast cancer cell line', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1574775': {'concentration': '6868.2', 'individual': 'PHH2', 'type': 'primary human hepatocytes', 'treatment': 'Compound 1uM', 'conc': '18.109'}, 'GSM2897306': {'type': 'RNA from 4164-1010 PDOs'}, 'GSM2897307': {'type': 'RNA from 3994-055 PDOs'}, 'GSM2897304': {'type': 'RNA from 4164-1001 PDOs'}, 'GSM2897305': {'type': 'RNA from 4164-1010 PDOs'}, 'GSM2897302': {'type': 'RNA from 3770-1032 PDOs'}, 'GSM2897303': {'type': 'RNA from 4164-1001 PDOs'}, 'GSM1836621': {'expression_construct': 'FLAG-TOE1E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'E220 addback- siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM2897301': {'type': 'RNA from 3770-1032 PDOs'}, 'GSM2855438': {'type': 'OCI-LY10', 'treatment': 'transduced with STAT3 shRNA#10 that was induced for expresion with 20 ng/ml doxycycline for 2 days'}, 'GSM1836629': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U2'}, 'GSM2897309': {'type': 'RNA from 3994-071 PDOs'}, 'GSM2855439': {'type': 'OCI-LY10', 'treatment': 'transduced with STAT3 shRNA#16 that was induced for expresion with 20 ng/ml doxycycline for 2 days'}, 'GSM821030': {'line': 'GM10860', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM2889027': {'tissue': 'pancreatic islets'}, 'GSM1505843': {'gender': 'female', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '03-02'}, 'GSM1446873': {'line': 'U2OS'}, 'GSM2561429': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561428': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561425': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561424': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561427': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561426': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561421': {'subtype': 'human embroynic neuron cells (N)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561423': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561422': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2855437': {'type': 'OCI-LY10', 'treatment': 'transduced with control shRNA that was induced for expresion with 20 ng/ml doxycycline for 2 days'}, 'GSM1836083': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836082': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836081': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836080': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836087': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836086': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836085': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836084': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836089': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836088': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2855434': {'type': 'TMD8', 'treatment': 'transduced with control shRNA that was induced for expresion with 20 ng/ml doxycycline for 2 days'}, 'GSM2840203': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840202': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840201': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840200': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840207': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840206': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840205': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840204': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2536043': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10618', 'samplename': '1D_Ctl5_redraw_C28', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34718', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10618', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C28'}, 'GSM2536042': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10615', 'samplename': '1D_Ctl5_redraw_C85', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34715', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10615', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C85'}, 'GSM2840209': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840208': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2536047': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10623', 'samplename': '1D_Ctl5_redraw_C36', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34723', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10623', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C36'}, 'GSM2536046': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10622', 'samplename': '1_Ctl5_redraw_C10', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34722', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10622', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C10'}, 'GSM2536045': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10620', 'samplename': '1D_Ctl5_redraw_C35', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34720', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10620', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C35'}, 'GSM2536044': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10619', 'samplename': '1D_Ctl5_redraw_C40', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34719', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10619', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C40'}, 'GSM2855435': {'type': 'TMD8', 'treatment': 'transduced with STAT3 shRNA#10 that was induced for expresion with 20 ng/ml doxycycline for 2 days'}, 'GSM2784389': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '24h'}, 'GSM2784388': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '24h'}, 'GSM1836539': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM1833909': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833908': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM1876027': {'treatment': 'PDGF-BB'}, 'GSM2665838': {'age': 'Day 175', 'well': 'E10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM1876021': {'treatment': 'Serum-free control'}, 'GSM1876023': {'treatment': 'PDGF-BB'}, 'GSM1876022': {'treatment': 'TGF-B1'}, 'GSM2665833': {'age': 'Day 175', 'well': 'F10', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM1833900': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'wild-type', 'time': 'Embryoid body, day 50'}, 'GSM1833903': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833902': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833905': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 50'}, 'GSM2665836': {'age': 'Day 175', 'well': 'D12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM1833907': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833906': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 50'}, 'GSM2784383': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '24h'}, 'GSM2784382': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '24h'}, 'GSM1896122': {'individual': 'AF43', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2784381': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '24h'}, 'GSM2784380': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '24h'}, 'GSM2784387': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_3', 'time': '24h'}, 'GSM2784386': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '24h'}, 'GSM2784385': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '24h'}, 'GSM1836537': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM2784384': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '24h'}, 'GSM2374111': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374110': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374113': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374112': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374115': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374114': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374117': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374116': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374119': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374118': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2855431': {'antibody': 'STAT3', 'type': 'TMD8', 'treatment': 'AZD1480(JAK inhibitor) for 4hrs'}, 'GSM2671256': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671257': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671254': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671255': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671252': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671253': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671250': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671251': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1523631': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523630': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523633': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523632': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523635': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523634': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM2671258': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671259': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2781944': {'line': 'U87 glioblastoma cells', 'variation': 'Myt1l expression'}, 'GSM2781942': {'line': 'U87 glioblastoma cells', 'variation': 'Myt1l expression'}, 'GSM2781943': {'line': 'U87 glioblastoma cells', 'variation': 'Myt1l expression'}, 'GSM2781940': {'line': 'U87 glioblastoma cells', 'variation': 'Myt1 expression'}, 'GSM2781941': {'line': 'U87 glioblastoma cells', 'variation': 'Myt1 expression'}, 'GSM1726308': {'generation': 'Patient bone tissue', 'stage': 'Post-treatment'}, 'GSM1726309': {'generation': '1st generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Post-treatment'}, 'GSM1946182': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19143', 'for': '60min'}, 'GSM1726304': {'generation': '1st generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Pre-treatment'}, 'GSM1726305': {'generation': '2nd generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Pre-treatment'}, 'GSM1726306': {'generation': '2nd generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Pre-treatment'}, 'GSM1726307': {'generation': '2nd generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Pre-treatment'}, 'GSM1726301': {'generation': 'Patient bone tissue', 'stage': 'Pre-treatment'}, 'GSM1726302': {'generation': '1st generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Pre-treatment'}, 'GSM1726303': {'generation': '1st generation Xenograft', 'host': 'NOD SCID mice', 'stage': 'Pre-treatment'}, 'GSM1323693': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '5.37', 'reads': '137,313,040', 'tissue': 'prostate', 'u': '73.8', 'mapped': '60.0%', 'id': 'VA-PC-99-80', 'bcr': '0'}, 'GSM2412398': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412399': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412396': {'line': 'H1299', 'treatment': 'YEATS2 Knock Down'}, 'GSM2412397': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412394': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412395': {'line': 'H1299', 'treatment': 'YEATS2 Knock Down'}, 'GSM2412392': {'line': 'H1299', 'treatment': 'YEATS2 Knock Down'}, 'GSM2412393': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412390': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412391': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM1946183': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19143', 'for': '60min'}, 'GSM3594465': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM1836532': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM2858921': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'PBS'}, 'GSM1646716': {'status': 'Tumor', 'gender': 'M', 'age': '54', 'tissue': 'liver'}, 'GSM1646717': {'status': 'Tumor', 'gender': 'M', 'age': '41', 'tissue': 'liver'}, 'GSM1646714': {'status': 'Tumor', 'gender': 'M', 'age': '65', 'tissue': 'liver'}, 'GSM2459017': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.42'}, 'GSM1646712': {'status': 'Tumor', 'gender': 'M', 'age': '41', 'tissue': 'liver'}, 'GSM1646713': {'status': 'Tumor', 'gender': 'M', 'age': '52', 'tissue': 'liver'}, 'GSM1646710': {'status': 'Tumor', 'gender': 'M', 'age': '49', 'tissue': 'liver'}, 'GSM1646711': {'status': 'Tumor', 'gender': 'M', 'age': '49', 'tissue': 'liver'}, 'GSM2459018': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.67'}, 'GSM2459019': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.58'}, 'GSM1646718': {'status': 'Tumor', 'gender': 'M', 'age': '45', 'tissue': 'liver'}, 'GSM1646719': {'status': 'Tumor', 'gender': 'M', 'age': '39', 'tissue': 'liver'}, 'GSM2858924': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'PBS'}, 'GSM1836121': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1370365': {'line': 'HeLa', 'type': 'cervical epithelial'}, 'GSM1370364': {'line': 'HEK293', 'type': 'Embryonic kidney derived cells'}, 'GSM1370367': {'line': 'A549', 'type': 'Adenocarcinomic human alveolar basal epithelial cells'}, 'GSM1370366': {'line': 'HeLa', 'type': 'cervical epithelial'}, 'GSM1370361': {'line': 'HeLa', 'type': 'cervical epithelial'}, 'GSM1370360': {'line': 'HeLa', 'type': 'cervical epithelial'}, 'GSM1370363': {'line': 'A549', 'type': 'Adenocarcinomic human alveolar basal epithelial cells'}, 'GSM1370362': {'line': 'HeLa', 'type': 'cervical epithelial'}, 'GSM1370369': {'line': 'HEK293', 'type': 'Embryonic kidney derived cells'}, 'GSM1370368': {'line': 'A549', 'type': 'Adenocarcinomic human alveolar basal epithelial cells'}, 'GSM2287002': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287003': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287000': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287001': {'gender': 'male', 'type': 'Pooled'}, 'GSM2287006': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287007': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287004': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287005': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287008': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287009': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2401572': {'gleason': '7', 'race': 'White', 'age': '41', 'psa': '10.3', 'batch': '1', 'tissue': 'tumor', 'id': '2', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2A'}, 'GSM2401573': {'gleason': '7', 'race': 'White', 'age': '38', 'psa': '6.05', 'batch': '1', 'tissue': 'tumor', 'id': '10', 'ethnicity': 'Hispanic', 'Stage': 'T2C'}, 'GSM2401576': {'gleason': '7', 'race': 'White', 'age': '72', 'psa': '13.9', 'batch': '1', 'tissue': 'tumor', 'id': '37', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2C'}, 'GSM2401577': {'gleason': '7', 'race': 'Asian', 'age': '43', 'psa': '3.9', 'batch': '1', 'tissue': 'tumor', 'id': '29', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2C'}, 'GSM2401574': {'gleason': '7', 'race': 'White', 'age': '45', 'psa': '13.42', 'batch': '1', 'tissue': 'tumor', 'id': '22', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2C'}, 'GSM2401575': {'gleason': '7', 'race': 'White', 'age': '45', 'psa': '4.9', 'batch': '1', 'tissue': 'tumor', 'id': '15', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2C'}, 'GSM2401578': {'gleason': '7', 'race': 'White', 'age': '73', 'psa': '4.4', 'batch': '2', 'tissue': 'tumor', 'id': '36', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2C'}, 'GSM2401579': {'gleason': '7', 'race': 'African-American', 'age': '42', 'psa': '15.4', 'batch': '2', 'tissue': 'tumor', 'id': '8', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2C'}, 'GSM2302138': {'timepoint': 'Pre', 'id': '60', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302139': {'timepoint': 'Post', 'id': '60', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302136': {'timepoint': 'Pre', 'id': '59', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302137': {'timepoint': 'Post', 'id': '59', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302134': {'timepoint': 'Pre', 'id': '58', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302135': {'timepoint': 'Post', 'id': '58', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302132': {'timepoint': 'Pre', 'id': '57', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302133': {'timepoint': 'Post', 'id': '57', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302130': {'timepoint': 'Pre', 'id': '56', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302131': {'timepoint': 'Post', 'id': '56', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2305489': {'treatment': 'Pravastatin'}, 'GSM2305488': {'treatment': 'Pravastatin'}, 'GSM2305487': {'treatment': 'Pravastatin'}, 'GSM2305486': {'treatment': 'Pravastatin'}, 'GSM2305485': {'treatment': 'Pravastatin'}, 'GSM2305484': {'treatment': 'Pravastatin'}, 'GSM2305483': {'treatment': 'untreated'}, 'GSM2305482': {'treatment': 'untreated'}, 'GSM2305481': {'treatment': 'untreated'}, 'GSM2305480': {'treatment': 'untreated'}, 'GSM1866099': {'line': 'Gliobmastoma cell line'}, 'GSM2232918': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'control'}, 'GSM2232919': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'control'}, 'GSM1866098': {'line': 'Gliobmastoma cell line'}, 'GSM1166128': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166129': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1980316': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1166122': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Brain'}, 'GSM1166123': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Brain'}, 'GSM1166120': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166121': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Brain'}, 'GSM1166126': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166127': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166124': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Brain'}, 'GSM1166125': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2816020': {'line': 'H9'}, 'GSM2816021': {'line': 'H9'}, 'GSM2816022': {'line': 'H9'}, 'GSM2816023': {'line': 'H9'}, 'GSM2816024': {'line': 'H9'}, 'GSM2816025': {'line': 'H9'}, 'GSM2816026': {'line': 'H9'}, 'GSM2816027': {'line': 'H9'}, 'GSM2816028': {'line': 'H9'}, 'GSM2816029': {'line': 'H9'}, 'GSM2050838': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2932979': {'pucai': '45', 'score': '0', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '9'}, 'GSM1647028': {'illumina_index': '19', 'point': '4', 'batch': '6', 'agent': 'Salm', 'rin': '8.8', 'individual': 'M373'}, 'GSM1657639': {'type': 'HSPC'}, 'GSM1657638': {'type': 'HSPC'}, 'GSM1657637': {'type': 'HSPC'}, 'GSM2412775': {'status': 'positive', 'gender': 'female', 'agent': 'human rotavirus (strain Ito)', 'culture': '3-dimensional human intestinal enteroid'}, 'GSM1084065': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'emetine', 'manufacturer': 'Abnova'}, 'GSM1599210': {'line': 'CSC_shH1.0-2', 'treatment': 'DOX (14d Dox)'}, 'GSM2932973': {'pucai': '50', 'score': '4', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2932972': {'pucai': '75', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '17'}, 'GSM2932971': {'pucai': '85', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM1647020': {'illumina_index': '6', 'point': '18', 'batch': '6', 'agent': 'Rv', 'rin': '7.9', 'individual': 'M374'}, 'GSM2932977': {'pucai': '50', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '7'}, 'GSM1599211': {'line': 'CSC_shH1.0-2', 'treatment': 'washDOX (4d after Dox removal)'}, 'GSM2932976': {'pucai': '30', 'score': '1', 'remission': 'No', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '11'}, 'GSM1163039': {'patient': 'Disease_K9', 'gender': 'M', 'age': '45', 'tissue': 'Lesion', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1163038': {'patient': 'Disease_K9', 'gender': 'M', 'age': '45', 'tissue': 'Lesion', 'treatment': 'Untreated', 'id': '1'}, 'GSM2932975': {'pucai': '45', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM1163033': {'patient': 'Disease_K8', 'gender': 'M', 'age': '60', 'tissue': 'Lesion', 'treatment': 'Antagonist', 'id': '4'}, 'GSM1163032': {'patient': 'Disease_K8', 'gender': 'M', 'age': '60', 'tissue': 'Lesion', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163031': {'patient': 'Disease_K8', 'gender': 'M', 'age': '60', 'tissue': 'Lesion', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1163030': {'patient': 'Disease_K8', 'gender': 'M', 'age': '60', 'tissue': 'Lesion', 'treatment': 'Untreated', 'id': '1'}, 'GSM1163037': {'patient': 'Disease_K8', 'gender': 'M', 'age': '60', 'tissue': 'Nonlesion', 'treatment': 'Antagonist', 'id': '8'}, 'GSM1163036': {'patient': 'Disease_K8', 'gender': 'M', 'age': '60', 'tissue': 'Nonlesion', 'treatment': 'Agonist', 'id': '7'}, 'GSM1163035': {'patient': 'Disease_K8', 'gender': 'M', 'age': '60', 'tissue': 'Nonlesion', 'treatment': 'Culture/DMSO', 'id': '6'}, 'GSM1163034': {'patient': 'Disease_K8', 'gender': 'M', 'age': '60', 'tissue': 'Nonlesion', 'treatment': 'Untreated', 'id': '5'}, 'GSM2304932': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '4h'}, 'GSM2748318': {'line': 'HCT8', 'treatment': 'no treatment'}, 'GSM2748319': {'line': 'HCT8', 'treatment': 'treated with V. cholerae membrane vesicles'}, 'GSM1892678': {'tissue': 'FFPE'}, 'GSM1892679': {'tissue': 'FFPE'}, 'GSM1892676': {'tissue': 'Snap-frozen tissue'}, 'GSM1892677': {'tissue': 'FFPE'}, 'GSM2748316': {'line': 'HCT8', 'treatment': 'no treatment'}, 'GSM2748317': {'line': 'HCT8', 'treatment': 'no treatment'}, 'GSM1892672': {'tissue': 'Snap-frozen tissue'}, 'GSM1892673': {'tissue': 'Snap-frozen tissue'}, 'GSM1892670': {'tissue': 'FFPE'}, 'GSM1892671': {'tissue': 'FFPE'}, 'GSM2337064': {'origin': 'cells in vitro', 'line': 'MMACSF', 'type': 'melanoma cell line', 'treatment': 'DMSO (vehicle)'}, 'GSM2337065': {'origin': 'cells in vitro', 'line': 'MMACSF', 'type': 'melanoma cell line', 'treatment': 'DMSO (vehicle)'}, 'GSM2337066': {'origin': 'cells in vitro', 'line': 'MMACSF', 'type': 'melanoma cell line', 'treatment': 'Vemurafenib_24h_0.2µM'}, 'GSM1689731': {'line': 'HeLa cervical cancer cell line', 'transfection': 'miR-603 negative control'}, 'GSM1689730': {'line': 'HEK293 embryonic kidney cell line', 'transfection': 'miR-603 mimic'}, 'GSM2194993': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1689732': {'line': 'HeLa cervical cancer cell line', 'transfection': 'miR-603 mimic'}, 'GSM2194995': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2194994': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2194997': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2194996': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2194999': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2194998': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM984227': {'status': 'normal', 'tissue': 'kidney', 'method': 'FFPE', 'stage': 'fetal, 15wks'}, 'GSM2337061': {'origin': 'cells in vitro', 'line': 'COLO858', 'type': 'melanoma cell line', 'treatment': 'Vemurafenib_24h_0.2µM'}, 'GSM2632709': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632708': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM984226': {'status': 'normal', 'tissue': 'bowel', 'method': 'FFPE', 'stage': 'fetal, 13wks'}, 'GSM2345058': {'with': 'JQ1â\\x80\\x93PA', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM2204122': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2345054': {'with': 'JQ1', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM2345055': {'with': 'JQ1', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM2632703': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2204123': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2345050': {'with': 'DMSO', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM2632704': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2345052': {'with': 'DMSO', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM2632706': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM1399210': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1414968': {'region': 'BA6', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414969': {'region': 'BA46', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414964': {'region': 'BA47', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414965': {'region': 'BA39', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414966': {'region': 'BA45', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414967': {'region': 'BA21', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414960': {'region': 'BA40', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414961': {'region': 'BA44', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414962': {'region': 'BA22', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM1414963': {'region': 'BA9', 'identifier': '4915', 'age': '49', 'Sex': 'M'}, 'GSM2220755': {'type': 'BEAS-2B', 'treatment': 'control grown for 3 weeks'}, 'GSM2220757': {'type': 'BEAS-2B', 'treatment': 'vehicle control (Acetone) grown for 3 weeks'}, 'GSM2220756': {'type': 'BEAS-2B', 'treatment': 'control grown for 3 weeks'}, 'GSM2337068': {'origin': 'cells in vitro', 'line': 'MMACSF', 'type': 'melanoma cell line', 'treatment': 'Vemurafenib_48h_0.2µM'}, 'GSM2339828': {'tissue': 'Skeletal Muscle', 'individual': '4', 'treatment': 'exercise', 'time': '240 min'}, 'GSM2339829': {'tissue': 'Skeletal Muscle', 'individual': '4', 'treatment': 'control', 'time': 'Basal'}, 'GSM2220759': {'type': 'BEAS-2B', 'treatment': 'Hg-0.5µM for 3 weeks'}, 'GSM2220758': {'type': 'BEAS-2B', 'treatment': 'vehicle control (Acetone) grown for 3 weeks'}, 'GSM2337069': {'origin': 'cells in vitro', 'line': 'MMACSF', 'type': 'melanoma cell line', 'treatment': 'Vemurafenib_48h_0.2µM'}, 'GSM1216744': {'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM1216745': {'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM1216746': {'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM1216747': {'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM1216740': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3K27ac'}, 'GSM1216741': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3K4me1'}, 'GSM1216742': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3K4me3'}, 'GSM1216743': {'vendor': 'Abcam', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER', 'antibody': 'H3K27ac'}, 'GSM1216748': {'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM1216749': {'subtype': 'Ribosome depleted total RNA', 'line': 'DL23 cell line with pcDNA3-HA-FOXO33-ER'}, 'GSM2459865': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'DICER siRNA treated'}, 'GSM2459864': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'Negative control siRNA treated'}, 'GSM2312009': {'culture': '12', 'line': 'DCX+'}, 'GSM2312008': {'culture': '12', 'line': 'DCX+'}, 'GSM2312003': {'culture': '12', 'line': 'DCX+'}, 'GSM2312002': {'culture': '12', 'line': 'DCX+'}, 'GSM2312001': {'culture': '12', 'line': 'DCX+'}, 'GSM2312000': {'culture': '12', 'line': 'DCX+'}, 'GSM2459869': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'DROSHA siRNA treated'}, 'GSM2459868': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'DICER siRNA treated'}, 'GSM2312005': {'culture': '12', 'line': 'DCX+'}, 'GSM2312004': {'culture': '12', 'line': 'DCX+'}, 'GSM2570519': {'knockdown': 'HEB', 'line': 'Jurkat'}, 'GSM2570518': {'knockdown': 'HEB', 'line': 'Jurkat'}, 'GSM2450501': {'line': 'HEK293T', 'transfection': 'non-silencing siRNA'}, 'GSM2450500': {'line': 'HEK293T', 'transfection': 'non-silencing siRNA'}, 'GSM2570515': {'knockdown': 'RUNX1', 'line': 'Jurkat'}, 'GSM2570514': {'knockdown': 'RUNX1', 'line': 'Jurkat'}, 'GSM2570513': {'knockdown': 'GATA3', 'line': 'Jurkat'}, 'GSM2570512': {'knockdown': 'GATA3', 'line': 'Jurkat'}, 'GSM2570511': {'knockdown': 'TAL1', 'line': 'Jurkat'}, 'GSM2570510': {'knockdown': 'TAL1', 'line': 'Jurkat'}, 'GSM3416508': {'compartment': 'Stroma', 'id': 'CUMC_121', 'library': 'NuGEN'}, 'GSM3416509': {'compartment': 'Stroma', 'id': 'CUMC_122', 'library': 'NuGEN'}, 'GSM3586658': {'origin': 'UNCLASSIFIED', 'pfstt': '935', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1111', 'cycles': '8', 'oscs': '0'}, 'GSM3586659': {'origin': 'ABC', 'pfstt': '1039', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1043', 'cycles': '6', 'oscs': '0'}, 'GSM3586654': {'origin': 'UNCLASSIFIED', 'pfstt': '1281', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1281', 'cycles': '6', 'oscs': '0'}, 'GSM3586655': {'pfstt': '1085', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1284', 'cycles': '6', 'oscs': '0'}, 'GSM3586656': {'origin': 'ABC', 'pfstt': '848', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '848', 'cycles': '6', 'oscs': '0'}, 'GSM3586657': {'origin': 'ABC', 'pfstt': '1472', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1593', 'cycles': '8', 'oscs': '0'}, 'GSM3586650': {'origin': 'UNCLASSIFIED', 'pfstt': '855', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '897', 'cycles': '6', 'oscs': '0'}, 'GSM3586651': {'origin': 'GCB', 'pfstt': '727', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '808', 'cycles': '6', 'oscs': '0'}, 'GSM3586652': {'origin': 'GCB', 'pfstt': '726', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '807', 'cycles': '6', 'oscs': '0'}, 'GSM3586653': {'origin': 'GCB', 'pfstt': '79', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '112', 'cycles': '6', 'oscs': '1'}, 'GSM2750928': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2451318': {'compartment': 'Epithelium', 'id': 'CUMC_037', 'library': 'NuGEN'}, 'GSM2750926': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750927': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750924': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750925': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750922': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750923': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750920': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2451310': {'compartment': 'Epithelium', 'id': 'CUMC_033', 'library': 'NuGEN'}, 'GSM2157938': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157939': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157936': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157937': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157934': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157935': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157932': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157933': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157930': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157931': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM1505845': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '03-03'}, 'GSM2815708': {'type': 'HepLPCs-Hep', 'ethnicity': 'Asian', 'condition': 'in the differentiation medium (Passage 5, 8 days)'}, 'GSM2815709': {'type': 'HepLPCs-Hep', 'ethnicity': 'Asian', 'condition': 'in the differentiation medium (Passage 5, 8 days)'}, 'GSM1467841': {'type': 'umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scrambled 1)', 'passage': 'passage 3'}, 'GSM1467840': {'type': 'umbilical vein endothelial cells', 'treatment': 'siADAR2', 'passage': 'passage 3'}, 'GSM1467843': {'type': 'umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM1467842': {'type': 'umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scrambled 2)', 'passage': 'passage 3'}, 'GSM1467844': {'type': 'umbilical vein endothelial cells', 'treatment': 'siADAR2', 'passage': 'passage 3'}, 'GSM1945979': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18511', 'for': '60min'}, 'GSM2098749': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098748': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098747': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098746': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098745': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098744': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098743': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM424360': {'identifier': 'GM12891'}, 'GSM2098741': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098740': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM4007723': {'type': 'ESC'}, 'GSM4007722': {'type': 'iPSC'}, 'GSM4007721': {'type': 'iPSC'}, 'GSM4007720': {'type': 'ESC'}, 'GSM4007725': {'type': 'ESC'}, 'GSM4007724': {'type': 'ESC'}, 'GSM2575310': {'line': 'WM989', 'subclone': 'E2', 'condition': 'NoDrug'}, 'GSM2172133': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2108369': {'stages': 'myoblast'}, 'GSM2108368': {'stages': 'myoblast'}, 'GSM2172132': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2108363': {'stages': 'myoblast'}, 'GSM2108362': {'stages': 'myoblast'}, 'GSM2108361': {'stages': 'myoblast'}, 'GSM2108360': {'stages': 'myoblast'}, 'GSM2108367': {'stages': 'myoblast'}, 'GSM2108366': {'stages': 'myoblast'}, 'GSM2108365': {'stages': 'myoblast'}, 'GSM2108364': {'stages': 'myoblast'}, 'GSM2172130': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1945974': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18511', 'for': '30min'}, 'GSM2172137': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2575315': {'line': 'WM989', 'subclone': 'G3', 'condition': 'Drug'}, 'GSM2172136': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048726': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1957058': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957059': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957056': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957057': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957054': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957055': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957052': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957053': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957050': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957051': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1194678': {'type': 'Normal basal cells', 'pathology': 'Normal', 'patient': 'Patient 1'}, 'GSM1581033': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581032': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581031': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581030': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581037': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581036': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581035': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581034': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM2105067': {'gender': 'Female', 'age': '3 Day old', 'batch': '2F', 'condition': 'Trisomic'}, 'GSM1581039': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581038': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM2105062': {'gender': 'Male', 'age': '20 Year old', 'batch': '1F', 'condition': 'Disomic'}, 'GSM2418912': {'phenotype': 'CBS overexpression'}, 'GSM2418913': {'phenotype': 'CBS overexpression'}, 'GSM2418916': {'phenotype': 'Vector control'}, 'GSM2418917': {'phenotype': 'Vector control'}, 'GSM2418914': {'phenotype': 'CBS overexpression'}, 'GSM2418915': {'phenotype': 'Vector control'}, 'GSM2243894': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F1', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2257744': {'subtype': 'depletion of rRNA with RNAse H and oligos', 'line': 'HEK293'}, 'GSM2257745': {'subtype': 'depeletion of rRNA with ribozero', 'line': 'HEK293'}, 'GSM2257740': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '60 minutes labeling'}, 'GSM2257741': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '60 minutes labeling'}, 'GSM2257742': {'subtype': '4-thiouridine labeled RNA', 'line': 'HEK293', 'time': '60 minutes labeling'}, 'GSM2257743': {'subtype': 'Enrichment of polyA RNA with one round oligoDT selection', 'line': 'HEK293'}, 'GSM958729': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '10517', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM3104708': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104709': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM1857417': {'transduction': 'Control Lentivirus', 'line': 'V852', 'type': 'Colorectal cancer', 'Sex': 'Male'}, 'GSM1857416': {'transduction': 'Control Lentivirus', 'line': 'V852', 'type': 'Colorectal cancer', 'Sex': 'Male'}, 'GSM3104700': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104701': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM3104702': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Non class switched memory B cell'}, 'GSM3104703': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Class switched memory B cell'}, 'GSM3104704': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Naive B cell'}, 'GSM3104705': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104706': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104707': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2443615': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 7'}, 'GSM2443614': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 7'}, 'GSM2443611': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 6'}, 'GSM2443610': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 6'}, 'GSM2443613': {'subset': 'Derm CD8+CD103+', 'donor': 'Subject 7'}, 'GSM2443612': {'subset': 'Derm CD8+CD103-', 'donor': 'Subject 7'}, 'GSM2390870': {'disease': 'Healthy Control'}, 'GSM2390871': {'disease': 'Healthy Control'}, 'GSM2390872': {'disease': 'Healthy Control'}, 'GSM2390873': {'disease': 'Healthy Control'}, 'GSM2390874': {'disease': 'Healthy Control'}, 'GSM2390875': {'disease': 'Healthy Control'}, 'GSM2390876': {'disease': 'Healthy Control'}, 'GSM2390877': {'disease': 'Healthy Control'}, 'GSM2390878': {'disease': 'Healthy Control'}, 'GSM2390879': {'disease': 'Healthy Control'}, 'GSM2194528': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194529': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194520': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194521': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194522': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194523': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194524': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194525': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194526': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194527': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1538088': {'resection': '22.2', 'id': '17', 'sex': 'M'}, 'GSM1538089': {'resection': '22.2', 'id': '17', 'sex': 'M'}, 'GSM1538082': {'resection': '17.8', 'id': '8', 'sex': 'M'}, 'GSM1538083': {'resection': '16.6', 'id': '11', 'sex': 'F'}, 'GSM1538080': {'resection': '17', 'id': '7', 'sex': 'F'}, 'GSM1538081': {'resection': '17', 'id': '7', 'sex': 'F'}, 'GSM1538086': {'resection': '42.5', 'id': '14', 'sex': 'M'}, 'GSM1538087': {'resection': '23.2', 'id': '16', 'sex': 'M'}, 'GSM1538084': {'resection': '17.2', 'id': '11', 'sex': 'F'}, 'GSM1538085': {'resection': '42.5', 'id': '14', 'sex': 'M'}, 'GSM1143675': {'with': '5μM Nutlin-3a for 24hr', 'line': 'MCF7', 'type': 'breast cancer cells'}, 'GSM1885139': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM2054135': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM1940162': {'with': '0.5 μM SAHA', 'line': 'CRC119', 'type': 'colorectal cancer cell line', 'treatment': '72 hours'}, 'GSM1940163': {'with': '0.5 μM SAHA', 'line': 'CRC119', 'type': 'colorectal cancer cell line', 'treatment': '72 hours'}, 'GSM1940160': {'with': '0.01% DMSO vehicle', 'line': 'CRC119', 'type': 'colorectal cancer cell line', 'treatment': '72 hours'}, 'GSM1940161': {'with': '0.01% DMSO vehicle', 'line': 'CRC119', 'type': 'colorectal cancer cell line', 'treatment': '72 hours'}, 'GSM1940166': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940167': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940164': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940165': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940168': {'with': '0.5% 1xPBS vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940169': {'with': '0.5% 1xPBS vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1443854': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected'}, 'GSM1443855': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'dl312-infected'}, 'GSM1443856': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'e1aWT-infected'}, 'GSM1443857': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'P300 binding mutant-infected'}, 'GSM1443858': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'RB binding mutant-infected'}, 'GSM1443859': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'mock-infected'}, 'GSM1619385': {'tissue': 'Placenta', 'variation': 'PEG10 KD'}, 'GSM1619384': {'tissue': 'Placenta', 'variation': 'PEG10 KD'}, 'GSM1619386': {'tissue': 'Placenta', 'variation': 'PEG10 KD'}, 'GSM1619381': {'tissue': 'Placenta', 'variation': 'PEG10 CTRL'}, 'GSM1619383': {'tissue': 'Placenta', 'variation': 'PEG10 CTRL'}, 'GSM1619382': {'tissue': 'Placenta', 'variation': 'PEG10 CTRL'}, 'GSM1608005': {'molecule': 'polyA RNA', 'line': 'Differentiated IVF-ESC', 'type': 'Fibroblast'}, 'GSM1608006': {'molecule': 'polyA RNA', 'line': 'Differentiated IVF-ESC', 'type': 'Fibroblast'}, 'GSM1608007': {'molecule': 'polyA RNA', 'line': 'Differentiated IVF-ESC', 'type': 'Fibroblast'}, 'GSM1608008': {'molecule': 'polyA RNA', 'line': 'Differentiated IVF-ESC', 'type': 'Fibroblast'}, 'GSM1608009': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM3189389': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.561421', 'percentaligned': '0.953911057', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.206472', 'original': 'Control'}, 'GSM3189388': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B101', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '13', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.732731', 'percentaligned': '0.94726055', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.552771', 'original': 'Control'}, 'GSM3189387': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B101', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '33', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.603218', 'percentaligned': '0.948983425', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.574492', 'original': 'Control'}, 'GSM3189386': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '27', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.600129', 'percentaligned': '0.90141915', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.588619'}, 'GSM3189385': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '40', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.5506', 'percentaligned': '0.950514255', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.611235'}, 'GSM3189384': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A39', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.561624', 'percentaligned': '0.960537223', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.882134', 'original': 'Case'}, 'GSM2581253': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM3189382': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.624393', 'percentaligned': '0.956571351', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.682816', 'original': 'Control'}, 'GSM3189381': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.600482', 'percentaligned': '0.959471775', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.056776', 'original': 'Control'}, 'GSM3189380': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '11', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.666611', 'percentaligned': '0.888279137', 'Sex': 'M', 'nl63': 'No', 'libcounts': '0.855225'}, 'GSM1395501': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1874957': {'line': 'MCF10A', 'passages': '5', 'type': 'Human normal breast epithelial cells'}, 'GSM1874956': {'line': 'MCF10A', 'passages': '5', 'type': 'Human normal breast epithelial cells'}, 'GSM1874955': {'line': 'MCF10A', 'passages': '5', 'type': 'Human normal breast epithelial cells'}, 'GSM1874954': {'line': 'MCF10A', 'passages': '5', 'type': 'Human normal breast epithelial cells'}, 'GSM1874953': {'line': 'MCF10A', 'passages': '5', 'type': 'Human normal breast epithelial cells'}, 'GSM1874952': {'line': 'MCF10A', 'passages': '5', 'type': 'Human normal breast epithelial cells'}, 'GSM2701924': {'stimulation': '10nM C5a', 'donor': '2', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701925': {'stimulation': '50ng/ml LPS', 'donor': '2', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701926': {'stimulation': '50ng/ml LPS+10nM C5a', 'donor': '2', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701927': {'stimulation': '50ng/ml LPS+1µM SB-747561', 'donor': '2', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701923': {'stimulation': 'no stimulation', 'donor': '2', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701928': {'stimulation': '50ng/ml LPS+1µM SB-747561+10nM C5a', 'donor': '2', 'type': 'monocyte-derived dendritic cells'}, 'GSM2701929': {'stimulation': 'no stimulation', 'donor': '4', 'type': 'monocyte-derived dendritic cells'}, 'GSM2595228': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '139'}, 'GSM2595229': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '116'}, 'GSM2595224': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '23'}, 'GSM2595225': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '143'}, 'GSM2595226': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '111'}, 'GSM2595227': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '145'}, 'GSM2595220': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '25'}, 'GSM2595221': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '229'}, 'GSM2595222': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '219'}, 'GSM2595223': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '41'}, 'GSM2204650': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2581257': {'phase': 'early secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM1964958': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2047596': {'well': 'G08', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047597': {'well': 'G09', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047594': {'well': 'G06', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047595': {'well': 'G07', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047592': {'well': 'G04', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047593': {'well': 'G05', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047590': {'well': 'G02', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047591': {'well': 'G03', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2324219': {'group': 'LowA422', 'type': 'PBMC', 'day': '28', 'subjectid': '3310'}, 'GSM2324218': {'group': 'LowA422', 'type': 'PBMC', 'day': '14', 'subjectid': '3310'}, 'GSM2047598': {'well': 'G10', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047599': {'well': 'G11', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2705357': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 7', 'dilution': '1:50'}, 'GSM2361974': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361977': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705354': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 3', 'dilution': '1:50'}, 'GSM2705353': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 2', 'dilution': '1:50'}, 'GSM2705352': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 1', 'dilution': '1:50'}, 'GSM2705351': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 16', 'dilution': '1:10'}, 'GSM2361972': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361979': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361978': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705359': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 10', 'dilution': '1:50'}, 'GSM2705358': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 8', 'dilution': '1:50'}, 'GSM2491495': {'status': 'rheumatoid arthritis', 'tissue': 'synovial fluid', 'type': 'CD19+/FcRL4- B cells', 'id': '118', 'Sex': 'Male'}, 'GSM2491496': {'status': 'rheumatoid arthritis', 'tissue': 'synovial fluid', 'type': 'CD19+/FcRL4- B cells', 'id': '162', 'Sex': 'Female'}, 'GSM2491497': {'status': 'rheumatoid arthritis', 'tissue': 'synovial fluid', 'type': 'CD19+/FcRL4- B cells', 'id': '164', 'Sex': 'Female'}, 'GSM2491498': {'status': 'rheumatoid arthritis', 'tissue': 'synovial fluid', 'type': 'CD19+/FcRL4- B cells', 'id': '167', 'Sex': 'Female'}, 'GSM2491499': {'status': 'rheumatoid arthritis', 'tissue': 'synovial fluid', 'type': 'CD19+/FcRL4+ B cells', 'id': '118', 'Sex': 'Male'}, 'GSM2166253': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2711155': {'line': 'HCT116 (ATCC)', 'treatment': 'pre-treated with 1uM Senexin B for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2711156': {'line': 'HEK293 (ATCC)', 'treatment': 'treated with 0.1% DMSO (vehicle control) for 3 hours'}, 'GSM2166250': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166257': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166256': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2243127': {'line': 'HeLa', 'treatment': 'FCCP (10 uM)'}, 'GSM2711153': {'line': 'HCT116 (ATCC)', 'treatment': 'treated with 1uM Senexin B for 3 hours'}, 'GSM2243129': {'line': 'HeLa', 'treatment': 'MitoBloCK-6 (50 uM)'}, 'GSM2243128': {'line': 'HeLa', 'treatment': 'MitoBloCK-6 (50 uM)'}, 'GSM2166259': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166258': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2711158': {'line': 'HEK293 (ATCC)', 'treatment': 'treated with 0.1% DMSO (vehicle control) for 3 hours'}, 'GSM2711159': {'line': 'HEK293 (ATCC)', 'treatment': 'treated with 1uM Senexin B for 3 hours'}, 'GSM2307291': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM1105774': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2259879': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM1105776': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2734256': {'experiment': '20170321B', 'area': 'Cerebellar Hemisphere', 'age': '48 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Male', 'race': 'African American', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0007-OX'}, 'GSM2734257': {'experiment': '20170321C', 'area': 'BA17', 'age': '35 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Occipital Lobe, Visual Cortex', 'id': '0008-CR'}, 'GSM2734254': {'experiment': '20170321A', 'area': 'Cerebellar Hemisphere', 'age': '49 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'African American', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0006-YO'}, 'GSM2734255': {'experiment': '20170321B', 'area': 'Cerebellar Hemisphere', 'age': '48 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Male', 'race': 'African American', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0007-OX'}, 'GSM2734253': {'experiment': '20170321A', 'area': 'Cerebellar Hemisphere', 'age': '49 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'African American', 'histology': 'Not specified', 'region': 'Lateral', 'id': '0006-YO'}, 'GSM1383543': {'line': 'KMS11', 'type': 'Multiple myeloma', 'phenotype': 'High levels of MMSET', 'passage': '15-20'}, 'GSM2734258': {'experiment': '20170321C', 'area': 'BA17', 'age': '35 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Occipital Lobe, Visual Cortex', 'id': '0008-CR'}, 'GSM2734259': {'experiment': '20170321C', 'area': 'BA17', 'age': '35 years', 'tissue': 'postmortem adult human brain', 'Sex': 'Female', 'race': 'Caucasian', 'histology': 'Not specified', 'region': 'Occipital Lobe, Visual Cortex', 'id': '0008-CR'}, 'GSM2630282': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630283': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630280': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630281': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630286': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405838'}, 'GSM2630287': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405839'}, 'GSM2630284': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630285': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630288': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib + SAR405840'}, 'GSM2630289': {'line': 'SW1573', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405841'}, 'GSM1105778': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105779': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1071859': {'knockdown': 'none', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM1071858': {'knockdown': 'HEB/TCF12', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM1071855': {'knockdown': 'LDB1', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM1071854': {'knockdown': 'LYL1', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM1071857': {'knockdown': 'none', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM1558611': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558610': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558613': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558612': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558615': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558614': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558617': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558616': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558619': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558618': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1071853': {'knockdown': 'E2A/TCF3', 'tissue': 'Hematopoietic', 'stage': 'Acute myeloid leukemia'}, 'GSM2455799': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455798': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455797': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455796': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455795': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455794': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455793': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455792': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455791': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455790': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1899789': {'line': 'HeLa cells', 'genotype': 'wild-type'}, 'GSM2632628': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632629': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632626': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632627': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632624': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632625': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632622': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632623': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632620': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632621': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142567': {'gender': 'female', 'age': '74', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2142566': {'gender': 'male', 'age': '67', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142565': {'gender': 'female', 'age': '75', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142564': {'gender': 'female', 'age': '59', 'who': '0', 'dead': '1', 'date': '2013-03-16', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142563': {'gender': 'male', 'age': '77', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '4', 'smoking': '2'}, 'GSM2142562': {'gender': 'female', 'age': '64', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142561': {'gender': 'female', 'age': '67', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '3', 'tnm': '5', 'smoking': '1'}, 'GSM2142560': {'gender': 'male', 'age': '67', 'who': '0', 'dead': '1', 'date': '2011-09-18', 'histology': '1', 'tnm': '3', 'smoking': '1'}, 'GSM2263579': {'type': 'tumor cells', 'treatment': 'untreated'}, 'GSM2142569': {'gender': 'male', 'age': '64', 'who': '0', 'dead': '1', 'date': '2010-11-28', 'histology': '3', 'tnm': '4', 'smoking': '1'}, 'GSM2142568': {'gender': 'female', 'age': '49', 'who': '0', 'dead': '1', 'date': '2011-10-01', 'histology': '1', 'tnm': '5', 'smoking': '1'}, 'GSM1446783': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '<20'}, 'GSM1446782': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'GSI 72 hrs', 'passage': '<20'}, 'GSM1446781': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'GSI 72 hrs', 'passage': '<20'}, 'GSM1446780': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'GSI 72 hrs', 'passage': '<20'}, 'GSM1446787': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'GSI 72 hrs', 'passage': '--'}, 'GSM1446786': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'vehicle', 'passage': '--'}, 'GSM1446785': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '<20'}, 'GSM1446784': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '<20'}, 'GSM1446789': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'vehicle', 'passage': '--'}, 'GSM1446788': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '--'}, 'GSM1172859': {'subtype': 'Luminal', 'line': 'EFM192B', 'type': 'breast cancer'}, 'GSM1172858': {'subtype': 'Luminal', 'line': 'EFM192A', 'type': 'breast cancer'}, 'GSM1172856': {'subtype': 'Luminal', 'line': 'CAMA1', 'type': 'breast cancer'}, 'GSM1172855': {'subtype': 'Claudin-low', 'line': 'BT549', 'type': 'breast cancer'}, 'GSM1172854': {'subtype': 'Luminal', 'line': 'BT483', 'type': 'breast cancer'}, 'GSM1172853': {'subtype': 'Luminal', 'line': 'BT474', 'type': 'breast cancer'}, 'GSM1172851': {'subtype': 'Luminal', 'line': 'AU565', 'type': 'breast cancer'}, 'GSM1172850': {'subtype': 'Luminal', 'line': '600MPE', 'type': 'breast cancer'}, 'GSM1890719': {'line': 'HCT-15', 'treatment': 'DMSO'}, 'GSM1890718': {'line': 'HCT-15', 'treatment': 'DMSO'}, 'GSM1890717': {'line': 'COLO 205', 'treatment': 'JQ.1'}, 'GSM1890716': {'line': 'COLO 205', 'treatment': 'JQ.1'}, 'GSM1890715': {'line': 'COLO 205', 'treatment': 'JQ.1'}, 'GSM1890714': {'line': 'COLO 205', 'treatment': 'DMSO'}, 'GSM1890713': {'line': 'COLO 205', 'treatment': 'DMSO'}, 'GSM1890712': {'line': 'COLO 205', 'treatment': 'DMSO'}, 'GSM1890711': {'line': 'HT-29', 'treatment': 'JQ.1'}, 'GSM1890710': {'line': 'HT-29', 'treatment': 'JQ.1'}, 'GSM2374098': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374099': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374094': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374095': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374096': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374097': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374090': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374091': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374092': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374093': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2233342': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233340': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233341': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2048795': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048794': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2630138': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2754966': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0392', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754967': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0699', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754964': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0425', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754965': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_0425', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754962': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0391', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754963': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0391', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754960': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0391', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754961': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0811', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM3381516': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM2754968': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0392', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754969': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0392', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2287709': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287708': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287705': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287704': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287707': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287706': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287701': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287700': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287703': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287702': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2406735': {'source': 'CD34+ hematopoietic stem and progenitor cells', 'type': 'in vitro expanded CD34+ cells', 'vitro': '5 days-PBS control treated'}, 'GSM854410': {'line': 'K562', 'type': 'K-562 truseq 50ng', 'size': '170.945188'}, 'GSM854411': {'line': 'K562', 'type': 'K-562 truseq 30ng', 'size': '173.524507'}, 'GSM2406734': {'source': 'CD34+ hematopoietic stem and progenitor cells', 'type': 'in vitro expanded CD34+ cells', 'vitro': '5 days-PBS control treated'}, 'GSM3381517': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM2909537': {'sirna': 'none', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'POLR2A'}, 'GSM1421195': {'line': 'K562 erythroleukemia cell line', 'variation': 'scramble (knockdown control)'}, 'GSM1421197': {'line': 'K562 erythroleukemia cell line', 'variation': 'U2AF1_WT'}, 'GSM1421196': {'line': 'K562 erythroleukemia cell line', 'variation': 'U2AF1 knockdown'}, 'GSM1579294': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'Nodal/Activin/TGFb inhibitor and FGF2 then FGF2 alone'}, 'GSM1421199': {'line': 'K562 erythroleukemia cell line', 'variation': 'U2AF1_S34Y'}, 'GSM1421198': {'line': 'K562 erythroleukemia cell line', 'variation': 'U2AF1_S34F'}, 'GSM1579295': {'line': 'H9', 'passages': '6 to 7', 'type': 'ES-derived CD271+CD73+ neural crest-like progeny', 'treatment': 'Nodal/Activin/TGFb inhibitor and FGF2 then FGF2 alone'}, 'GSM2562657': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2616395': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616396': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2562654': {'gender': 'female', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2158128': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2562652': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562651': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562650': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2158124': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158125': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158126': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158127': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158120': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158121': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158122': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158123': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2543667': {'library_id': 'lib5796', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.344', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543666': {'library_id': 'lib5795', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.344', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543665': {'library_id': 'lib5794', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.344', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543664': {'library_id': 'lib5793', 'stim': 'DM', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543663': {'library_id': 'lib5792', 'stim': 'TT', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543662': {'library_id': 'lib5791', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543661': {'library_id': 'lib5790', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543660': {'library_id': 'lib5789', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2406739': {'source': 'CD34+ hematopoietic stem and progenitor cells', 'type': 'in vitro expanded CD34+ cells', 'vitro': '5 days-valproic acid treated'}, 'GSM2543669': {'library_id': 'lib5798', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1684874': {'line': 'A549', 'tissue': 'lung', 'type': 'alveolar adenocarcinoma cells'}, 'GSM1333779': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333778': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333773': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333772': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333771': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM1333770': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM1333777': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333776': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333775': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333774': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM1642288': {'tissue': 'Cerebellum', 'genotype': 'c9ALS'}, 'GSM1642289': {'tissue': 'Frontal Cortex', 'genotype': 'c9ALS'}, 'GSM1642284': {'tissue': 'Cerebellum', 'genotype': 'c9ALS'}, 'GSM1642285': {'tissue': 'Frontal Cortex', 'genotype': 'c9ALS'}, 'GSM1642286': {'tissue': 'Cerebellum', 'genotype': 'c9ALS'}, 'GSM1642287': {'tissue': 'Frontal Cortex', 'genotype': 'c9ALS'}, 'GSM1642280': {'tissue': 'Cerebellum', 'genotype': 'c9ALS'}, 'GSM1642281': {'tissue': 'Frontal Cortex', 'genotype': 'c9ALS'}, 'GSM1642282': {'tissue': 'Cerebellum', 'genotype': 'c9ALS'}, 'GSM1642283': {'tissue': 'Frontal Cortex', 'genotype': 'c9ALS'}, 'GSM2144510': {'status': 'viremic untreated', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144511': {'status': 'viremic untreated', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2652059': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Basal'}, 'GSM2652058': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Basal'}, 'GSM1505576': {'tissue': 'Bladder'}, 'GSM1505577': {'tissue': 'Brain'}, 'GSM1505574': {'tissue': 'Lung'}, 'GSM1505575': {'tissue': 'Adipose'}, 'GSM1505572': {'tissue': 'Liver'}, 'GSM1505573': {'tissue': 'Lung'}, 'GSM1505570': {'tissue': 'Kidney'}, 'GSM1505571': {'tissue': 'Liver'}, 'GSM1505578': {'tissue': 'Cervix'}, 'GSM1505579': {'tissue': 'Colon'}, 'GSM2816189': {'line': 'H9'}, 'GSM2816188': {'line': 'H9'}, 'GSM2816187': {'line': 'H9'}, 'GSM2816186': {'line': 'H9'}, 'GSM2816185': {'line': 'H9'}, 'GSM2816184': {'line': 'H9'}, 'GSM2816183': {'line': 'H9'}, 'GSM2816182': {'line': 'H9'}, 'GSM2816181': {'line': 'H9'}, 'GSM2535690': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1158', 'samplename': '1gr_413CD3_C43', 'seqsite': 'BRI', 'sampleID': 'S13285', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1158', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C43'}, 'GSM1620630': {'type': 'MCF10a human breast cancer cells'}, 'GSM1376019': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376018': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2828588': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3038', 'type': 'CD8 T cells'}, 'GSM2828589': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3039', 'type': 'CD8 T cells'}, 'GSM2828582': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3054', 'type': 'CD8 T cells'}, 'GSM1376010': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2828580': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3030', 'type': 'CD8 T cells'}, 'GSM1376012': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376015': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376014': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376017': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376016': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1915634': {'donorid': 'SU209', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915635': {'donorid': 'SU351', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1206235': {'ercc': '2% by volume of ERCC mix #2', 'composition': 'Several brain regions from 23 adult donors', 'number': '1'}, 'GSM1206234': {'ercc': '2% by volume of ERCC mix #1', 'composition': '10 human cell lines (B lymphocyte, brain, breast, cervix, liposarcoma, liver, macrophage, skin, testis, and T lymphocyte)', 'number': '1'}, 'GSM1206237': {'ercc': '2% by volume of ERCC mix #2', 'composition': 'Several brain regions from 23 adult donors', 'number': '2'}, 'GSM1206236': {'ercc': '2% by volume of ERCC mix #1', 'composition': '10 human cell lines (B lymphocyte, brain, breast, cervix, liposarcoma, liver, macrophage, skin, testis, and T lymphocyte)', 'number': '2'}, 'GSM2589153': {'1': '4-OHT', '2': 'EtOH', 'antibody': 'RNAPII (N20, Santa Cruz, sc-899)'}, 'GSM2589152': {'1': 'EtOH', '2': 'EtOH', 'antibody': 'RNAPII (N20, Santa Cruz, sc-899)'}, 'GSM2589151': {'antibody': 'none'}, 'GSM2589150': {'1': '4-OHT', '2': 'CD532', 'antibody': 'RNAPII (N20, Santa Cruz, sc-899)'}, 'GSM1206239': {'ercc': '2% by volume of ERCC mix #2', 'composition': 'Several brain regions from 23 adult donors', 'number': '3'}, 'GSM1206238': {'ercc': '2% by volume of ERCC mix #1', 'composition': '10 human cell lines (B lymphocyte, brain, breast, cervix, liposarcoma, liver, macrophage, skin, testis, and T lymphocyte)', 'number': '3'}, 'GSM2589155': {'1': '4-OHT', '2': 'DOX', 'antibody': 'RNAPII (N20, Santa Cruz, sc-899)'}, 'GSM2589154': {'1': 'EtOH', '2': 'DOX', 'antibody': 'RNAPII (N20, Santa Cruz, sc-899)'}, 'GSM1939632': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'CMV-RORC'}, 'GSM1939633': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'DMSO'}, 'GSM1939630': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'CMV-RORC'}, 'GSM1939631': {'status': 'ER-ve', 'subtype': 'Basal type', 'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'CMV-RORC'}, 'GSM1939636': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'SR2211'}, 'GSM1939637': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'SR2211'}, 'GSM1939634': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'DMSO'}, 'GSM1939635': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'DMSO'}, 'GSM1915638': {'donorid': 'SU353', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1939638': {'status': 'ER+ve', 'subtype': 'Luminal type', 'line': 'breast cancer cell line MCF-7', 'treatment': 'SR2211'}, 'GSM1920180': {'age': '69 year old', 'tissue': 'adjacent normal tissue from patient with lobular carcinoma in situ', 'Sex': 'female'}, 'GSM1920181': {'age': '69 year old', 'tissue': 'adjacent normal tissue from patient with lobular carcinoma in situ', 'Sex': 'female'}, 'GSM2274813': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33266', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9683', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C76', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9683', 'studysiteshort': 'YALE'}, 'GSM2274812': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33264', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9681', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C83', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9681', 'studysiteshort': 'YALE'}, 'GSM2274811': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33263', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9680', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C77', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9680', 'studysiteshort': 'YALE'}, 'GSM2274810': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33262', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9679', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C96', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9679', 'studysiteshort': 'YALE'}, 'GSM2274817': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33270', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9687', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C15', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9687', 'studysiteshort': 'YALE'}, 'GSM2274816': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33269', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9686', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C94', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9686', 'studysiteshort': 'YALE'}, 'GSM2274815': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33268', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9685', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C88', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9685', 'studysiteshort': 'YALE'}, 'GSM2274814': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33267', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9684', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C82', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9684', 'studysiteshort': 'YALE'}, 'GSM2274819': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33272', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9689', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C25', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9689', 'studysiteshort': 'YALE'}, 'GSM2274818': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33271', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9688', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C21', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9688', 'studysiteshort': 'YALE'}, 'GSM3576164': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM2324410': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM1620619': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620618': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620617': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620616': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620615': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620614': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620613': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620612': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620611': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620610': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1508264': {'tissue': 'Cord blood', 'type': 'colony-forming unit-erythroid cells (CFU-E)'}, 'GSM1508261': {'tissue': 'Cord blood', 'type': 'burst-forming unit-erythroid cells (BFU-E)'}, 'GSM1508260': {'tissue': 'Cord blood', 'type': 'burst-forming unit-erythroid cells (BFU-E)'}, 'GSM1508263': {'tissue': 'Cord blood', 'type': 'colony-forming unit-erythroid cells (CFU-E)'}, 'GSM1508262': {'tissue': 'Cord blood', 'type': 'colony-forming unit-erythroid cells (CFU-E)'}, 'GSM2039406': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS Q61H mutant form'}, 'GSM2565148': {'construction': 'PLATE-Seq', 'drug': 'Oxaliplatin'}, 'GSM2565149': {'construction': 'PLATE-Seq', 'drug': 'Vemurafenib (PLX4032)'}, 'GSM2565142': {'construction': 'PLATE-Seq', 'drug': 'Clofarabine'}, 'GSM2565143': {'construction': 'PLATE-Seq', 'drug': 'Vinblastine'}, 'GSM2565140': {'construction': 'PLATE-Seq', 'drug': 'Dactinomycin'}, 'GSM2565141': {'construction': 'PLATE-Seq', 'drug': 'Tofacitinib citrate (CP-690550 citrate)'}, 'GSM2565146': {'construction': 'PLATE-Seq', 'drug': 'Tamoxifen'}, 'GSM2565147': {'construction': 'PLATE-Seq', 'drug': 'Mechlorethamine'}, 'GSM2565144': {'construction': 'PLATE-Seq', 'drug': 'Teniposide'}, 'GSM2565145': {'construction': 'PLATE-Seq', 'drug': 'Leuprolide (Leuprorelin; Lupron)'}, 'GSM2279940': {'passages': '20-30', 'type': 'iPS-derived cardiomyocytes', 'stage': 'Differentiation D32'}, 'GSM2279941': {'passages': '20-30', 'type': 'iPS-derived cardiomyocytes', 'stage': 'Differentiation D32'}, 'GSM1293558': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1293559': {'tissue': 'serum', 'group': 'old', 'years': '64'}, 'GSM1278339': {'stimulation': '3 hours P/I', 'line': 'Jurkat T cell', 'expression': 'wild type MALT1'}, 'GSM1278338': {'stimulation': '3 hours P/I', 'line': 'Jurkat T cell', 'expression': 'wild type MALT1'}, 'GSM1278331': {'stimulation': 'unstimulated', 'line': 'Jurkat T cell', 'expression': 'wild type MALT1'}, 'GSM1278330': {'stimulation': 'unstimulated', 'line': 'Jurkat T cell', 'expression': 'wild type MALT1'}, 'GSM1278333': {'stimulation': 'unstimulated', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278332': {'stimulation': 'unstimulated', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278335': {'stimulation': 'unstimulated', 'line': 'Jurkat T cell', 'expression': 'MALT1-C464A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278334': {'stimulation': 'unstimulated', 'line': 'Jurkat T cell', 'expression': 'MALT1-C464A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278337': {'stimulation': 'unstimulated', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A-C464A'}, 'GSM1278336': {'stimulation': 'unstimulated', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A-C464A'}, 'GSM2665560': {'differentiation': 'Day25', 'type': 'hESC derived cIN'}, 'GSM2665565': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2665564': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2665567': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2665566': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM1609443': {'line': 'GM19240', 'type': 'polyA RNA'}, 'GSM937708': {'type': 'Human fibroblast'}, 'GSM937709': {'karyotype': 'Normal', 'type': 'iPS cell derived from BJ'}, 'GSM1872869': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872868': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM2643396': {'type': 'explant derived cells in culture', 'agent': 'PGE2', 'point': '24h'}, 'GSM1872864': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2643394': {'type': 'explant derived cells in culture', 'agent': 'DMSO', 'point': '24h'}, 'GSM2643395': {'type': 'explant derived cells in culture', 'agent': 'PGE2', 'point': '24h'}, 'GSM2643392': {'type': 'explant derived cells in culture', 'agent': 'PGE2', 'point': '1h'}, 'GSM1872860': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1872863': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2643391': {'type': 'explant derived cells in culture', 'agent': 'PGE2', 'point': '1h'}, 'GSM1528379': {'line': 'M229', 'type': 'Melanoma'}, 'GSM1528378': {'line': 'M229AR', 'type': 'Melanoma'}, 'GSM2644629': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644628': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644627': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644626': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644625': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644624': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644623': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644622': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644621': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644620': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM1704618': {'protocol': '72 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1722610': {'antibody': 'none', 'variation': 'WT'}, 'GSM1704612': {'protocol': '6 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704613': {'protocol': '72 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704610': {'protocol': '24 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704611': {'protocol': '48 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704616': {'protocol': '48 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704617': {'protocol': '6 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704614': {'protocol': '12 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704615': {'protocol': '24 h DENV2 infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (EU081177.1)', 'replicate': 'rep 2', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1946090': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '30min'}, 'GSM1946091': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '30min'}, 'GSM1946092': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '60min'}, 'GSM1946093': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '60min'}, 'GSM1946094': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '60min'}, 'GSM1946095': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '60min'}, 'GSM1946096': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '60min'}, 'GSM1946097': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19099', 'for': '60min'}, 'GSM1946098': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19101', 'for': '30min'}, 'GSM1946099': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19101', 'for': '60min'}, 'GSM2247680': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2303462': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2648127': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'EC313+Raloxifene', 'time': '3 weeks'}, 'GSM2537180': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2252901': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'transfection': 'PC-3 siWHSC1-1'}, 'GSM2141713': {'individual': 'EU294', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2449130': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'previousdiagnosisoftb': 'n', 'tst': 'NA', 'ethnicity': 'coloured'}, 'GSM2252902': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'transfection': 'PC-3 siWHSC1-2'}, 'GSM2141712': {'individual': 'EU294', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1395764': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395765': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395766': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395767': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395760': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395761': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395762': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395763': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2152540': {'line': 'RWPE1', 'expression': 'NKX3.1 (T164A)'}, 'GSM2152541': {'line': 'RWPE1', 'expression': 'NKX3.1 (T164A)'}, 'GSM2537183': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM1395768': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395769': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2455807': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455806': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455805': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455804': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455803': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455802': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455801': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455800': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2039923': {'type': 'normal human primary fibroblasts', 'treatment': 'Vehicle (FBS) treatment for 24 h'}, 'GSM2039926': {'type': 'normal human primary fibroblasts', 'treatment': 'Vitamin D (1,25D in FBS) treatment for 24 h'}, 'GSM2455809': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455808': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2579352': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579353': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579350': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579351': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM1069748': {'line': 'MDA-MB-231', 'type': 'mesenchymal-like breast cancer cells', 'variation': 'control'}, 'GSM2579357': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579354': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579355': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM1069745': {'with': 'miR-26a', 'line': 'MCF-7', 'type': 'epithelial breast cancer cells', 'variation': 'overexpression of miR-26a'}, 'GSM2579358': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM1069747': {'with': 'miR-26a with specific sponge vector', 'line': 'MDA-MB-231', 'type': 'mesenchymal-like breast cancer cells', 'variation': 'reduced miR-26a activity'}, 'GSM1077448': {'tissue': 'corneal endothelial cells'}, 'GSM1077449': {'tissue': 'corneal endothelial cells'}, 'GSM2858938': {'origin': 'umbilical vein', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'human umbilical vein endothelial cells'}, 'GSM2858939': {'origin': 'aorta', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'human aortic endothelial cells'}, 'GSM2858935': {'origin': 'aortic adventitia', 'medium': 'see ScienCell (product number 6125)', 'type': 'human aortic adventitial fibroblasts'}, 'GSM2858936': {'origin': 'brain vasculature', 'medium': 'see ScienCell (product number 1205)', 'type': 'human brain vascular pericytes'}, 'GSM2858937': {'origin': 'umbilical vein', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'human umbilical vein endothelial cells'}, 'GSM2858930': {'line': 'PC3 (PC-3) human prostate cancer cell line', 'host': 'mouse', 'treatment': 'A2M'}, 'GSM602565': {'tissue': 'kidney normal'}, 'GSM1681977': {'vendor': 'Abcam', 'antibody': 'anti-MSI1 monoclonal antibody', 'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'wild type (control)'}, 'GSM1681976': {'vendor': 'Abcam', 'antibody': 'anti-MSI1 monoclonal antibody', 'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'wild type (control)'}, 'GSM1681975': {'vendor': 'Abcam', 'antibody': 'anti-MSI1 monoclonal antibody', 'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'wild type (control)'}, 'GSM1681974': {'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'wild type (control)'}, 'GSM1681973': {'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'wild type (control)'}, 'GSM1681972': {'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'wild type (control)'}, 'GSM1681971': {'gender': 'male', 'age': '61', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681970': {'gender': 'male', 'age': '47', 'tissue': 'Tumor', 'class': 'III'}, 'GSM2107869': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM1866088': {'line': 'Gliobmastoma cell line'}, 'GSM1866089': {'line': 'Gliobmastoma cell line'}, 'GSM1533261': {}, 'GSM1533260': {}, 'GSM2183617': {'line': 'HeLa', 'treatment': 'untreated', 'cycle': 'G1'}, 'GSM2183618': {'line': 'HeLa', 'treatment': 'untreated', 'cycle': 'G1'}, 'GSM2183619': {'line': 'HeLa', 'treatment': 'DMSO', 'cycle': 'G2'}, 'GSM2932964': {'pucai': '40', 'score': '7', 'remission': 'No', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '17'}, 'GSM2932965': {'pucai': '50', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2932966': {'pucai': '45', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2932967': {'pucai': '85', 'score': '3', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '10'}, 'GSM2932960': {'pucai': '15', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2932961': {'pucai': '65', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '12'}, 'GSM2932962': {'pucai': '50', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM1647033': {'illumina_index': '7', 'point': '4', 'batch': '7', 'agent': 'Smeg', 'rin': '8.5', 'individual': 'M375'}, 'GSM2932968': {'pucai': '60', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932969': {'pucai': '60', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '13'}, 'GSM2355509': {'type': 'Human embryonic stem cells'}, 'GSM2355508': {'type': 'Human embryonic stem cells'}, 'GSM2355507': {'type': 'Human embryonic stem cells'}, 'GSM2355506': {'type': 'Human embryonic stem cells'}, 'GSM2355505': {'type': 'Human embryonic stem cells'}, 'GSM2355504': {'type': 'Human embryonic stem cells'}, 'GSM2355502': {'type': 'Human female fibroblasts'}, 'GSM2355500': {'type': 'Human male fibroblasts'}, 'GSM2085763': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085762': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085761': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085760': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085766': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085765': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085764': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2803871': {'with': 'free-endotoxin UHMWPE particles', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage', 'subject': 'Healthy Asian donors'}, 'GSM2803870': {'with': 'none (control)', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage', 'subject': 'Healthy Asian donors'}, 'GSM2803873': {'with': 'free-endotoxin UHMWPE particles', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage', 'subject': 'Healthy Asian donors'}, 'GSM2803872': {'with': 'free-endotoxin UHMWPE particles', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage', 'subject': 'Healthy Asian donors'}, 'GSM2049117': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM3398127': {'genotype': 'control', 'age': '44', 'astrocytes': '67.26', 'Sex': 'F', 'line': 'NHDF1', 'type': 'iPSC-derived midbrain-patterned astrocytes', 'method': 'Retrovirus'}, 'GSM3398129': {'genotype': 'control', 'age': '67', 'astrocytes': '78.42', 'Sex': 'F', 'line': 'SFC840-03-03', 'type': 'iPSC-derived midbrain-patterned astrocytes', 'method': 'Cytotune (Sendai virus)'}, 'GSM3398128': {'genotype': 'control', 'age': '68', 'astrocytes': '55.04', 'Sex': 'M', 'line': 'JR053-6', 'type': 'iPSC-derived midbrain-patterned astrocytes', 'method': 'Retrovirus'}, 'GSM484906': {'line': 'GM19193', 'type': 'Lymphoblastoid Cell'}, 'GSM484905': {'line': 'GM19099', 'type': 'Lymphoblastoid Cell'}, 'GSM484904': {'line': 'GM18951', 'type': 'Lymphoblastoid Cell'}, 'GSM484903': {'line': 'GM18526', 'type': 'Lymphoblastoid Cell'}, 'GSM484902': {'line': 'GM18526', 'type': 'Lymphoblastoid Cell'}, 'GSM484901': {'line': 'GM18505', 'type': 'Lymphoblastoid Cell'}, 'GSM484900': {'line': 'GM18505', 'type': 'Lymphoblastoid Cell'}, 'GSM2259845': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2390758': {'disease': 'Healthy Control'}, 'GSM2259847': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259846': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259841': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259840': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259843': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2259842': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2390751': {'disease': 'Healthy Control'}, 'GSM2390750': {'disease': 'Healthy Control'}, 'GSM2390753': {'disease': 'Healthy Control'}, 'GSM2390752': {'disease': 'Healthy Control'}, 'GSM2259849': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259848': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM2390757': {'disease': 'Healthy Control'}, 'GSM2390756': {'disease': 'Healthy Control'}, 'GSM1886857': {'line': 'SUDHL4', 'treatment': 'treated with DMSO for 12h'}, 'GSM1886856': {'line': 'Farage', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM1886855': {'line': 'Farage', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM1886854': {'line': 'Farage', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM1886853': {'line': 'Farage', 'treatment': 'treated with DMSO for 12h'}, 'GSM1886852': {'line': 'Farage', 'treatment': 'treated with DMSO for 12h'}, 'GSM1886851': {'line': 'Farage', 'treatment': 'treated with DMSO for 12h'}, 'GSM1886850': {'line': 'SUDHL6', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM2913042': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM2913043': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM2913040': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM2913041': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM2913046': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM2913044': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM2913045': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM1635587': {'line': 'H1', 'type': 'hESC cell line', 'variation': 'stable control RNA overexpressed', 'passage': 'P68-75'}, 'GSM2048786': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048787': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048784': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048785': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048782': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048783': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048780': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048781': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2367472': {'point': '0h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'CAGATC', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'siDDX54'}, 'GSM2367473': {'point': '1h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'CGATGT', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'siDDX54'}, 'GSM2367470': {'point': '1h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'GCCAAT', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'mock'}, 'GSM2367471': {'point': '2h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'CTTGTA', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'mock'}, 'GSM2367476': {'point': '1h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'TGACCA', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'siDDX54'}, 'GSM2367477': {'point': '2h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'GCCAAT', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'siDDX54'}, 'GSM2048788': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048789': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM3594473': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM2248125': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248126': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248127': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM3594477': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594476': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594475': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594474': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594479': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594478': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM2248128': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2248129': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM2840566': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1552798': {'status': 'wildtype', 'subtype': 'RCMD', 'type': 'bone marrow CD34+ cells'}, 'GSM1552799': {'status': 'wildtype', 'subtype': 'RCMD', 'type': 'bone marrow CD34+ cells'}, 'GSM1552796': {'status': 'mutated', 'subtype': 'RARS', 'type': 'bone marrow CD34+ cells'}, 'GSM1552797': {'status': 'wildtype', 'subtype': 'RCMD', 'type': 'bone marrow CD34+ cells'}, 'GSM1552794': {'status': 'mutated', 'subtype': 'RCMD-RS', 'type': 'bone marrow CD34+ cells'}, 'GSM1552795': {'status': 'mutated', 'subtype': 'RCMD-RS', 'type': 'bone marrow CD34+ cells'}, 'GSM1552792': {'status': 'mutated', 'subtype': 'RCMD-RS', 'type': 'bone marrow CD34+ cells'}, 'GSM1552793': {'status': 'mutated', 'subtype': 'RARS', 'type': 'bone marrow CD34+ cells'}, 'GSM1552790': {'status': 'mutated', 'subtype': 'RARS', 'type': 'bone marrow CD34+ cells'}, 'GSM1552791': {'status': 'mutated', 'subtype': 'RCMD-RS', 'type': 'bone marrow CD34+ cells'}, 'GSM2840565': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840562': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840563': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2204793': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204792': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2410330': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'p.P177L EBF3'}, 'GSM2204790': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204797': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204796': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204795': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204794': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2630667': {'line': 'HCC1143', 'treatment': '1uM BEZ235'}, 'GSM2204799': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204798': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1478320': {'type': 'circulating pancreas tumor single cell in lysis buffer', 'patient': 'HP1'}, 'GSM1478321': {'type': 'circulating pancreas tumor single cell in lysis buffer', 'patient': 'HP2'}, 'GSM1478322': {'type': 'circulating pancreas tumor single cell in lysis buffer', 'patient': 'HP2'}, 'GSM1478323': {'type': 'circulating pancreas tumor single cell in lysis buffer', 'patient': 'HP2'}, 'GSM1478324': {'type': 'circulating pancreas tumor single cell in lysis buffer', 'patient': 'HP2'}, 'GSM1478325': {'type': 'circulating pancreas tumor single cell in lysis buffer', 'patient': 'HP3'}, 'GSM2107876': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107874': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107875': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107872': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107873': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107870': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2107871': {'type': 'diffuse large B-cell lymphoma cell line'}, 'GSM2194576': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2434036': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434035': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434034': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1641278': {'type': 'PBMC'}, 'GSM1641279': {'type': 'PBMC'}, 'GSM2434031': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434030': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1641274': {'type': 'PBMC'}, 'GSM1641275': {'type': 'PBMC'}, 'GSM1641276': {'type': 'PBMC'}, 'GSM1641277': {'type': 'PBMC'}, 'GSM1641270': {'type': 'K562 cell line'}, 'GSM1641271': {'type': 'PBMC'}, 'GSM2434039': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1641273': {'type': 'PBMC'}, 'GSM2266465': {'type': 'ips-derived cerebral organoids', 'genotype': 'CHD8+/-'}, 'GSM2266464': {'type': 'ips-derived cerebral organoids', 'genotype': 'CHD8+/+'}, 'GSM2266467': {'type': 'ips-derived cerebral organoids', 'genotype': 'CHD8+/-'}, 'GSM2266466': {'type': 'ips-derived cerebral organoids', 'genotype': 'CHD8+/-'}, 'GSM2266463': {'type': 'ips-derived cerebral organoids', 'genotype': 'CHD8+/+'}, 'GSM2649912': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649913': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649910': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649911': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649916': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2266468': {'type': 'ips-derived cerebral organoids', 'genotype': 'CHD8+/-'}, 'GSM2649914': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649915': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM957418': {'sample': 'GM10861', 'protocol': 'non-directional', 'relation': 'mother', 'family': '1362'}, 'GSM957419': {'sample': 'GM11982', 'protocol': 'non-directional', 'relation': 'daughter', 'family': '1362'}, 'GSM957412': {'sample': 'GM14521', 'protocol': 'non-directional', 'relation': 'twin sister', 'family': '1740'}, 'GSM957413': {'sample': 'GM14568', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1752'}, 'GSM957410': {'sample': 'GM14507', 'protocol': 'non-directional', 'relation': 'twin sister', 'family': '1735'}, 'GSM957411': {'sample': 'GM14520', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1740'}, 'GSM957416': {'sample': 'GM14582', 'protocol': 'non-directional', 'relation': 'twin brother', 'family': '1756'}, 'GSM957417': {'sample': 'GM10860', 'protocol': 'non-directional', 'relation': 'father', 'family': '1362'}, 'GSM957414': {'sample': 'GM14569', 'protocol': 'non-directional', 'relation': 'twin brother', 'family': '1752'}, 'GSM957415': {'sample': 'GM14581', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1756'}, 'GSM2316601': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316600': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316603': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316602': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316605': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316604': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316607': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316606': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316609': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316608': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM940575': {'treatment': '4SU labeling and UV', 'purification': 'oligo(dT) beads'}, 'GSM940576': {'treatment': '4SU labeling and UV', 'purification': 'oligo(dT) beads'}, 'GSM2142242': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH+34+43-'}, 'GSM2142240': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH-34+43-'}, 'GSM2142241': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH+34-43-'}, 'GSM1564674': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'DHT (dihydrotestosterone)'}, 'GSM2200943': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200940': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200941': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1564670': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '8.2', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564671': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '9.1', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564672': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564673': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'DHT (dihydrotestosterone)'}, 'GSM2190601': {'with': 'lenti-viral based shNT', 'line': 'A375', 'type': 'melanoma cell line', 'point': '4 days after transfection'}, 'GSM2440299': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'LBH589 (10nM) for 28 days'}, 'GSM1846909': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1846908': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM2695667': {'treatment': 'control siRNA'}, 'GSM2695666': {'treatment': 'control siRNA'}, 'GSM2232718': {'tissue': 'Peripheral blood', 'genotype': 'ASXL2 mutation'}, 'GSM1846901': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM2496671': {'line': 'INA-6'}, 'GSM1846903': {'antibody': 'KMT2D (Sigma, HPA035977)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM1846902': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM2695669': {'treatment': 'siRNA interference of YAP1'}, 'GSM2695668': {'treatment': 'control siRNA'}, 'GSM1846907': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1846906': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM1915698': {'status': 'positive', 'gender': 'female', 'line': 'MCF7', 'tissue': 'mammary gland, breast', 'type': 'breast cancer cell line'}, 'GSM1915699': {'status': 'positive', 'gender': 'female', 'line': 'MCF7', 'tissue': 'mammary gland, breast', 'type': 'breast cancer cell line'}, 'GSM2937057': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM2937056': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM2571035': {'antibody': 'PAF1 (Santa Cruz, catalog# sc-74797)', 'line': 'HCT116', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571034': {'antibody': 'PAF1 (Abcam, catalog# ab20662, lot# GR243511-1)', 'line': 'HCT116', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571033': {'antibody': 'PAF1 (Abcam, catalog# ab20662, lot# GR243511-1)', 'line': 'HCT116', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571032': {'antibody': 'H3K4me1 (homemade)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571031': {'antibody': 'H3K27ac (CST, catalog# 8173, lot# 1)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571030': {'antibody': 'H3K27ac (CST, catalog# 8173, lot# 1)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2937059': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM2937058': {'status': 'Ashmatic', 'tissue': 'nasal epitheilium'}, 'GSM2144088': {'line': 'HCC827', 'tissue': 'in vitro cultured lung cancer cell line', 'transfection': 'empty pcDNA3.1 vector plasmid', 'passage': '29'}, 'GSM2144089': {'line': 'HCC827', 'tissue': 'in vitro cultured lung cancer cell line', 'transfection': 'pcDNA3.1-ZEB1', 'passage': '29'}, 'GSM2144086': {'line': 'HCC827', 'tissue': 'in vitro cultured lung cancer cell line', 'transfection': 'empty pcDNA3.1 vector plasmid', 'passage': '29'}, 'GSM2496679': {'line': 'INA-6'}, 'GSM2496678': {'line': 'INA-6'}, 'GSM1890698': {'line': 'HCT 116', 'treatment': 'JQ.1'}, 'GSM1890699': {'line': 'HCT 116', 'treatment': 'JQ.1'}, 'GSM1890692': {'line': 'HT-29', 'treatment': 'shRNA BRD4 (8)'}, 'GSM1890693': {'line': 'HT-29', 'treatment': 'shRNA BRD4 (8)'}, 'GSM1890690': {'line': 'HT-29', 'treatment': 'shRNA BRD4 (7)'}, 'GSM1890691': {'line': 'HT-29', 'treatment': 'shRNA BRD4 (8)'}, 'GSM1890696': {'line': 'HCT 116', 'treatment': 'DMSO'}, 'GSM1890697': {'line': 'HCT 116', 'treatment': 'JQ.1'}, 'GSM1890694': {'line': 'HCT 116', 'treatment': 'DMSO'}, 'GSM1890695': {'line': 'HCT 116', 'treatment': 'DMSO'}, 'GSM2429084': {'infection': 'ZIKV-PRVABC59'}, 'GSM2429085': {'infection': 'ZIKV-PRVABC59'}, 'GSM2061349': {'line': 'HeLa', 'treatment': 'USPL1 siRNA'}, 'GSM2061348': {'line': 'HeLa', 'treatment': 'TCAB1 siRNA'}, 'GSM2429081': {'infection': 'ZIKV-PRVABC59'}, 'GSM2429082': {'infection': 'ZIKV-PRVABC59'}, 'GSM2429083': {'infection': 'mock'}, 'GSM2061347': {'line': 'HeLa', 'treatment': 'Scrambled siRNA'}, 'GSM2061346': {'line': 'HeLa', 'treatment': 'USPL1 siRNA'}, 'GSM2061345': {'line': 'HeLa', 'treatment': 'TCAB1 siRNA'}, 'GSM2061344': {'line': 'HeLa', 'treatment': 'Scrambled siRNA'}, 'GSM3305268': {'line': 'HeLa', 'genotype': 'MondoA-KO', 'treatment': 'DMEMAcidic'}, 'GSM3305266': {'line': 'HeLa', 'genotype': 'MondoA-KO', 'treatment': 'DMEM'}, 'GSM3305267': {'line': 'HeLa', 'genotype': 'MondoA-KO', 'treatment': 'DMEMAcidic'}, 'GSM3305264': {'line': 'HeLa', 'genotype': 'WT', 'treatment': 'DMEMAcidic'}, 'GSM3305265': {'line': 'HeLa', 'genotype': 'MondoA-KO', 'treatment': 'DMEM'}, 'GSM3305262': {'line': 'HeLa', 'genotype': 'WT', 'treatment': 'DMEM'}, 'GSM3305263': {'line': 'HeLa', 'genotype': 'WT', 'treatment': 'DMEMAcidic'}, 'GSM3305261': {'line': 'HeLa', 'genotype': 'WT', 'treatment': 'DMEM'}, 'GSM2456057': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM4599128': {'type': 'melanoma', 'name': 'UACC62P', 'treatment': '10 uM CCG-222740'}, 'GSM2419230': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '24 hours'}, 'GSM4599126': {'type': 'melanoma', 'name': 'UACC62P', 'treatment': '10 uM CCG-222740'}, 'GSM979661': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10101ACA', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '079WC'}, 'GSM2456056': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1381993': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1564661': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '9', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2592818': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'adenovirus': 'AdMAF', 'treatment': 'IFN-gamma'}, 'GSM2592819': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'adenovirus': 'AdMAF', 'treatment': 'IFN-gamma'}, 'GSM1564667': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '3.5', 'with': 'DHT (dihydrotestosterone)'}, 'GSM2592816': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'adenovirus': 'AdGFP', 'treatment': 'none'}, 'GSM2592817': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'adenovirus': 'AdGFP', 'treatment': 'none'}, 'GSM2592814': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'adenovirus': 'AdGFP', 'treatment': 'IFN-gamma'}, 'GSM2592815': {'state': 'healthy', 'tissue': 'peripheral blood', 'type': 'primary human monocyte-derived macrophages', 'adenovirus': 'AdGFP', 'treatment': 'IFN-gamma'}, 'GSM2394429': {'antibody': 'none', 'type': 'HAEC', 'treatment': 'oxpapc, 4h, formaldehyde', 'passage': '6 to 10'}, 'GSM2394428': {'antibody': 'none', 'type': 'HAEC', 'treatment': 'IL1b, 4h, formaldehyde', 'passage': '6 to 10'}, 'GSM958750': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '11621', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'sex': 'U', 'replicate': '1', 'treatment': 'None', 'labversion': 'myoblast', 'insertlength': '200'}, 'GSM2142257': {'type': 'CD24+ CD44+ live sorted cells'}, 'GSM2394423': {'antibody': 'p65, Santa Cruz #sc-372X', 'type': 'HAEC', 'treatment': 'TNFa, 4h', 'passage': '6 to 10'}, 'GSM2394422': {'antibody': 'p65, Santa Cruz #sc-372X', 'type': 'HAEC', 'treatment': 'IL1b, 4h', 'passage': '6 to 10'}, 'GSM2394421': {'antibody': 'p65, Santa Cruz #sc-372X', 'type': 'HAEC', 'treatment': 'IL1b, 4h', 'passage': '6 to 10'}, 'GSM1564664': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2394427': {'antibody': 'none', 'type': 'HAEC', 'treatment': 'IL1b, 4h, DSG', 'passage': '6 to 10'}, 'GSM2394426': {'antibody': 'none', 'type': 'HAEC', 'treatment': 'control, 4h, formaldehyde', 'passage': '6 to 10'}, 'GSM2394425': {'antibody': 'none', 'type': 'HAEC', 'treatment': 'control, 4h, DSG', 'passage': '6 to 10'}, 'GSM2394424': {'antibody': 'p65, Santa Cruz #sc-372X', 'type': 'HAEC', 'treatment': 'TNFa, 4h', 'passage': '6 to 10'}, 'GSM979663': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10102CTT', 'readtype': '1x50', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '081WC'}, 'GSM2479732': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM1381999': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2172014': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2616053': {'line': 'SH-SY5Y', 'with': 'mutant CLN1 169dupA', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616052': {'line': 'SH-SY5Y', 'with': 'mutant CLN1 169dupA', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616051': {'line': 'SH-SY5Y', 'with': 'muant CLN1 L222P', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616050': {'line': 'SH-SY5Y', 'with': 'muant CLN1 L222P', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616054': {'line': 'SH-SY5Y', 'with': 'mutant CLN1 169dupA', 'treatment': 'RA-NBM differentiated cells'}, 'GSM1664626': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP6'}, 'GSM1664624': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP8'}, 'GSM1664625': {'tissue': 'matched normal from the same patient', 'id': 'LP6'}, 'GSM1664622': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP10'}, 'GSM1664623': {'tissue': 'matched normal from the same patient', 'id': 'LP8'}, 'GSM2479731': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM1664621': {'tissue': 'matched normal from the same patient', 'id': 'LP10'}, 'GSM2331215': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331214': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331217': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331216': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331211': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331210': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331213': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331212': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331219': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-treatment Pre-LPS'}, 'GSM2331218': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Post-treatment Pre-LPS'}, 'GSM2543142': {'line': 'ZNF532-NUT 24335', 'type': 'NMC', 'agent': 'DMSO for 4hours'}, 'GSM2543143': {'line': 'ZNF532-NUT 24335', 'type': 'NMC', 'agent': 'DMSO for 4hours'}, 'GSM2543140': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'ZNF532 (anti-ZNF532, 10ul Bethyl Laboratories, cat. no. A305-442A', 'agent': 'none'}, 'GSM2543141': {'type': 'NMC', 'line': 'ZNF532-NUT 24335', 'antibody': 'ZNF532 (anti-ZNF532, 10ul Bethyl Laboratories, cat. no. A305-442A', 'agent': 'none'}, 'GSM2543144': {'line': 'ZNF532-NUT 24335', 'type': 'NMC', 'agent': '10uM JQ1 for 4hours'}, 'GSM2543145': {'line': 'ZNF532-NUT 24335', 'type': 'NMC', 'agent': '10uM JQ1 for 4hours'}, 'GSM2572717': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '15', 'day': '1'}, 'GSM2572716': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '15', 'day': '0'}, 'GSM2572715': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '1', 'day': '7'}, 'GSM2572714': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '1', 'day': '3'}, 'GSM2572713': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '1', 'day': '1'}, 'GSM2572712': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '9', 'day': '7'}, 'GSM2572711': {'tissue': 'blood', 'lanes': '6,7', 'number': '5', 'day': '7'}, 'GSM2572710': {'tissue': 'blood', 'lanes': '6,7', 'number': '5', 'day': '3'}, 'GSM2616782': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2572719': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '15', 'day': '7'}, 'GSM2572718': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '15', 'day': '3'}, 'GSM2051120': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 9c'}, 'GSM2051121': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 15c'}, 'GSM2051122': {'line': 'THP-1', 'treatment': 'untreated'}, 'GSM2051123': {'line': 'THP-1', 'treatment': 'untreated'}, 'GSM2051124': {'line': 'THP-1', 'treatment': 'untreated'}, 'GSM2051125': {'line': 'THP-1', 'treatment': 'untreated'}, 'GSM2051126': {'line': 'THP-1', 'treatment': 'untreated'}, 'GSM2051127': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 2c'}, 'GSM2051128': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 2c'}, 'GSM2051129': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 2c'}, 'GSM2339426': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2339427': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2339424': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2339425': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2339423': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM1916181': {'cell_type': 'T Cell/ T LymphocyteÂ\\xa0', 'age': '14', 'sample_type': 'cell culture', 'Sex': 'maleÂ\\xa0', 'tissue': 'peripheral bloodÂ\\xa0', 'phenotype': 'Lymphoid-like', 'biomaterial_provider': 'ATCC', 'cell_line': 'Jurkat T-lymphocytesÂ\\xa0'}, 'GSM2339428': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2339429': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2125797': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM1598034': {'vendor': 'Abcam', 'tissue': 'fetal heart', 'antibody': 'H3K4me3', 'stage': '12 weeks after gestation'}, 'GSM2332742': {'point': 'day 14', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 'GSM1548056': {'reagent': 'pcDNA3.1- empty vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM2332740': {'point': 'day 5', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2332741': {'point': 'day 14', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'untreated', 'passage': '3'}, 'GSM2332746': {'point': 'day 14', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2125795': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2332744': {'point': 'day 14', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2332745': {'point': 'day 14', 'type': 'bone marrow-derived mesenchymal stem cells', 'treatment': 'NP-siRNA', 'passage': '3'}, 'GSM2817791': {'type': 'PANC-1', 'treatment': 'gemcitabine 300nM 6h'}, 'GSM2817790': {'type': 'PANC-1', 'treatment': 'gemcitabine 300nM 6h'}, 'GSM2817793': {'type': 'PANC-1', 'treatment': 'gemcitabine 30nM 6h'}, 'GSM2125794': {'cancer': 'gastric cancer', 'stage': '1'}, 'GSM2817795': {'type': 'PANC-1', 'treatment': 'gemcitabine 30nM 6h'}, 'GSM2817794': {'type': 'PANC-1', 'treatment': 'gemcitabine 30nM 6h'}, 'GSM2817797': {'type': 'PANC-1', 'treatment': 'gemcitabine 3uM 6h'}, 'GSM2817796': {'type': 'PANC-1', 'treatment': 'gemcitabine 30nM 6h'}, 'GSM2817799': {'type': 'PANC-1', 'treatment': 'gemcitabine 3uM 6h'}, 'GSM1598031': {'tissue': 'fetal heart', 'antibody': 'H3K27me3 (CST, #9733)', 'stage': '12 weeks after gestation'}, 'GSM2125792': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM1371582': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'differentiated organoid'}, 'GSM1980429': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980428': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM2125791': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM1371583': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'human embryonic stem cells'}, 'GSM1980423': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980422': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980421': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1598032': {'vendor': 'Abcam', 'tissue': 'fetal heart', 'antibody': 'H3K4me1', 'stage': '12 weeks after gestation'}, 'GSM1980427': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980426': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980425': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980424': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM2458854': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.83'}, 'GSM1371586': {'line': 'AI91', 'stage': 'teratoma'}, 'GSM1371584': {'line': 'WIBR3', 'stage': 'human embryonic stem cells'}, 'GSM1371585': {'line': 'WIBR3', 'stage': 'organoid'}, 'GSM2125799': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125798': {'cancer': 'gastric cancer', 'stage': '4'}, 'GSM2392289': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392288': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392281': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392280': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392283': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392282': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392285': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392284': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392287': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392286': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1848822': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 5', 'point': '3 hours after exercise'}, 'GSM1848823': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 5', 'point': 'pre exercise'}, 'GSM1267850': {'subtype': 'Cytoplasmic Poly(A) RNA', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1267851': {'subtype': 'Cytoplasmic Poly(A) RNA', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1267852': {'subtype': 'Ribosome footprint mRNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM1267853': {'subtype': 'Ribosome footprint mRNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM1267854': {'subtype': 'Ribosome footprint mRNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM1267855': {'subtype': 'Ribosome footprint mRNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM1267856': {'subtype': 'Ribosome footprint mRNA', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1267857': {'subtype': 'Ribosome footprint mRNA', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1267858': {'subtype': 'Poly(A) selected RNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM1267859': {'subtype': 'Poly(A) selected RNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM2674895': {'age': '4-6', 'site': 'center of upper back', 'Sex': 'Male', 'volume': '200', 'strain': 'SCID-Beige', 'replicate': '1', 'laboratory': 'WCELL', 'line': 'H14(WA14)', 'sex': 'Female'}, 'GSM2674894': {'age': '4-6', 'site': 'center of upper back', 'Sex': 'Female', 'volume': '200', 'strain': 'SCID-Beige', 'replicate': '3', 'laboratory': 'WCELL', 'line': 'iPS(IMR90)-4', 'sex': 'Female'}, 'GSM2674893': {'age': '4-6', 'site': 'center of upper back', 'Sex': 'Female', 'volume': '200', 'strain': 'SCID-Beige', 'replicate': '2', 'laboratory': 'WCELL', 'line': 'iPS(IMR90)-4', 'sex': 'Female'}, 'GSM2674892': {'age': '4-6', 'site': 'center of upper back', 'Sex': 'Female', 'volume': '200', 'strain': 'SCID-Beige', 'replicate': '1', 'laboratory': 'WCELL', 'line': 'iPS(IMR90)-4', 'sex': 'Female'}, 'GSM2674891': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '2', 'laboratory': 'UKSCB', 'line': 'NIBSC 5', 'sex': 'Female'}, 'GSM2674890': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'NIBSC 5', 'sex': 'Female'}, 'GSM2092938': {'bin': '13', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092939': {'bin': '13', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092932': {'bin': '1', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '12', 'tissue': 'blood', 'tst': '16', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092933': {'bin': '1', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '12', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092930': {'bin': '8', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092931': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092936': {'bin': '13', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': '12', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092937': {'bin': '13', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092934': {'bin': '1', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '12', 'tissue': 'blood', 'tst': '14', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092935': {'bin': '1', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '12', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2326887': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'African American', 'Sex': 'Female'}, 'GSM2326888': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM2326889': {'response': 'high', 'tissue': 'PBMC', 'treatment': 'baseline', 'race': 'Caucasian', 'Sex': 'Male'}, 'GSM1202583': {'line': 'MDA-LM2', 'rep': '3', 'point': '7'}, 'GSM1202582': {'line': 'MDA-LM2', 'rep': '2', 'point': '7'}, 'GSM1202581': {'line': 'MDA-LM2', 'rep': '1', 'point': '7'}, 'GSM1202580': {'line': 'MDA-LM2', 'rep': '4', 'point': '4'}, 'GSM1202584': {'line': 'MDA-LM2', 'rep': '4', 'point': '7'}, 'GSM1098575': {'type': 'Cultured foreskin fibroblast cells (Stegment)'}, 'GSM1098574': {'type': 'Human Dermal Microvascular Endothelial Cells (Lonza)'}, 'GSM1098573': {'type': 'Induced endothelial cells from cultured foreskin fibroblast cells (Stegment)'}, 'GSM1098572': {'type': 'Induced endothelial cells from cultured foreskin fibroblast cells (Stegment)'}, 'GSM1015506': {'line': 'HeLa', 'replicate': '1', 'agent': 'Control'}, 'GSM1978259': {'donor': 'ABEL098', 'type': 'beta'}, 'GSM1978258': {'donor': 'ABEF248', 'type': 'beta'}, 'GSM1978253': {'donor': 'CITH068', 'type': 'alpha'}, 'GSM1978252': {'donor': 'ABEL098', 'type': 'alpha'}, 'GSM1978251': {'donor': 'ABC3413', 'type': 'alpha'}, 'GSM1978250': {'donor': 'ACJT115', 'type': 'acinar'}, 'GSM1978257': {'donor': 'ICRH041', 'type': 'alpha'}, 'GSM1978256': {'donor': 'ICRH039', 'type': 'alpha'}, 'GSM1978255': {'donor': 'ICRH025', 'type': 'alpha'}, 'GSM1978254': {'donor': 'CITH070', 'type': 'alpha'}, 'GSM1755405': {'status': 'HPV-', 'diagnosis': 'Head and Neck Squamous Cell Carcinoma'}, 'GSM1755404': {'status': 'HPV-', 'diagnosis': 'Head and Neck Squamous Cell Carcinoma'}, 'GSM1755407': {'status': 'HPV+', 'diagnosis': 'Head and Neck Squamous Cell Carcinoma'}, 'GSM1755406': {'status': 'HPV+', 'diagnosis': 'Head and Neck Squamous Cell Carcinoma'}, 'GSM1322928': {'state': 'normal', 'type': 'Dermal primary fibroblasts', 'stage': 'adult'}, 'GSM1322929': {'subtype': 'GIST WT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1395498': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395499': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395496': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395497': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395494': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395495': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395492': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395493': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1322926': {'state': 'normal', 'type': 'IPS cells', 'stage': 'adult'}, 'GSM1322927': {'state': 'normal', 'type': 'Immortalized B-cells', 'stage': 'adult'}, 'GSM951483': {'line': 'H1-hESC', 'type': 'embryonic stem cells'}, 'GSM951482': {'line': 'HUVEC', 'type': 'Umbilical vein epithelial cells'}, 'GSM951481': {'line': 'HepG2', 'type': 'Liver carcinoma cells'}, 'GSM2735232': {'cohort': 'Paired', 'tils': '50', 'subtype': 'III', 'burden': '146', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM1084152': {'with': 'myc-tagged NSUN2 C271A construct', 'line': 'HEK293', 'type': 'Embryonic kidney cells', 'antibody': 'anti-myc antibody'}, 'GSM1625687': {'state': 'healthy', 'tissue': 'peripheral whole blood'}, 'GSM1625686': {'state': 'healthy', 'tissue': 'peripheral whole blood'}, 'GSM1625685': {'state': 'healthy', 'tissue': 'peripheral whole blood'}, 'GSM1625684': {'state': 'healthy', 'tissue': 'peripheral whole blood'}, 'GSM1625683': {'state': 'healthy', 'tissue': 'peripheral whole blood'}, 'GSM1625682': {'state': 'relapsing-remitting multiple sclerosis (RRMS)', 'tissue': 'peripheral whole blood'}, 'GSM1625681': {'state': 'relapsing-remitting multiple sclerosis (RRMS)', 'tissue': 'peripheral whole blood'}, 'GSM1625680': {'state': 'relapsing-remitting multiple sclerosis (RRMS)', 'tissue': 'peripheral whole blood'}, 'GSM1084154': {'with': 'myc-tagged NSUN2 C271A construct', 'line': 'HEK293', 'type': 'Embryonic kidney cells', 'antibody': 'anti-myc antibody'}, 'GSM1625688': {'state': 'healthy', 'tissue': 'peripheral whole blood'}, 'GSM2170643': {'stage': 'Hepatic endoderm 2'}, 'GSM2124773': {'rin': '6.7', 'Sex': 'female'}, 'GSM2170641': {'stage': 'Hepatic endoderm 2'}, 'GSM1898054': {'tissue': 'Peripheral whole blood', 'diagnosis': 'healthy'}, 'GSM2170640': {'stage': 'Hepatic endoderm 1'}, 'GSM1898055': {'tissue': 'Peripheral whole blood', 'diagnosis': 'healthy'}, 'GSM2170645': {'stage': 'Hepatic endoderm 2'}, 'GSM1898050': {'tissue': 'Peripheral whole blood', 'diagnosis': 'healthy'}, 'GSM2170644': {'stage': 'Hepatic endoderm 2'}, 'GSM1898051': {'tissue': 'Peripheral whole blood', 'diagnosis': 'healthy'}, 'GSM2705982': {'tissue': '27N'}, 'GSM1898052': {'tissue': 'Peripheral whole blood', 'diagnosis': 'healthy'}, 'GSM2705980': {'tissue': '25N'}, 'GSM2705981': {'tissue': '26N'}, 'GSM1437691': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM2704059': {'status': 'not activated', 'genotype': 'DOCK8 KO'}, 'GSM2704058': {'status': 'activated', 'genotype': 'control'}, 'GSM1506096': {'type': 'Peripheral blood monocytes', 'disease': 'Chronic periodontitis'}, 'GSM1506097': {'type': 'Peripheral blood monocytes', 'disease': 'Chronic periodontitis'}, 'GSM2704057': {'status': 'activated', 'genotype': 'control'}, 'GSM2704056': {'status': 'not activated', 'genotype': 'control'}, 'GSM2704055': {'status': 'not activated', 'genotype': 'control'}, 'GSM1506098': {'type': 'Peripheral blood monocytes', 'disease': 'Chronic periodontitis'}, 'GSM1506099': {'type': 'Peripheral blood monocytes', 'disease': 'Chronic periodontitis'}, 'GSM1534015': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534014': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534011': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534010': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534013': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534012': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2328846': {'status': 'Fetal Myotubes', 'facs': 'No FACS', 'age': 'human week 17', 'tissue': 'Fetal limb muscle'}, 'GSM2328847': {'status': 'FACS sorted CD45-CD31-NCAM+ hPSC muscle progenitor', 'facs': 'Immediately', 'line': 'H9', 'age': 'day 50 in culture'}, 'GSM2328844': {'status': 'directly isolated fetal muscle stem cell', 'facs': '5 days expansion and 7 days differentiation', 'age': 'human week 17', 'tissue': 'Fetal limb muscle'}, 'GSM2420633': {'line': 'HEK293T'}, 'GSM2420634': {'line': 'HEK293T'}, 'GSM2420635': {'line': 'HEK293T'}, 'GSM2420636': {'line': 'HEK293T'}, 'GSM2328841': {'status': 'FACS sorted CD45-CD31-NCAM+ fetal muscle progenitor', 'facs': 'Immediately', 'age': 'human week 17', 'tissue': 'Fetal limb muscle'}, 'GSM2773989': {'status': 'WT', 'disease': 'GCTB', 'Sex': 'male'}, 'GSM2773988': {'status': 'G34W', 'disease': 'GCTB', 'Sex': 'female'}, 'GSM2773987': {'status': 'WT', 'disease': 'GCTB', 'Sex': 'female'}, 'GSM2773986': {'status': 'WT', 'disease': 'GCTB', 'Sex': 'male'}, 'GSM2773985': {'status': 'G34W', 'disease': 'GCTB', 'Sex': 'female'}, 'GSM2455697': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2108709': {'type': 'primary hepatocyte cells', 'treatment': 'rifampin'}, 'GSM2108708': {'type': 'primary hepatocyte cells', 'treatment': 'vehicle'}, 'GSM2108705': {'type': 'primary hepatocyte cells', 'treatment': 'vehicle'}, 'GSM2108707': {'type': 'primary hepatocyte cells', 'treatment': 'vehicle'}, 'GSM2108706': {'type': 'primary hepatocyte cells', 'treatment': 'rifampin'}, 'GSM1482318': {'tissue': 'Bone marrow', 'type': 'MSC', 'treatment': 'TGFa'}, 'GSM1482319': {'tissue': 'Bone marrow', 'type': 'MSC', 'treatment': 'TGFa'}, 'GSM1482310': {'line': 'HEK293T', 'sirna': 'Negative control', 'treatment': 'control siRNA transfected', 'histology': 'embryonic kidney cells'}, 'GSM1482311': {'line': 'HEK293T', 'sirna': 'ESRP2', 'treatment': 'ESRP2 siRNA transfected', 'histology': 'embryonic kidney cells'}, 'GSM1482312': {'line': 'HEK293T', 'sirna': 'Arkadia', 'treatment': 'Arkadia siRNA transfected', 'histology': 'embryonic kidney cells'}, 'GSM1482313': {'tissue': 'Bone marrow', 'type': 'MSC', 'treatment': 'control'}, 'GSM1482314': {'tissue': 'Bone marrow', 'type': 'MSC', 'treatment': 'control'}, 'GSM1482315': {'tissue': 'Bone marrow', 'type': 'MSC', 'treatment': 'control'}, 'GSM1482316': {'tissue': 'Bone marrow', 'type': 'MSC', 'treatment': 'control'}, 'GSM1482317': {'tissue': 'Bone marrow', 'type': 'MSC', 'treatment': 'TGFa'}, 'GSM3148612': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148613': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148610': {'tissue': 'breast', 'type': 'CD45+ leukocytes'}, 'GSM3148611': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM3148616': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM3148617': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM3148614': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM3148615': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM1262394': {'type': 'Mesenchymal stem cell', 'variation': 'WRN-KO'}, 'GSM1262395': {'type': 'Mesenchymal stem cell', 'variation': 'WRN-KO'}, 'GSM3148618': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM3148619': {'tissue': 'blood', 'type': 'CD45+ leukocytes'}, 'GSM1262390': {'type': 'Embryonic stem cell', 'variation': 'WRN-KO'}, 'GSM1262391': {'type': 'Embryonic stem cell', 'variation': 'WRN-KO'}, 'GSM1262392': {'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM1969188': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 4', 'description': '36h RNAi for RNase L', 'variation': '36h RNAi for RNase L'}, 'GSM2259786': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259787': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259784': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259785': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259782': {'isolation': 'Bulk', 'line': 'CFPAC-1', 'with': 'None', 'cells': '~10000'}, 'GSM2259783': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259781': {'isolation': 'Bulk', 'line': 'CFPAC-1', 'with': 'None', 'cells': '~10000'}, 'GSM2259788': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2259789': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2745911': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '107,850,602', 'totalnummappedreads': '86,921,233', 'age': '13.33', 'percentexonicmapping': '24.92975', 'Sex': 'Male', 'rin': '8.2', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '5.73', 'brainid': '1963'}, 'GSM2745910': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '108,732,870', 'totalnummappedreads': '97,413,707', 'age': '14.54', 'percentexonicmapping': '25.231022', 'Sex': 'Male', 'rin': '8', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.73', 'brainid': '1878'}, 'GSM2745913': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '209,198,076', 'totalnummappedreads': '188,818,893', 'age': '8.249', 'percentexonicmapping': '24.630789', 'Sex': 'Male', 'rin': '7.7', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.54', 'brainid': '2002'}, 'GSM2745912': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '157,799,798', 'totalnummappedreads': '147,037,232', 'age': '15.22', 'percentexonicmapping': '28.506894', 'Sex': 'Male', 'rin': '8.8', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.01', 'brainid': '1964'}, 'GSM2745915': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '84,506,682', 'totalnummappedreads': '78,288,614', 'age': '23.22', 'percentexonicmapping': '24.772961', 'Sex': 'Male', 'rin': '7.8', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.45', 'brainid': '2371'}, 'GSM2745914': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '92,999,790', 'totalnummappedreads': '82,681,216', 'age': '65.58', 'percentexonicmapping': '22.972387', 'Sex': 'Male', 'rin': '7.1', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.59', 'brainid': '2053'}, 'GSM2745917': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '95,791,366', 'totalnummappedreads': '90,534,635', 'age': '27.48056', 'percentexonicmapping': '24.8034', 'Sex': 'Male', 'rin': '8.6', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.59', 'brainid': '1204'}, 'GSM2745916': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '120,643,922', 'totalnummappedreads': '110,788,987', 'age': '22.576935', 'percentexonicmapping': '23.112769', 'Sex': 'Male', 'rin': '8.6', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.64', 'brainid': '959'}, 'GSM2745919': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '121,695,632', 'totalnummappedreads': '112,163,181', 'age': '2.713284', 'percentexonicmapping': '24.064908', 'Sex': 'Female', 'rin': '8.5', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.06', 'brainid': '1866'}, 'GSM2745918': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '120,910,264', 'totalnummappedreads': '102,744,009', 'age': '16.715036', 'percentexonicmapping': '25.735267', 'Sex': 'Female', 'rin': '8.8', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.31', 'brainid': '1879'}, 'GSM1866123': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866122': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866125': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866124': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1519359': {'line': 'HCC1419', 'treatment': '1μM Lapatinib indefinitely', 'id': 'dep_mg08'}, 'GSM1519358': {'line': 'HCC1419', 'treatment': '1μM Lapatinib indefinitely', 'id': 'dep_mg07'}, 'GSM2373972': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373973': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373970': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373971': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373976': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373977': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373974': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373975': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373978': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373979': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2175987': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175986': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175985': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175984': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175983': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175982': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175981': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175980': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2784541': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '48h'}, 'GSM2784540': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '48h'}, 'GSM2784543': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '48h'}, 'GSM2784542': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '48h'}, 'GSM2784545': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '48h'}, 'GSM2784544': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '48h'}, 'GSM2175989': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2784546': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '48h'}, 'GSM2158397': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158396': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158395': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158394': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158393': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158392': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158391': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158390': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2095440': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 20'}, 'GSM2158398': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2672055': {'type': 'Trophectoderm biopsy', 'number': 'Cas9 Injected control 5', 'stage': 'Blastocyst'}, 'GSM2672054': {'type': 'Single cell', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2672057': {'type': 'Trophectoderm biopsy', 'number': 'Cas9 Injected control 7', 'stage': 'Blastocyst'}, 'GSM2672056': {'type': 'Trophectoderm biopsy', 'number': 'Cas9 Injected control 5', 'stage': 'Blastocyst'}, 'GSM2672051': {'type': 'Single cell', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2672050': {'type': 'Single cell', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2672053': {'type': 'Single cell', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2672052': {'type': 'Single cell', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2419220': {'line': 'MRC5VA', 'treatment': 'Untreated', 'time': '40 minutes'}, 'GSM2672059': {'type': 'Trophectoderm biopsy', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2672058': {'type': 'Trophectoderm biopsy', 'number': 'Cas9 Injected control 7', 'stage': 'Blastocyst'}, 'GSM2550216': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550217': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550214': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550215': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550212': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2175366': {'line': 'HeLa', 'transfection': 'scramble control', 'passage': '5 to 8'}, 'GSM2550210': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550211': {'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2175369': {'line': 'HeLa', 'transfection': 'siRNA1 ZBTB33', 'passage': '5 to 8'}, 'GSM2175368': {'line': 'HeLa', 'transfection': 'scramble control', 'passage': '5 to 8'}, 'GSM1557749': {'transfection': 'Stabilin-1 siRNA'}, 'GSM2550218': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550219': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM1916007': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'RNase H'}, 'GSM1974233': {'type': 'primary hepatocytes'}, 'GSM1974235': {'type': 'fetal hepatocytes'}, 'GSM1974234': {'type': 'primary hepatocytes'}, 'GSM1974237': {'type': 'ESC-derived hepatocytes'}, 'GSM2170859': {'stage': 'Liver bud 1'}, 'GSM2170856': {'stage': 'Liver bud 1'}, 'GSM1974238': {'type': 'ESC-derived hepatocytes'}, 'GSM2170854': {'stage': 'Liver bud 1'}, 'GSM2170855': {'stage': 'Liver bud 1'}, 'GSM2170852': {'stage': 'iPSC line'}, 'GSM2170853': {'stage': 'Liver bud 1'}, 'GSM2170850': {'stage': 'iPSC line'}, 'GSM2170851': {'stage': 'iPSC line'}, 'GSM2453935': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453934': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453937': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453936': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453931': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453930': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453933': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453932': {'code': '404'}, 'GSM2842502': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2453939': {'code': '404'}, 'GSM2453938': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2514487': {'line': 'HeLa', 'genotype': 'MORC2 KO'}, 'GSM2514486': {'line': 'HeLa', 'genotype': 'Wild-type'}, 'GSM2514489': {'line': 'HeLa', 'with': 'Wild-type MORC2'}, 'GSM2514488': {'line': 'HeLa', 'with': 'Mock'}, 'GSM1916003': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'Ribo-Zero'}, 'GSM775955': {'formation': 'no', 'type': 'mammary epithelial cell'}, 'GSM775956': {'formation': 'yes', 'type': 'mammary epithelial cell'}, 'GSM2516885': {'death': '80', 'score': 'IV', 'post_mortem_interval': '3.5', 'caseid': '12-25', 'Sex': 'M', 'rin_score': '6.1', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655480'}, 'GSM2516884': {'death': '86', 'score': 'V', 'post_mortem_interval': '3.16', 'caseid': '09-11', 'Sex': 'M', 'rin_score': '6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655444'}, 'GSM2516887': {'death': '73', 'score': 'V', 'post_mortem_interval': '4.92', 'caseid': '11-66', 'Sex': 'M', 'rin_score': '6.6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655476'}, 'GSM2516886': {'death': '82', 'score': 'IV', 'post_mortem_interval': '3', 'caseid': '05-39', 'Sex': 'M', 'rin_score': '5.8', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655418'}, 'GSM2516881': {'death': '85', 'score': 'VI', 'post_mortem_interval': '3', 'caseid': '09-42', 'Sex': 'M', 'rin_score': '7.6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655460'}, 'GSM2516880': {'death': '89', 'score': 'V', 'post_mortem_interval': '2.2', 'caseid': '11-27', 'Sex': 'M', 'rin_score': '7.5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655448'}, 'GSM2516883': {'death': '87', 'score': 'IV', 'post_mortem_interval': '2.25', 'caseid': '08-35', 'Sex': 'M', 'rin_score': '6.1', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655502'}, 'GSM2516882': {'death': '66', 'score': 'VI', 'post_mortem_interval': '2.75', 'caseid': '04-09', 'Sex': 'F', 'rin_score': '7.8', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655451'}, 'GSM2516889': {'death': '96', 'score': 'IV', 'post_mortem_interval': '4.5', 'caseid': '11-01', 'Sex': 'M', 'rin_score': '6.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655401'}, 'GSM2516888': {'death': '71', 'score': 'VI', 'post_mortem_interval': '2.17', 'caseid': '11-49', 'Sex': 'F', 'rin_score': '6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655475'}, 'GSM2212644': {'gender': 'female', 'condition': 'control'}, 'GSM2212645': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2212648': {'gender': 'male', 'condition': 'control'}, 'GSM2176043': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176042': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176041': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176040': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176047': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176046': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176045': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176044': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2411780': {'line': '2098B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411781': {'line': '2945A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2176049': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176048': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2411784': {'line': '3726B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411785': {'line': '4064A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411786': {'line': '4064B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411787': {'line': '4756A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM1657141': {'differentiation': '5', 'treated': 'IFN-treated', 'stage': 'endodermal cells'}, 'GSM1657140': {'differentiation': '5', 'treated': 'control', 'stage': 'endodermal cells'}, 'GSM3711598': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '14'}, 'GSM1657143': {'differentiation': '15', 'treated': 'control', 'stage': 'post differentiation hepatoblast'}, 'GSM1657142': {'differentiation': '5', 'treated': 'IFN-treated', 'stage': 'endodermal cells'}, 'GSM2671298': {'line': 'MCF7', 'antibody': 'Abcam ab4729', 'passage': 'between 4-14 for all experiments'}, 'GSM2187256': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR251663-1), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shJARID1D'}, 'GSM2187257': {'antibody': 'H3K4me3 (Millipore, 07-473, lot 2664283), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shJARID1D'}, 'GSM2187254': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR251663-1), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shZMYND8'}, 'GSM2187255': {'antibody': 'H3K4me3 (Millipore, 07-473, lot 2664283), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shZMYND8'}, 'GSM2671299': {'line': 'MCF7', 'antibody': 'Abcam ab4729', 'passage': 'between 4-14 for all experiments'}, 'GSM2284652': {'tissue': 'Cord blood'}, 'GSM2187252': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR251663-1), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shLuciferase'}, 'GSM2284650': {'with': 'simvastatin (1 µM, dissolved in DMSO) for 48 hrs', 'passages': '3 to 5 passages', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)'}, 'GSM2284651': {'tissue': 'Cord blood'}, 'GSM2284654': {'tissue': 'Cord blood'}, 'GSM2187253': {'antibody': 'H3K4me3 (Millipore, 07-473, lot 2664283), Drosophila-specific H2Av (Active Motif, 61686, lot 18815002)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shLuciferase'}, 'GSM2187250': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shLuciferase'}, 'GSM2187251': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shJARID1D'}, 'GSM3711597': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '14'}, 'GSM1715540': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Swap-HA'}, 'GSM1715541': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Swap-HA'}, 'GSM1715542': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1715543': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1521601': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2565379': {'construction': 'PLATE-Seq', 'drug': 'OTX015'}, 'GSM2565378': {'construction': 'PLATE-Seq', 'drug': '10-DEBC hydrochloride'}, 'GSM3711596': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '13'}, 'GSM3195614': {'type': 'melanoma', 'name': 'UACC62R', 'treatment': 'none'}, 'GSM1614080': {'line': 'GM12878', 'treatment': 'supernatant (m6A negative) fraction of m6A-LAIC-seq'}, 'GSM1614083': {'line': 'GM12878', 'treatment': 'supernatant (m6A negative) fraction of m6A-LAIC-seq'}, 'GSM1614082': {'line': 'GM12878', 'treatment': 'without antibody treatment'}, 'GSM2565371': {'construction': 'PLATE-Seq', 'drug': 'Talampanel'}, 'GSM3195611': {'type': 'melanoma', 'name': 'UACC62P', 'treatment': 'none'}, 'GSM3195612': {'type': 'melanoma', 'name': 'UACC62P', 'treatment': 'none'}, 'GSM3195613': {'type': 'melanoma', 'name': 'UACC62R', 'treatment': 'none'}, 'GSM2350207': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute)'}, 'GSM2350206': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute)'}, 'GSM2350205': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute)'}, 'GSM2350204': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute)'}, 'GSM2350203': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350202': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350201': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350200': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350209': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute)'}, 'GSM2350208': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute)'}, 'GSM3711591': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '13'}, 'GSM2311848': {'culture': '12', 'line': 'DCX+'}, 'GSM2311849': {'culture': '12', 'line': 'DCX+'}, 'GSM2535837': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4088', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25047', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C60', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4088', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C60'}, 'GSM2535836': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4087', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25046', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C54', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4087', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C54'}, 'GSM2535835': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4086', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25045', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C95', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4086', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C95'}, 'GSM2535834': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4085', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25044', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C65', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4085', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C65'}, 'GSM2535833': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4084', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25043', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C53', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4084', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C53'}, 'GSM2535832': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4083', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25042', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C90', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4083', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C90'}, 'GSM2535831': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4082', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25041', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C78', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4082', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C78'}, 'GSM1338294': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM2754184': {'with': 'non-targeting shRNA negative control', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2754185': {'with': 'non-targeting shRNA negative control', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM3381512': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM2754187': {'with': 'non-targeting shRNA negative control', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2754180': {'with': 'shRNA Clone TRCN0000005418 to knockdown RIOK3 gene expression', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2754181': {'with': 'shRNA Clone TRCN0000005418 to knockdown RIOK3 gene expression', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2754182': {'with': 'non-targeting shRNA negative control', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM2754183': {'with': 'non-targeting shRNA negative control', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM1922957': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': 'none'}, 'GSM1922956': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': '12 day 1 µM dasatinib'}, 'GSM1922955': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': '12 day 1 µM dasatinib, 8 day 1.5 µM GSKJ4'}, 'GSM1922954': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': '4 day 1 µM dasatinib'}, 'GSM1356729': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 17 to MN'}, 'GSM1356728': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 17 to FB'}, 'GSM1922951': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'cleaved Notch1 (Val1744) (CST, 4147, lot 4)', 'treatment': 'none'}, 'GSM1922950': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'cleaved Notch1 (Val1744) (CST, 4147, lot 4)', 'treatment': '12 day 1 µM dasatinib'}, 'GSM1356725': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 35 to MN'}, 'GSM1356724': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 35 to FB'}, 'GSM1356727': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 10'}, 'GSM1356726': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 0'}, 'GSM1356721': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 10'}, 'GSM1356720': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 0'}, 'GSM1356723': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 17 to MN'}, 'GSM1356722': {'strain': 'H9', 'knockdown': 'wild type', 'stage': 'day 17 to FB'}, 'GSM1338293': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM2100208': {'rin': '10', 'Sex': 'Female', 'sspg': '173', 'age': '57', 'bmi': '24.4', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '11', 'indiv': '771', 'method': 'Life-Tech GITC'}, 'GSM1338292': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM2100209': {'rin': '9.9', 'Sex': 'Female', 'sspg': '173', 'age': '57', 'bmi': '24.4', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '11', 'indiv': '771', 'method': 'Life-Tech GITC'}, 'GSM2374256': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374257': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374254': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374255': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374252': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374253': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374250': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374251': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374258': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374259': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1836533': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM2307117': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1853555': {'line': 'HeLa', 'treatment': 'Isoginkgetin - EMD Millipore Chemicals # CAS548-19-6'}, 'GSM1853556': {'line': 'HeLa', 'treatment': 'Isoginkgetin - EMD Millipore Chemicals # CAS548-19-6'}, 'GSM2307114': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307113': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM1853551': {'line': 'HeLa', 'treatment': 'DMSO - Sigma #D2438'}, 'GSM2307111': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1853553': {'line': 'HeLa', 'treatment': 'DMSO - Sigma #D2438'}, 'GSM1853558': {'line': 'HeLa', 'treatment': 'Isoginkgetin - EMD Millipore Chemicals # CAS548-19-6'}, 'GSM2307119': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307118': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2714485': {'line': 'H358 cell line', 'genotype': 'ctrl', 'point': '3 days'}, 'GSM2714484': {'line': 'H358 cell line', 'genotype': 'ctrl', 'point': '3 days'}, 'GSM2714487': {'line': 'H358 cell line', 'genotype': 'ctrl', 'point': '3 days'}, 'GSM2714486': {'line': 'H358 cell line', 'genotype': 'ctrl', 'point': '3 days'}, 'GSM2306240': {'subtype': 'ribo-depleted total RNA', 'concentration': '5 uM', 'type': 'HeLa cells', 'compound': 'AX15839'}, 'GSM2306241': {'subtype': 'ribo-depleted total RNA', 'concentration': '5 uM', 'type': 'HeLa cells', 'compound': 'AX15839'}, 'GSM2306242': {'subtype': 'ribo-depleted total RNA', 'concentration': '5 uM', 'type': 'HeLa cells', 'compound': 'AX15839'}, 'GSM2306243': {'subtype': 'ribo-depleted total RNA', 'concentration': 'n/a', 'type': 'HeLa cells', 'compound': 'none (DMSO)'}, 'GSM2714489': {'line': 'H358 cell line', 'genotype': 'ctrl', 'point': '3 days'}, 'GSM2714488': {'line': 'H358 cell line', 'genotype': 'ctrl', 'point': '3 days'}, 'GSM2172126': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1507998': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1507999': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1065932': {'method': 'Somatic Cell Lysis Buffer'}, 'GSM1065931': {'method': 'PureSperm cushion'}, 'GSM1065930': {'method': 'Somatic Cell Lysis Buffer'}, 'GSM1507996': {'line': 'HeLa F-17', 'antibody': 'Sigma M8823 anti-FLAG (M2) antibody covalently conjugated to magnetic agarose beads', 'treatment': 'Standard culture media', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1507997': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1507994': {'line': 'HeLa F-17', 'antibody': 'none (input)', 'treatment': 'Standard culture media', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1507995': {'line': 'HeLa F-17', 'antibody': 'Kingston Lab rabbit antiserum targeting Bmi1', 'treatment': 'Standard culture media', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1216841': {'gender': 'Male', 'age': '37', 'bmi': '24.8', 'hba1c': '5.3', 'tissue': 'pancreatic islets', 'birth': '1975'}, 'GSM1216840': {'gender': 'Male', 'age': '30', 'bmi': '22.8', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1982'}, 'GSM2157102': {'type': 'adjacent non-tumor tissue', 'stage': 'stage I'}, 'GSM2142254': {'type': 'live sorted cells', 'library': '1'}, 'GSM2157101': {'type': 'hepatocellular carcinoma (HCC)', 'stage': 'stage I'}, 'GSM2310590': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'Fumarate trained Macrophages, exposed to fumarate for 24 hours, then RPMI media for 5 days', 'experiment_type': 'RNA', 'cell_line': '-'}, 'GSM2303568': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2303569': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACEK420A'}, 'GSM2303562': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACEK420A'}, 'GSM2303563': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2303560': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2303561': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2303566': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM2303567': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM2303564': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM2303565': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM1964959': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2194618': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194619': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194616': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194617': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194614': {'type': 'alpha', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194615': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194612': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194613': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194610': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194611': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2061682': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2061683': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2061680': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2479730': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2061686': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2061687': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2061684': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2061685': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2479737': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2061688': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2061689': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2479736': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2092994': {'bin': '28', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM1694212': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2092995': {'bin': '28', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM1694213': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2889006': {'tissue': 'pancreatic islets'}, 'GSM1964950': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1964953': {'sorting': 'FACS sorted by TROP2+', 'passage': 'passage 30-35'}, 'GSM2479738': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM1964955': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964954': {'sorting': 'FACS sorted by TROP2+', 'passage': 'passage 30-35'}, 'GSM1980386': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980387': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980384': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980385': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980382': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980383': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980380': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980381': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2092998': {'bin': '29', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': '17', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1150631': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT6088', 'number': '22'}, 'GSM1150630': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5831', 'number': '24'}, 'GSM2653546': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2029388': {'line': 'HEK293', 'type': 'FLAG-HA tagged CNBP'}, 'GSM2029383': {'line': 'HEK293', 'type': 'FLAG-HA tagged CNBP'}, 'GSM2029382': {'line': 'HEK293', 'type': 'FLAG-HA tagged CNBP'}, 'GSM2029381': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- +EZH2 (Null + EZH2)'}, 'GSM2029380': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- +EZH2 (Null + EZH2)'}, 'GSM2029387': {'line': 'HEK293', 'type': 'FLAG-HA tagged CNBP'}, 'GSM2029386': {'line': 'HEK293', 'type': 'FLAG-HA tagged CNBP'}, 'GSM2029385': {'line': 'HEK293', 'type': 'FLAG-HA tagged CNBP'}, 'GSM2029384': {'line': 'HEK293', 'type': 'FLAG-HA tagged CNBP'}, 'GSM2476372': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476373': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476370': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476371': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476376': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476377': {'line': '501MEL', 'passage': 'N/A'}, 'GSM1888628': {'set': 'isogenic', 'type': 'iPSC'}, 'GSM2476375': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476378': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476379': {'line': '501MEL', 'passage': 'N/A'}, 'GSM1389721': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM1216758': {'gender': 'Male', 'age': '68', 'bmi': '28.4', 'hba1c': '5.5', 'tissue': 'pancreatic islets', 'birth': '1941'}, 'GSM1580892': {'death': '88', 'rin': '7.1', 'reads': '72581752', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '11'}, 'GSM1580893': {'death': '93', 'rin': '6.4', 'reads': '59386108', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '13'}, 'GSM1580890': {'death': '69', 'rin': '8.7', 'reads': '62989822', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '26'}, 'GSM1580891': {'death': '61', 'rin': '8.1', 'reads': '55810684', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '25'}, 'GSM1580896': {'death': '43', 'rin': '7.5', 'reads': '69505712', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '15'}, 'GSM1580897': {'death': '46', 'rin': '7.6', 'reads': '62300754', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '21'}, 'GSM1580894': {'death': '53', 'rin': '7.3', 'reads': '73283170', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '24'}, 'GSM1580895': {'death': '57', 'rin': '8.3', 'reads': '70994352', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '24'}, 'GSM1580898': {'death': '40', 'rin': '7.5', 'reads': '63961372', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '17'}, 'GSM1580899': {'death': '44', 'rin': '8.3', 'reads': '60288132', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '28'}, 'GSM909574': {'with': 'pre-miR control', 'line': 'NB4', 'type': 'promyelocytic leukemia'}, 'GSM2054563': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054562': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054561': {'type': 'hES/hiPS-derived neuron'}, 'GSM2054560': {'type': 'hES/hiPS-derived neuron'}, 'GSM2251269': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251268': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251265': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251264': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251267': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251266': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251261': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251260': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251263': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251262': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2250133': {'type': 'Adjacent normal lung tissue'}, 'GSM2250130': {'type': 'cord blood derived outgrowth endothelial cells'}, 'GSM2153248': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153249': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2250134': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM2250135': {'type': 'Adjacent normal lung tissue'}, 'GSM2153244': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153245': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153246': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2250139': {'type': 'Adjacent normal lung tissue'}, 'GSM2153240': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153241': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153242': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153243': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1113302': {'line': 'T-47D', 'type': 'breast cancer cells', 'transfection': 'siJARID1B'}, 'GSM1113303': {'line': 'SUM185PE', 'type': 'breast cancer cells', 'transfection': 'control siRNA'}, 'GSM1113300': {'line': 'MCF7', 'type': 'breast cancer cells', 'transfection': 'siCTCF'}, 'GSM1113301': {'line': 'T-47D', 'type': 'breast cancer cells', 'transfection': 'control siRNA'}, 'GSM1113306': {'line': 'SUM159PT', 'type': 'breast cancer cells', 'transfection': 'control siRNA'}, 'GSM1113307': {'line': 'SUM159PT', 'type': 'breast cancer cells', 'transfection': 'siJARID1B'}, 'GSM1113304': {'line': 'SUM185PE', 'type': 'breast cancer cells', 'transfection': 'siJARID1B'}, 'GSM1113305': {'line': 'SUM185PE', 'type': 'breast cancer cells', 'transfection': 'siCTCF'}, 'GSM1113308': {'line': 'MDA-MB-231', 'type': 'breast cancer cells', 'transfection': 'control siRNA'}, 'GSM1113309': {'line': 'MDA-MB-231', 'type': 'breast cancer cells', 'transfection': 'siJARID1B'}, 'GSM984650': {'line': 'HepG2'}, 'GSM2051136': {'line': 'SH-SY5Y', 'treatment': 'RA-NBM'}, 'GSM2445392': {'growth': 'Samples were not cultivated'}, 'GSM2445390': {'growth': 'grown in MEMa'}, 'GSM2445391': {'growth': 'Samples were not cultivated'}, 'GSM2445396': {'growth': 'Samples were not cultivated'}, 'GSM2445394': {'growth': 'Samples were not cultivated'}, 'GSM2445398': {'growth': 'Samples were not cultivated'}, 'GSM984651': {'line': 'HepG2'}, 'GSM2211829': {'doxycycline': '+', '2': 'shERF', 'dht': '+'}, 'GSM2211828': {'doxycycline': '+', '2': 'shERF', 'dht': '+'}, 'GSM2211827': {'doxycycline': '-', '2': 'shERF', 'dht': '+'}, 'GSM2211826': {'doxycycline': '-', '2': 'shERF', 'dht': '+'}, 'GSM2211825': {'doxycycline': '-', '2': 'shERF', 'dht': '+'}, 'GSM2211824': {'doxycycline': '+', '2': 'shNT', 'dht': '+'}, 'GSM2211823': {'doxycycline': '+', '2': 'shNT', 'dht': '+'}, 'GSM2211822': {'doxycycline': '+', '2': 'shNT', 'dht': '+'}, 'GSM2211821': {'doxycycline': '-', '2': 'shNT', 'dht': '+'}, 'GSM2211820': {'doxycycline': '-', '2': 'shNT', 'dht': '+'}, 'GSM1436043': {'line': 'HeLa', 'treatment': 'UBL5#58'}, 'GSM1436042': {'line': 'HeLa', 'treatment': 'UBL5#57'}, 'GSM1436041': {'line': 'HeLa', 'treatment': 'UBL5#57'}, 'GSM1436040': {'line': 'HeLa', 'treatment': 'CTRL'}, 'GSM1436047': {'line': 'HeLa', 'treatment': 'SART1'}, 'GSM1436046': {'line': 'HeLa', 'treatment': 'UBL5#82'}, 'GSM1436045': {'line': 'HeLa', 'treatment': 'UBL5#82'}, 'GSM1436044': {'line': 'HeLa', 'treatment': 'UBL5#58'}, 'GSM2739439': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739438': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM1065163': {'tissue': 'adjacent normal tissue of colorectal cancer', 'therapy': 'no therapy', 'location': 'Chinese in eastern China', 'stage': 'stage III'}, 'GSM1065164': {'tissue': 'tumor tissue of colorectal cancer', 'therapy': 'no therapy', 'location': 'Chinese in eastern China', 'stage': 'stage III'}, 'GSM1065165': {'tissue': 'adjacent normal tissue of colorectal cancer', 'therapy': 'Transcatheter Arterial Infusion chemotherapy one week before surgical resection', 'location': 'Chinese in eastern China', 'stage': 'stage III'}, 'GSM1065166': {'tissue': 'tumor tissue of colorectal cancer', 'therapy': 'Transcatheter Arterial Infusion chemotherapy one week before surgical resection', 'location': 'Chinese in eastern China', 'stage': 'stage III'}, 'GSM1224929': {'site': 'bone marrow', 'fragmentsize': '300 bp'}, 'GSM1224928': {'site': 'bone marrow', 'fragmentsize': '300 bp'}, 'GSM1224925': {'site': 'bone marrow', 'fragmentsize': '300 bp'}, 'GSM1224924': {'site': 'bone marrow', 'fragmentsize': '150 bp'}, 'GSM1224927': {'site': 'bone marrow', 'fragmentsize': '300 bp'}, 'GSM1224926': {'site': 'bone marrow', 'fragmentsize': '300 bp'}, 'GSM1224923': {'site': 'bone marrow', 'fragmentsize': '150 bp'}, 'GSM1835024': {'status': 'Differentiated', 'line': 'd-pES10', 'type': 'Unsorted pES10-diploid EBs', 'passage': '12'}, 'GSM1835025': {'status': 'Differentiated', 'line': 'd-pES12', 'type': 'Unsorted pES12-diploid EBs', 'passage': '19'}, 'GSM1716724': {'subpopulation': 'CA125 negative', 'storage': 'cryopreserved primary cells', 'state': 'solid tumor'}, 'GSM1955955': {'a': '54269', 'cd38': '565', 'cd49f': '129', 'w': '67729', 'h': '52512', 'lin': '-9', 'cd34': '3156', 'cd90': '1063', 'cd7': '264', 'cd10': '793', 'time': '16738', 'cd135': '1216', 'cd45ra': '124'}, 'GSM1955954': {'a': '60186', 'cd38': '-247', 'cd49f': '646', 'w': '66318', 'h': '59477', 'lin': '548', 'cd34': '9385', 'cd90': '493', 'cd7': '394', 'cd10': '993', 'time': '16946', 'cd135': '3503', 'cd45ra': '254'}, 'GSM1955957': {'a': '63545', 'cd38': '719', 'cd49f': '1169', 'w': '65507', 'h': '63573', 'lin': '-25', 'cd34': '6667', 'cd90': '2327', 'cd7': '6', 'cd10': '1165', 'time': '16294', 'cd135': '2749', 'cd45ra': '268'}, 'GSM1955956': {'a': '60607', 'cd38': '43', 'cd49f': '1242', 'w': '68120', 'h': '58308', 'lin': '65', 'cd34': '7142', 'cd90': '923', 'cd7': '244', 'cd10': '846', 'time': '16530', 'cd135': '1301', 'cd45ra': '301'}, 'GSM1955951': {'a': '75833', 'cd38': '1075', 'cd49f': '992', 'w': '69639', 'h': '71365', 'lin': '24', 'cd34': '4245', 'cd90': '1154', 'cd7': '459', 'cd10': '624', 'time': '14287', 'cd135': '6327', 'cd45ra': '484'}, 'GSM1955950': {'a': '61888', 'cd38': '1037', 'cd49f': '462', 'w': '65908', 'h': '61539', 'lin': '-330', 'cd34': '7377', 'cd90': '3758', 'cd7': '326', 'cd10': '600', 'time': '14058', 'cd135': '2630', 'cd45ra': '151'}, 'GSM1955953': {'a': '63718', 'cd38': '-145', 'cd49f': '8993', 'w': '67787', 'h': '61602', 'lin': '-1703', 'cd34': '3245', 'cd90': '253458', 'cd7': '13', 'cd10': '743', 'time': '17183', 'cd135': '6369', 'cd45ra': '73142'}, 'GSM1955952': {'a': '74518', 'cd38': '395', 'cd49f': '1135', 'w': '63734', 'h': '76624', 'lin': '1007', 'cd34': '8584', 'cd90': '3092', 'cd7': '257', 'cd10': '1419', 'time': '14550', 'cd135': '2994', 'cd45ra': '304'}, 'GSM1955959': {'a': '49801', 'cd38': '476', 'cd49f': '546', 'w': '66245', 'h': '49268', 'lin': '-119', 'cd34': '7531', 'cd90': '4503', 'cd7': '-242', 'cd10': '1161', 'time': '15857', 'cd135': '3729', 'cd45ra': '383'}, 'GSM1955958': {'a': '59871', 'cd38': '1029', 'cd49f': '1382', 'w': '66038', 'h': '59416', 'lin': '148', 'cd34': '6015', 'cd90': '336', 'cd7': '380', 'cd10': '729', 'time': '16083', 'cd135': '14467', 'cd45ra': '4674'}, 'GSM2339435': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2042128': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042129': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2339434': {'type': 'primary cell', 'patient': 'BCR-ABL adult', 'treatment': 'GMALL 0703'}, 'GSM2042124': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042125': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042126': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042127': {'cohort': 'Control', 'tissue': 'Control right colon'}, 'GSM2042120': {'cohort': 'Sporadic', 'tissue': 'Uninvolved left colon'}, 'GSM2042121': {'cohort': 'Sporadic', 'tissue': 'Uninvolved left colon'}, 'GSM2042122': {'cohort': 'Sporadic', 'tissue': 'Uninvolved left colon'}, 'GSM2042123': {'cohort': 'Sporadic', 'tissue': 'Uninvolved left colon'}, 'GSM908339': {'vendor': 'Synaptic Systems', 'line': 'HepG2', 'antibody': 'anti-m6A'}, 'GSM908338': {'vendor': 'Synaptic Systems', 'line': 'HepG2', 'antibody': 'anti-m6A'}, 'GSM908333': {'vendor': 'Synaptic Systems', 'line': 'HepG2', 'antibody': 'anti-m6A', 'treatment': 'HGF/SF (10 ng/ml)'}, 'GSM908332': {'line': 'HepG2', 'antibody': 'none', 'treatment': '30 minutes incubation at 43ºC (heat shock)'}, 'GSM908331': {'vendor': 'Synaptic Systems', 'line': 'HepG2', 'antibody': 'anti-m6A', 'treatment': '30 minutes incubation at 43ºC (heat shock)'}, 'GSM908330': {'line': 'HepG2', 'antibody': 'none', 'treatment': 'UV irradiation of 0.04 J/cm2'}, 'GSM908337': {'vendor': 'Synaptic Systems', 'line': 'HepG2', 'antibody': 'anti-m6A'}, 'GSM908336': {'line': 'HepG2', 'antibody': 'none', 'treatment': 'IFNg (200ng/ml)'}, 'GSM908335': {'vendor': 'Synaptic Systems', 'line': 'HepG2', 'antibody': 'anti-m6A', 'treatment': 'IFNg (200ng/ml)'}, 'GSM908334': {'line': 'HepG2', 'antibody': 'none', 'treatment': 'HGF/SF (10 ng/ml)'}, 'GSM1706694': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'None', 'passages': 'p28', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706695': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'None', 'passages': 'p28', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706696': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'None', 'passages': 'p12', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM2172308': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172309': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2630172': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM1706697': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'None', 'passages': 'p12', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM2630174': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630175': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630176': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630177': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2172300': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2630179': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2172302': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172303': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172304': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172305': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172306': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM603084': {'marker': 'CD24', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM2331223': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-LPS'}, 'GSM603087': {'marker': 'CD24', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM2331224': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-LPS'}, 'GSM1706693': {'clone': 'None', 'passages': 'p28', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM2331225': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-LPS'}, 'GSM1835022': {'phase': 'G1 (1c)', 'status': 'Differentiated', 'line': 'h-pES10', 'type': 'Haploid pES10-EB cells', 'passage': '25'}, 'GSM2886842': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'creatine 48h'}, 'GSM2886841': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'creatine 48h'}, 'GSM2886840': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'creatine 48h'}, 'GSM1619680': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC15'}, 'GSM1619681': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC16'}, 'GSM1619682': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC3'}, 'GSM1619683': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC7'}, 'GSM1619684': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC7'}, 'GSM1619685': {'status': 'patients undergoing craniotomy for cerebral aneurysms', 'tissue': 'human superficial temporal artery tissue', 'id': 'KBC8'}, 'GSM1835023': {'phase': 'G1 (2c)', 'status': 'Differentiated', 'line': 'd-pES10', 'type': 'Diploid pES10-EB cells', 'passage': '12'}, 'GSM2711239': {'tissue': 'Meningioma tumor'}, 'GSM1957559': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957558': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957557': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957556': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957555': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957554': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957553': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957552': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957551': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957550': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1366007': {'type': 'CRL-2190; ATCC'}, 'GSM2593189': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593188': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2411150': {'clone': 'A3', 'genotype': 'WT'}, 'GSM3436225': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'GSK-LSD1', 'variation': 'drug-resistant SET-2 LSD1 (Leu659_Asn660insArg)'}, 'GSM2593182': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593181': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593180': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593187': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM3436220': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'DMSO', 'variation': 'drug-resistant SET-2 LSD1 (Leu659_Asn660insArg)'}, 'GSM2593185': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM3436222': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'DMSO', 'variation': 'drug-resistant SET-2 LSD1 (Leu659_Asn660insArg)'}, 'GSM2411810': {'line': '14157C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411811': {'line': '14685A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411812': {'line': '14685B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411813': {'line': '16126C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411814': {'line': '16126E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411815': {'line': '16939A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411816': {'line': '16939B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411817': {'line': '1998E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411818': {'line': '1998G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411819': {'line': '22512A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM1819856': {'type': 'PANC1', 'treatment': 'gemcitabine'}, 'GSM1819855': {'type': 'PANC1', 'treatment': 'gemcitabine'}, 'GSM1819854': {'type': 'PANC1', 'treatment': 'vehicle'}, 'GSM1241188': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241189': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241182': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241183': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241180': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241181': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241186': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241187': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241184': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241185': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2676352': {'nuclease': 'S1', 'line': 'HepG2', 'sirna': 'siADAR1'}, 'GSM2676353': {'nuclease': 'S1', 'line': 'HepG2', 'sirna': 'scrambled'}, 'GSM1447368': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM2676351': {'nuclease': 'S1', 'line': 'HepG2', 'sirna': 'scrambled'}, 'GSM2676356': {'nuclease': 'RNase V1', 'line': 'HepG2', 'sirna': 'siADAR1'}, 'GSM2676357': {'nuclease': 'RNase V1', 'line': 'HepG2', 'sirna': 'scrambled'}, 'GSM2676354': {'nuclease': 'S1', 'line': 'HepG2', 'sirna': 'siADAR1'}, 'GSM2676355': {'nuclease': 'RNase V1', 'line': 'HepG2', 'sirna': 'scrambled'}, 'GSM2676358': {'nuclease': 'RNase V1', 'line': 'HepG2', 'sirna': 'siADAR1'}, 'GSM2676359': {'line': 'HepG2', 'sirna': 'scrambled'}, 'GSM1447366': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM1447367': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM1447365': {'line': 'GIST430', 'tissue': 'Soft Tissue', 'type': 'Gastrointestinal Stromal Tumor', 'method': 'Fresh'}, 'GSM2142500': {'gender': 'male', 'age': '58', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM1985631': {'tissue': 'stem cells', 'passage': '51'}, 'GSM1985630': {'tissue': 'stem cells', 'passage': '51'}, 'GSM1915029': {'line': 'MNNG'}, 'GSM1915028': {'line': 'MNNG'}, 'GSM1915025': {'line': 'MNNG'}, 'GSM1915024': {'line': 'HOS'}, 'GSM1915027': {'line': 'MNNG'}, 'GSM1845864': {'line': 'EPT3-M1', 'passages': '11', 'type': 'mesenchymal traits', 'treatment': 'Treated R1881 10 nM 48 hrs'}, 'GSM1915021': {'line': '143B'}, 'GSM1915020': {'line': '143B'}, 'GSM1915023': {'line': 'HOS'}, 'GSM1915022': {'line': '143B'}, 'GSM2243879': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C7', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243878': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C12', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243877': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D3', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243876': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E1', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243875': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C3', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243874': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A11', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243873': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F8', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1845869': {'line': 'ATCC CRL-2876', 'type': 'VCaP', 'treatment': 'Treated with 1 nM R1881 24 hrs'}, 'GSM2243871': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C5', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243870': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1845868': {'line': 'ATCC CRL-2876', 'type': 'VCaP', 'treatment': 'Grown normal medium w/o R1881'}, 'GSM2071704': {'age': '15 to 19 weeks of gestation', 'tissue': 'kidney', 'population': 'NCAM-CD133+'}, 'GSM2071702': {'age': '15 to 19 weeks of gestation', 'tissue': 'kidney', 'population': 'NCAM+CD133-'}, 'GSM2071703': {'age': '15 to 19 weeks of gestation', 'tissue': 'kidney', 'population': 'NCAM+CD133+'}, 'GSM1539018': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-361', 'type': 'unstranded 100bp PE reads'}, 'GSM1539019': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-361', 'type': 'unstranded 100bp PE reads'}, 'GSM2886587': {'age': '44', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'no', 'npm1': '-', 'flt3': '-'}, 'GSM1539012': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-306', 'type': 'unstranded 100bp PE reads'}, 'GSM1539013': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-306', 'type': 'unstranded 100bp PE reads'}, 'GSM1539010': {'genotype': 'AtWBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-192', 'type': 'unstranded 100bp PE reads'}, 'GSM1539011': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-306', 'type': 'unstranded 100bp PE reads'}, 'GSM1539016': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-316', 'type': 'unstranded 100bp PE reads'}, 'GSM1539017': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-361', 'type': 'unstranded 100bp PE reads'}, 'GSM1539014': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-316', 'type': 'unstranded 100bp PE reads'}, 'GSM1539015': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-316', 'type': 'unstranded 100bp PE reads'}, 'GSM2627044': {'origin': 'small intestine', 'patient_id': '72', 'type': 'liver metastasis', 'tumor_id': '46'}, 'GSM2627045': {'origin': 'small intestine', 'patient_id': '78', 'type': 'liver metastasis', 'tumor_id': '52'}, 'GSM2627046': {'origin': 'small intestine', 'patient_id': '79', 'type': 'liver metastasis', 'tumor_id': '53'}, 'GSM2627047': {'origin': 'small intestine', 'patient_id': '80', 'type': 'liver metastasis', 'tumor_id': '54'}, 'GSM1919230': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'ROR2 overexpression construct with stimulation with recombinant WNT5A'}, 'GSM1919231': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'ROR2 overexpression construct with stimulation with recombinant WNT5A'}, 'GSM2536676': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 2', 'treatment': 'on-treatment'}, 'GSM2536677': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 3', 'treatment': 'pre-treatment'}, 'GSM2536678': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 3', 'treatment': 'on-treatment'}, 'GSM2536679': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 4', 'treatment': 'pre-treatment'}, 'GSM2774141': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK343'}, 'GSM2774146': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax'}, 'GSM2627049': {'origin': 'small intestine', 'patient_id': '82', 'type': 'liver metastasis', 'tumor_id': '56'}, 'GSM984391': {'line': 'C4-2B', 'antibody': 'FOXA1', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Abcam'}, 'GSM984390': {'line': '22RV1', 'antibody': 'AR', 'treatment': 'DHT treated (4h)', 'manufacturer': 'Abcam'}, 'GSM984393': {'line': 'C4-2B', 'antibody': 'AcH3', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Millipore'}, 'GSM984392': {'line': 'C4-2B', 'antibody': 'FOXA1', 'treatment': 'DHT treated (4h)', 'manufacturer': 'Abcam'}, 'GSM984395': {'line': 'LNCaP', 'antibody': 'AcH3', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Millipore'}, 'GSM984394': {'line': 'C4-2B', 'antibody': 'AcH3', 'treatment': 'DHT treated (4h)', 'manufacturer': 'Millipore'}, 'GSM984397': {'line': 'C4-2B', 'antibody': 'H3K4Me3', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Millipore'}, 'GSM984396': {'line': 'LNCaP', 'antibody': 'AcH3', 'treatment': 'DHT treated (4h)', 'manufacturer': 'Millipore'}, 'GSM984399': {'line': 'LNCaP', 'antibody': 'H3K4Me3', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'Millipore'}, 'GSM1847226': {'line': 'A375'}, 'GSM1847225': {'line': 'A375'}, 'GSM1847224': {'line': 'A375'}, 'GSM1847223': {'line': 'A375'}, 'GSM1847222': {'line': 'A375'}, 'GSM1847221': {'line': 'A375'}, 'GSM2610932': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2791403': {'host': 'female athymic nude mice (Foxn1nu)', 'tissue': 'breast cancer patient-derived xenografts (PDX)', 'type': 'snapfrozen xenograft specimen', 'tag': 'Hormone receptor positive'}, 'GSM2610930': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2754614': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_1058', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754615': {'bin': '5', 'group': 'case', 'qft': 'negative', 'gender': 'male', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754616': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2791401': {'host': 'female athymic nude mice (Foxn1nu)', 'tissue': 'breast cancer patient-derived xenografts (PDX)', 'type': 'snapfrozen xenograft specimen', 'tag': 'Hormone receptor positive'}, 'GSM2754610': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_1135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1914777': {'tissue': 'Cartilage', 'treatment': 'No stimulation', 'passage': 'P0'}, 'GSM2754612': {'bin': '2', 'group': 'Not a PP case', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0909', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754613': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0511', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM1914778': {'tissue': 'Cartilage', 'treatment': 'No stimulation', 'passage': 'P0'}, 'GSM1914779': {'tissue': 'Cartilage', 'treatment': 'No stimulation', 'passage': 'P0'}, 'GSM2754618': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754619': {'bin': '5', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2791404': {'host': 'female athymic nude mice (Foxn1nu)', 'tissue': 'breast cancer patient-derived xenografts (PDX)', 'type': 'snapfrozen xenograft specimen', 'tag': 'Hormone receptor positive'}, 'GSM2610935': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM3586748': {'origin': 'GCB', 'pfstt': '106', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '106', 'cycles': '6', 'oscs': '1'}, 'GSM3586749': {'origin': 'GCB', 'pfstt': '900', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1065', 'cycles': '6', 'oscs': '0'}, 'GSM1529688': {'line': 'HEK 293T', 'type': 'non-malignant cell line'}, 'GSM2090425': {'subtype': 'nascent RNA', 'line': 'MOLT4', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'DMSO'}, 'GSM2886584': {'age': '31', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': '-'}, 'GSM1899541': {'line': 'HEK293T', 'transfection': 'siLUC'}, 'GSM2158213': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM1899543': {'line': 'HEK293T', 'transfection': 'siDGCR8'}, 'GSM1899542': {'line': 'HEK293T', 'transfection': 'siDGCR8'}, 'GSM1899545': {'line': 'HEK293T', 'transfection': 'siDROSHA'}, 'GSM1899544': {'line': 'HEK293T', 'transfection': 'siDROSHA'}, 'GSM2158214': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158215': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158218': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158219': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM3586740': {'origin': 'ABC', 'pfstt': '1081', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1424', 'cycles': '6', 'oscs': '0'}, 'GSM3586741': {'origin': 'ABC', 'pfstt': '519', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '742', 'cycles': '6', 'oscs': '0'}, 'GSM1551065': {'subtype': 'rRNA-depleted total RNA', 'line': 'HeLa S2', 'with': 'DIS3, DIS3L and hRRP6 siRNA (triple knock-down)'}, 'GSM1551064': {'subtype': 'rRNA-depleted total RNA', 'line': 'HeLa S2', 'with': 'hRRP40 siRNA'}, 'GSM1551063': {'subtype': 'rRNA-depleted total RNA', 'line': 'HeLa S2', 'with': 'GFP siRNA control'}, 'GSM2285364': {'differentiation': 'commercial purification', 'conditions': 'grown in neural conditioned medium NCM'}, 'GSM1395308': {'line': 'H1', 'type': 'ES cell'}, 'GSM1395309': {'line': 'H1', 'type': 'ES cell'}, 'GSM971689': {'line': 'THP-1', 'treatment': 'cycloheximide 100µg/ml'}, 'GSM2779679': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779678': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779677': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779676': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779675': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779674': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779673': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM1395307': {'line': 'H1', 'type': 'ES cell'}, 'GSM2779671': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779670': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2971169': {'activation': 'N/A', 'project': '1', 'tissue': 'T-cells', 'treatment': 'Th0', 'diagnosis': 'healthy control', 'id': 'II'}, 'GSM2971168': {'activation': 'N/A', 'project': '1', 'tissue': 'T-cells', 'treatment': 'Th0', 'diagnosis': 'healthy control', 'id': 'I'}, 'GSM2095807': {'ip': 'Protein A/G Sepharose beads (PAS) (Santa Cruz, Cat# sc-2003)', 'line': 'University of Michigan Squamous Cell Carcinoma cell line 74B (UM-SCC 74B)', 'transfection': 'GFP plasmid vector containing HuR-CP1'}, 'GSM2095806': {'ip': 'Isotype Control IgG (Santa Cruz, Cat# sc-2025)', 'line': 'University of Michigan Squamous Cell Carcinoma cell line 74B (UM-SCC 74B)', 'transfection': 'GFP plasmid vector containing HuR-D226A'}, 'GSM2095805': {'ip': 'HuR monoclonal antibody 3A2 (Santa Cruz, Cat# sc-5261)', 'line': 'University of Michigan Squamous Cell Carcinoma cell line 74B (UM-SCC 74B)', 'transfection': 'GFP plasmid vector containing full-length HuR'}, 'GSM2095804': {'ip': 'GFP antibody (Clontech, Cat# 632460, Lot# 1105002)', 'line': 'University of Michigan Squamous Cell Carcinoma cell line 74B (UM-SCC 74B)', 'transfection': 'GFP empty vector'}, 'GSM2141646': {'individual': 'EU240', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1556178': {'subtype': 'basal', 'line': 'MDAMB468', 'agent': 'DMSO'}, 'GSM1556179': {'subtype': 'basal', 'line': 'MDAMB468', 'agent': 'PKC412'}, 'GSM2275058': {'area_under_the_curve': '0.547132656', 'siteandparticipantcode': '781179', 'baseline_area_under_the_curve': '0.547132656', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '923982', 'sampleID': 'S12595', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib903', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'Control', 'name': 'AbATE_781179', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib903', 'studysiteshort': 'YALE'}, 'GSM2275059': {'area_under_the_curve': '0.500585781', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '923574', 'sampleID': 'S12596', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib904', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'race': 'White; White', 'libraryid': 'lib904', 'studysiteshort': 'YALE'}, 'GSM2309029': {'line': 'H9 ESC', 'type': 'Human Embryonic Stem Cells'}, 'GSM2309028': {'line': 'Derived from H9 ESC', 'type': 'Human ESC-derived Neuroectodermal Cells'}, 'GSM2275050': {'area_under_the_curve': '0.578939688', 'siteandparticipantcode': '785228', 'baseline_area_under_the_curve': '0.578939688', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '928368', 'sampleID': 'S12587', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib895', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_785228', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib895', 'studysiteshort': 'BRI-VM'}, 'GSM2275051': {'area_under_the_curve': '0.498775625', 'siteandparticipantcode': '693516', 'baseline_area_under_the_curve': '0.498775625', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '913850', 'sampleID': 'S12588', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib896', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_693516', 'gender': 'Male', 'age': '15', 'race': 'White', 'libraryid': 'lib896', 'studysiteshort': 'PNRI'}, 'GSM2275052': {'area_under_the_curve': '1.256817344', 'siteandparticipantcode': '314565', 'baseline_area_under_the_curve': '1.256817344', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '913851', 'sampleID': 'S12589', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib897', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'Control', 'name': 'AbATE_314565', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib897', 'studysiteshort': 'PNRI'}, 'GSM2309026': {'line': 'H9 ESC', 'type': 'Human Embryonic Stem Cells'}, 'GSM2275054': {'area_under_the_curve': '0.960365469', 'siteandparticipantcode': '371894', 'baseline_area_under_the_curve': '0.960365469', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '933594', 'sampleID': 'S12591', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib899', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_371894', 'gender': 'Male', 'age': '15', 'race': 'Other', 'libraryid': 'lib899', 'studysiteshort': 'PNRI'}, 'GSM2275055': {'area_under_the_curve': '0.477415781', 'siteandparticipantcode': '604690', 'baseline_area_under_the_curve': '0.477415781', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '916699', 'sampleID': 'S12592', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib900', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'Control', 'name': 'AbATE_604690', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib900', 'studysiteshort': 'MC GEORGIA'}, 'GSM2275056': {'area_under_the_curve': '0.691479688', 'siteandparticipantcode': '595950', 'baseline_area_under_the_curve': '0.691479688', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '921974', 'sampleID': 'S12593', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib901', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_595950', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib901', 'studysiteshort': 'YALE'}, 'GSM2275057': {'area_under_the_curve': '0.402733906', 'siteandparticipantcode': '161201', 'baseline_area_under_the_curve': '0.402733906', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '921970', 'sampleID': 'S12594', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib902', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'Control', 'name': 'AbATE_161201', 'gender': 'Male', 'age': '10', 'race': 'White; White', 'libraryid': 'lib902', 'studysiteshort': 'YALE'}, 'GSM3586829': {'origin': 'GCB', 'pfstt': '795', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '892', 'cycles': '6', 'oscs': '0'}, 'GSM3586828': {'origin': 'GCB', 'pfstt': '386', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '877', 'cycles': '6', 'oscs': '0'}, 'GSM3586823': {'origin': 'GCB', 'pfstt': '815', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '873', 'cycles': '6', 'oscs': '0'}, 'GSM3586822': {'origin': 'GCB', 'pfstt': '189', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '189', 'cycles': '6', 'oscs': '1'}, 'GSM3586821': {'origin': 'UNCLASSIFIED', 'pfstt': '81', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '139', 'cycles': '6', 'oscs': '1'}, 'GSM3586820': {'origin': 'GCB', 'pfstt': '902', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '902', 'cycles': '6', 'oscs': '0'}, 'GSM3586827': {'origin': 'GCB', 'pfstt': '205', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '249', 'cycles': '6', 'oscs': '1'}, 'GSM3586826': {'origin': 'GCB', 'pfstt': '743', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '746', 'cycles': '6', 'oscs': '0'}, 'GSM3586825': {'origin': 'GCB', 'pfstt': '33', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '33', 'cycles': '6', 'oscs': '1'}, 'GSM3586824': {'origin': 'GCB', 'pfstt': '794', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '806', 'cycles': '6', 'oscs': '0'}, 'GSM2565048': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM1614895': {'line': 'LCL14', 'fraction': 'total'}, 'GSM3711613': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM1614898': {'line': 'LCL19', 'fraction': 'polysome'}, 'GSM2243404': {'line': 'HEK293-DAX', 'tissue': 'kidney', 'treatment': 'Trimethoprim (TMP)'}, 'GSM1614899': {'line': 'LCL31', 'fraction': 'total'}, 'GSM2243402': {'line': 'HEK293-DAX', 'tissue': 'kidney', 'treatment': 'Trimethoprim (TMP)'}, 'GSM2243403': {'line': 'HEK293-DAX', 'tissue': 'kidney', 'treatment': 'Trimethoprim (TMP)'}, 'GSM2243400': {'line': 'HEK293-DAX', 'tissue': 'kidney', 'treatment': 'DMSO'}, 'GSM2243401': {'line': 'HEK293-DAX', 'tissue': 'kidney', 'treatment': 'DMSO'}, 'GSM921044': {'barcode': 'TGTCAC', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd6'}, 'GSM921045': {'barcode': 'TGCGGA', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd7'}, 'GSM921046': {'barcode': 'ACGAGC', 'type': 'Fibroblasts', 'treatment': 'Noninduced', 'name': 'Daphne', 'day': 'd0'}, 'GSM921047': {'barcode': 'ACACCC', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd1'}, 'GSM921040': {'barcode': 'GACACT', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd2'}, 'GSM921041': {'barcode': 'TTCCGC', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd3'}, 'GSM921042': {'barcode': 'CTCGCA', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd4'}, 'GSM921043': {'barcode': 'GTATAC', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd5'}, 'GSM1197621': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM1197620': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h'}, 'GSM1197623': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 3h'}, 'GSM2153441': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1197625': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 0h'}, 'GSM1197624': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 6h'}, 'GSM2153444': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1197626': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 3h'}, 'GSM2308772': {'type': 'HFF cells', 'treatment': 'Non-Targeting siRNA treatment', 'infection': 'Mock Infected (serum with no HCMV)'}, 'GSM2308773': {'type': 'HFF cells', 'treatment': 'Non-Targeting siRNA treatment', 'infection': 'HCMV infected'}, 'GSM2308770': {'type': 'HFF cells', 'treatment': 'Puromycin selection - 5 days', 'variation': 'Lentivirus mediated CPEB1 overexpression'}, 'GSM2308771': {'type': 'HFF cells', 'treatment': 'Puromycin selection - 5 days', 'variation': 'Lentivirus mediated CPEB1 overexpression'}, 'GSM2724425': {'line': 'Control', 'type': 'Control brain metastasis, mouse number 72'}, 'GSM2308774': {'type': 'HFF cells', 'treatment': 'CPEB1 siRNA treatment', 'infection': 'HCMV infected'}, 'GSM2724427': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir brain metastasis, mouse number 65'}, 'GSM2724428': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir bone metastasis, mouse number 65'}, 'GSM2724429': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir lung metastasis, mouse number 65'}, 'GSM2048548': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048549': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048540': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048541': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048542': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048543': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048544': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048545': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048546': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048547': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2274721': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32776', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9366', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C28', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9366', 'studysiteshort': 'UCSF'}, 'GSM2274720': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32775', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9365', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C24', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9365', 'studysiteshort': 'UCSF'}, 'GSM2274723': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32780', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9370', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C29', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9370', 'studysiteshort': 'UCSF'}, 'GSM2274722': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32777', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9367', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C46', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9367', 'studysiteshort': 'UCSF'}, 'GSM2274725': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32782', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9372', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C04', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9372', 'studysiteshort': 'UCSF'}, 'GSM2274724': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32781', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9371', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C35', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9371', 'studysiteshort': 'UCSF'}, 'GSM2274727': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32785', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9375', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C95', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9375', 'studysiteshort': 'UCSF'}, 'GSM2274726': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32784', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9374', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C90', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9374', 'studysiteshort': 'UCSF'}, 'GSM2274729': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32791', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9381', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C94', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9381', 'studysiteshort': 'UCSF'}, 'GSM2274728': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32786', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9376', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C76', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9376', 'studysiteshort': 'UCSF'}, 'GSM2125151': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Estradiol', 'time': '75 minutes'}, 'GSM2332398': {'line': 'HUH7', 'point': '80'}, 'GSM2125153': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Dexamethasone', 'time': '60 minutes'}, 'GSM2125155': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10nM Estradiol + 10 nM Dexamethasone', 'time': '75 minutes (15 min E2 and 60 min E2+Dexamethasone)'}, 'GSM2125157': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM1365960': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Combo', 'timepoint': '4hr'}, 'GSM2125159': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2332393': {'line': 'HUH7', 'point': '0'}, 'GSM2332392': {'line': 'HUH7', 'point': '0'}, 'GSM2332395': {'line': 'HUH7', 'point': '40'}, 'GSM2332394': {'line': 'HUH7', 'point': '0'}, 'GSM2332397': {'line': 'HUH7', 'point': '40'}, 'GSM2332396': {'line': 'HUH7', 'point': '40'}, 'GSM2451077': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2149960': {'line': 'Karpas-299', 'treatment': 'Crizotinib', 'translocation': 't(2;5)(p23;q35)'}, 'GSM1365966': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'NMP', 'timepoint': '24hr'}, 'GSM2180143': {'source': 'H9', 'subtype': 'Cerebral organoids, 40 days differentiation', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180142': {'source': 'H9', 'subtype': 'Cerebral organoids, 40 days differentiation', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180141': {'source': 'H9', 'subtype': 'Embryoid body derived from H9 hESC', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180140': {'source': 'H9', 'subtype': 'Embryoid body derived from H9 hESC', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180147': {'source': 'H9', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180146': {'subtype': 'Middle frontal gyrus from 19w gestation human brain', 'Sex': 'Male'}, 'GSM2180145': {'source': 'H9', 'subtype': 'Cerebral organoids, 60 days differentiation', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180144': {'source': 'H9', 'subtype': 'Cerebral organoids, 60 days differentiation', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180149': {'source': 'H9', 'subtype': 'Embryoid body derived from H9 hESC', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180148': {'source': 'H9', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2451074': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2301447': {'gender': 'male', 'type': 'LuCaP 23.1 PDX tumor', 'group': 'control'}, 'GSM2301449': {'gender': 'male', 'type': 'LuCaP 23.1 PDX tumor', 'group': 'YK-4-279'}, 'GSM2301448': {'gender': 'male', 'type': 'LuCaP 23.1 PDX tumor', 'group': 'control'}, 'GSM2564738': {'tumor': 'acute monocytic leukemia', 'line': 'MonoMac 6', 'shRNA': 'shNS (non-specific control)'}, 'GSM2058059': {'tissue': 'normal colon crypt', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2058058': {'line': 'V410', 'tissue': 'colorectal cancer cell line', 'antibody': 'mouse anti-H3K27me3 (Abcam #6002)'}, 'GSM2058053': {'tissue': 'primary colorectal cancer tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058052': {'line': 'V9P', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058051': {'line': 'V968', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058050': {'line': 'V940', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2372333': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'High global H3K27me3'}, 'GSM2058056': {'tissue': 'primary colorectal cancer tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058055': {'tissue': 'primary colorectal cancer tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2372330': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'High global H3K27me3'}, 'GSM1534514': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534515': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534516': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM2564739': {'tumor': 'acute monocytic leukemia', 'line': 'MonoMac 6', 'shRNA': 'shM14-#2'}, 'GSM1534517': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM2152782': {'transfection': 'siAcinus (CUGCAGAGCAUGAAGUAAAUU)'}, 'GSM2152783': {'transfection': 'siAcinus (CUGCAGAGCAUGAAGUAAAUU)'}, 'GSM2152780': {'antibody': 'Rabbit IgG (Millipore 12-370, Lot DAM1795389)'}, 'GSM2451073': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2152781': {'antibody': 'Rabbit IgG (Millipore 12-370, Lot DAM1795389)'}, 'GSM2816095': {'line': 'H9'}, 'GSM1965208': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965209': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965202': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965203': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965200': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965201': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965206': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965207': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965204': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965205': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2816094': {'line': 'H9'}, 'GSM2823146': {'group': 'r848', 'number': '82'}, 'GSM2535972': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6779', 'samplename': '1_T1D#4_RO+_C32', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30143', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6779', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C32'}, 'GSM2535973': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6780', 'samplename': '1_T1D#4_RO+_C19', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30144', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6780', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C19'}, 'GSM2535970': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6777', 'samplename': '1_T1D#4_RO+_C02', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30141', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6777', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C02'}, 'GSM2535971': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6778', 'samplename': '1_T1D#4_RO+_C08', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30142', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6778', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C08'}, 'GSM2535976': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6783', 'samplename': '1_T1D#4_RO+_C39', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30147', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6783', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C39'}, 'GSM2535977': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6784', 'samplename': '1*_T1D#4_RO+_C67', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30148', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6784', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C67'}, 'GSM2535974': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6781', 'samplename': '1_T1D#4_RO+_C27', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30145', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6781', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C27'}, 'GSM2535975': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6782', 'samplename': '1_T1D#4_RO+_C33', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30146', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6782', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C33'}, 'GSM2535978': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6785', 'samplename': '1_T1D#4_RO+_C93', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30149', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6785', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C93'}, 'GSM2535979': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6786', 'samplename': '1_T1D#4_RO+_C56', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30150', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6786', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C56'}, 'GSM1581044': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1914981': {'line': '143B', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1914980': {'line': '143B', 'antibody': 'NA'}, 'GSM1914983': {'line': '143B', 'antibody': 'NA'}, 'GSM1914982': {'line': '143B', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1914985': {'line': 'HOS', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1914984': {'line': 'HOS', 'antibody': 'NA'}, 'GSM1914987': {'line': 'HOS', 'antibody': 'NA'}, 'GSM1914986': {'line': 'HOS', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1914989': {'line': 'Hu09', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1914988': {'line': 'Hu09', 'antibody': 'NA'}, 'GSM2092999': {'bin': '29', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM927079': {'overexpressing': 'truncated ERG', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '2'}, 'GSM927078': {'overexpressing': 'truncated ERG', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '2'}, 'GSM927077': {'overexpressing': 'truncated ERG', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '2'}, 'GSM927076': {'overexpressing': 'empty vector containing GFP', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '1'}, 'GSM927075': {'overexpressing': 'truncated ERG', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells', 'library': '1'}, 'GSM927074': {'overexpressing': 'empty vector containing GFP', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells'}, 'GSM927073': {'overexpressing': 'truncated ERG', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells'}, 'GSM927072': {'overexpressing': 'truncated ERG', 'antibody': 'none', 'line': 'RWPE1', 'passages': '20', 'type': 'benign prostate epithelial cells'}, 'GSM927071': {'overexpressing': 'truncated ERG', 'passages': '20', 'vendor': 'Epitomics', 'type': 'benign prostate epithelial cells', 'line': 'RWPE1', 'antibody': 'ERG'}, 'GSM2024774': {'donor': 'G', 'time': '4', 'id': '808', 'treatment': 'TPC1 cell line'}, 'GSM2024771': {'donor': 'C', 'time': '4', 'id': '757', 'treatment': 'TPC1 cell line'}, 'GSM2024770': {'donor': 'G', 'time': '24', 'id': '812', 'treatment': 'TPC1 cell line'}, 'GSM2024773': {'donor': 'F', 'time': '4', 'id': '791', 'treatment': 'TPC1 cell line'}, 'GSM2024772': {'donor': 'E', 'time': '4', 'id': '774', 'treatment': 'TPC1 cell line'}, 'GSM2153196': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2141575': {'individual': 'EU136', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141574': {'individual': 'EU136', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141577': {'individual': 'EU138', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141576': {'individual': 'EU136', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141571': {'individual': 'EU134', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141570': {'individual': 'EU130', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141573': {'individual': 'EU134', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141572': {'individual': 'EU134', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141579': {'individual': 'EU138', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141578': {'individual': 'EU138', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM849324': {'lineage': 'mesoderm', 'description': 'tier 3', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'K03', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '3', 'labversion': 'IDR', 'biorep': '029C'}, 'GSM849325': {'lineage': 'mesoderm', 'description': 'tier 3', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'K05', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '3', 'labversion': 'IDR', 'biorep': '029N'}, 'GSM849326': {'lineage': 'inner cell mass', 'description': 'tier 2', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'J95', 'readtype': '1x36', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '2', 'biorep': '006N'}, 'GSM849327': {'lineage': 'mesoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'J78', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '009WC'}, 'GSM849328': {'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'K18', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '037WC'}, 'GSM849329': {'lineage': 'mesoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'I27', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'labversion': 'Delve version 0.9', 'biorep': 'gen0104C'}, 'GSM2155549': {'line': 'HEK293', 'condition': 'Overexpressed DIS3L2 D391N mutant'}, 'GSM2099007': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'wild type control from community', 'passage': 'P4'}, 'GSM2099006': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'FPAH', 'passage': 'P4'}, 'GSM517441': {'stage': 'neural progenitors'}, 'GSM517440': {'stage': 'neural progenitors'}, 'GSM2123708': {'with': 'TPRX1', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM1665959': {'with': 'SNTA1 siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665958': {'with': 'Myc siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665957': {'with': 'Myc siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665956': {'with': 'Myc siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM2061723': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061722': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1665953': {'with': 'none (mock-transfected)', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665952': {'with': 'none (mock-transfected)', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM2061727': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1665950': {'with': 'none (mock-transfected)', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1401764': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401765': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401766': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401767': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401760': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401761': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401762': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401763': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2424919': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1401768': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401769': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2674867': {'age': '6-8', 'site': 'subcutaneous', 'Sex': 'Female', 'volume': '100', 'strain': 'FOX CHASE SCID C.B-17/lcr-scid/scidJcl', 'replicate': '1', 'laboratory': 'KYOU', 'line': 'Tig108 4f3', 'sex': 'Male'}, 'GSM2433108': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2046879': {'knockdown': 'siCTRL', 'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM2674864': {'age': '6-8', 'site': 'subcutaneous', 'Sex': 'Female', 'volume': '100', 'strain': 'FOX CHASE SCID C.B-17/lcr-scid/scidJcl', 'replicate': '2', 'laboratory': 'KYOU', 'line': 'KhES-1', 'sex': 'Male'}, 'GSM2433102': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433103': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433100': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433101': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433106': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433107': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433104': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2433105': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM554130': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM554132': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM554134': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM2424917': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424916': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM982258': {'gender': 'male', 'age': '46 years', 'tissue': 'nasal polyp', 'patient': '25', 'condition': 'chronic rhinosinusitis with nasal polyps'}, 'GSM982256': {'gender': 'male', 'age': '46 years', 'tissue': 'nasal polyp', 'patient': '13', 'condition': 'chronic rhinosinusitis with nasal polyps'}, 'GSM982257': {'gender': 'male', 'age': '46 years', 'tissue': 'nasal uncinate process mucosa', 'patient': '25', 'condition': 'chronic rhinosinusitis with nasal polyps'}, 'GSM982255': {'gender': 'male', 'age': '46 years', 'tissue': 'nasal uncinate process mucosa', 'patient': '13', 'condition': 'chronic rhinosinusitis with nasal polyps'}, 'GSM2141678': {'individual': 'EU268', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2257559': {'line': 'A375', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'BRAF mutation'}, 'GSM678037': {'type': 'CD4+ T-cells'}, 'GSM2257555': {'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'KRAS mutation'}, 'GSM2257554': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'KRAS mutation'}, 'GSM678038': {'type': 'CD4+ T-cells'}, 'GSM678039': {'type': 'CD4+ T-cells'}, 'GSM2257551': {'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'INTS11 siRNA transfection, 3 days', 'background': 'KRAS mutation'}, 'GSM2257550': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Control siRNA transfection, 3 days', 'background': 'KRAS mutation'}, 'GSM2257553': {'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'KRAS mutation'}, 'GSM2257552': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'INTS11 siRNA transfection, 3 days', 'background': 'KRAS mutation'}, 'GSM2093190': {'bin': '18', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1181921': {'type': 'Adherent/parental cells from the CALU cell line', 'phenotype': 'adehrent cells'}, 'GSM1181920': {'type': 'TICs from the CHAGO cell line (PRKCI knock down)', 'phenotype': 'tumo initiating cells'}, 'GSM1181923': {'type': 'TICs from the CALU cell line (PRKCI knock down)', 'phenotype': 'tumo initiating cells'}, 'GSM1181922': {'type': 'TICs from the CALU cell line', 'phenotype': 'tumo initiating cells'}, 'GSM2609174': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609175': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2265718': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'Cells lentiviral infected with SUZ12 specific shRNA vector'}, 'GSM2265719': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'Cells lentiviral infected with SUZ12 specific shRNA vector'}, 'GSM2609170': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609171': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609172': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2609173': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2265712': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '6h'}, 'GSM2265713': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '12h'}, 'GSM2265710': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '48h'}, 'GSM2265711': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '3h'}, 'GSM2265716': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'Cells lentiviral infected with control vector'}, 'GSM2609179': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2265714': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '24h'}, 'GSM2265715': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '48h'}, 'GSM1954974': {'source': 'Peripheral blood mononuclear cells', 'state': 'healthy', 'type': 'Monocytes'}, 'GSM1954975': {'source': 'Peripheral blood mononuclear cells', 'state': 'healthy', 'type': 'Macrophages'}, 'GSM1954976': {'source': 'Peripheral blood mononuclear cells', 'state': 'healthy', 'type': 'Macrophages'}, 'GSM2816099': {'line': 'H9'}, 'GSM1954973': {'source': 'Peripheral blood mononuclear cells', 'state': 'healthy', 'type': 'Monocytes'}, 'GSM2157637': {'function': 'GFP', 'line': 'Endo-beta-H1C', 'type': 'pancreatic beta-cell line', 'treatment': 'T-Antigen siRNA 2046'}, 'GSM2157636': {'function': 'SIX3', 'line': 'Endo-beta-H1C', 'type': 'pancreatic beta-cell line', 'treatment': 'T-Antigen siRNA 460'}, 'GSM1956194': {'a': '68160', 'cd38': '5591', 'cd49f': '160', 'w': '68289', 'h': '65413', 'lin': '298', 'cd34': '3776', 'cd90': '-37', 'cd7': '305', 'cd10': '26453', 'time': '7214', 'cd135': '10805', 'cd45ra': '7061'}, 'GSM1956195': {'a': '55133', 'cd38': '3950', 'cd49f': '1130', 'w': '66171', 'h': '54604', 'lin': '513', 'cd34': '3328', 'cd90': '-271', 'cd7': '153', 'cd10': '628', 'time': '6971', 'cd135': '698', 'cd45ra': '149'}, 'GSM1956196': {'a': '60084', 'cd38': '1543', 'cd49f': '211', 'w': '64930', 'h': '60645', 'lin': '505', 'cd34': '8864', 'cd90': '8004', 'cd7': '-71', 'cd10': '1041', 'time': '6763', 'cd135': '3856', 'cd45ra': '202'}, 'GSM2816098': {'line': 'H9'}, 'GSM1956190': {'a': '57450', 'cd38': '1336', 'cd49f': '1693', 'w': '65370', 'h': '57595', 'lin': '118', 'cd34': '8273', 'cd90': '-189', 'cd7': '383', 'cd10': '810', 'time': '4372', 'cd135': '9515', 'cd45ra': '7248'}, 'GSM1956191': {'a': '48838', 'cd38': '1266', 'cd49f': '137', 'w': '67201', 'h': '47628', 'lin': '499', 'cd34': '6171', 'cd90': '274', 'cd7': '20', 'cd10': '480', 'time': '4570', 'cd135': '1857', 'cd45ra': '197'}, 'GSM1956192': {'a': '66198', 'cd38': '1351', 'cd49f': '734', 'w': '66148', 'h': '65585', 'lin': '60', 'cd34': '7182', 'cd90': '488', 'cd7': '335', 'cd10': '697', 'time': '4758', 'cd135': '8284', 'cd45ra': '219'}, 'GSM1956193': {'a': '47025', 'cd38': '1643', 'cd49f': '933', 'w': '68199', 'h': '45189', 'lin': '5', 'cd34': '4543', 'cd90': '621', 'cd7': '118', 'cd10': '509', 'time': '7431', 'cd135': '1931', 'cd45ra': '480'}, 'GSM1956198': {'a': '23397', 'cd38': '5507', 'cd49f': '243', 'w': '63904', 'h': '23994', 'lin': '-1319', 'cd34': '6798', 'cd90': '30608', 'cd7': '-3089', 'cd10': '57092', 'time': '6275', 'cd135': '2018', 'cd45ra': '2771'}, 'GSM1956199': {'a': '45112', 'cd38': '1226', 'cd49f': '715', 'w': '65544', 'h': '45107', 'lin': '-214', 'cd34': '11054', 'cd90': '445', 'cd7': '359', 'cd10': '883', 'time': '6061', 'cd135': '6328', 'cd45ra': '3134'}, 'GSM2471104': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM2471105': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2471106': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM2471107': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM2471100': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM2471101': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2471102': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM2471103': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Unstimulated Controls'}, 'GSM2471108': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'Bryostatin'}, 'GSM2471109': {'status': 'HIV, Successfully treated', 'donorid': 'ST125', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2802830': {'line': 'MV4-11', 'tissue': 'Peripheral Blood', 'age': '10 years', 'Sex': 'male'}, 'GSM2802831': {'line': 'MV4-11', 'tissue': 'Peripheral Blood', 'age': '10 years', 'Sex': 'male'}, 'GSM2366286': {'line': 'DOHH2', 'type': 'B cell lymphoma', 'treatment': 'control 12hr'}, 'GSM2366287': {'line': 'DOHH2', 'type': 'B cell lymphoma', 'treatment': 'CUDC-907 2nM 12hr'}, 'GSM2366284': {'line': 'DOHH2', 'type': 'B cell lymphoma', 'treatment': 'CUDC-907 2nM 6hr'}, 'GSM2366285': {'line': 'DOHH2', 'type': 'B cell lymphoma', 'treatment': 'CUDC-907 20nM 6hr'}, 'GSM2366282': {'line': 'WSUDLCL2', 'type': 'B cell lymphoma', 'treatment': 'CUDC-907 50nM 12hr'}, 'GSM2366283': {'line': 'DOHH2', 'type': 'B cell lymphoma', 'treatment': 'control 6hr'}, 'GSM2366280': {'line': 'WSUDLCL2', 'type': 'B cell lymphoma', 'treatment': 'control 12hr'}, 'GSM2366281': {'line': 'WSUDLCL2', 'type': 'B cell lymphoma', 'treatment': 'CUDC-907 5nM 12hr'}, 'GSM2474886': {'line': 'EBC-CR2', 'passages': '81-83', 'type': 'Human lung squamous cancer cell line', 'phenotype': 'capmatinib-resistant'}, 'GSM2474887': {'line': 'EBC-CR3', 'passages': '81-83', 'type': 'Human lung squamous cancer cell line', 'phenotype': 'capmatinib-resistant'}, 'GSM2366288': {'line': 'DOHH2', 'type': 'B cell lymphoma', 'treatment': 'CUDC-907 20nM 12hr'}, 'GSM2474885': {'line': 'EBC-CR1', 'passages': '64-66', 'type': 'Human lung squamous cancer cell line', 'phenotype': 'capmatinib-resistant'}, 'GSM1113409': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 9 post-vaccine'}, 'GSM1113408': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 8 post-vaccine'}, 'GSM1113405': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 5 post-vaccine'}, 'GSM1113404': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 4 post-vaccine'}, 'GSM1113407': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 7 post-vaccine'}, 'GSM2256209': {'relation': 'mother', 'hypotrophy': 'control', 'Sex': 'F'}, 'GSM1113401': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 1 post-vaccine'}, 'GSM1113400': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 0 (pre-vaccine)'}, 'GSM1113403': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 3 post-vaccine'}, 'GSM1113402': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 2 post-vaccine'}, 'GSM2157781': {'line': 'Mcf10A', 'expression': 'targeted deletion of p53 at exon 2, with H-RasV12 stable expression by retrovirus'}, 'GSM2157780': {'line': 'Mcf10A', 'expression': 'targeted deletion of p53 at exon 2, with pBabepuro Vector'}, 'GSM2157783': {'line': 'Mcf10A', 'expression': 'targeted deletion of p53 at exon 2, with H-RasV12 stable expression by retrovirus'}, 'GSM2157782': {'line': 'Mcf10A', 'expression': 'targeted deletion of p53 at exon 2, with H-RasV12 stable expression by retrovirus'}, 'GSM2157785': {'line': 'Mcf10A', 'expression': 'Has intact WT-p53 with pBabepuro Vector'}, 'GSM2157784': {'line': 'Mcf10A', 'expression': 'Has intact WT-p53 with pBabepuro Vector'}, 'GSM2157787': {'line': 'Mcf10A', 'expression': 'Has intact WT-p53 with H-RasV12 stable expression by retrovirus'}, 'GSM1229367': {'state': 'healthy', 'tissue': 'adipose', 'subject': 'individual A', 'treatment': 'none', 'point': 'baseline'}, 'GSM1229368': {'state': 'healthy', 'tissue': 'adipose', 'subject': 'individual A', 'treatment': 'LPS', 'point': '4 hr post-LPS'}, 'GSM1229369': {'state': 'healthy', 'tissue': 'blood', 'subject': 'individual A', 'treatment': 'none', 'point': 'baseline'}, 'GSM1409348': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM1409349': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM1409346': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM1409347': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM1409344': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM1409345': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM1409342': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM1409343': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Resistance'}, 'GSM1409340': {'tissue': 'skin', 'inhibitors': 'Normal'}, 'GSM1409341': {'tissue': 'skin', 'inhibitors': 'Normal'}, 'GSM1350200': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'METTL14 Knockdown'}, 'GSM2460289': {'type': 'human embyronic kidney cells'}, 'GSM2460288': {'type': 'human embyronic kidney cells'}, 'GSM1350201': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'METTL14 Knockdown'}, 'GSM1489625': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '9U4'}, 'GSM1489624': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '9U3'}, 'GSM2460287': {'type': 'human embyronic kidney cells'}, 'GSM2460286': {'type': 'human embyronic kidney cells'}, 'GSM1489621': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '7U2'}, 'GSM1489620': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '5U4'}, 'GSM2460283': {'type': 'ES-derived endothelial cells'}, 'GSM2460282': {'type': 'ES-derived endothelial cells'}, 'GSM1826781': {'line': 'HeLa'}, 'GSM900475': {'state': 'healthy', 'tissue': 'heart, left ventricle'}, 'GSM900476': {'state': 'healthy', 'tissue': 'heart, right ventricle'}, 'GSM900477': {'state': 'healthy', 'tissue': 'heart, left ventricle'}, 'GSM1826785': {'line': 'HeLa'}, 'GSM1826784': {'line': 'HeLa'}, 'GSM900478': {'state': 'healthy', 'tissue': 'heart, right ventricle'}, 'GSM900479': {'state': 'healthy', 'tissue': 'heart, left ventricle'}, 'GSM1480741': {'line': 'TSU-1621-MT', 'vendor': 'Santa Cruz', 'target': 'RXR'}, 'GSM1480740': {'line': 'TSU-1621-MT', 'vendor': 'Santa Cruz', 'target': 'FLI1'}, 'GSM2082539': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2082538': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM1480745': {'line': 'TSU-1621-MT', 'vendor': 'Santa Cruz', 'target': 'LMO2'}, 'GSM1480744': {'line': 'TSU-1621-MT', 'vendor': 'Abcam', 'target': 'RUNX1'}, 'GSM1480747': {'line': 'TSU-1621-MT', 'vendor': 'Santa Cruz', 'target': 'LYL1'}, 'GSM1480746': {'line': 'TSU-1621-MT', 'vendor': 'Santa Cruz', 'target': 'GATA2'}, 'GSM1480749': {'line': 'TSU-1621-MT'}, 'GSM1480748': {'line': 'TSU-1621-MT', 'vendor': 'Santa Cruz', 'target': 'TAL1'}, 'GSM2082531': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2-/-'}, 'GSM2082530': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2+/-'}, 'GSM2082537': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2082536': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2082535': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2082534': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM1608295': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608294': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608296': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608291': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608290': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608293': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608292': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM2211788': {'dht': '-', 'lentivirus': 'shERF'}, 'GSM2211789': {'dht': '-', 'lentivirus': 'shERF'}, 'GSM2211786': {'dht': '-', 'lentivirus': 'shNT'}, 'GSM2211787': {'dht': '-', 'lentivirus': 'shERF'}, 'GSM2211784': {'dht': '-', 'lentivirus': 'shNT'}, 'GSM2211785': {'dht': '-', 'lentivirus': 'shNT'}, 'GSM2460421': {'line': 'GM12878', 'variation': 'IRF4 sgRNA'}, 'GSM2460420': {'line': 'GM12878', 'variation': 'IRF4 sgRNA'}, 'GSM2460423': {'line': 'GM12878', 'variation': 'BATF sgRNA'}, 'GSM2460422': {'line': 'GM12878', 'variation': 'IRF4 sgRNA'}, 'GSM2460425': {'line': 'GM12878', 'variation': 'BATF sgRNA'}, 'GSM2460424': {'line': 'GM12878', 'variation': 'BATF sgRNA'}, 'GSM2856819': {'type': 'BEAS-2B immortalized human bronchial epithelium', 'treatment': 'Sham (culture media)'}, 'GSM2856818': {'type': 'BEAS-2B immortalized human bronchial epithelium', 'treatment': 'Poly I:C'}, 'GSM1067866': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'vendor': 'Santa Cruz Biotechnology', 'line': 'HEK293', 'antibody': 'Dyskerin; rabbit polyclonal IgG (C-15); sc-26982'}, 'GSM2856811': {'type': 'Normal human bronchial epithelium', 'treatment': 'Sham (culture media)'}, 'GSM2856810': {'type': 'Normal human bronchial epithelium', 'treatment': 'Poly I:C'}, 'GSM2856813': {'type': 'Asthma human bronchial epithelium', 'treatment': 'Calcitriol + Poly I:C'}, 'GSM2856812': {'type': 'Asthma human bronchial epithelium', 'treatment': 'Calcitriol'}, 'GSM2856815': {'type': 'Asthma human bronchial epithelium', 'treatment': 'Sham (culture media)'}, 'GSM2856814': {'type': 'Asthma human bronchial epithelium', 'treatment': 'Poly I:C'}, 'GSM2856817': {'type': 'BEAS-2B immortalized human bronchial epithelium', 'treatment': 'Calcitriol + Poly I:C'}, 'GSM2856816': {'type': 'BEAS-2B immortalized human bronchial epithelium', 'treatment': 'Calcitriol'}, 'GSM3362571': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362570': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362573': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362572': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362575': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362574': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362577': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362576': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362579': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362578': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM1241238': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241239': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241234': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241235': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241236': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241237': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241230': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241231': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241232': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241233': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM742941': {'length': '50', 'type': 'single-end'}, 'GSM2475308': {'age': '95', 'tissue': 'Macular RPE/choroid/sclera', 'Sex': 'Female'}, 'GSM2475309': {'age': '72', 'tissue': 'Peripheral Retina', 'Sex': 'Male'}, 'GSM742946': {'length': '50', 'type': 'single-end'}, 'GSM2475302': {'age': '88', 'tissue': 'Peripheral RPE/choroid/sclera', 'Sex': 'Female'}, 'GSM2475303': {'age': '88', 'tissue': 'Macular Retina', 'Sex': 'Female'}, 'GSM2475300': {'age': '62', 'tissue': 'Macular RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2475301': {'age': '88', 'tissue': 'Peripheral Retina', 'Sex': 'Female'}, 'GSM2475306': {'age': '95', 'tissue': 'Peripheral RPE/choroid/sclera', 'Sex': 'Female'}, 'GSM2475307': {'age': '95', 'tissue': 'Macular Retina', 'Sex': 'Female'}, 'GSM2475304': {'age': '88', 'tissue': 'Macular RPE/choroid/sclera', 'Sex': 'Female'}, 'GSM2475305': {'age': '95', 'tissue': 'Peripheral Retina', 'Sex': 'Female'}, 'GSM2055535': {'individual': 'Patient 85', 'tissue': 'Adenoma'}, 'GSM2055534': {'individual': 'Patient 85', 'tissue': 'Normal rectal mucosa'}, 'GSM2055533': {'individual': 'Patient 82', 'tissue': 'Adenoma'}, 'GSM2055532': {'individual': 'Patient 82', 'tissue': 'Normal rectal mucosa'}, 'GSM2055531': {'individual': 'Patient 81', 'tissue': 'Adenoma'}, 'GSM2055530': {'individual': 'Patient 81', 'tissue': 'Normal rectal mucosa'}, 'GSM2551198': {'antibody': 'H3K27me3 (Cat # 07-449; Millipore)', 'type': 'hemogenic mesoderm (H-ECs)'}, 'GSM2551199': {'antibody': 'H3K4me3 (Cat # 9751, Cell Signaling)', 'type': 'hemogenic mesoderm (H-ECs)'}, 'GSM2551192': {'antibody': 'H3K27me3 (Cat # 07-449; Millipore)', 'type': 'cardiogenic mesoderm (C-ECs)'}, 'GSM2551193': {'antibody': 'H3K4me3 (Cat # 9751, Cell Signaling)', 'type': 'cardiogenic mesoderm (C-ECs)'}, 'GSM2551190': {'type': 'cardiac progenitor cells (CPCs)'}, 'GSM2551191': {'type': 'cardiac progenitor cells (CPCs)'}, 'GSM2551196': {'antibody': 'H3K4me3 (Cat # 9751, Cell Signaling)', 'type': 'cardiogenic mesoderm (C-ECs)'}, 'GSM2551197': {'antibody': 'none', 'type': 'cardiogenic mesoderm (C-ECs)'}, 'GSM2551194': {'antibody': 'none', 'type': 'cardiogenic mesoderm (C-ECs)'}, 'GSM2551195': {'antibody': 'H3K27me3 (Cat # 07-449; Millipore)', 'type': 'cardiogenic mesoderm (C-ECs)'}, 'GSM2108508': {'stages': 'myotube nucleus'}, 'GSM3100469': {'treatment': 'Combination imatinib and JQ1 24 hours'}, 'GSM2451335': {'compartment': 'Stroma', 'id': 'CUMC_045', 'library': 'NuGEN'}, 'GSM2451334': {'compartment': 'Epithelium', 'id': 'CUMC_045', 'library': 'NuGEN'}, 'GSM2451337': {'compartment': 'Stroma', 'id': 'CUMC_046', 'library': 'NuGEN'}, 'GSM2750947': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2451331': {'compartment': 'Stroma', 'id': 'CUMC_043', 'library': 'NuGEN'}, 'GSM2451330': {'compartment': 'Epithelium', 'id': 'CUMC_043', 'library': 'NuGEN'}, 'GSM2750942': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750943': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM1602247': {'line': 'C1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'AICAR'}, 'GSM2750948': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750949': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM1957458': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957459': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2047709': {'well': 'H12', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047708': {'well': 'H11', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1957452': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957453': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957450': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957451': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957456': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2047702': {'well': 'H05', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1957454': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957455': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2711741': {'type': 'Pancreatic cancer-associated fibroblasts, 5'}, 'GSM2711740': {'type': 'Pancreatic cancer-associated fibroblasts, 3'}, 'GSM2711742': {'type': 'Pancreatic Stellate Cells'}, 'GSM2552889': {'individual': 'volunteer 4'}, 'GSM2552888': {'individual': 'volunteer 4'}, 'GSM2552885': {'individual': 'volunteer 3'}, 'GSM2552884': {'individual': 'volunteer 3'}, 'GSM2552887': {'individual': 'volunteer 4'}, 'GSM2552886': {'individual': 'volunteer 3'}, 'GSM2552881': {'individual': 'volunteer 2'}, 'GSM2552880': {'individual': 'volunteer 2'}, 'GSM2552883': {'individual': 'volunteer 3'}, 'GSM2552882': {'individual': 'volunteer 2'}, 'GSM2840599': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840598': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840593': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840592': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840591': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840590': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840597': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840596': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840595': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840594': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2170569': {'stage': 'Endothelial cells'}, 'GSM1693117': {'line': 'SK-N-SH', 'type': 'human neuroblastoma cells', 'clone': 'control', 'treatment': 'Untreated'}, 'GSM1341703': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341702': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341701': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341700': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341707': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341706': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341705': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341704': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341709': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341708': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM2243938': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243939': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F10', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1948999': {'index': 'ATTCCT', 'line': 'H1', 'type': 'H1 hESC Wild Type (WT)', 'state': 'H1 hESC differentiated towards endoderm for 4 days'}, 'GSM1948998': {'index': 'GGCTAC', 'line': 'H1', 'type': 'H1 hESC Wild Type (WT)', 'state': 'H1 hESC differentiated towards endoderm for 4 days'}, 'GSM1948997': {'index': 'CGTACG', 'line': 'H1', 'type': 'DIGIT KO hESC KO2', 'state': 'cultured in mTESR1'}, 'GSM1948996': {'index': 'TAGCTT', 'line': 'H1', 'type': 'DIGIT KO hESC KO2', 'state': 'cultured in mTESR1'}, 'GSM2243930': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G11', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1948994': {'index': 'ACTTGA', 'line': 'H1', 'type': 'DIGIT KO hESC KO1', 'state': 'cultured in mTESR1'}, 'GSM1948993': {'index': 'TTAGGC', 'line': 'H1', 'type': 'H1 hESC Wild Type (WT)', 'state': 'cultured in mTESR1'}, 'GSM1948992': {'index': 'ATCACG', 'line': 'H1', 'type': 'H1 hESC Wild Type (WT)', 'state': 'cultured in mTESR1'}, 'GSM2243934': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H1', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243935': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H8', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2312245': {'culture': '12', 'line': 'DCX-'}, 'GSM2732474': {'treatment': 'E7107 treated'}, 'GSM2312244': {'culture': '12', 'line': 'DCX-'}, 'GSM2632477': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632476': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632475': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632474': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632473': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632472': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632471': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632470': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632479': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2058153': {'line': 'V457', 'tissue': 'colorectal cancer cell line'}, 'GSM2492578': {'status': 'healthy donor', 'with': 'none (unstimulated control)', 'type': 'primary human monocytes', 'id': 'Donor 1'}, 'GSM2492579': {'status': 'healthy donor', 'with': 'none (unstimulated control)', 'type': 'primary human monocytes', 'id': 'Donor 2'}, 'GSM2492576': {'tissue': 'peripheral blood', 'type': 'Naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8+CD45RO-CCR7+', 'method': 'Adult peripheral blood mononuclear cells were isolated and cells of the indicated phenotype sorted by FACS'}, 'GSM2492577': {'tissue': 'peripheral blood', 'type': 'Naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8+CD45RO-CCR7+', 'method': 'Adult peripheral blood mononuclear cells were isolated and cells of the indicated phenotype sorted by FACS'}, 'GSM2492574': {'tissue': 'peripheral blood', 'type': 'Naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8+CD45RO-CCR7+', 'method': 'Adult peripheral blood mononuclear cells were isolated and cells of the indicated phenotype sorted by FACS'}, 'GSM2058151': {'line': 'V457', 'tissue': 'colorectal cancer cell line'}, 'GSM2492572': {'tissue': 'thymus', 'type': 'Naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8SP', 'method': 'Neonatal thymocytes were isolated and cells of the indicated phenotype sorted by FACS'}, 'GSM2492573': {'tissue': 'thymus', 'type': 'Naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8SP', 'method': 'Neonatal thymocytes were isolated and cells of the indicated phenotype sorted by FACS'}, 'GSM2492570': {'tissue': 'thymus', 'type': 'Naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8SP', 'method': 'Neonatal thymocytes were isolated and cells of the indicated phenotype sorted by FACS'}, 'GSM2492571': {'tissue': 'thymus', 'type': 'Naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8SP', 'method': 'Neonatal thymocytes were isolated and cells of the indicated phenotype sorted by FACS'}, 'GSM2312249': {'culture': '12', 'line': 'DCX-'}, 'GSM2312248': {'culture': '12', 'line': 'DCX-'}, 'GSM1508000': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM2665729': {'age': 'Day 100', 'well': 'D12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665728': {'age': 'Day 100', 'well': 'A3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665727': {'age': 'Day 100', 'well': 'C9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665726': {'age': 'Day 100', 'well': 'B3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665725': {'age': 'Day 100', 'well': 'H6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665724': {'age': 'Day 100', 'well': 'A9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665723': {'age': 'Day 100', 'well': 'A12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665722': {'age': 'Day 100', 'well': 'H10', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665721': {'age': 'Day 100', 'well': 'F4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665720': {'age': 'Day 100', 'well': 'F2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM1561615': {'type': 'psoriatic skin'}, 'GSM1561614': {'type': 'psoriatic skin'}, 'GSM1561617': {'type': 'normal skin'}, 'GSM1561616': {'type': 'psoriatic skin'}, 'GSM1561611': {'type': 'normal skin'}, 'GSM1561610': {'type': 'normal skin'}, 'GSM1561613': {'type': 'normal skin'}, 'GSM2580018': {'gender': 'female', 'type': 'hiPSC-astrocyte'}, 'GSM1561619': {'type': 'Uninvolved skin'}, 'GSM1561618': {'type': 'psoriatic skin'}, 'GSM2194252': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194253': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2616761': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616760': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616763': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616762': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616765': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2194250': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2616767': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616766': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616769': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616768': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2194251': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1233921': {'replicate': '1.2', 'line': '12890', 'antibody': 'H3K36me3'}, 'GSM1233920': {'replicate': '2', 'line': '12890', 'antibody': 'H3K27me3'}, 'GSM1233923': {'replicate': '2', 'line': '12890', 'antibody': 'H3K36me3'}, 'GSM1233922': {'replicate': '1', 'line': '12890', 'antibody': 'H3K36me3'}, 'GSM1233925': {'replicate': '2', 'line': '12890', 'antibody': 'H3K4me1'}, 'GSM1233924': {'replicate': '1', 'line': '12890', 'antibody': 'H3K4me1'}, 'GSM1233927': {'replicate': '2', 'line': '12890', 'antibody': 'H3K4me3'}, 'GSM1233926': {'replicate': '1', 'line': '12890', 'antibody': 'H3K4me3'}, 'GSM1233929': {'replicate': '1', 'line': '12890', 'antibody': 'RNA-seq'}, 'GSM1233928': {'replicate': '1', 'line': '12890', 'antibody': 'Input'}, 'GSM2105102': {'gender': 'Female', 'age': '14 Year old', 'batch': '1L', 'condition': 'Disomic'}, 'GSM1589108': {'tissue': 'dermis fibroblast', 'genotype': 'wild type'}, 'GSM2105105': {'gender': 'Female', 'age': '18 Year old', 'batch': '1L', 'condition': 'Disomic'}, 'GSM2105107': {'gender': 'Female', 'age': '18 Year old', 'batch': '1L', 'condition': 'Disomic'}, 'GSM1589102': {'tissue': 'dermis fibroblast', 'genotype': 'wild type'}, 'GSM1589100': {'tissue': 'dermis fibroblast', 'genotype': 'wild type'}, 'GSM1589106': {'tissue': 'dermis fibroblast', 'genotype': 'wild type'}, 'GSM1589104': {'tissue': 'dermis fibroblast', 'genotype': 'wild type'}, 'GSM2303319': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303318': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303315': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACJV399'}, 'GSM2303314': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303317': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACJV399'}, 'GSM2303316': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303311': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303310': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303313': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303312': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2302042': {'timepoint': 'Pre', 'id': '12', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302043': {'timepoint': 'Post', 'id': '12', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302040': {'timepoint': 'Pre', 'id': '11', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302041': {'timepoint': 'Post', 'id': '11', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302046': {'timepoint': 'Pre', 'id': '14', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302047': {'timepoint': 'Post', 'id': '14', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM2302044': {'timepoint': 'Pre', 'id': '13', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302045': {'timepoint': 'Post', 'id': '13', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM1527734': {'passages': '13 days', 'type': 'Th1'}, 'GSM1527735': {'passages': '13 days', 'type': 'Th1'}, 'GSM1527736': {'passages': '13 days', 'type': 'Th2'}, 'GSM1527737': {'passages': '13 days', 'type': 'Th2'}, 'GSM1527730': {'passages': '13 days', 'type': 'Th1'}, 'GSM1527731': {'passages': '13 days', 'type': 'Th1'}, 'GSM1527732': {'passages': '13 days', 'type': 'Th2'}, 'GSM1527733': {'passages': '13 days', 'type': 'Th2'}, 'GSM2339350': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'birth': 'C-section'}, 'GSM2339351': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'birth': 'C-section'}, 'GSM2232183': {'status': 'HCV', 'patient_identifier': 'B199', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'high ISG'}, 'GSM1371568': {'line': 'WIBR3', 'stage': 'organoid'}, 'GSM1371569': {'line': 'WIBR3 with AAVS1-lox-stop-loxRFP', 'stage': 'organoid'}, 'GSM1848808': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 12', 'point': 'pre exercise'}, 'GSM1848809': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 15', 'point': 'immediately after exercise'}, 'GSM2519376': {'with': 'HSV1 K220A mutated', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2519377': {'with': 'HSV1 K220A mutated', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'pulldown', 'passage': 'p5-15'}, 'GSM2519374': {'with': 'HSV1 K220A mutated', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2519375': {'with': 'HSV1 K220A mutated', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'pulldown', 'passage': 'p5-15'}, 'GSM2458875': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.58'}, 'GSM1848803': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 11', 'point': 'immediately after exercise'}, 'GSM1848800': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 9', 'point': 'immediately after exercise'}, 'GSM2458876': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.75'}, 'GSM1371564': {'line': 'WIBR3 with AAVS1-lox-stop-loxRFP', 'stage': 'teratoma'}, 'GSM1371565': {'line': 'WIBR3 with AAVS1-lox-stop-loxRFP', 'stage': 'organoid'}, 'GSM2458873': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.25'}, 'GSM2458872': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '15.08'}, 'GSM1322934': {'subtype': 'GIST WT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322933': {'subtype': 'GIST WT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2232182': {'status': 'HCV', 'patient_identifier': 'A720', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM1322932': {'subtype': 'GIST WT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322931': {'subtype': 'GIST WT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2124988': {'tissue': 'DLBCL'}, 'GSM1322930': {'subtype': 'GIST WT', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2526916': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1896153': {'individual': 'AF69', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896152': {'individual': 'AF67', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896151': {'individual': 'AF67', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2915379': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM1896157': {'individual': 'AF71', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896156': {'individual': 'AF71', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896155': {'individual': 'AF69', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896154': {'individual': 'AF69', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2232181': {'status': 'HCV', 'patient_identifier': 'A764', 'tissue': 'liver', 'treatment': 'None', 'endogenous_ifn': 'low ISG'}, 'GSM1896159': {'individual': 'AF77', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896158': {'individual': 'AF71', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2388510': {'tissue': 'Hepatoblastoma liver'}, 'GSM800449': {'input': '50 ng', 'line': 'ECC-1', 'protocol': 'Standard RNA-seq'}, 'GSM800447': {'input': '50 ng', 'line': 'ECC-1', 'protocol': 'Standard RNA-seq'}, 'GSM800445': {'input': '10 ng', 'protocol': 'Directional RNA ligation'}, 'GSM800443': {'input': '10 ng', 'protocol': 'Directional Tn-RNA-seq'}, 'GSM2480953': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'polysomal (fractions 6-11)'}, 'GSM2480952': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'subpolysomal (fractions 1-5)'}, 'GSM2480951': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'subpolysomal (fractions 1-5)'}, 'GSM2480950': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'subpolysomal (fractions 1-5)'}, 'GSM2480957': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'polysomal (fractions 6-11)'}, 'GSM2480956': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'polysomal (fractions 6-11)'}, 'GSM2480955': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'polysomal (fractions 6-11)'}, 'GSM2480954': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'polysomal (fractions 6-11)'}, 'GSM2480959': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'polysomal (fractions 6-11)'}, 'GSM2480958': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'polysomal (fractions 6-11)'}, 'GSM2747593': {'line': 'fhRPE-13B', 'passages': '15', 'type': 'retina pigment epithelium', 'Stage': '3 days'}, 'GSM2747592': {'line': 'fhRPE-13B', 'passages': '15', 'type': 'retina pigment epithelium', 'Stage': '2 days'}, 'GSM2747597': {'line': 'fhRPE-13A', 'passages': '15', 'type': 'retina pigment epithelium', 'Stage': '3 days'}, 'GSM1916674': {'line': 'T-47D'}, 'GSM2747595': {'line': 'fhRPE-13B', 'passages': '15', 'type': 'retina pigment epithelium', 'Stage': '5 days'}, 'GSM2747594': {'line': 'fhRPE-13B', 'passages': '15', 'type': 'retina pigment epithelium', 'Stage': '4 days'}, 'GSM2747599': {'line': 'fhRPE-13A', 'passages': '15', 'type': 'retina pigment epithelium', 'Stage': '5 days'}, 'GSM2747598': {'line': 'fhRPE-13A', 'passages': '15', 'type': 'retina pigment epithelium', 'Stage': '4 days'}, 'GSM2883008': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject11', 'drug': 'Metformin'}, 'GSM2100888': {'status': 'no', 'gender': 'female', 'age': '57', 'race': 'black'}, 'GSM2100889': {'status': 'no', 'gender': 'female', 'age': '44', 'race': 'white'}, 'GSM2100886': {'status': 'yes', 'gender': 'male', 'age': '63', 'race': 'white'}, 'GSM2100887': {'status': 'no', 'gender': 'male', 'age': '72', 'race': 'white'}, 'GSM2100884': {'status': 'yes', 'gender': 'male', 'age': '78', 'race': 'black'}, 'GSM2100885': {'status': 'yes', 'gender': 'female', 'age': '79', 'race': 'white'}, 'GSM2100882': {'status': 'yes', 'gender': 'male', 'age': '49', 'race': 'white'}, 'GSM2100883': {'status': 'no', 'gender': 'female', 'age': '79', 'race': 'NA'}, 'GSM2100880': {'status': 'no', 'gender': 'male', 'age': '68', 'race': 'white'}, 'GSM2100881': {'status': 'no', 'gender': 'male', 'age': '68', 'race': 'white'}, 'GSM1638969': {'line': 'SW480', 'vector': 'pRTR-p53-VSV', 'treatment': '48 hours doxycyclin'}, 'GSM1892702': {'tissue': 'FFPE'}, 'GSM1892703': {'tissue': 'FFPE'}, 'GSM1892700': {'tissue': 'Snap-frozen tissue'}, 'GSM1892701': {'tissue': 'FFPE'}, 'GSM1892704': {'tissue': 'Snap-frozen tissue'}, 'GSM1892705': {'tissue': 'FFPE'}, 'GSM2248245': {'count': '1', 'ercc_mix': 'mix2', 'length': '24', 'type': 'acinar', 'ercc_dilution': '1000000'}, 'GSM2248244': {'count': '1', 'ercc_mix': 'mix2', 'length': '24', 'type': 'beta', 'ercc_dilution': '1000000'}, 'GSM2248247': {'count': '1', 'ercc_mix': 'mix2', 'length': '72', 'type': 'beta', 'ercc_dilution': '1000000'}, 'GSM2248246': {'count': '1', 'ercc_mix': 'mix2', 'length': '72', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2248241': {'count': '1', 'ercc_mix': 'mix2', 'length': '24', 'type': 'delta', 'ercc_dilution': '1000000'}, 'GSM2248243': {'count': '1', 'ercc_mix': 'mix2', 'length': '24', 'type': 'beta', 'ercc_dilution': '1000000'}, 'GSM2248242': {'count': '1', 'ercc_mix': 'mix2', 'length': '24', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2248249': {'count': '1', 'ercc_mix': 'mix2', 'length': '72', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2248248': {'count': '1', 'ercc_mix': 'mix2', 'length': '72', 'type': 'beta', 'ercc_dilution': '1000000'}, 'GSM2153437': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153436': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153435': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153434': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153433': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153432': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153431': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2175043': {'line': 'K562'}, 'GSM2153439': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153438': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2067379': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2175046': {'line': 'K562'}, 'GSM2175047': {'line': 'K562'}, 'GSM1856027': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Control cells (vector control)'}, 'GSM1856026': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Control cells (vector control)'}, 'GSM2372278': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM1856024': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1856023': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1856022': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (GFP expressed)'}, 'GSM1856021': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (GFP expressed)'}, 'GSM1856020': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (GFP expressed)'}, 'GSM2372272': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372273': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372270': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372271': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372276': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372277': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372274': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372275': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2100228': {'rin': '10', 'Sex': 'Female', 'sspg': '99', 'age': '55', 'bmi': '26.8', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '22615', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '836', 'method': 'Life-Tech GITC'}, 'GSM2100229': {'rin': '9.3', 'Sex': 'Female', 'sspg': '200', 'age': '60', 'bmi': '27.3', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Hispanic', 'lot': '1264008A', 'date': '101713', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '839', 'method': 'Qiagen:trizol'}, 'GSM2100222': {'rin': '10', 'Sex': 'Male', 'sspg': '181', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '31.8', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '51', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '827', 'method': 'Life-Tech GITC'}, 'GSM2100223': {'rin': '9.5', 'Sex': 'Female', 'sspg': '70', 'age': '64', 'bmi': '23.6', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '101713', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '835', 'method': 'Qiagen:trizol'}, 'GSM2100220': {'rin': '10', 'Sex': 'Male', 'sspg': '181', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '31.8', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '51', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '827', 'method': 'Life-Tech GITC'}, 'GSM2100221': {'rin': '10', 'Sex': 'Male', 'sspg': '181', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '31.8', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '51', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '827', 'method': 'Life-Tech GITC'}, 'GSM2100226': {'rin': '10', 'Sex': 'Female', 'sspg': '99', 'age': '55', 'bmi': '26.8', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '22615', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '836', 'method': 'Life-Tech GITC'}, 'GSM2100227': {'rin': '10', 'Sex': 'Female', 'sspg': '99', 'age': '55', 'bmi': '26.8', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '22615', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '836', 'method': 'Life-Tech GITC'}, 'GSM2100224': {'rin': '9.4', 'Sex': 'Female', 'sspg': '70', 'age': '64', 'bmi': '23.6', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '101713', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '835', 'method': 'Qiagen:trizol'}, 'GSM2100225': {'rin': '9.4', 'Sex': 'Female', 'sspg': '70', 'age': '64', 'bmi': '23.6', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '101713', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '835', 'method': 'Qiagen:trizol'}, 'GSM1602364': {'line': 'HeLa'}, 'GSM1177775': {'type': 'U2OS Cells', 'variation': 'shZMYND11-#2'}, 'GSM1177774': {'type': 'U2OS Cells', 'variation': 'shZMYND11-#1'}, 'GSM1581056': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1572239': {'tissue': 'coronary artery', 'disease': 'treated Kawasaki Disease'}, 'GSM1572238': {'tissue': 'coronary artery', 'disease': 'treated Kawasaki Disease'}, 'GSM2887512': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887513': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2085990': {'line': 'SR-0788', 'sirna': 'Control'}, 'GSM2887517': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887514': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1572237': {'tissue': 'coronary artery', 'disease': 'treated Kawasaki Disease'}, 'GSM2887515': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2471088': {'status': 'HIV', 'donorid': 'BC047', 'subset': 'CM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM2316949': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2887518': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1916413': {'type': 'LCL-reprogrammed iPSC'}, 'GSM2324154': {'group': 'BCG', 'type': 'PBMC', 'day': '56', 'subjectid': '2507'}, 'GSM2324155': {'group': 'BCG', 'type': 'PBMC', 'day': '84', 'subjectid': '2507'}, 'GSM2324156': {'group': 'BCG', 'type': 'PBMC', 'day': '0', 'subjectid': '3612'}, 'GSM2324157': {'group': 'BCG', 'type': 'PBMC', 'day': '14', 'subjectid': '3612'}, 'GSM2324150': {'group': 'BCG', 'type': 'PBMC', 'day': '84', 'subjectid': '2005'}, 'GSM2324151': {'group': 'BCG', 'type': 'PBMC', 'day': '0', 'subjectid': '2507'}, 'GSM2324152': {'group': 'BCG', 'type': 'PBMC', 'day': '14', 'subjectid': '2507'}, 'GSM2324153': {'group': 'BCG', 'type': 'PBMC', 'day': '28', 'subjectid': '2507'}, 'GSM2324158': {'group': 'BCG', 'type': 'PBMC', 'day': '28', 'subjectid': '3612'}, 'GSM2324159': {'group': 'BCG', 'type': 'PBMC', 'day': '56', 'subjectid': '3612'}, 'GSM2099982': {'rin': '9.5', 'Sex': 'Female', 'sspg': '170', 'age': '52', 'bmi': '34.6', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '81', 'method': 'Life-Tech GITC'}, 'GSM2099983': {'rin': '10', 'Sex': 'Female', 'sspg': '170', 'age': '52', 'bmi': '34.6', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '81', 'method': 'Life-Tech GITC'}, 'GSM2099980': {'rin': '10', 'Sex': 'Female', 'sspg': '245', 'age': '48', 'bmi': '34', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '72', 'method': 'Life-Tech GITC'}, 'GSM2099981': {'rin': '10', 'Sex': 'Female', 'sspg': '245', 'age': '48', 'bmi': '34', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '72', 'method': 'Life-Tech GITC'}, 'GSM2099986': {'rin': '9.8', 'Sex': 'Male', 'sspg': '136', 'age': '61', 'bmi': '31.6', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '102', 'method': 'Life-Tech GITC'}, 'GSM2099987': {'rin': '9.5', 'Sex': 'Female', 'sspg': '66', 'age': '59', 'bmi': '24', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '107', 'method': 'Life-Tech GITC'}, 'GSM2099984': {'rin': '10', 'Sex': 'Female', 'sspg': '170', 'age': '52', 'bmi': '34.6', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '81', 'method': 'Life-Tech GITC'}, 'GSM2099985': {'rin': '10', 'Sex': 'Male', 'sspg': '136', 'age': '61', 'bmi': '31.6', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '102', 'method': 'Life-Tech GITC'}, 'GSM2099988': {'rin': '9.7', 'Sex': 'Female', 'sspg': '66', 'age': '59', 'bmi': '24', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '107', 'method': 'Life-Tech GITC'}, 'GSM2099989': {'rin': '9.5', 'Sex': 'Female', 'sspg': '66', 'age': '59', 'bmi': '24', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '107', 'method': 'Life-Tech GITC'}, 'GSM1376269': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM3594244': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1345816': {'type': 'osteoblastic cell'}, 'GSM1345815': {'type': 'osteoblastic cell'}, 'GSM1345814': {'type': 'osteoblastic cell'}, 'GSM2316944': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1345813': {'type': 'osteoblastic cell'}, 'GSM2316945': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM3594241': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM2560259': {'addition': 'RNA oligos added: 75% CCA-ending, 25% CC-ending', 'with': 'treatement with AlkB-derived enzyme mixture', 'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'subtype': 'tRNA'}, 'GSM2560258': {'addition': 'RNA oligos added: 25% CCA-ending,75% CC-ending', 'with': 'none (no treatment control)', 'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'subtype': 'tRNA'}, 'GSM1345811': {'type': 'osteoblastic cell'}, 'GSM1345810': {'type': 'osteoblastic cell'}, 'GSM2560257': {'addition': 'RNA oligos added: 50% CCA-ending, 50% CC-ending', 'with': 'none (no treatment control)', 'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'subtype': 'tRNA'}, 'GSM2560256': {'addition': 'RNA oligos added: 75% CCA-ending, 25% CC-ending', 'with': 'none (no treatment control)', 'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'subtype': 'tRNA'}, 'GSM2550488': {'line': 'THP1', 'tissue': 'human peripheral blood', 'treatment': 'TPA'}, 'GSM1241335': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying BS69-2 shRNA'}, 'GSM1241334': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying BS69-2 shRNA'}, 'GSM1241336': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying BS69-2 shRNA'}, 'GSM1241331': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying BS69-1 shRNA'}, 'GSM1241330': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying control shRNA'}, 'GSM1241333': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying BS69-1 shRNA'}, 'GSM1241332': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying BS69-1 shRNA'}, 'GSM1624288': {'gender': 'M', 'age': '49', 'tissue': 'skin', 'disease': 'LP', 'subject': '5'}, 'GSM1624289': {'gender': 'M', 'age': '49', 'tissue': 'skin', 'disease': 'NLP', 'subject': '5'}, 'GSM2112492': {'concentration': '21% oxygen', 'experiment': '1', 'replicate': 'B'}, 'GSM2112493': {'concentration': '0.5% oxygen', 'experiment': '1', 'replicate': 'B'}, 'GSM2112490': {'concentration': '21% oxygen', 'experiment': '1', 'replicate': 'A'}, 'GSM2112491': {'concentration': '0.5% oxygen', 'experiment': '1', 'replicate': 'A'}, 'GSM1299390': {'labexpid': '13281', 'line': 'GM12878'}, 'GSM2112494': {'concentration': '21% oxygen', 'experiment': '2', 'replicate': 'A'}, 'GSM2112495': {'concentration': '0.5% oxygen', 'experiment': '2', 'replicate': 'A'}, 'GSM1369189': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Neural Differentation'}, 'GSM1369188': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Neural Differentation'}, 'GSM3711588': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '14'}, 'GSM3711589': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '8'}, 'GSM3711586': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '6'}, 'GSM1369182': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Pluripotency'}, 'GSM3711584': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '8'}, 'GSM3711585': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '6'}, 'GSM3711582': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '8'}, 'GSM3711583': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '6'}, 'GSM1369185': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Pluripotency'}, 'GSM3711581': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '14'}, 'GSM1299394': {'labexpid': '13295', 'line': 'GM12878'}, 'GSM2258959': {'status': 'mock', 'line': '293T'}, 'GSM1299395': {'labexpid': '13296', 'line': 'GM12878'}, 'GSM2550486': {'line': 'THP1', 'tissue': 'human peripheral blood', 'treatment': 'mock'}, 'GSM2127614': {'transfection': 'siNC', 'type': 'LNCaP'}, 'GSM2127615': {'transfection': 'siNC', 'type': 'LNCaP'}, 'GSM2127616': {'transfection': 'siNC', 'type': 'LNCaP'}, 'GSM2127611': {'transfection': 'siGRHL2', 'type': 'LNCaP'}, 'GSM2127612': {'transfection': 'siGRHL2', 'type': 'LNCaP'}, 'GSM2127613': {'transfection': 'siGRHL2', 'type': 'LNCaP'}, 'GSM1299398': {'labexpid': '13299', 'line': 'GM12878'}, 'GSM2098633': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098632': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2543885': {'library_id': 'lib8025', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.107', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543884': {'library_id': 'lib8024', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.107', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2098637': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098636': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2543881': {'library_id': 'lib8017', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2098634': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098639': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2098638': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2543889': {'library_id': 'lib8031', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543888': {'library_id': 'lib8030', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1624286': {'gender': 'M', 'age': '29', 'tissue': 'skin', 'disease': 'LP', 'subject': '4'}, 'GSM1624287': {'gender': 'M', 'age': '29', 'tissue': 'skin', 'disease': 'NLP', 'subject': '4'}, 'GSM2436725': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM2689354': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2436727': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM2436726': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM1864262': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T3'}, 'GSM2424987': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1626498': {'tissue': 'placental villus parenchyma'}, 'GSM2436729': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2436728': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM1901949': {'line': 'U2OS', 'antibody': 'anti-Pol II antibody is from (QED Bioscience)'}, 'GSM2424985': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1901943': {'line': 'U2OS', 'antibody': 'anti-EP400 antibody is from Abcam, ab70301'}, 'GSM2689350': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1901947': {'line': 'U2OS', 'antibody': 'none'}, 'GSM1901946': {'line': 'U2OS', 'antibody': 'none'}, 'GSM1901945': {'line': 'U2OS', 'antibody': 'none'}, 'GSM2689351': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424980': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424981': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2532908': {'condition': 'Term Delivery'}, 'GSM2532909': {'condition': 'Term Delivery'}, 'GSM2532902': {'condition': 'Term Delivery'}, 'GSM2532903': {'condition': 'Term Delivery'}, 'GSM2532900': {'condition': 'Term Delivery'}, 'GSM2532901': {'condition': 'Term Delivery'}, 'GSM2532906': {'condition': 'Term Delivery'}, 'GSM2309932': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '43.56'}, 'GSM2309931': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '43.56'}, 'GSM2309930': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '49.08'}, 'GSM2194238': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194239': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194234': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194235': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194236': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194237': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194230': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194231': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194232': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194233': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2771729': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_2', 'structure': 'neurite'}, 'GSM2178755': {'ir': '0.504286434694907', 'weight': 'non-obese', 'gender': 'male', 'age': '55', 'bmi': '23.7', 'disease': 'ngt', 'l': '0.06', 'h': '0.5', 'id': '34a'}, 'GSM2443101': {'treatment': 'estrogen+MPA', 'xenograft': 'UCD65'}, 'GSM2443100': {'treatment': 'estrogen', 'xenograft': 'UCD65'}, 'GSM2443103': {'treatment': 'estrogen+MPA', 'xenograft': 'UCD65'}, 'GSM2443102': {'treatment': 'estrogen+MPA', 'xenograft': 'UCD65'}, 'GSM1868771': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2178754': {'ir': '0.499750124937531', 'weight': 'obese', 'gender': 'female', 'age': '53', 'bmi': '39.2', 'disease': 'ngt', 'l': '0.06', 'h': '1', 'id': '71a'}, 'GSM1950235': {'line': 'PANC1', 'treatment': 'KMT2C siRNA1'}, 'GSM1980148': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980149': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2178757': {'ir': '0.37243947858473', 'weight': 'obese', 'gender': 'female', 'age': '59', 'bmi': '30', 'disease': 't2d', 'l': '0.1', 'h': '0.5', 'id': '124a'}, 'GSM1980140': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980141': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980142': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980143': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980144': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980145': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980146': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980147': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1291165': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM1299379': {'labexpid': '12821', 'line': 'GM12878'}, 'GSM1291167': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM1291166': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM1291161': {'gender': 'Female', 'state': 'healthy control', 'type': 'primary monocytes'}, 'GSM1291160': {'gender': 'Female', 'state': 'healthy control', 'type': 'primary monocytes'}, 'GSM1291163': {'gender': 'Female', 'state': 'healthy control', 'type': 'primary monocytes'}, 'GSM1291162': {'gender': 'Female', 'state': 'healthy control', 'type': 'primary monocytes'}, 'GSM1291169': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM1291168': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM2178756': {'ir': '0.37243947858473', 'weight': 'obese', 'gender': 'female', 'age': '59', 'bmi': '30', 'disease': 't2d', 'l': '0.1', 'h': '0', 'id': '124a'}, 'GSM1095128': {'subset': 'poly A RNA', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM2585388': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585389': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585386': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585387': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585384': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585385': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585382': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585383': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585380': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585381': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2158383': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2027309': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'infected with Y3 mut RNA'}, 'GSM2027308': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'infected with Y3 mut RNA'}, 'GSM2027301': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'non-infected'}, 'GSM2027303': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'non-infected'}, 'GSM2027302': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'non-infected'}, 'GSM2027305': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'infected with Y3 wt RNA'}, 'GSM2027304': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'infected with Y3 wt RNA'}, 'GSM2027307': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'infected with Y3 mut RNA'}, 'GSM2027306': {'line': 'IMR-32', 'type': 'neuroblastoma cells', 'infection': 'infected with Y3 wt RNA'}, 'GSM3100463': {'treatment': 'Imatinib 24 hours'}, 'GSM566265': {'gender': 'male', 'line': 'cell derived from metastatic melanoma', 'tissue': 'lymph node'}, 'GSM566264': {'gender': 'female', 'line': 'cell derived from metastatic melanoma', 'tissue': 'skin'}, 'GSM566266': {'gender': 'male', 'line': 'cell derived from metastatic melanoma', 'tissue': 'skin'}, 'GSM566261': {'gender': 'female', 'line': 'cell derived from metastatic melanoma', 'tissue': 'skin'}, 'GSM566260': {'gender': 'male', 'tissue': 'skin', 'type': 'cultured melanocyte'}, 'GSM566263': {'gender': 'male', 'line': 'cell derived from metastatic melanoma', 'tissue': 'lymph node'}, 'GSM566262': {'gender': 'female', 'line': 'cell derived from metastatic melanoma', 'tissue': 'visceral tissue'}, 'GSM2602089': {'shRNA': 'METTL3 shRNA #12', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2200459': {'state': 'non-disease', 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'C/C rs6716753'}, 'GSM2328349': {'followup': '0.78', 'grade': 'III', 'age': '79', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328348': {'followup': '0.78', 'grade': 'III', 'age': '79', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328345': {'followup': '5.99', 'grade': 'II', 'age': '82', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328344': {'followup': '5.99', 'grade': 'II', 'age': '82', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328347': {'followup': '6.46', 'grade': 'II', 'age': '58', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328346': {'followup': '6.46', 'grade': 'II', 'age': '58', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328341': {'followup': '5.29', 'grade': 'II', 'age': '46', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328340': {'followup': '5.29', 'grade': 'II', 'age': '46', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328343': {'followup': '1.38', 'grade': 'III', 'age': '70', 'Sex': 'Male', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328342': {'followup': '1.38', 'grade': 'III', 'age': '70', 'Sex': 'Male', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'AD', 'Stage': 'IB'}, 'GSM2602081': {'shRNA': 'METTL3 shRNA #12', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM1228198': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228199': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM2602080': {'shRNA': 'METTL3 shRNA #12', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM1228194': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228195': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228196': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228197': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228190': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228191': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228192': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228193': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM2932826': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '12'}, 'GSM1185608': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185609': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185604': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185605': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185606': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185607': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1185603': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM2085590': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085591': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085592': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085593': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085594': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085595': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085596': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085597': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085598': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085599': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2602086': {'shRNA': 'METTL3 shRNA #9', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2295866': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'UPF1'}, 'GSM2027321': {'tissue': 'Blood', 'type': 'BDCA2+CD2+ pDCs', 'id': '1009', 'point': 'Steady state'}, 'GSM2183489': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'Cobalt + ACF'}, 'GSM2295864': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'UPF1'}, 'GSM3036232': {'antibody': 'RNAPII (8WG16, Covance, MMS-126R)', 'treatment': '4-OHT'}, 'GSM2183482': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'none'}, 'GSM3036231': {'antibody': 'RNAPII (8WG16, Covance, MMS-126R)', 'treatment': 'EtOH'}, 'GSM2183487': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'Cobalt'}, 'GSM2183486': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'Cobalt'}, 'GSM2183485': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'Cobalt'}, 'GSM2183484': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'none'}, 'GSM1714398': {'feed': '100 µM, 22 days', 'line': 'HEK 293T', 'type': 'total small RNA'}, 'GSM1714399': {'line': 'HEK 293T', 'type': 'total small RNA'}, 'GSM1714396': {'feed': '100 µM, 22 days', 'line': 'HEK 293T', 'type': 'total long RNA'}, 'GSM1714397': {'line': 'HEK 293T', 'type': 'total long RNA'}, 'GSM1574808': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1554598': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554599': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554596': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554597': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554594': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554595': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554592': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554593': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554590': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554591': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2583564': {'subtype': 'H7N9', 'time': '3h'}, 'GSM2583565': {'subtype': 'H7N9', 'time': '3h'}, 'GSM2583566': {'subtype': 'H7N9', 'time': '7h'}, 'GSM2583567': {'subtype': 'H7N9', 'time': '7h'}, 'GSM2583560': {'subtype': '_', 'time': '0h'}, 'GSM2583561': {'subtype': '_', 'time': '0h'}, 'GSM2583562': {'subtype': 'H7N9', 'time': '1.5h'}, 'GSM2583563': {'subtype': 'H7N9', 'time': '1.5h'}, 'GSM2666177': {'age': 'Day 130', 'well': 'C7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666176': {'age': 'Day 130', 'well': 'H1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666175': {'age': 'Day 130', 'well': 'D3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666174': {'age': 'Day 130', 'well': 'A6', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666173': {'age': 'Day 130', 'well': 'F11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000289'}, 'GSM2666172': {'age': 'Day 130', 'well': 'G1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000289'}, 'GSM2666171': {'age': 'Day 130', 'well': 'E2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666170': {'age': 'Day 130', 'well': 'C3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000289'}, 'GSM1848779': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 13', 'point': 'immediately after exercise'}, 'GSM2666179': {'age': 'Day 130', 'well': 'F3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000289'}, 'GSM2666178': {'age': 'Day 130', 'well': 'G2', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2371255': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371254': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371257': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371256': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371251': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371250': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371253': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371252': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371259': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371258': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM1023434': {'group': 'non-lesional', 'tissue': 'skin', 'patient': 'Patient 1'}, 'GSM2326214': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326217': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM1023437': {'group': 'lesional', 'tissue': 'skin', 'patient': 'Patient 1'}, 'GSM1023438': {'group': 'lesional', 'tissue': 'skin', 'patient': 'Patient 2'}, 'GSM1023439': {'group': 'lesional', 'tissue': 'skin', 'patient': 'Patient 3'}, 'GSM2462904': {'age': 'Day 14 Culture', 'type': 'CD34+'}, 'GSM2462905': {'age': 'Day 14 Culture', 'type': 'CD34+'}, 'GSM2462906': {'age': 'Day 14 Culture', 'type': 'CD34+'}, 'GSM2462900': {'line': 'U-87 MG', 'treatment': 'EPZ015666', 'concentration': '10 uM', 'time': '72h'}, 'GSM2462901': {'age': 'Day 14 Culture', 'type': 'CD34+'}, 'GSM2462902': {'age': 'Day 14 Culture', 'type': 'CD34+'}, 'GSM2462903': {'age': 'Day 14 Culture', 'type': 'CD34+'}, 'GSM2370634': {'antibodies': 'H2A.z (Abcam ab4174)', 'type': 'Resting naive CD4 purified cells', 'ids': '391'}, 'GSM2262889': {'protocol': 'LPS exposed 24 hours, 5 uM IBET151 exposed for 24 hours, culture for 4 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262888': {'protocol': 'LPS exposed 24 hours, 5 uM IBET151 exposed for 24 hours, culture for 4 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2370635': {'antibodies': 'H2A.z (Abcam ab4174)', 'type': 'Resting naive CD4 purified cells', 'ids': '488'}, 'GSM2262883': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262882': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262881': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262880': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262887': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262886': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262885': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262884': {'protocol': 'LPS exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2516113': {'line': 'NAMEC5', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516112': {'line': 'NAMEC5', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516111': {'line': 'NAMEC5', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2453994': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2516117': {'lineage': 'Prostate progenitor cells', 'type': 'Primary prostate epithelial cells', 'disease': 'Young adult/disease-free'}, 'GSM2516116': {'lineage': 'Prostate stem-like cells', 'type': 'Primary prostate epithelial cells', 'disease': 'Young adult/disease-free'}, 'GSM2516115': {'lineage': 'Prostate stem-like cells', 'type': 'Primary prostate epithelial cells', 'disease': 'Young adult/disease-free'}, 'GSM2516114': {'lineage': 'Prostate stem-like cells', 'type': 'Primary prostate epithelial cells', 'disease': 'Young adult/disease-free'}, 'GSM2453993': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2516119': {'lineage': 'Prostate progenitor cells', 'type': 'Primary prostate epithelial cells', 'disease': 'Young adult/disease-free'}, 'GSM2516118': {'lineage': 'Prostate progenitor cells', 'type': 'Primary prostate epithelial cells', 'disease': 'Young adult/disease-free'}, 'GSM2453992': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2178779': {'ir': '0.335908632851864', 'weight': 'obese', 'gender': 'female', 'age': '55', 'bmi': '30.9', 'disease': 'ngt', 'l': '0.03', 'h': '0.5', 'id': '28a'}, 'GSM2178778': {'ir': '0.335908632851864', 'weight': 'obese', 'gender': 'female', 'age': '55', 'bmi': '30.9', 'disease': 'ngt', 'l': '0.03', 'h': '0', 'id': '28a'}, 'GSM2370632': {'antibodies': 'H3K4me1 (Abcam ab8895)', 'type': 'Resting naive CD4 purified cells', 'ids': '393'}, 'GSM2178773': {'ir': '2.11864406779661', 'weight': 'obese', 'gender': 'male', 'age': '60', 'bmi': '32.2', 'disease': 't2d', 'l': '0.16', 'h': '0', 'id': '96a'}, 'GSM2178772': {'ir': '0.979431929480901', 'weight': 'obese', 'gender': 'female', 'age': '63', 'bmi': '32.7', 'disease': 't2d', 'l': '0.18', 'h': '0', 'id': '85a'}, 'GSM2178771': {'ir': '0.362187613183629', 'weight': 'non-obese', 'gender': 'male', 'age': '62', 'bmi': '22.6', 'disease': 't2d', 'l': 'NA', 'h': '0', 'id': '20a'}, 'GSM2178770': {'ir': '1.96850393700787', 'weight': 'non-obese', 'gender': 'male', 'age': '61', 'bmi': '24.7', 'disease': 't2d', 'l': '0.16', 'h': '0', 'id': '63a'}, 'GSM2178777': {'ir': '0.504286434694907', 'weight': 'non-obese', 'gender': 'male', 'age': '55', 'bmi': '23.7', 'disease': 'ngt', 'l': '0.06', 'h': '2', 'id': '34a'}, 'GSM2178776': {'ir': '2.47524752475248', 'weight': 'obese', 'gender': 'male', 'age': '58', 'bmi': '38.3', 'disease': 't2d', 'l': '0.12', 'h': '1', 'id': '53a'}, 'GSM2178775': {'ir': '2.47524752475248', 'weight': 'obese', 'gender': 'male', 'age': '58', 'bmi': '38.3', 'disease': 't2d', 'l': '0.12', 'h': '0.5', 'id': '53a'}, 'GSM2178774': {'ir': '2.47524752475248', 'weight': 'obese', 'gender': 'male', 'age': '58', 'bmi': '38.3', 'disease': 't2d', 'l': '0.12', 'h': '0', 'id': '53a'}, 'GSM2840416': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840417': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840414': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840415': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840412': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840413': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2170568': {'stage': 'Endothelial cells'}, 'GSM2840411': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2170566': {'stage': 'Endothelial cells'}, 'GSM2170567': {'stage': 'Endothelial cells'}, 'GSM2170564': {'stage': 'Endothelial cells'}, 'GSM2170565': {'stage': 'Endothelial cells'}, 'GSM2170562': {'stage': 'Endothelial cells'}, 'GSM2170563': {'stage': 'Endothelial cells'}, 'GSM2840418': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840419': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2877951': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877950': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM1145845': {'source': '55 yr old female (heart transplant pulmonary hypertension)', 'type': 'Primary aortic valve endothelial cells', 'treatment': 'Control siRNA, No shear stress', 'passage': 'p8'}, 'GSM1095143': {'subset': 'RBM10 bound RNA', 'antibody': 'monoclonal anti-FLAG (Sigma, F1804)', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM2172066': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2607510': {'line': 'WA26'}, 'GSM2607511': {'line': 'WA26'}, 'GSM2172063': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2607513': {'line': 'WA26'}, 'GSM2047412': {'well': 'H06', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2722888': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.085', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.54', 'age': '53', 'tcga_subtype_dif': '0.348', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.383', 'outcome': 'Optimal', 'review': 'Not available', 'stage': 'III'}, 'GSM2722881': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '0.043', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.441', 'age': '61', 'tcga_subtype_dif': '-0.156', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.609', 'outcome': 'Optimal', 'review': 'Not available', 'stage': 'III'}, 'GSM2722883': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.311', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.515', 'age': '49', 'tcga_subtype_dif': '0.443', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.487', 'outcome': 'Optimal', 'review': 'Not available', 'stage': 'III'}, 'GSM2722885': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.263', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.27', 'age': '53', 'tcga_subtype_dif': '0.086', 'stic': 'No', 'recurrence': 'Y', 'record': 'Not available', 'race': 'Not available', 'tcga_subtype_imr': '0.489', 'outcome': 'Unknown', 'review': 'Not available', 'stage': 'II'}, 'GSM2607519': {'line': 'WA26'}, 'GSM2632532': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632533': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632530': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2470067': {'line': 'U2OS-PcTF KAH126', 'tag': 'treated', 'protein': 'PcTF'}, 'GSM2632536': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632537': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632534': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632535': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632538': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632539': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1847139': {'subject_id': 'Q1', 'type': 'Induced pluripotent stem cells (iPSC)', 'subline_id': 'SA', 'passage': 'P31'}, 'GSM1847138': {'subject_id': 'Q1', 'type': 'Induced pluripotent stem cells (iPSC)', 'subline_id': 'SA', 'passage': 'P11'}, 'GSM2140855': {'plate': '1.40E+07', 'line': 'MDA-MB-231', 'type': 'Breast carcinoma'}, 'GSM2140854': {'plate': '1.20E+07', 'line': 'MCF7', 'type': 'Breast carcinoma'}, 'GSM2140857': {'plate': '1.70E+07', 'line': 'SK-BR-3', 'type': 'Breast carcinoma'}, 'GSM2140856': {'plate': '8.50E+06', 'line': 'NHDF-Neo', 'type': 'Primary neonatal fibroblasts'}, 'GSM2140851': {'plate': '1.60E+07', 'line': 'BT-20', 'type': 'Breast carcinoma'}, 'GSM2140853': {'plate': '1.10E+07', 'line': 'MCF 10A', 'type': 'Breast epithelial'}, 'GSM2140852': {'plate': '1.00E+07', 'line': '184 A1', 'type': 'Immortalized non-tumorgenic breast epithelial'}, 'GSM2665888': {'age': 'Day 175', 'well': 'E5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665889': {'age': 'Day 130', 'well': 'D5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665882': {'age': 'Day 175', 'well': 'D4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665883': {'age': 'Day 175', 'well': 'H3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665880': {'age': 'Day 175', 'well': 'E3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665881': {'age': 'Day 175', 'well': 'C3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665886': {'age': 'Day 175', 'well': 'F4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665887': {'age': 'Day 175', 'well': 'F11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665884': {'age': 'Day 175', 'well': 'C9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665885': {'age': 'Day 175', 'well': 'G8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2712780': {'line': 'HCT116', 'treatment': 'largazole 150nM', 'disease': 'colorectal carcinoma'}, 'GSM2712781': {'line': 'HCT116', 'treatment': 'largazole 300nM', 'disease': 'colorectal carcinoma'}, 'GSM2287631': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287630': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287633': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287632': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287635': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287634': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287637': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287636': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287639': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287638': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2303292': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303293': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACJV399'}, 'GSM2303294': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303295': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303296': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303297': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM1212201': {'tissue': 'human liver', 'type': 'Ambion'}, 'GSM1203315': {'tissue': 'blood'}, 'GSM1898652': {'line': 'HCT116', 'tissue': 'Colon', 'type': 'colorectal'}, 'GSM1203314': {'tissue': 'blood'}, 'GSM3189297': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.950988', 'percentaligned': '0.907832009', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.660651', 'original': 'Control'}, 'GSM3189296': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.578471', 'percentaligned': '0.949464399', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.327355', 'original': 'Control'}, 'GSM1203311': {'tissue': 'bone marrow'}, 'GSM1203310': {'tissue': 'bone marrow'}, 'GSM485445': {'line': 'NA18913'}, 'GSM1203313': {'tissue': 'bone marrow'}, 'GSM3189074': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '18', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.676087', 'percentaligned': '0.852679', 'Sex': 'M', 'nl63': 'No', 'libcounts': '2.586474'}, 'GSM3189292': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '28', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.63633', 'percentaligned': '0.938097131', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.205398', 'original': 'Case'}, 'GSM485447': {'line': 'NA19101'}, 'GSM1328791': {'tissue': 'paratumoral liver tissue'}, 'GSM1328790': {'tissue': 'HCC'}, 'GSM1328793': {'tissue': 'paratumoral liver tissue'}, 'GSM1328792': {'tissue': 'HCC'}, 'GSM1328795': {'tissue': 'paratumoral liver tissue'}, 'GSM1328794': {'tissue': 'HCC'}, 'GSM1328796': {'tissue': 'HCC'}, 'GSM3189071': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.642116', 'percentaligned': '0.942657', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.474219', 'original': 'Control'}, 'GSM485440': {'line': 'NA19192'}, 'GSM3189073': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.661822', 'percentaligned': '0.937513', 'Sex': 'M', 'nl63': 'No', 'libcounts': '2.694106', 'original': 'Control'}, 'GSM1203319': {'tissue': 'blood'}, 'GSM3189072': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.657754', 'percentaligned': '0.919205', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.259252', 'original': 'Case'}, 'GSM1203318': {'tissue': 'blood'}, 'GSM2311978': {'culture': '12', 'line': 'DCX+'}, 'GSM2311979': {'culture': '12', 'line': 'DCX+'}, 'GSM2311976': {'culture': '12', 'line': 'DCX+'}, 'GSM2311977': {'culture': '12', 'line': 'DCX+'}, 'GSM2311974': {'culture': '12', 'line': 'DCX+'}, 'GSM2311975': {'culture': '12', 'line': 'DCX+'}, 'GSM2311972': {'culture': '12', 'line': 'DCX+'}, 'GSM2311973': {'culture': '12', 'line': 'DCX+'}, 'GSM2311970': {'culture': '12', 'line': 'DCX+'}, 'GSM2311971': {'culture': '12', 'line': 'DCX+'}, 'GSM2264838': {'line': 'C15', 'type': 'hiPSC-derived cells'}, 'GSM2264839': {'line': 'C15', 'type': 'hiPSC-derived cells'}, 'GSM485449': {'line': 'NA19099'}, 'GSM2264834': {'line': 'C15', 'type': 'hiPS cell'}, 'GSM2264835': {'line': 'C15', 'type': 'hiPS cell'}, 'GSM2264836': {'line': 'C15', 'type': 'hiPSC-derived cells'}, 'GSM2264837': {'line': 'C15', 'type': 'hiPSC-derived cells'}, 'GSM2350172': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM1704799': {'line': 'H1 embryonic stem cells', 'type': 'day 6 ES cells differentiating along the cardiac lineage', 'variation': 'NKX2-5 shRNA knockdown'}, 'GSM1704798': {'line': 'H1 embryonic stem cells', 'type': 'day 6 ES cells differentiating along the cardiac lineage', 'variation': 'NKX2-5 shRNA knockdown'}, 'GSM1704797': {'line': 'H1 embryonic stem cells', 'type': 'day 2 ES cells differentiating along the cardiac lineage', 'variation': 'wild-type'}, 'GSM1704796': {'line': 'H1 embryonic stem cells', 'type': 'day 2 ES cells differentiating along the cardiac lineage', 'variation': 'wild-type'}, 'GSM1704795': {'line': 'H1 embryonic stem cells', 'type': 'day 2 ES cells differentiating along the cardiac lineage', 'variation': 'ZNF503 shRNA knockdown'}, 'GSM1704794': {'line': 'H1 embryonic stem cells', 'type': 'day 2 ES cells differentiating along the cardiac lineage', 'variation': 'ZNF503 shRNA knockdown'}, 'GSM1704793': {'line': 'H1 embryonic stem cells', 'type': 'day 2 ES cells differentiating along the cardiac lineage', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1704792': {'line': 'H1 embryonic stem cells', 'type': 'day 2 ES cells differentiating along the cardiac lineage', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1704791': {'line': 'H1 embryonic stem cells', 'type': 'day 2 ES cells differentiating along the cardiac lineage', 'variation': 'NKX2-5 shRNA knockdown'}, 'GSM1704790': {'line': 'H1 embryonic stem cells', 'type': 'day 2 ES cells differentiating along the cardiac lineage', 'variation': 'NKX2-5 shRNA knockdown'}, 'GSM2653478': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653479': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653476': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653477': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653474': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653475': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653472': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653473': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653470': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653471': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2100925': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch2', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '1314'}, 'GSM1395416': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2100927': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '22a'}, 'GSM2100926': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch2', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '1326'}, 'GSM2100921': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '1305'}, 'GSM2100920': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '1305'}, 'GSM2100923': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch2', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '1306'}, 'GSM1395417': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2204079': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2100929': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3002'}, 'GSM2052413': {'differentiation': '14', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052412': {'differentiation': '11', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM1918967': {'type': 'Ribosome protected fragments'}, 'GSM1918965': {'type': 'Ribosome protected fragments'}, 'GSM2052415': {'differentiation': '14', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM1918969': {'type': 'Ribosome protected fragments'}, 'GSM2052414': {'differentiation': '14', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052417': {'differentiation': '17', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052416': {'differentiation': '17', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2319590': {'sirna': 'SUV39H1 (10nM Silencer Select s13660)', 'infection': 'FOXA3, HNF1A, HNF4A lentiviruses'}, 'GSM2319591': {'sirna': 'Non-targeting control #1 (10nM Silencer Select)', 'infection': 'none'}, 'GSM2319592': {'sirna': 'Non-targeting control #1 (10nM Silencer Select)', 'infection': 'none'}, 'GSM2319593': {'sirna': 'RBMX/RBMXL1 (10nM Silencer Select s56035)', 'infection': 'none'}, 'GSM2319594': {'sirna': 'RBMX/RBMXL1 (10nM Silencer Select s56035)', 'infection': 'none'}, 'GSM2319595': {'sirna': 'SUV39H1 (10nM Silencer Select s13660)', 'infection': 'none'}, 'GSM2319596': {'sirna': 'SUV39H1 (10nM Silencer Select s13660)', 'infection': 'none'}, 'GSM2319597': {'state': 'retinoblastoma diagnosis'}, 'GSM2319598': {'state': 'retinoblastoma xenograft'}, 'GSM2319599': {'state': 'retinoblastoma xenograft'}, 'GSM2745921': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '145,411,316', 'totalnummappedreads': '93,731,957', 'age': '4.706494', 'percentexonicmapping': '21.303649', 'Sex': 'Male', 'rin': '7.9', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.27', 'brainid': '1855'}, 'GSM2445640': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D8', 'type': 'primary human hepatocyte'}, 'GSM2445641': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D10', 'type': 'primary human hepatocyte'}, 'GSM2445642': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D10', 'type': 'primary human hepatocyte'}, 'GSM2445643': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D8', 'type': 'primary human hepatocyte'}, 'GSM2445644': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D13', 'type': 'primary human hepatocyte'}, 'GSM2445645': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': '8h', 'type': 'primary human hepatocyte'}, 'GSM2445646': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D8', 'type': 'primary human hepatocyte'}, 'GSM2544054': {'library_id': 'lib8374', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.326', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2472225': {'doubling': '44', 'tissue': 'Skin;foreskin', 'type': 'Ffibroblast'}, 'GSM2472226': {'doubling': '44', 'tissue': 'Skin;foreskin', 'type': 'Ffibroblast'}, 'GSM2472227': {'doubling': '44', 'tissue': 'Skin;foreskin', 'type': 'Ffibroblast'}, 'GSM2544057': {'library_id': 'lib8377', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544056': {'library_id': 'lib8376', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3104710': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2544051': {'library_id': 'lib8371', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '4.193', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544050': {'library_id': 'lib8370', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '4.193', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2111044': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 2', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111045': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 2', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111046': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 3', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111047': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 3', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111040': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 2', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM3594581': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2111042': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 2', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111043': {'status': 'Activated', 'type': 'central memory (CM)', 'id': 'Donator 2', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2745928': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '113,903,350', 'totalnummappedreads': '95,029,306', 'age': '2.023327', 'percentexonicmapping': '25.483714', 'Sex': 'Female', 'rin': '8.6', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.73', 'brainid': '1342'}, 'GSM3594580': {'cluster': 'Low Del', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2111048': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 3', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111049': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 3', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2204150': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2309407': {'shRNA': 'shSET1B#1-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM2309406': {'shRNA': 'shSET1B#1-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM2309405': {'shRNA': 'shCtrl-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM2309404': {'shRNA': 'shCtrl-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM2309409': {'shRNA': 'shSET1B#2-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM2309408': {'shRNA': 'shSET1B#2-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM1281739': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Neuronal Tissue', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM2897308': {'type': 'RNA from 3994-055 PDOs'}, 'GSM1588920': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588921': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM1281735': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '70', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281734': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Hispanic', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281737': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Hispanic', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281736': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Hispanic', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281731': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '60', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281730': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '60', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281733': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Hispanic', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281732': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '32', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'African American', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1808088': {'tissue': 'LCLs'}, 'GSM1808089': {'tissue': 'LCLs'}, 'GSM1808086': {'tissue': 'LCLs'}, 'GSM1808087': {'tissue': 'LCLs'}, 'GSM1808084': {'tissue': 'LCLs'}, 'GSM1808085': {'tissue': 'LCLs'}, 'GSM1808082': {'tissue': 'LCLs'}, 'GSM1808083': {'tissue': 'LCLs'}, 'GSM1808080': {'tissue': 'LCLs'}, 'GSM1808081': {'tissue': 'LCLs'}, 'GSM2123944': {}, 'GSM2123945': {}, 'GSM2123946': {}, 'GSM2123947': {}, 'GSM2123940': {}, 'GSM2123941': {}, 'GSM2123942': {}, 'GSM2123943': {}, 'GSM2123948': {}, 'GSM2123949': {}, 'GSM2392076': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392077': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392074': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392075': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392072': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392073': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392070': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392071': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2392078': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM1620503': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620502': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620501': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620500': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620507': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620506': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620505': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620504': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2575280': {'line': 'WM989', 'type': 'melanoma', 'condition': 'mix', 'drug': 'no drug'}, 'GSM2575281': {'line': 'WM989', 'type': 'melanoma', 'condition': 'EGFR', 'drug': '4 weeks'}, 'GSM1620509': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2575283': {'line': 'WM989', 'type': 'melanoma', 'condition': 'EGFR', 'drug': '1 week'}, 'GSM2575284': {'line': 'WM989', 'type': 'melanoma', 'condition': 'EGFR', 'drug': '1 week'}, 'GSM2575285': {'line': 'WM989', 'type': 'melanoma', 'condition': 'EGFR', 'drug': 'no drug'}, 'GSM2575286': {'line': 'WM989', 'type': 'melanoma', 'condition': 'EGFR', 'drug': 'no drug'}, 'GSM2575287': {'line': 'WM989', 'type': 'melanoma', 'condition': 'EGFR', 'drug': 'no drug'}, 'GSM1212202': {'tissue': 'human lung', 'type': 'Ambion'}, 'GSM2304385': {'line': 'HeLa', 'treatment': '12hr recovery after 3hr ethanol treatment'}, 'GSM2304384': {'line': 'HeLa', 'treatment': '12hr recovery after 3hr ethanol treatment'}, 'GSM2304383': {'line': 'HeLa', 'treatment': '12hr recovery after 3hr ethanol treatment'}, 'GSM2304382': {'line': 'HeLa', 'treatment': '8hr recovery after 3hr ethanol treatment'}, 'GSM2304381': {'line': 'HeLa', 'treatment': '8hr recovery after 3hr ethanol treatment'}, 'GSM2304380': {'line': 'HeLa', 'treatment': '8hr recovery after 3hr ethanol treatment'}, 'GSM1920692': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'anti-CLOCK (NB100-126; Novus Biologicals)', 'agent': 'DMSO'}, 'GSM1920693': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'anti-CLOCK (NB100-126; Novus Biologicals)', 'agent': '6AN'}, 'GSM1920690': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'anti-BMAL1 (ab3350; Abcam)', 'agent': 'DMSO'}, 'GSM1920691': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'anti-BMAL1 (ab3350; Abcam)', 'agent': '6AN'}, 'GSM1920694': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'none (input)', 'agent': 'DMSO'}, 'GSM1920695': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'none (input)', 'agent': '6AN'}, 'GSM2916070': {'line': 'HEK293', 'medium': 'Zn(II) Depleted Freestyle Medium repleted with Zn(II)'}, 'GSM2916071': {'line': 'HEK293', 'medium': 'Zn(II) Depleted Freestyle Medium repleted with Zn(II)'}, 'GSM1227195': {'subtype': 'ABC', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'OCI-Ly3'}, 'GSM1227194': {'subtype': 'GCB+EBV', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'OCI-Ly19'}, 'GSM1227197': {'subtype': 'GCB', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'SU-DHL10'}, 'GSM1227196': {'subtype': 'GCB', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'OCI-Ly7'}, 'GSM1901459': {'count': '1', 'ercc_mix': 'mix2', 'type': 'duct', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901458': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1227193': {'subtype': 'ABC', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'OCI-Ly10'}, 'GSM2259929': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY-hcM'}, 'GSM1901455': {'count': '1', 'ercc_mix': 'mix2', 'type': 'undefined', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2259927': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY1'}, 'GSM1901457': {'count': '1', 'ercc_mix': 'mix2', 'type': 'delta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901456': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1227199': {'subtype': 'GCB', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'SU-DHL4'}, 'GSM1227198': {'subtype': 'ABC', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'SU-DHL2'}, 'GSM1369224': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1369225': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1369222': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1369223': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1369220': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1369221': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1937944': {'line': 'acute myeloid leukemia cell line KG1', 'ab': 'None', 'treatment': 'XX-650-23 (5 mM, 6hrs)'}, 'GSM1329859': {'line': 'AML3', 'treatment': 'Aza Treated'}, 'GSM1327879': {'gender': 'M', 'age': '26', 'grouping': 'Obese'}, 'GSM1327878': {'gender': 'M', 'age': '36', 'grouping': 'Obese'}, 'GSM1327875': {'gender': 'F', 'age': '35', 'grouping': 'Lean'}, 'GSM1327874': {'gender': 'M', 'age': '46', 'grouping': 'Lean'}, 'GSM1327877': {'gender': 'F', 'age': '46', 'grouping': 'Lean'}, 'GSM1327876': {'gender': 'F', 'age': '56', 'grouping': 'Lean'}, 'GSM1177763': {'antibody': 'ZMYND11, home-made', 'type': 'U2OS Cells', 'variation': 'WT'}, 'GSM4008579': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008578': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM1177766': {'antibody': 'Flag beads, Sigma A2220', 'type': 'U2OS Cells', 'variation': 'Flag-H3.3 stable'}, 'GSM1177767': {'antibody': 'H3K36me3, Abcam ab9050, Lot GR59748-1', 'type': 'U2OS Cells', 'variation': 'shCTRL'}, 'GSM1177764': {'antibody': 'ZMYND11, home-made', 'type': 'U2OS Cells', 'variation': 'shCTRL'}, 'GSM1177765': {'antibody': 'ZMYND11, home-made', 'type': 'U2OS Cells', 'variation': 'shZMYND11'}, 'GSM4008573': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008572': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM1177768': {'antibody': 'H3K36me3, Abcam ab9050, Lot GR59748-1', 'type': 'U2OS Cells', 'variation': 'shZMYND11'}, 'GSM4008570': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008577': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008576': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008575': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008574': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM1122315': {'target': 'PU.1', 'company': 'Santa Cruz', 'number': 'sc-22805', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122314': {'target': 'ERG', 'company': 'Santa Cruz', 'number': 'sc-354', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122317': {'target': 'p300', 'company': 'Santa Cruz', 'number': 'sc-585', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122316': {'target': 'H3K9K14ac', 'company': 'Diagenode', 'number': 'pAb-ACHBHS-044_DA-0010', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122311': {'target': 'TAL1', 'company': 'Santa Cruz', 'number': 'sc-12984', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122310': {'target': 'GATA2', 'company': 'Santa Cruz', 'number': 'sc-9008', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122313': {'target': 'ELF1', 'company': 'Santa Cruz', 'number': 'sc-631', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122312': {'target': 'FLI1', 'company': 'Santa Cruz', 'number': 'sc-356', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122319': {'target': 'MYH11', 'company': 'Novus', 'number': '21370002', 'treatment': 'none', 'line': '--', 'type': 'Patient AML cells'}, 'GSM1122318': {'target': 'HDAC1', 'company': 'Abcam', 'number': 'ab7028', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1632194': {'type': 'U2OS', 'treatment': 'Myc activation + Torin-1'}, 'GSM1957089': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957088': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2047330': {'well': 'A08', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047331': {'well': 'A09', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047336': {'well': 'B02', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047337': {'well': 'B03', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047334': {'well': 'A12', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047335': {'well': 'B01', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1957081': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957080': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957083': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM2047339': {'well': 'B05', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1957085': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957084': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957087': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1957086': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1012135': {'donor': 'human breast cancer patient 1', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012137': {'donor': 'human breast cancer patient 1', 'draw': '2', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012136': {'donor': 'human breast cancer patient 1', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012139': {'donor': 'human breast cancer patient 1', 'draw': '3', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012138': {'donor': 'human breast cancer patient 1', 'draw': '2', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1820153': {'line': 'HCT116', 'genotype': 'wild type'}, 'GSM1820156': {'line': 'HCT116', 'genotype': \"MYC 3' TBE1 knockout\"}, 'GSM1820154': {'line': 'HCT116', 'genotype': 'wild type'}, 'GSM1820155': {'line': 'HCT116', 'genotype': \"MYC 3' TBE1 knockout\"}, 'GSM1581666': {'mortem': '6', 'expression': 'Depleted'}, 'GSM1581664': {'mortem': '6', 'expression': 'Depleted'}, 'GSM1581665': {'mortem': '6', 'expression': 'Depleted'}, 'GSM1581662': {'mortem': '6', 'expression': 'Positive'}, 'GSM1581663': {'mortem': '6', 'expression': 'Positive'}, 'GSM1581661': {'mortem': '6', 'expression': 'Positive'}, 'GSM1872911': {'10': 'Non-remitter', 'name': 'HF-37201', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872910': {'10': 'Remitter', 'name': 'HF-34765', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2309878': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '28.59'}, 'GSM2309879': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '28.59'}, 'GSM1872915': {'10': 'Non-remitter', 'name': 'HF-35399', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872914': {'10': 'N/A', 'name': 'HF-37285', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1314718': {'type': 'lymphatic endothelial colony forming cells', 'passage': '8 to15'}, 'GSM1314719': {'type': 'lymphatic endothelial colony forming cells', 'passage': '8 to15'}, 'GSM2309872': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Thin basement membrane dz', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '29.48'}, 'GSM2309873': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Nephropathy, IgA (Bergers)', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '46.92'}, 'GSM2309870': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Thin basement membrane dz', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '29.48'}, 'GSM2309871': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Thin basement membrane dz', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '29.48'}, 'GSM1314712': {'type': 'blood endothelial colony forming cells', 'passage': '8 to15'}, 'GSM1314713': {'type': 'blood endothelial colony forming cells', 'passage': '8 to15'}, 'GSM2309874': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Nephropathy, IgA (Bergers)', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '46.92'}, 'GSM2309875': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Nephropathy, IgA (Bergers)', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '46.92'}, 'GSM1447490': {'knockdown': 'LKB1 siRNA', 'line': 'RBE', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM1447491': {'knockdown': 'LKB1 siRNA', 'line': 'RBE', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM1447492': {'knockdown': 'Control siRNA', 'line': 'SSP25', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM1447493': {'knockdown': 'Control siRNA', 'line': 'SSP25', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM1447494': {'knockdown': 'LKB1 siRNA', 'line': 'SSP25', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM1447495': {'knockdown': 'LKB1 siRNA', 'line': 'SSP25', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM2247594': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2689149': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1862192': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shSmad3', 'treatment': 'TGF-beta and EGF'}, 'GSM2247597': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247590': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM984646': {'line': 'HepG2'}, 'GSM984645': {'line': 'HepG2'}, 'GSM984644': {'line': 'HepG2'}, 'GSM984649': {'line': 'HepG2'}, 'GSM984648': {'line': 'HepG2'}, 'GSM2247598': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247599': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2649899': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649898': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649897': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649896': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649895': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649894': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649893': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649892': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649891': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649890': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2383934': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'NR0B1'}, 'GSM2672063': {'type': 'Single cell', 'number': 'CRISPR 12', 'stage': 'Blastocyst'}, 'GSM2689147': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689146': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM3189105': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '33', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.675958', 'percentaligned': '0.907052753', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.943611', 'original': 'Control'}, 'GSM3189104': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '60', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.650194', 'percentaligned': '0.822054997', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.573638', 'original': 'Control'}, 'GSM3189107': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '20', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.627831', 'percentaligned': '0.911350148', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.518284', 'original': 'Control'}, 'GSM3189106': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.625518', 'percentaligned': '0.935281666', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.926806'}, 'GSM3189101': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '11', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.662494', 'percentaligned': '0.855647342', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.498599', 'original': 'Control'}, 'GSM3189100': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '10', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.678798', 'percentaligned': '0.917572072', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.047423', 'original': 'Control'}, 'GSM3189103': {'boca': 'Yes', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.593202', 'percentaligned': '0.944044813', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.858218', 'original': 'Control'}, 'GSM3189102': {'boca': 'Yes', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '16', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.579426', 'percentaligned': '0.928846386', 'Sex': 'F', 'nl63': 'No', 'libcounts': '12.564009', 'original': 'Control'}, 'GSM1401303': {'rin': '6.7', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-09-25'}, 'GSM3189109': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A02', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.659625', 'percentaligned': '0.933026364', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.732036'}, 'GSM3189108': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '22', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.701327', 'percentaligned': '0.925184397', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.572327', 'original': 'Control'}, 'GSM2093045': {'bin': '12', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093044': {'bin': '12', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093047': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093046': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093041': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093040': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093043': {'bin': '12', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093042': {'bin': '12', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093049': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093048': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM3099451': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml + 1 μM JAK1 inhibitor in DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM2449048': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as Nmin'}, 'GSM2449049': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'N4+ sorted cells propagated for five passages in naive conditions'}, 'GSM2449042': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N3+'}, 'GSM2449043': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N4+'}, 'GSM2449040': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N3+'}, 'GSM2449041': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N3+'}, 'GSM2449046': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as Nmin'}, 'GSM2449047': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as Nmin'}, 'GSM2449044': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N4+'}, 'GSM2449045': {'type': 'H9 embryonic stem cell (ESC)', 'population': 'day 10 cells defined as N4+'}, 'GSM2358119': {'line': 'MS1', 'type': 'untreated', 'timepoint': '17'}, 'GSM2358118': {'line': 'MS1', 'type': 'untreated', 'timepoint': '16'}, 'GSM1876344': {'tissue': 'Dorsal Forebrain Equivalent', 'type': 'induced pluripotent stem cells', 'diagnosis': 'Healthy'}, 'GSM1876345': {'tissue': 'Dorsal Forebrain Equivalent', 'type': 'induced pluripotent stem cells', 'diagnosis': 'Lissencephaly'}, 'GSM1876346': {'tissue': 'Dorsal Forebrain Equivalent', 'type': 'induced pluripotent stem cells', 'diagnosis': 'Lissencephaly'}, 'GSM1876347': {'tissue': 'Dorsal Forebrain Equivalent', 'type': 'induced pluripotent stem cells', 'diagnosis': 'Lissencephaly'}, 'GSM1876348': {'tissue': 'Dorsal Forebrain Equivalent', 'type': 'induced pluripotent stem cells', 'diagnosis': 'Lissencephaly'}, 'GSM2358112': {'line': 'MS1', 'type': 'untreated', 'timepoint': '10'}, 'GSM2358111': {'line': 'MS1', 'type': 'untreated', 'timepoint': '9'}, 'GSM2358110': {'line': 'MS1', 'type': 'untreated', 'timepoint': '8'}, 'GSM2358117': {'line': 'MS1', 'type': 'untreated', 'timepoint': '15'}, 'GSM2358116': {'line': 'MS1', 'type': 'untreated', 'timepoint': '14'}, 'GSM2358115': {'line': 'MS1', 'type': 'untreated', 'timepoint': '13'}, 'GSM2358114': {'line': 'MS1', 'type': 'untreated', 'timepoint': '12'}, 'GSM2455979': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455978': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455973': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455972': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455971': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455970': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455977': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455976': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455975': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455974': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2172015': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172016': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1149314': {'line': 'KBM7', 'ploidy': 'haploid'}, 'GSM865300': {'tissue': 'islets of Langerhans'}, 'GSM2084566': {'line': 'H460', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2084564': {'line': 'H460', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2084565': {'line': 'H460', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2084562': {'line': 'H460', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2084563': {'line': 'H460', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2084560': {'line': 'H1299', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2084561': {'line': 'H460', 'type': 'non-small-cell lung cancer cell line'}, 'GSM2204818': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204819': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204814': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204815': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204816': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204817': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204810': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204811': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204812': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204813': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2536049': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10625', 'samplename': '1_Ctl5_redraw_C48', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34725', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10625', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C48'}, 'GSM2183726': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'CAGATC'}, 'GSM1647109': {'illumina_index': '15', 'point': '4', 'batch': '13', 'agent': 'Rv', 'rin': '8.8', 'individual': 'M373'}, 'GSM2183724': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'ACAGTG'}, 'GSM2183725': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'GCCAAT'}, 'GSM2183722': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'CGATGT'}, 'GSM2183723': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'TGACCA'}, 'GSM2183720': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'GTTTTG'}, 'GSM2183721': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'CGTACG'}, 'GSM1647100': {'illumina_index': '19', 'point': '18', 'batch': '12', 'agent': 'Rv+', 'rin': '9.3', 'individual': 'M372'}, 'GSM1647101': {'illumina_index': '2', 'point': '4', 'batch': '13', 'agent': 'Smeg', 'rin': '7.3', 'individual': 'M377'}, 'GSM1647102': {'illumina_index': '4', 'point': '18', 'batch': '13', 'agent': 'Yers', 'rin': '3', 'individual': 'M374'}, 'GSM1647103': {'illumina_index': '5', 'point': '18', 'batch': '13', 'agent': 'BCG', 'rin': '7.2', 'individual': 'M373'}, 'GSM1647104': {'illumina_index': '6', 'point': '4', 'batch': '13', 'agent': 'Rv', 'rin': '7.6', 'individual': 'M375'}, 'GSM1647105': {'illumina_index': '7', 'point': '4', 'batch': '13', 'agent': 'Yers', 'rin': '9.2', 'individual': 'M372'}, 'GSM2183728': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'GATCAG'}, 'GSM1647107': {'illumina_index': '13', 'point': '48', 'batch': '13', 'agent': 'GC', 'rin': '7.5', 'individual': 'M375'}, 'GSM2616463': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2902810': {'replicate': '3', 'treatment': 'xRNA', 'point': '6h'}, 'GSM2355472': {'type': 'Human embryonic stem cells'}, 'GSM2355470': {'type': 'Human embryonic stem cells'}, 'GSM2355476': {'type': 'Human embryonic stem cells'}, 'GSM2355474': {'type': 'Human embryonic stem cells'}, 'GSM2355478': {'type': 'Human embryonic stem cells'}, 'GSM2536041': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10612', 'samplename': '1_Ctl5_redraw_C74', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34712', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10612', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C74'}, 'GSM2084388': {'induction': 'PMA', 'time': '48 hr'}, 'GSM2084389': {'induction': 'PMA+LPS', 'time': '48 hr'}, 'GSM2084382': {'induction': 'PMA', 'time': '12 hr'}, 'GSM2084383': {'induction': 'PMA', 'time': '24 hr'}, 'GSM2084380': {'induction': 'PMA', 'time': '12 hr'}, 'GSM2084381': {'induction': 'PMA', 'time': '12 hr'}, 'GSM2084386': {'induction': 'PMA', 'time': '48 hr'}, 'GSM2084387': {'induction': 'PMA', 'time': '48 hr'}, 'GSM2084384': {'induction': 'PMA', 'time': '24 hr'}, 'GSM2084385': {'induction': 'PMA', 'time': '24 hr'}, 'GSM1517764': {'knockdown': 'shSCR2', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1517765': {'knockdown': 'shSCR2', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1517766': {'knockdown': 'shMITF', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1517767': {'knockdown': 'shMITF', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1517760': {'knockdown': 'shSCR1', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1517761': {'knockdown': 'shBRG1', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1517762': {'knockdown': 'shBRG1', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1517763': {'knockdown': 'shBRG1', 'line': '501Mel', 'type': 'melanoma'}, 'GSM2393534': {'type': 'short RNA', 'line': 'K562', 'replicate': '2', 'treatment': 'untreated'}, 'GSM2393535': {'type': 'short RNA', 'line': 'U2OS', 'replicate': '1', 'treatment': 'TAP'}, 'GSM2393536': {'type': 'short RNA', 'line': 'U2OS', 'replicate': '2', 'treatment': 'TAP'}, 'GSM2393537': {'cell': 'exosome', 'type': 'long RNA', 'line': 'BJ', 'replicate': '1', 'treatment': 'untreated'}, 'GSM1517768': {'knockdown': 'shSCR', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM1517769': {'knockdown': 'shSCR', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM2393532': {'type': 'short RNA', 'line': 'K562', 'replicate': '2', 'treatment': 'CIP'}, 'GSM2393533': {'type': 'short RNA', 'line': 'K562', 'replicate': '1', 'treatment': 'TAP'}, 'GSM2044426': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM1949079': {'line': 'M238', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949078': {'line': 'M238', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949077': {'line': 'M238', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949076': {'line': 'M238', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949075': {'line': 'M238', 'type': 'none', 'treatment': 'none'}, 'GSM1949074': {'line': 'M238', 'type': 'none', 'treatment': 'none'}, 'GSM1949073': {'line': 'M229', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM1949072': {'line': 'M229', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM1949071': {'line': 'M229', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM1949070': {'line': 'M229', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM1943690': {'type': 'Monocyte', 'classification': 'none', 'condition': 'co-culture'}, 'GSM2243774': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B7', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243775': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243776': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243777': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243770': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243771': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243772': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243773': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243778': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243779': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1980370': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2666032': {'age': 'Day 130', 'well': 'B10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2666033': {'age': 'Day 130', 'well': 'B4', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM1395818': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395819': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2666036': {'age': 'Day 130', 'well': 'F11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666037': {'age': 'Day 130', 'well': 'C11', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2666034': {'age': 'Day 130', 'well': 'F9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666035': {'age': 'Day 130', 'well': 'D7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1395812': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395813': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395810': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395811': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395816': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395817': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395814': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395815': {'subtype': 'Pro+Neu', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2171994': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171995': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171996': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171997': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171990': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171991': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171992': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171993': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM1943692': {'type': 'Monocyte', 'classification': 'none', 'condition': 'single'}, 'GSM2815786': {'line': 'H9'}, 'GSM2171998': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171999': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM1846053': {'tissue': 'cord blood cells'}, 'GSM1846057': {'tissue': 'cord blood cells'}, 'GSM1846056': {'tissue': 'cord blood cells'}, 'GSM1846055': {'tissue': 'cord blood cells'}, 'GSM1846054': {'tissue': 'cord blood cells'}, 'GSM1846059': {'tissue': 'bone marrow'}, 'GSM1846058': {'tissue': 'bone marrow'}, 'GSM2565120': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM1548440': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM2170485': {'stage': 'Definitive endoderm 1'}, 'GSM2170484': {'stage': 'Definitive endoderm 1'}, 'GSM2170487': {'stage': 'Definitive endoderm 1'}, 'GSM2170486': {'stage': 'Definitive endoderm 1'}, 'GSM2170481': {'stage': 'Definitive endoderm 1'}, 'GSM2170480': {'stage': 'Definitive endoderm 1'}, 'GSM2170483': {'stage': 'Definitive endoderm 1'}, 'GSM2170482': {'stage': 'Definitive endoderm 1'}, 'GSM2170489': {'stage': 'Definitive endoderm 1'}, 'GSM2170488': {'stage': 'Definitive endoderm 1'}, 'GSM1876025': {'treatment': 'Serum-free control'}, 'GSM1876024': {'treatment': 'PDGF-DD'}, 'GSM2665839': {'age': 'Day 175', 'well': 'G5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2453900': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1876026': {'treatment': 'TGF-B1'}, 'GSM2453901': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2170847': {'stage': 'iPSC line'}, 'GSM1003591': {'line': 'HeLa', 'variation': 'CstF64-RNAi', 'strategy': 'RNA-Seq'}, 'GSM1003590': {'line': 'HeLa', 'variation': 'control', 'strategy': 'RNA-Seq'}, 'GSM1003592': {'line': 'HeLa', 'variation': 'CstF64&t-RNAi', 'strategy': 'RNA-Seq'}, 'GSM2453904': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2886583': {'age': '31', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': '-'}, 'GSM1833901': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'wild-type', 'time': 'Embryoid body, day 50'}, 'GSM2453906': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2665832': {'age': 'Day 175', 'well': 'A11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2886581': {'age': '53', 'cytorisk': 'adverse', 'state': 'AML', 'tissue': 'Blood', 'cr': 'yes', 'npm1': '-', 'flt3': 'D835'}, 'GSM2665831': {'age': 'Day 175', 'well': 'G3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665830': {'age': 'Day 175', 'well': 'H1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2309857': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': \"Wegener's Granulomatosis\", 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '33.91'}, 'GSM2112225': {'line': 'SNU-638', 'genotype': 'wild type'}, 'GSM1876029': {'state': 'Normal coronary artery (media)'}, 'GSM2112227': {'line': 'SNU-638', 'genotype': 'knockout of miR-222'}, 'GSM2112226': {'line': 'SNU-638', 'genotype': 'knockout of miR-221'}, 'GSM1833904': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 wt/mut', 'time': 'Embryoid body, day 50'}, 'GSM2665835': {'age': 'Day 175', 'well': 'F8', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665834': {'age': 'Day 175', 'well': 'A1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM1446196': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK'}, 'GSM1446197': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with EGFR'}, 'GSM3586519': {'origin': 'ABC', 'pfstt': '1091', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1272', 'cycles': '6', 'oscs': '0'}, 'GSM3586518': {'origin': 'ABC', 'pfstt': '81', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '207', 'cycles': '6', 'oscs': '0'}, 'GSM3586513': {'origin': 'GCB', 'pfstt': '1471', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1641', 'cycles': '6', 'oscs': '0'}, 'GSM3586512': {'origin': 'GCB', 'pfstt': '358', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '624', 'cycles': '6', 'oscs': '0'}, 'GSM3586511': {'origin': 'ABC', 'pfstt': '723', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '752', 'cycles': '6', 'oscs': '0'}, 'GSM3586510': {'origin': 'ABC', 'pfstt': '905', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '905', 'cycles': '6', 'oscs': '0'}, 'GSM3586517': {'origin': 'UNCLASSIFIED', 'pfstt': '1430', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1565', 'cycles': '6', 'oscs': '0'}, 'GSM3586516': {'origin': 'ABC', 'pfstt': '1519', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1519', 'cycles': '6', 'oscs': '0'}, 'GSM1446198': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with MEK and EGFR'}, 'GSM3586514': {'origin': 'ABC', 'pfstt': '825', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1547', 'cycles': '6', 'oscs': '1'}, 'GSM1959797': {'type': '16HBE14o- cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959796': {'type': '16HBE14o- cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959795': {'type': '16HBE14o- cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959794': {'type': '16HBE14o- cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959793': {'type': '16HBE14o- cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959792': {'type': '16HBE14o- cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959791': {'type': '16HBE14o- cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959790': {'type': '16HBE14o- cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM2316735': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316734': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316737': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316736': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316731': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316730': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316733': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM3381386': {'gender': 'female', 'tissue': 'normal lung', 'time': 'living'}, 'GSM3381388': {'gender': 'female', 'tissue': 'adenocarcinoma', 'time': 'living'}, 'GSM2316739': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316738': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2691926': {'age': 'Old (65-years)', 'type': 'Peripheral Blood Monocytes'}, 'GSM2691924': {'age': 'Old (65-years)', 'type': 'Peripheral Blood Monocytes'}, 'GSM2691925': {'age': 'Old (65-years)', 'type': 'Peripheral Blood Monocytes'}, 'GSM2691922': {'age': 'Young (21-30 years)', 'type': 'Peripheral Blood Monocytes'}, 'GSM2691923': {'age': 'Young (21-30 years)', 'type': 'Peripheral Blood Monocytes'}, 'GSM1635093': {'status': 'exposed to 8-bromo-cAMP', 'barcode': 'ACAGTG', 'type': 'Choriocarcinoma trophoblast', 'treatment': 'control'}, 'GSM1635092': {'status': 'exposed to 8-bromo-cAMP', 'barcode': 'CGATGT', 'type': 'Choriocarcinoma trophoblast', 'treatment': 'control'}, 'GSM1714408': {'feed': '100 µM, 1 day', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714409': {'feed': '100 µM, 3 days', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1635096': {'status': 'exposed to 8-bromo-cAMP', 'barcode': 'GCCAAT', 'type': 'Choriocarcinoma trophoblast', 'treatment': 'OVOL1 shRNA'}, 'GSM1536176': {'type': 'H7 hESC cell line', 'point': '1 year'}, 'GSM1536177': {'type': 'H7 hESC cell line', 'point': '1 year'}, 'GSM1536178': {'type': 'H7 hESC cell line', 'point': '1 year'}, 'GSM1714403': {'feed': '100 µM, 1 hr', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714400': {'feed': '100 µM, 20 min', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714401': {'feed': '100 µM, 20 min', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714406': {'feed': '100 µM, 9 hr', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714407': {'feed': '100 µM, 1 day', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714404': {'feed': '100 µM, 3 hr', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1714405': {'feed': '100 µM, 3 hr', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM2815849': {'line': 'H9'}, 'GSM2815848': {'line': 'H9'}, 'GSM2815843': {'line': 'H9'}, 'GSM2815842': {'line': 'H9'}, 'GSM2815841': {'line': 'H9'}, 'GSM2815840': {'line': 'H9'}, 'GSM2815847': {'line': 'H9'}, 'GSM2815846': {'line': 'H9'}, 'GSM2815845': {'line': 'H9'}, 'GSM2815844': {'line': 'H9'}, 'GSM1706458': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '0h'}, 'GSM1706459': {'line': 'A549', 'type': 'adenocarcinomicÂ\\xa0humanÂ\\xa0alveolarÂ\\xa0basalÂ\\xa0epithelial', 'point': '0h'}, 'GSM1126649': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126648': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126643': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126642': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126641': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126640': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM1126647': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126646': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126645': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126644': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM2100046': {'rin': '10', 'Sex': 'Female', 'sspg': '94', 'age': '52', 'bmi': '32.7', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '291', 'method': 'Life-Tech GITC'}, 'GSM2100047': {'rin': '10', 'Sex': 'Female', 'sspg': '94', 'age': '52', 'bmi': '32.7', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '291', 'method': 'Life-Tech GITC'}, 'GSM955155': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955154': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955157': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955156': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955151': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955150': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955153': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955152': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955159': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955158': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM2100048': {'rin': '10', 'Sex': 'Female', 'sspg': '94', 'age': '52', 'bmi': '32.7', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '291', 'method': 'Life-Tech GITC'}, 'GSM2481415': {'tissue': 'Decidua', 'number': '1', 'infection': '1dpi'}, 'GSM2481414': {'tissue': 'Decidua', 'number': '1', 'infection': '1dpi'}, 'GSM2481417': {'tissue': 'Decidua', 'number': '2', 'infection': '1dpi'}, 'GSM2100049': {'rin': '6.3', 'Sex': 'Female', 'sspg': '163', 'age': '38', 'bmi': '27.2', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '303', 'method': 'Qiagen:trizol'}, 'GSM1423532': {'line': 'HeLa', 'barcode': 'ATGCAGCAG', 'treatment': 'Rrp40 knock down (exosome)'}, 'GSM2473292': {'genotype': 'YFFY'}, 'GSM2473290': {'genotype': 'YYFF'}, 'GSM2473291': {'genotype': 'YFFY'}, 'GSM2391011': {'disease': 'Pulmonary Hypertension'}, 'GSM1540661': {'agent': '1,25D', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'HNRNPC KD'}, 'GSM1540663': {'agent': '1,25D', 'age': '14 years old', 'tissue': 'Bone', 'line': 'MG63 osteosarcoma cells', 'variation': 'HNRNPC KD'}, 'GSM2064539': {'line': 'MCF-7'}, 'GSM2064538': {'line': 'MCF-7'}, 'GSM1550536': {'strain': 'HEK293 T-Rex FLAG:DICER1 FLP-IN', 'line': 'HEK293', 'transfection': 'control sample'}, 'GSM2394519': {'id': 'IonXpress_042', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Ac-Leu-Leu-Nle-CHO', 'point': 'after 12h of compound treatment'}, 'GSM2394518': {'id': 'IonXpress_041', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Tosyl-Phe-CMK (TPCK)', 'point': 'after 12h of compound treatment'}, 'GSM2394517': {'id': 'IonXpress_060', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2394516': {'id': 'IonXpress_059', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_MB', 'point': 'after 12h of compound treatment'}, 'GSM2394515': {'id': 'IonXpress_058', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Bosentan', 'point': 'after 12h of compound treatment'}, 'GSM2394514': {'id': 'IonXpress_057', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Mycophenolic acid', 'point': 'after 12h of compound treatment'}, 'GSM2394513': {'id': 'IonXpress_056', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Z-Leu3-VS', 'point': 'after 12h of compound treatment'}, 'GSM2394512': {'id': 'IonXpress_055', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Tunicamycin', 'point': 'after 12h of compound treatment'}, 'GSM2394511': {'id': 'IonXpress_054', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Tyrphostin AG-825', 'point': 'after 12h of compound treatment'}, 'GSM2394510': {'id': 'IonXpress_053', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Tamoxifen', 'point': 'after 12h of compound treatment'}, 'GSM2194487': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194486': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194485': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194484': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194483': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194482': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2086438': {'line': 'HEK293'}, 'GSM2086439': {'line': 'HEK293'}, 'GSM2086436': {'line': 'HEK293'}, 'GSM2086437': {'line': 'HEK293'}, 'GSM2086434': {'line': 'HEK293'}, 'GSM2086435': {'line': 'HEK293'}, 'GSM2086432': {'line': 'HEK293'}, 'GSM2086433': {'line': 'HEK293'}, 'GSM2086430': {'line': 'HEK293'}, 'GSM2086431': {'line': 'HEK293'}, 'GSM2723035': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.34', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.284', 'age': '65', 'tcga_subtype_dif': '-0.138', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.119', 'outcome': 'Optimal', 'review': 'Fallopian tube Ca', 'stage': 'IIIC'}, 'GSM2338861': {'type': 'Endometrial Stromal Fibroblast', 'cycle': 'Day 9'}, 'GSM2338860': {'type': 'Endometrial Stromal Fibroblast', 'cycle': 'Day 3'}, 'GSM2338862': {'type': 'Endometrial Stromal Fibroblast', 'cycle': 'Day 9'}, 'GSM2305775': {'tissue': 'colon'}, 'GSM2305774': {'tissue': 'colon'}, 'GSM2305777': {'tissue': 'colon'}, 'GSM2305776': {'tissue': 'colon'}, 'GSM2305771': {'tissue': 'colon'}, 'GSM2305770': {'tissue': 'colon'}, 'GSM2305773': {'tissue': 'colon'}, 'GSM2305772': {'tissue': 'colon'}, 'GSM2305779': {'tissue': 'colon'}, 'GSM2305778': {'tissue': 'colon'}, 'GSM1663082': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663081': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663080': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663087': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663089': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663088': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1523639': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523638': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM2565124': {'construction': 'PLATE-Seq', 'drug': 'Vorinostat'}, 'GSM1155379': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1155378': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM2155048': {'gender': 'male', 'tissue': 'bone marrow', 'type': 'ALL cells', 'id': '8'}, 'GSM1523637': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM2155044': {'gender': 'female', 'tissue': 'bone marrow', 'type': 'ALL cells', 'id': '6'}, 'GSM1155370': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1155373': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1155372': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1155375': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1155374': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1155377': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM1155376': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM3190578': {'boca': 'Yes', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.958604'}, 'GSM3190579': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A66', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.179596'}, 'GSM3190572': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.373842'}, 'GSM3190573': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.621381'}, 'GSM3190570': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.924824'}, 'GSM3190571': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.335208'}, 'GSM3190576': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.060329'}, 'GSM3190577': {'boca': 'Yes', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.818491'}, 'GSM3190574': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.600689'}, 'GSM3190575': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.643717'}, 'GSM2108477': {'stages': 'myotube nucleus'}, 'GSM2108476': {'stages': 'myotube nucleus'}, 'GSM2108475': {'stages': 'myotube nucleus'}, 'GSM2108474': {'stages': 'myotube nucleus'}, 'GSM2108473': {'stages': 'myotube nucleus'}, 'GSM2108472': {'stages': 'myotube nucleus'}, 'GSM2108471': {'stages': 'myotube nucleus'}, 'GSM2108470': {'stages': 'myotube nucleus'}, 'GSM2108479': {'stages': 'myotube nucleus'}, 'GSM2108478': {'stages': 'myotube nucleus'}, 'GSM1365979': {'source': 'peripheral blood', 'line': 'U266', 'treatment': '5.AZA', 'timepoint': '4hr'}, 'GSM1275875': {'ercc_mix': '1', 'line': 'N061011', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Dexamethasone'}, 'GSM1275874': {'ercc_mix': '1', 'line': 'N061011', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Untreated'}, 'GSM1275877': {'ercc_mix': '1', 'line': 'N061011', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Albuterol_Dexamethasone'}, 'GSM1275876': {'ercc_mix': '1', 'line': 'N061011', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Albuterol'}, 'GSM1275871': {'ercc_mix': '-', 'line': 'N080611', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Dexamethasone'}, 'GSM1275870': {'ercc_mix': '-', 'line': 'N080611', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Untreated'}, 'GSM1980519': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1275872': {'ercc_mix': '-', 'line': 'N080611', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Albuterol'}, 'GSM1980517': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980516': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980515': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980514': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980513': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980512': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980511': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980510': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1821704': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9527+oil'}, 'GSM1821705': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9527'}, 'GSM1821706': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': 'control'}, 'GSM2153056': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM1821700': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9500'}, 'GSM1821701': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9500'}, 'GSM2153053': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153052': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2391013': {'disease': 'Pulmonary Hypertension'}, 'GSM2153059': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153058': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2735220': {'cohort': 'Paired', 'tils': '5', 'subtype': 'II', 'burden': '14', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735221': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'I', 'burden': '278', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735222': {'cohort': 'Paired', 'tils': '50', 'subtype': 'I', 'burden': '56', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735223': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '285', 'morphology': 'mixed (round & spindle)', 'event': 'Disease progression', 'stage': 'III'}, 'GSM2735224': {'cohort': 'Paired', 'tils': '10', 'subtype': 'I', 'burden': '17', 'morphology': 'differentiated', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735225': {'cohort': 'N/A', 'tils': '5', 'subtype': 'II', 'burden': 'Not evaluated', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735226': {'cohort': 'Paired', 'tils': '5', 'subtype': 'III', 'burden': '91', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735227': {'cohort': 'N/A', 'tils': '15', 'subtype': 'III', 'burden': 'Not evaluated', 'morphology': 'undifferentiated, spindle', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735228': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '17', 'morphology': 'N/A', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735229': {'cohort': 'Paired', 'tils': '10', 'subtype': 'I', 'burden': '19', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2526868': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526869': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526860': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526861': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526862': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526863': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526864': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526865': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526866': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526867': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2784637': {'digestion': 'PvuRts1l digested', 'tissue': 'Triple negative tumor 1', 'type': 'Triple negative tumor', 'treatment': '--'}, 'GSM2784636': {'digestion': 'PvuRts1l digested', 'tissue': 'normal tissue matched to triple negative tumor 1', 'type': 'normal', 'treatment': '--'}, 'GSM2723033': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.312', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.638', 'age': '51', 'tcga_subtype_dif': '-0.146', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.292', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2784639': {'digestion': 'PvuRts1l digested', 'tissue': 'Triple negative tumor 2', 'type': 'Triple negative tumor', 'treatment': '--'}, 'GSM2784638': {'digestion': 'PvuRts1l digested', 'tissue': 'normal tissue matched to triple negative tumor 2', 'type': 'normal', 'treatment': '--'}, 'GSM1945987': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18519', 'for': '60min'}, 'GSM1945986': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18519', 'for': '30min'}, 'GSM1945985': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18517', 'for': '60min'}, 'GSM1945984': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18517', 'for': '30min'}, 'GSM1945983': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18516', 'for': '60min'}, 'GSM1945982': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18516', 'for': '30min'}, 'GSM1945981': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18511', 'for': '60min'}, 'GSM1945980': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18511', 'for': '60min'}, 'GSM2175903': {'subtype': 'Central Memory T Cell (TCM)', 'age': '17 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Resting Latently Infected'}, 'GSM1945989': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18520', 'for': '60min'}, 'GSM1945988': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18520', 'for': '30min'}, 'GSM2175901': {'subtype': 'Central Memory T Cell (TCM)', 'age': '17 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Resting Uninfected'}, 'GSM2175900': {'subtype': 'Central Memory T Cell (TCM)', 'age': '19 days post extraction from host', 'type': 'CD4 T cell', 'state': 'Activated Latently Infected'}, 'GSM2138508': {'line': 'M263', 'state': 'Melanoma'}, 'GSM2138509': {'line': 'M297', 'state': 'Melanoma'}, 'GSM2138500': {'line': 'M411', 'state': 'Melanoma'}, 'GSM2138501': {'line': 'M238AR', 'state': 'Melanoma'}, 'GSM2138502': {'line': 'M255', 'state': 'Melanoma'}, 'GSM2138503': {'line': 'M409AR', 'state': 'Melanoma'}, 'GSM2138504': {'line': 'M420', 'state': 'Melanoma'}, 'GSM2138505': {'line': 'M395', 'state': 'Melanoma'}, 'GSM2138506': {'line': 'M308', 'state': 'Melanoma'}, 'GSM2138507': {'line': 'M229', 'state': 'Melanoma'}, 'GSM2300615': {'gender': 'male', 'type': 'Human glioblastoma'}, 'GSM2300617': {'gender': 'male', 'type': 'Human glioblastoma'}, 'GSM2300616': {'gender': 'male', 'type': 'Human glioblastoma'}, 'GSM2397435': {'line': 'Be2C', 'type': 'Neurablastoma cell line', 'variation': 'overexpression of vector control'}, 'GSM2397434': {'line': 'Be2C', 'type': 'Neurablastoma cell line', 'variation': 'overexpression of LMO1'}, 'GSM2397436': {'line': 'Be2C', 'type': 'Neurablastoma cell line', 'variation': 'overexpression of vector control'}, 'GSM2300619': {'gender': 'male', 'type': 'Human glioblastoma'}, 'GSM2300618': {'gender': 'male', 'type': 'Human glioblastoma'}, 'GSM2128336': {'strain': 'clone of A673', 'batch': '2', 'treatment': 'transfected with sponge against miR-10b, replicate2'}, 'GSM2128337': {'strain': 'clone of A673', 'batch': '2', 'treatment': 'transfected with sponge against miR-9, replicate1'}, 'GSM2128334': {'strain': 'clone of A673', 'batch': '2', 'treatment': 'transfected with CXCR4 control sponge'}, 'GSM2128335': {'strain': 'clone of A673', 'batch': '2', 'treatment': 'transfected with sponge against miR-10b, replicate1'}, 'GSM2128332': {'strain': 'clone of A673', 'batch': '1', 'treatment': 'transfected with sponge against microRNA 17-92 cluster members, replicateB'}, 'GSM2128333': {'strain': 'clone of A673', 'batch': '2', 'treatment': 'transfected with CXCR4 control sponge'}, 'GSM2128330': {'strain': 'clone of A673', 'batch': '1', 'treatment': 'transfected with CXCR4 control sponge'}, 'GSM2128331': {'strain': 'clone of A673', 'batch': '1', 'treatment': 'transfected with sponge against microRNA 17-92 cluster members, replicateA'}, 'GSM2128338': {'strain': 'clone of A673', 'batch': '2', 'treatment': 'transfected with sponge against miR-9, replicate2'}, 'GSM2325665': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'BG exposed 24 hours, culture media only for 48 hours, LPS exposed for 4 hours.'}, 'GSM2325664': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'BG exposed 24 hours, culture media only for 48 hours'}, 'GSM2325667': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'LPS exposed 24 hours, culture media only for 48 hours, LPS exposed for 4 hours.'}, 'GSM2325666': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'LPS exposed 24 hours, culture media only for 48 hours'}, 'GSM2122558': {'line': 'HTR-8/SVneo', 'transfection': 'siControl', 'variation': 'control', 'time': '48h after transfection'}, 'GSM2325669': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'Culture media for 3 days, LPS exposed for 4 hours.'}, 'GSM2325668': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'Culture media for 3 days'}, 'GSM2324398': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324399': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324396': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324397': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324394': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324395': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324392': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324393': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324390': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2324391': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'Control'}, 'GSM2122559': {'line': 'HTR-8/SVneo', 'transfection': 'siH19', 'variation': 'H19 knockdown', 'time': '48h after transfection'}, 'GSM2515697': {'age': '52', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2158319': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2172191': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172190': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172193': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172192': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172195': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172194': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172197': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172196': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172199': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172198': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2231429': {'transduction': 'Sox9-T236/240A', 'line': 'MB002', 'type': 'Medulloblastoma cell line'}, 'GSM2231428': {'transduction': 'Sox9 wild type', 'line': 'MB002', 'type': 'Medulloblastoma cell line'}, 'GSM2166358': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166359': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166356': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166357': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166354': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166355': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166352': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166353': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166350': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166351': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2243607': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2451443': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451442': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451441': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451440': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451446': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451445': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM2451444': {'line': 'HMVEC-L', 'type': 'lung microvascular endothelial cells'}, 'GSM1888679': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888678': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM984355': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM1888671': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888670': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888673': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888672': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888675': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888674': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888677': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888676': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1858937': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'LTR362'}, 'GSM1858936': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'LTR362'}, 'GSM1255335': {'tissue': 'islets', 'antibody': 'Argonaute antibody 2A8 (Zissimos Mourelatos lab)'}, 'GSM1255336': {'tissue': 'islets', 'antibody': 'Argonaute antibody 2A9 (Zissimos Mourelatos lab)'}, 'GSM1293581': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1293580': {'tissue': 'serum', 'group': 'young', 'years': '30'}, 'GSM1274548': {'line': 'MCF10A'}, 'GSM1262400': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'type': 'Mesenchymal stem cell', 'variation': 'WRN-KO'}, 'GSM1262401': {'antibody': 'H3K27me3 (CST, 9733)', 'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM1262402': {'antibody': 'H3K27me3 (CST, 9733)', 'type': 'Mesenchymal stem cell', 'variation': 'WRN-KO'}, 'GSM1262403': {'antibody': 'IgG (Santa Cruz, sc-2027, rabbit)', 'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM2133918': {'type': 'breast adenocarcinoma', 'treatment': 'DMSO'}, 'GSM2133919': {'type': 'breast adenocarcinoma', 'treatment': 'DMSO'}, 'GSM984356': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM2176033': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176030': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176031': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1440482': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440483': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440480': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440481': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440486': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440487': {'type': 'non-neoplastic brain'}, 'GSM1440484': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440485': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440488': {'type': 'non-neoplastic brain'}, 'GSM1440489': {'type': 'non-neoplastic brain'}, 'GSM2133910': {'status': 'mild metabolic syndrome', 'type': 'pheripheral mononuclear cells', 'group': 'pterocarpan-rich extract soybean leaf (PT)', 'id': 'PT_4', 'point': 'before PT-supplemented'}, 'GSM1946043': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18870', 'for': '60min'}, 'GSM1946042': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18870', 'for': '60min'}, 'GSM1946041': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18870', 'for': '60min'}, 'GSM1946040': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18870', 'for': '30min'}, 'GSM1946047': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18907', 'for': '60min'}, 'GSM1946046': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18907', 'for': '30min'}, 'GSM1946045': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18907', 'for': '30min'}, 'GSM1946044': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18907', 'for': '30min'}, 'GSM2133916': {'disease': 'Chronic periodontitis'}, 'GSM1946049': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18907', 'for': '60min'}, 'GSM1946048': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18907', 'for': '60min'}, 'GSM2133917': {'type': 'breast adenocarcinoma', 'treatment': 'DMSO'}, 'GSM2247653': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247652': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247651': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247650': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247657': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247656': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247655': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247654': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1631707': {'type': 'CD34+ cell', 'treatment': '5uM 11,12-EET for 2 hrs'}, 'GSM2247659': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247658': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1575559': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-503'}, 'GSM1575558': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-503'}, 'GSM1394613': {'type': 'iPSC-derived neurons', 'variation': 'carrying heterozygous 4bp deletion in DISC1 gene', 'time': '4 weeks'}, 'GSM1394612': {'type': 'iPSC-derived neurons', 'variation': 'carrying heterozygous 4bp deletion in DISC1 gene', 'time': '4 weeks'}, 'GSM1394611': {'type': 'iPSC-derived neurons', 'variation': 'carrying heterozygous 4bp deletion in DISC1 gene', 'time': '4 weeks'}, 'GSM1394610': {'type': 'iPSC-derived neurons', 'variation': 'carrying heterozygous 4bp deletion in DISC1 gene', 'time': '4 weeks'}, 'GSM1394614': {'type': 'iPSC-derived neurons', 'variation': 'carrying heterozygous 4bp deletion in DISC1 gene', 'time': '4 weeks'}, 'GSM2136850': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 5 days, AF9 Knock Down', 'batch': '1'}, 'GSM2230434': {'antibody': 'none', 'region': 'Ventral Mesencephalon', 'type': 'NA', 'age': '11 weeks'}, 'GSM1556180': {'subtype': 'basal', 'line': 'MDAMB468', 'agent': 'PKC412'}, 'GSM2136852': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 3 days, ENL Knock Down', 'batch': '1'}, 'GSM2136853': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 5 days, ENL Knock Down', 'batch': '1'}, 'GSM1607388': {'tissue': 'Foreskin', 'antibody': 'H3K4me3 (Diagenode. Cat: C15410003-50)', 'passage': '2'}, 'GSM2230431': {'antibody': 'none', 'region': 'Posterior basal plate', 'type': 'NA', 'age': '8 weeks, 6 days'}, 'GSM1607389': {'tissue': 'Foreskin', 'antibody': '5-Methylcytosine (Eurogentec. Cat: BI-MECY-0100)', 'passage': '2'}, 'GSM1557750': {'transfection': 'Control siRNA'}, 'GSM2136856': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 3 days, ENL Knock Down', 'batch': '1'}, 'GSM2136857': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 5 days, ENL Knock Down', 'batch': '1'}, 'GSM1607384': {'tissue': 'Foreskin', 'antibody': 'Dnmt3b (Novus Biotechnology. Cat: NB100-266)', 'passage': '2'}, 'GSM2807390': {'tissue': 'Hepatoblastoma cell line', 'type': 'cell line'}, 'GSM1607385': {'tissue': 'Foreskin', 'antibody': 'none, input', 'passage': '2'}, 'GSM2205844': {'type': 'Tumor tissue'}, 'GSM2205845': {'type': 'Noncancerous tissue'}, 'GSM2205846': {'type': 'Tumor tissue'}, 'GSM2807391': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2205848': {'type': 'Tumor tissue'}, 'GSM2205849': {'type': 'Noncancerous tissue'}, 'GSM2807392': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2256123': {'infected': 'k562_unique:TSS87020_+_135644461.23-CUFF.42626.1', 'type': 'K562'}, 'GSM2256122': {'infected': 'k562_unique:TSS87020_-_135644614.23-CUFF.42626.1', 'type': 'K562'}, 'GSM2256121': {'infected': 'hff_unique:TSS77978_-_185306981.23-CUFF.37322.1', 'type': 'K562'}, 'GSM2256120': {'infected': 'k562_hela:TSS37190_+_2870762.23-CUFF.17050.1', 'type': 'K562'}, 'GSM2256127': {'infected': 'u87_hek:TSS80115_+_114598271.23-ENST00000606615', 'type': 'U87'}, 'GSM2256126': {'infected': 'u87_hek:TSS80115_-_114598258.23-ENST00000606615', 'type': 'U87'}, 'GSM2256125': {'infected': 'u87_unique:TSS93446_+_130598335.23-CUFF.46096.31', 'type': 'U87'}, 'GSM2256124': {'infected': 'u87_unique:TSS93446_-_130598311.23-CUFF.46096.31', 'type': 'U87'}, 'GSM2807394': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2256129': {'infected': 'common:TSS80058_+_111496631.23-P1P2', 'type': 'U87'}, 'GSM2256128': {'infected': 'common:TSS80058_+_111496674.23-P1P2', 'type': 'U87'}, 'GSM2200846': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2807396': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM1464285': {'status': 'healthy'}, 'GSM1464288': {'status': 'healthy'}, 'GSM2459014': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '15.92'}, 'GSM1464289': {'status': 'small cell lung cancer'}, 'GSM2459015': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.17'}, 'GSM1885144': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885145': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885146': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885147': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885140': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885141': {'status': 'control', 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885142': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885143': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1646715': {'status': 'Tumor', 'gender': 'M', 'age': '43', 'tissue': 'liver'}, 'GSM2459010': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.92'}, 'GSM2459011': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '9.17'}, 'GSM862349': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Strophanthidin'}, 'GSM2754888': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_1020', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754885': {'bin': '5', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754884': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754887': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '01_0993', 'previousdiagnosisoftb': 'No', 'tst': '20', 'type': 'Tcells'}, 'GSM2754886': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_1020', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754881': {'bin': '5', 'group': 'case', 'qft': 'negative', 'gender': 'male', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754880': {'bin': '2', 'group': 'Not a PP case', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_0909', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754883': {'bin': '5', 'group': 'case', 'qft': 'indeterminate', 'gender': 'male', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': '20', 'type': 'Tcells'}, 'GSM2754882': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1387914': {'line': 'MRC5'}, 'GSM1387915': {'line': 'MRC5'}, 'GSM1387916': {'line': 'MRC5'}, 'GSM1387917': {'line': 'MRC5'}, 'GSM1387910': {'line': 'MRC5'}, 'GSM1387911': {'line': 'MRC5'}, 'GSM1387912': {'line': 'MRC5'}, 'GSM1387913': {'line': 'MRC5'}, 'GSM1387918': {'line': 'MRC5'}, 'GSM1387919': {'line': 'MRC5'}, 'GSM2465738': {'tissue': 'cord blood', 'type': 'CD34+ Erythroblasts', 'subject': 'Healthy Donor 4'}, 'GSM2131242': {'tissue': 'liver metastasis', 'protocol': '10% FBS'}, 'GSM2131243': {'tissue': 'liver metastasis', 'protocol': '10% FBS'}, 'GSM2131248': {'tissue': 'lung metastasis, 6AN treated', 'protocol': '10% FBS', 'treatment': '6AN treated'}, 'GSM2131249': {'tissue': 'lung metastasis, 6AN treated', 'protocol': '10% FBS', 'treatment': '6AN treated'}, 'GSM2374351': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374350': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374357': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2374356': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374355': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374354': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2158089': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158088': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158083': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158082': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158081': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158080': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158087': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158086': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158085': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158084': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1274258': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '48hr'}, 'GSM1274259': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '48hr'}, 'GSM1274256': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '6hr'}, 'GSM1274257': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '48hr'}, 'GSM1274254': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '6hr'}, 'GSM1274255': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'Hypoxia', 'time': '6hr'}, 'GSM1274253': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '6hr'}, 'GSM1133261': {'line': 'HeLa'}, 'GSM1133260': {'line': 'HeLa'}, 'GSM2194991': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1102650': {'line': 'MCF7', 'type': 'human breast cancer'}, 'GSM1102651': {'line': 'T47D', 'type': 'human breast cancer'}, 'GSM2425664': {'tissue': 'normal brain', 'stage': 'normal'}, 'GSM1338759': {'start': 'NA', 'type': 'Foreskin fibroblasts (HF1)', 'dna': 'NA', 'group': 'Control', 'time': '30 minutes'}, 'GSM2425666': {'tissue': 'normal brain', 'stage': 'normal'}, 'GSM2425667': {'tissue': 'normal brain', 'stage': 'normal'}, 'GSM2425660': {'tissue': 'glioblastoma', 'stage': 'WHO IV'}, 'GSM2425661': {'tissue': 'glioblastoma', 'stage': 'WHO IV'}, 'GSM2425662': {'tissue': 'glioblastoma', 'stage': 'WHO IV'}, 'GSM2425663': {'tissue': 'normal brain', 'stage': 'normal'}, 'GSM2194990': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1968988': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'control'}, 'GSM1968989': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'control'}, 'GSM1968987': {'line': 'CHLA25 Ewing sarcoma cell line', 'type': 'control'}, 'GSM2048605': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2653829': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653828': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653825': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653824': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653827': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653826': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653821': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653820': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653823': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653822': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2526892': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2374768': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2632513': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2374765': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2492134': {'type': 'Small Airway Epithelial Cells', 'agent': 'blasticidin', 'variation': 'GFP'}, 'GSM2374762': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374763': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM814537': {'status': '3 Current', 'age': '41.7', 'packyears': '21.5', 'cancer': '3 No', 'Sex': '1 Male, 2 Female'}, 'GSM814536': {'status': '3 Never', 'age': '29.7', 'cancer': '3 No', 'Sex': '3 Female'}, 'GSM814539': {'status': '2 Former, 1 Current', 'age': '64.7', 'packyears': '75.7', 'cancer': '3 Yes', 'Sex': '2 Male, 1 Female'}, 'GSM814538': {'status': '2 Former, 1 Current', 'age': '49', 'packyears': '49.5', 'cancer': '3 No', 'Sex': '1 Male, 2 Female'}, 'GSM2073124': {'status': 'Zika infected', 'type': 'Neural Progenitor cells'}, 'GSM2492135': {'type': 'Small Airway Epithelial Cells', 'agent': 'puromycin', 'variation': 'GFP'}, 'GSM2073121': {'status': 'mock infected', 'type': 'Neural Progenitor cells'}, 'GSM2073122': {'status': 'mock infected', 'type': 'Neural Progenitor cells'}, 'GSM2073123': {'status': 'Zika infected', 'type': 'Neural Progenitor cells'}, 'GSM2089767': {'line': 'MOLT4', 'treatment': 'dBET6', 'point': '6h'}, 'GSM2089766': {'line': 'MOLT4', 'treatment': 'dBET6', 'point': '6h'}, 'GSM2089765': {'line': 'MOLT4', 'treatment': 'dBET6', 'point': '6h'}, 'GSM2089764': {'line': 'MOLT4', 'treatment': 'dBET6', 'point': '2h'}, 'GSM2089763': {'line': 'MOLT4', 'treatment': 'dBET6', 'point': '2h'}, 'GSM2089762': {'line': 'MOLT4', 'treatment': 'dBET6', 'point': '2h'}, 'GSM2089761': {'line': 'MOLT4', 'treatment': 'JQ1', 'point': '6h'}, 'GSM2089760': {'line': 'MOLT4', 'treatment': 'JQ1', 'point': '6h'}, 'GSM1841273': {'tissue': 'Heart', 'diagnosis': 'dilated cardiomyopathy'}, 'GSM1841270': {'tissue': 'Heart', 'diagnosis': 'dilated cardiomyopathy'}, 'GSM2596481': {'state': 'wild type(Corrected)', 'type': 'iPSC-derived macrophage', 'treatment': 'No'}, 'GSM2596483': {'state': 'wild type(Corrected)', 'type': 'iPSC-derived macrophage', 'treatment': 'Yes'}, 'GSM2596485': {'state': 'wild type', 'type': 'ESC-derived macrophage', 'treatment': 'No'}, 'GSM2596486': {'state': 'wild type', 'type': 'ESC-derived macrophage', 'treatment': 'Yes'}, 'GSM2596488': {'state': 'wild type', 'type': 'ESC-derived macrophage', 'treatment': 'No'}, 'GSM5420355': {'differentiation': 'M-CSF', 'donor': 'Donor 5'}, 'GSM5420356': {'differentiation': 'GM-CSF', 'donor': 'Donor 5'}, 'GSM5420357': {'differentiation': 'M. obuense', 'donor': 'Donor 5'}, 'GSM5420358': {'differentiation': 'M-CSF', 'donor': 'Donor 6'}, 'GSM5420359': {'differentiation': 'GM-CSF', 'donor': 'Donor 6'}, 'GSM2561616': {'protocol': 'Cultured without T3', 'variation': 'isogenic corrected MCT8-deficient'}, 'GSM2561617': {'protocol': 'Cultured without T3', 'variation': 'isogenic corrected MCT8-deficient'}, 'GSM1587499': {'line': 'PC3', 'tissue': 'prostate', 'type': 'cancer cell', 'treatment': 'BenSer'}, 'GSM1587498': {'line': 'PC3', 'tissue': 'prostate', 'type': 'cancer cell', 'treatment': 'none'}, 'GSM2561612': {'protocol': 'Cultured with T3 100nM', 'variation': 'isogenic corrected MCT8-deficient'}, 'GSM2561613': {'protocol': 'Cultured with T3 100nM', 'variation': 'isogenic corrected MCT8-deficient'}, 'GSM2561610': {'protocol': 'Cultured without T3', 'variation': 'healthy control'}, 'GSM1249903': {'chirp': 'accttgagagcttgtttggagg', 'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siBrd4-1'}, 'GSM1587497': {'line': 'PC3', 'tissue': 'prostate', 'type': 'cancer cell', 'treatment': 'none'}, 'GSM1249900': {'chirp': 'accttgagagcttgtttggagg', 'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siCTL'}, 'GSM2561618': {'protocol': 'Cultured with T3 100nM', 'variation': 'isogenic induced mutation on a control background'}, 'GSM2561619': {'protocol': 'Cultured with T3 100nM', 'variation': 'isogenic induced mutation on a control background'}, 'GSM1249901': {'chirp': 'accttgagagcttgtttggagg', 'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siJMJD6-1'}, 'GSM1249906': {'line': 'HeLa cervical cancerÂ\\xa0cellsÂ\\xa0', 'antibody': 'Brd4', 'details': 'ab46199 (Abcam)'}, 'GSM1249907': {'line': 'HeLa cervical cancerÂ\\xa0cellsÂ\\xa0', 'antibody': 'AcH3', 'details': '06-599 (Millipore)'}, 'GSM1249904': {'chirp': 'accttgagagcttgtttggagg', 'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siBrd4-2'}, 'GSM1249905': {'line': 'HeLa cervical cancerÂ\\xa0cellsÂ\\xa0', 'antibody': 'JMJD6', 'details': 'ab10526 (Abcam)'}, 'GSM1969299': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Head and neck'}, 'GSM1969298': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Trunk wall'}, 'GSM1969295': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM1969294': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM1969297': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM1969296': {'metastasis': 'Yes', 'fusion': 'Yes', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Trunk wall'}, 'GSM1969293': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1598044': {'vendor': 'Abcam', 'tissue': 'fetal liver', 'antibody': 'H3K4me3', 'stage': '12 weeks after gestation'}, 'GSM1598045': {'vendor': 'Abcam', 'tissue': 'fetal liver', 'antibody': 'H3K4me3', 'stage': '12 weeks after gestation'}, 'GSM1598040': {'vendor': 'CST', 'tissue': 'fetal liver', 'antibody': 'H3K27me3', 'stage': '12 weeks after gestation'}, 'GSM1598041': {'tissue': 'fetal liver', 'antibody': 'H3K27me3 (CST, #9733)', 'stage': '12 weeks after gestation'}, 'GSM1598042': {'vendor': 'Abcam', 'tissue': 'fetal liver', 'antibody': 'H3K4me1', 'stage': '12 weeks after gestation'}, 'GSM1598043': {'vendor': 'Abcam', 'tissue': 'fetal liver', 'antibody': 'H3K4me1', 'stage': '12 weeks after gestation'}, 'GSM1963860': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963861': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963862': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963863': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963864': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963865': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963866': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963867': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963868': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963869': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM2341638': {'source': 'H3K9me2 (Abcam: ab1220, GR98362-1)', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341639': {'source': 'CTCF (ActiveMotif: #61311, lot# 16712001)', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341630': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'Nup153'}, 'GSM2341631': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'Nup153'}, 'GSM2341632': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'Nup93'}, 'GSM2341633': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'Nup93'}, 'GSM2341634': {'source': 'none', 'line': 'IMR90', 'RNAi': 'none', 'factor': 'GFP'}, 'GSM2341635': {'source': 'none', 'line': 'IMR90', 'RNAi': 'none', 'factor': 'Nup153'}, 'GSM2341636': {'source': 'H3K27ac (Abcam: ab4729, GR184557-2)', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'none'}, 'GSM2341637': {'source': 'H3K4me3 (Abcam: ab8580, GR273043-2)', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'none'}, 'GSM2787799': {'line': 'CUTLL1', 'type': 'T cell leukemia'}, 'GSM2787798': {'line': 'CUTLL1', 'type': 'T cell leukemia'}, 'GSM2787791': {'line': 'Koptk1', 'type': 'T cell leukemia'}, 'GSM2787790': {'line': 'CUTLL1', 'type': 'T cell leukemia'}, 'GSM2787793': {'line': 'Koptk1', 'type': 'T cell leukemia'}, 'GSM2787792': {'line': 'Koptk1', 'type': 'T cell leukemia'}, 'GSM2787795': {'line': 'HpbALL', 'type': 'T cell leukemia'}, 'GSM2787794': {'line': 'HpbALL', 'type': 'T cell leukemia'}, 'GSM2787797': {'line': 'HpbALL', 'type': 'T cell leukemia'}, 'GSM2787796': {'line': 'HpbALL', 'type': 'T cell leukemia'}, 'GSM3586496': {'origin': 'GCB', 'pfstt': '925', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '925', 'cycles': '6', 'oscs': '0'}, 'GSM3586497': {'origin': 'GCB', 'pfstt': '195', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '782', 'cycles': '6', 'oscs': '0'}, 'GSM3586494': {'origin': 'GCB', 'pfstt': '868', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1012', 'cycles': '6', 'oscs': '0'}, 'GSM1666050': {'line': 'melanoma cell line A375P', 'agent': 'SCH772984'}, 'GSM3586492': {'origin': 'UNCLASSIFIED', 'pfstt': '292', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '292', 'cycles': '6', 'oscs': '1'}, 'GSM3586493': {'origin': 'GCB', 'pfstt': '931', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1110', 'cycles': '6', 'oscs': '0'}, 'GSM3586490': {'origin': 'ABC', 'pfstt': '1297', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1297', 'cycles': '6', 'oscs': '0'}, 'GSM3586491': {'origin': 'UNCLASSIFIED', 'pfstt': '1112', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1304', 'cycles': '6', 'oscs': '0'}, 'GSM3586498': {'origin': 'GCB', 'pfstt': '725', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '817', 'cycles': '6', 'oscs': '0'}, 'GSM3586499': {'origin': 'UNCLASSIFIED', 'pfstt': '747', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '834', 'cycles': '6', 'oscs': '0'}, 'GSM1055808': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1055809': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1055800': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1055801': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1055802': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1055803': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1055804': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'flavopiridol (1μM, 2hr)'}, 'GSM1055805': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1055806': {'enzyme': 'no', 'experiment': 'GRO-seq', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1055807': {'enzyme': 'no', 'experiment': 'GRO-seq', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM2455645': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455644': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455647': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455646': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455641': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455640': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455643': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2274999': {'area_under_the_curve': '0.640795313', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '128.0090919', 'auc_percent_of_baseline': '128.0090919', 'trunkbarcode': '933799', 'sampleID': 'S10706', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib842', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '2,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'race': 'White; White', 'libraryid': 'lib843', 'studysiteshort': 'YALE'}, 'GSM2274996': {'area_under_the_curve': '0.257249063', 'siteandparticipantcode': '604690', 'baseline_area_under_the_curve': '0.477415781', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '53.88365291', 'auc_percent_of_baseline': '53.88365291', 'trunkbarcode': '924916', 'sampleID': 'S10702', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib839', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_604690', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib840', 'studysiteshort': 'MC GEORGIA'}, 'GSM2274997': {'area_under_the_curve': '0.078095313', 'siteandparticipantcode': '161201', 'baseline_area_under_the_curve': '0.402733906', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '19.39129318', 'auc_percent_of_baseline': '19.39129318', 'trunkbarcode': '931981', 'sampleID': 'S10704', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib840', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_161201', 'gender': 'Male', 'age': '10', 'race': 'White; White', 'libraryid': 'lib841', 'studysiteshort': 'YALE'}, 'GSM2274994': {'area_under_the_curve': '1.365943906', 'siteandparticipantcode': '666079', 'baseline_area_under_the_curve': '0.789331563', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '173.0507142', 'auc_percent_of_baseline': '173.0507142', 'trunkbarcode': '915916', 'sampleID': 'S10698', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib837', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_666079', 'gender': 'Male', 'age': '16', 'race': 'White; American Indian or Alaska Native', 'libraryid': 'lib837', 'studysiteshort': 'PNRI'}, 'GSM2274995': {'area_under_the_curve': '0', 'siteandparticipantcode': '693516', 'baseline_area_under_the_curve': '0.498775625', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '0', 'auc_percent_of_baseline': '0', 'trunkbarcode': '921846', 'sampleID': 'S10699', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib838', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_693516', 'gender': 'Male', 'age': '15', 'race': 'White', 'libraryid': 'lib839', 'studysiteshort': 'PNRI'}, 'GSM2455649': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455648': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2274990': {'area_under_the_curve': '1.198478594', 'siteandparticipantcode': '770569', 'baseline_area_under_the_curve': '1.236491875', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '96.92571524', 'auc_percent_of_baseline': '96.92571524', 'trunkbarcode': '934443', 'sampleID': 'S10692', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib833', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_770569', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib833', 'studysiteshort': 'BRI-VM'}, 'GSM2274991': {'area_under_the_curve': '0.558872813', 'siteandparticipantcode': '289534', 'baseline_area_under_the_curve': '0.818449219', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '68.28436019', 'auc_percent_of_baseline': '68.28436019', 'trunkbarcode': '934442', 'sampleID': 'S10693', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib834', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_289534', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib834', 'studysiteshort': 'BRI-VM'}, 'GSM2348765': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348764': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348767': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348766': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348761': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348760': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348763': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348762': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348769': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348768': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM920988': {'barcode': 'TAGTCG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd2'}, 'GSM920989': {'barcode': 'TAGAGA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd3'}, 'GSM920986': {'barcode': 'CACAAG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Noninduced', 'name': 'Daphne', 'day': 'd0'}, 'GSM920987': {'barcode': 'ATCAAC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd1'}, 'GSM920984': {'barcode': 'ATGCTT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd6'}, 'GSM920985': {'barcode': 'AGTTTA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd7'}, 'GSM920982': {'barcode': 'TATGTA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd4'}, 'GSM920983': {'barcode': 'ACAATA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd5'}, 'GSM920980': {'barcode': 'TCGTAA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd2'}, 'GSM920981': {'barcode': 'CCAGAC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd3'}, 'GSM2170691': {'stage': 'Hepatic endoderm 2'}, 'GSM2458767': {'induction': 'none', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'total RNA'}, 'GSM1669557': {'experiment': '2', 'type': 'BEAS2B cells', 'treatment': '10 % O2 tension in vitro for 3 weeks'}, 'GSM1669556': {'experiment': '1', 'type': 'BEAS2B cells', 'treatment': '10 % O2 tension in vitro for 3 weeks'}, 'GSM1669555': {'experiment': '2', 'type': 'BEAS2B cells', 'treatment': '21% O2 tension in vitro for 3 days'}, 'GSM1669554': {'experiment': '1', 'type': 'BEAS2B cells', 'treatment': '21% O2 tension in vitro for 3 days'}, 'GSM1669553': {'experiment': '2', 'type': 'BEAS2B cells', 'treatment': '10 % O2 tension in vitro for 3 days'}, 'GSM1669552': {'experiment': '1', 'type': 'BEAS2B cells', 'treatment': '10 % O2 tension in vitro for 3 days'}, 'GSM2571080': {'line': 'IER5_enhancer_KO#1', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571081': {'line': 'IER5_enhancer_KO#1', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1669559': {'experiment': '2', 'type': 'BEAS2B cells', 'treatment': '150 uM H2O2 added and then cultured at 10 % O2 tension in vitro for 3 days'}, 'GSM1669558': {'experiment': '1', 'type': 'BEAS2B cells', 'treatment': '150 uM H2O2 added and then cultured at 10 % O2 tension in vitro for 3 days'}, 'GSM2186952': {'sensitivity': 'sensitive', 'type': '3D culture'}, 'GSM2186953': {'sensitivity': 'resisitant', 'type': '3D culture'}, 'GSM2712760': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'largazole 37.5nM', 'disease': 'colorectal carcinoma'}, 'GSM2712761': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'largazole 75nM', 'disease': 'colorectal carcinoma'}, 'GSM2712766': {'line': 'HCT116', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'treatment': 'largazole 300nM', 'disease': 'colorectal carcinoma'}, 'GSM2712767': {'line': 'HCT116', 'antibody': 'H3K4me2 (Abcam, ab7766)', 'treatment': 'DMSO', 'disease': 'colorectal carcinoma'}, 'GSM1965008': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2186954': {'sensitivity': 'resisitant', 'type': '3D culture'}, 'GSM2186955': {'sensitivity': 'resisitant', 'type': '3D culture'}, 'GSM2137721': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib and AZ1366 treated'}, 'GSM2479708': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'young adult'}, 'GSM2479709': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'old adult'}, 'GSM2137720': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib and AZ1366 treated'}, 'GSM2479702': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'young adult'}, 'GSM2479703': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'old adult'}, 'GSM2479700': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479701': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'young adult'}, 'GSM2479706': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2712768': {'line': 'HCT116', 'antibody': 'H3K4me2 (Abcam, ab7766)', 'treatment': 'largazole 75nM', 'disease': 'colorectal carcinoma'}, 'GSM2479704': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'dendritic cells', 'stage': 'old adult'}, 'GSM2479705': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM2889051': {'tissue': 'pancreatic islets'}, 'GSM2889050': {'tissue': 'pancreatic islets'}, 'GSM2889053': {'tissue': 'pancreatic islets'}, 'GSM2889052': {'tissue': 'pancreatic islets'}, 'GSM2889055': {'tissue': 'pancreatic islets'}, 'GSM2889054': {'tissue': 'pancreatic islets'}, 'GSM2889057': {'tissue': 'pancreatic islets'}, 'GSM2889056': {'tissue': 'pancreatic islets'}, 'GSM2889059': {'tissue': 'pancreatic islets'}, 'GSM2889058': {'tissue': 'pancreatic islets'}, 'GSM2405953': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF38A knockdown'}, 'GSM2564736': {'tumor': 'acute monocytic leukemia', 'line': 'MonoMac 6', 'shRNA': 'shNS (non-specific control)'}, 'GSM2564737': {'tumor': 'acute monocytic leukemia', 'line': 'MonoMac 6', 'shRNA': 'shM14-#2'}, 'GSM2564734': {'tumor': 'acute monocytic leukemia', 'line': 'NB4', 'shRNA': 'shNS (non-specific control)'}, 'GSM2564735': {'tumor': 'acute monocytic leukemia', 'line': 'NB4', 'shRNA': 'shM14-#2'}, 'GSM2402818': {'line': 'SW620', 'tissue': 'colon', 'variation': 'YAP/TAZ KD'}, 'GSM2564733': {'tumor': 'acute monocytic leukemia', 'line': 'NB4', 'shRNA': 'shM14-#2'}, 'GSM1695736': {'type': 'CD24bright/CD44bright', 'line': 'HT-29', 'growth': 'adherence', 'tissue': 'colon carcinoma'}, 'GSM1695737': {'type': 'CD24dim/CD44dim', 'line': 'HT-29', 'growth': 'adherence', 'tissue': 'colon carcinoma'}, 'GSM2307203': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2402815': {'line': 'SW620', 'tissue': 'colon', 'variation': 'TIAM1 KD'}, 'GSM2307201': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2402817': {'line': 'SW620', 'tissue': 'colon', 'variation': 'YAP/TAZ KD'}, 'GSM2307207': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307206': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2402812': {'line': 'SW620', 'tissue': 'colon', 'variation': 'WT'}, 'GSM2307204': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM1868787': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868786': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868785': {'type': 'Central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868784': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1695198': {'subtype': 'uninvolved kidney', 'tag': 'ActiveMotif #61101', 'type': 'kidney'}, 'GSM1695199': {'subtype': 'uninvolved kidney', 'tag': 'ActiveMotif #61101', 'type': 'kidney'}, 'GSM1868781': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868780': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1115204': {'line': 'BJ cells', 'condition': 'Control sample'}, 'GSM1115207': {'line': 'BJ cells', 'condition': 'Nutlin-3a, 2h'}, 'GSM1695197': {'subtype': 'uninvolved kidney', 'tag': 'ActiveMotif #61101', 'type': 'kidney'}, 'GSM1868789': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868788': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2071849': {'type': 'breast cancer'}, 'GSM2071848': {'type': 'breast cancer'}, 'GSM2394498': {'id': 'IonXpress_059', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_MB', 'point': 'after 12h of compound treatment'}, 'GSM2394499': {'id': 'IonXpress_060', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2718908': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718909': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2394492': {'id': 'IonXpress_053', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'YC-1', 'point': 'after 12h of compound treatment'}, 'GSM2718905': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718906': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718907': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718900': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2394497': {'id': 'IonXpress_058', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'H-89', 'point': 'after 12h of compound treatment'}, 'GSM2718902': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718903': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2154692': {'source': 'Lonza (donor 7F3674; Walkersville, MD)', 'passages': '5 or 6', 'treatment': 'control'}, 'GSM2154693': {'source': 'Lonza (donor 7F3674; Walkersville, MD)', 'passages': '5 or 6', 'treatment': 'with LPS (10ng/ml) for 4 hrs'}, 'GSM2154690': {'source': 'Lonza (donor 7F3674; Walkersville, MD)', 'passages': '5 or 6', 'treatment': 'control'}, 'GSM2154691': {'source': 'Lonza (donor 7F3674; Walkersville, MD)', 'passages': '5 or 6', 'treatment': 'control'}, 'GSM2154694': {'source': 'Lonza (donor 7F3674; Walkersville, MD)', 'passages': '5 or 6', 'treatment': 'with LPS (10ng/ml) for 4 hrs'}, 'GSM2154695': {'source': 'Lonza (donor 7F3674; Walkersville, MD)', 'passages': '5 or 6', 'treatment': 'with LPS (10ng/ml) for 4 hrs'}, 'GSM960596': {'line': '584-A2', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM960591': {'line': '584-A2', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'Untreated'}, 'GSM960593': {'line': '584-A2', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM960599': {'line': '584-A2', 'type': 'Head and Neck Squamous Cell Carcinoma cells', 'agent': 'DMSO'}, 'GSM2109668': {'line': '1205Lu', 'treatment': 'pCMV6', 'stage': 'metastatic'}, 'GSM2109665': {'line': '1205Lu', 'treatment': 'pCMV6-SOX10', 'stage': 'metastatic'}, 'GSM2109664': {'line': '1205Lu', 'treatment': 'pCMV6-SOX10', 'stage': 'metastatic'}, 'GSM2109667': {'line': '1205Lu', 'treatment': 'pCMV6', 'stage': 'metastatic'}, 'GSM2109666': {'line': '1205Lu', 'treatment': 'pCMV6', 'stage': 'metastatic'}, 'GSM2109663': {'line': '1205Lu', 'treatment': 'pCMV6-SOX10', 'stage': 'metastatic'}, 'GSM2252660': {'stimulation': '1 hour stimulation with A82V/T230A M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252661': {'stimulation': '2 hour stimulation with A82V/T230A M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252662': {'stimulation': '4 hour stimulation with A82V/T230A M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252663': {'stimulation': '6 hour stimulation with A82V/T230A M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252664': {'stimulation': '1 hour stimulation with founder M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252665': {'stimulation': '2 hour stimulation with founder M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252666': {'stimulation': '4 hour stimulation with founder M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252667': {'stimulation': '6 hour stimulation with founder M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252668': {'stimulation': 'Unstimulated', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2252669': {'stimulation': '1 hour stimulation with A82V M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F71'}, 'GSM2771747': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_2', 'structure': 'neurite'}, 'GSM2771746': {'aspiration': '3rd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_1', 'structure': 'cell body'}, 'GSM1980498': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980499': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2771743': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_21', 'structure': 'neurite'}, 'GSM2771742': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_17', 'structure': 'cell body'}, 'GSM2771741': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_16', 'structure': 'neurite'}, 'GSM2771740': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_15', 'structure': 'cell body'}, 'GSM1980492': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2251318': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM1980490': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980491': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980496': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980497': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2771749': {'aspiration': '3rd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_3', 'structure': 'neurite'}, 'GSM2771748': {'aspiration': '2nd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_3', 'structure': 'neurite'}, 'GSM2535745': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1222', 'samplename': '1gr_413tetr_C33', 'seqsite': 'BRI', 'sampleID': 'S13390', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1222', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C33'}, 'GSM2535744': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1221', 'samplename': '1gr_413tetr_C27', 'seqsite': 'BRI', 'sampleID': 'S13389', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1221', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C27'}, 'GSM2535747': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1224', 'samplename': '1gr_413tetr_C45', 'seqsite': 'BRI', 'sampleID': 'S13392', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1224', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C45'}, 'GSM2535746': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1223', 'samplename': '1gr_413tetr_C39', 'seqsite': 'BRI', 'sampleID': 'S13391', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1223', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C39'}, 'GSM2535741': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1217', 'samplename': '1gr_413tetr_C32', 'seqsite': 'BRI', 'sampleID': 'S13385', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1217', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C32'}, 'GSM2535740': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1216', 'samplename': '1gr_413tetr_C02', 'seqsite': 'BRI', 'sampleID': 'S13384', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1216', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C02'}, 'GSM2535743': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1220', 'samplename': '1gr_413tetr_C19', 'seqsite': 'BRI', 'sampleID': 'S13388', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1220', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C19'}, 'GSM2535742': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1218', 'samplename': '1gr_413tetr_C44', 'seqsite': 'BRI', 'sampleID': 'S13386', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1218', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C44'}, 'GSM2535749': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1230', 'samplename': '1gr_413tetr_C62', 'seqsite': 'BRI', 'sampleID': 'S13398', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1230', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C62'}, 'GSM2535748': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1229', 'samplename': '1gr_413tetr_C56', 'seqsite': 'BRI', 'sampleID': 'S13397', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1229', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C56'}, 'GSM2312168': {'culture': '12', 'line': 'DCX-'}, 'GSM2029279': {'type': 'Heterologous pronuclear transfer embryo 2'}, 'GSM2029278': {'type': 'Heterologous pronuclear transfer embryo 2'}, 'GSM2029277': {'type': 'Control embryo i'}, 'GSM2029276': {'type': 'Control embryo i'}, 'GSM2029275': {'type': 'Control embryo i'}, 'GSM2029274': {'type': 'Control embryo i'}, 'GSM2029273': {'type': 'Control embryo i'}, 'GSM2029272': {'type': 'Heterologous pronuclear transfer embryo 1'}, 'GSM2029271': {'type': 'Heterologous pronuclear transfer embryo 1'}, 'GSM2029270': {'type': 'Heterologous pronuclear transfer embryo 1'}, 'GSM2476284': {'infected': 'Gal4', 'type': 'K562'}, 'GSM2510270': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510271': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510272': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2312169': {'culture': '12', 'line': 'DCX-'}, 'GSM2510274': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2387329': {'line': 'HUES8 hESCs', 'genotype': 'Wild type sequence'}, 'GSM2510276': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510277': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510278': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2387325': {'status': 'Psoriasis', 'tissue': 'Skin', 'type': 'Skin-derived Mesenchymal stem cells'}, 'GSM2387326': {'status': 'Psoriasis', 'tissue': 'Skin', 'type': 'Skin-derived Mesenchymal stem cells'}, 'GSM2387327': {'status': 'Normal', 'tissue': 'Skin', 'type': 'Skin-derived Mesenchymal stem cells'}, 'GSM2387322': {'status': 'Normal', 'tissue': 'Skin', 'type': 'Skin-derived Mesenchymal stem cells'}, 'GSM2387323': {'status': 'Normal', 'tissue': 'Skin', 'type': 'Skin-derived Mesenchymal stem cells'}, 'GSM2108532': {'stages': 'mononucleated cell nucleus'}, 'GSM2108533': {'stages': 'mononucleated cell nucleus'}, 'GSM2108530': {'stages': 'mononucleated cell nucleus'}, 'GSM2108531': {'stages': 'mononucleated cell nucleus'}, 'GSM2108536': {'stages': 'mononucleated cell nucleus'}, 'GSM2108537': {'stages': 'mononucleated cell nucleus'}, 'GSM2108534': {'stages': 'mononucleated cell nucleus'}, 'GSM2108535': {'stages': 'mononucleated cell nucleus'}, 'GSM2108538': {'stages': 'mononucleated cell nucleus'}, 'GSM2108539': {'stages': 'mononucleated cell nucleus'}, 'GSM1368999': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 0'}, 'GSM2100520': {'line': 'MKL-1', 'tissue': 'Skin', 'type': 'Merkel cell carcinoma cell line', 'age': '26 Years Old', 'construct': 'none'}, 'GSM2241556': {'batch': 'B', 'condition': 'Trisomic'}, 'GSM2312238': {'culture': '12', 'line': 'DCX-'}, 'GSM2312239': {'culture': '12', 'line': 'DCX-'}, 'GSM2212755': {'gender': 'female', 'condition': 'control'}, 'GSM2312234': {'culture': '12', 'line': 'DCX-'}, 'GSM2312235': {'culture': '12', 'line': 'DCX-'}, 'GSM2312236': {'culture': '12', 'line': 'DCX-'}, 'GSM2312237': {'culture': '12', 'line': 'DCX-'}, 'GSM2312230': {'culture': '12', 'line': 'DCX-'}, 'GSM2312231': {'culture': '12', 'line': 'DCX-'}, 'GSM2312232': {'culture': '12', 'line': 'DCX-'}, 'GSM2312233': {'culture': '12', 'line': 'DCX-'}, 'GSM2706094': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'treatment': '-CHIR', 'time': 'Day 50'}, 'GSM2706091': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'treatment': '+CHIR', 'time': 'Day 50'}, 'GSM2706090': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'treatment': '+CHIR', 'time': 'Day 50'}, 'GSM2706093': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'treatment': '-CHIR', 'time': 'Day 50'}, 'GSM2706092': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'treatment': '-CHIR', 'time': 'Day 50'}, 'GSM2241552': {'batch': 'A', 'condition': 'Trisomic'}, 'GSM1657090': {'knockdown': 'PITX2', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM2745920': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '81,960,792', 'totalnummappedreads': '73,998,602', 'age': '5.341693', 'percentexonicmapping': '27.810529', 'Sex': 'Male', 'rin': '8.1', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.67', 'brainid': '1870'}, 'GSM2241553': {'batch': 'A', 'condition': 'Trisomic'}, 'GSM2241550': {'batch': 'A', 'condition': 'Disomic'}, 'GSM2241551': {'batch': 'A', 'condition': 'Trisomic'}, 'GSM925611': {'line': 'H9', 'type': 'partial differentiated ESC'}, 'GSM925610': {'line': 'H9', 'type': 'pigmented cluster'}, 'GSM925613': {'line': 'hiPS2', 'type': 'ES-RPE'}, 'GSM925612': {'line': 'H9', 'type': 'ES-RPE'}, 'GSM925614': {'line': 'HSF1', 'type': 'ES-RPE'}, 'GSM1598294': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM2326853': {'type': 't(8;21) paitent', 'genotype': 't(8;21) paitent'}, 'GSM2326852': {'type': 'CD34+ human', 'genotype': 'CD34+ human'}, 'GSM2326851': {'type': 'CD34+ human', 'genotype': 'CD34+ human'}, 'GSM2326850': {'type': 't(3;21) paitent', 'genotype': 't(3;21) paitent'}, 'GSM2326857': {'type': 'SKH-1 cells', 'genotype': 'mismatch control 10 days'}, 'GSM2326856': {'type': 'SKH-1 cells', 'genotype': 'untreated control'}, 'GSM2326855': {'type': 'SKH-1 cells', 'genotype': 'untreated control'}, 'GSM2326854': {'type': 't(8;21) paitent', 'genotype': 't(8;21) paitent'}, 'GSM2326859': {'type': 'SKH-1 cells', 'genotype': 'mismatch control 2 days'}, 'GSM2326858': {'type': 'SKH-1 cells', 'genotype': 'mismatch control 10 days'}, 'GSM2084139': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM2084138': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'Untreated', 'timepoint': '24 hours'}, 'GSM2084135': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'IL-13R Antagonist', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084134': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084137': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'IL-13R Antagonist', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084136': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'IL-13R Antagonist', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084133': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2084132': {'tissue': 'Blood (PBMC)', 'antibodystimulation': 'No', 'treatment': 'IL-13', 'timepoint': '24 hours'}, 'GSM2142426': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142427': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2374791': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2142425': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2374797': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2142423': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2469541': {'status': 'resistant', 'gender': 'male', 'individual': 'r02', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469540': {'status': 'resistant', 'gender': 'male', 'individual': 'r02', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2642919': {'line': 'KMS11', 'lentivrius': 'vector', 'type': 'multiple myeloma cell line'}, 'GSM2642918': {'line': 'KMS11', 'lentivrius': 'vector', 'type': 'multiple myeloma cell line'}, 'GSM2469545': {'status': 'resistant', 'gender': 'male', 'individual': 'r04', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469544': {'status': 'resistant', 'gender': 'male', 'individual': 'r04', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469547': {'status': 'resistant', 'gender': 'male', 'individual': 'r05', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469546': {'status': 'resistant', 'gender': 'male', 'individual': 'r05', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469549': {'status': 'resistant', 'gender': 'male', 'individual': 'r06', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469548': {'status': 'resistant', 'gender': 'male', 'individual': 'r06', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2374794': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2642917': {'line': 'KMS11', 'lentivrius': 'FAM46C', 'type': 'multiple myeloma cell line'}, 'GSM2642916': {'line': 'KMS11', 'lentivrius': 'FAM46C', 'type': 'multiple myeloma cell line'}, 'GSM2207974': {'protein': 'express B19 NS1mTAD2'}, 'GSM2207975': {'protein': 'express B19 NS1mTAD2'}, 'GSM2207972': {'protein': 'do not express B19 NS1mTAD2'}, 'GSM2207973': {'protein': 'express B19 NS1mTAD2'}, 'GSM2207970': {'protein': 'do not express B19 NS1mTAD2'}, 'GSM2207971': {'protein': 'do not express B19 NS1mTAD2'}, 'GSM2053739': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053738': {'type': 'glioblastoma (Grade IV)'}, 'GSM785389': {'type': 'transitional', 'normal': 'cancer'}, 'GSM2053733': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053732': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053731': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053730': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053737': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053736': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053735': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053734': {'type': 'glioblastoma (Grade IV)'}, 'GSM2393960': {'treatment': 'Co60-inactivated HTNV which was propagated in the E6 cells', 'point': '24 hours post infection'}, 'GSM1418967': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'RNAPII (Abcam (8wG16))', 'treatment': 'DMSO (6hrs)'}, 'GSM434694': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434695': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434696': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434697': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434690': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 24 additional hours'}, 'GSM434691': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 24 additional hours'}, 'GSM434692': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434693': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM1833294': {'type': '4 cell'}, 'GSM434698': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434699': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM2462637': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '1', 'condition': '50P/S'}, 'GSM2462638': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '1', 'condition': '50P/S'}, 'GSM2462639': {'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '1', 'condition': '50P/S'}, 'GSM2048629': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048628': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048625': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048624': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048627': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048626': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048621': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048620': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048623': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048622': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2311953': {'culture': '12', 'line': 'DCX+'}, 'GSM2197745': {'passages': '25-30'}, 'GSM2100020': {'rin': '9.5', 'Sex': 'Male', 'sspg': '53', 'age': '68', 'bmi': '26.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '214', 'method': 'Qiagen:trizol'}, 'GSM2100021': {'rin': '9.6', 'Sex': 'Male', 'sspg': '53', 'age': '68', 'bmi': '26.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '214', 'method': 'Qiagen:trizol'}, 'GSM2100022': {'rin': '9.9', 'Sex': 'Male', 'sspg': '53', 'age': '68', 'bmi': '26.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '214', 'method': 'Qiagen:trizol'}, 'GSM2100023': {'rin': '9.3', 'Sex': 'Female', 'sspg': '92', 'age': '51', 'bmi': '23.8', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '215', 'method': 'Qiagen:trizol'}, 'GSM2100024': {'rin': '9.7', 'Sex': 'Female', 'sspg': '92', 'age': '51', 'bmi': '23.8', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '215', 'method': 'Qiagen:trizol'}, 'GSM2100025': {'rin': '8.5', 'Sex': 'Female', 'sspg': '92', 'age': '51', 'bmi': '23.8', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '215', 'method': 'Qiagen:trizol'}, 'GSM2100026': {'rin': '9.9', 'Sex': 'Female', 'sspg': '245', 'age': '53', 'bmi': '28.5', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '231', 'method': 'Qiagen:trizol'}, 'GSM2100027': {'rin': '9.5', 'Sex': 'Female', 'sspg': '245', 'age': '53', 'bmi': '28.5', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '231', 'method': 'Qiagen:trizol'}, 'GSM2100028': {'rin': '9.2', 'Sex': 'Female', 'sspg': '245', 'age': '53', 'bmi': '28.5', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'South Asian', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '231', 'method': 'Qiagen:trizol'}, 'GSM2100029': {'rin': '10', 'Sex': 'Male', 'sspg': '272', 'age': '68', 'bmi': '34.8', 'batch': '1-90', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '239', 'method': 'Life-Tech GITC'}, 'GSM2451188': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451189': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2311958': {'culture': '12', 'line': 'DCX+'}, 'GSM2311959': {'culture': '12', 'line': 'DCX+'}, 'GSM2197744': {'passages': '25-30'}, 'GSM1395449': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395448': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2287610': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1356716': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 17 to FB'}, 'GSM1395441': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395440': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395443': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395442': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395445': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395444': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395447': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395446': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2544028': {'library_id': 'lib8338', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1071304': {'type': 'endothelial cells', 'treatment': 'PR infected'}, 'GSM2544024': {'library_id': 'lib8334', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544025': {'library_id': 'lib8335', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544026': {'library_id': 'lib8336', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.215', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544027': {'library_id': 'lib8337', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.215', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544020': {'library_id': 'lib8330', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544021': {'library_id': 'lib8331', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544022': {'library_id': 'lib8332', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544023': {'library_id': 'lib8333', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2411964': {'line': '2633B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411965': {'line': '2633D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM769736': {'type': '143B cells', 'subcellular': 'Mitochondria'}, 'GSM2411967': {'line': '4105D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411960': {'line': '25642B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411961': {'line': '25642C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411962': {'line': '25727B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411963': {'line': '25727G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2424942': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1704547': {'protocol': 'Interferon treatment', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2486762': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486763': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486760': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486761': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486766': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486767': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486764': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486765': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486768': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486769': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2284070': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'p': {'code': '200'}, 'GSM1704542': {'protocol': '12 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM715438': {'tissue': 'prostate adenocarcinoma', 'method': 'FFPE'}, 'GSM715439': {'tissue': 'prostate adenocarcinoma', 'method': 'FFPE'}, 'GSM715434': {'tissue': 'lung adenocarcinoma', 'method': 'FFPE'}, 'GSM715435': {'tissue': 'colon adenocarcinoma', 'method': 'FFPE'}, 'GSM715436': {'tissue': 'colon adenocarcinoma', 'method': 'FFPE'}, 'GSM715437': {'tissue': 'colon adenocarcinoma', 'method': 'FFPE'}, 'GSM715430': {'tissue': 'breast invasive ductal carcinoma', 'method': 'FFPE'}, 'GSM715431': {'tissue': 'breast invasive ductal carcinoma', 'method': 'FFPE'}, 'GSM715432': {'tissue': 'lung adenocarcinoma', 'method': 'FFPE'}, 'GSM715433': {'tissue': 'lung adenocarcinoma', 'method': 'FFPE'}, 'GSM2716082': {'passages': '24', 'condition': 'monolayer', 'location': 'thalamic', 'diagnosis': 'glioblastoma', 'treatment': 'normoxy'}, 'GSM2716081': {'passages': '24', 'condition': 'monolayer', 'location': 'thalamic', 'diagnosis': 'glioblastoma', 'treatment': 'hypoxia'}, 'GSM2716080': {'passages': '34', 'condition': 'neurosphere', 'location': 'pons', 'diagnosis': 'DIPG', 'treatment': 'normoxy'}, 'GSM2175936': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175937': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175934': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175935': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175938': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175939': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1593039': {'type': 'aortic vascular smooth muscle cells', 'treatment': 'Cytosolic Hsp60 depletion and TNF-alpha positive'}, 'GSM1892674': {'tissue': 'Snap-frozen tissue'}, 'GSM1892675': {'tissue': 'Snap-frozen tissue'}, 'GSM2141638': {'individual': 'EU230', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141639': {'individual': 'EU230', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141636': {'individual': 'EU224', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141637': {'individual': 'EU230', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141634': {'individual': 'EU224', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141635': {'individual': 'EU224', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141632': {'individual': 'EU216', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141633': {'individual': 'EU216', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141630': {'individual': 'EU214', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141631': {'individual': 'EU216', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1716771': {'line': 'LHSAR', 'type': 'LHSAR overexpressed with LacZ', 'treatment': '1nM R1881'}, 'GSM1642988': {'type': 'intestinal fibroblast', 'tissue': 'colon', 'group': \"Crohn's disease-associated fibrosis\"}, 'GSM3190832': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A02', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.955784'}, 'GSM3190831': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-Cpat28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.003572'}, 'GSM2069473': {'date': '12.03.15', 'with': '100nM Tamoxifen', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069472': {'date': '12.03.15', 'with': 'none', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069475': {'date': '12.03.15', 'with': '100nM Tamoxifen', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069474': {'date': '12.03.15', 'with': 'none', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069477': {'date': '19.03.15', 'with': '100nM Tamoxifen', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069476': {'date': '19.03.15', 'with': 'none', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069479': {'date': '19.03.15', 'with': '100nM Tamoxifen', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2069478': {'date': '19.03.15', 'with': 'none', 'line': 'MCF7 cells', 'type': 'invasive breast ductal carcinoma'}, 'GSM2158326': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158327': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158324': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158325': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158322': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158323': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158320': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158321': {'gender': 'M', 'age': '43', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM3190834': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-Cpat19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.534678'}, 'GSM2158328': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158329': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2881015': {'donor': 'Donor_1', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2881014': {'donor': 'Donor_1', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2881017': {'donor': 'Donor_1', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2194992': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2881019': {'donor': 'Donor_2', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2881018': {'donor': 'Donor_1', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM1259110': {'gender': 'male', 'tissue': 'Cingulate gyrus (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1259111': {'gender': 'male', 'tissue': 'Cingulate gyrus (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1259112': {'gender': 'male', 'tissue': 'motor cortex (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1259113': {'gender': 'male', 'tissue': 'Cingulate gyrus (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1259114': {'gender': 'male', 'tissue': 'motor cortex (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1259115': {'gender': 'male', 'tissue': 'Cingulate gyrus (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM2265699': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '24h'}, 'GSM2265698': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '12h'}, 'GSM2265697': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '6h'}, 'GSM2635910': {'type': 'A549 cells', 'treatment': 'Cas9 + guide RNA transient transfection, followed by FACS of single cells', 'genotype': 'miR-1343 deleted'}, 'GSM2635913': {'type': 'A549 cells', 'treatment': 'Cas9 + guide RNA transient transfection, followed by FACS of single cells', 'genotype': 'miR-1343 deleted'}, 'GSM2265694': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '24h'}, 'GSM2265693': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '12h'}, 'GSM2265692': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '6h'}, 'GSM2265691': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '3h'}, 'GSM2265690': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '48h'}, 'GSM2760244': {'transfection': 'FGFR1(SP-/NLS+)', 'type': 'NCC'}, 'GSM2760245': {'transfection': 'FGFR1(SP-/NLS+)', 'type': 'NCC'}, 'GSM2170889': {'stage': 'Liver bud 2'}, 'GSM2170888': {'stage': 'Liver bud 2'}, 'GSM2632700': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2268319': {'line': 'HaCaT', 'treatment': 'untreated'}, 'GSM2268318': {'line': 'HaCaT', 'treatment': 'untreated'}, 'GSM2170883': {'stage': 'Liver bud 2'}, 'GSM2170882': {'stage': 'Liver bud 2'}, 'GSM2170885': {'stage': 'Liver bud 2'}, 'GSM2345056': {'with': 'JQ1â\\x80\\x93PA', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM2170887': {'stage': 'Liver bud 2'}, 'GSM2170886': {'stage': 'Liver bud 2'}, 'GSM2345057': {'with': 'JQ1â\\x80\\x93PA', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM2760242': {'transfection': 'FGFR1(SP-/NLS+)(TK-)', 'type': 'NCC'}, 'GSM2632705': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2760243': {'transfection': 'FGFR1(SP-/NLS+)', 'type': 'NCC'}, 'GSM2345051': {'with': 'DMSO', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM2275128': {'area_under_the_curve': '0.032479375', 'siteandparticipantcode': '479125', 'baseline_area_under_the_curve': '0.505240469', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '6.428498311', 'auc_percent_of_baseline': '6.428498311', 'trunkbarcode': '945951', 'sampleID': 'S13138', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1546', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'Control', 'name': 'AbATE_479125', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1546', 'studysiteshort': 'UCSF'}, 'GSM2632707': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2275124': {'area_under_the_curve': '0.287866563', 'siteandparticipantcode': '122083', 'baseline_area_under_the_curve': '0.775936406', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '37.09924682', 'auc_percent_of_baseline': '37.09924682', 'trunkbarcode': '930249', 'sampleID': 'S13134', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1542', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_122083', 'gender': 'Male', 'age': '14', 'race': 'Black or African American; White', 'libraryid': 'lib1542', 'studysiteshort': 'UCSF'}, 'GSM2275125': {'area_under_the_curve': '0', 'siteandparticipantcode': '869009', 'baseline_area_under_the_curve': '0.345843281', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '0', 'auc_percent_of_baseline': '0', 'trunkbarcode': '938623', 'sampleID': 'S13135', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1543', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_869009', 'gender': 'Male', 'age': '9', 'race': 'White', 'libraryid': 'lib1543', 'studysiteshort': 'UCSF'}, 'GSM2275126': {'area_under_the_curve': '0.027669531', 'siteandparticipantcode': '537789', 'baseline_area_under_the_curve': '0.533892656', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '5.182601957', 'auc_percent_of_baseline': '5.182601957', 'trunkbarcode': '940904', 'sampleID': 'S13136', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1544', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_537789', 'gender': 'Female', 'age': '9', 'race': 'White', 'libraryid': 'lib1544', 'studysiteshort': 'UCSF'}, 'GSM2275127': {'area_under_the_curve': '2.654568281', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '172.1631503', 'auc_percent_of_baseline': '172.1631503', 'trunkbarcode': '940903', 'sampleID': 'S13137', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1545', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'race': 'American Indian or Alaska Native; White', 'libraryid': 'lib1545', 'studysiteshort': 'UCSF'}, 'GSM2275120': {'area_under_the_curve': '0', 'siteandparticipantcode': '242972', 'baseline_area_under_the_curve': '0.642812344', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '0', 'auc_percent_of_baseline': '0', 'trunkbarcode': '925053', 'sampleID': 'S13130', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1538', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'Control', 'name': 'AbATE_242972', 'gender': 'Male', 'age': '8', 'race': 'White', 'libraryid': 'lib1538', 'studysiteshort': 'UCSF'}, 'GSM2275121': {'area_under_the_curve': '0.141554219', 'siteandparticipantcode': '397935', 'baseline_area_under_the_curve': '0.65910375', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '21.47677338', 'auc_percent_of_baseline': '21.47677338', 'trunkbarcode': '925054', 'sampleID': 'S13131', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1539', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_397935', 'gender': 'Male', 'age': '12', 'race': 'White; Other', 'libraryid': 'lib1539', 'studysiteshort': 'UCSF'}, 'GSM2275122': {'area_under_the_curve': '0.373305938', 'siteandparticipantcode': '333398', 'baseline_area_under_the_curve': '0.552821719', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '67.52736458', 'auc_percent_of_baseline': '67.52736458', 'trunkbarcode': '932860', 'sampleID': 'S13132', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1540', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_333398', 'gender': 'Female', 'age': '27', 'race': 'White', 'libraryid': 'lib1540', 'studysiteshort': 'UCSF'}, 'GSM2275123': {'area_under_the_curve': '0.00331', 'siteandparticipantcode': '475166', 'baseline_area_under_the_curve': '0.591352188', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '0.559734126', 'auc_percent_of_baseline': '0.559734126', 'trunkbarcode': '930247', 'sampleID': 'S13133', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1541', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'Control', 'name': 'AbATE_475166', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1541', 'studysiteshort': 'UCSF'}, 'GSM3586919': {'origin': 'ABC', 'pfstt': '82', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '124', 'cycles': '8', 'oscs': '1'}, 'GSM3586918': {'origin': 'UNCLASSIFIED', 'pfstt': '992', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '994', 'cycles': '6', 'oscs': '0'}, 'GSM3586917': {'origin': 'ABC', 'pfstt': '964', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1028', 'cycles': '6', 'oscs': '0'}, 'GSM3586916': {'origin': 'GCB', 'pfstt': '761', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '805', 'cycles': '6', 'oscs': '0'}, 'GSM3586915': {'origin': 'GCB', 'pfstt': '782', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '852', 'cycles': '8', 'oscs': '0'}, 'GSM3586914': {'origin': 'ABC', 'pfstt': '1083', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1083', 'cycles': '6', 'oscs': '0'}, 'GSM3586913': {'origin': 'GCB', 'pfstt': '831', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '831', 'cycles': '6', 'oscs': '0'}, 'GSM3586912': {'origin': 'GCB', 'pfstt': '928', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '928', 'cycles': '8', 'oscs': '0'}, 'GSM3586911': {'origin': 'GCB', 'pfstt': '1085', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1087', 'cycles': '6', 'oscs': '0'}, 'GSM3586910': {'origin': 'GCB', 'pfstt': '868', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1012', 'cycles': '6', 'oscs': '0'}, 'GSM1969318': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM1969319': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM2815970': {'line': 'H9'}, 'GSM1969310': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Gyneacological area'}, 'GSM1969311': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Gyneacological area'}, 'GSM1969312': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM1969313': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969314': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM1969315': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'GI tract'}, 'GSM1969316': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Internal trunk'}, 'GSM1969317': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1376253': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': \"Alzheimer's disease (AD)\"}, 'GSM1376252': {'pathology': 'yes', 'tissue': 'medial temporalis gyrus', 'diagnosis': \"Alzheimer's disease (AD)\"}, 'GSM1376257': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': \"Alzheimer's disease (AD)\"}, 'GSM1376256': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': \"Alzheimer's disease (AD)\"}, 'GSM1376255': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': \"Alzheimer's disease (AD)\"}, 'GSM1376254': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': \"Alzheimer's disease (AD)\"}, 'GSM1376259': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': \"Alzheimer's disease (AD)\"}, 'GSM1376258': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': \"Alzheimer's disease (AD)\"}, 'GSM1621320': {'group': 'A: Not-expanded nTregs', 'type': 'regulatory T cells', 'batch': 'b4'}, 'GSM1621321': {'group': 'C: aCD3/aCD28-coated bead expanded nTreg', 'type': 'regulatory T cells', 'batch': 'b4'}, 'GSM1517308': {'down': 'hCD24 knock down (KD)', 'line': 'MCF7', 'condition': 'monolayer (m) cultured cell', 'cd24': 'CD24-'}, 'GSM1517309': {'down': 'wild type (WT)', 'line': 'MCF7', 'condition': 'sphere (s) forming cell', 'cd24': 'CD24+'}, 'GSM3190709': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C37', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.911112'}, 'GSM3190708': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B14', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.481667'}, 'GSM501692': {'modification': 'Tet-on FLp53', 'antibody': 'DO1 against p53', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM3190705': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.900856'}, 'GSM3190704': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '2', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.374427'}, 'GSM3190707': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C37', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.717397'}, 'GSM3190706': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.734733'}, 'GSM3190701': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '7.008473'}, 'GSM3190700': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '6.004811'}, 'GSM3190703': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '15.042879'}, 'GSM3190702': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.042923'}, 'GSM970929': {'source': 'Semen from a normally fertile donor', 'type': 'Mature sperm'}, 'GSM970928': {'source': 'Semen from a normally fertile donor', 'type': 'Mature sperm'}, 'GSM2333538': {'type': 'dermal fibroblasts, immortalized', 'treatment': 'none'}, 'GSM2333539': {'type': 'dermal fibroblasts, immortalized', 'treatment': 'UV-C, 12 J/m2'}, 'GSM979869': {'age': '16 weeks', 'tissue': 'ovary', 'type': 'cKIT+ FACS sort'}, 'GSM979868': {'age': '16.5 weeks', 'tissue': 'testis', 'type': 'cKIT+ FACS sort'}, 'GSM1215138': {'replicate': '2'}, 'GSM1215136': {'replicate': '2'}, 'GSM1215137': {'replicate': '1'}, 'GSM1215134': {'replicate': 'n.a.', 'antibody': 'H3K4me2/3'}, 'GSM1215135': {'replicate': '1'}, 'GSM979867': {'age': '16 weeks', 'tissue': 'testis', 'type': 'cKIT+ FACS sort'}, 'GSM1215133': {'replicate': 'n.a.', 'antibody': 'EZH2'}, 'GSM2680449': {'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM2680448': {'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM2680447': {'line': 'colorectal cancer cell line HCT116', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM2680446': {'line': 'colorectal cancer cell line HCT116', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680445': {'line': 'colorectal cancer cell line HCT116', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680444': {'line': 'colorectal cancer cell line HCT116', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM896816': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM1609410': {'line': 'GM19137', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609411': {'line': 'GM19138', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609412': {'line': 'GM19138', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609413': {'line': 'GM19139', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609414': {'line': 'GM19193', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609415': {'line': 'GM19200', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609416': {'line': 'GM19201', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609417': {'line': 'GM19238', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609418': {'line': 'GM19238', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609419': {'line': 'GM19239', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1896091': {'individual': 'AF21', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM501696': {'modification': 'Tet-on TAp73alpha', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM2307205': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM3392005': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line'}, 'GSM1707994': {'type': 'normal'}, 'GSM1707995': {'type': 'tumour (T-cell large granular lymphocytic leukemia)'}, 'GSM1707996': {'type': 'normal'}, 'GSM1707997': {'type': 'tumour (T-cell large granular lymphocytic leukemia)'}, 'GSM1707998': {'type': 'normal'}, 'GSM1707999': {'type': 'tumour (T-cell large granular lymphocytic leukemia)'}, 'GSM1827516': {'cinsarc': 'C1', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '3.22792607802875', 'quality': '3'}, 'GSM2859006': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS55 matured for four days in the absence of doxycycline after exposure to PD173074 for four days'}, 'GSM2859005': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS55 matured for four days in the absence of doxycycline, as a negative control for sample MS55_PD17_Day8'}, 'GSM2859004': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES, 100 ng/mL doxycycline, and 100 nM PD173074 (Stemgent)', 'type': 'eAEP line MS55 cultured in the presence of 100 nM PD173074 for four days'}, 'GSM2859003': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS55 cultured without exposure to PD173074, as a negative control for sample MS55_PD17_Day4'}, 'GSM2859002': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS53 matured for four days in the absence of doxycycline after exposure to PD173074 for four days'}, 'GSM2859001': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'eAEP line MS53 matured for four days in the absence of doxycycline, as a negative control for sample MS53_PD17_Day8'}, 'GSM2859000': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES, 100 ng/mL doxycycline, and 100 nM PD173074 (Stemgent)', 'type': 'eAEP line MS53 cultured in the presence of 100 nM PD173074 for four days'}, 'GSM1827510': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '2.25051334702259', 'quality': '1'}, 'GSM2277388': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277389': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2754611': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0934', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2277382': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277383': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277380': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277381': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277386': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277387': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277384': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277385': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM1896096': {'individual': 'AF25', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2565388': {'construction': 'PLATE-Seq', 'drug': 'Tetrindole mesylate'}, 'GSM2565389': {'construction': 'PLATE-Seq', 'drug': 'SDM25N hydrochloride'}, 'GSM2565384': {'construction': 'PLATE-Seq', 'drug': 'Tirapazamine'}, 'GSM2565385': {'construction': 'PLATE-Seq', 'drug': 'Vindesine sulphate'}, 'GSM2565386': {'construction': 'PLATE-Seq', 'drug': 'ACRIFLAVINIUM HYDROCHLORIDE'}, 'GSM2565387': {'construction': 'PLATE-Seq', 'drug': 'DIALLYL TRISULFIDE'}, 'GSM2565380': {'construction': 'PLATE-Seq', 'drug': 'Pirarubicin'}, 'GSM2565381': {'construction': 'PLATE-Seq', 'drug': 'RAF265'}, 'GSM2565382': {'construction': 'PLATE-Seq', 'drug': 'Satraplatin (JM216)'}, 'GSM2565383': {'construction': 'PLATE-Seq', 'drug': 'Talazoparib (BMN673)'}, 'GSM501698': {'modification': 'Tet-on TAp73beta', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM2459867': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'Negative control siRNA treated'}, 'GSM2535886': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5645', 'samplename': '1_T1D#2 ReDraw_C57', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28530', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5645', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C57'}, 'GSM2535884': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5644', 'samplename': '1_T1D#2 ReDraw_C51', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28529', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5644', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C51'}, 'GSM2459866': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'DROSHA siRNA treated'}, 'GSM2535882': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5643', 'samplename': '1_T1D#2 ReDraw_C92', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28528', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5643', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C92'}, 'GSM2535880': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5642', 'samplename': '1_T1D#2 ReDraw_C56', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28527', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5642', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C56'}, 'GSM2850560': {'type': 'EVHB-Chip captured Extracellular vesicles', 'biofluid': 'Plasma', 'group': 'Healthy donor controls'}, 'GSM2535888': {'status': 'T1D', 'lane': '8,7', 'seqsite': 'BRI', 'samplelabel': 'lib5648', 'samplename': '1_T1D#2 ReDraw_C85', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28533', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5648', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C85'}, 'GSM1980320': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980321': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980322': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980323': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2416895': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM1980325': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2312007': {'culture': '12', 'line': 'DCX+'}, 'GSM1980327': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2312006': {'culture': '12', 'line': 'DCX+'}, 'GSM2050840': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050841': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2391059': {'disease': 'Stable Angina Pectoris'}, 'GSM2391058': {'disease': 'Stable Angina Pectoris'}, 'GSM2391055': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391054': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391057': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391056': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391051': {'disease': 'Epilepsy'}, 'GSM2391050': {'disease': 'Epilepsy'}, 'GSM2391053': {'disease': 'Non-significant Atherosclerosis'}, 'GSM2391052': {'disease': 'Epilepsy'}, 'GSM2560974': {'line': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM1816315': {'tissue': 'Human umbilical cord blood', 'type': 'CD34+-derived human erythroid progenitors/precursors'}, 'GSM1816314': {'tissue': 'Human umbilical cord blood', 'type': 'Human CD34+ stem/progenitor cells'}, 'GSM1816316': {'tissue': 'Human umbilical cord blood', 'type': 'CD34+-derived human myeloid progenitors/precursors'}, 'GSM2476130': {'line': 'SV7', 'tissue': 'Kidney', 'treatment': 'GW9662', 'time': '24h'}, 'GSM2133921': {'type': 'breast adenocarcinoma', 'treatment': 'Nutlin'}, 'GSM2050848': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2287681': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2570517': {'knockdown': 'MYB', 'line': 'Jurkat'}, 'GSM2560972': {'line': 'MCF7', 'mutation': 'Parental', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2570516': {'knockdown': 'MYB', 'line': 'Jurkat'}, 'GSM2560973': {'line': 'MCF7', 'mutation': 'Parental', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM1955719': {'a': '62336', 'cd38': '831', 'cd49f': '1086', 'w': '65777', 'h': '62108', 'lin': '-47', 'cd34': '7334', 'cd90': '-117', 'cd7': '-37', 'cd10': '954', 'time': '5408', 'cd135': '3694', 'cd45ra': '2283'}, 'GSM1955718': {'a': '61685', 'cd38': '262', 'cd49f': '491', 'w': '67800', 'h': '59625', 'lin': '822', 'cd34': '10195', 'cd90': '5351', 'cd7': '105', 'cd10': '869', 'time': '5606', 'cd135': '4837', 'cd45ra': '265'}, 'GSM1955713': {'a': '51575', 'cd38': '51', 'cd49f': '787', 'w': '66833', 'h': '50574', 'lin': '48', 'cd34': '10360', 'cd90': '1327', 'cd7': '250', 'cd10': '605', 'time': '6655', 'cd135': '3158', 'cd45ra': '249'}, 'GSM1955712': {'a': '60980', 'cd38': '818', 'cd49f': '306', 'w': '68078', 'h': '58703', 'lin': '-266', 'cd34': '5626', 'cd90': '2235', 'cd7': '146', 'cd10': '533', 'time': '4195', 'cd135': '3761', 'cd45ra': '148'}, 'GSM1955711': {'a': '53159', 'cd38': '781', 'cd49f': '142', 'w': '67707', 'h': '51455', 'lin': '600', 'cd34': '10696', 'cd90': '323', 'cd7': '140', 'cd10': '599', 'time': '3954', 'cd135': '3961', 'cd45ra': '242'}, 'GSM1955710': {'a': '50301', 'cd38': '-17', 'cd49f': '645', 'w': '66238', 'h': '49768', 'lin': '412', 'cd34': '4403', 'cd90': '-177', 'cd7': '496', 'cd10': '7307', 'time': '3689', 'cd135': '1195', 'cd45ra': '8209'}, 'GSM1955717': {'a': '56895', 'cd38': '511', 'cd49f': '165', 'w': '67072', 'h': '55592', 'lin': '222', 'cd34': '7021', 'cd90': '2808', 'cd7': '547', 'cd10': '438', 'time': '5823', 'cd135': '5034', 'cd45ra': '228'}, 'GSM1955716': {'a': '65798', 'cd38': '971', 'cd49f': '689', 'w': '68478', 'h': '62971', 'lin': '157', 'cd34': '3242', 'cd90': '175', 'cd7': '376', 'cd10': '830', 'time': '6040', 'cd135': '4145', 'cd45ra': '1378'}, 'GSM1955715': {'a': '63810', 'cd38': '679', 'cd49f': '547', 'w': '64123', 'h': '65216', 'lin': '42', 'cd34': '6050', 'cd90': '8', 'cd7': '137', 'cd10': '576', 'time': '6268', 'cd135': '4530', 'cd45ra': '991'}, 'GSM1955714': {'a': '35298', 'cd38': '-183', 'cd49f': '17914', 'w': '64451', 'h': '35892', 'lin': '475', 'cd34': '3135', 'cd90': '25', 'cd7': '441', 'cd10': '75', 'time': '6460', 'cd135': '-356', 'cd45ra': '147'}, 'GSM2100906': {'line': 'S2VP10', 'sensitivity': 'Sensitive'}, 'GSM2122590': {'line': 'DU145', 'passages': '13-17', 'with': 'EPZ-6438', 'phenotype': 'AR-negative, EZH2 inhibitor-insensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122591': {'line': 'DU145', 'passages': '13-17', 'with': 'EPZ-6438', 'phenotype': 'AR-negative, EZH2 inhibitor-insensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122592': {'line': 'DU145', 'passages': '13-17', 'with': 'GSK126', 'phenotype': 'AR-negative, EZH2 inhibitor-insensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2122593': {'line': 'DU145', 'passages': '13-17', 'with': 'GSK126', 'phenotype': 'AR-negative, EZH2 inhibitor-insensitive', 'types': 'castration resitant prostate cancer cells'}, 'GSM2898813': {'line': 'NA19114', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898812': {'line': 'NA19108', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898811': {'line': 'NA19102', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898810': {'line': 'NA19099', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1400969': {'line': 'MCF7'}, 'GSM2898816': {'line': 'NA19127', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898815': {'line': 'NA19119', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898814': {'line': 'NA19116', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1400965': {'line': 'MCF7'}, 'GSM1400964': {'line': 'MCF7'}, 'GSM2898819': {'line': 'NA19138', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1400966': {'line': 'MCF7'}, 'GSM1400961': {'line': 'MCF7'}, 'GSM1400960': {'line': 'MCF7'}, 'GSM1400963': {'line': 'MCF7'}, 'GSM1400962': {'line': 'MCF7'}, 'GSM2151479': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM3416502': {'compartment': 'Stroma', 'id': 'CUMC_115', 'library': 'NuGEN'}, 'GSM3416503': {'compartment': 'Stroma', 'id': 'CUMC_116', 'library': 'NuGEN'}, 'GSM3416500': {'compartment': 'Stroma', 'id': 'CUMC_113', 'library': 'NuGEN'}, 'GSM3416501': {'compartment': 'Stroma', 'id': 'CUMC_114', 'library': 'NuGEN'}, 'GSM3416506': {'compartment': 'Stroma', 'id': 'CUMC_119', 'library': 'NuGEN'}, 'GSM3416507': {'compartment': 'Stroma', 'id': 'CUMC_120', 'library': 'NuGEN'}, 'GSM3416504': {'compartment': 'Stroma', 'id': 'CUMC_117', 'library': 'NuGEN'}, 'GSM3416505': {'compartment': 'Stroma', 'id': 'CUMC_118', 'library': 'NuGEN'}, 'GSM2109588': {'subtype': 'N/A', 'state': 'Normal'}, 'GSM2109589': {'subtype': 'N/A', 'state': 'Normal'}, 'GSM1892682': {'tissue': 'Snap-frozen tissue'}, 'GSM2109580': {'subtype': 'B3', 'state': 'Tumor'}, 'GSM2109581': {'subtype': 'A', 'state': 'Tumor'}, 'GSM2109582': {'subtype': 'B3', 'state': 'Tumor'}, 'GSM2109583': {'subtype': 'A/B', 'state': 'Tumor'}, 'GSM2109584': {'subtype': 'B2/B3-LR', 'state': 'Tumor'}, 'GSM2109585': {'subtype': 'B3', 'state': 'Tumor'}, 'GSM2109586': {'subtype': 'C', 'state': 'Tumor'}, 'GSM2109587': {'subtype': 'B3', 'state': 'Tumor'}, 'GSM1956068': {'a': '79829', 'cd38': '686', 'cd49f': '1094', 'w': '66584', 'h': '78573', 'lin': '-312', 'cd34': '11697', 'cd90': '658', 'cd7': '96', 'cd10': '2981', 'time': '18268', 'cd135': '5655', 'cd45ra': '6239'}, 'GSM1956069': {'a': '67744', 'cd38': '407', 'cd49f': '273', 'w': '65952', 'h': '67317', 'lin': '-221', 'cd34': '10473', 'cd90': '561', 'cd7': '171', 'cd10': '956', 'time': '18479', 'cd135': '2414', 'cd45ra': '207'}, 'GSM1956060': {'a': '66857', 'cd38': '754', 'cd49f': '513', 'w': '68133', 'h': '64308', 'lin': '269', 'cd34': '5657', 'cd90': '331', 'cd7': '-40', 'cd10': '964', 'time': '14325', 'cd135': '6070', 'cd45ra': '1633'}, 'GSM1956061': {'a': '51160', 'cd38': '843', 'cd49f': '378', 'w': '65583', 'h': '51124', 'lin': '454', 'cd34': '5922', 'cd90': '4327', 'cd7': '429', 'cd10': '839', 'time': '16878', 'cd135': '2820', 'cd45ra': '378'}, 'GSM1956062': {'a': '70635', 'cd38': '762', 'cd49f': '572', 'w': '69782', 'h': '66337', 'lin': '196', 'cd34': '7072', 'cd90': '754', 'cd7': '-137', 'cd10': '1273', 'time': '17077', 'cd135': '6297', 'cd45ra': '5371'}, 'GSM1956063': {'a': '58705', 'cd38': '529', 'cd49f': '722', 'w': '67293', 'h': '57172', 'lin': '5', 'cd34': '8035', 'cd90': '991', 'cd7': '-75', 'cd10': '691', 'time': '17271', 'cd135': '4482', 'cd45ra': '193'}, 'GSM1956064': {'a': '60119', 'cd38': '365', 'cd49f': '450', 'w': '66231', 'h': '59488', 'lin': '259', 'cd34': '4808', 'cd90': '564', 'cd7': '-13', 'cd10': '1209', 'time': '17469', 'cd135': '2523', 'cd45ra': '103'}, 'GSM1956065': {'a': '56692', 'cd38': '-486', 'cd49f': '336', 'w': '66962', 'h': '55485', 'lin': '40', 'cd34': '7345', 'cd90': '1406', 'cd7': '451', 'cd10': '665', 'time': '17659', 'cd135': '1984', 'cd45ra': '330'}, 'GSM1956066': {'a': '52841', 'cd38': '-554', 'cd49f': '27', 'w': '67874', 'h': '51021', 'lin': '24', 'cd34': '10526', 'cd90': '-99', 'cd7': '614', 'cd10': '888', 'time': '17861', 'cd135': '688', 'cd45ra': '289'}, 'GSM1956067': {'a': '45481', 'cd38': '936', 'cd49f': '959', 'w': '64067', 'h': '46524', 'lin': '74', 'cd34': '7192', 'cd90': '2235', 'cd7': '-406', 'cd10': '1194', 'time': '18056', 'cd135': '3730', 'cd45ra': '502'}, 'GSM2325827': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325826': {'type': 'Differentiated embryonic stem cell'}, 'GSM2802940': {'line': 'hMSC-TERT4', 'stage': 'D3'}, 'GSM1625969': {'with': 'none (unstimulated)', 'donor': '3', 'type': 'human monocyte derived macrophages'}, 'GSM2325823': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325822': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325821': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325820': {'type': 'Differentiated embryonic stem cell'}, 'GSM1625962': {'type': 'mixture of multiple cell lines'}, 'GSM1625963': {'type': 'mixed sample of both (1:4)'}, 'GSM1625960': {'type': 'mixed sample of both (1:64)'}, 'GSM1625961': {'type': 'human bone marrow sample'}, 'GSM2251290': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251291': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2325829': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325828': {'type': 'Differentiated embryonic stem cell'}, 'GSM2420353': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420352': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420351': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420350': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420357': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420356': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420355': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420354': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420359': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420358': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM1820479': {'type': 'HEK293', 'genotype': 'WT DIS3'}, 'GSM1820478': {'type': 'HEK293', 'genotype': 'WT DIS3'}, 'GSM2029338': {'type': 'Control embryo b'}, 'GSM1896095': {'individual': 'AF23', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2029332': {'type': 'Control embryo b'}, 'GSM2029333': {'type': 'Control embryo b'}, 'GSM2029330': {'type': 'Control embryo b'}, 'GSM2029331': {'type': 'Control embryo b'}, 'GSM2029336': {'type': 'Control embryo b'}, 'GSM2029337': {'type': 'Control embryo b'}, 'GSM2029334': {'type': 'Control embryo b'}, 'GSM2029335': {'type': 'Control embryo b'}, 'GSM2183054': {'type': 'basal', 'patient': 'BS2980', 'population': 'Trop2+ CD49f Hi'}, 'GSM2573277': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM2183056': {'type': 'basal', 'patient': 'BS3337', 'population': 'Trop2+ CD49f Hi'}, 'GSM2183057': {'type': 'luminal', 'patient': 'BS3337', 'population': 'Trop2+ CD49f Lo'}, 'GSM2183050': {'type': 'luminal', 'patient': 'BS2553', 'population': 'Trop2+ CD49f Lo'}, 'GSM2183051': {'type': 'luminal', 'patient': 'BS2771', 'population': 'Trop2+ CD49f Lo'}, 'GSM2183052': {'type': 'basal', 'patient': 'BS2980', 'population': 'Trop2+ CD49f Hi'}, 'GSM2183053': {'type': 'luminal', 'patient': 'BS2980', 'population': 'Trop2+ CD49f Lo'}, 'GSM2183058': {'type': 'basal', 'patient': 'BS3337', 'population': 'Trop2+ CD49f Hi'}, 'GSM2183059': {'type': 'luminal', 'patient': 'BS3337', 'population': 'Trop2+ CD49f Lo'}, 'GSM2309466': {'number': 'Exp 3', 'time': '6 hours', 'replicate': '1', 'treatment': 'Meayamycin', 'dose': '80 nM'}, 'GSM602561': {'tissue': 'kidney normal'}, 'GSM2392583': {'treatment': 'Vehicle', 'genotype': 'Wild type'}, 'GSM2309463': {'number': 'Exp 3', 'time': '6 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309462': {'number': 'Exp 3', 'time': '6 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM1523489': {'gender': 'female', 'age': '44', 'tumor': 'FL3A', 'tissue': 'LN', 'nhl': 'no', 'type': 'follicular lymphoma'}, 'GSM2670930': {'source': 'Ascending Aorta', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Human Aortic Vascular Smooth Muscle Cells', 'matrix': 'Stiff'}, 'GSM2670931': {'source': 'Ascending Aorta', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Human Aortic Vascular Smooth Muscle Cells', 'matrix': 'Stiff'}, 'GSM2670932': {'source': 'Ascending Aorta', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Human Aortic Vascular Smooth Muscle Cells', 'matrix': 'Stiff'}, 'GSM2670933': {'source': 'Ascending Aorta', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Human Aortic Vascular Smooth Muscle Cells', 'matrix': 'Soft'}, 'GSM2670934': {'source': 'Ascending Aorta', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Human Aortic Vascular Smooth Muscle Cells', 'matrix': 'Soft'}, 'GSM2670935': {'source': 'Ascending Aorta', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Human Aortic Vascular Smooth Muscle Cells', 'matrix': 'Soft'}, 'GSM2670936': {'source': 'Ascending Aorta', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Human Aortic Vascular Smooth Muscle Cells', 'matrix': 'Soft'}, 'GSM2670937': {'source': 'Coronary Artery', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Coronary Artery Vascular Smooth Muscle Cell', 'matrix': 'Stiff'}, 'GSM2670938': {'source': 'Coronary Artery', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Coronary Artery Vascular Smooth Muscle Cell', 'matrix': 'Stiff'}, 'GSM2670939': {'source': 'Coronary Artery', 'tissue': 'Vascular Smooth Muscle', 'type': 'Primary Coronary Artery Vascular Smooth Muscle Cell', 'matrix': 'Stiff'}, 'GSM1588904': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM1119582': {'region': 'Frontal lobe', 'tissue': 'Brain', 'stage': 'Adult'}, 'GSM1119583': {'region': 'Temporal lobe', 'tissue': 'Brain', 'stage': 'Adult'}, 'GSM1588905': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM2303571': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEK420A'}, 'GSM1847015': {'line': 'MCF10A', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317', 'derivation': 'breast'}, 'GSM1847016': {'line': 'MCF10A', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317', 'derivation': 'breast'}, 'GSM1847017': {'line': 'MCF10A', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317', 'derivation': 'breast'}, 'GSM1847018': {'line': 'MCF7', 'type': 'adenocarcinoma', 'id': 'ATCC HTB-22', 'derivation': 'breast'}, 'GSM1847019': {'line': 'MCF7', 'type': 'adenocarcinoma', 'id': 'ATCC HTB-22', 'derivation': 'breast'}, 'GSM1588907': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi+MEKi'}, 'GSM2303573': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACEK420A'}, 'GSM2649772': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649773': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649770': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2391881': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391886': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2649777': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649774': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649775': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2303575': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACEK420A'}, 'GSM2649778': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2391889': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2610793': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303577': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM2303576': {'race': 'White', 'age': '53', 'bmi': '22', 'disease': 'Non-Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEK420A'}, 'GSM2194609': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3189408': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.683621', 'percentaligned': '0.947784613', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.750227', 'original': 'Control'}, 'GSM3189409': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C34', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.577777', 'percentaligned': '0.953510091', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.95443', 'original': 'Control'}, 'GSM3189400': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '96', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.581421', 'percentaligned': '0.949283927', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '4.789712', 'original': 'Control'}, 'GSM3189401': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-Cpat19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '22', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.558204', 'percentaligned': '0.949373721', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.945568', 'original': 'Case'}, 'GSM3189402': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '58', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.645096', 'percentaligned': '0.92627021', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.276247', 'original': 'Control'}, 'GSM3189403': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '69', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.619621', 'percentaligned': '0.894711764', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.237518'}, 'GSM3189404': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '41', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.576957', 'percentaligned': '0.950623306', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.416924', 'original': 'Control'}, 'GSM3189405': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.60817', 'percentaligned': '0.856418119', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.466042'}, 'GSM3189406': {'boca': 'No', 'years': '15', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '49', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.576066', 'percentaligned': '0.954396741', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.337258'}, 'GSM3189407': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '27', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.645006', 'percentaligned': '0.908579088', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.1687', 'original': 'Control'}, 'GSM3595504': {'replicate': 'rep1', 'treatment': '10nM E2 + 10nM Progesterone', 'time': '24h'}, 'GSM3595505': {'replicate': 'rep1', 'treatment': '10nM E2 + 10nM Dexamethasone', 'time': '24h'}, 'GSM3595506': {'replicate': 'rep1', 'treatment': '10nM E2 + 10nM DHT', 'time': '24h'}, 'GSM3595507': {'replicate': 'rep1', 'treatment': '10nM E2 + 10nM Aldosterone', 'time': '24h'}, 'GSM3595502': {'replicate': 'rep1', 'treatment': 'Vehicle', 'time': '24h'}, 'GSM3595503': {'replicate': 'rep1', 'treatment': '10nM E2', 'time': '24h'}, 'GSM2394399': {'antibody': 'CEBPD, Santa Cruz #sc-636X', 'type': 'HAEC', 'treatment': 'IL1b, 4h', 'passage': '6 to 10'}, 'GSM3595508': {'replicate': 'rep2', 'treatment': 'Vehicle', 'time': '24h'}, 'GSM3595509': {'replicate': 'rep2', 'treatment': '10nM E2', 'time': '24h'}, 'GSM2194600': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1917140': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'quiescent'}, 'GSM2195059': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2061690': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2123929': {}, 'GSM1917142': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'quiescent'}, 'GSM2195057': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2061692': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2123927': {}, 'GSM1917144': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'DMSO 48h', 'condition': 'senescent'}, 'GSM2123924': {}, 'GSM2061694': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2195054': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2061697': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1917147': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'proliferating'}, 'GSM2123923': {}, 'GSM1917148': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': '100nM JQ1 48h', 'condition': 'proliferating'}, 'GSM2061698': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2195050': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2226759': {'line': 'HDF (FB1)', 'type': 'Fibroblasts'}, 'GSM2226758': {'line': 'CPC (H4a)', 'type': 'Stem Cells'}, 'GSM2226757': {'line': 'CPC (H3a)', 'type': 'Stem Cells'}, 'GSM2545238': {'line': 'MDA MB-361', 'type': 'Luminal B Breast Cancer Cell line'}, 'GSM2545239': {'line': 'MDA MB-361', 'type': 'Luminal B Breast Cancer Cell line'}, 'GSM2226756': {'line': 'CPC (H1a)', 'type': 'Stem Cells'}, 'GSM867290': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Untreated'}, 'GSM1954030': {'line': 'MCF7L'}, 'GSM867292': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours'}, 'GSM867293': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours'}, 'GSM867294': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours'}, 'GSM2226755': {'line': 'MSC (a45)', 'type': 'Stem Cells'}, 'GSM2545234': {'line': 'ZR751', 'type': 'Luminal A Breast Cancer Cell line'}, 'GSM2545235': {'line': 'ZR751', 'type': 'Luminal A Breast Cancer Cell line'}, 'GSM2047673': {'well': 'E12', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047672': {'well': 'E11', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047671': {'well': 'E10', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047670': {'well': 'E09', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047677': {'well': 'F04', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047676': {'well': 'F03', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047675': {'well': 'F02', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047674': {'well': 'F01', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2226753': {'line': 'MSC (a19)', 'type': 'Stem Cells'}, 'GSM2047679': {'well': 'F06', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047678': {'well': 'F05', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1972956': {'line': 'H9', 'treatment': 'Control'}, 'GSM1972957': {'line': 'H9', 'treatment': 'lncRNA Knock Down'}, 'GSM1972954': {'line': 'H9', 'treatment': 'Control'}, 'GSM1972955': {'line': 'H9', 'treatment': 'Control'}, 'GSM1972958': {'line': 'H9', 'treatment': 'lncRNA Knock Down'}, 'GSM1972959': {'line': 'H9', 'treatment': 'lncRNA Knock Down'}, 'GSM1144704': {'line': 'SA', 'treatment': 'SFRS9 knock down'}, 'GSM1144705': {'line': 'SA', 'treatment': 'Non-silencing shRNA'}, 'GSM2392057': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2451029': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451028': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100189': {'rin': '9.6', 'Sex': 'Female', 'sspg': '90', 'age': '66', 'bmi': '29.6', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '694', 'method': 'Life-Tech GITC'}, 'GSM2100188': {'rin': '9.4', 'Sex': 'Female', 'sspg': '90', 'age': '66', 'bmi': '29.6', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '694', 'method': 'Life-Tech GITC'}, 'GSM2100187': {'rin': '10', 'Sex': 'Male', 'sspg': '279', 'age': '55', 'bmi': '33.1', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '688', 'method': 'Life-Tech GITC'}, 'GSM2100186': {'rin': '10', 'Sex': 'Male', 'sspg': '279', 'age': '55', 'bmi': '33.1', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '688', 'method': 'Life-Tech GITC'}, 'GSM2100185': {'rin': '10', 'Sex': 'Male', 'sspg': '279', 'age': '55', 'bmi': '33.1', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '688', 'method': 'Life-Tech GITC'}, 'GSM2451022': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451025': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100182': {'rin': '10', 'Sex': 'Male', 'sspg': '200', 'age': '37', 'bmi': '33.2', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '668', 'method': 'Life-Tech GITC'}, 'GSM2100181': {'rin': '10', 'Sex': 'Male', 'sspg': '106', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '32', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '65', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '21214', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '649', 'method': 'Life-Tech GITC'}, 'GSM2100180': {'rin': '10', 'Sex': 'Male', 'sspg': '106', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '32', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '65', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '21214', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '649', 'method': 'Life-Tech GITC'}, 'GSM2212053': {'line': 'Kasumi-1 cells', 'treatment': 'none'}, 'GSM1239139': {'status': '+ / + / +', 'grade': '3', 'subtype': 'polyA enriched RNA', 'id': 'BRB157', 'size': '1.3cm'}, 'GSM2704187': {'line': 'THP-1', 'type': 'acute monocytic leukemia cell line', 'treatment': 'NSC-370284'}, 'GSM2704189': {'line': 'THP-1', 'type': 'acute monocytic leukemia cell line', 'treatment': 'NSC-370284'}, 'GSM2704188': {'line': 'THP-1', 'type': 'acute monocytic leukemia cell line', 'treatment': 'NSC-370284'}, 'GSM2049057': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2794857': {'status': 'poorly differentiated', 'tissue': 'tumor', 'infection': 'HBV infection-free', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2801'}, 'GSM2049059': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049058': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM1053795': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'NF signature'}, 'GSM2112658': {'culture': 'cerebral organoids', 'time': '26 days from the beginning of organoid culture'}, 'GSM2112659': {'culture': 'cerebral organoids', 'time': '40 days from the beginning of organoid culture'}, 'GSM2931411': {'age': 'WEEK13', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931410': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931413': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931412': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM1464349': {'status': 'small cell lung cancer'}, 'GSM1464348': {'status': 'small cell lung cancer'}, 'GSM1464347': {'status': 'small cell lung cancer'}, 'GSM1464346': {'status': 'small cell lung cancer'}, 'GSM1464345': {'status': 'small cell lung cancer'}, 'GSM1464344': {'status': 'small cell lung cancer'}, 'GSM1464343': {'status': 'small cell lung cancer'}, 'GSM1464342': {'status': 'small cell lung cancer'}, 'GSM1464341': {'status': 'small cell lung cancer'}, 'GSM1464340': {'status': 'small cell lung cancer'}, 'GSM2147708': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147709': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2112653': {'culture': 'cerebral organoids', 'time': '26 days from the beginning of organoid culture'}, 'GSM2147700': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147701': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147702': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147703': {'status': 'responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147704': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147705': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147706': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147707': {'status': 'non-responder', 'cohort': '2', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2112656': {'culture': 'cerebral organoids', 'time': '26 days from the beginning of organoid culture'}, 'GSM2112657': {'culture': 'cerebral organoids', 'time': '26 days from the beginning of organoid culture'}, 'GSM2322518': {'replicate': '1', 'line': 'A2EN', 'group': 'uninfected', 'time': '18 h'}, 'GSM2322519': {'replicate': '2', 'line': 'A2EN', 'group': 'uninfected', 'time': '18 h'}, 'GSM2322516': {'replicate': '2', 'line': 'A2EN', 'group': 'uninfected', 'time': '6 h'}, 'GSM2322517': {'replicate': '3', 'line': 'A2EN', 'group': 'uninfected', 'time': '6 h'}, 'GSM2322515': {'replicate': '1', 'line': 'A2EN', 'group': 'uninfected', 'time': '6 h'}, 'GSM686932': {'transfection': 'siCTRL (1027280)', 'digestion': 'yes', 'vendor': 'Upstate', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H3K4me2', 'transgenes': 'none'}, 'GSM686933': {'transfection': 'siFoxA1 (M-010319)', 'digestion': 'yes', 'vendor': 'Upstate', 'agent': 'vehicle', 'line': 'LNCaP', 'antibody': 'H3K4me2', 'transgenes': 'none'}, 'GSM686930': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Abcam', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H3K4me1', 'transgenes': 'none'}, 'GSM686931': {'transfection': 'siCTRL (1027280)', 'digestion': 'yes', 'vendor': 'Upstate', 'agent': 'vehicle', 'line': 'LNCaP', 'antibody': 'H3K4me2', 'transgenes': 'none'}, 'GSM686936': {'transfection': 'siCTRL (1027280)', 'vendor': 'Abcam', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H3K36me3', 'transgenes': 'none'}, 'GSM686937': {'transfection': 'siCTRL (1027280)', 'vendor': 'Abcam', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H3K27ac', 'transgenes': 'none'}, 'GSM686934': {'transfection': 'siFoxA1 (M-010319)', 'digestion': 'yes', 'vendor': 'Upstate', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H3K4me2', 'transgenes': 'none'}, 'GSM686935': {'transfection': 'siCTRL (1027280)', 'vendor': 'Upstate', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H3K4me3', 'transgenes': 'none'}, 'GSM686938': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Abcam', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H3K27ac', 'transgenes': 'none'}, 'GSM686939': {'transfection': 'siCTRL (1027280)', 'vendor': 'Upstate', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H4K5ac', 'transgenes': 'none'}, 'GSM2565414': {'construction': 'PLATE-Seq', 'drug': 'INCA-6'}, 'GSM2565415': {'construction': 'PLATE-Seq', 'drug': 'PCI-24781'}, 'GSM2565416': {'construction': 'PLATE-Seq', 'drug': 'Pracinostat (SB939)'}, 'GSM2565417': {'construction': 'PLATE-Seq', 'drug': 'Resminostat'}, 'GSM2565410': {'construction': 'PLATE-Seq', 'drug': 'HOMIDIUM BROMIDE'}, 'GSM2565411': {'construction': 'PLATE-Seq', 'drug': '7-DESACETOXY-6,7-DEHYDROGEDUNIN'}, 'GSM2565412': {'construction': 'PLATE-Seq', 'drug': 'A-7 hydrochloride'}, 'GSM2565413': {'construction': 'PLATE-Seq', 'drug': 'ER 27319 maleate'}, 'GSM2312098': {'culture': '12', 'line': 'DCX-'}, 'GSM2565418': {'construction': 'PLATE-Seq', 'drug': 'Selinexor (KPT-330)'}, 'GSM2565419': {'construction': 'PLATE-Seq', 'drug': 'UNTREATED'}, 'GSM2312099': {'culture': '12', 'line': 'DCX-'}, 'GSM1006909': {'description': 'Paired 36 nt reads', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'RHA011,RHA012', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'clone-free', 'biorep': '087C,088C'}, 'GSM1006908': {'description': 'Paired 36 nt reads', 'localization': 'cell', 'datatype': 'RnaPet', 'labexpid': 'RHI001,RHI002', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'clone-free', 'biorep': '045WC,046WC'}, 'GSM1006905': {'description': 'Paired 36 nt reads', 'localization': 'cell', 'datatype': 'RnaPet', 'labexpid': 'RHM046,RHM047', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '089WC,090WC'}, 'GSM1006904': {'description': 'Paired 36 nt reads', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'RHM044,RHM045', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'clone-free', 'biorep': '089C,090C'}, 'GSM1006907': {'description': 'Paired 36 nt reads', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'RHS017,RHS018', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'clone-free', 'biorep': '085C,086C'}, 'GSM1006906': {'description': 'Paired 36 nt reads', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'RHS019,RHS020', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'clone-free', 'biorep': '085N,086N'}, 'GSM1446800': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '--'}, 'GSM1446801': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'vehicle', 'passage': '--'}, 'GSM1446802': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'GSI 72 hrs', 'passage': '--'}, 'GSM1446803': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '--'}, 'GSM2075588': {'status': 'Zika infected', 'type': 'Neural Progenitor cells'}, 'GSM2042238': {'type': 'IPS-derived foregut endoderm cells', 'line': 'HDF-iPSCs', 'protocol': 'directed in-vitro differentiation'}, 'GSM2075585': {'status': 'mock infected', 'type': 'Neural Progenitor cells'}, 'GSM2075586': {'status': 'mock infected', 'type': 'Neural Progenitor cells'}, 'GSM2075587': {'status': 'Zika infected', 'type': 'Neural Progenitor cells'}, 'GSM2303401': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303400': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2718775': {'with': 'Bortezomib', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2718774': {'with': 'CB-5083', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2718773': {'with': 'CB-5083', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2718772': {'with': 'DMSO', 'line': 'MM.1S', 'type': 'multiple myeloma cell line'}, 'GSM2303407': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303406': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACCG268'}, 'GSM2303409': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM1654563': {'type': 'umbilical vein endothelial cells', 'treatment': 'control'}, 'GSM1654561': {'type': 'umbilical vein endothelial cells', 'treatment': 'control'}, 'GSM2718779': {'with': 'Bortezomib', 'line': 'RPMI-8226', 'type': 'multiple myeloma cell line'}, 'GSM2718778': {'with': 'CB-5083', 'line': 'RPMI-8226', 'type': 'multiple myeloma cell line'}, 'GSM2808528': {'Stage': 'T4N1M0', 'tissue': 'nontumor colon tissue', 'id': '111', 'Sex': 'female'}, 'GSM2808529': {'Stage': 'T4N0M0', 'tissue': 'colon cancer tissue', 'id': '112', 'Sex': 'male'}, 'GSM2808526': {'Stage': 'T3N1M0', 'tissue': 'nontumor colon tissue', 'id': '101', 'Sex': 'female'}, 'GSM2808527': {'Stage': 'T4N1M0', 'tissue': 'colon cancer tissue', 'id': '111', 'Sex': 'female'}, 'GSM2808524': {'Stage': 'T4N0M0', 'tissue': 'nontumor colon tissue', 'id': '94', 'Sex': 'female'}, 'GSM2808525': {'Stage': 'T3N1M0', 'tissue': 'colon cancer tissue', 'id': '101', 'Sex': 'female'}, 'GSM2808522': {'Stage': 'T3N0M0', 'tissue': 'nontumor colon tissue', 'id': '91', 'Sex': 'female'}, 'GSM2808523': {'Stage': 'T4N0M0', 'tissue': 'colon cancer tissue', 'id': '94', 'Sex': 'female'}, 'GSM2808520': {'Stage': 'T4N0M0', 'tissue': 'nontumor colon tissue', 'id': '57', 'Sex': 'male'}, 'GSM2808521': {'Stage': 'T3N0M0', 'tissue': 'colon cancer tissue', 'id': '91', 'Sex': 'female'}, 'GSM998959': {'line': 'breast cancer cell line MCF-7/TAMR-1', 'genotype': 'tamoxifen resistant'}, 'GSM2141391': {'individual': 'EU76', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141390': {'individual': 'EU74', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2616697': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616696': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2141395': {'individual': 'EU78', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2616690': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2141397': {'individual': 'EU80', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141396': {'individual': 'EU78', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141399': {'individual': 'EU80', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141398': {'individual': 'EU80', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2523081': {'type': 'cell line', 'genotype': 'DNMT3BV699G/R54X'}, 'GSM2616698': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2523083': {'type': 'cell line', 'genotype': 'DNMT3BA603T/wt'}, 'GSM2523082': {'type': 'cell line', 'genotype': 'DNMT3Bwt/wt'}, 'GSM2793978': {'type': 'Jurkat cell (KMT2D V5486M)', 'treatment': 'Chidamide (5nm)+Decitabine (5μm)'}, 'GSM2589426': {'point': '14 days post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589425': {'point': '24hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589424': {'point': '2hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589423': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589422': {'point': '14 days post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589421': {'point': '24hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2589420': {'point': '2hr post-vaccine', 'tissue': 'Whole Blood', 'dose': 'low'}, 'GSM2793975': {'type': 'Jurkat cell (KMT2D V5486M)', 'treatment': 'untreated'}, 'GSM2793976': {'type': 'Jurkat cell (KMT2D V5486M)', 'treatment': 'Chidamide (5nm)'}, 'GSM2793977': {'type': 'Jurkat cell (KMT2D V5486M)', 'treatment': 'Decitabine (5μm)'}, 'GSM1406347': {'type': 'Macrophages(BC9)'}, 'GSM2287488': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287489': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287486': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287487': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287484': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287485': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287482': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287483': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287480': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287481': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2194371': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194370': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194373': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194372': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194375': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194374': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194377': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194376': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194379': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194378': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2264251': {'type': 'non-stem CD133- cells'}, 'GSM1704524': {'protocol': 'Interferon treatment', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704525': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704526': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704527': {'protocol': '6 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704520': {'protocol': '24 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM2730064': {'with': 'FGF13 siRNAs', 'line': 'H460', 'type': 'Non-small cell lung cancer cell line (NSCLC)'}, 'GSM1704522': {'protocol': '40 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704523': {'protocol': 'Interferon treatment', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704528': {'protocol': '6 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704529': {'protocol': '12 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2305809': {'tissue': 'colon'}, 'GSM2305808': {'tissue': 'colon'}, 'GSM2305803': {'tissue': 'colon'}, 'GSM2305802': {'tissue': 'colon'}, 'GSM2305801': {'tissue': 'colon'}, 'GSM2305800': {'tissue': 'colon'}, 'GSM2305807': {'tissue': 'colon'}, 'GSM2305806': {'tissue': 'colon'}, 'GSM2305805': {'tissue': 'colon'}, 'GSM2305804': {'tissue': 'colon'}, 'GSM1383745': {'donor': 'A2737', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383744': {'donor': 'A2736', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383747': {'donor': 'A2824', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383746': {'donor': 'A2775', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383741': {'donor': 'A2775', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383740': {'donor': 'A2737', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383743': {'donor': 'A2735', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383742': {'donor': 'A2824', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '24hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383749': {'donor': 'A2736', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM1383748': {'donor': 'A2735', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM2696541': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Breast tumor', 'histology': '--', 'type': 'Whole human breast tumor', 'size': '--'}, 'GSM2696540': {'status': '2+', 'grade': '3', 'age': '51', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '4.2'}, 'GSM2696543': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Prophylactic Mammoplasty', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696542': {'status': '2+', 'grade': '3', 'age': '71', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.1'}, 'GSM1980229': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980228': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2696547': {'status': '1+ (20)', 'grade': '1', 'age': '60', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '2.4'}, 'GSM2696546': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696549': {'status': '-', 'grade': '3', 'age': '33', 'tissue': 'Breast tumor', 'histology': 'DCIS (Comedo)', 'type': 'Whole human breast tumor', 'size': '10'}, 'GSM2696548': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1980227': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980226': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980221': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980220': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980223': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980222': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM3586898': {'origin': 'GCB', 'pfstt': '915', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '915', 'cycles': '6', 'oscs': '0'}, 'GSM3586899': {'origin': 'GCB', 'pfstt': '882', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '882', 'cycles': '6', 'oscs': '0'}, 'GSM3586892': {'origin': 'GCB', 'pfstt': '753', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '778', 'cycles': '6', 'oscs': '0'}, 'GSM3586893': {'origin': 'GCB', 'pfstt': '867', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1010', 'cycles': '6', 'oscs': '0'}, 'GSM3586890': {'origin': 'ABC', 'pfstt': '78', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '186', 'cycles': '6', 'oscs': '0'}, 'GSM3586891': {'origin': 'GCB', 'pfstt': '737', 'pfscs': '0', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '793', 'cycles': '6', 'oscs': '0'}, 'GSM3586896': {'origin': 'UNCLASSIFIED', 'pfstt': '381', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '919', 'cycles': '6', 'oscs': '0'}, 'GSM3586897': {'origin': 'GCB', 'pfstt': '859', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '905', 'cycles': '6', 'oscs': '0'}, 'GSM3586894': {'origin': 'GCB', 'pfstt': '905', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '905', 'cycles': '8', 'oscs': '0'}, 'GSM3586895': {'origin': 'ABC', 'pfstt': '911', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '997', 'cycles': '6', 'oscs': '0'}, 'GSM2430219': {'with': 'si-ctrl', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM1317876': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1317877': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1317874': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1317875': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1317872': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1317873': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1317870': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1317871': {'source': 'Stanford Surgical', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2027262': {'line': 'MCF7', 'treatment': 'PHF20 knock down with E2 treatment'}, 'GSM2027263': {'line': 'MCF7', 'treatment': 'PHF20 knock down without E2 treatment'}, 'GSM2027260': {'line': 'MCF7', 'treatment': 'Control without E2 treatment'}, 'GSM2027261': {'line': 'MCF7', 'treatment': 'PHF20 knock down with E2 treatment'}, 'GSM2027264': {'line': 'MCF7', 'treatment': 'PHF20 knock down without E2 treatment'}, 'GSM2153329': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153328': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153323': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153322': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153321': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153320': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153327': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153326': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153325': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153324': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2255519': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'Nutlin-3'}, 'GSM2255518': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'IR'}, 'GSM2255517': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'untreated'}, 'GSM2255516': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'Nutlin-3'}, 'GSM2255515': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'IR'}, 'GSM2255514': {'line': 'MCF-7', 'genotype': '53BP1_delta_1', 'treatment': 'untreated'}, 'GSM2255513': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'Nutlin-3'}, 'GSM2255512': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'IR'}, 'GSM2255511': {'line': 'MCF-7', 'genotype': 'p53_delta', 'treatment': 'untreated'}, 'GSM2255510': {'line': 'MCF-7', 'genotype': 'wildtype', 'treatment': 'Nutlin-3'}, 'GSM2632701': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2794405': {'age': '1 d', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794404': {'age': '52 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794407': {'age': '64 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794406': {'age': '47 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794401': {'age': '37 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794403': {'age': '40 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794402': {'age': '11 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794409': {'age': '24 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794408': {'age': '10 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2575011': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575010': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575013': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575012': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575015': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575014': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'One week post infection'}, 'GSM2575017': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2575016': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2575019': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2575018': {'status': 'Asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2042081': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM2042080': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM2042087': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM2042086': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM2042085': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM2042084': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM1661513': {'line': 'A375', 'treatment': 'A771726-treated for 24 hrs'}, 'GSM1661512': {'line': 'A375', 'treatment': 'A771726-treated for 24 hrs'}, 'GSM1661511': {'line': 'A375', 'treatment': 'A771726-treated for 12 hrs'}, 'GSM1661510': {'line': 'A375', 'treatment': 'A771726-treated for 12 hrs'}, 'GSM1661517': {'line': 'A375', 'treatment': 'A771726-treated for 72 hrs'}, 'GSM1661516': {'line': 'A375', 'treatment': 'A771726-treated for 72 hrs'}, 'GSM1661515': {'line': 'A375', 'treatment': 'A771726-treated for 48 hrs'}, 'GSM1661514': {'line': 'A375', 'treatment': 'A771726-treated for 48 hrs'}, 'GSM1661519': {'line': 'A375', 'treatment': 'DMSO-treated for 72 hrs'}, 'GSM1661518': {'line': 'A375', 'treatment': 'DMSO-treated for 72 hrs'}, 'GSM1580962': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580963': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580960': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580961': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580966': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580967': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580964': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580965': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580968': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580969': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM869015': {'line': 'HepG2', 'type': 'human hepatocellular liver carcinoma cells'}, 'GSM869016': {'line': 'HepG2.2.15', 'type': 'human hepatocellular liver carcinoma cells'}, 'GSM2597195': {'variataion': 'control', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2105065': {'gender': 'Female', 'age': '3 Day old', 'batch': '2F', 'condition': 'Trisomic'}, 'GSM2172267': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2172266': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172265': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172264': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172263': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172262': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2172261': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172260': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172269': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172268': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2084299': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM1969195': {'source': 'epithelium', 'line': 'T47D', 'group': 'EXPERIMENT 5', 'description': 'T47D cells semi-permeabilized with digitonin for 1 minute', 'variation': 'wild type'}, 'GSM2211614': {'information': 'p53 KO, SET knocking-down', 'line': 'U2OS-derived cell line', 'replicates': '#2'}, 'GSM1925963': {'type': 'Induced pluripotent stem cell (iPSC)'}, 'GSM1925962': {'type': 'Induced pluripotent stem cell (iPSC)'}, 'GSM1925961': {'type': 'M2-polarized HMDM'}, 'GSM1925960': {'type': 'M1-polarized HMDM'}, 'GSM1925967': {'type': 'M1-polarized IPSDM'}, 'GSM1925966': {'type': 'M1-polarized IPSDM'}, 'GSM1925965': {'type': 'iPSC derived macrophage (IPSDM)'}, 'GSM1704024': {'vendor': 'Dharmacon', 'line': 'HepG2', 'type': 'hepatocellular carcinoma', 'number': 'L-017263-00-0005'}, 'GSM1925969': {'type': 'M2-polarized IPSDM'}, 'GSM1925968': {'type': 'M2-polarized IPSDM'}, 'GSM2093542': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2093543': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2093544': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2093545': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM3711292': {'mediancvcoverage': '0.73842', 'percentaligned': '0.950255974', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '14'}, 'GSM3711293': {'mediancvcoverage': '1.048036', 'percentaligned': '0.946273826', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '14'}, 'GSM3711290': {'mediancvcoverage': '0.593575', 'percentaligned': '0.945671483', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711291': {'mediancvcoverage': '0.877259', 'percentaligned': '0.953696575', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '14'}, 'GSM3711296': {'mediancvcoverage': '0.580968', 'percentaligned': '0.956175349', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '6'}, 'GSM2093546': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM1369079': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siBEGAIN'}, 'GSM3711295': {'mediancvcoverage': '0.553876', 'percentaligned': '0.961192384', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '6'}, 'GSM1369077': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siTOX4'}, 'GSM1369076': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siTGM5'}, 'GSM1369075': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siSAP130'}, 'GSM3711299': {'mediancvcoverage': '0.703428', 'percentaligned': '0.943723925', 'visit': 'Visit 2a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '13'}, 'GSM1369073': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13'}, 'GSM1369072': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPOLR2D'}, 'GSM1369071': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siNFYA'}, 'GSM1369070': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siJAK2'}, 'GSM2433739': {'sample_label': '1924', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433738': {'sample_label': '856', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433731': {'sample_label': '1992', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433730': {'sample_label': '1991', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433733': {'sample_label': '1239', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433732': {'sample_label': '1993', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433735': {'sample_label': '2055', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433734': {'sample_label': '1863', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433737': {'sample_label': '1126', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433736': {'sample_label': '2062', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM1434984': {'line': 'MCF10A', 'type': 'mammary epithelial cells', 'genotype': 'wildtype CDH1'}, 'GSM1434985': {'line': 'MCF10A', 'type': 'mammary epithelial cells', 'genotype': 'wildtype CDH1'}, 'GSM1434982': {'line': 'MCF10A', 'type': 'mammary epithelial cells', 'genotype': 'CDH1-/-'}, 'GSM1434983': {'line': 'MCF10A', 'type': 'mammary epithelial cells', 'genotype': 'CDH1-/-'}, 'GSM1816430': {'type': 'Cord blood stem cells', 'treatment': 'MSI2 over-expression'}, 'GSM1816431': {'type': 'Cord blood stem cells', 'treatment': 'control'}, 'GSM2476819': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476818': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM1816434': {'type': 'Cord blood stem cells', 'treatment': 'MSI2 knockdown'}, 'GSM1816435': {'type': 'Cord blood stem cells', 'treatment': 'control'}, 'GSM1816436': {'type': 'Cord blood stem cells', 'treatment': 'control'}, 'GSM2476813': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476812': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476811': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476810': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476817': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476816': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476815': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476814': {'type': 'MCF7', 'mutation': 'Y537N', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2898848': {'line': 'NA19108', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898849': {'line': 'NA19116', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM1213439': {'line': 'HCT116 p53-/-', 'treatment': 'irradiation', 'time': '24 h'}, 'GSM1213438': {'line': 'HCT116 p53-/-', 'treatment': 'irradiation', 'time': '4 h'}, 'GSM1213435': {'line': 'HCT116', 'treatment': 'irradiation', 'time': '4 h'}, 'GSM1213434': {'line': 'HCT116', 'treatment': 'control', 'time': '0 h'}, 'GSM1213437': {'line': 'HCT116 p53-/-', 'treatment': 'control', 'time': '0 h'}, 'GSM1213436': {'line': 'HCT116', 'treatment': 'irradiation', 'time': '24 h'}, 'GSM1213431': {'line': 'MCF10A', 'treatment': 'control', 'time': '0 h'}, 'GSM1213433': {'line': 'MCF10A', 'treatment': 'irradiation', 'time': '24 h'}, 'GSM1213432': {'line': 'MCF10A', 'treatment': 'irradiation', 'time': '4 h'}, 'GSM1957276': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957277': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957274': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957275': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957272': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957273': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957270': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957271': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2187240': {'antibody': 'H3K4me3 (Millipore, 07-473, lot 2664283)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM1957278': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1957279': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2011506': {'line': 'HEK293FT', 'variation': 'No FOXE3 Expression'}, 'GSM2011507': {'line': 'HEK293FT', 'variation': 'No FOXE3 Expression'}, 'GSM2011504': {'line': 'HEK293FT', 'variation': 'No FOXE3 Expression'}, 'GSM2011505': {'line': 'HEK293FT', 'variation': 'No FOXE3 Expression'}, 'GSM2011502': {'line': 'HEK293FT', 'variation': 'No FOXE3 Expression'}, 'GSM2011503': {'line': 'HEK293FT', 'variation': 'No FOXE3 Expression'}, 'GSM2011508': {'line': 'HEK293FT', 'variation': 'No FOXE3 Expression'}, 'GSM2011509': {'line': 'HEK293FT', 'variation': 'No FOXE3 Expression'}, 'GSM2153254': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2211613': {'information': 'p53 KO, SET knocking-down', 'line': 'U2OS-derived cell line', 'replicates': '#1'}, 'GSM3195639': {'status': 'day 5', 'line': 'HUES8', 'Sex': 'male', 'passage': 'p22'}, 'GSM2492526': {'tissue': 'blood', 'type': 'CD4'}, 'GSM2420832': {'type': 'induced pluripotent stem cell-derived retinal pigmented epithelium cells (iPSC-RPE)', 'genotype': 'CFH -/- ARMS2/HTRA1 -/-', 'diagnosis': 'healthy', 'passage': '1'}, 'GSM2420833': {'type': 'induced pluripotent stem cell-derived retinal pigmented epithelium cells (iPSC-RPE)', 'genotype': 'CFH -/- ARMS2/HTRA1 -/-', 'diagnosis': 'healthy', 'passage': '1'}, 'GSM2420831': {'type': 'induced pluripotent stem cell-derived retinal pigmented epithelium cells (iPSC-RPE)', 'genotype': 'CFH -/- ARMS2/HTRA1 -/-', 'diagnosis': 'healthy', 'passage': '1'}, 'GSM2420836': {'type': 'induced pluripotent stem cell-derived retinal pigmented epithelium cells (iPSC-RPE)', 'genotype': 'CFH +/+ ARMS2/HTRA1 -/-', 'diagnosis': 'age-related macular degeneration (AMD)', 'passage': '1'}, 'GSM2420834': {'type': 'induced pluripotent stem cell-derived retinal pigmented epithelium cells (iPSC-RPE)', 'genotype': 'CFH +/+ ARMS2/HTRA1 -/-', 'diagnosis': 'age-related macular degeneration (AMD)', 'passage': '1'}, 'GSM2420835': {'type': 'induced pluripotent stem cell-derived retinal pigmented epithelium cells (iPSC-RPE)', 'genotype': 'CFH +/+ ARMS2/HTRA1 -/-', 'diagnosis': 'age-related macular degeneration (AMD)', 'passage': '1'}, 'GSM5100638': {'sspg': '243', 'age': '70', 'bmi': '33.2', 'batch': '1-80', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100639': {'sspg': '243', 'age': '70', 'bmi': '33.2', 'batch': '1-80', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100636': {'sspg': '67', 'age': '70', 'bmi': '24.3', 'batch': '1-40', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100637': {'sspg': '67', 'age': '70', 'bmi': '24.3', 'batch': '1-40', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100634': {'sspg': '255', 'age': '70', 'bmi': '27.5', 'batch': '1-70', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100635': {'sspg': '255', 'age': '70', 'bmi': '27.5', 'batch': '1-70', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100632': {'sspg': '88', 'age': '49', 'bmi': '30.2', 'batch': '1-80', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'no', 'lot': 'unknown', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100633': {'sspg': '88', 'age': '49', 'bmi': '30.2', 'batch': '1-80', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'yes', 'lot': 'unknown', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100630': {'sspg': '279', 'age': '55', 'bmi': '33.1', 'batch': '1-100', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM5100631': {'sspg': '279', 'age': '55', 'bmi': '33.1', 'batch': '1-100', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/12/17', 'type': 'iPSC'}, 'GSM1896232': {'individual': 'EU62', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1234007': {'replicate': '2', 'line': '18505', 'antibody': 'RZ'}, 'GSM1234006': {'replicate': '1', 'line': '18505', 'antibody': 'RZ'}, 'GSM1234005': {'replicate': '1', 'line': '18505', 'antibody': 'Input'}, 'GSM1234004': {'replicate': '2', 'line': '18505', 'antibody': 'H3K4me3'}, 'GSM1234003': {'replicate': '1', 'line': '18505', 'antibody': 'H3K4me3'}, 'GSM1234002': {'replicate': '2', 'line': '18505', 'antibody': 'H3K4me1'}, 'GSM1234001': {'replicate': '1', 'line': '18505', 'antibody': 'H3K4me1'}, 'GSM1234000': {'replicate': '2', 'line': '18505', 'antibody': 'H3K36me3'}, 'GSM1234009': {'replicate': '2', 'line': '18505', 'antibody': 'SA1'}, 'GSM1234008': {'replicate': '1', 'line': '18505', 'antibody': 'SA1'}, 'GSM1867012': {'line': 'HEK293', 'clone': 'HEK293 Control Clone 2', 'point': 'RNA extracted on day E'}, 'GSM1867013': {'line': 'HEK293', 'clone': 'HEK293 Deletion Clone 1', 'point': 'RNA extracted on day E'}, 'GSM1867010': {'line': 'HCT116', 'clone': '18qE Deletion Clone 2', 'point': 'RNA extracted on day D'}, 'GSM1867011': {'line': 'HEK293', 'clone': 'HEK293 Control Clone 1', 'point': 'RNA extracted on day E'}, 'GSM1867014': {'line': 'HEK293', 'clone': 'HEK293 Deletion Clone 1', 'point': 'RNA extracted on day E'}, 'GSM3195632': {'status': 'day 0', 'line': 'H1', 'Sex': 'male', 'passage': 'p49'}, 'GSM3195633': {'status': 'day 5', 'line': 'H1', 'Sex': 'male', 'passage': 'p49'}, 'GSM3195630': {'status': 'day 0', 'line': 'CHB8', 'Sex': 'female', 'passage': 'p39'}, 'GSM1863669': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM2460279': {'type': 'embryonic stem cells'}, 'GSM985138': {'line': 'HeLa', 'antibody': 'none', 'agent': '25mM sodium bicarbonate'}, 'GSM985139': {'line': 'HeLa', 'antibody': 'none', 'agent': '3mM sodium bicarbonate'}, 'GSM2460274': {'type': 'embryonic stem cells'}, 'GSM2460275': {'type': 'embryonic stem cells'}, 'GSM1863667': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863666': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863661': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863660': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_low'}, 'GSM1863663': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863662': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1896233': {'individual': 'EU62', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1904533': {'line': 'MCF7', 'type': 'ER+, PR+'}, 'GSM1904535': {'line': 'MDA-MB231', 'type': 'Triple Negative'}, 'GSM1904534': {'line': 'MCF7', 'type': 'ER+, PR+'}, 'GSM1904537': {'line': 'MDA-MB231', 'type': 'Triple Negative'}, 'GSM1904536': {'line': 'MDA-MB231', 'type': 'Triple Negative'}, 'GSM2050563': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM2050562': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM3195636': {'status': 'day 0', 'line': 'HUES7', 'Sex': 'male', 'passage': 'p36'}, 'GSM2050567': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM2050566': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM2944154': {'type': 'hTERT-immortalized mesenchymal stem cell', 'background': 'hTERT-hMSC'}, 'GSM2944155': {'type': 'hTERT-immortalized mesenchymal stem cell', 'background': 'hTERT-hMSC'}, 'GSM2944156': {'type': 'hTERT-immortalized mesenchymal stem cell', 'background': 'hTERT-hMSC'}, 'GSM2689065': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2944150': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'SK-ES'}, 'GSM2944151': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'SK-ES'}, 'GSM2944152': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'SK-ES'}, 'GSM2944153': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'SK-ES'}, 'GSM3195637': {'status': 'day 5', 'line': 'HUES7', 'Sex': 'male', 'passage': 'p36'}, 'GSM2050564': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM2944158': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP overexpression', 'background': 'hTERT-hMSC'}, 'GSM2944159': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP overexpression', 'background': 'hTERT-hMSC'}, 'GSM2689068': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689069': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1857419': {'transduction': 'DACOR1 Lentivirus', 'line': 'V852', 'type': 'Colorectal cancer', 'Sex': 'Male'}, 'GSM1556834': {'with': 'shRNA adenovirus against human lncRNA GAS', 'line': 'BGC823', 'type': 'human gastric cancer cells', 'passage': '16-19'}, 'GSM1556833': {'with': 'shRNA adenovirus against human lncRNA GAS', 'line': 'BGC823', 'type': 'human gastric cancer cells', 'passage': '16-19'}, 'GSM1556832': {'with': 'shRNA adenovirus against human lncRNA GAS', 'line': 'BGC823', 'type': 'human gastric cancer cells', 'passage': '16-19'}, 'GSM1556831': {'with': 'nonspecific shRNA virus', 'line': 'BGC823', 'type': 'human gastric cancer cells', 'passage': '16-19'}, 'GSM1556830': {'with': 'nonspecific shRNA virus', 'line': 'BGC823', 'type': 'human gastric cancer cells', 'passage': '16-19'}, 'GSM2050569': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM2050568': {'line': 'SAOS2', 'tissue': 'cell culture', 'resistance': 'puromycin selection for 6 days after lentiviral transduction', 'passage': 'less than 30 passages'}, 'GSM3195634': {'status': 'day 0', 'line': 'H9', 'Sex': 'female', 'passage': 'p60'}, 'GSM1937003': {'type': 'HMLE'}, 'GSM1937002': {'type': 'HMLE'}, 'GSM1937001': {'type': 'HMLE'}, 'GSM1937000': {'type': 'HMLE'}, 'GSM1937007': {'type': 'NAMEC8'}, 'GSM1937006': {'type': 'NAMEC8'}, 'GSM1937005': {'type': 'HMLE'}, 'GSM1937004': {'type': 'HMLE'}, 'GSM1937009': {'type': 'NAMEC8'}, 'GSM1937008': {'type': 'NAMEC8'}, 'GSM1683277': {'type': 'U87 human glioma cells'}, 'GSM2391929': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391928': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1571058': {'stage': 'undifferentiated'}, 'GSM1571059': {'stage': 'undifferentiated'}, 'GSM2391921': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2391920': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2082580': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2391922': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2391925': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391924': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2391927': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391926': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2752371': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752370': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752373': {'tnm': 'T2N2aM0', 'subtype': 'B', 'bloom': '3', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752372': {'tnm': 'T2N1aM0', 'subtype': 'A', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752375': {'tnm': 'T2N0M0', 'subtype': 'A', 'bloom': '1', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752374': {'tnm': 'T2N0M0', 'subtype': 'A', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752377': {'tnm': 'T2N1aM0', 'subtype': 'B', 'bloom': '3', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752376': {'tnm': 'T1cN0M0', 'subtype': 'B', 'bloom': '3', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752379': {'tnm': 'T2N0M0', 'subtype': 'B', 'bloom': '3', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM2752378': {'tnm': 'T2N1M0', 'subtype': 'A', 'bloom': '2', 'receptors': 'ER+/HER2-', 'nature': 'primary invasive breast carcinoma'}, 'GSM1842237': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM1842236': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM1842235': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM1842234': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM1842233': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM1608269': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM1608264': {'line': 'MCF10A-ER-Src', 'type': 'Total RNA'}, 'GSM1608265': {'line': 'MCF10A-ER-Src', 'type': 'Total RNA'}, 'GSM1608266': {'line': 'MCF10A-ER-Src', 'type': 'Total RNA'}, 'GSM1608267': {'line': 'MCF10A-ER-Src', 'type': 'Total RNA'}, 'GSM1608261': {'line': 'MCF10A-ER-Src', 'type': 'Total RNA'}, 'GSM1842239': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM1842238': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM2584723': {'tissue': 'ex vivo derived cells', 'type': 'Immature hepatocyte', 'passage': '34+1'}, 'GSM2584722': {'tissue': 'ex vivo derived cells', 'type': 'Hepatic stem cells', 'passage': '34+1'}, 'GSM2584721': {'tissue': 'ex vivo derived cells', 'type': 'Hepatic stem cells', 'passage': '34+1'}, 'GSM2584720': {'tissue': 'ex vivo derived cells', 'type': 'Ectoderm cells', 'passage': '34+1'}, 'GSM2584727': {'tissue': 'Bone marrow', 'type': 'mesenchymal stem cells', 'passage': 'Natal, P3'}, 'GSM2584726': {'tissue': 'ex vivo derived cells', 'type': 'Hepatocyte-like cells', 'passage': '34+1'}, 'GSM2584725': {'tissue': 'ex vivo derived cells', 'type': 'Hepatocyte-like cells', 'passage': '34+1'}, 'GSM2584724': {'tissue': 'ex vivo derived cells', 'type': 'Immature hepatocyte', 'passage': '34+1'}, 'GSM2584728': {'tissue': 'Bone marrow', 'type': 'mesenchymal stem cells', 'passage': 'Natal, P4'}, 'GSM1585243': {'type': 'Ribosomal profiling', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM1482963': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '7T2'}, 'GSM1482962': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '5T2'}, 'GSM1482961': {'status': 'untrained', 'point': 'pre-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '5T1'}, 'GSM1482960': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'male', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '4T2'}, 'GSM1482964': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '9T2'}, 'GSM1897280': {'line': 'BT474', 'type': 'breast cancer cell line'}, 'GSM2176284': {'replicate': '2', 'area': 'core'}, 'GSM1897282': {'line': 'BT549', 'type': 'breast cancer cell line'}, 'GSM2176286': {'replicate': '2', 'area': 'periphery'}, 'GSM1897284': {'line': 'CAL148', 'type': 'breast cancer cell line'}, 'GSM1897285': {'line': 'CAL51', 'type': 'breast cancer cell line'}, 'GSM1897286': {'line': 'CAL851', 'type': 'breast cancer cell line'}, 'GSM1808014': {'tissue': 'Kidney'}, 'GSM1897288': {'line': 'DU4475', 'type': 'breast cancer cell line'}, 'GSM1897289': {'line': 'EFM19', 'type': 'breast cancer cell line'}, 'GSM1924564': {'line': 'LS8817', 'treatment': 'Untreated'}, 'GSM1924565': {'line': 'LS8817', 'treatment': 'Doxorubicin'}, 'GSM1924566': {'line': 'LS8817', 'treatment': 'Doxorubicin'}, 'GSM1924567': {'line': 'LS8817', 'treatment': 'Doxorubicin'}, 'GSM1924560': {'line': 'LS8817', 'treatment': 'Serum-starved'}, 'GSM1924561': {'line': 'LS8817', 'treatment': 'Serum-starved'}, 'GSM1924562': {'line': 'LS8817', 'treatment': 'Untreated'}, 'GSM1924563': {'line': 'LS8817', 'treatment': 'Untreated'}, 'GSM1808011': {'tissue': 'Kidney'}, 'GSM1924568': {'line': 'LS8817', 'treatment': 'CDK4 inhibitor PD0332991'}, 'GSM1924569': {'line': 'LS8817', 'treatment': 'CDK4 inhibitor PD0332991'}, 'GSM1808010': {'tissue': 'Kidney'}, 'GSM1808013': {'tissue': 'Kidney'}, 'GSM1808012': {'tissue': 'Kidney'}, 'GSM1617372': {'patient': '10', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617373': {'patient': '2', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'CNOT3 (Novus Biologicals, catalog# H00004849_M01, lot# A1171-4B8)'}, 'GSM1617370': {'patient': '8', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617371': {'patient': '9', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM1617376': {'patient': '3', 'tissue': 'Primary colonic adenoma', 'antibody': 'none (input)'}, 'GSM1617377': {'patient': '4', 'tissue': 'Primary colonic adenoma', 'antibody': 'none (input)'}, 'GSM1617374': {'patient': '9', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'CNOT3 (Novus Biologicals, catalog# H00004849_M01, lot# A1171-4B8)'}, 'GSM1617375': {'patient': '1', 'tissue': 'Primary colonic adenoma', 'antibody': 'none (input)'}, 'GSM1808019': {'tissue': 'Heart'}, 'GSM1617378': {'patient': '6', 'tissue': 'Primary colonic adenoma', 'antibody': 'none (input)'}, 'GSM1617379': {'patient': '7', 'tissue': 'Primary colonic adenoma', 'antibody': 'none (input)'}, 'GSM3161879': {'stimulation': 'unstimulated', 'line': 'HES2', 'type': 'ventricle myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161878': {'stimulation': 'unstimulated', 'line': 'HES2', 'type': 'ventricle myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM2781410': {'line': 'KMB17', 'passages': '20-28', 'type': 'Human fetal lung tissue-derived fibroblast cells', 'infection': 'HSV-1 strain 17 (GenBank: NC_001806.2)'}, 'GSM3161877': {'stimulation': 'stimulated', 'line': 'HES2', 'type': 'ventricle myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161876': {'stimulation': 'stimulated', 'line': 'HES2', 'type': 'ventricle myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161875': {'stimulation': 'stimulated', 'line': 'HES2', 'type': 'ventricle myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM2597200': {'variataion': 'YY1-mutated (p.Asp380Tyr)', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597201': {'variataion': 'YY1 hemizygous deletion', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597202': {'variataion': 'YY1-mutated (p.Leu366Pro)', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM2597203': {'variataion': 'YY1-mutated (p.Lys179*)', 'type': 'Immortalized lymphoblastoid cell line (LC)', 'batch': '2', 'subtype': 'Total RNA (Ribozero-depleted)'}, 'GSM1827534': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '2.30800821355236', 'quality': '3'}, 'GSM1354569': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta+SiERalpha', 'subtype': 'Adenocarcinoma', 'treatment': 'control', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM2026945': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'A2RRD8'}, 'GSM3580319': {'phase': 'Immune Active', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580318': {'phase': 'Immune Active', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM2362598': {'line': 'HEK293'}, 'GSM3580313': {'phase': 'HIV-1', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HIV'}, 'GSM3580312': {'phase': 'HIV-1', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HIV'}, 'GSM3580311': {'phase': 'HIV-1', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HIV'}, 'GSM3580310': {'phase': 'HIV-1', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HIV'}, 'GSM3580317': {'phase': 'Immune Active', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580316': {'phase': 'Immune Active', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580315': {'phase': 'Immune Active', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM3580314': {'phase': 'Immune Active', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Chronic HBV'}, 'GSM2559743': {'differentiation': 'Poorly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P17', 'stage': 'A3(BCLC)'}, 'GSM2109579': {'subtype': 'B3', 'state': 'Tumor'}, 'GSM2559741': {'differentiation': 'Poorly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P14', 'stage': 'B(BCLC)'}, 'GSM2559740': {'differentiation': 'Poorly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P14', 'stage': 'B(BCLC)'}, 'GSM2559747': {'differentiation': 'Moderately', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P29', 'stage': 'A2(BCLC)'}, 'GSM2559746': {'differentiation': 'Moderately', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P29', 'stage': 'A2(BCLC)'}, 'GSM2559745': {'differentiation': 'Moderately', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P26', 'stage': 'B(BCLC)'}, 'GSM2109578': {'subtype': 'A/B', 'state': 'Tumor'}, 'GSM2559749': {'differentiation': 'Moderately', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P36', 'stage': 'B(BCLC)'}, 'GSM2026946': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'A2RRD8'}, 'GSM2362594': {'line': 'HEK293'}, 'GSM3670780': {'status': 'Healthy Asian donor', 'with': 'VE-UHMWPE particles', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage'}, 'GSM3670781': {'status': 'Healthy Asian donor', 'with': 'VE-UHMWPE particles', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage'}, 'GSM2362595': {'line': 'HEK293'}, 'GSM2362592': {'line': 'HEK293'}, 'GSM2362593': {'line': 'HEK293'}, 'GSM2226551': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 8', 'type': 'Sphere'}, 'GSM2362590': {'line': 'HEK293'}, 'GSM2492304': {'media': '10% fetal bovine serum (FBS), 1% penicillin/streptomycin, 50 μM of retinoic acid', 'line': 'CRL-2266'}, 'GSM2362591': {'line': 'HEK293'}, 'GSM2492301': {'media': '10% fetal bovine serum (FBS), 1% penicillin/streptomycin', 'line': 'CRL-2266'}, 'GSM2492300': {'media': '10% fetal bovine serum (FBS), 1% penicillin/streptomycin', 'line': 'CRL-2266'}, 'GSM2492303': {'media': '10% fetal bovine serum (FBS), 1% penicillin/streptomycin, 50 μM of retinoic acid', 'line': 'CRL-2266'}, 'GSM2492302': {'media': '10% fetal bovine serum (FBS), 1% penicillin/streptomycin', 'line': 'CRL-2266'}, 'GSM949330': {'line': 'HeLa', 'treatment': 'control', 'construct': 'SHC002'}, 'GSM949331': {'line': 'HeLa', 'treatment': 'control', 'construct': 'SHC002'}, 'GSM949332': {'line': 'HeLa', 'treatment': 'H2A.Bbd KD', 'construct': 'TRC106827'}, 'GSM949333': {'line': 'HeLa', 'treatment': 'H2A.Bbd KD', 'construct': 'TRC106827'}, 'GSM2204238': {'sirna': 'control', 'line': 'Coriell Line ND38530', 'type': 'fibroblast cell line'}, 'GSM2204239': {'sirna': 'SUPT4H1', 'line': 'Coriell Line ND38530', 'type': 'fibroblast cell line'}, 'GSM2204234': {'sirna': 'control', 'line': 'Coriell Line ND29510', 'type': 'fibroblast cell line'}, 'GSM2204235': {'sirna': 'SUPT4H1', 'line': 'Coriell Line ND29510', 'type': 'fibroblast cell line'}, 'GSM2204236': {'sirna': 'SUPT4H1', 'line': 'Coriell Line ND29510', 'type': 'fibroblast cell line'}, 'GSM2204237': {'sirna': 'control', 'line': 'Coriell Line ND38530', 'type': 'fibroblast cell line'}, 'GSM2204233': {'sirna': 'control', 'line': 'Coriell Line ND29510', 'type': 'fibroblast cell line'}, 'GSM2616529': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616528': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2616527': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616526': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616525': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616524': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616523': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2616522': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616521': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616520': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2552878': {'individual': 'volunteer 1'}, 'GSM2552879': {'individual': 'volunteer 2'}, 'GSM2552875': {'individual': 'volunteer 1'}, 'GSM2552876': {'individual': 'volunteer 1'}, 'GSM2552877': {'individual': 'volunteer 1'}, 'GSM2552870': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM1844649': {'line': 'Du145', 'tissue': 'prostate'}, 'GSM2552872': {'gender': 'female', 'tissue': 'Interscapular subcutaneous adipose tissue', 'genotype': 'WT'}, 'GSM2840528': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840529': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2277139': {'status': 'overexpression', 'line': 'LNCaP'}, 'GSM2840522': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840523': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840520': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840521': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840526': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2277130': {'status': 'knockdown', 'line': '22rv1'}, 'GSM2840524': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840525': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2455864': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2285387': {'replicate': '3', 'time': '24 h', 'type': 'aml', 'name': 'MV411', 'treatment': 'AZD5153'}, 'GSM2285386': {'replicate': '2', 'time': '24 h', 'type': 'aml', 'name': 'MV411', 'treatment': 'AZD5153'}, 'GSM2285385': {'replicate': '1', 'time': '24 h', 'type': 'aml', 'name': 'MV411', 'treatment': 'AZD5153'}, 'GSM2285384': {'replicate': '3', 'time': '24 h', 'type': 'mm', 'name': 'MM1S', 'treatment': 'AZD5153'}, 'GSM2285383': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'MM1S', 'treatment': 'AZD5153'}, 'GSM2285382': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'MM1S', 'treatment': 'AZD5153'}, 'GSM2285381': {'replicate': '2', 'time': '24 h', 'type': 'dlbcl', 'name': 'WILL2', 'treatment': 'AZD5153'}, 'GSM2285380': {'replicate': '1', 'time': '24 h', 'type': 'dlbcl', 'name': 'WILL2', 'treatment': 'AZD5153'}, 'GSM2285389': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'RPMI8226', 'treatment': 'AZD5153'}, 'GSM2285388': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'RPMI8226', 'treatment': 'AZD5153'}, 'GSM2316582': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316583': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM922270': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922271': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2316586': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316587': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM922274': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2316585': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316588': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316589': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1716673': {'type': 'Neutrophils', 'method': 'Negative selection (beads)', 'treatment': 'TNF-alpha (10ng/mL) 1h'}, 'GSM1716672': {'type': 'Neutrophils', 'method': 'Polymorphprep (poly)', 'treatment': 'GM-CSF (5ng/mL) 1h'}, 'GSM1716671': {'type': 'Neutrophils', 'method': 'Negative selection (beads)', 'treatment': 'GM-CSF (5ng/mL) 1h'}, 'GSM1716670': {'type': 'Neutrophils', 'method': 'Polymorphprep (poly)', 'treatment': 'Untreated 1h'}, 'GSM1716674': {'type': 'Neutrophils', 'method': 'Polymorphprep (poly)', 'treatment': 'TNF-alpha (10ng/mL) 1h'}, 'GSM2802974': {'line': 'hMSC-TERT4', 'variation': 'siHSF1', 'stage': 'D7'}, 'GSM1365987': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Control', 'timepoint': '24hr'}, 'GSM1365986': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'NMP', 'timepoint': '24hr'}, 'GSM1365985': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Combo', 'timepoint': '24hr'}, 'GSM1365984': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': '5.AZA', 'timepoint': '24hr'}, 'GSM1365983': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'LBH.589', 'timepoint': '24hr'}, 'GSM1365982': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Control', 'timepoint': '24hr'}, 'GSM1365981': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'NMP', 'timepoint': '4hr'}, 'GSM1365980': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Combo', 'timepoint': '4hr'}, 'GSM1365989': {'source': 'peripheral blood', 'line': 'U266', 'treatment': '5.AZA', 'timepoint': '24hr'}, 'GSM1365988': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'LBH.589', 'timepoint': '24hr'}, 'GSM2141218': {'transduced': 'shRNA targeting the firefly luciferase', 'type': 'glioblastoma; astrocytoma; classified as grade IV'}, 'GSM2141219': {'transduced': 'shRNA targeting the firefly luciferase', 'type': 'glioblastoma; astrocytoma; classified as grade IV'}, 'GSM2643285': {'gender': 'male', 'line': 'LNCaP-APIPC human prostate tumor cell line', 'type': 'prostate cancer', 'media': 'pheno-red free RPMI-1640 + 5% CSS (Charcoal Dextran stripped FBS) (Gemini) + 1% PenStrep'}, 'GSM2526918': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2193068': {'sirna': 'non-targeting siRNA control', 'line': 'FT246', 'type': 'Immortalized fallopian tube secretory cell'}, 'GSM2420302': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2193069': {'sirna': 'PAX8 siRNA 403', 'line': 'FT246', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15403, Ambion'}, 'GSM2420303': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2193064': {'sirna': 'PAX8 siRNA 404', 'line': 'FT194', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15404, Ambion'}, 'GSM2858972': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS42 sorted by FACS for high expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM1473788': {'origin': 'Skin', 'with': 'None (grown until growth arrest)', 'passages': '28-30', 'type': 'MDAH041 LFS fibroblasts', 'group': 'replicatively senescent'}, 'GSM1473786': {'origin': 'Skin', 'with': 'None (grown until growth arrest)', 'passages': '28-30', 'type': 'MDAH041 LFS fibroblasts', 'group': 'replicatively senescent'}, 'GSM1473784': {'origin': 'Skin', 'with': 'None (grown until growth arrest)', 'passages': '28-30', 'type': 'MDAH041 LFS fibroblasts', 'group': 'replicatively senescent'}, 'GSM2193066': {'sirna': 'PAX8 siRNA pool', 'line': 'FT194', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15403, s15404, s15405, Ambion'}, 'GSM1473781': {'origin': 'Skin', 'with': 'None', 'passages': '17-19', 'type': 'MDAH041 LFS fibroblasts', 'group': 'aging cells'}, 'GSM2311802': {'culture': '0'}, 'GSM2311803': {'culture': '0'}, 'GSM2311800': {'culture': '0'}, 'GSM2311801': {'culture': '0'}, 'GSM2311806': {'culture': '0'}, 'GSM2311807': {'culture': '0'}, 'GSM2311804': {'culture': '0'}, 'GSM2311805': {'culture': '0'}, 'GSM2643288': {'gender': 'male', 'line': 'LNCaP-APIPC human prostate tumor cell line', 'type': 'prostate cancer', 'media': 'pheno-red free RPMI-1640 + 5% CSS (Charcoal Dextran stripped FBS) (Gemini) + 1% PenStrep + 1nM R1881'}, 'GSM2311808': {'culture': '0'}, 'GSM2311809': {'culture': '0'}, 'GSM2309851': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Unknown', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '40.87'}, 'GSM2287525': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287524': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287527': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287526': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287521': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610968': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2287523': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287522': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610965': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610964': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610967': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2309853': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'FSGS-Focal sclerosing GN', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '52.22'}, 'GSM2610961': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2287528': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610963': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610962': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2507554': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12-/- + WT'}, 'GSM1377980': {'tissue': 'Peripheral blood', 'diagnosis': 'Healthy'}, 'GSM1377981': {'tissue': 'Peripheral blood', 'diagnosis': 'Healthy'}, 'GSM1377982': {'sirna': 'control siRNA', 'line': 'UMSCC-74B', 'type': 'Tongue squamous cell carcinoma'}, 'GSM1377983': {'sirna': 'CELF1 siRNA', 'line': 'UMSCC-74B', 'type': 'Tongue squamous cell carcinoma'}, 'GSM2653502': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2682871': {'gender': 'male', 'age': '1.6 years', 'diagnosis': 'alveolar rhabdomyosarcoma'}, 'GSM2682872': {'gender': 'female', 'age': '6 years', 'diagnosis': 'alveolar rhabdomyosarcoma'}, 'GSM2682873': {'gender': 'male', 'age': '36 years', 'diagnosis': 'alveolar rhabdomyosarcoma'}, 'GSM2653506': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2682875': {'gender': 'male', 'age': '8 years', 'diagnosis': 'metastatic alveolar rhabdomyosarcoma'}, 'GSM2682876': {'gender': 'female', 'age': '4 years', 'diagnosis': 'Diffuse Intrinsic Pontine Glioma'}, 'GSM2682877': {'gender': 'female', 'age': '14 years', 'diagnosis': 'metastatic alveolar rhabdomyosarcoma'}, 'GSM2682878': {'gender': 'female', 'age': '22 years', 'diagnosis': \"metastatic Ewing's sarcoma\"}, 'GSM2682879': {'gender': 'female', 'age': '2 years', 'diagnosis': 'alveolar rhabdomyosarcoma'}, 'GSM2653508': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653509': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2458888': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.58'}, 'GSM2458889': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.83'}, 'GSM2458884': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.83'}, 'GSM2458885': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.33'}, 'GSM2458886': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.58'}, 'GSM2644295': {'replication': 'biological replicate 1', 'type': 'fibroblast', 'treatment': 'HCMV-infected'}, 'GSM2458880': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.58'}, 'GSM2458881': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.17'}, 'GSM2458882': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.83'}, 'GSM2458883': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.50'}, 'GSM1707595': {'type': 'naive hESC'}, 'GSM1707596': {'type': 'naive hESC'}, 'GSM1707597': {'type': 'primed hESC'}, 'GSM1707598': {'type': 'primed hESC'}, 'GSM2527968': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527969': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM1855969': {'passages': '3-7', 'antibody': 'GATA3 serum (Adomas et al, 2014)', 'variation': 'GATA3 expressed'}, 'GSM1855968': {'passages': '3-7', 'antibody': 'GATA3 serum (Adomas et al, 2014)', 'variation': 'GATA3 expressed'}, 'GSM1855967': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855966': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855965': {'passages': '3-7', 'antibody': 'GATA3 serum (Adomas et al, 2014)', 'variation': 'GATA3 expressed'}, 'GSM1855964': {'passages': '3-7', 'antibody': 'GATA3 serum (Adomas et al, 2014)', 'variation': 'GATA3 expressed'}, 'GSM2474921': {'duration': '60min', 'treatment': 'DEX'}, 'GSM2474920': {'duration': '60min', 'treatment': 'EGF'}, 'GSM2474922': {'duration': '60min', 'treatment': 'DEX'}, 'GSM2527960': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2178809': {'ir': '0.693000693000693', 'weight': 'non-obese', 'gender': 'female', 'age': '63', 'bmi': '24.8', 'disease': 'ngt', 'l': '0.05', 'h': '2', 'id': '2a'}, 'GSM2178808': {'ir': '1.38888888888889', 'weight': 'obese', 'gender': 'female', 'age': '46', 'bmi': '31.9', 'disease': 't2d', 'l': '0.13', 'h': '0', 'id': '46a'}, 'GSM2086265': {'line': 'HEK293', 'batch': 'B'}, 'GSM2527961': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM1704487': {'line': 'PC9', 'type': 'non-small cell lung cancer cells'}, 'GSM2086262': {'line': 'HEK293', 'batch': 'A'}, 'GSM2093128': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': '19', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093129': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093126': {'bin': '1', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2178800': {'ir': '0.362187613183629', 'weight': 'non-obese', 'gender': 'male', 'age': '62', 'bmi': '22.6', 'disease': 't2d', 'l': 'NA', 'h': '1', 'id': '20a'}, 'GSM2178803': {'ir': '1.45560407569141', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '25.9', 'disease': 't2d', 'l': '0.12', 'h': '0', 'id': '119a'}, 'GSM1704488': {'with': '0.1 uM gefitinib for 1 week', 'line': 'PC9', 'type': 'non-small cell lung cancer cells'}, 'GSM2178805': {'ir': '0.321646831778707', 'weight': 'non-obese', 'gender': 'female', 'age': '54', 'bmi': '20.1', 'disease': 't2d', 'l': '0.2', 'h': '0', 'id': '8a'}, 'GSM2178804': {'ir': '1.45560407569141', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '25.9', 'disease': 't2d', 'l': '0.12', 'h': '0.5', 'id': '119a'}, 'GSM2178807': {'ir': '0.321646831778707', 'weight': 'non-obese', 'gender': 'female', 'age': '54', 'bmi': '20.1', 'disease': 't2d', 'l': '0.2', 'h': '1', 'id': '8a'}, 'GSM2178806': {'ir': '0.321646831778707', 'weight': 'non-obese', 'gender': 'female', 'age': '54', 'bmi': '20.1', 'disease': 't2d', 'l': '0.2', 'h': '0.5', 'id': '8a'}, 'GSM1540489': {'state': 'Lyme disease', 'individual': 'patient 01-24', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540488': {'state': 'Lyme disease', 'individual': 'patient 01-23', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1922952': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM1513193': {'gender': 'Female', 'line': 'GM18505', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513192': {'gender': 'Male', 'line': 'GM18504', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513191': {'gender': 'Female', 'line': 'GM18502', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513190': {'gender': 'Male', 'line': 'GM18501', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513197': {'gender': 'Female', 'line': 'GM18511', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513196': {'gender': 'Male', 'line': 'GM18510', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513195': {'gender': 'Female', 'line': 'GM18508', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513194': {'gender': 'Male', 'line': 'GM18507', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2100851': {'status': 'no', 'gender': 'female', 'age': '59', 'race': 'white'}, 'GSM2100853': {'status': 'no', 'gender': 'female', 'age': '77', 'race': 'white'}, 'GSM2100852': {'status': 'yes', 'gender': 'male', 'age': '53', 'race': 'white'}, 'GSM2100855': {'status': 'yes', 'gender': 'female', 'age': '69', 'race': 'white'}, 'GSM2100854': {'status': 'no', 'gender': 'female', 'age': '62', 'race': 'white'}, 'GSM2100857': {'status': 'no', 'gender': 'male', 'age': '51', 'race': 'white'}, 'GSM2100856': {'status': 'no', 'gender': 'male', 'age': '56', 'race': 'white'}, 'GSM2306846': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306847': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306844': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306845': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306842': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306843': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306840': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306841': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306848': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306849': {'transduction': 'ASF1B', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM1534546': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534545': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534544': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534543': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534542': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534541': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534540': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM2153486': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153487': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153484': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153485': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153482': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153483': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153480': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153481': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153488': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2153489': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-28'}, 'GSM2042136': {'cohort': 'Control', 'tissue': 'Control left colon'}, 'GSM2387016': {'line': 'HepG2 liver hepatocellular cells', 'agent': 'control'}, 'GSM2387017': {'line': 'HepG2 liver hepatocellular cells', 'agent': 'CLs'}, 'GSM2387014': {'line': 'HepG2 liver hepatocellular cells', 'agent': 'control'}, 'GSM2387015': {'line': 'HepG2 liver hepatocellular cells', 'agent': 'control'}, 'GSM2387018': {'line': 'HepG2 liver hepatocellular cells', 'agent': 'CLs'}, 'GSM2387019': {'line': 'HepG2 liver hepatocellular cells', 'agent': 'CLs'}, 'GSM1155149': {'tnm': 'T1N0M0', 'gender': 'M', 'age': '55', 'tissue': 'renal pelvis'}, 'GSM2211621': {'origin': 'healthy skin', 'subset': 'CD49a-', 'type': 'epidermal CD8+CD103+CD49a- tissue resident memory T cells', 'donor': 'Subject 1'}, 'GSM2211623': {'origin': 'healthy skin', 'subset': 'CD49a-', 'type': 'epidermal CD8+CD103+CD49a- tissue resident memory T cells', 'donor': 'Subject 2'}, 'GSM2211622': {'origin': 'healthy skin', 'subset': 'CD49a+', 'type': 'epidermal CD8+CD103+CD49a+ tissue resident memory T cells', 'donor': 'Subject 1'}, 'GSM2211625': {'origin': 'healthy skin', 'subset': 'CD49a-', 'type': 'epidermal CD8+CD103+CD49a- tissue resident memory T cells', 'donor': 'Subject 3'}, 'GSM2211624': {'origin': 'healthy skin', 'subset': 'CD49a+', 'type': 'epidermal CD8+CD103+CD49a+ tissue resident memory T cells', 'donor': 'Subject 2'}, 'GSM2211627': {'origin': 'healthy skin', 'subset': 'CD49a-', 'type': 'epidermal CD8+CD103+CD49a- tissue resident memory T cells', 'donor': 'Subject 4'}, 'GSM2211626': {'origin': 'healthy skin', 'subset': 'CD49a+', 'type': 'epidermal CD8+CD103+CD49a+ tissue resident memory T cells', 'donor': 'Subject 3'}, 'GSM2211629': {'origin': 'healthy skin', 'subset': 'CD49a-', 'type': 'epidermal CD8+CD103+CD49a- tissue resident memory T cells', 'donor': 'Subject 5'}, 'GSM2211628': {'origin': 'healthy skin', 'subset': 'CD49a+', 'type': 'epidermal CD8+CD103+CD49a+ tissue resident memory T cells', 'donor': 'Subject 4'}, 'GSM2151484': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2112809': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2112808': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2112805': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2112804': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2112807': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2112806': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2112801': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2112800': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2112803': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2112802': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM1435532': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'monocyte'}, 'GSM1435533': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'monocyte'}, 'GSM1435530': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'Fibroblast primary cell line'}, 'GSM1435531': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'Fibroblast primary cell line'}, 'GSM1435534': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'monocyte'}, 'GSM1435535': {'antibody': 'H3K4me3 (Diagenode; #pAb-003-050)', 'type': 'monocyte'}, 'GSM908325': {'line': 'HepG2', 'sirna': 'METTL3'}, 'GSM908326': {'line': 'HepG2', 'sirna': 'METTL3'}, 'GSM908327': {'line': 'HepG2', 'sirna': 'Scrambled'}, 'GSM2649870': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2316915': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316914': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316917': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2058182': {'line': 'V9M', 'tissue': 'colorectal cancer cell line'}, 'GSM2316911': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2058184': {'line': 'V9M', 'tissue': 'colorectal cancer cell line'}, 'GSM2316913': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2058186': {'line': 'V9M', 'tissue': 'colorectal cancer cell line'}, 'GSM2316919': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316918': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2125276': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'agent': 'p38 MAPK Inhibitor', 'variation': 'overexpressing ATP7B H1069Q'}, 'GSM2424951': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2689306': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424953': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2689304': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689303': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689302': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689301': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689300': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424959': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424958': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2689309': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689308': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1624671': {'tumor': 'Patient material', 'material': 'FFPE', 'treatment': 'post-treatment Vemurafenib'}, 'GSM1624670': {'tumor': 'Patient material', 'material': 'FFPE', 'treatment': 'pre-treatment'}, 'GSM2357103': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2357102': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM1576411': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human PBMC', 'time': '0 d'}, 'GSM1576410': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human NK cells', 'time': '7 d'}, 'GSM2877849': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877848': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2060182': {'line': 'LNCaP'}, 'GSM1619129': {'individual': 'Patient 2', 'type': 'IDC cells'}, 'GSM2060180': {'line': 'LNCaP'}, 'GSM2060181': {'line': 'LNCaP'}, 'GSM1619128': {'individual': 'Patient 1', 'type': 'IDC cells'}, 'GSM1294041': {'line': 'Breast cancer cell line T47D-MTVL', 'treatment': 'progestin R5020-stimulated'}, 'GSM1294040': {'line': 'Breast cancer cell line T47D-MTVL', 'treatment': 'unstimulated'}, 'GSM1294043': {'line': 'Breast cancer cell line T47D-MTVL', 'treatment': 'Progesterone'}, 'GSM1294042': {'line': 'Breast cancer cell line T47D-MTVL', 'treatment': 'No Treatment'}, 'GSM1294045': {'line': 'Breast cancer cell line T47D-MTVL', 'treatment': 'Estradiol'}, 'GSM1294044': {'line': 'Breast cancer cell line T47D-MTVL', 'treatment': 'Progesterone'}, 'GSM1294047': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-H3K36me2 (catalog# 07-369, Millipore)', 'treatment': 'progestin R5020-stimulated'}, 'GSM1294046': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-H3K36me2 (catalog# 07-369, Millipore)', 'treatment': 'unstimulated'}, 'GSM1294049': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-H3K14ac T0 (catalog# 07-353, Millipore)', 'treatment': 'progestin R5020-stimulated'}, 'GSM1294048': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-H3K14ac T0 (catalog# 07-353, Millipore)', 'treatment': 'unstimulated'}, 'GSM2630160': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405844'}, 'GSM1095130': {'subset': 'poly A RNA', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1095131': {'subset': 'poly A RNA', 'line': 'stable cell lines inducibly expressing FLAG/HA-tagged RBM10', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1095132': {'subset': 'poly A RNA', 'line': 'stable cell lines inducibly expressing FLAG/HA-tagged RBM10', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1095133': {'subset': 'poly A RNA', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1095134': {'subset': 'poly A RNA', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1095135': {'subset': 'poly A RNA', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1095136': {'subset': 'poly A RNA', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM2877927': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM1095138': {'subset': 'poly A RNA', 'line': 'stable cell lines inducibly expressing FLAG/HA-tagged RBM10', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM1095139': {'subset': 'poly A RNA', 'type': 'lymphoblastoid cell lines (LCLs) derived from healthy control'}, 'GSM2840631': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2877841': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM1632429': {'line': 'H9', 'type': 'embronic stem cells', 'number': 'passage 43', 'transgenes': 'no', 'time': '80% confluence'}, 'GSM1632428': {'number': 'passage 40', 'transgenes': 'no', 'time': '80% confluence', 'line': 'H1', 'type': 'embronic stem cells', 'protocols': 'Human ESCs (H1 and H9, WiCell, Wisconsin) and iPSCs were maintained in E8 medium [27] on MatrigelÃ\\x82Â\\xadcoated tissue culture plates. E8 medium contained DMEM/F12, 64 mg/L LÃ\\x82Â\\xadascorbic acid 2Ã\\x82Â\\xadphosphate sesquimagnesium, 13.6 Ã\\x82µg /L sodium selenium, 1.7 g/L NaHCO3, 1 g/L sodium chloride, 10 ng/ml FGF2, 20 Ã\\x82µg/ml insulin, 10 Ã\\x82µg/ml transferrin and 2 Ã\\x82µg/L TGFÃ\\x8e²1'}, 'GSM1348982': {'line': 'IMR90', 'tissue': 'Lung', 'passage': '16'}, 'GSM1348983': {'line': 'IMR90', 'tissue': 'Lung', 'passage': '16'}, 'GSM1348980': {'line': 'IMR90', 'tissue': 'Lung', 'passage': '16'}, 'GSM1348981': {'line': 'IMR90', 'tissue': 'Lung', 'passage': '16'}, 'GSM1632427': {'line': 'BJ', 'type': 'reprogramming cells', 'number': 'passage 8', 'transgenes': 'OCT4 (10 MOI), SOX2 (5 MOI), KLF4 (5 MOI), BRD3R (25 ul virus)', 'time': 'day 3 post transduction'}, 'GSM1632426': {'line': 'BJ', 'type': 'reprogramming cells', 'number': 'passage 7', 'transgenes': 'OCT4 (10 MOI), SOX2 (5 MOI), KLF4 (5 MOI), BRD3R(2.5 ul/35000 cells)', 'time': 'day 3 post transduction'}, 'GSM1632425': {'line': 'BJ', 'type': 'reprogramming cells', 'number': 'passage 8', 'transgenes': 'OCT4 (10 MOI), SOX2 (5 MOI), KLF4 (5 MOI), GFP (25 ul virus)', 'time': 'day 3 post transduction'}, 'GSM1632424': {'line': 'BJ', 'type': 'reprogramming cells', 'number': 'passage 7', 'transgenes': 'OCT4 (10 MOI), SOX2 (5 MOI), KLF4 (5 MOI), GFP (8 MOI)', 'time': 'day 3 post transduction'}, 'GSM2172311': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172310': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2543836': {'library_id': 'lib7958', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543837': {'library_id': 'lib7959', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543834': {'library_id': 'lib7954', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.15', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543835': {'library_id': 'lib7955', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.15', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543832': {'library_id': 'lib7952', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543833': {'library_id': 'lib7953', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543830': {'library_id': 'lib7950', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543831': {'library_id': 'lib7951', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543838': {'library_id': 'lib7960', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543839': {'library_id': 'lib7961', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3586560': {'origin': 'ABC', 'pfstt': '884', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '884', 'cycles': '8', 'oscs': '0'}, 'GSM2451272': {'compartment': 'Epithelium', 'id': 'CUMC_014', 'library': 'NuGEN'}, 'GSM2451273': {'compartment': 'Stroma', 'id': 'CUMC_014', 'library': 'NuGEN'}, 'GSM2451274': {'compartment': 'Epithelium', 'id': 'CUMC_015', 'library': 'NuGEN'}, 'GSM2451275': {'compartment': 'Stroma', 'id': 'CUMC_015', 'library': 'NuGEN'}, 'GSM2451276': {'compartment': 'Epithelium', 'id': 'CUMC_016', 'library': 'NuGEN'}, 'GSM2451277': {'compartment': 'Stroma', 'id': 'CUMC_016', 'library': 'NuGEN'}, 'GSM2451278': {'compartment': 'Epithelium', 'id': 'CUMC_017', 'library': 'NuGEN'}, 'GSM2451279': {'compartment': 'Stroma', 'id': 'CUMC_017', 'library': 'NuGEN'}, 'GSM2047506': {'well': 'H03', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1956008': {'a': '51721', 'cd38': '912', 'cd49f': '499', 'w': '66219', 'h': '51188', 'lin': '-91', 'cd34': '3597', 'cd90': '746', 'cd7': '144', 'cd10': '329', 'time': '5204', 'cd135': '2167', 'cd45ra': '202'}, 'GSM3594288': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594289': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1956009': {'a': '64177', 'cd38': '449', 'cd49f': '385', 'w': '65952', 'h': '63772', 'lin': '819', 'cd34': '18263', 'cd90': '7620', 'cd7': '26', 'cd10': '872', 'time': '5015', 'cd135': '1564', 'cd45ra': '225'}, 'GSM3594280': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594281': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594282': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594283': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594284': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594285': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594286': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594287': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1103989': {'type': 'ER+ Breast Tumor'}, 'GSM1103988': {'type': 'ER+ Breast Tumor'}, 'GSM2258981': {'line': 'HEK293', 'condition': 'scrambled control'}, 'GSM2258987': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4019'}, 'GSM2258986': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4019'}, 'GSM2258985': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4019'}, 'GSM2258984': {'line': 'HEK293', 'condition': 'scrambled control'}, 'GSM2258989': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4020'}, 'GSM2258988': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4019'}, 'GSM1103987': {'type': 'ER+ Breast Tumor'}, 'GSM1956000': {'a': '61469', 'cd38': '917', 'cd49f': '765', 'w': '65626', 'h': '61385', 'lin': '-18', 'cd34': '3255', 'cd90': '853', 'cd7': '369', 'cd10': '139', 'time': '4191', 'cd135': '4044', 'cd45ra': '317'}, 'GSM1634289': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634288': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1956001': {'a': '46555', 'cd38': '826', 'cd49f': '304', 'w': '67077', 'h': '45486', 'lin': '-110', 'cd34': '5627', 'cd90': '7334', 'cd7': '564', 'cd10': '651', 'time': '6673', 'cd135': '2804', 'cd45ra': '371'}, 'GSM1634281': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634280': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634283': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634282': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634285': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634284': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634287': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634286': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM2807400': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807401': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807402': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807403': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807404': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807405': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807406': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807407': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807408': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807409': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM1931508': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1931509': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1931500': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931501': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931502': {'tissue': 'blood', 'condition': 'Control'}, 'GSM1931503': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1931504': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1931505': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1931506': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1931507': {'tissue': 'blood', 'condition': 'METH-Dependency without Psychosis'}, 'GSM1097792': {'subtype': 'breast cancer', 'line': 'BT-549'}, 'GSM1097793': {'subtype': 'T-ALL', 'line': 'SUPT13'}, 'GSM1097790': {'subtype': 'pancreatic cancer', 'line': 'PL5'}, 'GSM1097791': {'subtype': 'breast cancer', 'line': 'HCC1954'}, 'GSM1937902': {'status': 'Neg', 'gender': 'M', 'stage': 'IVb'}, 'GSM1937903': {'status': 'Neg', 'gender': 'F', 'stage': 'IVa'}, 'GSM1937901': {'status': 'Neg', 'gender': 'F', 'stage': 'IVa'}, 'GSM1937906': {'status': 'Neg', 'gender': 'M', 'stage': 'IVb'}, 'GSM1937907': {'status': 'Neg', 'gender': 'M', 'stage': 'IVa'}, 'GSM1937904': {'status': 'Neg', 'gender': 'M', 'stage': 'II'}, 'GSM1937905': {'status': 'Neg', 'gender': 'M', 'stage': 'IVa'}, 'GSM1937908': {'status': 'Neg', 'gender': 'F', 'stage': 'II'}, 'GSM1937909': {'status': 'Neg', 'gender': 'M', 'stage': 'III'}, 'GSM2840184': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840185': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM485409': {'line': 'NA19200'}, 'GSM485408': {'line': 'NA19171'}, 'GSM1946188': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19147', 'for': '30min'}, 'GSM485401': {'line': 'NA19143'}, 'GSM485400': {'line': 'NA19147'}, 'GSM485403': {'line': 'NA18501'}, 'GSM485402': {'line': 'NA19190'}, 'GSM485405': {'line': 'NA18912'}, 'GSM485404': {'line': 'NA18856'}, 'GSM485407': {'line': 'NA19119'}, 'GSM485406': {'line': 'NA19102'}, 'GSM2093067': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1401325': {'rin': '9.5', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-10-23'}, 'GSM2093065': {'bin': '13', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM3579137': {'line': 'U251', 'type': 'glioma', 'genotype': 'HOTAIR regulatory element KO'}, 'GSM2671280': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671283': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671282': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671285': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671284': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671287': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671286': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1523640': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523641': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523642': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523643': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523644': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523645': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523646': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1523647': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM2595199': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM1946180': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19143', 'for': '30min'}, 'GSM1946181': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19143', 'for': '30min'}, 'GSM1489599': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '26U2'}, 'GSM1489598': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '26T4'}, 'GSM1489593': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '23U2'}, 'GSM1489592': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '23T3'}, 'GSM1489591': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '22U2'}, 'GSM1489590': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '21U2'}, 'GSM1489597': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '26T3'}, 'GSM1489596': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '24U2'}, 'GSM1489595': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '23U4'}, 'GSM1489594': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '23U3'}, 'GSM1401770': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2359154': {'stage': 'paired normal sample'}, 'GSM2359155': {'stage': 'Kidney-Grade IV'}, 'GSM2359156': {'stage': 'paired normal sample'}, 'GSM2359150': {'stage': 'Kidney-Grade IV'}, 'GSM2359151': {'stage': 'paired normal sample'}, 'GSM2359152': {'stage': 'Kidney-Grade IV'}, 'GSM2359153': {'stage': 'Kidney-Grade IV'}, 'GSM1401777': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2088069': {'status': 'Dysplasia', 'ratio': '1.02833859220611', 'age': '57', 'years': '76', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '46292502', 'alignment': '28362794'}, 'GSM2088068': {'status': 'Dysplasia', 'ratio': '1.2038864313088', 'age': '61', 'years': '51', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'Sex': 'Male', 'alignments': '57748520', 'alignment': '35756269'}, 'GSM2088063': {'status': 'Dysplasia', 'ratio': '1.11929342619603', 'age': '49', 'years': '32', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '64487842', 'alignment': '39626058'}, 'GSM2088062': {'status': 'Dysplasia', 'ratio': '1.26011597220242', 'age': '58', 'years': '40', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '45538816', 'alignment': '28117368'}, 'GSM2088061': {'status': 'Normal', 'ratio': '1.3538004634005', 'age': '65', 'years': '33.25', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Female', 'alignments': '64649676', 'alignment': '39921979'}, 'GSM2088060': {'status': 'Dysplasia', 'ratio': '1.25704640379619', 'age': '52', 'years': '34', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '81351746', 'alignment': '49552259'}, 'GSM1654311': {'variation': 'DEANR1KD'}, 'GSM2088066': {'status': 'Dysplasia', 'ratio': '1.20949942580756', 'age': '67', 'years': '49.5', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '54078554', 'alignment': '33268863'}, 'GSM2088065': {'status': 'Dysplasia', 'ratio': '1.43426999577375', 'age': '64', 'years': '35', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '65673476', 'alignment': '40289749'}, 'GSM1654312': {'variation': 'DEANR1KD'}, 'GSM2463886': {'type': 'C419', 'histology': 'Glioblastoma (GBM)'}, 'GSM2463887': {'type': 'C419', 'histology': 'Glioblastoma (GBM)'}, 'GSM2463884': {'type': 'C419', 'histology': 'Glioblastoma (GBM)'}, 'GSM2463885': {'type': 'C419', 'histology': 'Glioblastoma (GBM)'}, 'GSM2374164': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2463883': {'type': 'C419', 'histology': 'Glioblastoma (GBM)'}, 'GSM2374166': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2463881': {'type': 'C419', 'histology': 'Glioblastoma (GBM)'}, 'GSM2374168': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374169': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2463888': {'type': 'C419', 'histology': 'Glioblastoma (GBM)'}, 'GSM2459047': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.25'}, 'GSM2459046': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.33'}, 'GSM2459045': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.33'}, 'GSM2459044': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.58'}, 'GSM2459043': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.17'}, 'GSM2459042': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.50'}, 'GSM2459041': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.75'}, 'GSM2459040': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.58'}, 'GSM1256821': {'marker': 'CD33+ within granulocyte gate', 'tissue': 'peripheral blood', 'type': 'Granulocytes'}, 'GSM1256820': {'marker': 'CD33+ within granulocyte gate', 'tissue': 'peripheral blood', 'type': 'Granulocytes'}, 'GSM1256823': {'marker': 'CD14+ within monocyte gate', 'tissue': 'peripheral blood', 'type': 'Monocytes'}, 'GSM1256822': {'marker': 'CD14+ within monocyte gate', 'tissue': 'peripheral blood', 'type': 'Monocytes'}, 'GSM1256825': {'marker': 'CD14+ within monocyte gate', 'tissue': 'peripheral blood', 'type': 'Monocytes'}, 'GSM1256824': {'marker': 'CD14+ within monocyte gate', 'tissue': 'peripheral blood', 'type': 'Monocytes'}, 'GSM2459049': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.50'}, 'GSM2459048': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.92'}, 'GSM2287059': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287058': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287055': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287054': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287057': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287056': {'gender': 'male', 'type': 'Pooled'}, 'GSM2287051': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287050': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287053': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287052': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1087850': {'wavelength': '4-SU / 365 nm', 'protein': 'LIN28B', 'antibody': 'Flag M2'}, 'GSM1087851': {'wavelength': '4-SU / 365 nm', 'protein': 'LIN28B', 'antibody': 'Flag M2'}, 'GSM2773448': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL wild type/control', 'batch': '3/11/2015'}, 'GSM1087856': {'labexpid': '12515', 'line': 'GM12878'}, 'GSM1087857': {'labexpid': '12516', 'line': 'GM12878'}, 'GSM1087858': {'labexpid': '12517', 'line': 'GM12878'}, 'GSM2773443': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL wild type/control', 'batch': '2/26/2015'}, 'GSM2773440': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL mutant', 'batch': '3/5/2015'}, 'GSM2773441': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL mutant', 'batch': '3/11/2015'}, 'GSM2773446': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL wild type/control', 'batch': '2/26/2015'}, 'GSM2773447': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL wild type/control', 'batch': '3/5/2015'}, 'GSM2773444': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL wild type/control', 'batch': '3/5/2015'}, 'GSM2773445': {'tissue': 'human pluripotent stem cells', 'genotype': 'PODXL wild type/control', 'batch': '3/11/2015'}, 'GSM1836803': {'type': 'bone marrow', 'diagnosis': 'AML M2', 'stage': 'progression'}, 'GSM1836802': {'type': 'bone marrow', 'diagnosis': 'CMML', 'stage': 'onset'}, 'GSM1212203': {'tissue': 'human ovary', 'type': 'Ambion'}, 'GSM1254463': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'normal control'}, 'GSM1254462': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'SENCR_control'}, 'GSM1254461': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'SENCR_control'}, 'GSM1254460': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'SENCR_control'}, 'GSM1395430': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1254465': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'normal control'}, 'GSM1254464': {'type': 'human coronary artery smooth muscle cells (HCASMCs)', 'variation': 'normal control'}, 'GSM2147994': {'line': 'SSC8311', 'tissue': 'ADNP mutated lymphoblastoid cell line', 'variation': 'ADNP mutated'}, 'GSM2147992': {'line': 'SSC4121', 'tissue': 'ADNP mutated lymphoblastoid cell line', 'variation': 'ADNP mutated'}, 'GSM1657686': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-111109'}, 'GSM1657684': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM1657685': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM1657682': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM1657683': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM1657680': {'substrate': 'Microporous support', 'density': '80,000 cells/cm2', 'number': '0', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-081309'}, 'GSM1657681': {'substrate': 'TC Plastic', 'density': '80,000 cells/cm2', 'number': '4', 'treatment': '500 nM A-83-01', 'time': '32 Days', 'id': 'hfRPE-020207-2'}, 'GSM2995497': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995496': {'gender': 'Male', 'type': 'iPSC'}, 'GSM3508652': {'group': 'Control', 'age': '13', 'number': '86', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM2995495': {'gender': 'Female', 'type': 'iPSC'}, 'GSM3508653': {'group': 'Control', 'age': '11', 'number': '100', 'Sex': 'M', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM2995494': {'gender': 'Male', 'type': 'iPSC'}, 'GSM3508650': {'group': 'Active', 'age': '17', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM2210114': {'source': 'H9 human embryonic stem cells', 'state': 'induced to mesoderm', 'type': 'multipotent mesoderm progenitors', 'stiffness': '60kPa'}, 'GSM3508651': {'group': 'Control', 'age': '13', 'number': '79', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM2995492': {'gender': 'Female', 'type': 'iPSC'}, 'GSM3190682': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A39', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.9', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.033185'}, 'GSM3580296': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580297': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580294': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580295': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580292': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580293': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580290': {'phase': 'HCV', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HCV'}, 'GSM3580291': {'phase': 'HCV', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HCV'}, 'GSM2750898': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750899': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM3580298': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580299': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM692142': {'vendor': 'Millipore', 'number': '05-690', 'agent': '-IFN', 'numbers': '1501782 and 17908001', 'fraction': 'Chromatin immunoprecipitated DNA', 'line': 'HCT116', 'antibody': 'HP1g'}, 'GSM692143': {'vendor': 'Millipore', 'number': '05-690', 'agent': '+IFN', 'numbers': '1501782 and 17908001', 'fraction': 'Chromatin immunoprecipitated DNA', 'line': 'HCT116', 'antibody': 'HP1g'}, 'GSM692140': {'vendor': 'Millipore', 'number': '05-690', 'numbers': '1501782 and 17908001', 'fraction': 'Chromatin immunoprecipitated DNA', 'line': 'K562', 'antibody': 'HP1g'}, 'GSM692141': {'vendor': 'Millipore', 'number': '05-690', 'numbers': '1501782 and 17908001', 'fraction': 'Chromatin immunoprecipitated DNA', 'line': 'HCT116', 'antibody': 'HP1g'}, 'GSM692144': {'vendor': 'Millipore', 'number': '05-690', 'agent': '+IFN', 'numbers': '1501782 and 17908001', 'fraction': 'Chromatin immunoprecipitated DNA', 'line': 'HeLa', 'antibody': 'HP1g'}, 'GSM692145': {'vendor': 'Millipore', 'number': '05-690', 'agent': '+IFN', 'numbers': '1501782 and 17908001', 'fraction': 'Chromatin immunoprecipitated DNA', 'line': 'Hela', 'antibody': 'HP1g'}, 'GSM1964711': {'type': 'BJ fibroblast derived iPSC-2', 'point': 'before differentiation'}, 'GSM1964710': {'type': 'BJ fibroblast derived iPSC-2', 'point': 'before differentiation'}, 'GSM1937854': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM2324405': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM1937855': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': 'None'}, 'GSM1937858': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM2455914': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1414939': {'region': 'BA6', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM1414938': {'region': 'BA45', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1414937': {'region': 'BA6', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1414936': {'region': 'BA39', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1414935': {'region': 'BA40', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1414934': {'region': 'BA44', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1414933': {'region': 'BA46', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1414932': {'region': 'BA9', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1414931': {'region': 'BA47', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1414930': {'region': 'BA21', 'identifier': '1029', 'age': '30', 'Sex': 'M'}, 'GSM1980047': {'line': 'SW480'}, 'GSM2109343': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM1980046': {'line': 'SW480'}, 'GSM2109345': {'line': 'IMR90', 'vector': 'MCPyV ST', 'type': 'lung embryonic fibroblast'}, 'GSM2405995': {'line': 'IMR-32'}, 'GSM2405996': {'line': 'IMR-32'}, 'GSM1006501': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-placebo', 'subject': 'A3'}, 'GSM1006500': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-placebo', 'subject': 'A2'}, 'GSM1006503': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-placebo', 'subject': 'A5'}, 'GSM1006502': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-placebo', 'subject': 'A4'}, 'GSM1965048': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965049': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1006507': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-prednisolon', 'subject': 'A3'}, 'GSM1006506': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-prednisolon', 'subject': 'A2'}, 'GSM1965044': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965045': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965046': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965047': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965040': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965041': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965042': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965043': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM3586609': {'origin': 'UNCLASSIFIED', 'pfstt': '169', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '328', 'cycles': '6', 'oscs': '1'}, 'GSM3586608': {'origin': 'ABC', 'pfstt': '1349', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1356', 'cycles': '6', 'oscs': '0'}, 'GSM3586607': {'origin': 'GCB', 'pfstt': '1366', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1458', 'cycles': '6', 'oscs': '0'}, 'GSM3586606': {'origin': 'GCB', 'pfstt': '1425', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1433', 'cycles': '6', 'oscs': '0'}, 'GSM3586605': {'origin': 'ABC', 'pfstt': '1404', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1573', 'cycles': '6', 'oscs': '0'}, 'GSM3586604': {'origin': 'ABC', 'pfstt': '307', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '474', 'cycles': '6', 'oscs': '1'}, 'GSM3586603': {'origin': 'UNCLASSIFIED', 'pfstt': '144', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '341', 'cycles': '6', 'oscs': '1'}, 'GSM3586602': {'origin': 'GCB', 'pfstt': '1395', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1402', 'cycles': '6', 'oscs': '0'}, 'GSM3586601': {'origin': 'GCB', 'pfstt': '38', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '174', 'cycles': '6', 'oscs': '1'}, 'GSM3586600': {'origin': 'UNCLASSIFIED', 'pfstt': '852', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '940', 'cycles': '6', 'oscs': '0'}, 'GSM2595246': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '88'}, 'GSM1960706': {'activation': 'No', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'None'}, 'GSM1960707': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'None'}, 'GSM1960708': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'p53 targeting using CRISPR-Cas9'}, 'GSM1960709': {'activation': 'Yes', 'type': 'hTERT-immortalized BJ cells', 'manipulation': 'p53 silencing using shRNA'}, 'GSM2262838': {'protocol': 'BG exposed, collected at 4 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262839': {'protocol': 'BG exposed, collected at 4 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2344758': {'status': 'unknown', 'sirna': 'SP140', 'type': 'PBMC derived macrophage'}, 'GSM2344754': {'status': 'unknown', 'sirna': 'SP140', 'type': 'PBMC derived macrophage'}, 'GSM2344755': {'status': 'unknown', 'sirna': 'none', 'type': 'PBMC derived macrophage'}, 'GSM2344756': {'status': 'unknown', 'sirna': 'SP140', 'type': 'PBMC derived macrophage'}, 'GSM2344757': {'status': 'unknown', 'sirna': 'none', 'type': 'PBMC derived macrophage'}, 'GSM2262836': {'protocol': 'BG exposed, collected at 1 hour post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262837': {'protocol': 'BG exposed, collected at 1 hour post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2344752': {'status': 'unknown', 'sirna': 'SP140', 'type': 'PBMC derived macrophage'}, 'GSM2344753': {'status': 'unknown', 'sirna': 'none', 'type': 'PBMC derived macrophage'}, 'GSM2142468': {'gender': 'female', 'age': '78', 'who': '0', 'dead': '1', 'date': '2011-06-11', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2142469': {'gender': 'male', 'age': '76', 'who': '0', 'dead': '1', 'date': '2011-02-15', 'histology': '3', 'tnm': '2', 'smoking': '3'}, 'GSM2676340': {'type': 'MCF10A-ER-Src', 'agent': 'TAM', 'variation': 'FOSL2i'}, 'GSM2142462': {'gender': 'female', 'age': '76', 'who': '0', 'dead': '1', 'date': '2007-07-16', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142463': {'gender': 'male', 'age': '75', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '3', 'smoking': '3'}, 'GSM2142460': {'gender': 'male', 'age': '48', 'who': '1', 'dead': '1', 'date': '2010-10-29', 'histology': '1', 'tnm': '3', 'smoking': '1'}, 'GSM2142461': {'gender': 'female', 'age': '46', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '3', 'smoking': '1'}, 'GSM2142466': {'gender': 'female', 'age': '65', 'who': '0', 'dead': '1', 'date': '2007-11-26', 'histology': '1', 'tnm': '5', 'smoking': '1'}, 'GSM2142467': {'gender': 'male', 'age': '53', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2142464': {'gender': 'male', 'age': '67', 'who': '0', 'dead': '1', 'date': '2008-02-29', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142465': {'gender': 'male', 'age': '66', 'who': '0', 'dead': '1', 'date': '2011-05-05', 'histology': '1', 'tnm': '2', 'smoking': '2'}, 'GSM2595245': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '89'}, 'GSM2458765': {'induction': 'none', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'unlabeled RNA (flowthrough)'}, 'GSM2433962': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM3271588': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, DMSO for 7d, 500nM LGX818 for 7d, then DMSO for 7d'}, 'GSM2458761': {'induction': '2h before harvesting', 'line': 'HEK293', 'type': 'embryonic kidney', 'treatment': '1h before harvesting', 'isolation': 'labeled RNA (eluate)'}, 'GSM2433965': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433966': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433967': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433968': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2433969': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM3271581': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, DMSO for 7d, then 500nM LGX818 for 7d'}, 'GSM3271580': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 21d'}, 'GSM3271587': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, DMSO for 7d, 500nM LGX818 for 7d, then DMSO for 7d'}, 'GSM3271586': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, DMSO for 7d, 500nM LGX818 for 7d, then DMSO for 7d'}, 'GSM3271585': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 28d'}, 'GSM3271584': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 28d'}, 'GSM1829605': {'state': 'Control', 'tissue': 'prefrontal cortex (Brodman Area 9)'}, 'GSM1829607': {'state': \"Parkinson's Disease\", 'tissue': 'prefrontal cortex (Brodman Area 9)'}, 'GSM1829606': {'state': \"Huntington's Disease\", 'tissue': 'prefrontal cortex (Brodman Area 9)'}, 'GSM1544126': {'line': 'HMEC-hTERT', 'treatment': 'none'}, 'GSM1544127': {'line': 'HMLER', 'treatment': '5-aza-deoxycytidine'}, 'GSM1544124': {'line': 'HME-shP53-RAS', 'treatment': 'siMBD2'}, 'GSM1544125': {'line': 'HMEC-hTERT', 'treatment': 'none'}, 'GSM1544122': {'line': 'HME-shP53-RAS', 'treatment': 'siControl'}, 'GSM1544123': {'line': 'HME-shP53-RAS', 'treatment': 'siMBD2'}, 'GSM1544120': {'line': 'HME-ZEB1-RAS', 'treatment': 'siMBD2'}, 'GSM1544121': {'line': 'HME-shP53-RAS', 'treatment': 'siControl'}, 'GSM1544128': {'line': 'HMLER', 'treatment': '5-aza-deoxycytidine'}, 'GSM1544129': {'line': 'HMLER', 'treatment': 'siControl'}, 'i': {'code': '200'}, 'GSM2299858': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299859': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299852': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299853': {'outcome': 'Uninfected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299850': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299851': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299856': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299857': {'outcome': 'Infected', 'group': 'Vaccine', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2299854': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'Dneg7', 'timepoint': 'Pre Vaccination'}, 'GSM2299855': {'outcome': 'Infected', 'group': 'Placebo', 'day': 'D143', 'timepoint': 'Post Vaccination'}, 'GSM2324213': {'group': 'LowA422', 'type': 'PBMC', 'day': '28', 'subjectid': '3211'}, 'GSM2324212': {'group': 'LowA422', 'type': 'PBMC', 'day': '14', 'subjectid': '3211'}, 'GSM2563629': {'source': 'cell culture', 'protocol': 'adapter ligation'}, 'GSM2324211': {'group': 'LowA422', 'type': 'PBMC', 'day': '0', 'subjectid': '3211'}, 'GSM2324210': {'group': 'LowA422', 'type': 'PBMC', 'day': '84', 'subjectid': '2809'}, 'GSM2324217': {'group': 'LowA422', 'type': 'PBMC', 'day': '0', 'subjectid': '3310'}, 'GSM2324216': {'group': 'LowA422', 'type': 'PBMC', 'day': '84', 'subjectid': '3310'}, 'GSM1817328': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM2324215': {'group': 'LowA422', 'type': 'PBMC', 'day': '84', 'subjectid': '3211'}, 'GSM2324214': {'group': 'LowA422', 'type': 'PBMC', 'day': '56', 'subjectid': '3211'}, 'GSM1467838': {'type': 'umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scrambled 2)', 'passage': 'passage 3'}, 'GSM1467839': {'type': 'umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM1467830': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467831': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467832': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467833': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467834': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467835': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467836': {'type': 'monocyte', 'agent': 'Listeria monocytogenes'}, 'GSM1467837': {'type': 'umbilical vein endothelial cells', 'treatment': 'scrambled nucleotides (Scrambled 1)', 'passage': 'passage 3'}, 'GSM2549779': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'unlabeled RNA (flowthrough)', 'barcode': 'AGTTCCG', 'infection': 'Infected 15h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549778': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'unlabeled RNA (flowthrough)', 'barcode': 'GTCCGCA', 'infection': 'Infected 9h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549777': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'unlabeled RNA (flowthrough)', 'barcode': 'AGTCAAC', 'infection': 'Infected 9h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549776': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'unlabeled RNA (flowthrough)', 'barcode': 'ACGTCCC', 'infection': 'Infected 4h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549775': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'unlabeled RNA (flowthrough)', 'barcode': 'CTTGTAA', 'infection': 'Infected 4h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549774': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'unlabeled RNA (flowthrough)', 'barcode': 'ATGTCAG', 'infection': 'Uninfected', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549773': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'unlabeled RNA (flowthrough)', 'barcode': 'CAGATCA', 'infection': 'Uninfected', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549772': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'labeled RNA (eluate)', 'barcode': 'AGTTCCG', 'infection': 'Infected 15h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549771': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'labeled RNA (eluate)', 'barcode': 'GCCAATA', 'infection': 'Infected 15h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549770': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'labeled RNA (eluate)', 'barcode': 'AGTCAAC', 'infection': 'Infected 9h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM3417912': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'N/A', 'time': '9', 'type': 'MRC5'}, 'GSM2475999': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM2475998': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM2475997': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM1644996': {'gender': 'female', 'tissue': 'Hippocampus', 'group': 'LOAD (late onset of Alzheimerâ\\x80\\x99s disease)', 'genotype': '3/3', 'stage': 'VI'}, 'GSM2361975': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705356': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 6', 'dilution': '1:50'}, 'GSM2575344': {'line': 'WM983B', 'subclone': 'E9', 'condition': 'Drug'}, 'GSM2705355': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 4', 'dilution': '1:50'}, 'GSM2361976': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1644997': {'gender': 'female', 'tissue': 'Hippocampus', 'group': 'LOAD (late onset of Alzheimerâ\\x80\\x99s disease)', 'genotype': '3/3', 'stage': 'V'}, 'GSM2361971': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361970': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2562578': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562579': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2361973': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2562572': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562573': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562570': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562571': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562576': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562577': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562574': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562575': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1581082': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581083': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581080': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581081': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581086': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581087': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581084': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581085': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581088': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581089': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1528679': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '136'}, 'GSM1528675': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal skeletal muscle', 'method': 'FFPE', 'size': '139'}, 'GSM1528677': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '141'}, 'GSM3417913': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'N/A', 'time': '9', 'type': 'MRC5'}, 'GSM1528671': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '151'}, 'GSM2533776': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533777': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533774': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533775': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533772': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533773': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533770': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533771': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533778': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533779': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1239130': {'status': '+ / + / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB157', 'size': '1.3cm'}, 'GSM1239131': {'status': '- / - / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB212', 'size': '2cm'}, 'GSM830456': {'subtype': 'polyA RNA', 'time': '2d', 'type': 'MCF10A breast epithelial cells', 'stage': 'RAS-transformed'}, 'GSM830457': {'subtype': 'polyA RNA', 'time': '8d', 'type': 'MCF10A breast epithelial cells', 'stage': 'RAS-transformed'}, 'GSM830454': {'subtype': 'polyA RNA', 'type': 'MCF10A breast epithelial cells', 'stage': 'serum-starved'}, 'GSM830455': {'subtype': 'polyA RNA', 'type': 'MCF10A breast epithelial cells', 'stage': 'RAS-transformed'}, 'GSM830452': {'subtype': 'polyA RNA', 'type': 'BJ fibroblast cells', 'stage': 'confluent'}, 'GSM830453': {'subtype': 'polyA RNA', 'type': 'MCF10A breast epithelial cells', 'stage': 'proliferative'}, 'GSM830450': {'subtype': 'polyA RNA', 'type': 'BJ fibroblast cells', 'stage': 'RAS-transformed'}, 'GSM830451': {'subtype': 'polyA RNA', 'type': 'BJ fibroblast cells', 'stage': 'proliferative'}, 'GSM2581276': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161207B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2581277': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161207B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2581274': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161207A', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2581275': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161207A', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2392601': {'treatment': 'Estrogen', 'genotype': 'Y537S'}, 'GSM2581273': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161130B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2392603': {'treatment': 'Estrogen', 'genotype': 'D538G'}, 'GSM2392602': {'treatment': 'Estrogen', 'genotype': 'D538G'}, 'GSM1239134': {'status': '+ / + / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB277', 'size': '3cm'}, 'GSM2392609': {'treatment': 'Vehicle', 'genotype': 'Wild type'}, 'GSM2392608': {'treatment': 'Vehicle', 'genotype': 'Wild type'}, 'GSM2581278': {'race': 'African American', 'patient': '5342', 'area': 'BA17', 'region': 'Occipital Lobe, Visual Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20161207B', 'histology': 'Coronal sample, Section 31', 'age': '23 years'}, 'GSM2581279': {'race': 'African American', 'patient': '5342', 'area': 'BA6', 'region': 'Frontal Cortex', 'tissue': 'brain', 'Sex': 'Male', 'source': 'Maryland Brain Bank', 'experiment': '20170214A', 'histology': 'Coronal sample, Section 11', 'age': '23 years'}, 'GSM2543768': {'library_id': 'lib5912', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543769': {'library_id': 'lib5913', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1239136': {'status': '+ / + / -', 'grade': '2', 'subtype': 'polyA enriched RNA', 'id': 'BRB123', 'size': '1.7cm'}, 'GSM2543762': {'library_id': 'lib5906', 'stim': 'TT', 'group': 'Case', 'classification': 'Not Included', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543763': {'library_id': 'lib5907', 'stim': 'DM', 'group': 'Case', 'classification': 'Not Included', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543760': {'library_id': 'lib5904', 'stim': 'NS', 'group': 'Case', 'classification': 'Not Included', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543761': {'library_id': 'lib5905', 'stim': 'CR', 'group': 'Case', 'classification': 'Not Included', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543766': {'library_id': 'lib5910', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543767': {'library_id': 'lib5911', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543764': {'library_id': 'lib5908', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543765': {'library_id': 'lib5909', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'BC5UF5ANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1480802': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM1915019': {'line': '143B'}, 'GSM1940139': {'with': '2 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940138': {'with': '2 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940135': {'with': '0.5 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940134': {'with': '0.5% 1xPBS vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940137': {'with': '0.5 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940136': {'with': '0.5 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940131': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940130': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940133': {'with': '0.5% 1xPBS vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940132': {'with': '0.5% 1xPBS vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1443807': {'antibody': 'H3K27ac (ab4729; Abcam)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443806': {'antibody': 'H3K27ac (ab4729; Abcam)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443805': {'antibody': 'H3K27ac (ab4729; Abcam)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443804': {'antibody': 'anti-CBP (A-22, sc-369; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443803': {'antibody': 'anti-CBP (A-22, sc-369; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443802': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443801': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443809': {'antibody': 'anti-PPARγ (H-100, sc-7196; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443808': {'antibody': 'H3K27ac (ab4729; Abcam)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM2228999': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1-CD80+ sorted'}, 'GSM2228998': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1-CD80+ sorted'}, 'GSM2228993': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1+CD80- sorted'}, 'GSM2228992': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1+CD80- sorted'}, 'GSM2228991': {'stimulation': 'no stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'unsorted'}, 'GSM2228990': {'stimulation': 'no stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'unsorted'}, 'GSM2228997': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1+CD80+ sorted'}, 'GSM2228996': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1+CD80+ sorted'}, 'GSM2228995': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1+CD80+ sorted'}, 'GSM2228994': {'stimulation': 'influenza virus stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'PD-L1+CD80- sorted'}, 'GSM2711154': {'line': 'HCT116 (ATCC)', 'treatment': 'pre-treated with 0.1% DMSO (vehicle control) for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2166252': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166251': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2150418': {'transduction': 'Not transduced', 'line': 'Kasumi-1', 'tissue': 'peripheral blood derived'}, 'GSM2150419': {'transduction': 'PLKO', 'line': 'Kasumi-1', 'tissue': 'peripheral blood derived'}, 'GSM2711157': {'line': 'HEK293 (ATCC)', 'treatment': 'treated with 0.1% DMSO (vehicle control) for 3 hours'}, 'GSM1955078': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1955079': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM1955076': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM3189337': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C6, RV-C17', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.042507', 'percentaligned': '0.925666096', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.876541', 'original': 'Case'}, 'GSM1955074': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1955075': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM1955072': {'tissue': 'Muscle biopsy immediately before surgery'}, 'GSM1955073': {'tissue': 'Muscle biopsy 2hr after surgery and tourniquet'}, 'GSM3189330': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A58', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '11', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.644439', 'percentaligned': '0.911329021', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.887583', 'original': 'Control'}, 'GSM2150417': {'transduction': 'Not transduced', 'line': 'Kasumi-1', 'tissue': 'peripheral blood derived'}, 'GSM2711152': {'line': 'HCT116 (ATCC)', 'treatment': 'treated with 0.1% DMSO (vehicle control) for 3 hours'}, 'GSM2166254': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2359220': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '50nM / 250nM', 'drug': 'THZ1 / Crizotinib'}, 'GSM1936754': {'line': 'IMR90'}, 'GSM2258225': {'group': 'POLR2A', 'grade': '1', 'gender': 'F', 'age': '43', 'tissue': 'meningioma', 'histology': 'unknown', 'radiated': 'N'}, 'GSM2575349': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'Drug'}, 'GSM2258222': {'group': 'POLR2A', 'grade': '1', 'gender': 'F', 'age': '42', 'tissue': 'meningioma', 'histology': 'psammomatous', 'radiated': 'N'}, 'GSM1972961': {'line': 'H9', 'treatment': 'Control treated with Retinoic Acid (RA) for 4 days'}, 'GSM2359227': {'duration': '7D', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '250nM', 'drug': 'Crizotinib'}, 'GSM1423456': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM1423457': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM1423454': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM1423455': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423452': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423453': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM1423450': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM1423451': {'line': 'Ch-CRPC', 'induction': 'shGATA2b'}, 'GSM2258221': {'group': 'POLR2A', 'grade': '1', 'gender': 'F', 'age': '71', 'tissue': 'meninges', 'histology': 'meningothelial', 'radiated': 'N'}, 'GSM1423458': {'line': 'Ch-CRPC', 'induction': 'shRNA control'}, 'GSM1423459': {'line': 'Ch-CRPC', 'induction': 'shGATA2a'}, 'GSM2028919': {'concentration': 'N/A', 'treatment': 'DMSO'}, 'GSM1808059': {'tissue': 'Adipose'}, 'GSM1808058': {'tissue': 'Adipose'}, 'GSM1808051': {'tissue': 'Adipose'}, 'GSM1808050': {'tissue': 'Adipose'}, 'GSM1808053': {'tissue': 'Adipose'}, 'GSM1808052': {'tissue': 'Adipose'}, 'GSM1808055': {'tissue': 'Adipose'}, 'GSM1808054': {'tissue': 'Adipose'}, 'GSM1808057': {'tissue': 'Adipose'}, 'GSM1808056': {'tissue': 'Adipose'}, 'GSM2467785': {'tissue': 'whole brain tissue'}, 'GSM2467784': {'tissue': 'whole brain tissue'}, 'GSM2467787': {'tissue': 'enriched for microvessel endothelial cells'}, 'GSM2467786': {'tissue': 'enriched for microvessel endothelial cells'}, 'GSM2676819': {'treatment': 'DMSO'}, 'GSM2676818': {'antibody': 'none', 'treatment': 'JQ1'}, 'GSM2676815': {'antibody': 'none', 'treatment': 'DMSO'}, 'GSM2676814': {'antibody': 'none', 'treatment': 'JQ1'}, 'GSM2676817': {'antibody': 'none', 'treatment': 'DMSO'}, 'GSM2676816': {'antibody': 'none', 'treatment': 'JQ1'}, 'GSM2676811': {'antibody': 'Abcam ab128874', 'treatment': 'DMSO'}, 'GSM2676810': {'antibody': 'Santa Cruz N-20, sc-899', 'treatment': 'JQ1'}, 'GSM2676813': {'antibody': 'none', 'treatment': 'DMSO'}, 'GSM2676812': {'antibody': 'Abcam ab128874', 'treatment': 'JQ1'}, 'GSM1539009': {'genotype': 'AtWBS', 'gender': 'female', 'culture': 'Colonies in feeder-free condition', 'in': 'none', 'donor': 'GDB-192', 'type': 'unstranded 100bp PE reads'}, 'GSM2361984': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361985': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361986': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361987': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361980': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361981': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361982': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361983': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361988': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361989': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM3586679': {'origin': 'ABC', 'pfstt': '859', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '862', 'cycles': '6', 'oscs': '0'}, 'GSM1970420': {'tissue': 'peritoneum metastasis', 'site': 'peritoneum', 'identifier': '3'}, 'GSM1970421': {'tissue': 'lymph node metastasis', 'site': 'lymph node', 'identifier': '3'}, 'GSM1970422': {'tissue': 'normal ovary', 'identifier': '1'}, 'GSM1970423': {'tissue': 'normal ovary', 'identifier': '2'}, 'GSM1970424': {'line': 'SKOV3', 'type': 'ovarian tumor cell line'}, 'GSM1970425': {'line': 'GOC2', 'type': 'ovarian tumor cell line'}, 'GSM1970426': {'line': 'FB', 'type': 'normal fibroblast cell line'}, 'GSM1970427': {'line': 'OE', 'type': 'normal ovarian epithelial cell line'}, 'GSM1970428': {'tissue': 'primary epithelial ovarian tumor', 'site': 'ovary', 'identifier': '1'}, 'GSM1970429': {'tissue': 'peritoneum metastasis', 'site': 'peritoneum', 'identifier': '1'}, 'GSM2845462': {'line': 'RUES2', 'type': 'cardiac progenitor (CP)', 'point': 'Day 5 of differentiation'}, 'GSM3124792': {'individual': 'mi334', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM2456008': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456009': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456006': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456007': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456004': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456005': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456002': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456003': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456000': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456001': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM3124797': {'individual': 'mi708', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM3124796': {'individual': 'mi708', 'group': 'TNL [Term not in labor (without labor)]'}, 'GSM2877889': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877888': {'tissue': 'Ovary', 'stage': 'Primordial'}, 'GSM2877887': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877886': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877885': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877884': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877883': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877882': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877881': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877880': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2047541': {'well': 'C01', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047540': {'well': 'B12', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047543': {'well': 'C03', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047542': {'well': 'C02', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047545': {'well': 'C05', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047544': {'well': 'C04', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047547': {'well': 'C07', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047546': {'well': 'C06', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047549': {'well': 'C09', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047548': {'well': 'C08', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1648826': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'COVE_3_7', 'biopsy': 'n/a', 'years': '2.43', 'volume': '1225', 'type': 'iPSC-derived neurons', 'id': 'COVE'}, 'GSM1648827': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'COVE_3_1', 'biopsy': 'n/a', 'years': '2.43', 'volume': '1225', 'type': 'iPSC-derived neurons', 'id': 'COVE'}, 'GSM1648824': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CLAY_1_2', 'biopsy': 'n/a', 'years': '2.7', 'volume': '1182', 'type': 'iPSC-derived neurons', 'id': 'CLAY'}, 'GSM1648825': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CLUE_4_7', 'biopsy': 'n/a', 'years': '3.41', 'volume': '1206', 'type': 'iPSC-derived neurons', 'id': 'CLUE'}, 'GSM1648822': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CHAP_1_2', 'biopsy': 'n/a', 'years': '2.57', 'volume': '1184', 'type': 'iPSC-derived neurons', 'id': 'CHAP'}, 'GSM1648823': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CHAP_1_5', 'biopsy': 'n/a', 'years': '2.57', 'volume': '1184', 'type': 'iPSC-derived neurons', 'id': 'CHAP'}, 'GSM1648820': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CENT_3_3', 'biopsy': 'n/a', 'years': '3.58', 'volume': '1389', 'type': 'iPSC-derived neurons', 'id': 'CENT'}, 'GSM1648821': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CENT_3_6', 'biopsy': 'n/a', 'years': '3.58', 'volume': '1389', 'type': 'iPSC-derived neurons', 'id': 'CENT'}, 'GSM1171566': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171567': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171564': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171565': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM1171562': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1171563': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM1648828': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_12', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSC-derived neural progenitors', 'id': 'ABLE'}, 'GSM1648829': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_6', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSC-derived neural progenitors', 'id': 'ABLE'}, 'GSM2293599': {'replicate': 'C', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '2'}, 'GSM2293598': {'replicate': 'B', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '2'}, 'GSM2293591': {'replicate': 'A', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '1'}, 'GSM2293590': {'replicate': 'C', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '1'}, 'GSM2293593': {'replicate': 'C', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '1'}, 'GSM2293592': {'replicate': 'B', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '1'}, 'GSM2293595': {'replicate': 'B', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '2'}, 'GSM2293594': {'replicate': 'A', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '2'}, 'GSM2293597': {'replicate': 'A', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '2'}, 'GSM2293596': {'replicate': 'C', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '2'}, 'GSM1327880': {'gender': 'F', 'age': '55', 'grouping': 'Obese'}, 'GSM2084557': {'line': 'H1299', 'type': 'non-small-cell lung cancer cell line'}, 'GSM1384791': {'type': 'Cord blood CD34+ cells', 'agent': 'DMSO', 'time': '16 hour culture'}, 'GSM2457309': {'line': 'Jurkat-derived monoclonal (JSL1)', 'type': 'T lymphocyte'}, 'GSM2597659': {'antibody': 'H3K4ac', 'treatment': 'DAC+SB'}, 'GSM2597658': {'antibody': 'H4K12ac', 'treatment': 'DAC+SB'}, 'GSM2597653': {'antibody': 'Input', 'treatment': 'SB939'}, 'GSM2597652': {'antibody': 'H2BK5ac', 'treatment': 'SB939'}, 'GSM2597651': {'antibody': 'H2AK9ac', 'treatment': 'SB939'}, 'GSM2597650': {'antibody': 'H3K4ac', 'treatment': 'SB939'}, 'GSM2597657': {'antibody': 'H3K18ac', 'treatment': 'DAC+SB'}, 'GSM2597656': {'antibody': 'H3K14ac', 'treatment': 'DAC+SB'}, 'GSM2597655': {'antibody': 'H4K8ac', 'treatment': 'DAC+SB'}, 'GSM2597654': {'antibody': 'H3K23ac', 'treatment': 'DAC+SB'}, 'GSM480873': {'type': 'hMSC cells'}, 'GSM480872': {'type': 'hMSC cells'}, 'GSM480871': {'type': 'hMSC cells'}, 'GSM480870': {'type': 'hMSC cells'}, 'GSM2451076': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2455728': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455729': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455726': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455727': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455724': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455725': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455722': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455723': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455720': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455721': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1521721': {'antibody': 'Millipore,07-449,2039786', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2100157': {'rin': '10', 'Sex': 'Male', 'sspg': '202', 'age': '63', 'bmi': '37.2', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '11', 'indiv': '546', 'method': 'Life-Tech GITC'}, 'GSM2516098': {'line': 'MDA231', 'type': 'Mammary carcinoma cells', 'level': 'lo'}, 'GSM2516099': {'line': 'MDA231', 'type': 'Mammary carcinoma cells', 'level': 'hi'}, 'GSM2516096': {'line': 'MDA231', 'type': 'Mammary carcinoma cells', 'level': 'lo'}, 'GSM2451072': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2516094': {'line': 'SUM159', 'type': 'Mammary carcinoma cells', 'level': 'lo'}, 'GSM2516095': {'line': 'SUM159', 'type': 'Mammary carcinoma cells', 'level': 'hi'}, 'GSM2516092': {'line': 'SUM159', 'type': 'Mammary carcinoma cells', 'level': 'hi'}, 'GSM2516093': {'line': 'SUM159', 'type': 'Mammary carcinoma cells', 'level': 'lo'}, 'GSM2516090': {'line': 'SUM159', 'type': 'Mammary carcinoma cells', 'level': 'hi'}, 'GSM2516091': {'line': 'SUM159', 'type': 'Mammary carcinoma cells', 'level': 'lo'}, 'GSM2840179': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2728735': {'protocol': 'mNET-seq (Nojima et al., 2016; Schlackow et al., 2017)', 'genotype': 'CDK9as', 'antibody': 'MABI0601 (BIOZOL)', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 minutes with 0.05 % v/v solvent DMSO (Sigma).'}, 'GSM2728736': {'protocol': 'mNET-seq (Nojima et al., 2016; Schlackow et al., 2017)', 'genotype': 'CDK9as', 'antibody': 'MABI0601 (BIOZOL)', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 minutes with 0.05 % v/v solvent DMSO (Sigma).'}, 'GSM2728737': {'protocol': 'mNET-seq (Nojima et al., 2016; Schlackow et al., 2017)', 'genotype': 'CDK9as', 'antibody': 'MABI0601 (BIOZOL)', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 minutes with 0.05 % v/v solvent DMSO (Sigma).'}, 'GSM2451070': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2728732': {'protocol': 'TT-seq (Schwalb et al., 2016)', 'genotype': 'wild type', 'antibody': '-', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 minutes with 0.05 % v/v solvent DMSO (Sigma); incl. 4sU-labeling during the last 5 minutes.'}, 'GSM2728733': {'protocol': 'TT-seq (Schwalb et al., 2016)', 'genotype': 'wild type', 'antibody': '-', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 min of 5 µM of 1-NA-PP1 (CDK9as inhibitor) (Calbiochem, EMD Millipore); incl. 4sU-labeling during the last 5 minutes.'}, 'GSM2840171': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840170': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840173': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840172': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840175': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840174': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840177': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840176': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1521727': {'antibody': 'Active Motif,39133,31610003', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521726': {'antibody': 'Millipore,07-449,2064519', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1631673': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer negative'}, 'GSM1631672': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer negative'}, 'GSM1631671': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer negative'}, 'GSM1631670': {'diagnosis': 'Healthy', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ healthy control, myelin tetramer positive'}, 'GSM1631677': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer positive'}, 'GSM1631676': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer positive'}, 'GSM1631675': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer negative'}, 'GSM1631674': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer negative'}, 'GSM1631679': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer positive'}, 'GSM1631678': {'diagnosis': 'Multiple Sclerosis', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ MS patient, myelin tetramer positive'}, 'GSM1396598': {'status': 'WT', 'Sex': 'M', 'histotype': 'B2', 'diagnosis': '60', 'type': 'Frozen', 'Stage': 'IIB'}, 'GSM1396599': {'status': 'MUT', 'Sex': 'M', 'histotype': 'A', 'diagnosis': '74', 'type': 'Frozen', 'Stage': 'IIA'}, 'GSM1396592': {'status': 'MUT', 'Sex': 'F', 'histotype': 'A', 'diagnosis': '41', 'type': 'Frozen', 'Stage': 'IIA'}, 'GSM1396593': {'status': 'WT', 'Sex': 'F', 'histotype': 'B2', 'diagnosis': '72', 'type': 'Frozen', 'Stage': 'IIB'}, 'GSM1396590': {'status': 'WT', 'Sex': 'F', 'histotype': 'B3', 'diagnosis': '62', 'type': 'Frozen', 'Stage': 'IVA'}, 'GSM1396591': {'status': 'WT', 'Sex': 'F', 'histotype': 'B2', 'diagnosis': '37', 'type': 'Frozen', 'Stage': 'IIA'}, 'GSM1396596': {'status': 'MUT', 'Sex': 'M', 'histotype': 'A', 'diagnosis': '75', 'type': 'Frozen', 'Stage': 'IIB'}, 'GSM1396597': {'status': 'MUT', 'Sex': 'M', 'histotype': 'A', 'diagnosis': '45', 'type': 'Frozen', 'Stage': 'IIA'}, 'GSM1396594': {'status': 'MUT', 'Sex': 'M', 'histotype': 'A', 'diagnosis': '53', 'type': 'Frozen', 'Stage': 'IIB'}, 'GSM1396595': {'status': 'WT', 'Sex': 'M', 'histotype': 'TC:SCC', 'diagnosis': '56', 'type': 'Frozen', 'Stage': 'IVA'}, 'GSM2665921': {'age': 'Day 130', 'well': 'A4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665920': {'age': 'Day 130', 'well': 'F12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665923': {'age': 'Day 130', 'well': 'C5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665922': {'age': 'Day 130', 'well': 'E11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665925': {'age': 'Day 130', 'well': 'F7', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665924': {'age': 'Day 130', 'well': 'E10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM1717517': {'line': 'LNCaP', 'treatment': 'non-treatment', 'time': '0 h'}, 'GSM2665926': {'age': 'Day 130', 'well': 'E8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665929': {'age': 'Day 130', 'well': 'D4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665928': {'age': 'Day 130', 'well': 'A11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2141344': {'individual': 'EU36', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2454099': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454098': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454097': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454096': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454095': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454094': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454093': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454092': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454091': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454090': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2098742': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2141345': {'individual': 'EU36', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2478110': {'state': 'IPF', 'tissue': 'lung', 'type': 'sorted Epithelial type2 cell'}, 'GSM2478111': {'state': 'IPF', 'tissue': 'lung', 'type': 'sorted Epithelial type2 cell'}, 'GSM2478112': {'state': 'control', 'tissue': 'lung', 'type': 'sorted Epithelial type2 cell'}, 'GSM2478113': {'state': 'control', 'tissue': 'lung', 'type': 'sorted Epithelial type2 cell'}, 'GSM2478114': {'state': 'control', 'tissue': 'lung', 'type': 'sorted Epithelial type2 cell'}, 'GSM2754601': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_1112', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1145136': {'line': 'HEK293T', 'replicate': '1', 'rna': 'Control'}, 'GSM1145137': {'line': 'HEK293T', 'replicate': '2', 'rna': 'Control'}, 'GSM2359144': {'stage': 'Kidney-Grade IV'}, 'GSM2413553': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413552': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413551': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413550': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413557': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413556': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413555': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413554': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2052590': {'tissue': 'skin', 'diagnosis': 'Hailey-Hailey disease'}, 'GSM2413559': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413558': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2052591': {'tissue': 'skin', 'diagnosis': 'Hailey-Hailey disease'}, 'GSM927309': {'patient': '1', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'tumor', 'Stage': 'IIA'}, 'GSM927308': {'patient': '1', 'gender': 'female', 'age': '44 years', 'disease': 'Adenocarcinoma, NSCLC', 'smoker': 'non-smoker', 'type': 'normal', 'Stage': 'IB'}, 'GSM2158179': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158178': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158177': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158176': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158175': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158174': {'gender': 'M', 'age': '27', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2158173': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158172': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158171': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158170': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM1233280': {'challenge': 'Pre', 'tissue': 'whole blood'}, 'GSM1233281': {'challenge': 'Post', 'tissue': 'whole blood'}, 'GSM3189468': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C51', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.068257', 'percentaligned': '0.742871442', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.083222', 'original': 'Case'}, 'GSM955119': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM1105846': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105847': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105844': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105845': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105842': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105843': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105840': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105841': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2564974': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM1105848': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105849': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1233286': {'challenge': 'Pre', 'tissue': 'whole blood'}, 'GSM1233287': {'challenge': 'Post', 'tissue': 'whole blood'}, 'GSM955118': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM3189462': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'percentage': '92', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.624657', 'percentaligned': '0.883229427', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.918218'}, 'GSM3189463': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'percentage': '79', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.62331', 'percentaligned': '0.958637659', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.65753'}, 'GSM2027530': {'line': 'H7 derived'}, 'GSM3319641': {'region': 'Anterior cingulate cortex', 'age': '61', 'id': 'C'}, 'GSM3319640': {'region': 'Superior colliculus', 'age': '64', 'id': 'A'}, 'GSM3319642': {'region': 'Superior colliculus', 'age': '61', 'id': 'C'}, 'GSM1446778': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'vehicle', 'passage': '<20'}, 'GSM2264774': {'line': 'HeLa'}, 'GSM2264773': {'line': 'HeLa'}, 'GSM2264772': {'line': 'HeLa'}, 'GSM2264771': {'line': 'HeLa'}, 'GSM2264770': {'line': 'H1', 'type': 'human embryonic stem cells (hESC)'}, 'GSM1639682': {'type': 'Neurons', 'genotype': 'Duplication 15q (Isodicentric)', 'number': '4'}, 'GSM2144547': {'markers': 'not sorted'}, 'GSM2144546': {'markers': 'not sorted'}, 'GSM2144545': {'markers': 'not sorted'}, 'GSM2729816': {'line': 'BFTC 905', 'transfection': 'pcDNA3.1 (vector control)'}, 'GSM2729817': {'line': 'BFTC 905', 'transfection': 'plasmid overexpressing ANGPTL4'}, 'GSM2144549': {'markers': 'not sorted'}, 'GSM2144548': {'markers': 'not sorted'}, 'GSM1919229': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'ROR2 overexpression construct with stimulation with recombinant WNT5A'}, 'GSM2563988': {'line': 'G1S-CCMP-Cas9 U2OS cells', 'tissue': 'bone osteosarcoma'}, 'GSM1919228': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'ROR2 overexpression construct'}, 'GSM2816138': {'line': 'H9'}, 'GSM2816139': {'line': 'H9'}, 'GSM2816136': {'line': 'H9'}, 'GSM2816137': {'line': 'H9'}, 'GSM2816134': {'line': 'H9'}, 'GSM2816135': {'line': 'H9'}, 'GSM2816132': {'line': 'H9'}, 'GSM2816133': {'line': 'H9'}, 'GSM2816130': {'line': 'H9'}, 'GSM2816131': {'line': 'H9'}, 'GSM824254': {'tissue': 'Tumor brain tissue', 'phenotype': 'glioblastoma multiforme'}, 'GSM824253': {'tissue': 'Peripheral brain tissue', 'phenotype': 'glioblastoma multiforme'}, 'GSM1919222': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'control empty vector (pcDNA)'}, 'GSM1919221': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'control empty vector (pcDNA)'}, 'GSM1657725': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr. RO-3306 was then removed and mitotic cells were harvested 45 min later through mitotic shake-off', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'M'}, 'GSM1657724': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr. RO-3306 was then removed and mitotic cells were harvested 45 min later through mitotic shake-off', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'M'}, 'GSM1657727': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr. RO-3306 was then removed and mitotic cells were collected 45 min later through mitotic shake-off and replated to allow normal mitotic exit. 3hr later G1 cells were harvested.', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'G1'}, 'GSM1657726': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr. RO-3306 was then removed and mitotic cells were collected 45 min later through mitotic shake-off and replated to allow normal mitotic exit. 3hr later G1 cells were harvested.', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'G1'}, 'GSM1657721': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr. RO-3306 was then removed and mitotic cells were collected 45 min later through mitotic shake-off and replated to allow normal mitotic exit. 3hr later G1 cells were harvested.', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'G1'}, 'GSM1657720': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr. RO-3306 was then removed and mitotic cells were collected 45 min later through mitotic shake-off and replated to allow normal mitotic exit. 3hr later G1 cells were harvested.', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'G1'}, 'GSM1657723': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr and harvested', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'G2'}, 'GSM1657722': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr and harvested', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'G2'}, 'GSM1953935': {'origin': 'human foreskin fibroblast', 'number': 'p6', 'subtype': 'human foreskin fibroblast', 'time': 'at 48 hours of treatment', 'line': 'BJ (ATCC, CRL-2522)', 'with': '50nM JQ1 for 48 h'}, 'GSM1657729': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr and harvested', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'G2'}, 'GSM1657728': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr and harvested', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'G2'}, 'GSM1919226': {'line': 'ER-positive breast cancer cell line MCF-7', 'treatment': 'ROR2 overexpression construct'}, 'GSM2411307': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1953937': {'origin': 'human foreskin fibroblast', 'number': 'p5', 'subtype': 'reprogramming fibroblasts', 'time': 'at 48 hours of treatment', 'line': 'BJ (ATCC, CRL-2522)', 'with': '50nM JQ1 for 48 h'}, 'GSM1953936': {'origin': 'human foreskin fibroblast', 'number': 'p5', 'subtype': 'reprogramming fibroblasts', 'time': 'at 48 hours of treatment', 'line': 'BJ (ATCC, CRL-2522)', 'with': 'DMSO for 48hrs'}, 'GSM2411308': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411309': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1376068': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376069': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1363309': {'person': 'child', 'trio': 'P005'}, 'GSM1376060': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376061': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376062': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376063': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376064': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376065': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376066': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376067': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2266304': {'with': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM2266300': {'with': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM2266301': {'with': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM2266302': {'with': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM2266303': {'with': 'Silencer select EHF siRNA (s25399, Ambion)', 'line': 'HBE cells', 'type': 'Primary human bronchial epithelial cells'}, 'GSM1281854': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '17.5', 'gender': 'Male', 'age': '67', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2009', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '501'}, 'GSM1281855': {'status': '3 months LVAD support', 'pacemaker': 'Yes', 'fraction': '17.5', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1986', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '110'}, 'GSM1281856': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '17.5', 'gender': 'Male', 'age': '61', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1986', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '110'}, 'GSM1281857': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '64', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '155'}, 'GSM1281850': {'status': '6 months LVAD support', 'pacemaker': 'Yes', 'fraction': '24', 'gender': 'Female', 'age': '68', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2005', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '526'}, 'GSM1281851': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '24', 'gender': 'Female', 'age': '68', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2005', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '526'}, 'GSM1281852': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '17', 'gender': 'Male', 'age': '67', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2009', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281853': {'status': '6 months LVAD support', 'pacemaker': 'Yes', 'fraction': '17.5', 'gender': 'Male', 'age': '67', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2009', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '501'}, 'GSM1281858': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '10', 'gender': 'Male', 'age': '64', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '155'}, 'GSM1281859': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '10', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '155'}, 'GSM2537134': {'media': \"overnight in Waymouth's media\", 'tissue': 'lung explant', 'type': 'distal alveolar epithelial progenitors', 'method': 'enriched for epithelial cells by overnight culture', 'stage': 'gestational week 21'}, 'GSM2158200': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158203': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158202': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158205': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158204': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158207': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM693747': {'line': 'U87MG', 'treatment': 'ADAR1 siRNA'}, 'GSM2158206': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM693746': {'line': 'U87MG', 'treatment': 'control siRNA'}, 'GSM2028281': {'line': 'H9', 'antibody': 'N/A', 'treatment': '50 ng/mL Activin A for 48 hours', 'passage': '58-60'}, 'GSM2028280': {'line': 'H9', 'antibody': 'N/A', 'treatment': '50 ng/mL CX-5461 for 6 hours', 'passage': '58-60'}, 'GSM2028282': {'line': 'H9', 'antibody': 'N/A', 'treatment': '50 ng/mL CX-5461 for 48 hours', 'passage': '58-60'}, 'GSM1369214': {'type': 'hESC (WA-09)', 'id': 'Test Case'}, 'GSM1930409': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'after 1 month of adalimumab treatment'}, 'GSM1297589': {'stage': 'polychromatophilic erythroblasts'}, 'GSM1297588': {'stage': 'late basophilic erythroblasts'}, 'GSM1297585': {'stage': 'orthochromatophilic erythroblasts'}, 'GSM1297584': {'stage': 'polychromatophilic erythroblasts'}, 'GSM1297587': {'stage': 'early basophilic erythroblasts'}, 'GSM1297586': {'stage': 'proerythroblasts'}, 'GSM1297581': {'stage': 'proerythroblasts'}, 'GSM1297580': {'stage': 'orthochromatophilic erythroblasts'}, 'GSM1297583': {'stage': 'late basophilic erythroblasts'}, 'GSM1297582': {'stage': 'early basophilic erythroblasts'}, 'GSM2722957': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.022', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.73', 'age': '56', 'tcga_subtype_dif': '-0.467', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.429', 'outcome': 'Suboptimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722955': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.261', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.418', 'age': '58', 'tcga_subtype_dif': '-0.209', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.031', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IV'}, 'GSM2722952': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.327', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.162', 'age': '59', 'tcga_subtype_dif': '0.245', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.362', 'outcome': 'Suboptimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722950': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.145', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.354', 'age': '65', 'tcga_subtype_dif': '0.036', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.516', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIC'}, 'GSM1359489': {'antibody': 'LANA (Advanced Biotechnologies, 13-210-100)', 'line': 'iSLK-219', 'type': 'Kidney epithelial cells', 'infection': 'rKSHV.219'}, 'GSM2722959': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.265', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.238', 'age': '59', 'tcga_subtype_dif': '-0.154', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.13', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2197716': {'line': 'hepG2', 'genotype': 'Normal'}, 'GSM2197717': {'line': 'hepG2', 'genotype': 'LRP5/6 knockdown'}, 'GSM2197718': {'line': 'hepG2', 'genotype': '{beta}catenin knockdown'}, 'GSM2348619': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348618': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1712268': {'state': 'healthy', 'tissue': 'Venous peripheral blood', 'type': 'T lymphocytes'}, 'GSM1712269': {'state': 'healthy', 'tissue': 'Venous peripheral blood', 'type': 'B lymphocytes'}, 'GSM1202471': {'tissue': 'bone marrow'}, 'GSM1202470': {'tissue': 'bone marrow'}, 'GSM2348611': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348610': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348613': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1712267': {'state': 'healthy', 'tissue': 'Umbilical cord blood', 'type': 'Hematopoietic stem/progenitor cells'}, 'GSM2348615': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1712261': {'state': 'healthy', 'tissue': 'Venous peripheral blood', 'type': 'Granulocytes'}, 'GSM2348617': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348616': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565115': {'construction': 'PLATE-Seq', 'drug': 'Raloxifene'}, 'GSM2565114': {'construction': 'PLATE-Seq', 'drug': 'Alectinib (CH5424802)x'}, 'GSM2565117': {'construction': 'PLATE-Seq', 'drug': 'Ponatinib (AP24534)'}, 'GSM2565116': {'construction': 'PLATE-Seq', 'drug': 'Sunitinib Malate'}, 'GSM2565111': {'construction': 'PLATE-Seq', 'drug': 'Tretinoin'}, 'GSM2565110': {'construction': 'PLATE-Seq', 'drug': 'Bexarotene'}, 'GSM2565113': {'construction': 'PLATE-Seq', 'drug': 'Letrozole'}, 'GSM2565112': {'construction': 'PLATE-Seq', 'drug': 'Erlotinib'}, 'GSM1412750': {'type': 'human umbilical vein endothelial cells', 'details': 'Pool of at least 3 individuals', 'passage': '9'}, 'GSM2565119': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565118': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2279917': {'passages': '20-30', 'type': 'induced pluripotent stem cell', 'stage': 'undifferentiated'}, 'GSM2279916': {'passages': '40-60', 'type': 'embryonic stem cell', 'stage': 'undifferentiated'}, 'GSM2132133': {'tissue': 'kidney', 'type': 'Podocytes'}, 'GSM2132132': {'tissue': 'kidney', 'type': 'Podocytes'}, 'GSM2132131': {'tissue': 'kidney', 'type': 'Podocytes'}, 'GSM2132130': {'tissue': 'kidney', 'type': 'Podocytes'}, 'GSM2279919': {'passages': '20-30', 'type': 'induced pluripotent stem cell', 'stage': 'undifferentiated'}, 'GSM2279918': {'passages': '20-30', 'type': 'induced pluripotent stem cell', 'stage': 'undifferentiated'}, 'GSM1278348': {'stimulation': '18 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278349': {'stimulation': '18 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278340': {'stimulation': '3 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278341': {'stimulation': '3 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278342': {'stimulation': '3 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-C464A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278343': {'stimulation': '3 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-C464A', 'genotype': 'endogenous MALT1 knock-out'}, 'GSM1278344': {'stimulation': '3 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A-C464A'}, 'GSM1278345': {'stimulation': '3 hours P/I', 'line': 'Jurkat T cell', 'expression': 'MALT1-R149A-C464A'}, 'GSM1278346': {'stimulation': '18 hours P/I', 'line': 'Jurkat T cell', 'expression': 'wild type MALT1'}, 'GSM1278347': {'stimulation': '18 hours P/I', 'line': 'Jurkat T cell', 'expression': 'wild type MALT1'}, 'GSM2666010': {'age': 'Day 130', 'well': 'C7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1395839': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2303166': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303167': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303164': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303165': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACIW009'}, 'GSM2303162': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303163': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303160': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303161': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303168': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACIW009'}, 'GSM2303169': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM1624305': {'gender': 'M', 'age': '27', 'tissue': 'skin', 'disease': 'C', 'subject': '14'}, 'GSM1395837': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2666018': {'age': 'Day 130', 'well': 'H5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666019': {'age': 'Day 130', 'well': 'F4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1018010': {'line': 'SNU601'}, 'GSM1018011': {'line': 'SNU668'}, 'GSM1581129': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581128': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM2082084': {'line': 'IMR-5', 'treatment': 'CD532'}, 'GSM2082083': {'line': 'IMR-5', 'treatment': 'CD532'}, 'GSM2082082': {'line': 'IMR-5', 'treatment': 'CD532'}, 'GSM2082081': {'line': 'IMR-5', 'treatment': 'CD532'}, 'GSM2082080': {'line': 'IMR-5', 'treatment': 'DMSO'}, 'GSM1581121': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581120': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581123': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581122': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581125': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581124': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581127': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581126': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1950260': {'line': 'SUIT2', 'treatment': 'KMT2C siRNA3'}, 'GSM2194436': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194437': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194434': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194435': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194432': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194433': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194430': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194431': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM719457': {'type': 'RNA Capture sequencing'}, 'GSM2194438': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194439': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1154022': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1154023': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM2719747': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'ARID1B RNAi'}, 'GSM1154021': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1154026': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154027': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154024': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM1154025': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154028': {'enzyme': 'HindIII', 'experiment': 'Hi-C', 'antibody': 'no', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1154029': {'enzyme': 'no', 'experiment': 'RNA-Seq', 'antibody': 'no', 'treatment': 'no treat'}, 'GSM2719749': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'scrambled control'}, 'GSM2719748': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'scrambled control'}, 'GSM719454': {'type': 'RNA Capture sequencing'}, 'GSM2093000': {'bin': '29', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': '16', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1624304': {'gender': 'M', 'age': '19', 'tissue': 'skin', 'disease': 'C', 'subject': '13'}, 'GSM719455': {'type': 'RNA Capture sequencing'}, 'GSM1395737': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395736': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395735': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395734': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395733': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395732': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395731': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395730': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2104442': {'generation': 'CRISPR/Cas9 treatment with guide-RNA targeting ZMYND8'}, 'GSM2104443': {'generation': 'CRISPR/Cas9 treatment with guide-RNA targeting ZMYND8, followed by flip-in of GFP-ZMYND8'}, 'GSM2104441': {'generation': 'CRISPR/Cas9 treatment with guide-RNA targeting GFP'}, 'GSM1395739': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395738': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM719452': {'type': 'RNA Capture sequencing'}, 'GSM2431687': {'number': '1_6', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D4'}, 'GSM2431686': {'number': '1_5', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D4', 'concentration': '100ng/ml'}, 'GSM2431685': {'number': '1_4', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D4', 'concentration': '10μM'}, 'GSM2431684': {'number': '1_36', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D6'}, 'GSM2431683': {'number': '1_35', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D6', 'concentration': '100ng/ml'}, 'GSM2431682': {'number': '1_34', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D6', 'concentration': '10μM'}, 'GSM2431681': {'number': '1_33', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D6'}, 'GSM2431680': {'number': '1_32', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D6', 'concentration': '100ng/ml'}, 'GSM2431689': {'number': '1_8', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D4', 'concentration': '100ng/ml'}, 'GSM2431688': {'number': '1_7', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D4', 'concentration': '10μM'}, 'GSM719453': {'type': 'RNA Capture sequencing'}, 'GSM1705118': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 10ng/ml IL1α + 20ng/ml PDGF', 'passage': 'p4-5'}, 'GSM1705119': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 10ng/ml IL1α + 20ng/ml PDGF', 'passage': 'p4-5'}, 'GSM1705112': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 10ng/ml IL1α', 'passage': 'p4-5'}, 'GSM1705113': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 20ng/ml PDGF', 'passage': 'p4-5'}, 'GSM1705110': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 10ng/ml IL1α', 'passage': 'p4-5'}, 'GSM1705111': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 10ng/ml IL1α', 'passage': 'p4-5'}, 'GSM1705116': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 20ng/ml PDGF', 'passage': 'p4-5'}, 'GSM1705117': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 10ng/ml IL1α + 20ng/ml PDGF', 'passage': 'p4-5'}, 'GSM1705114': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 20ng/ml PDGF', 'passage': 'p4-5'}, 'GSM1705115': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 20ng/ml PDGF', 'passage': 'p4-5'}, 'GSM719450': {'type': 'RNA Capture sequencing'}, 'GSM884988': {'line': 'HepG2', 'compound': 'DMSO', 'time': '24h'}, 'GSM884983': {'vehicle': 'DMSO', 'line': 'HepG2', 'compound': 'Benzo[A]Pyrene', 'time': '24h'}, 'GSM884982': {'vehicle': 'DMSO', 'line': 'HepG2', 'compound': 'Benzo[A]Pyrene', 'time': '12h'}, 'GSM884981': {'vehicle': 'DMSO', 'line': 'HepG2', 'compound': 'Benzo[A]Pyrene', 'time': '12h'}, 'GSM884987': {'line': 'HepG2', 'compound': 'DMSO', 'time': '24h'}, 'GSM884986': {'line': 'HepG2', 'compound': 'DMSO', 'time': '12h'}, 'GSM884985': {'line': 'HepG2', 'compound': 'DMSO', 'time': '12h'}, 'GSM884984': {'vehicle': 'DMSO', 'line': 'HepG2', 'compound': 'Benzo[A]Pyrene', 'time': '24h'}, 'GSM719451': {'type': 'RNA Capture sequencing'}, 'GSM2858969': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS15 sorted by FACS for mid expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858968': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS15 sorted by FACS for high expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858967': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS15, spontaneously undergoing an EndoMT'}, 'GSM2858966': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature mesenchymal progeny of eMP line MS51, obtained by the downregulation of MYCN and SOX17 for three days'}, 'GSM2858965': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eMP line MS51, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858964': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature mesenchymal progeny of eMP line MS13, obtained by the downregulation of MYCN and SOX17 for three days'}, 'GSM2858963': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eMP line MS13, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858962': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature mesenchymal progeny of eMP line MS4, obtained by the downregulation of MYCN and SOX17 for three days'}, 'GSM2858961': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eMP line MS4, maintained in culture with the ectopic expression of MYCN and SOX17'}, 'GSM2858960': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'mature mesenchymal progeny of eMP line MS5, obtained by the downregulation of MYCN and SOX17 for three days'}, 'GSM2579309': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579308': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2535698': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1166', 'samplename': '1gr_413CD3_C45', 'seqsite': 'BRI', 'sampleID': 'S13293', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1166', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C45'}, 'GSM2579304': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579307': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579306': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579301': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579300': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579303': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579302': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM1647067': {'illumina_index': '5', 'point': '18', 'batch': '10', 'agent': 'BCG', 'rin': '5.8', 'individual': 'M374'}, 'GSM1647066': {'illumina_index': '4', 'point': '18', 'batch': '10', 'agent': 'none', 'rin': '8.1', 'individual': 'M376'}, 'GSM1647065': {'illumina_index': '2', 'point': '18', 'batch': '10', 'agent': 'Rv', 'rin': '6.8', 'individual': 'M377'}, 'GSM1647064': {'illumina_index': '19', 'point': '18', 'batch': '9', 'agent': 'none', 'rin': '8', 'individual': 'M377'}, 'GSM1647063': {'illumina_index': '18', 'point': '18', 'batch': '9', 'agent': 'Smeg', 'rin': '6.6', 'individual': 'M375'}, 'GSM1647062': {'illumina_index': '16', 'point': '48', 'batch': '9', 'agent': 'Rv+', 'rin': '2.8', 'individual': 'M374'}, 'GSM1647061': {'illumina_index': '15', 'point': '18', 'batch': '9', 'agent': 'Smeg', 'rin': '6.4', 'individual': 'M373'}, 'GSM2932930': {'pucai': '40', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '10'}, 'GSM2123898': {}, 'GSM2123899': {}, 'GSM1647069': {'illumina_index': '7', 'point': '48', 'batch': '10', 'agent': 'Smeg', 'rin': '9.3', 'individual': 'M377'}, 'GSM1647068': {'illumina_index': '6', 'point': '4', 'batch': '10', 'agent': 'Rv+', 'rin': '8.3', 'individual': 'M376'}, 'GSM1574060': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with shRNA against YAP1 & treated with PLX4720'}, 'GSM1574061': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with shRNA against YAP1 & treated with Trametinib'}, 'GSM1574062': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with shRNA against YAP1 & treated with DMSO'}, 'GSM1574063': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with shRNA against YAP1 & treated with PLX4720'}, 'GSM1574064': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with shRNA against YAP1 & treated with Trametinib'}, 'GSM2738123': {'line': 'DEV'}, 'GSM2738124': {'line': 'DEV'}, 'GSM2738125': {'line': 'DEV'}, 'GSM2738126': {'line': 'DEV'}, 'GSM2738127': {'line': 'DEV'}, 'GSM1845148': {'with': '0.1% DMSO', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'Mixed lineage leukemia (MLL) fusion protein (FP) leukemia cell line'}, 'GSM1845149': {'with': '500nM I-BET151', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'Mixed lineage leukemia (MLL) fusion protein (FP) leukemia cell line'}, 'GSM2575356': {'line': 'WM983B', 'subclone': 'G7', 'condition': 'Drug'}, 'GSM2575357': {'line': 'WM983B', 'subclone': 'G8', 'condition': 'Drug'}, 'GSM2575354': {'line': 'WM983B', 'subclone': 'G7', 'condition': 'NoDrug'}, 'GSM2575355': {'line': 'WM983B', 'subclone': 'G7', 'condition': 'Drug'}, 'GSM2575352': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'Drug'}, 'GSM2575353': {'line': 'WM983B', 'subclone': 'G7', 'condition': 'Drug'}, 'GSM2575350': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'NoDrug'}, 'GSM1945931': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18499', 'for': '60min'}, 'GSM1949006': {'line': 'H1', 'type': 'H1 hESC', 'state': 'RPMI+ B27 media for 24hrs'}, 'GSM3586674': {'origin': 'ABC', 'pfstt': '1207', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1207', 'cycles': '6', 'oscs': '0'}, 'GSM2575358': {'line': 'WM983B', 'subclone': 'G8', 'condition': 'NoDrug'}, 'GSM2575359': {'line': 'WM983B', 'subclone': 'G8', 'condition': 'Drug'}, 'GSM1444192': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 6-7 h p.i.'}, 'GSM2649120': {'fusion': 'SID4x-dCas9-KRAB', 'tissue': 'Ishikawa endometrial cancer', 'transfected': 'pool of 4 gRNAs targeting IL1RN promoter', 'treatment': 'control'}, 'GSM2361287': {'sum': '5', 'tissue': 'normal prostate tissue', 'score': '2', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '69', 'identifier': 'C6', 'population': 'Russian'}, 'GSM2361286': {'sum': '5', 'tissue': 'tumorous prostate tissue', 'score': '2', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '69', 'identifier': 'C6', 'population': 'Russian'}, 'GSM2361285': {'sum': '6', 'tissue': 'normal prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '59', 'identifier': 'C5', 'population': 'Russian'}, 'GSM2361284': {'sum': '6', 'tissue': 'tumorous prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '59', 'identifier': 'C5', 'population': 'Russian'}, 'GSM2361283': {'sum': '8', 'tissue': 'normal prostate tissue', 'score': '4', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '55', 'identifier': 'C3', 'population': 'Russian'}, 'GSM2361282': {'sum': '8', 'tissue': 'tumorous prostate tissue', 'score': '4', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '55', 'identifier': 'C3', 'population': 'Russian'}, 'GSM2361281': {'sum': '7', 'tissue': 'tumorous prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'yes', 'operation': '55', 'identifier': 'C2', 'population': 'Russian'}, 'GSM2361280': {'sum': '7', 'tissue': 'normal prostate tissue', 'score': '4', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '60', 'identifier': 'C1', 'population': 'Russian'}, 'GSM1482479': {'with': 'none', 'line': 'hTERT-RPE1', 'type': 'human telomerase-immortalised retinal pigmented epithelial cells'}, 'GSM2361289': {'sum': '9', 'tissue': 'normal prostate tissue', 'score': '5', 'diagnosis': 'prostate cancer', 'invasion': 'yes', 'operation': '57', 'identifier': 'C7', 'population': 'Russian'}, 'GSM2361288': {'sum': '9', 'tissue': 'tumorous prostate tissue', 'score': '5', 'diagnosis': 'prostate cancer', 'invasion': 'yes', 'operation': '57', 'identifier': 'C7', 'population': 'Russian'}, 'GSM1288369': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1334177': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM2285709': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM2210778': {'age': 'Mean 42.6 years', 'tissue': 'Peripheral blood', 'group': 'PTSD -ve', 'genotype': 'NA'}, 'GSM2210779': {'age': 'Mean 42.6 years', 'tissue': 'Peripheral blood', 'group': 'PTSD -ve', 'genotype': 'NA'}, 'GSM2210776': {'age': 'Mean 42.6 years', 'tissue': 'Peripheral blood', 'group': 'PTSD -ve', 'genotype': 'NA'}, 'GSM2210777': {'age': 'Mean 42.6 years', 'tissue': 'Peripheral blood', 'group': 'PTSD -ve', 'genotype': 'NA'}, 'GSM2390728': {'disease': 'Healthy Control'}, 'GSM2390729': {'disease': 'Healthy Control'}, 'GSM2390720': {'disease': 'Healthy Control'}, 'GSM2390721': {'disease': 'Healthy Control'}, 'GSM2390722': {'disease': 'Healthy Control'}, 'GSM2390723': {'disease': 'Healthy Control'}, 'GSM2390724': {'disease': 'Healthy Control'}, 'GSM2390725': {'disease': 'Healthy Control'}, 'GSM2390726': {'disease': 'Healthy Control'}, 'GSM2390727': {'disease': 'Healthy Control'}, 'GSM2361863': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361862': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361861': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361860': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361867': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361866': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361865': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361864': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361869': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361868': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2093005': {'bin': '29', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2166389': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166388': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166381': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166380': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166383': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166382': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166385': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166384': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166387': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166386': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2248177': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248176': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248175': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248174': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248173': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248172': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248171': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248170': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248179': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248178': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM3594309': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594308': {'cluster': '2', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM2048751': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048750': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048753': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2463218': {'line': 'HepG2 HCC cell line', 'expressing': 'miR-17 TuD'}, 'GSM2048755': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048754': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048757': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048756': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048759': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048758': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2715271': {'type': 'secondary hepatic organoids', 'day': '> day 62'}, 'GSM2344524': {'gender': 'Female', 'age': '14', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Schizophrenic Patient'}, 'GSM2344523': {'gender': 'Female', 'age': '14', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Schizophrenic Patient'}, 'GSM2344522': {'gender': 'Female', 'age': '14', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Schizophrenic Patient'}, 'GSM2344521': {'gender': 'Female', 'age': '14', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Schizophrenic Patient'}, 'GSM2344520': {'gender': 'Female', 'age': '14', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Schizophrenic Patient'}, 'GSM2565461': {'construction': 'PLATE-Seq', 'drug': 'Lylamine hydrochloride'}, 'GSM2715273': {'type': 'hepatoblasts', 'day': 'day 9'}, 'GSM2565460': {'construction': 'PLATE-Seq', 'drug': '(R)-(-)-Niguldipine hydrochloride'}, 'GSM2715272': {'type': 'secondary hepatic organoids', 'day': '> day 62'}, 'GSM2492435': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2136869': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, ENL Knock Down plus F59A mutant rescue', 'batch': '2'}, 'GSM2715275': {'type': 'primary hepatic organoids', 'day': '> day 21'}, 'GSM2565462': {'construction': 'PLATE-Seq', 'drug': 'LY 2183240'}, 'GSM2715274': {'type': 'primary hepatic organoids', 'day': '> day 21'}, 'GSM1499792': {'treatment': '12 hour'}, 'GSM1499793': {'treatment': 'None'}, 'GSM3594304': {'cluster': '3', 'disease': 'Remission', 'batch': 'Apr4'}, 'GSM2715279': {'type': 'primary hepatocytes'}, 'GSM2715278': {'tissue': 'normal liver'}, 'GSM1499798': {'treatment': '1 hour'}, 'GSM1499799': {'treatment': '12 hour'}, 'GSM2649945': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649944': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649947': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649946': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649941': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649940': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649943': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649942': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM957463': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'BBL', 'id': '3'}, 'GSM957462': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'BBL', 'id': '2'}, 'GSM957461': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'BBL', 'id': '1'}, 'GSM2649949': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649948': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM957465': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'BBL', 'id': '5'}, 'GSM957464': {'gender': 'female', 'tissue': 'skin', 'group': '>=50 years', 'treatment': 'BBL', 'id': '4'}, 'GSM2204722': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204723': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204720': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204721': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204726': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204727': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204724': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204725': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1463078': {'knockdown': 'NO', 'line': 'FADU', 'treatment': 'Normaxia'}, 'GSM1463079': {'knockdown': 'Yes', 'line': 'FADU', 'treatment': 'Normaxia'}, 'GSM2204728': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204729': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2803493': {'stimulation': 'Serum stimulation: 20 min, 10%', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803492': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803491': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803490': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803497': {'stimulation': 'Serum stimulation: 20 min, 10%', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803496': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803495': {'stimulation': 'Serum stimulation: 20 min, 10%', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803494': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803499': {'stimulation': 'Serum stimulation: 20 min, 10%', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803498': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM1446871': {'line': 'U2OS'}, 'GSM2717441': {'status': 'Fuchs endothelial corneal dystrophy', 'tissue': 'corneal endothelium'}, 'GSM2136982': {'subtype': '2', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '5'}, 'GSM2136983': {'subtype': '3', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '4'}, 'GSM2136980': {'subtype': '1', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '5'}, 'GSM2136981': {'subtype': '2', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '4'}, 'GSM2142219': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH+34+43-'}, 'GSM2142218': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH-43+'}, 'GSM2136984': {'subtype': '3', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '5'}, 'GSM2136985': {'subtype': '4', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '4'}, 'GSM1855848': {'antibody': 'None', 'type': 'human colon cancer', 'media': '(+) Methionine'}, 'GSM2142217': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH-43-34-'}, 'GSM1446872': {'line': 'U2OS'}, 'GSM3189076': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.621759', 'percentaligned': '0.954852', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.756933'}, 'GSM1855849': {'antibody': 'None', 'type': 'human colon cancer', 'media': '(-) Methionine'}, 'GSM2200915': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200914': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200917': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200916': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200911': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200910': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200913': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200912': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM3586851': {'origin': 'GCB', 'pfstt': '748', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '748', 'cycles': '8', 'oscs': '0'}, 'GSM2200919': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200918': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM1846978': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846979': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846970': {'group': 'Fixed cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846971': {'group': 'Fixed cells_Triton X Lysis', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846972': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846973': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846974': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846975': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM1846976': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1846977': {'group': 'Fixed cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI+'}, 'GSM1862194': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shSmad3', 'treatment': 'TGF-beta and EGF'}, 'GSM2316670': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1550093': {'line': 'MCF-10A-H1047R', 'time': '24hr'}, 'GSM2316672': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316673': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316674': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316675': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316676': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1550092': {'line': 'MCF-10A-H1047R', 'time': '12hr'}, 'GSM2316678': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316679': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1172909': {'subtype': 'Luminal', 'line': 'ZR7530', 'type': 'breast cancer'}, 'GSM2637982': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM1550090': {'line': 'MCF-10A-H1047R', 'time': '12hr'}, 'GSM1550097': {'line': 'MCF-10A-H1047R', 'time': '6hr'}, 'GSM1550096': {'line': 'MCF-10A-H1047R', 'time': '6hr'}, 'GSM1898018': {'phase': 'G1 phase', 'subtype': 'ribosome-protected fragments (Ribo-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898019': {'phase': 'G1 phase', 'subtype': 'ribosome-protected fragments (Ribo-seq)', 'type': 'HeLa S3 cells'}, 'GSM1550095': {'line': 'MCF-10A-H1047R', 'time': '24hr'}, 'GSM1898010': {'phase': 'M phase', 'subtype': 'ribosome-protected fragments (Ribo-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898011': {'phase': 'M phase', 'subtype': 'ribosome-protected fragments (Ribo-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898012': {'phase': 'M phase', 'subtype': 'ribosome-protected fragments (Ribo-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898013': {'phase': 'M phase', 'subtype': 'ribosome-protected fragments (Ribo-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898014': {'phase': 'G1 phase', 'subtype': 'Total mRNA (RNA-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898015': {'phase': 'G1 phase', 'subtype': 'Total mRNA (RNA-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898016': {'phase': 'G1 phase', 'subtype': 'Total mRNA (RNA-seq)', 'type': 'HeLa S3 cells'}, 'GSM1898017': {'phase': 'G1 phase', 'subtype': 'Total mRNA (RNA-seq)', 'type': 'HeLa S3 cells'}, 'GSM2333832': {'tissue': 'prostate', 'type': 'fibroblasts from surgical explants of patients diagnosed with benign prostatic hyperplasia'}, 'GSM2333831': {'tissue': 'prostate', 'type': 'fibroblasts from surgical explants of patients diagnosed with benign prostatic hyperplasia'}, 'GSM2333830': {'tissue': 'prostate', 'type': 'fibroblasts from surgical explants of patients diagnosed with benign prostatic hyperplasia'}, 'GSM2233214': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233215': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233216': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233217': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233210': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233211': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233212': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233213': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233218': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233219': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2717624': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM2717625': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM1382043': {'line': 'HCT116', 'type': 'human colon cancer cells'}, 'GSM2717627': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM2717620': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM2717621': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM1382047': {'line': 'HCT116', 'type': 'human colon cancer cells'}, 'GSM2717623': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM4599151': {'type': 'melanoma', 'name': 'UACC62R', 'treatment': '10 uM CCG-222740'}, 'GSM2717628': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM2348553': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348550': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464326': {'status': 'small cell lung cancer'}, 'GSM855075': {'line': 'LNCaP', 'treatment': 'R1881'}, 'GSM855074': {'line': 'LNCaP', 'treatment': 'vehicle'}, 'GSM855077': {'line': 'LNCaP', 'treatment': 'R1881'}, 'GSM855076': {'line': 'LNCaP', 'treatment': 'R1881'}, 'GSM2754878': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_1135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754879': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_1135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM855073': {'line': 'LNCaP', 'treatment': 'vehicle'}, 'GSM855072': {'line': 'LNCaP', 'treatment': 'vehicle'}, 'GSM2754874': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754875': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754876': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754877': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_1135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754870': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_1112', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754871': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_1112', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754872': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_1112', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754873': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_1153', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1338127': {'gender': 'Male', 'age': '60', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1338126': {'gender': 'Male', 'age': '64', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1338125': {'gender': 'Male', 'age': '71', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1338124': {'gender': 'Male', 'age': '68', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1338129': {'gender': 'Male', 'age': '70', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1338128': {'gender': 'Male', 'age': '59', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1599194': {'line': 'CSC_shH1.0-1', 'treatment': 'SHOT (16h Dox)'}, 'GSM2158038': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158039': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM1964309': {'type': 'Primary normal human bronchial epithelial (NHBE) cells', 'treatment': 'control', 'time': 'control'}, 'GSM2158032': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158033': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158030': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158031': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2158036': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158037': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158034': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158035': {'gender': 'F', 'age': '31', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM1909020': {'type': 'CD34+', 'treatment': 'Untransduced control'}, 'GSM1909021': {'type': 'CD34+', 'treatment': 'Empty vector transduced'}, 'GSM1909022': {'type': 'CD34+', 'treatment': 'ERG3 overexpressing'}, 'GSM1909023': {'type': 'CD34+', 'treatment': 'ERG3 S283A overexpressing'}, 'GSM1909024': {'type': 'CD34+', 'treatment': 'ERG3 S238D overexpressing'}, 'GSM2543119': {'line': 'A549'}, 'GSM2543118': {'line': 'A549'}, 'GSM1599198': {'line': 'CSC_shH1.0-1', 'treatment': 'DOX (14d Dox)'}, 'GSM2805879': {'genotype': 'RNF2-R', 'antibody': 'BCOR 185 (Beguelin et al, 2016)', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805878': {'genotype': 'RNF2-R', 'antibody': 'BCOR 185 (Beguelin et al, 2016)', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': '1micro/ml Doxycyclin', 'type': 'H1 hESC'}, 'GSM1597909': {'status': 'control', 'tissue': 'heart'}, 'GSM2805875': {'genotype': 'KDM2B KO', 'antibody': 'BCOR 185 (Beguelin et al, 2016)', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM1385778': {'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM1385779': {'line': 'TE-7', 'type': 'esophageal epithelial'}, 'GSM2805874': {'genotype': 'KDM2B KO', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM896812': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (2-cell)', 'stage': 'early blastomere'}, 'GSM2805872': {'genotype': 'WT', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Bioruptor', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM1276869': {'score': '9.3', 'sequence': 'GCCAAT', 'targeted': 'HNRPH2', 'number': '6', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276868': {'score': '9.8', 'sequence': 'ACAGTG', 'targeted': 'HNRPH2', 'number': '5', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2472026': {'source': 'Cutaneous SCC', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'AIM2 siRNA'}, 'GSM2472024': {'source': 'Cutaneous SCC', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'AIM2 siRNA'}, 'GSM2472025': {'source': 'Cutaneous SCC', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'Negative control siRNA'}, 'GSM2472022': {'source': 'Cutaneous SCC', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'AIM2 siRNA'}, 'GSM2472023': {'source': 'Cutaneous SCC', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'Negative control siRNA'}, 'GSM2472021': {'source': 'Cutaneous SCC', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'Negative control siRNA'}, 'GSM1832784': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1410586': {'gene': 'SAMHD1 Wild Type', 'type': 'U937', 'infection': '3h'}, 'GSM1856013': {'passages': '3-7', 'antibody': 'anti-Ty1 (Menafra et al., 2014)', 'variation': 'Ty1-GATA3 expressed'}, 'GSM998967': {'line': 'breast cancer cell line MCF-7/TAMR-8', 'genotype': 'tamoxifen resistant'}, 'GSM998966': {'line': 'breast cancer cell line MCF-7/TAMR-7', 'genotype': 'tamoxifen resistant'}, 'GSM998965': {'line': 'breast cancer cell line MCF-7/TAMR-4', 'genotype': 'tamoxifen resistant'}, 'GSM998964': {'line': 'breast cancer cell line MCF-7/TAMR-1', 'genotype': 'tamoxifen resistant'}, 'GSM998963': {'line': 'breast cancer cell line MCF-7/S0.5', 'genotype': 'tamoxifen sensitive'}, 'GSM998962': {'line': 'breast cancer cell line MCF-7/TAMR-8', 'genotype': 'tamoxifen resistant'}, 'GSM998961': {'line': 'breast cancer cell line MCF-7/TAMR-7', 'genotype': 'tamoxifen resistant'}, 'GSM998960': {'line': 'breast cancer cell line MCF-7/TAMR-4', 'genotype': 'tamoxifen resistant'}, 'GSM1410587': {'gene': 'SAMHD1 D207N', 'type': 'U937', 'infection': '0h'}, 'GSM1564636': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '3', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1410584': {'gene': 'SAMHD1 Wild Type', 'type': 'U937', 'infection': '0h'}, 'GSM2050623': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050624': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050625': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050626': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050627': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050628': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2050629': {'line': 'U2OS', 'antibody': 'non'}, 'GSM2883037': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject1', 'drug': 'Metformin'}, 'GSM2283994': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM3190631': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.333803'}, 'GSM3190630': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.809337'}, 'GSM3190633': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.706976'}, 'GSM3190632': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.04591'}, 'GSM3190635': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.407889'}, 'GSM3190634': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'No', 'visit': 'None', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'F', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', '4': 'No', '2': 'No', 'years': '10', 'libcounts': '6.488389', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM3190637': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.860056'}, 'GSM3190636': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.710563'}, 'GSM3190639': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A44', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.108729'}, 'GSM3190638': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.633698'}, 'GSM2283995': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2616640': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2901760': {'wth': '50mM propionate + 25uM EIPA', 'type': 'HeLa'}, 'GSM2901761': {'wth': '50mM propionate + 25uM EIPA', 'type': 'HeLa'}, 'GSM2616641': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2283996': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM1832785': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1587428': {'tissue': 'lymphocytic colitis', 'medication': 'none'}, 'GSM1782883': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1587422': {'tissue': 'benign', 'medication': 'none'}, 'GSM1587423': {'tissue': 'benign', 'medication': 'none'}, 'GSM1587421': {'tissue': 'benign', 'medication': 'none'}, 'GSM1587426': {'tissue': 'lymphocytic colitis', 'medication': 'none'}, 'GSM1587427': {'tissue': 'lymphocytic colitis', 'medication': 'none'}, 'GSM1587424': {'tissue': 'benign', 'medication': 'none'}, 'GSM1587425': {'tissue': 'lymphocytic colitis', 'medication': 'none'}, 'GSM2537181': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2283997': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2616648': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2537182': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2537185': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2537184': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2274949': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-1', 'trunkbarcode': '928616', 'sampleID': 'S33276', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9795', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9795', 'studysiteshort': 'YALE'}, 'GSM2274948': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-41', 'trunkbarcode': '927496', 'sampleID': 'S32731', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9321', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9321', 'studysiteshort': 'UCSF'}, 'GSM2092967': {'bin': '11', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': '22', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092966': {'bin': '11', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092961': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092960': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092963': {'bin': '8', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092962': {'bin': '8', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2274941': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-34', 'trunkbarcode': '927496', 'sampleID': 'S32724', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9314', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9314', 'studysiteshort': 'UCSF'}, 'GSM2274940': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-33', 'trunkbarcode': '927496', 'sampleID': 'S32723', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9313', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9313', 'studysiteshort': 'UCSF'}, 'GSM2274943': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-36', 'trunkbarcode': '927496', 'sampleID': 'S32726', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9316', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9316', 'studysiteshort': 'UCSF'}, 'GSM2274942': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '450', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-35', 'trunkbarcode': '927496', 'sampleID': 'S32725', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9315', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9315', 'studysiteshort': 'UCSF'}, 'GSM2274945': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-38', 'trunkbarcode': '927496', 'sampleID': 'S32728', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9318', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9318', 'studysiteshort': 'UCSF'}, 'GSM2274944': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-37', 'trunkbarcode': '927496', 'sampleID': 'S32727', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9317', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9317', 'studysiteshort': 'UCSF'}, 'GSM2274947': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-40', 'trunkbarcode': '927496', 'sampleID': 'S32730', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9320', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9320', 'studysiteshort': 'UCSF'}, 'GSM2274946': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-39', 'trunkbarcode': '927496', 'sampleID': 'S32729', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9319', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9319', 'studysiteshort': 'UCSF'}, 'GSM2474464': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2125778': {'cancer': 'gastric cancer', 'stage': '1'}, 'GSM2679962': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2474467': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2679964': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2474461': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2474462': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2474463': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2125771': {'cancer': 'adjacent normal'}, 'GSM2125770': {'cancer': 'adjacent normal'}, 'GSM2125773': {'cancer': 'adjacent normal'}, 'GSM2125772': {'cancer': 'adjacent normal'}, 'GSM2474468': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2125774': {'cancer': 'adjacent normal'}, 'GSM2125777': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM2125776': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2719886': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719887': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719884': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'scrambled control'}, 'GSM2719885': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'scrambled control'}, 'GSM1697109': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '2.5 h'}, 'GSM1697108': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '2.5 h'}, 'GSM2719880': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'scrambled control'}, 'GSM2719881': {'source': 'H3K4me3 (Millipore, #05-745)', 'RNAi': 'scrambled control'}, 'GSM1697105': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '4 h'}, 'GSM1697104': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '4 h'}, 'GSM1697107': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '24 h'}, 'GSM1697106': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '24 h'}, 'GSM1697101': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '24 h'}, 'GSM1697100': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '24 h'}, 'GSM1697103': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '2.5 h'}, 'GSM2719889': {'source': 'none', 'RNAi': 'ARID1B RNAi'}, 'GSM1533983': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533986': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533987': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533984': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1533985': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM920977': {'barcode': 'ATTTGC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd7'}, 'GSM920976': {'barcode': 'GTCGGT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd6'}, 'GSM1533988': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM920974': {'barcode': 'GGTACA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd4'}, 'GSM920973': {'barcode': 'GAGGAG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd3'}, 'GSM920972': {'barcode': 'AATAAA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd2'}, 'GSM920971': {'barcode': 'AAGCGG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd1'}, 'GSM920970': {'barcode': 'CAAAGT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Noninduced', 'name': 'Daphne', 'day': 'd0'}, 'GSM1945972': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18510', 'for': '60min'}, 'GSM2307418': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307419': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307416': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307417': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307414': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307415': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307412': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307413': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307410': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307411': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1945973': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18510', 'for': '60min'}, 'GSM2308767': {'type': 'HFF cells', 'treatment': 'Non-Targeting siRNA treatment', 'infection': 'HCMV infected'}, 'GSM2308766': {'type': 'HFF cells', 'treatment': 'Non-Targeting siRNA treatment', 'infection': 'Mock Infected (serum with no HCMV)'}, 'GSM2526785': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526784': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526787': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2254456': {'tumor': 'acute monocytic leukemia', 'tissue': 'peripheral blood', 'antibody': 'm6A antibody'}, 'GSM2526781': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526780': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526783': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526782': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526789': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526788': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1945970': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18510', 'for': '30min'}, 'GSM2393188': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Hormone starvation + 16 h EtOH', 'variation': 'Control'}, 'GSM1202532': {'tissue': 'peripheral blood', 'agent': 'DMSO_0.1%', 'time': '16h'}, 'GSM1202533': {'tissue': 'peripheral blood', 'agent': 'SR1_500nM', 'time': '16h'}, 'GSM1202530': {'tissue': 'bone marrow', 'agent': 'SR1_500nM+BIO_1µM', 'time': '16h'}, 'GSM1202531': {'tissue': 'peripheral blood', 'agent': 'none', 'time': '0h'}, 'GSM1202536': {'tissue': 'peripheral blood', 'agent': 'SR1_500nM+BIO_1µM', 'time': '16h'}, 'GSM1202537': {'tissue': 'peripheral blood', 'agent': 'none', 'time': '0h'}, 'GSM1202534': {'tissue': 'peripheral blood', 'agent': 'BIO_2µM', 'time': '16h'}, 'GSM1202535': {'tissue': 'peripheral blood', 'agent': 'MeBIO_500nM', 'time': '16h'}, 'GSM1202538': {'tissue': 'peripheral blood', 'agent': 'DMSO_0.1%', 'time': '16h'}, 'GSM1202539': {'tissue': 'peripheral blood', 'agent': 'SR1_500nM', 'time': '16h'}, 'GSM1945971': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18510', 'for': '60min'}, 'GSM1670889': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'doxycyclin EGF'}, 'GSM1670888': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'doxycyclin'}, 'GSM1670883': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'doxycyclin EGF'}, 'GSM1670882': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control EGF'}, 'GSM1670881': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control'}, 'GSM1670880': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control EGF'}, 'GSM1670887': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control EGF'}, 'GSM1670886': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control'}, 'GSM1670885': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control EGF'}, 'GSM1670884': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control'}, 'GSM3586575': {'origin': 'UNCLASSIFIED', 'pfstt': '1107', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1107', 'cycles': '6', 'oscs': '0'}, 'GSM2816082': {'line': 'H9'}, 'GSM3586574': {'origin': 'GCB', 'pfstt': '271', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1162', 'cycles': '6', 'oscs': '0'}, 'GSM1173504': {'with': 'antisense morpholino to U6atac', 'line': 'HeLa PV', 'type': 'Human Carcinoma Cells', 'subtype': 'nascent polyA mRNA'}, 'GSM1945976': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18511', 'for': '30min'}, 'GSM1173503': {'with': 'antisense morpholino to control', 'line': 'HeLa PV', 'type': 'Human Carcinoma Cells', 'subtype': 'nascent polyA mRNA'}, 'GSM2916064': {'line': 'HEK293', 'medium': 'Untreated Freestyle Medium'}, 'GSM3586576': {'origin': 'GCB', 'pfstt': '151', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '301', 'cycles': '6', 'oscs': '1'}, 'GSM3586571': {'origin': 'UNCLASSIFIED', 'pfstt': '1122', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1434', 'cycles': '6', 'oscs': '0'}, 'GSM3586570': {'origin': 'UNCLASSIFIED', 'pfstt': '5', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '5', 'cycles': '6', 'oscs': '1'}, 'GSM3586573': {'origin': 'ABC', 'pfstt': '1147', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1255', 'cycles': '6', 'oscs': '0'}, 'GSM1945977': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18511', 'for': '30min'}, 'GSM3586572': {'origin': 'GCB', 'pfstt': '194', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1253', 'cycles': '6', 'oscs': '0'}, 'GSM2547139': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM2806228': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2806223': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2806222': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2547131': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM2547130': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2806227': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2806226': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2806225': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2806224': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2253102': {'line': 'HEK 293', 'variation': 'ZSCAN5A SiRNA #4 knockdown'}, 'GSM2253103': {'line': 'HEK 293', 'variation': 'ZSCAN5A SiRNA #5 knockdown'}, 'GSM2253104': {'line': 'HEK 293', 'variation': 'ZSCAN5B SiRNA #1 knockdown'}, 'GSM2253105': {'line': 'HEK 293', 'variation': 'scrambled negative control knockdown'}, 'GSM1861612': {'name': 'PN_rep1', 'stage': '1-cell embryo'}, 'GSM1861613': {'name': 'PN_rep2', 'stage': '1-cell embryo'}, 'GSM1861610': {'name': 'MII_rep1', 'stage': 'Mature oocyte'}, 'GSM1861611': {'name': 'MII_rep2', 'stage': 'Mature oocyte'}, 'GSM1861616': {'name': 'MOR_rep1', 'stage': 'Morula'}, 'GSM1861617': {'name': 'MOR_rep2', 'stage': 'Morula'}, 'GSM1861614': {'name': 'CL_rep1', 'stage': '2-,4-,and 8-cell embryo'}, 'GSM1861615': {'name': 'CL_rep2', 'stage': '2-,4-,and 8-cell embryo'}, 'GSM1861618': {'name': 'ICM_rep1', 'stage': 'Blastocyst; ICM and polar trophectoderm'}, 'GSM1861619': {'name': 'ICM_rep2', 'stage': 'Blastocyst; ICM and polar trophectoderm'}, 'GSM1945975': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18511', 'for': '30min'}, 'GSM1868736': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868737': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868734': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2653620': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM1868732': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868733': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2653625': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2562656': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2705959': {'tissue': '2D'}, 'GSM2653629': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2653628': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2562655': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1868738': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868739': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2616397': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616390': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616391': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2642553': {'control': 'Cocaine Dependence', 'death': 'acute cocaine toxicity', 'age': '29', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '5.97', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642552': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '23', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.71', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642551': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '31', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.02', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642550': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '35', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.53', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642557': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '52', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.61', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2476009': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2642555': {'control': 'Cocaine Dependence', 'death': 'concentric left ventricular hypertrophy;chronic cocaine abuse', 'age': '23', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.23', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642554': {'control': 'Cocaine Dependence', 'death': 'atherosclerotic coronary artery disease; chronic cocaine abuse', 'age': '38', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.39', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2476004': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM2476005': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM2642559': {'control': 'Cocaine Dependence', 'death': 'Massive pulmonary emboli;chronic cocaine abuse', 'age': '33', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.31', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2476007': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '60 min'}, 'GSM2476000': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM2476001': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM2476002': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM2476003': {'line': 'Huh7', 'type': 'ribo-seq', 'time': '10 min'}, 'GSM2916063': {'line': 'HEK293', 'medium': 'Untreated Freestyle Medium'}, 'GSM2081433': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081432': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081431': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081430': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081437': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081436': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081435': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081434': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2616398': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2081439': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081438': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2883075': {'type': 'primary nasal epithelial cells', 'treatment': 'Unstimulated'}, 'GSM2883077': {'type': 'primary nasal epithelial cells', 'treatment': '8hr post-stimulation with RIG-I ligand SLR14'}, 'GSM2883076': {'type': 'primary nasal epithelial cells', 'treatment': 'Unstimulated'}, 'GSM2562659': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1955405': {'line': 'A549', 'type': 'Human lung adenocarcinoma cell line'}, 'GSM2562658': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM1955403': {'line': 'A549', 'type': 'Human lung adenocarcinoma cell line'}, 'GSM1955402': {'line': 'A549', 'type': 'Human lung adenocarcinoma cell line'}, 'GSM1955401': {'line': 'A549', 'type': 'Human lung adenocarcinoma cell line'}, 'GSM1955400': {'line': 'A549', 'type': 'Human lung adenocarcinoma cell line'}, 'GSM2247756': {'line': 'H9', 'type': 'Transformed mesenchymal stem cells', 'transformation': 'Yes', 'variation': 'NRF2 A245G/A245G', 'passage': 'none'}, 'GSM2247757': {'line': 'H9', 'type': 'Transformed mesenchymal stem cells', 'transformation': 'Yes', 'variation': 'NRF2 A245G/A245G', 'passage': 'none'}, 'GSM2247754': {'line': 'H9', 'type': 'Transformed mesenchymal stem cells', 'transformation': 'Yes', 'variation': 'NRF2 +/+', 'passage': 'none'}, 'GSM2247755': {'line': 'H9', 'type': 'Transformed mesenchymal stem cells', 'transformation': 'Yes', 'variation': 'NRF2 +/+', 'passage': 'none'}, 'GSM2247752': {'line': 'H9', 'type': 'Mesenchymal stem cells', 'transformation': 'No', 'variation': 'NRF2 A245G/A245G', 'passage': 'late'}, 'GSM2247753': {'line': 'H9', 'type': 'Mesenchymal stem cells', 'transformation': 'No', 'variation': 'NRF2 A245G/A245G', 'passage': 'late'}, 'GSM2247750': {'line': 'H9', 'type': 'Mesenchymal stem cells', 'transformation': 'No', 'variation': 'NRF2 +/+', 'passage': 'late'}, 'GSM2247751': {'line': 'H9', 'type': 'Mesenchymal stem cells', 'transformation': 'No', 'variation': 'NRF2 +/+', 'passage': 'late'}, 'GSM3148640': {'tissue': 'breast tumor', 'type': 'CD45+ leukocytes'}, 'GSM1395672': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395673': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395670': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395671': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395676': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395677': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395674': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395675': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395678': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395679': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2309598': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2459961': {'age': '7 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1-/-', 'Sex': 'Male'}, 'GSM2373929': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373928': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373925': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373924': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373927': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373926': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373921': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373920': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373923': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373922': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2784538': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '48h'}, 'GSM2784539': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '48h'}, 'GSM2784530': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '48h'}, 'GSM2784531': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '48h'}, 'GSM2784532': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '48h'}, 'GSM2784533': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '48h'}, 'GSM2784534': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '48h'}, 'GSM2784535': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '48h'}, 'GSM2784536': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '48h'}, 'GSM2784537': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '48h'}, 'GSM2348537': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2092558': {'repertoire': 'TCR-alpha', 'individual': 'patient 11 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2092559': {'repertoire': 'TCR-beta', 'individual': 'patient 11 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM1704554': {'protocol': '12 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM2092554': {'repertoire': 'TCR-beta', 'individual': 'patient 10 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2092555': {'individual': 'patient 10 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092556': {'repertoire': 'TCR-alpha', 'individual': 'patient 11 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092557': {'repertoire': 'TCR-beta', 'individual': 'patient 11 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092550': {'individual': 'patient 9 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092551': {'repertoire': 'TCR-alpha', 'individual': 'patient 10 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092552': {'repertoire': 'TCR-beta', 'individual': 'patient 10 (glioblastoma)', 'tissue': 'brain'}, 'GSM2092553': {'repertoire': 'TCR-alpha', 'individual': 'patient 10 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2111659': {'type': 'TC7 cells (Caco-2)', 'condition': 'Non infected cells treated with TSA'}, 'GSM2111658': {'type': 'TC7 cells (Caco-2)', 'condition': 'Non infected and non treated cells'}, 'GSM2325919': {'type': 'Human embryonic stem cell'}, 'GSM2325918': {'type': 'Human embryonic stem cell'}, 'GSM2325913': {'type': 'Human embryonic stem cell'}, 'GSM2325912': {'type': 'Human embryonic stem cell'}, 'GSM2325911': {'type': 'Human embryonic stem cell'}, 'GSM2325910': {'type': 'Human embryonic stem cell'}, 'GSM2325917': {'type': 'Human embryonic stem cell'}, 'GSM2325916': {'type': 'Human embryonic stem cell'}, 'GSM2325915': {'type': 'Human embryonic stem cell'}, 'GSM2325914': {'type': 'Human embryonic stem cell'}, 'GSM2932872': {'pucai': '25', 'score': '3', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM2932873': {'pucai': '70', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '14'}, 'GSM2932870': {'pucai': '55', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM2932871': {'pucai': '35', 'score': '0', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '13'}, 'GSM2932876': {'pucai': '40', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2932877': {'pucai': '80', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '10'}, 'GSM2932874': {'pucai': '65', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM2932875': {'pucai': '75', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '14'}, 'GSM2932878': {'pucai': '30', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM2932879': {'pucai': '55', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM1398969': {'group': 'old', 'tissue': 'pancreas', 'type': 'duct'}, 'GSM1398968': {'group': 'old', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM2815824': {'line': 'H9'}, 'GSM1398961': {'group': 'young', 'tissue': 'pancreas', 'type': 'acinar'}, 'GSM1398963': {'group': 'old', 'tissue': 'pancreas', 'type': 'acinar'}, 'GSM1398962': {'group': 'old', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398965': {'group': 'old', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1398964': {'group': 'old', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398967': {'group': 'old', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398966': {'group': 'old', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1974240': {'type': 'ESC-derived hepatocytes', 'treatment': 'SB'}, 'GSM2305850': {'tissue': 'colon'}, 'GSM1974242': {'type': 'ESC-derived hepatocytes', 'treatment': 'VK2'}, 'GSM1974243': {'type': 'ESC-derived hepatic stem cells'}, 'GSM1974244': {'type': 'ESC-derived hepatic stem cells'}, 'GSM1974245': {'type': 'ESC-derived hepatocytes', 'time': 'day 15'}, 'GSM1974246': {'type': 'ESC-derived hepatocytes', 'time': 'day 15'}, 'GSM1974247': {'type': 'ESC-derived hepatocytes', 'treatment': 'SB', 'time': 'day 15'}, 'GSM1974248': {'type': 'ESC-derived hepatocytes', 'treatment': 'SB', 'time': 'day 15'}, 'GSM2305852': {'tissue': 'colon'}, 'GSM1275063': {'type': 'mesangial cells', 'treatment': 'high glucose'}, 'GSM2305853': {'tissue': 'colon'}, 'GSM2339255': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2815822': {'line': 'H9'}, 'GSM2339254': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305856': {'tissue': 'colon'}, 'GSM2339256': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339259': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305859': {'tissue': 'colon'}, 'GSM1936747': {'line': 'IMR90'}, 'GSM1936746': {'line': 'IMR90'}, 'GSM1936745': {'line': 'IMR90'}, 'GSM1936744': {'line': 'IMR90'}, 'GSM1936743': {'line': 'IMR90'}, 'GSM1936742': {'line': 'IMR90'}, 'GSM1936741': {'line': 'IMR90'}, 'GSM1936740': {'line': 'IMR90'}, 'GSM2462049': {'strain': 'V. parahaemolyticus POR3', 'time': '45 minutes'}, 'GSM1936749': {'line': 'IMR90'}, 'GSM1936748': {'line': 'IMR90'}, '4': {'code': '200'}, 'GSM434627': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM2285798': {'status': 'healthy volunteer', 'gender': 'female', 'age': '59', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM434629': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434628': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM2285799': {'status': 'healthy volunteer', 'gender': 'female', 'age': '67', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285794': {'status': 'healthy volunteer', 'gender': 'female', 'age': '53', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285795': {'status': 'healthy volunteer', 'gender': 'female', 'age': '61', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1126627': {'support': 'pre-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'ischemic cardiomyopathy'}, 'GSM2631729': {'tissue': 'PDX tumor', 'agent': 'control'}, 'GSM1970047': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2285797': {'status': 'healthy volunteer', 'gender': 'female', 'age': '77', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2632268': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632269': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632266': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632267': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632264': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632265': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632262': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632263': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632260': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1970049': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM3177258': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C8', 'cdai': 'N/A'}, 'GSM3177259': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C9', 'cdai': 'N/A'}, 'GSM3177254': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C6', 'cdai': 'N/A'}, 'GSM3177255': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C7', 'cdai': 'N/A'}, 'GSM3177256': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C7', 'cdai': 'N/A'}, 'GSM3177257': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C8', 'cdai': 'N/A'}, 'GSM3177250': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C4', 'cdai': 'N/A'}, 'GSM3177251': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C4', 'cdai': 'N/A'}, 'GSM3177252': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C5', 'cdai': 'N/A'}, 'GSM3177253': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'male', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C6', 'cdai': 'N/A'}, 'GSM2516874': {'death': '81', 'score': 'IV', 'post_mortem_interval': '4', 'caseid': '08-89', 'Sex': 'F', 'rin_score': '6.2', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655412'}, 'GSM2516875': {'death': '81', 'score': 'VI', 'post_mortem_interval': '2.83', 'caseid': '11-105', 'Sex': 'M', 'rin_score': '6.7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655473'}, 'GSM2516876': {'death': '93', 'score': 'IV', 'post_mortem_interval': '2.75', 'caseid': '01-33', 'Sex': 'M', 'rin_score': '6.1', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655399'}, 'GSM2516877': {'death': '85', 'score': 'III', 'post_mortem_interval': '2.5', 'caseid': '98-07', 'Sex': 'M', 'rin_score': '6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655384'}, 'GSM2516870': {'death': '89', 'score': 'IV', 'post_mortem_interval': '2.75', 'caseid': '09-14', 'Sex': 'F', 'rin_score': '5.8', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655394'}, 'GSM2516871': {'death': '78', 'score': 'IV', 'post_mortem_interval': '3.75', 'caseid': '04-30', 'Sex': 'F', 'rin_score': '7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655506'}, 'GSM2516872': {'death': '93', 'score': 'IV', 'post_mortem_interval': '2.08', 'caseid': '11-102', 'Sex': 'M', 'rin_score': '7.9', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655492'}, 'GSM2516873': {'death': '79', 'score': 'III', 'post_mortem_interval': '2.22', 'caseid': '11-28', 'Sex': 'F', 'rin_score': '7.4', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655481'}, 'GSM2516878': {'death': '78', 'score': 'III', 'post_mortem_interval': '2.75', 'caseid': '06-66', 'Sex': 'M', 'rin_score': '6.7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655513'}, 'GSM2516879': {'death': '79', 'score': 'IV', 'post_mortem_interval': '2.5', 'caseid': '03-57', 'Sex': 'M', 'rin_score': '6.7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655417'}, 'GSM2051130': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 2c'}, 'GSM3594569': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594568': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM1553151': {'duration': '3h', 'line': 'SUM159R', 'treatment': 'JQ1'}, 'GSM1553150': {'duration': '3h', 'line': 'SUM159R', 'treatment': 'JQ1'}, 'GSM1553157': {'duration': '3h', 'line': 'SUM159', 'treatment': 'DMSO'}, 'GSM1553156': {'duration': '3h', 'line': 'SUM159', 'treatment': 'DMSO'}, 'GSM1553155': {'duration': '24h', 'line': 'SUM159', 'treatment': 'DMSO'}, 'GSM1553154': {'duration': '24h', 'line': 'SUM159', 'treatment': 'DMSO'}, 'GSM3594561': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594560': {'cluster': '8', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594563': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594562': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594565': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594564': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594567': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594566': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2411759': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'BCG', 'id': '20'}, 'GSM2411758': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'Media', 'id': '20'}, 'GSM2411753': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'BCG', 'id': '31'}, 'GSM2411752': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'Media', 'id': '31'}, 'GSM2411751': {'polarization': 'M1', 'type': 'M1 macrophage', 'treatment': 'Media', 'id': '31'}, 'GSM2411750': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'BCG', 'id': '28'}, 'GSM2411757': {'polarization': 'M1', 'type': 'M1 macrophage', 'treatment': 'Media', 'id': '20'}, 'GSM2411756': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'BCG', 'id': '35'}, 'GSM2411755': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'Media', 'id': '35'}, 'GSM2411754': {'polarization': 'M1', 'type': 'M1 macrophage', 'treatment': 'Media', 'id': '35'}, 'GSM2218626': {'with': '+UV (Recovery time=48h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218627': {'with': '+UV (Recovery time=1h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218624': {'with': '+UV (Recovery time=6h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2711565': {'line': 'WA09', 'passages': '52-58', 'type': 'splanchnic mesoderm'}, 'GSM2711564': {'line': 'WA09', 'passages': '52-58', 'type': 'splanchnic mesoderm'}, 'GSM2711567': {'line': 'WA09', 'passages': '52-58', 'type': 'neural progenitor cells'}, 'GSM2711566': {'line': 'WA09', 'passages': '52-58', 'type': 'neural progenitor cells'}, 'GSM2711561': {'line': 'WA09', 'passages': '52-58', 'type': 'human embryonic stem cells'}, 'GSM1836576': {'expression_construct': 'TOE1F148Y/F148Y', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U2'}, 'GSM2711563': {'line': 'WA09', 'passages': '52-58', 'type': 'definitive endoderm'}, 'GSM2711562': {'line': 'WA09', 'passages': '52-58', 'type': 'definitive endoderm'}, 'GSM2141337': {'individual': 'EU30', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1836579': {'expression_construct': 'TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U5'}, 'GSM1836578': {'expression_construct': 'TOE1WT/A103T', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'Primary Fibroblast', 'target_gene': 'U2'}, 'GSM2711569': {'line': 'WA09', 'passages': '52-58', 'type': 'pre-neural crest cells'}, 'GSM2711568': {'line': 'WA09', 'passages': '52-58', 'type': 'pre-neural crest cells'}, 'GSM2141336': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1598129': {'tissue': 'Anterior cruciate liagment'}, 'GSM1598128': {'tissue': 'Anterior cruciate liagment'}, 'GSM2141335': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1715519': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM1715518': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM2141334': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1598127': {'tissue': 'Anterior cruciate liagment'}, 'GSM2417221': {'phenotype': 'neutralizer controllers'}, 'GSM2348480': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348481': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348482': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348483': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348484': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348485': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348486': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348487': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348488': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1859759': {'line': 'Jurkat', 'treatment': 'None'}, 'GSM3417898': {'protocol': '10%FBS/DMEM', 'number': 'N/A', 'infection': 'N/A', 'passage': '10-15', 'strain': 'mock', 'treatment': 'N/A', 'time': '48', 'type': 'MRC5'}, 'GSM3195641': {'status': 'day 5', 'line': 'HUES9', 'Sex': 'female', 'passage': 'p39'}, 'GSM3195640': {'status': 'day 0', 'line': 'HUES9', 'Sex': 'female', 'passage': 'p39'}, 'GSM3417897': {'strain': 'CMV/AD169', 'time': '48', 'type': 'MRC5', 'number': 'FJ527563', 'passage': '10-15'}, 'GSM3417896': {'strain': 'CMV/AD169', 'time': '48', 'type': 'MRC5', 'number': 'FJ527563', 'passage': '10-15'}, 'GSM3417895': {'strain': 'CMV/AD169', 'time': '48', 'type': 'MRC5', 'number': 'FJ527563', 'passage': '10-15'}, 'GSM3417894': {'strain': 'mock', 'time': '48', 'type': 'MRC5', 'number': 'N/A', 'passage': '10-15'}, 'GSM3417893': {'strain': 'mock', 'time': '48', 'type': 'MRC5', 'number': 'N/A', 'passage': '10-15'}, 'GSM3417892': {'strain': 'mock', 'time': '48', 'type': 'MRC5', 'number': 'N/A', 'passage': '10-15'}, 'GSM2287795': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287790': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM1844459': {'line': 'Kasumi-1', 'agent': 'DMSO', 'point': '72h'}, 'GSM1844458': {'line': 'Kasumi-1', 'agent': 'GSK690_1uM', 'point': '72h'}, 'GSM1131553': {'info': 'PMID:18430891', 'antibody': 'anti-human Ago2 (11A9) antibody', 'line': 'BJAB', 'type': \"EBV-negative Burkitt's lymphoma cells\", 'barts': 'no (empty retroviral vector)'}, 'GSM1131552': {'Sex': 'Male', 'location': 'Ascending colon', 'disease': 'normal colon (patient with no polyps)'}, 'GSM1131551': {'Sex': 'Male', 'location': 'Ascending colon', 'disease': 'normal colon (patient with no polyps)'}, 'GSM1131550': {'Sex': 'Female', 'location': 'Ascending colon', 'disease': 'patient matched uninvolved colon'}, 'GSM1131554': {'info': 'PMID:18430891', 'antibody': 'anti-human Ago2 (11A9) antibody', 'line': 'BJAB', 'type': \"EBV-negative Burkitt's lymphoma cells\", 'barts': \"yes (expressing EBV's BART miRNAs)\"}, 'GSM3397819': {'status': 'ectopic expression', 'type': 'Cancer cells'}, 'GSM2142399': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM3711317': {'mediancvcoverage': '0.699631', 'percentaligned': '0.9569457', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '8'}, 'GSM3711316': {'mediancvcoverage': '0.619855', 'percentaligned': '0.963094233', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '11'}, 'GSM3711315': {'mediancvcoverage': '0.758372', 'percentaligned': '0.957181313', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '11'}, 'GSM3711314': {'mediancvcoverage': '0.634665', 'percentaligned': '0.952675588', 'visit': 'Visit 2a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '14'}, 'GSM3711313': {'mediancvcoverage': '0.587784', 'percentaligned': '0.961442757', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '14'}, 'GSM3711312': {'mediancvcoverage': '0.640345', 'percentaligned': '0.957149922', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM3711311': {'mediancvcoverage': '0.614134', 'percentaligned': '0.950276266', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM3711310': {'mediancvcoverage': '0.858353', 'percentaligned': '0.891528832', 'visit': 'Visit 1b', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '8'}, 'GSM1319852': {'type': 'in vitro differentiated erythroid cells', 'composition': 'including basophilic and polychromatic erythroblast cells', 'day': 'D11'}, 'GSM1319853': {'type': 'in vitro differentiated erythroid cells', 'composition': 'orthochromatic erythrolast and 30% reticulocyte', 'day': 'D14'}, 'GSM1319850': {'type': 'in vitro differentiated erythroid cells', 'composition': 'immature erythroid cells', 'day': 'D4'}, 'GSM1319851': {'type': 'in vitro differentiated erythroid cells', 'composition': 'majority in proerythroblast stage', 'day': 'D8'}, 'GSM3711319': {'mediancvcoverage': '0.740781', 'percentaligned': '0.961426563', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '8'}, 'GSM3711318': {'mediancvcoverage': '0.824741', 'percentaligned': '0.950921856', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB5HFANXX', 'years': '8'}, 'GSM1331317': {'with': 'osteopontin-c', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM1331316': {'with': 'osteopontin-c', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM1331310': {'with': 'vector control', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM2374281': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374280': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374283': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374282': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374285': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374284': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374287': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374286': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374289': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374288': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2509520': {'source': 'mammary gland/breast', 'line': 'MDA-MB-468', 'with': 'DMSO for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509521': {'source': 'mammary gland/breast', 'line': 'MDA-MB-468', 'with': 'Thalidomide (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509526': {'source': 'mammary gland/breast', 'line': 'MDA-MB-468', 'with': 'BETd-246 (100 nmol/L) for 3 hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509527': {'source': 'mammary gland/breast', 'line': 'MDA-MB-157', 'with': 'DMSO for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509524': {'source': 'mammary gland/breast', 'line': 'MDA-MB-468', 'with': 'BETi-211 (1000 nmol/L) for 3hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM2509525': {'source': 'mammary gland/breast', 'line': 'MDA-MB-468', 'with': 'BETd-246 (100 nmol/L) for 3 hr', 'background': 'ERα-negative, PR-negative and absence of HER2 overexpression', 'subtype': 'basal'}, 'GSM1695259': {'perfusion': 'yes', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'no'}, 'GSM1695258': {'perfusion': 'yes', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'no'}, 'GSM1695257': {'perfusion': 'yes', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'no'}, 'GSM1695256': {'perfusion': 'no', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'no'}, 'GSM1695255': {'perfusion': 'no', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'no'}, 'GSM1695254': {'perfusion': 'no', 'age': '16 years-old', 'gender': 'male', 'type': 'chondrocyte', 'pressure': 'no'}, 'GSM1425768': {'grade': 'Sarcomatoid', 'pretreatment': 'Sutent', 'type': 'S', 'Stage': 'IV'}, 'GSM2192649': {'type': 'Human mammary epithelial cells'}, 'GSM2192648': {'type': 'Human mammary epithelial cells'}, 'GSM2287392': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287393': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287390': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287391': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287396': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287397': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287394': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287395': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287398': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287399': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2303535': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2535697': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1165', 'samplename': '1gr_413CD3_C39', 'seqsite': 'BRI', 'sampleID': 'S13292', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1165', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C39'}, 'GSM2303537': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACCR015A'}, 'GSM2303536': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303531': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303530': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCR015A'}, 'GSM2303533': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2535696': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1164', 'samplename': '1gr_413CD3_C33', 'seqsite': 'BRI', 'sampleID': 'S13291', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1164', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C33'}, 'GSM2303539': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2535695': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1163', 'samplename': '1gr_413CD3_C27', 'seqsite': 'BRI', 'sampleID': 'S13290', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1163', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C27'}, 'GSM2535694': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1162', 'samplename': '1gr_413CD3_C01', 'seqsite': 'BRI', 'sampleID': 'S13289', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1162', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C01'}, 'GSM2535693': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1161', 'samplename': '1gr_413CD3_C44', 'seqsite': 'BRI', 'sampleID': 'S13288', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1161', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C44'}, 'GSM2535692': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1160', 'samplename': '1gr_413CD3_C32', 'seqsite': 'BRI', 'sampleID': 'S13287', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1160', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C32'}, 'GSM1545077': {'type': 'gastric cancer tumor', 'class': 'IIA', 'location': 'Distal'}, 'GSM2535691': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1159', 'samplename': '1gr_413CD3_C08', 'seqsite': 'BRI', 'sampleID': 'S13286', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1159', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C08'}, 'GSM2862919': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862918': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862917': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862916': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862915': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2816180': {'line': 'H9'}, 'GSM2862913': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862912': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862911': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862910': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM953382': {'type': 'H1-NSC'}, 'GSM953383': {'type': 'foreskin fibroblast iPSC'}, 'GSM953381': {'type': 'H1-hESC'}, 'GSM953386': {'state': 'Healthy non-atopic control', 'tissue': 'tissue from airway wall'}, 'GSM953384': {'type': 'lung fibroblast iPSC'}, 'GSM953385': {'state': 'Atopic asthma', 'tissue': 'tissue from airway wall'}, 'GSM1545073': {'type': 'gastric cancer tumor', 'class': 'IB', 'location': 'Distal'}, 'GSM1545072': {'type': 'gastric cancer tumor', 'class': 'IIA', 'location': 'Distal'}, 'GSM1053752': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DTF(3SEQ) signature'}, 'GSM1053753': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DTF(3SEQ) signature'}, 'GSM1053750': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DTF(3SEQ) signature'}, 'GSM1053751': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DTF(3SEQ) signature'}, 'GSM1053756': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'SFT signature'}, 'GSM1053757': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'SFT signature'}, 'GSM1053754': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'DTF(3SEQ) signature'}, 'GSM1053755': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'SFT signature'}, 'GSM1053758': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'SFT signature'}, 'GSM1053759': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'SFT signature'}, 'GSM1617952': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '60', 'Sex': 'M'}, 'GSM1617953': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '76', 'Sex': 'M'}, 'GSM1617951': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '59', 'Sex': 'M'}, 'GSM1617956': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '59', 'Sex': 'F'}, 'GSM1617957': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '74', 'Sex': 'M'}, 'GSM1617954': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '70', 'Sex': 'F'}, 'GSM1617955': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '61', 'Sex': 'M'}, 'GSM1617958': {'percentage': '100', 'tissue': 'heart; right atrial appendage', 'age': '63', 'Sex': 'M'}, 'GSM1617959': {'percentage': '40', 'tissue': 'heart; right atrial appendage', 'age': '68', 'Sex': 'F'}, 'GSM1298250': {'type': 'CD34+ cells', 'treatment': 'ERG overexpression'}, 'GSM1299121': {'line': 'IMR-32', 'linker': '25nt: begins with GATC, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'non-stressed'}, 'GSM1299120': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1299123': {'line': 'IMR-32', 'linker': '7nt: begins with AC, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'non-stressed'}, 'GSM1299122': {'line': 'IMR-32', 'linker': '7nt: begins with GA, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'non-stressed'}, 'GSM1299125': {'line': 'IMR-32', 'linker': '25nt: begins with GCAT, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'UV stressed: 0.2mJ/cm2'}, 'GSM1299124': {'line': 'IMR-32', 'linker': '25nt: begins with CGTA, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'UV stressed: 0.2mJ/cm2'}, 'GSM1299127': {'line': 'IMR-32', 'linker': '25nt: begins with GTGC, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'UV stressed: 0.5mJ/cm2'}, 'GSM1299126': {'line': 'IMR-32', 'linker': '25nt: begins with TCAC, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'UV stressed: 0.2mJ/cm2'}, 'GSM1299129': {'line': 'IMR-32', 'linker': '25nt: begins with AGTG, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'UV stressed: 0.5mJ/cm2'}, 'GSM1299128': {'line': 'IMR-32', 'linker': '25nt: begins with CATG, ends with G', 'type': 'neuroblastoma cells', 'treatment': 'UV stressed: 0.5mJ/cm2'}, 'GSM1197622': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 0h'}, 'GSM1691204': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1691205': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1691206': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1691207': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1691200': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1691201': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM1691202': {'treatment': 'untreated', 'lline': 'MM1.S'}, 'GSM1691203': {'treatment': '0.5 nM bortezomib', 'lline': 'MM1.S'}, 'GSM2687242': {'cells': 'SK-N-AS', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM1827544': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0', 'quality': '1'}, 'GSM1827545': {'cinsarc': 'C1', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.388774811772758', 'quality': '4'}, 'GSM1827546': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.588637919233402', 'quality': '3'}, 'GSM2026222': {'m': 'express hnRNP M but not Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM1827540': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.26009582477755', 'quality': '4'}, 'GSM1827541': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.736481861738535', 'quality': '2'}, 'GSM1827542': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.317590691307324', 'quality': '1'}, 'GSM1827543': {'cinsarc': 'C1', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.361396303901437', 'quality': '4'}, 'GSM2026229': {'m': 'do not express hnRNP M and Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM2026228': {'m': 'do not express hnRNP M and Rbfox1', 'type': 'Human embryonic kidney'}, 'GSM3124790': {'individual': 'mi548', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM2348819': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348818': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348813': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348812': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348811': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348810': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348817': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348816': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348815': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348814': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1980351': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980350': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980353': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980352': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980355': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980354': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980357': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980356': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980359': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980358': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2416848': {'antibody': 'None', 'line': 'HeLa', 'type': 'nascent RNA labeled with 4sU 2hr ribo- RNA', 'treatment': '6hr poly (I:C) 3 hr DRB 2hr 4sU-labeling', 'sequence': 'None'}, 'GSM2416849': {'antibody': 'None', 'line': 'HeLa', 'type': 'nascent RNA labeled with 4sU 2hr ribo- RNA', 'treatment': '3 hr DRB 2hr 4sU-labeling', 'sequence': 'None'}, 'GSM1113359': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 3 post-vaccine'}, 'GSM1113358': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 2 post-vaccine'}, 'GSM1113355': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 10 post-vaccine'}, 'GSM1113354': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 9 post-vaccine'}, 'GSM2385661': {'line': 'NHA', 'type': 'glioblastoma stem cell'}, 'GSM1113356': {'type': 'circulating B cells', 'id': 'T16', 'point': 'Day 0 (pre-vaccine)'}, 'GSM1113351': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 6 post-vaccine'}, 'GSM1113350': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 5 post-vaccine'}, 'GSM1113353': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 8 post-vaccine'}, 'GSM1113352': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 7 post-vaccine'}, 'GSM2027258': {'line': 'MCF7', 'treatment': 'Control without E2 treatment'}, 'GSM2711150': {'line': 'HCT116 (ATCC)', 'treatment': 'pre-treated with 0.1% DMSO (vehicle control) for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM1868860': {'tissue': 'Sphenoid sinus mucosa', 'diagnosis': 'Normal control'}, 'GSM1868861': {'tissue': 'Sphenoid sinus mucosa', 'diagnosis': 'Normal control'}, 'GSM2711151': {'line': 'HCT116 (ATCC)', 'treatment': 'pre-treated with 1uM Senexin B for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2535960': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6762', 'samplename': '1*_Ctl_RO+_C36', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30125', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6762', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C36'}, 'GSM2739440': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739441': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739442': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739443': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739444': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739445': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739446': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739447': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739448': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739449': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2535966': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6771', 'samplename': '1_Ctl_RO+_C88', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30134', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6771', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C88'}, 'GSM2038174': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM2153219': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153218': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153217': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153216': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153215': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153214': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153213': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153212': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153211': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153210': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM981248': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID45635,LID45613', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '046N,045N', 'spikeinpool': 'Nist14'}, 'GSM1376011': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2154970': {'type': 'induced pluripotent stem cells', 'variation': 'PAPD5 KD'}, 'GSM2828583': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2692', 'type': 'CD8 T cells'}, 'GSM981243': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID45238,LID45239', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '045WC,046WC', 'spikeinpool': 'Nist14'}, 'GSM981244': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID45611,LID45612', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '045C,046C', 'spikeinpool': 'Nist14'}, 'GSM1376013': {'state': 'Normal', 'tissue': 'lung'}, 'GSM981246': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID45897,LID45898', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '087C,088C', 'spikeinpool': 'Nist14'}, 'GSM981247': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID45899,LID45900', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '087N,088N', 'spikeinpool': 'Nist14'}, 'GSM2828581': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3053', 'type': 'CD8 T cells'}, 'GSM2828586': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3031', 'type': 'CD8 T cells'}, 'GSM2828587': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3037', 'type': 'CD8 T cells'}, 'GSM2828584': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3027', 'type': 'CD8 T cells'}, 'GSM2828585': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3028', 'type': 'CD8 T cells'}, 'GSM2153371': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2916069': {'line': 'HEK293', 'medium': 'Zn(II) Depleted Freestyle Medium repleted with Zn(II)'}, 'GSM2153377': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2038175': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM2361306': {'sum': 'not applicable', 'tissue': 'adenomatous prostate tissue', 'score': 'not applicable', 'diagnosis': 'benign prostatic hyperplasia', 'invasion': 'no', 'operation': '67', 'identifier': 'B1', 'population': 'Russian'}, 'GSM2151563': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2361307': {'sum': 'not applicable', 'tissue': 'normal prostate tissue', 'score': 'not applicable', 'diagnosis': 'benign prostatic hyperplasia', 'invasion': 'no', 'operation': '67', 'identifier': 'B1', 'population': 'Russian'}, 'GSM2151562': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2916068': {'line': 'HEK293', 'medium': 'Zn(II) Depleted Freestyle Medium'}, 'GSM2323825': {'line': 'D407', 'type': 'Human RPE cells', 'agent': 'clusterin'}, 'GSM2323826': {'line': 'D407', 'type': 'Human RPE cells', 'agent': 'control'}, 'GSM2151569': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2177848': {'status': 'Hepatoblastoma', 'Sex': 'Missing', 'type': 'Background', 'years': 'Missing'}, 'GSM2361305': {'sum': '6', 'tissue': 'normal prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '67', 'identifier': 'C15', 'population': 'Russian'}, 'GSM2310213': {'gender': 'Male', 'age': '25', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2410139': {'line': 'pre-B ALL xenograft', 'treatment': 'IK1', 'variation': 'Ik6,BCR-ABL', 'time': '12 hour'}, 'GSM2109306': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109307': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109304': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109305': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2806582': {'line': 'A549', 'replicate': '2', 'treatment': '11 hr'}, 'GSM2109303': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2806580': {'line': 'A549', 'replicate': '2', 'treatment': '9 hr'}, 'GSM2806581': {'line': 'A549', 'replicate': '1', 'treatment': '11 hr'}, 'GSM2109308': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2109309': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM1946285': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19257', 'for': '60min'}, 'GSM1946284': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19257', 'for': '60min'}, 'GSM1957308': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2410137': {'line': 'pre-B ALL xenograft', 'treatment': 'IK1', 'variation': 'Ik6,BCR-ABL', 'time': 'uninduced'}, 'GSM1946281': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19257', 'for': '30min'}, 'GSM1946280': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19257', 'for': '30min'}, 'GSM1295109': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '24 hours'}, 'GSM1295108': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '8 hours'}, 'GSM1295107': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '8 hours'}, 'GSM1295106': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '8 hours'}, 'GSM1295105': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '0 hours'}, 'GSM1957301': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1295103': {'type': 'human pulmonary microvascular endothelial cells', 'exposure': '0 hours'}, 'GSM1295102': {'strain': 'Hs68', 'tissue': 'normal foreskin'}, 'GSM1957304': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957305': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM2011218': {'individual': 'nonsmoker', 'type': 'primary BC', 'passage': 'P0'}, 'GSM2011219': {'individual': 'nonsmoker', 'type': 'primary BC', 'passage': 'P0'}, 'GSM2361303': {'sum': '7', 'tissue': 'normal prostate tissue', 'score': '4', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '50', 'identifier': 'C14', 'population': 'Russian'}, 'GSM2011216': {'individual': 'nonsmoker', 'type': 'primary BC', 'passage': 'P0'}, 'GSM2011217': {'individual': 'nonsmoker', 'type': 'primary BC', 'passage': 'P0'}, 'GSM2011215': {'individual': 'nonsmoker', 'type': 'primary BC', 'passage': 'P0'}, 'GSM2081469': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM634759': {'strain': 'HES2'}, 'GSM634758': {'strain': 'HES2'}, 'GSM634753': {'strain': 'HES2'}, 'GSM634752': {'strain': 'HES2'}, 'GSM634751': {'strain': 'HES2'}, 'GSM634750': {'strain': 'HES2'}, 'GSM634757': {'strain': 'HES2'}, 'GSM634756': {'strain': 'HES2'}, 'GSM634755': {'strain': 'HES2'}, 'GSM634754': {'strain': 'HES2'}, 'GSM2361300': {'sum': '7', 'tissue': 'tumorous prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '73', 'identifier': 'C13', 'population': 'Russian'}, 'GSM2204371': {'type': 'Large airway luminal cells', 'tissue': 'lung', 'patient': '3'}, 'GSM2204370': {'type': 'Large airway luminal cells', 'tissue': 'lung', 'patient': '2'}, 'GSM2204373': {'type': 'Small airway alveolar type 2 cells', 'tissue': 'lung', 'patient': '2'}, 'GSM2204372': {'type': 'Small airway alveolar type 2 cells', 'tissue': 'lung', 'patient': '1'}, 'GSM2204375': {'type': 'Small airway luminal cells', 'tissue': 'lung', 'patient': '1'}, 'GSM2204374': {'type': 'Small airway alveolar type 2 cells', 'tissue': 'lung', 'patient': '3'}, 'GSM2204377': {'type': 'Small airway luminal cells', 'tissue': 'lung', 'patient': '3'}, 'GSM2204376': {'type': 'Small airway luminal cells', 'tissue': 'lung', 'patient': '2'}, 'GSM2204379': {'type': 'Small airway P9', 'tissue': 'lung', 'patient': '2'}, 'GSM2204378': {'type': 'Small airway P9', 'tissue': 'lung', 'patient': '1'}, 'GSM2361301': {'sum': '7', 'tissue': 'normal prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '73', 'identifier': 'C13', 'population': 'Russian'}, 'GSM1371581': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'organoid'}, 'GSM2720345': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2464394': {'line': 'NB4', 'expression': 'SMARCD2 k/d', 'Stage': 'differentiated'}, 'GSM2464393': {'line': 'NB4', 'expression': 'SMARCD2 k/d', 'Stage': 'differentiated'}, 'GSM2464392': {'line': 'NB4', 'expression': 'Control', 'Stage': 'differentiated'}, 'GSM2464391': {'line': 'NB4', 'expression': 'SMARCD2 k/d', 'Stage': 'undifferentiated'}, 'GSM2464390': {'line': 'NB4', 'expression': 'SMARCD2 k/d', 'Stage': 'undifferentiated'}, 'GSM2720347': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2720346': {'antibody': 'IgG', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM1539045': {'donor': 'GDB-Cf', 'in': 'ERCC ExFold mix 2', 'type': 'stranded 51bp PE reads', 'genotype': '7dupASD', 'gender': 'male'}, 'GSM1539044': {'donor': 'Bu1', 'in': 'ERCC ExFold mix 1', 'type': 'stranded 51bp PE reads', 'genotype': 'Control', 'gender': 'male'}, 'GSM1539047': {'donor': 'GDB-242', 'in': 'ERCC ExFold mix 2', 'type': 'stranded 51bp PE reads', 'genotype': '7dupASD', 'gender': 'female'}, 'GSM1539046': {'donor': 'GDB-192', 'in': 'ERCC ExFold mix 2', 'type': 'stranded 51bp PE reads', 'genotype': 'AtWBS', 'gender': 'female'}, 'GSM1539041': {'genotype': 'Control', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-339-1', 'type': 'stranded 51bp PE reads'}, 'GSM1539040': {'genotype': 'AtWBS', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-192', 'type': 'stranded 51bp PE reads'}, 'GSM1576442': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human PBMC', 'time': '7 d'}, 'GSM1539042': {'genotype': 'Control', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 1', 'donor': 'GDB-339-1', 'type': 'stranded 51bp PE reads'}, 'GSM1539049': {'donor': 'GDB-316', 'in': 'ERCC ExFold mix 2', 'type': 'stranded 51bp PE reads', 'genotype': 'WBS', 'gender': 'female'}, 'GSM1539048': {'donor': 'GDB-306', 'in': 'ERCC ExFold mix 2', 'type': 'stranded 51bp PE reads', 'genotype': 'WBS', 'gender': 'male'}, 'GSM2774114': {'status': 'Add-back in null cells', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 25 ng/mL doxycycline'}, 'GSM2774117': {'status': 'Add-back in null cells', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 25 ng/mL doxycycline'}, 'GSM2644570': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-ERalpha (Santa Cruz, HC-20)'}, 'GSM2774110': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax'}, 'GSM2774112': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax'}, 'GSM2644577': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-FOXA1 (abcam, ab5089)'}, 'GSM2177846': {'status': 'Hepatoblastoma', 'Sex': 'Missing', 'type': 'Background', 'years': 'Missing'}, 'GSM2774119': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 4 μM GSK343'}, 'GSM2644576': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-FOXA1 (abcam, ab5089)'}, 'GSM2644575': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-FOXA1 (abcam, ab5089)'}, 'GSM2644574': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-GATA3 (Cell Signaling, D13C9)'}, 'GSM1687386': {'line': 'IMR-90', 'type': 'Female human lung fibroblasts', 'modifications': 'none'}, 'GSM1687387': {'line': 'IMR-90', 'type': 'Female human lung fibroblasts', 'modifications': 'none'}, 'GSM1687384': {'line': 'IMR-90', 'type': 'Female human lung fibroblasts', 'modifications': 'none'}, 'GSM1687385': {'line': 'IMR-90', 'type': 'Female human lung fibroblasts', 'modifications': 'none'}, 'GSM1234173': {'replicate': '1', 'line': '2588', 'antibody': 'H3K4me3'}, 'GSM1234172': {'replicate': '2', 'line': '2588', 'antibody': 'H3K4me1'}, 'GSM1234171': {'replicate': '1', 'line': '2588', 'antibody': 'H3K4me1'}, 'GSM1234170': {'replicate': '2', 'line': '2588', 'antibody': 'H3K36me3'}, 'GSM1234177': {'replicate': '2', 'line': '2588', 'antibody': 'RNA-seq'}, 'GSM1234176': {'replicate': '1', 'line': '2588', 'antibody': 'RNA-seq'}, 'GSM1687388': {'line': 'HEK293T', 'type': 'Epithelial fetal human kidney cells', 'modifications': 'Contains SV40 T-antigen'}, 'GSM1687389': {'line': 'HEK293T', 'type': 'Epithelial fetal human kidney cells', 'modifications': 'Contains SV40 T-antigen'}, 'GSM741170': {'knockdown': 'mock', 'line': 'HeLa', 'transfection': '120h'}, 'GSM741171': {'knockdown': 'ELAVL1/HuR siRNA1 (see Lebedeva et. Al 2011)', 'line': 'HeLa', 'transfection': '48h'}, 'GSM741172': {'knockdown': 'ELAVL1/HuR siRNA1 (see Lebedeva et. Al 2011)', 'line': 'HeLa', 'transfection': '120h'}, 'GSM741173': {'line': 'HeLa', 'medium': 'DMEM', 'antibody': '3A2', 'manufacturer': 'Santa Cruz'}, 'GSM741174': {'line': 'HeLa', 'medium': 'SILAC', 'antibody': '3A2', 'manufacturer': 'Santa Cruz'}, 'GSM741175': {'line': 'HeLa', 'medium': 'SILAC', 'antibody': '3A2', 'manufacturer': 'Santa Cruz'}, 'GSM2754647': {'bin': '5', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754646': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754645': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': '12', 'type': 'Tcells'}, 'GSM2754644': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754643': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_0779', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754642': {'bin': '5', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '04_0779', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754641': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_1003', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754640': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_1003', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM785395': {'type': 'transitional', 'normal': 'cancer'}, 'GSM2754649': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0843', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754648': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0843', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2626942': {'origin': 'pancreas', 'patient_id': '129', 'type': 'primary', 'tumor_id': '103'}, 'GSM2626943': {'origin': 'pancreas', 'patient_id': '130', 'type': 'primary', 'tumor_id': '104'}, 'GSM2626940': {'origin': 'pancreas', 'patient_id': '127', 'type': 'primary', 'tumor_id': '101'}, 'GSM2626941': {'origin': 'pancreas', 'patient_id': '128', 'type': 'primary', 'tumor_id': '102'}, 'GSM2626946': {'origin': 'pancreas', 'patient_id': '137', 'type': 'primary', 'tumor_id': '111'}, 'GSM2626947': {'origin': 'pancreas', 'patient_id': '139', 'type': 'primary', 'tumor_id': '113'}, 'GSM2626944': {'origin': 'pancreas', 'patient_id': '131', 'type': 'primary', 'tumor_id': '105'}, 'GSM2626945': {'origin': 'pancreas', 'patient_id': '11', 'type': 'primary', 'tumor_id': '11'}, 'GSM2626948': {'origin': 'pancreas', 'patient_id': '141', 'type': 'primary', 'tumor_id': '115'}, 'GSM2626949': {'origin': 'pancreas', 'patient_id': '142', 'type': 'primary', 'tumor_id': '116'}, 'GSM3586557': {'origin': 'UNCLASSIFIED', 'pfstt': '1026', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1271', 'cycles': '8', 'oscs': '0'}, 'GSM2627017': {'origin': 'pancreas', 'patient_id': '53', 'type': 'primary', 'tumor_id': 'YC94'}, 'GSM1953974': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM2627015': {'origin': 'pancreas', 'patient_id': '51', 'type': 'primary', 'tumor_id': 'YC91'}, 'GSM1953976': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM1953971': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM2627012': {'origin': 'pancreas', 'patient_id': '49', 'type': 'primary', 'tumor_id': 'YC84'}, 'GSM1953973': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM1953972': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM1395881': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1953979': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM1953978': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM2627019': {'origin': 'pancreas', 'patient_id': '168', 'type': 'primary', 'tumor_id': 'YC97'}, 'GSM2627018': {'origin': 'pancreas', 'patient_id': '167', 'type': 'primary', 'tumor_id': 'YC96'}, 'GSM1881571': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881570': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881573': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881572': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM2158249': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2158248': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2537176': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2537177': {'line': 'A549', 'type': 'lung epithelial cells'}, 'GSM2158245': {'gender': 'M', 'age': '29', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2158244': {'gender': 'M', 'age': '29', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2158247': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2158246': {'gender': 'M', 'age': '60', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2158241': {'gender': 'M', 'age': '29', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2158240': {'gender': 'M', 'age': '29', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2158243': {'gender': 'M', 'age': '29', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2158242': {'gender': 'M', 'age': '29', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM1863711': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863710': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863713': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863712': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863715': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863714': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863717': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863716': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863719': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863718': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM644991': {'vendor': 'Abcam', 'antibody': 'anti-H3K36me3', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells', 'number': 'ab9050'}, 'GSM2672103': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672102': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2325894': {'type': 'Human embryonic stem cell'}, 'GSM2325895': {'type': 'Human embryonic stem cell'}, 'GSM2672107': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672106': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2325890': {'type': 'Human embryonic stem cell'}, 'GSM2672104': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672109': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672108': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM1395359': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '12hr'}, 'GSM1395358': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '8hr'}, 'GSM2325898': {'type': 'Human embryonic stem cell'}, 'GSM2325899': {'type': 'Human embryonic stem cell'}, 'GSM2330182': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'D155', 'group': 'Allergen-specific immunotherapy'}, 'GSM2330180': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'D106', 'group': 'Allergen-specific immunotherapy'}, 'GSM2330181': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'D130', 'group': 'Allergen-specific immunotherapy'}, 'GSM2330187': {'line': 'HCT116', 'type': 'Cell line'}, 'GSM2330188': {'line': 'HCT116', 'type': 'Cell line'}, 'GSM2053438': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '61', 'infection': 'No', 'cirrhosis': 'No', 'tissue': 'adjacent normal', 'id': '#8'}, 'GSM2053439': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '66', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#10'}, 'GSM2053435': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '46', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#3'}, 'GSM2053436': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '35', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#6'}, 'GSM2053437': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '42', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#7'}, 'GSM1807977': {'tissue': 'Liver'}, 'GSM1807976': {'tissue': 'Liver'}, 'GSM1807975': {'tissue': 'Liver'}, 'GSM1807974': {'tissue': 'Liver'}, 'GSM1807973': {'tissue': 'Liver'}, 'GSM1807979': {'tissue': 'Liver'}, 'GSM1807978': {'tissue': 'Liver'}, 'GSM1577758': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM2069839': {'status': 'Dead', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'N', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'Left Flank, SC', 'treatment': 'Pembrolizumab', 'id': 'Pt22', 'braf': 'V600E'}, 'GSM2443094': {'treatment': 'estrogen', 'xenograft': 'UCD4'}, 'GSM644995': {'vendor': 'Millipore', 'antibody': 'anti-H3ac', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells', 'number': '06-599'}, 'GSM867888': {'status': 'UPF2 Patient', 'line': 'B-LCL'}, 'GSM867887': {'status': 'UPF2 Patient', 'line': 'B-LCL'}, 'GSM2536009': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8452', 'samplename': '1*_T1D#5_C45', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31772', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8452', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C45'}, 'GSM2971194': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE445'}, 'GSM2971195': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE451'}, 'GSM2971196': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE451'}, 'GSM2971190': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE424'}, 'GSM2971191': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE434'}, 'GSM2971192': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE434'}, 'GSM2971193': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE445'}, 'GSM2046878': {'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2511611': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511610': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511613': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511612': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511615': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511614': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511617': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511616': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511619': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2511618': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'UC inactive'}, 'GSM2275089': {'area_under_the_curve': '0.213857031', 'siteandparticipantcode': '325907', 'baseline_area_under_the_curve': '0.71496', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '29.91174769', 'auc_percent_of_baseline': '29.91174769', 'trunkbarcode': '928940', 'sampleID': 'S12626', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1506', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_325907', 'gender': 'Male', 'age': '16', 'race': 'White', 'libraryid': 'lib1506', 'studysiteshort': 'COLORADO'}, 'GSM2275088': {'area_under_the_curve': '0.836447344', 'siteandparticipantcode': '156104', 'baseline_area_under_the_curve': '0.917645781', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '91.15144001', 'auc_percent_of_baseline': '91.15144001', 'trunkbarcode': '926906', 'sampleID': 'S12625', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1505', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'Control', 'name': 'AbATE_156104', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1505', 'studysiteshort': 'COLORADO'}, 'GSM2275083': {'area_under_the_curve': '0.483363438', 'siteandparticipantcode': '692210', 'baseline_area_under_the_curve': '0.756541875', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '63.89116762', 'auc_percent_of_baseline': '63.89116762', 'trunkbarcode': '940882', 'sampleID': 'S12620', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1500', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'Control', 'name': 'AbATE_692210', 'gender': 'Female', 'age': '15', 'race': 'White; Asian', 'libraryid': 'lib1500', 'studysiteshort': 'UCSF'}, 'GSM2275082': {'area_under_the_curve': '0.995741094', 'siteandparticipantcode': '676063', 'baseline_area_under_the_curve': '0.553752656', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '179.8169422', 'auc_percent_of_baseline': '179.8169422', 'trunkbarcode': '905627', 'sampleID': 'S12619', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1499', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_676063', 'gender': 'Female', 'age': '14', 'race': 'White', 'libraryid': 'lib1499', 'studysiteshort': 'UCSF'}, 'GSM2275081': {'area_under_the_curve': '1.075025938', 'siteandparticipantcode': '464149', 'baseline_area_under_the_curve': '0.953871071', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '112.701388', 'auc_percent_of_baseline': '112.701388', 'trunkbarcode': '905625', 'sampleID': 'S12618', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1498', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_464149', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib1498', 'studysiteshort': 'UCSF'}, 'GSM2275080': {'area_under_the_curve': '0.177705625', 'siteandparticipantcode': '479125', 'baseline_area_under_the_curve': '0.505240469', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '35.17248439', 'auc_percent_of_baseline': '35.17248439', 'trunkbarcode': '905621', 'sampleID': 'S12617', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1497', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'Control', 'name': 'AbATE_479125', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1497', 'studysiteshort': 'UCSF'}, 'GSM2275087': {'area_under_the_curve': '1.101609375', 'siteandparticipantcode': '707556', 'baseline_area_under_the_curve': '1.185445469', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '92.92788273', 'auc_percent_of_baseline': '92.92788273', 'trunkbarcode': '905634', 'sampleID': 'S12624', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1504', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'Control', 'name': 'AbATE_707556', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1504', 'studysiteshort': 'COLORADO'}, 'GSM2275086': {'area_under_the_curve': '0.719304375', 'siteandparticipantcode': '445249', 'baseline_area_under_the_curve': '0.970502344', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '74.11670664', 'auc_percent_of_baseline': '74.11670664', 'trunkbarcode': '905633', 'sampleID': 'S12623', 'flowcellid': 'D26PLACXX', 'status': 'C', 'samplelabel': 'lib1503', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'Control', 'name': 'AbATE_445249', 'gender': 'Male', 'age': '13', 'race': 'White', 'libraryid': 'lib1503', 'studysiteshort': 'COLORADO'}, 'GSM2275085': {'area_under_the_curve': '0.805209219', 'siteandparticipantcode': '443762', 'baseline_area_under_the_curve': '1.024910469', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '78.56385931', 'auc_percent_of_baseline': '78.56385931', 'trunkbarcode': '917967', 'sampleID': 'S12622', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1502', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_443762', 'gender': 'Male', 'age': '23', 'race': 'White', 'libraryid': 'lib1502', 'studysiteshort': 'COLORADO'}, 'GSM2275084': {'area_under_the_curve': '0.487966406', 'siteandparticipantcode': '768498', 'baseline_area_under_the_curve': '0.426317656', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '114.4607546', 'auc_percent_of_baseline': '114.4607546', 'trunkbarcode': '905629', 'sampleID': 'S12621', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1501', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_768498', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib1501', 'studysiteshort': 'UCSF'}, 'GSM2184763': {'status': 'unfed', 'age': '3 month', 'diagnosis': 'focal intestinal perforation'}, 'GSM2184762': {'status': 'fed', 'age': '3 month', 'diagnosis': 'focal intestinal perforation'}, 'GSM2048599': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048598': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2184767': {'status': 'unfed', 'age': '3 month', 'diagnosis': 'necrotizing enterocolitis'}, 'GSM2184766': {'status': 'fed', 'age': '3 month', 'diagnosis': 'necrotizing enterocolitis'}, 'GSM2184765': {'status': 'unfed', 'age': '10 month', 'diagnosis': 'necrotizing enterocolitis'}, 'GSM2184764': {'status': 'fed', 'age': '10 month', 'diagnosis': 'necrotizing enterocolitis'}, 'GSM2048593': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048592': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048591': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048590': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048597': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048596': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048595': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048594': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2632385': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632384': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632387': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632386': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632381': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632380': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632383': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632382': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2944142': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'A673'}, 'GSM2195075': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2632389': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632388': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2061714': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061715': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2061716': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2125120': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-PR (inhouse KD68)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2125121': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2125122': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-PR (inhouse KD68)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2125123': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2125124': {'status': 'ER+/PRA+/PRB-', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2125125': {'status': 'ER+/PRA+/PRB-', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2125126': {'status': 'ER+/PRA+/PRB-', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2125127': {'status': 'ER+/PRA+/PRB-', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2700361': {'line': 'MDA-MB-231', 'condition': '6 mg/mL collagen matrix'}, 'GSM2414777': {'line': 'HT115', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2700363': {'line': 'MDA-MB-231', 'condition': '6 mg/mL collagen matrix'}, 'GSM2700362': {'line': 'MDA-MB-231', 'condition': '6 mg/mL collagen matrix'}, 'GSM2414772': {'line': 'HCC2998', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414773': {'line': 'HCT116', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414770': {'line': 'Gp5D', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2414771': {'line': 'HCA7', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2942660': {'bmi': '21.96321492', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942661': {'bmi': '23.74554325', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942662': {'bmi': '22.14033762', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942663': {'bmi': '26.57844991', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942664': {'bmi': '31.32100691', 'type': 'ACL injury only', 'smoker': 'Yes', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942665': {'bmi': '43.16024974', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942666': {'bmi': '24.27411265', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942667': {'bmi': '26.57844991', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942668': {'bmi': '30.55897959', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'Yes', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM1401774': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1410591': {'gene': 'SAMHD1 D137N', 'type': 'U937', 'infection': '1h'}, 'GSM1410590': {'gene': 'SAMHD1 D137N', 'type': 'U937', 'infection': '0h'}, 'GSM1410592': {'gene': 'SAMHD1 D137N', 'type': 'U937', 'infection': '3h'}, 'GSM1493345': {'experiment': 'Experiment number 8', 'type': 'Neuronal Progeny', 'genotype': 'Differentiated from FTD3#6-iPSC'}, 'GSM1493344': {'experiment': 'Experiment number 5', 'type': 'Neuronal Progeny', 'genotype': 'Differentiated from FTD3#6-PGRN'}, 'GSM2195071': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM1493341': {'experiment': 'Experiment number 1', 'type': 'Neuronal Progeny', 'genotype': 'Differentiated from H9-hESC'}, 'GSM1493340': {'experiment': 'Experiment number 10', 'type': 'Neuronal Progeny', 'genotype': 'Differentiated from FTD3#6-iPSC'}, 'GSM1493343': {'experiment': 'Experiment number 3', 'type': 'Neuronal Progeny', 'genotype': 'Differentiated from FTD3#6-PGRN'}, 'GSM1493342': {'experiment': 'Experiment number 3', 'type': 'Neuronal Progeny', 'genotype': 'Differentiated from H9-hESC'}, 'GSM2274750': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32820', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9410', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C79', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9410', 'studysiteshort': 'UCSF'}, 'GSM2274751': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32821', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9411', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C06', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9411', 'studysiteshort': 'UCSF'}, 'GSM2274752': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32822', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9412', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C12', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9412', 'studysiteshort': 'UCSF'}, 'GSM2274753': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32824', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9414', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C18', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9414', 'studysiteshort': 'UCSF'}, 'GSM2274754': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32825', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9415', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C34', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9415', 'studysiteshort': 'UCSF'}, 'GSM2274755': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32826', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9416', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C40', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9416', 'studysiteshort': 'UCSF'}, 'GSM2274756': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32827', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9417', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C11', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9417', 'studysiteshort': 'UCSF'}, 'GSM2274757': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32828', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9418', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C17', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9418', 'studysiteshort': 'UCSF'}, 'GSM2274758': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32829', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9419', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C35', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9419', 'studysiteshort': 'UCSF'}, 'GSM2274759': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32830', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9420', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C16', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9420', 'studysiteshort': 'UCSF'}, 'GSM2195070': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2277223': {'type': 'human coronary artery smooth muscle cells (HCASMC)', 'variation': 'control'}, 'GSM2277225': {'type': 'human coronary artery smooth muscle cells (HCASMC)', 'variation': 'control'}, 'GSM1980289': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2277227': {'type': 'human coronary artery smooth muscle cells (HCASMC)', 'variation': 'control'}, 'GSM2277229': {'type': 'human coronary artery smooth muscle cells (HCASMC)', 'variation': 'TCF21 overexpression'}, 'GSM2170706': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170707': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2565269': {'construction': 'PLATE-Seq', 'drug': 'Sonidegib / Erismodegib'}, 'GSM2170705': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170702': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170703': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170700': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2170701': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2565263': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine'}, 'GSM2565262': {'construction': 'PLATE-Seq', 'drug': 'Vinorelbine'}, 'GSM2565261': {'construction': 'PLATE-Seq', 'drug': 'Octreotide in Water'}, 'GSM2565260': {'construction': 'PLATE-Seq', 'drug': 'Bosutinib'}, 'GSM2553019': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'lung', 'Sex': 'female'}, 'GSM2565266': {'construction': 'PLATE-Seq', 'drug': 'Cytarabine'}, 'GSM2565265': {'construction': 'PLATE-Seq', 'drug': 'Toremifene'}, 'GSM2170709': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2667008': {'type': 'Macrophage'}, 'GSM2667009': {'type': 'Macrophage'}, 'GSM2667006': {'type': 'Macrophage'}, 'GSM2667007': {'type': 'Macrophage'}, 'GSM1965255': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965254': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965257': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965256': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965251': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965250': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965253': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965252': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2816168': {'line': 'H9'}, 'GSM2172327': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1965259': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965258': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2170773': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1473815': {'origin': 'Skin', 'with': 'Serum-starved', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into quiescence'}, 'GSM2535929': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6023', 'samplename': '1*_HealthyCtl_RO+_C78', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28982', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6023', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C78'}, 'GSM2535928': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6022', 'samplename': '1_HealthyCtl_RO+_C70', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28981', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6022', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C70'}, 'GSM1473810': {'origin': 'Skin', 'with': 'Serum-starved', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into quiescence'}, 'GSM2535925': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6019', 'samplename': '1_HealthyCtl_RO+_C22', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28978', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6019', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C22'}, 'GSM2535924': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6017', 'samplename': '1_HealthyCtl_RO+_C04', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28976', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6017', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C04'}, 'GSM2535927': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6021', 'samplename': '1_HealthyCtl_RO+_C64', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28980', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6021', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C64'}, 'GSM2535926': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6020', 'samplename': '1_HealthyCtl_RO+_C58', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28979', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6020', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C58'}, 'GSM2535921': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6013', 'samplename': '1_HealthyCtl_RO+_C12', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28972', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6013', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C12'}, 'GSM2535920': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6012', 'samplename': '1_HealthyCtl_RO+_C06', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28971', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6012', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C06'}, 'GSM2535923': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6016', 'samplename': '1_HealthyCtl_RO+_C41', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28975', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6016', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C41'}, 'GSM2535922': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6014', 'samplename': '1_HealthyCtl_RO+_C34', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28973', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6014', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C34'}, 'GSM2616413': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2616412': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616411': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616410': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616417': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616416': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM2616415': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616414': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616419': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616418': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2679534': {'line': 'HUH7', 'point': 'NoEU'}, 'GSM2679533': {'line': 'HUH7', 'point': 'NoEU'}, 'GSM2679532': {'line': 'HUH7', 'point': 'asynchronous'}, 'GSM2679531': {'line': 'HUH7', 'point': 'asynchronous'}, 'GSM2679530': {'line': 'HUH7', 'point': 'asynchronous'}, 'GSM2142633': {'gender': 'female', 'age': '70', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142632': {'gender': 'female', 'age': '72', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '3', 'tnm': '1', 'smoking': '1'}, 'GSM2142631': {'gender': 'female', 'age': '69', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142630': {'gender': 'female', 'age': '56', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2142637': {'gender': 'male', 'age': '71', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '1', 'tnm': '3', 'smoking': '1'}, 'GSM2142636': {'gender': 'male', 'age': '70', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2142635': {'gender': 'female', 'age': '75', 'who': '1', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142634': {'gender': 'male', 'age': '75', 'who': '1', 'dead': '1', 'date': '2012-11-10', 'histology': '2', 'tnm': '7', 'smoking': '1'}, 'GSM2142639': {'gender': 'male', 'age': '71', 'who': '0', 'dead': '1', 'date': '2011-05-10', 'histology': '1', 'tnm': '2', 'smoking': '2'}, 'GSM2142638': {'gender': 'female', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM1661379': {'with': 'miR-155 RNA', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661378': {'with': 'miR-155 RNA', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661377': {'with': 'miR-155 RNA', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661376': {'with': 'miR-155 RNA', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661375': {'with': 'random 23-mer', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661374': {'with': 'random 23-mer', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661373': {'with': 'random 23-mer', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661372': {'with': 'miR-155 RNA', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661371': {'with': 'miR-155 RNA', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM1661370': {'with': 'random 23-mer', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM2141584': {'individual': 'EU144', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141585': {'individual': 'EU144', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141586': {'individual': 'EU148', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141587': {'individual': 'EU148', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141580': {'individual': 'EU140', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141581': {'individual': 'EU140', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141582': {'individual': 'EU140', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141583': {'individual': 'EU144', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141588': {'individual': 'EU148', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141589': {'individual': 'EU152', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2286728': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2286729': {'line': 'HEK293T', 'type': 'single cell'}, 'GSM2286720': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286721': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286722': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286723': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286724': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286725': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286726': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286727': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM1872991': {'tissue': 'Human colon adenoma'}, 'GSM2719785': {'gender': 'male', 'state': 'Control', 'tissue': 'Rectal wall'}, 'GSM1479446': {'index': '3', 'diagnosis': '--', 'cellcount': '409387', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '31', 'collectiondate': 'May 21 2012', 'samplename': '31_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'MS pretreatment'}, 'GSM1479447': {'index': '5', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '31', 'collectiondate': 'May 21 2012', 'samplename': '31_CD4T', 'celltype': 'CD4', 'diseasestatus': 'MS pretreatment'}, 'GSM1479444': {'index': '1', 'diagnosis': '--', 'cellcount': '16312500', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '31', 'collectiondate': 'May 21 2012', 'samplename': '31_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'MS pretreatment'}, 'GSM1479445': {'index': '4', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '31', 'collectiondate': 'May 21 2012', 'samplename': '31_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'MS pretreatment'}, 'GSM1479442': {'index': '12', 'diagnosis': '--', 'cellcount': '1011154', 'gender': 'F', 'age': '32', 'smoker': '--', 'dose': '--', 'race': 'Hispanic', 'donorid': '44', 'collectiondate': 'June 26 2012', 'samplename': '44_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Healthy Control'}, 'GSM1479443': {'index': '19', 'diagnosis': '--', 'cellcount': '379236', 'gender': 'F', 'age': '32', 'smoker': '--', 'dose': '--', 'race': 'Hispanic', 'donorid': '44', 'collectiondate': 'June 26 2012', 'samplename': '44_NK', 'celltype': 'NK', 'diseasestatus': 'Healthy Control'}, 'GSM1479440': {'index': '6', 'diagnosis': '--', 'cellcount': '1012333', 'gender': 'F', 'age': '32', 'smoker': '--', 'dose': '--', 'race': 'Hispanic', 'donorid': '44', 'collectiondate': 'June 26 2012', 'samplename': '44_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Healthy Control'}, 'GSM1479441': {'index': '25', 'diagnosis': '--', 'cellcount': '1071990', 'gender': 'F', 'age': '32', 'smoker': '--', 'dose': '--', 'race': 'Hispanic', 'donorid': '44', 'collectiondate': 'June 26 2012', 'samplename': '44_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Healthy Control'}, 'GSM1479448': {'index': '8', 'diagnosis': '--', 'cellcount': '1100105', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '31', 'collectiondate': 'May 21 2012', 'samplename': '31_CD8T', 'celltype': 'CD8', 'diseasestatus': 'MS pretreatment'}, 'GSM1479449': {'index': '6', 'diagnosis': '--', 'cellcount': '190000000', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '33', 'collectiondate': 'May 22 2012', 'samplename': '33_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'MS posttreatment'}, 'GSM1401737': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401736': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401735': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401734': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1421201': {'line': 'K562 erythroleukemia cell line', 'variation': 'U2AF1_Q157R'}, 'GSM1401732': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401731': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401730': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401739': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401738': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1872993': {'infection': 'Uninfected control'}, 'GSM2523078': {'type': 'cell line', 'genotype': 'DNMT3Bwt/wt'}, 'GSM2523079': {'type': 'cell line', 'genotype': 'DNMT3BA603T/wt'}, 'GSM1395459': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1872995': {'infection': 'Uninfected control'}, 'GSM2287459': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM678042': {'type': 'CD8+ T-cells'}, 'GSM678041': {'type': 'CD8+ T-cells'}, 'GSM678040': {'type': 'CD4+ T-cells'}, 'GSM678047': {'type': 'Granulocytes'}, 'GSM678046': {'type': 'Granulocytes'}, 'GSM678045': {'type': 'Granulocytes'}, 'GSM678044': {'type': 'CD8+ T-cells'}, 'GSM2287451': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287450': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287453': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM678048': {'type': 'Granulocytes'}, 'GSM2287455': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287454': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287457': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287456': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610811': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610810': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610813': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610812': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610815': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610814': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610817': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610816': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610819': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610818': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1872994': {'infection': 'Uninfected control'}, 'GSM854380': {'patient': '10', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM854381': {'patient': '10', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM854382': {'patient': '10', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 500'}, 'GSM1091925': {'line': 'ATCC-HeLa', 'expression': 'EGFR shRNA-E1', 'condition': 'Hypoxia'}, 'GSM1872997': {'infection': 'Uninfected control'}, 'GSM1091924': {'line': 'ATCC-HeLa', 'expression': 'Scrambled Control', 'condition': 'Hypoxia'}, 'GSM2114348': {'state': 'Systemic lupus erythematosus', 'group': 'anti-dsDNA'}, 'GSM2114349': {'state': 'Systemic lupus erythematosus', 'group': 'anti-dsDNA and anti-ENA'}, 'GSM2114344': {'knockdown': 'MEP50 knockdown', 'line': 'A549 lung adenocarcinoma'}, 'GSM2114345': {'state': 'Systemic lupus erythematosus', 'group': 'anti-dsDNA'}, 'GSM2114346': {'state': 'Systemic lupus erythematosus', 'group': 'anti-dsDNA'}, 'GSM2114347': {'state': 'Systemic lupus erythematosus', 'group': 'anti-dsDNA'}, 'GSM2114340': {'knockdown': 'PRMT5 knockdown', 'line': 'A549 lung adenocarcinoma'}, 'GSM2114341': {'knockdown': 'PRMT5 knockdown', 'line': 'A549 lung adenocarcinoma'}, 'GSM2114342': {'knockdown': 'MEP50 knockdown', 'line': 'A549 lung adenocarcinoma'}, 'GSM2114343': {'knockdown': 'MEP50 knockdown', 'line': 'A549 lung adenocarcinoma'}, 'GSM2151534': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151535': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151536': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151537': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151530': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151531': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151532': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151533': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151538': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151539': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2420259': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2225648': {'disease': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2225649': {'disease': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2093232': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093233': {'bin': '12', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093230': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093231': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093236': {'bin': '10', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093237': {'bin': '10', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093234': {'bin': '19', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2093235': {'bin': '19', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2093238': {'bin': '16', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093239': {'bin': '16', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2828618': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3043', 'type': 'CD8 T cells'}, 'GSM2828619': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3045', 'type': 'CD8 T cells'}, 'GSM2828612': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2692', 'type': 'CD8 T cells'}, 'GSM2828613': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3027', 'type': 'CD8 T cells'}, 'GSM2828610': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 2894', 'type': 'CD8 T cells'}, 'GSM2828611': {'stimulation': 'ZK_IFNgpos', 'subset': 'CD3+CD8+IFNg+ T cells', 'individual': 'subject 3054', 'type': 'CD8 T cells'}, 'GSM2828616': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3038', 'type': 'CD8 T cells'}, 'GSM2828617': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3039', 'type': 'CD8 T cells'}, 'GSM2828614': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3028', 'type': 'CD8 T cells'}, 'GSM2828615': {'stimulation': 'antiCD3_IFNgpos', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3031', 'type': 'CD8 T cells'}, 'GSM2507560': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'wild type'}, 'GSM2507561': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'wild type'}, 'GSM2507562': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'wild type'}, 'GSM2507563': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'SF3B1 K700E'}, 'GSM2507564': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'SF3B1 K700E'}, 'GSM2507565': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'SF3B1 K700E'}, 'GSM2507566': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'SF3B1 K700E'}, 'GSM2507567': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'SF3B1 K700E'}, 'GSM2507568': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'SF3B1 K700del'}, 'GSM2507569': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'SF3B1 Q698del'}, 'GSM2153398': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153399': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2882999': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject7', 'drug': 'Metformin'}, 'GSM2882998': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject7', 'drug': 'Metformin'}, 'GSM1480736': {'vendor': 'Santa Cruz', 'line': 'TSU-1621-MT', 'with': '1 uM ATRA for 24 hrs', 'target': 'ERG'}, 'GSM1480737': {'line': 'TSU-1621-MT', 'vendor': 'Diagenode', 'target': 'RNAPII'}, 'GSM2153392': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153393': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153390': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2882996': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject6', 'drug': 'Metformin'}, 'GSM2153396': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153397': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2882993': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject4', 'drug': 'Metformin'}, 'GSM2882992': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject3', 'drug': 'Metformin'}, 'GSM1808107': {'tissue': 'LCLs'}, 'GSM2195153': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195150': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1808104': {'tissue': 'LCLs'}, 'GSM2287164': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1808103': {'tissue': 'LCLs'}, 'GSM752692': {'rin': '8.8', 'gender': 'Male', 'source': 'Commercial / Ambion'}, 'GSM2195157': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1808101': {'tissue': 'LCLs'}, 'GSM1808100': {'tissue': 'LCLs'}, 'GSM1537311': {'gender': 'Female', 'line': 'ZR751', 'type': 'Luminal'}, 'GSM1537310': {'gender': 'Female', 'line': 'MDAMB436', 'type': 'Basal-Like Carcinoma'}, 'GSM2475010': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'TOV-3133G', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2188697': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188696': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188695': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-170', 'er': 'negative'}, 'GSM2188694': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-170', 'er': 'negative'}, 'GSM2188693': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-16', 'er': 'negative'}, 'GSM2188692': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-16', 'er': 'negative'}, 'GSM2188691': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-16', 'er': 'negative'}, 'GSM2188690': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-16', 'er': 'negative'}, 'GSM1395391': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1 DMSO', 'timepoint': '4hr'}, 'GSM2188699': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188698': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2361571': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361570': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361573': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361572': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361575': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361574': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361577': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361576': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361579': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361578': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2641082': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2641083': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2641084': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2641085': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2641086': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2641087': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2287163': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1955803': {'a': '66761', 'cd38': '412', 'cd49f': '683', 'w': '68146', 'h': '64204', 'lin': '-116', 'cd34': '9434', 'cd90': '5553', 'cd7': '209', 'cd10': '797', 'time': '3794', 'cd135': '4195', 'cd45ra': '20'}, 'GSM1955802': {'a': '64218', 'cd38': '570', 'cd49f': '274', 'w': '66831', 'h': '62973', 'lin': '-270', 'cd34': '4437', 'cd90': '1177', 'cd7': '368', 'cd10': '138', 'time': '3586', 'cd135': '5644', 'cd45ra': '260'}, 'GSM1955801': {'a': '73288', 'cd38': '332', 'cd49f': '1039', 'w': '67705', 'h': '70940', 'lin': '-78', 'cd34': '8966', 'cd90': '1682', 'cd7': '550', 'cd10': '10864', 'time': '3328', 'cd135': '3074', 'cd45ra': '11779'}, 'GSM1955800': {'a': '57407', 'cd38': '559', 'cd49f': '616', 'w': '66320', 'h': '56729', 'lin': '295', 'cd34': '5659', 'cd90': '3817', 'cd7': '110', 'cd10': '981', 'time': '3070', 'cd135': '2185', 'cd45ra': '205'}, 'GSM1955807': {'a': '68902', 'cd38': '672', 'cd49f': '662', 'w': '66683', 'h': '67717', 'lin': '54', 'cd34': '4222', 'cd90': '173', 'cd7': '687', 'cd10': '229', 'time': '4575', 'cd135': '11332', 'cd45ra': '3431'}, 'GSM1955806': {'a': '48293', 'cd38': '185', 'cd49f': '309', 'w': '63218', 'h': '50063', 'lin': '156', 'cd34': '10389', 'cd90': '3024', 'cd7': '207', 'cd10': '13658', 'time': '4383', 'cd135': '1004', 'cd45ra': '7203'}, 'GSM1955805': {'a': '67740', 'cd38': '452', 'cd49f': '179', 'w': '68666', 'h': '64652', 'lin': '407', 'cd34': '9440', 'cd90': '886', 'cd7': '3', 'cd10': '677', 'time': '4187', 'cd135': '1881', 'cd45ra': '169'}, 'GSM1955804': {'a': '53414', 'cd38': '809', 'cd49f': '513', 'w': '65604', 'h': '53359', 'lin': '529', 'cd34': '11200', 'cd90': '2905', 'cd7': '150', 'cd10': '757', 'time': '3989', 'cd135': '4263', 'cd45ra': '458'}, 'GSM1955809': {'a': '49138', 'cd38': '478', 'cd49f': '574', 'w': '65251', 'h': '49352', 'lin': '474', 'cd34': '4875', 'cd90': '656', 'cd7': '181', 'cd10': '690', 'time': '7203', 'cd135': '4049', 'cd45ra': '130'}, 'GSM1955808': {'a': '56721', 'cd38': '835', 'cd49f': '380', 'w': '65408', 'h': '56832', 'lin': '1090', 'cd34': '9076', 'cd90': '1772', 'cd7': '216', 'cd10': '368', 'time': '4782', 'cd135': '4850', 'cd45ra': '2735'}, 'GSM1697523': {'with': 'none (control) for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697522': {'with': 'B. pseudomallei for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM2689279': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689278': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1697527': {'with': 'none (control) for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697526': {'with': 'none (control) for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697525': {'with': 'none (control) for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM1697524': {'with': 'none (control) for 24h', 'type': 'Olfactory ensheathing cells (OECs)'}, 'GSM2689273': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689272': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689271': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689270': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689277': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689276': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689275': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689274': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2350108': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350109': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2425378': {'state': 'healthy control', 'type': 'neutrophils'}, 'GSM2394563': {'id': 'IonXpress_054', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Propafenone', 'point': 'after 12h of compound treatment'}, 'GSM2425376': {'state': 'active disease', 'type': 'neutrophils', 'treatment': 'MTX (methotrexate)'}, 'GSM2425377': {'state': 'active disease', 'type': 'neutrophils', 'treatment': 'MTX (methotrexate)'}, 'GSM2350106': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350107': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350100': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350101': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350102': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350103': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM1546659': {'gender': 'male', 'individual': 'patient1', 'tissue': 'tumor'}, 'GSM2307038': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307039': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307034': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307035': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307036': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307037': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307030': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307031': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307032': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307033': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2630606': {'mutation': 'cGAS shRNA knockdown', 'background': 'Primary human fibroblasts', 'treatment': 'Etoposide'}, 'GSM2630607': {'mutation': 'cGAS shRNA knockdown', 'background': 'Primary human fibroblasts', 'treatment': 'Etoposide'}, 'GSM2630604': {'mutation': 'Wild-type', 'background': 'Primary human fibroblasts', 'treatment': 'Etoposide'}, 'GSM2630605': {'mutation': 'Wild-type', 'background': 'Primary human fibroblasts', 'treatment': 'Etoposide'}, 'GSM2630602': {'mutation': 'Wild-type', 'background': 'Primary human fibroblasts', 'treatment': 'None'}, 'GSM2630603': {'mutation': 'Wild-type', 'background': 'Primary human fibroblasts', 'treatment': 'None'}, 'GSM2750917': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750916': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750915': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750914': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750913': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750912': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750911': {'type': 'primed pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750910': {'type': 'primed pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750919': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750918': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2544226': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2544227': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM1957407': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2544225': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2544222': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2544223': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2544220': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2544221': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM1906586': {'modification': 'Stably transduced with Non-targeting shRNA', 'line': 'THP1 monocytic cells', 'condition': '80nM PMA for 72h'}, 'GSM1906587': {'modification': 'Stably transduced with shRNA to SREBF1', 'line': 'THP1 monocytic cells', 'condition': '80nM PMA for 72h'}, 'GSM1906584': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1906585': {'modification': 'Stably transduced with Non-targeting shRNA', 'line': 'THP1 monocytic cells', 'condition': '80nM PMA for 72h'}, 'GSM1906582': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'none'}, 'GSM1906583': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'none', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM1906580': {'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'genotype': 'wild type', 'treatment': 'starvation', 'enrichment': 'Immunoprecipitation with anti-m1A antibody'}, 'GSM2544229': {'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM2543948': {'library_id': 'lib8222', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543949': {'library_id': 'lib8223', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543942': {'library_id': 'lib8216', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543943': {'library_id': 'lib8217', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543940': {'library_id': 'lib8214', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543941': {'library_id': 'lib8215', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543946': {'library_id': 'lib8220', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543947': {'library_id': 'lib8221', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543944': {'library_id': 'lib8218', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543945': {'library_id': 'lib8219', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2133505': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133504': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133507': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133506': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133501': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133500': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133503': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133502': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2802829': {'line': 'MV4-11', 'tissue': 'Peripheral Blood', 'age': '10 years', 'Sex': 'male'}, 'GSM2133509': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133508': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2802828': {'line': 'MV4-11', 'tissue': 'Peripheral Blood', 'age': '10 years', 'Sex': 'male'}, 'GSM2072303': {'replicate': 'rep2', 'line': 'LV-M100 (sublcone of MDA-MB-231)', 'type': 'siSNRNP40 #2 GGAUUUGACCGACUGAUA'}, 'GSM2072302': {'replicate': 'rep1', 'line': 'LV-M100 (sublcone of MDA-MB-231)', 'type': 'siSNRNP40 #1 GGAAUAGACAAUGAUAUC'}, 'GSM2072301': {'replicate': 'rep2', 'line': 'LV-M100 (sublcone of MDA-MB-231)', 'type': 'Control siRNA -BLOCK-iT Fluorescent Oligo (Life Technologies)'}, 'GSM2072300': {'replicate': 'rep1', 'line': 'LV-M100 (sublcone of MDA-MB-231)', 'type': 'Control siRNA - NC1 (IDT)'}, 'GSM860001': {'length': '70', 'line': '293T', 'treatment': 'hnRNPA2B1 siRNAs'}, 'GSM860004': {'length': '70', 'line': '293T', 'treatment': 'hnRNPA2B1 siRNAs'}, 'GSM860007': {'length': '50', 'line': '293T', 'treatment': 'hnRNPF siRNA'}, 'GSM860009': {'length': '50', 'line': '293T', 'treatment': 'hnRNPF siRNA'}, 'GSM2757499': {'treatment': 'Genome Editing', 'genotype': '7p15.2 risk region deleted'}, 'GSM2047525': {'well': 'A09', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1173128': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Mesenchymal with OVOL1 overexpression'}, 'GSM1173129': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Mesenchymal with OVOL1 overexpression'}, 'GSM1695861': {'tissue': 'Thymus', 'markers': 'CD34+CD7+CD1aneg CD4negCD8neg'}, 'GSM2757493': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM2757492': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM1173126': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Transformed to Mesenchymal Phenotype'}, 'GSM2757490': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM2757497': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM2757496': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM1173122': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Control (Epithelial)'}, 'GSM1173123': {'line': 'PC3', 'type': 'prostate cancer cells', 'treatment': 'Control (Epithelial)'}, 'GSM2460845': {'type': 'cKit+ splenocytes', 'infection': 'with EBV'}, 'GSM2460844': {'type': 'cKit+ splenocytes', 'infection': 'without EBV'}, 'GSM2147667': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147666': {'status': 'control', 'cohort': '2', 'condition': 'age-matched control'}, 'GSM2147665': {'status': 'control', 'cohort': '2', 'condition': 'age-matched control'}, 'GSM2147664': {'status': 'control', 'cohort': '2', 'condition': 'age-matched control'}, 'GSM2147663': {'status': 'control', 'cohort': '2', 'condition': 'age-matched control'}, 'GSM2147662': {'status': 'control', 'cohort': '2', 'condition': 'age-matched control'}, 'GSM1948928': {'line': 'IMR90', 'passage': 'p13', 'variation': 'control', 'time': '6 days after infection'}, 'GSM2147660': {'status': 'control', 'cohort': '1', 'condition': 'age-matched control'}, 'GSM1948927': {'line': 'IMR90', 'passage': 'p13', 'variation': 'control', 'time': '6 days after infection'}, 'GSM2147669': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147668': {'status': 'non-responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2455577': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455576': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455575': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455574': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455573': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455572': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455571': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455570': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455579': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455578': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2581177': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2840346': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840347': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840344': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840345': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840342': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840343': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840340': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840341': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2536104': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10702', 'samplename': '1_T1D2-REDRAW _C94', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34802', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10702', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C94'}, 'GSM2536102': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10700', 'samplename': '1D_T1D2-REDRAW _C82', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34800', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10700', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C82'}, 'GSM2536103': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10701', 'samplename': '1_T1D2-REDRAW _C88', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34801', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10701', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C88'}, 'GSM2536100': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10698', 'samplename': '1_T1D2-REDRAW _C60', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34798', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10698', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C60'}, 'GSM2536101': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10699', 'samplename': '1D_T1D2-REDRAW _C66', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34799', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10699', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C66'}, 'GSM1644001': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b+ICI'}, 'GSM2391121': {'disease': 'NSCLC'}, 'GSM2391120': {'disease': 'NSCLC'}, 'GSM1836628': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U2'}, 'GSM2590111': {'sirna': 'ZEB1 siRNA (HSS110548, Thermo Fisher Scientific)', 'treatment': 'no', 'histology': 'basal type breast cancer'}, 'GSM2590110': {'sirna': 'Negative control siRNA (12935-112, Thermo Fisher Scientific)', 'treatment': 'no', 'histology': 'basal type breast cancer'}, 'GSM2590113': {'sirna': 'ZEB1 siRNA (HSS114854, Thermo Fisher Scientific)', 'treatment': 'no', 'histology': 'basal type breast cancer'}, 'GSM2590112': {'sirna': 'ZEB1 siRNA (HSS186235, Thermo Fisher Scientific)', 'treatment': 'no', 'histology': 'basal type breast cancer'}, 'GSM2590115': {'level': 'mycnHigh', 'treatment': 'no_doxorubicin_treatment', 'time': '0h'}, 'GSM2590114': {'sirna': 'ZEB1 siRNA (HSS190654, Thermo Fisher Scientific)', 'treatment': 'no', 'histology': 'basal type breast cancer'}, 'GSM2590117': {'level': 'mycnHigh', 'treatment': 'no_doxorubicin_treatment', 'time': '0h'}, 'GSM2590116': {'level': 'mycnLow', 'treatment': 'no_doxorubicin_treatment', 'time': '0h'}, 'GSM2590119': {'level': 'mycnHigh', 'treatment': 'doxorubicin_treatment_for_72h', 'time': '72h'}, 'GSM2590118': {'level': 'mycnLow', 'treatment': 'no_doxorubicin_treatment', 'time': '0h'}, 'GSM2771578': {'line': \"LREX'\", 'antibody': 'Abcam ab8895', 'treatment': 'Enz'}, 'GSM2771579': {'line': \"LNAR'\", 'antibody': 'Abcam ab8580'}, 'GSM2665798': {'age': 'Day 175', 'well': 'E6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665799': {'age': 'Day 175', 'well': 'F2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665796': {'age': 'Day 175', 'well': 'A8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665797': {'age': 'Day 175', 'well': 'H11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665794': {'age': 'Day 175', 'well': 'E7', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665795': {'age': 'Day 175', 'well': 'C10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2771574': {'line': \"LREX'\", 'antibody': 'Abcam ab4729'}, 'GSM2771575': {'line': \"LREX'\", 'antibody': 'Abcam ab4729', 'treatment': 'Enz'}, 'GSM2665790': {'age': 'Day 175', 'well': 'D11', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2771577': {'line': \"LREX'\", 'antibody': 'Abcam ab8895'}, 'GSM2754562': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0060', 'previousdiagnosisoftb': 'No', 'tst': '17', 'type': 'Tcells'}, 'GSM2754563': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0074', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754560': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0467', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754561': {'bin': '3', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '06_0129', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754566': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0157', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754567': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0428', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754564': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0056', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754565': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0135', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754568': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '12', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0718', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754569': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '12', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0718', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2256212': {'relation': 'son', 'hypotrophy': 'case', 'Sex': 'M'}, 'GSM1425767': {'grade': 'Epithelioid', 'pretreatment': 'None', 'type': 'E', 'Stage': 'IV'}, 'GSM2616710': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616711': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616712': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616713': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616714': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616715': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616716': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616717': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1508', 'subtype': 'Tregs'}, 'GSM2616718': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616719': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM1233950': {'replicate': '1', 'line': '12891', 'antibody': 'Input'}, 'GSM1233951': {'replicate': '1', 'line': '12891', 'antibody': 'RZ'}, 'GSM1233952': {'replicate': '2', 'line': '12891', 'antibody': 'RZ'}, 'GSM1233953': {'replicate': '1', 'line': '12891', 'antibody': 'SA1'}, 'GSM1233954': {'replicate': '2', 'line': '12891', 'antibody': 'SA1'}, 'GSM1233955': {'replicate': '1', 'line': '12892', 'antibody': 'CTCF'}, 'GSM1233956': {'replicate': '2', 'line': '12892', 'antibody': 'CTCF'}, 'GSM1233957': {'replicate': '1', 'line': '12892', 'antibody': 'H3K27Ac'}, 'GSM1233958': {'replicate': '2', 'line': '12892', 'antibody': 'H3K27Ac'}, 'GSM1233959': {'replicate': '3', 'line': '12892', 'antibody': 'H3K27Ac'}, 'GSM1863698': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863699': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863694': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863695': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863696': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863697': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863690': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863691': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863692': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1863693': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'med', 'ism': 'ISM_high'}, 'GSM1836108': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2027509': {'line': 'H7 derived'}, 'GSM1980562': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980563': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1576398': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human myeloid DC', 'time': '7 d'}, 'GSM1980560': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1824080': {'line': 'K562', 'transgene': 'SF3B1-WT'}, 'GSM1824081': {'line': 'K562', 'transgene': 'SF3B1-WT'}, 'GSM1824082': {'line': 'K562', 'transgene': 'SF3B1-K700E'}, 'GSM1824083': {'line': 'K562', 'transgene': 'SF3B1-K700E'}, 'GSM1824084': {'line': 'K562', 'transgene': 'SF3B1-WT'}, 'GSM1824085': {'line': 'K562', 'transgene': 'SF3B1-WT'}, 'GSM2459133': {'type': 'human liver stellate cells', 'genotype': 'wild type'}, 'GSM2459132': {'type': 'human liver stellate cells', 'genotype': 'wild type'}, 'GSM2459131': {'type': 'human liver stellate cells', 'genotype': 'wild type'}, 'GSM2459130': {'type': 'human liver stellate cells', 'genotype': 'wild type'}, 'GSM2459137': {'type': 'human liver stellate cells', 'genotype': 'synectin knock down'}, 'GSM2459136': {'type': 'human liver stellate cells', 'genotype': 'synectin knock down'}, 'GSM2459135': {'type': 'human liver stellate cells', 'genotype': 'synectin knock down'}, 'GSM2459134': {'type': 'human liver stellate cells', 'genotype': 'synectin knock down'}, 'GSM2339307': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339306': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339305': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339304': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339303': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339302': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2392264': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2339300': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM1576399': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human monocytes', 'time': '0 d'}, 'GSM2285365': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM1646679': {'status': 'Adjacent Normal tissue', 'tissue': 'liver'}, 'GSM2339309': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339308': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM1548063': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548062': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548061': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548060': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548067': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548066': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548065': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548064': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM1548069': {'reagent': 'pcDNA3.1-EHF vector', 'line': 'A549', 'type': 'lung carcinoma', 'overexpression': 'overexpression'}, 'GSM2042062': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM1844560': {'tissue': 'skin', 'type': 'Cultured epidermal melanocytes'}, 'GSM2042069': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2350152': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2543958': {'library_id': 'lib8240', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1113414': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 3 post-vaccine'}, 'GSM2243558': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1436048': {'line': 'HeLa', 'treatment': 'SART1'}, 'GSM2243554': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243555': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243556': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'F3', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243557': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243550': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243551': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243552': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243553': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2372364': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM1395397': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 vorinostat', 'timepoint': '8hr'}, 'GSM1409354': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Sensitive'}, 'GSM2202409': {'haplotype': 'A2-B46-DR9'}, 'GSM2202408': {'haplotype': 'A2-B46-DR9'}, 'GSM2202401': {'haplotype': 'A1-B8-DR3'}, 'GSM2202400': {'type': 'Human Brain Reference RNA from Thermo Fisher Scientific'}, 'GSM2202403': {'haplotype': 'A1-B8-DR3'}, 'GSM2202402': {'haplotype': 'A1-B8-DR3'}, 'GSM2202405': {'haplotype': 'A2-B46-DR9'}, 'GSM2202404': {'haplotype': 'A1-B8-DR3'}, 'GSM2202407': {'haplotype': 'A2-B46-DR9'}, 'GSM2202406': {'haplotype': 'A2-B46-DR9'}, 'GSM1409353': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Sensitive'}, 'GSM1409352': {'tissue': 'skin', 'type': 'basal cell carcinomas (BCCs)', 'inhibitors': 'Sensitive'}, 'GSM1489612': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '4T4'}, 'GSM1489613': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '4U2'}, 'GSM2229929': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS19'}, 'GSM2229928': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS19'}, 'GSM2229925': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS23'}, 'GSM2229924': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS23'}, 'GSM2229927': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS19'}, 'GSM2229926': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS19'}, 'GSM2229921': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS13'}, 'GSM2229920': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS13'}, 'GSM2229923': {'Sex': 'female', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS23'}, 'GSM2229922': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS23'}, 'GSM2100275': {'rin': '9.4', 'Sex': 'Male', 'sspg': '254', 'age': '50', 'bmi': '33.2', 'batch': '1-32', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '998', 'method': 'Qiagen:trizol'}, 'GSM2100274': {'rin': '9.5', 'Sex': 'Male', 'sspg': '254', 'age': '50', 'bmi': '33.2', 'batch': '1-32', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '998', 'method': 'Qiagen:trizol'}, 'GSM2746691': {'gender': 'Female', 'pathology': 'FSHD', 'batch': '3'}, 'GSM2746690': {'gender': 'Female', 'pathology': 'Control', 'batch': '3'}, 'GSM2100271': {'rin': '9.5', 'Sex': 'Male', 'sspg': '254', 'age': '50', 'bmi': '33.2', 'batch': '1-32', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '998', 'method': 'Qiagen:trizol'}, 'GSM2746696': {'gender': 'Female', 'pathology': 'Control', 'batch': '3'}, 'GSM2100273': {'rin': '9.2', 'Sex': 'Male', 'sspg': '254', 'age': '50', 'bmi': '33.2', 'batch': '1-32', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '998', 'method': 'Qiagen:trizol'}, 'GSM2100272': {'rin': '9.6', 'Sex': 'Male', 'sspg': '254', 'age': '50', 'bmi': '33.2', 'batch': '1-32', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '998', 'method': 'Qiagen:trizol'}, 'GSM1503696': {'molecule': 'polyA RNA', 'line': 'IVF Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM2679472': {'line': 'BLCL (165)'}, 'GSM2679473': {'line': 'BLCL (165)'}, 'GSM2679470': {'line': 'BLCL (165)'}, 'GSM2679471': {'line': 'BLCL (165)'}, 'GSM2679476': {'line': 'BLCL (165)'}, 'GSM2679477': {'line': 'BLCL (165)'}, 'GSM2679474': {'line': 'BLCL (165)'}, 'GSM2679475': {'line': 'BLCL (165)'}, 'GSM2679478': {'line': 'BLCL (165)'}, 'GSM2887487': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1957247': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM2107728': {'line': 'REH', 'treatment': 'lnc-TIMM21-5 LNA GapmeR1', 'time': '72h'}, 'GSM2107729': {'line': 'REH', 'treatment': 'lnc-TIMM21-5 LNA GapmeR2', 'time': '72h'}, 'GSM710611': {'vendor': 'Santa cruz biotechnology', 'antibody': 'Anti-TAL1(C-21)', 'condition': 'CD34 WT'}, 'GSM2887489': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2107722': {'line': 'REH', 'treatment': 'lnc-RTN4R-1 LNA GapmeR1', 'time': '72h'}, 'GSM2107723': {'line': 'REH', 'treatment': 'lnc-RTN4R-1 LNA GapmeR2', 'time': '72h'}, 'GSM2107720': {'line': 'REH', 'treatment': 'lnc-NKX2-3-1 LNA GapmeR1', 'time': '72h'}, 'GSM2107721': {'line': 'REH', 'treatment': 'lnc-NKX2-3-1 LNA GapmeR2', 'time': '72h'}, 'GSM2107726': {'line': 'REH', 'treatment': 'medium', 'time': '72h'}, 'GSM1872867': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM2107724': {'line': 'REH', 'treatment': 'lnc-ASTN1-1 LNA GapmeR1', 'time': '72h'}, 'GSM2107725': {'line': 'REH', 'treatment': 'lnc-ASTN1-1 LNA GapmeR2', 'time': '72h'}, 'GSM2459968': {'age': '28 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1+/+', 'Sex': 'Female'}, 'GSM1872866': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2459960': {'age': '7 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1-/-', 'Sex': 'Male'}, 'GSM1872861': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2459962': {'age': '7 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1-/-', 'Sex': 'Male'}, 'GSM2459963': {'age': '7 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1-/-', 'Sex': 'Male'}, 'GSM2459964': {'age': '7 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1-/-', 'Sex': 'Male'}, 'GSM2459965': {'age': '7 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1-/-', 'Sex': 'Male'}, 'GSM2459966': {'age': '28 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1+/+', 'Sex': 'Female'}, 'GSM2459967': {'age': '28 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1+/+', 'Sex': 'Female'}, 'GSM2643390': {'type': 'explant derived cells in culture', 'agent': 'DMSO', 'point': '1h'}, 'GSM2312148': {'culture': '12', 'line': 'DCX-'}, 'GSM2312149': {'culture': '12', 'line': 'DCX-'}, 'GSM2312146': {'culture': '12', 'line': 'DCX-'}, 'GSM2312147': {'culture': '12', 'line': 'DCX-'}, 'GSM2312144': {'culture': '12', 'line': 'DCX-'}, 'GSM1872862': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM2312142': {'culture': '12', 'line': 'DCX-'}, 'GSM2312143': {'culture': '12', 'line': 'DCX-'}, 'GSM2312140': {'culture': '12', 'line': 'DCX-'}, 'GSM2312141': {'culture': '12', 'line': 'DCX-'}, 'GSM2039399': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM2039398': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM2414785': {'line': 'LIM1899', 'type': 'epithelial colorectal cancer cell line'}, 'GSM2039395': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM2039394': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM2039397': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS G12V mutant form'}, 'GSM2039396': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM2039391': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM2039390': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM2039393': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM2039392': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM3586773': {'pfstt': '188', 'pfscs': '1', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '576', 'cycles': '6', 'oscs': '1'}, 'GSM3586772': {'origin': 'GCB', 'pfstt': '1389', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1389', 'cycles': '6', 'oscs': '0'}, 'GSM3586771': {'origin': 'UNCLASSIFIED', 'pfstt': '1415', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1415', 'cycles': '6', 'oscs': '0'}, 'GSM3586770': {'origin': 'GCB', 'pfstt': '1374', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1510', 'cycles': '6', 'oscs': '0'}, 'GSM3586777': {'origin': 'ABC', 'pfstt': '876', 'pfscs': '0', 'region': 'North America', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '884', 'cycles': '8', 'oscs': '0'}, 'GSM3586776': {'origin': 'GCB', 'pfstt': '68', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '68', 'cycles': '8', 'oscs': '1'}, 'GSM3586775': {'origin': 'GCB', 'pfstt': '1041', 'pfscs': '0', 'region': 'North America', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1163', 'cycles': '8', 'oscs': '0'}, 'GSM3586774': {'origin': 'UNCLASSIFIED', 'pfstt': '1233', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1376', 'cycles': '8', 'oscs': '0'}, 'GSM3586779': {'origin': 'GCB', 'pfstt': '16', 'pfscs': '1', 'region': 'North America', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '16', 'cycles': '8', 'oscs': '1'}, 'GSM3586778': {'origin': 'GCB', 'pfstt': '700', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '765', 'cycles': '8', 'oscs': '0'}, 'GSM2082544': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2082545': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM802468': {'tissue': 'non-tumor'}, 'GSM802466': {'tissue': 'non-tumor'}, 'GSM802467': {'tissue': 'non-tumor'}, 'GSM802464': {'tissue': 'non-tumor'}, 'GSM802465': {'tissue': 'non-tumor'}, 'GSM802462': {'tissue': 'tumor'}, 'GSM802463': {'tissue': 'tumor'}, 'GSM802460': {'tissue': 'tumor'}, 'GSM802461': {'tissue': 'tumor'}, 'GSM1956114': {'a': '61846', 'cd38': '670', 'cd49f': '361', 'w': '66188', 'h': '61237', 'lin': '-109', 'cd34': '6595', 'cd90': '2578', 'cd7': '350', 'cd10': '1255', 'time': '8195', 'cd135': '5507', 'cd45ra': '486'}, 'GSM1571090': {'stage': 'mesoderm'}, 'GSM1571091': {'stage': 'mesoderm'}, 'GSM1956110': {'a': '46523', 'cd38': '656', 'cd49f': '72', 'w': '67250', 'h': '45337', 'lin': '422', 'cd34': '4543', 'cd90': '265', 'cd7': '33', 'cd10': '1036', 'time': '7318', 'cd135': '607', 'cd45ra': '335'}, 'GSM1956111': {'a': '41751', 'cd38': '911', 'cd49f': '113', 'w': '68562', 'h': '39908', 'lin': '922', 'cd34': '6745', 'cd90': '4219', 'cd7': '272', 'cd10': '569', 'time': '7530', 'cd135': '4942', 'cd45ra': '243'}, 'GSM1365936': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'NMP', 'timepoint': '4hr'}, 'GSM1365937': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Control', 'timepoint': '4hr'}, 'GSM1365934': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': '5.AZA', 'timepoint': '4hr'}, 'GSM1365935': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Combo', 'timepoint': '4hr'}, 'GSM1365932': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Control', 'timepoint': '4hr'}, 'GSM1365933': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'LBH.589', 'timepoint': '4hr'}, 'GSM1956113': {'a': '59665', 'cd38': '467', 'cd49f': '770', 'w': '69212', 'h': '56496', 'lin': '110', 'cd34': '6689', 'cd90': '2613', 'cd7': '121', 'cd10': '847', 'time': '7995', 'cd135': '4984', 'cd45ra': '2477'}, 'GSM1365938': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'LBH.589', 'timepoint': '4hr'}, 'GSM1365939': {'source': 'peripheral blood', 'line': 'U266', 'treatment': '5.AZA', 'timepoint': '4hr'}, 'GSM840136': {'lineage': 'mesoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'RnaSeq', 'labexpid': 'crg-45', 'sex': 'F', 'rnaextract': 'total', 'replicate': '1', 'karyotype': 'cancer', 'biorep': 'gen0131WC'}, 'GSM840137': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8465', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '001C', 'spikeinpool': 'Nist14'}, 'GSM2141461': {'individual': 'AF149', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141460': {'individual': 'AF149', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141467': {'individual': 'AF153', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141466': {'individual': 'AF153', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141465': {'individual': 'AF153', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141464': {'individual': 'AF151', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141469': {'individual': 'AF155', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141468': {'individual': 'AF155', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM840138': {'lineage': 'mesoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'RnaSeq', 'labexpid': 'crg-7', 'sex': 'F', 'rnaextract': 'total', 'replicate': '1', 'biorep': 'gen0102WC'}, 'GSM2098682': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098683': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098680': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098681': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM1826819': {'line': 'MOLP-8', 'condition': 'Scrambled control cells'}, 'GSM1826818': {'line': 'MOLP-8', 'condition': 'Scrambled control cells'}, 'GSM2098684': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098685': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM1826817': {'line': 'MOLP-8', 'condition': 'Scrambled control cells'}, 'GSM2098689': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM1440496': {'type': 'non-neoplastic brain'}, 'GSM1401672': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401673': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401670': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401671': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401676': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401677': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401674': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401675': {'tissue': 'Breast Cancer Cell Line'}, 'GSM1401678': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401679': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1908610': {'line': 'H1', 'type': 'eGFP+CD34+CD31+CD43- hemogenic endothelium', 'genotype': 'GATA2/eGFP knockin'}, 'GSM1908611': {'line': 'H1', 'type': 'eGFP-CD34+CD31+CD43- endothelial cells', 'genotype': 'GATA2/eGFP knockin'}, 'GSM1704298': {'cohort': 'Control; healthy control subject', 'tissue': 'Peripheral blood', 'type': 'sorted CD4+ ILC1', 'gender': 'Male'}, 'GSM1704299': {'cohort': 'Control; healthy control subject', 'tissue': 'Peripheral blood', 'type': 'sorted CD4- ILC1', 'gender': 'Male'}, 'GSM1226158': {'line': 'GM12878', 'type': 'polyA RNA'}, 'GSM1226159': {'line': 'GM12891', 'type': 'polyA RNA'}, 'GSM1226157': {'line': 'GM12878', 'type': 'polyA RNA'}, 'GSM1706676': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'None', 'passages': 'p71', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706677': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'None', 'passages': 'p71', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706674': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'None', 'passages': 'p71', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706675': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'None', 'passages': 'p71', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706672': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706673': {'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706670': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706671': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'Episomal'}, 'GSM1706678': {'clone': 'None', 'passages': 'p75', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706679': {'clone': 'None', 'passages': 'p12', 'type': 'fibroblasts', 'method': 'None'}, 'GSM1901280': {'treatment': 'Mock'}, 'GSM2361582': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2610998': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610999': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610994': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610995': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610996': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610997': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610990': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610991': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610992': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610993': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2395249': {'status': 'Day 34 of differentiation CD56+ iPSC-derived neuron', 'type': 'stem cell-derived neuron', 'genotype': 'unaffected control'}, 'GSM515518': {'tissue': 'oral squamous cell carcinoma', 'patient': '51'}, 'GSM515515': {'tissue': 'oral cavity normal tissue', 'patient': '33'}, 'GSM515514': {'tissue': 'oral squamous cell carcinoma', 'patient': '8'}, 'GSM515517': {'tissue': 'oral cavity normal tissue', 'patient': '51'}, 'GSM515516': {'tissue': 'oral squamous cell carcinoma', 'patient': '33'}, 'GSM515513': {'tissue': 'oral cavity normal tissue', 'patient': '8'}, 'GSM1709529': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709528': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709523': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709522': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709521': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709520': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709527': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709526': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709525': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709524': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2742121': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'etoposide'}, 'GSM2742120': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'MLN8237'}, 'GSM2742122': {'state': 'Lung cancer', 'line': 'A549', 'agent': 'etoposide'}, 'GSM2390997': {'disease': 'Pulmonary Hypertension'}, 'GSM2390996': {'disease': 'Pulmonary Hypertension'}, 'GSM1980199': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980198': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2390993': {'disease': 'Multiple Sclerosis'}, 'GSM2390992': {'disease': 'Multiple Sclerosis'}, 'GSM2390991': {'disease': 'Multiple Sclerosis'}, 'GSM2390990': {'disease': 'Multiple Sclerosis'}, 'GSM1980192': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980191': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980190': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980197': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980196': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980195': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980194': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1679660': {'gender': 'male', 'study': 'C_15 - failed QC', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '61'}, 'GSM1679661': {'gender': 'male', 'study': 'C_16', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '58'}, 'GSM1679662': {'gender': 'male', 'study': 'C_17', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '70'}, 'GSM1679663': {'gender': 'male', 'study': 'C_18', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '66'}, 'GSM1679664': {'gender': 'male', 'study': 'C_19', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '73'}, 'GSM1679665': {'gender': 'male', 'study': 'C_20', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '60'}, 'GSM1679666': {'gender': 'male', 'study': 'C_21', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '76'}, 'GSM1679667': {'death': '61', 'gender': 'male', 'study': 'C_22', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.23303236', 'sv3': '0.449726801', 'sv1': '-0.0858234561'}, 'GSM1679668': {'death': '62', 'gender': 'male', 'study': 'C_23', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.34126554', 'sv3': '-0.330226377', 'sv1': '-0.0374902854'}, 'GSM1679669': {'gender': 'male', 'study': 'C_24', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '69'}, 'GSM2194269': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194268': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1528199': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM2194266': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194265': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194264': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194263': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194262': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194261': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194260': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2689189': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689188': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689185': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689184': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689187': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689186': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689181': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689180': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689183': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689182': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2392739': {'type': 'Induced pluripotent stem cell'}, 'GSM2392738': {'type': 'Induced pluripotent stem cell'}, 'GSM1977038': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977039': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977036': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977037': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM2392733': {'type': 'Induced pluripotent stem cell'}, 'GSM2392732': {'type': 'Induced pluripotent stem cell'}, 'GSM2392735': {'type': 'Induced pluripotent stem cell'}, 'GSM2392734': {'type': 'Induced pluripotent stem cell'}, 'GSM2392737': {'type': 'Induced pluripotent stem cell'}, 'GSM2392736': {'type': 'Induced pluripotent stem cell'}, 'GSM2307064': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2026940': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9Y2Q1'}, 'GSM2477377': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'control'}, 'GSM1853602': {'line': 'HeLa', 'treatment': '20nM Rrp40 siRNA - Dharmacon'}, 'GSM1853603': {'line': 'HeLa', 'treatment': '20nM Rrp40 siRNA - Dharmacon'}, 'GSM2252900': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'transfection': 'PC-3 control'}, 'GSM2424740': {'type': 'Splenic mononuclar cells', 'agent': 'HIV-1 infected', 'point': '6 weeks post-infection'}, 'GSM2543914': {'library_id': 'lib8066', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1863143': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'mig', 'passage': '<20'}, 'GSM1863144': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'mig_highDBZ', 'passage': '<20'}, 'GSM1863145': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'highDBZ_ICN', 'passage': '<20'}, 'GSM1024418': {'strain': 'HUES 3Hb9::GFP', 'type': 'FACS-purified motor neurons', 'treatment': 'S+P derived', 'collection': 'Day 21 no GFP'}, 'GSM1888655': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888654': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1024417': {'strain': 'HUES 3Hb9::GFP', 'type': 'FACS-purified motor neurons', 'treatment': 'S+P derived', 'collection': 'Day 21 GFP high'}, 'GSM1024416': {'strain': 'HUES 3Hb9::GFP', 'type': 'FACS-purified motor neurons', 'treatment': 'SHH derived', 'collection': 'Day 21 GFP high'}, 'GSM2429935': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f9', 'treatment': 'none'}, 'GSM2067373': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM1835921': {'line': 'TTC549', 'type': 'liver rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835920': {'line': 'TTC549', 'type': 'liver rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835923': {'line': 'TTC549', 'type': 'liver rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835922': {'line': 'TTC549', 'type': 'liver rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835925': {'line': 'G402', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835924': {'line': 'TTC549', 'type': 'liver rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835927': {'line': 'G402', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835926': {'line': 'G402', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835929': {'line': 'G402', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835928': {'line': 'G402', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM3189242': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.655649', 'percentaligned': '0.944040118', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.81869', 'original': 'Case'}, 'GSM3189243': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.561457', 'percentaligned': '0.940693221', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.38722', 'original': 'Case'}, 'GSM1363518': {'grade': 'NA', 'alb': '47.4', 'tb': '10', 'individual': 'HCC6', 'alt': '28', 'pt': '10.8', 'hbvdna': '<500', 'ca199': 'NA', 'hgb': '114', 'method': 'VATS', 'ggt': '39.7', 'cea': 'NA', 'ast': '30', 'rna': 'Yes', 'db': '4.2', 'cirrhosis': 'NA', 'afp': '126', 'hbsag': '>250ï¼\\x88+ï¼\\x89', 'organ': 'lung', 'gender': 'M', 'age': '41', 'ltx': 'B', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.48'}, 'GSM1363519': {'grade': '#N/A', 'alb': '#N/A', 'tb': '#N/A', 'individual': 'HCC7', 'alt': '#N/A', 'pt': '#N/A', 'hbvdna': '#N/A', 'ca199': '#N/A', 'hgb': '#N/A', 'method': '#N/A', 'ggt': '#N/A', 'cea': '#N/A', 'ast': '#N/A', 'rna': '#N/A', 'db': '#N/A', 'cirrhosis': '#N/A', 'afp': '#N/A', 'hbsag': '#N/A', 'organ': '#N/A', 'gender': 'not collected', 'age': '#N/A', 'ltx': '#N/A', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '#N/A'}, 'GSM3189246': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '54', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.739633', 'percentaligned': '0.843757392', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.556422', 'original': 'Control'}, 'GSM3189247': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.706538', 'percentaligned': '0.948885338', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.261355', 'original': 'Control'}, 'GSM3189244': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '20', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.616523', 'percentaligned': '0.897529359', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.874476'}, 'GSM3189245': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.656317', 'percentaligned': '0.948922466', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.723578', 'original': 'Control'}, 'GSM1363512': {'grade': 'NA', 'alb': '33.9', 'tb': '34.8', 'individual': 'HCC3', 'alt': '30', 'pt': '12.3', 'hbvdna': '<500', 'ca199': '119.8', 'hgb': '144', 'method': 'RFA', 'ggt': '198.7', 'cea': '3.3', 'ast': '56', 'rna': 'Yes', 'db': '15.5', 'cirrhosis': 'Yes', 'afp': '>3000', 'hbsag': '>240ï¼\\x88+ï¼\\x89', 'organ': 'liver', 'gender': 'M', 'age': '42', 'ltx': 'B', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '7.23'}, 'GSM1363513': {'grade': 'NA', 'alb': '43.7', 'tb': '17.4', 'individual': 'HCC4', 'alt': '20', 'pt': '11.6', 'hbvdna': '<500', 'ca199': '8.4', 'hgb': '145', 'method': 'RFA', 'ggt': '37.7', 'cea': '1.27', 'ast': '19', 'rna': 'Yes', 'db': '3.9', 'cirrhosis': 'No', 'afp': '2.5', 'hbsag': '15.22(+)', 'organ': 'liver', 'gender': 'M', 'age': '59', 'ltx': 'B', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.4'}, 'GSM3189248': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.768141', 'percentaligned': '0.826697551', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.764281', 'original': 'Control'}, 'GSM3189249': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.006157', 'percentaligned': '0.874279012', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.081174', 'original': 'Control'}, 'GSM1363516': {'grade': 'NA', 'alb': '30.2', 'tb': '56.7', 'individual': 'HCC5', 'alt': '54', 'pt': '12.9', 'hbvdna': '<500', 'ca199': '28.7', 'hgb': '112', 'method': 'RFA', 'ggt': '213.2', 'cea': '2.34', 'ast': '64', 'rna': 'Yes', 'db': '22.9', 'cirrhosis': 'NA', 'afp': '>3000', 'hbsag': '<0.01(-)', 'organ': 'liver', 'gender': 'M', 'age': '67', 'ltx': 'B', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '8.03'}, 'GSM1363517': {'grade': 'NA', 'alb': '47.4', 'tb': '10', 'individual': 'HCC6', 'alt': '28', 'pt': '10.8', 'hbvdna': '<500', 'ca199': 'NA', 'hgb': '114', 'method': 'VATS', 'ggt': '39.7', 'cea': 'NA', 'ast': '30', 'rna': 'Yes', 'db': '4.2', 'cirrhosis': 'NA', 'afp': '126', 'hbsag': '>250ï¼\\x88+ï¼\\x89', 'organ': 'lung', 'gender': 'M', 'age': '41', 'ltx': 'B', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.48'}, 'GSM1363514': {'grade': 'NA', 'alb': '43.7', 'tb': '17.4', 'individual': 'HCC4', 'alt': '20', 'pt': '11.6', 'hbvdna': '<500', 'ca199': '8.4', 'hgb': '145', 'method': 'RFA', 'ggt': '37.7', 'cea': '1.27', 'ast': '19', 'rna': 'Yes', 'db': '3.9', 'cirrhosis': 'No', 'afp': '2.5', 'hbsag': '15.22(+)', 'organ': 'liver', 'gender': 'M', 'age': '59', 'ltx': 'B', 'tissue': 'HCC Recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.4'}, 'GSM1363515': {'grade': 'NA', 'alb': '30.2', 'tb': '56.7', 'individual': 'HCC5', 'alt': '54', 'pt': '12.9', 'hbvdna': '<500', 'ca199': '28.7', 'hgb': '112', 'method': 'RFA', 'ggt': '213.2', 'cea': '2.34', 'ast': '64', 'rna': 'Yes', 'db': '22.9', 'cirrhosis': 'NA', 'afp': '>3000', 'hbsag': '<0.01(-)', 'organ': 'liver', 'gender': 'M', 'age': '67', 'ltx': 'B', 'tissue': \"HCC Recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '8.03'}, 'GSM2188712': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-180', 'er': 'negative'}, 'GSM2188713': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-183', 'er': 'negative'}, 'GSM2188710': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-172', 'er': 'negative'}, 'GSM2188711': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-180', 'er': 'negative'}, 'GSM2188716': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-183', 'er': 'negative'}, 'GSM2188717': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-183', 'er': 'negative'}, 'GSM2188714': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-183', 'er': 'negative'}, 'GSM2188715': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-183', 'er': 'negative'}, 'GSM929912': {'with': 'miR-23b with specific sponge vector', 'line': 'MDA-MB-231', 'type': 'mesenchymal-like breast cancer cells', 'variation': 'reduced miR-23b activity'}, 'GSM929913': {'line': 'MDA-MB-231', 'type': 'mesenchymal-like breast cancer cells', 'variation': 'control'}, 'GSM929910': {'line': 'MCF-7', 'type': 'epithelial breast cancer cells', 'variation': 'control'}, 'GSM2188719': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-183', 'er': 'negative'}, 'GSM2511575': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM1862899': {'tissue': 'peripheral blood', 'type': 'freshly isolated'}, 'GSM1862898': {'tissue': 'peripheral blood', 'type': 'freshly isolated'}, 'GSM1602978': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602979': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602977': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM2046306': {'line': 'SW900', 'type': 'Lung, Squamous cell carcinoma'}, 'GSM2046307': {'line': 'SW900', 'type': 'Lung, Squamous cell carcinoma'}, 'GSM3362543': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM2579356': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM3362549': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM1069746': {'line': 'MCF-7', 'type': 'epithelial breast cancer cells', 'variation': 'control'}, 'GSM1836641': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836640': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836642': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1241220': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2326059': {'type': 'Human embryonic stem cell'}, 'GSM2875108': {'gender': 'Male', 'age': 'fetal 15 weeks', 'type': 'Chondrocytes isolated from growth plate'}, 'GSM2875109': {'gender': 'Female', 'age': 'fetal 16 weeks', 'type': 'Chondrocytes isolated from growth plate'}, 'GSM2875106': {'gender': 'Male', 'age': 'fetal 14 weeks', 'type': 'Chondrocytes isolated from growth plate'}, 'GSM2875107': {'gender': 'Male', 'age': 'fetal 14 weeks', 'type': 'Chondrocytes isolated from growth plate'}, 'GSM3586542': {'origin': 'GCB', 'pfstt': '844', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '901', 'cycles': '8', 'oscs': '0'}, 'GSM1974547': {'fetus': '103 days', 'stage': 'CNTF/BMP4 differentiated cells'}, 'GSM1974546': {'fetus': '103 days', 'stage': 'progeniotor cells'}, 'GSM1974545': {'fetus': '110 days', 'stage': 'progeniotor cells'}, 'GSM1974544': {'fetus': '103 days', 'stage': 'progeniotor cells'}, 'GSM1974543': {'fetus': '114 days', 'stage': 'FBS differentiated cells'}, 'GSM1974542': {'fetus': '110 days', 'stage': 'FBS differentiated cells'}, 'GSM1974541': {'fetus': '103 days', 'stage': 'FBS differentiated cells'}, 'GSM1974540': {'fetus': '91 days', 'stage': 'FBS differentiated cells'}, 'GSM2043842': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 3 passages after initial sorting'}, 'GSM2043843': {'type': 'Ovation RNASeq System V2', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 4 passages after initial sorting'}, 'GSM1974549': {'fetus': '103 days', 'stage': 'CNTF/BMP4 differentiated cells'}, 'GSM1974548': {'fetus': '110 days', 'stage': 'CNTF/BMP4 differentiated cells'}, 'GSM2242953': {'line': 'A375', 'replicate': '4'}, 'GSM2242952': {'line': 'A375', 'replicate': '4'}, 'GSM2242951': {'line': 'A375', 'replicate': '4'}, 'GSM2242950': {'line': 'A375', 'replicate': '4'}, 'GSM2242957': {'line': 'A375', 'replicate': '4'}, 'GSM2242956': {'line': 'A375', 'replicate': '4'}, 'GSM2242955': {'line': 'A375', 'replicate': '4'}, 'GSM2242954': {'line': 'A375', 'replicate': '4'}, 'GSM2242959': {'line': 'A375', 'replicate': '4'}, 'GSM2242958': {'line': 'A375', 'replicate': '4'}, 'GSM785387': {'type': 'transitional', 'normal': 'cancer'}, 'GSM3586544': {'origin': 'ABC', 'pfstt': '709', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '789', 'cycles': '8', 'oscs': '0'}, 'GSM785386': {'type': 'transitional', 'normal': 'normal'}, 'GSM3586545': {'origin': 'GCB', 'pfstt': '680', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '761', 'cycles': '8', 'oscs': '0'}, 'GSM1464101': {'with': 'mock', 'barcode': 'NNNTTGTNN', 'type': 'human foreskin fibroblasts', 'infection': 'mock'}, 'GSM1464100': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNCCACNN', 'type': 'human foreskin fibroblasts', 'infection': '8 h p.i.'}, 'GSM1464103': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNGGCGNN', 'type': 'human foreskin fibroblasts', 'infection': '2 h p.i.'}, 'GSM1464102': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNCAATNN', 'type': 'human foreskin fibroblasts', 'infection': '1 h p.i.'}, 'GSM1464105': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNTGGCNN', 'type': 'human foreskin fibroblasts', 'infection': '6 h p.i.'}, 'GSM1464104': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNCCGGNN', 'type': 'human foreskin fibroblasts', 'infection': '4 h p.i.'}, 'GSM785385': {'type': 'transitional', 'normal': 'cancer'}, 'GSM1464106': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNCCACNN', 'type': 'human foreskin fibroblasts', 'infection': '8 h p.i.'}, 'GSM1579175': {'origin': 'cells in vitro', 'line': 'H3122', 'type': 'lung adenocarcinoma cell line', 'treatment': 'crizotinib_48h_300nM'}, 'GSM785384': {'type': 'transitional', 'normal': 'normal'}, 'GSM1579174': {'origin': 'cells in vitro', 'line': 'H3122', 'type': 'lung adenocarcinoma cell line', 'treatment': 'crizotinib_48h_300nM'}, 'GSM1489558': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '11U2'}, 'GSM2361829': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361828': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM785383': {'type': 'transitional', 'normal': 'cancer'}, 'GSM1579177': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM785382': {'type': 'transitional', 'normal': 'normal'}, 'GSM1579176': {'origin': 'xenograft tumours', 'line': 'A375R', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM2632569': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632568': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632565': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632564': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632567': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632566': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632561': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632560': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632563': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632562': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM1233888': {'replicate': '2', 'line': '12878', 'antibody': 'CTCF'}, 'GSM785381': {'type': 'transitional', 'normal': 'cancer'}, 'GSM1579171': {'origin': 'cells in vitro', 'line': 'UACC62', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_48h_1µM'}, 'GSM1233889': {'replicate': '1', 'line': '12878', 'antibody': 'H3K27Ac'}, 'GSM785380': {'type': 'transitional', 'normal': 'normal'}, 'GSM1579170': {'origin': 'cells in vitro', 'line': 'UACC62', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_48h_1µM'}, 'GSM2712759': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'largazole 30nM', 'disease': 'colorectal carcinoma'}, 'GSM2712758': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'largazole 18.75nM', 'disease': 'colorectal carcinoma'}, 'GSM2712753': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'largazole 150nM', 'disease': 'colorectal carcinoma'}, 'GSM2712752': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'largazole 75nM', 'disease': 'colorectal carcinoma'}, 'GSM2712751': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'largazole 37.5nM', 'disease': 'colorectal carcinoma'}, 'GSM2712750': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'largazole 30nM', 'disease': 'colorectal carcinoma'}, 'GSM2712757': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'largazole 9.37nM', 'disease': 'colorectal carcinoma'}, 'GSM2712756': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'largazole 4.68nM', 'disease': 'colorectal carcinoma'}, 'GSM2712755': {'line': 'HCT116', 'antibody': 'H3K9ac (Abcam, ab4441)', 'treatment': 'DMSO', 'disease': 'colorectal carcinoma'}, 'GSM2712754': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'largazole 300nM', 'disease': 'colorectal carcinoma'}, 'GSM1579172': {'origin': 'cells in vitro', 'line': 'H3122', 'type': 'lung adenocarcinoma cell line', 'treatment': 'vehicle'}, 'GSM2563824': {'status': 'healthy', 'gender': 'female', 'tissue': 'peripheral blood', 'type': 'CD4+ T cells', 'pregnancy': 'early'}, 'GSM2082546': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2+/+', 'id': '16'}, 'GSM1980388': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2836251': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836250': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836253': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836252': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836255': {'tumor': 'tumor', 'subtype': 'diffuse type cancer'}, 'GSM2836254': {'tumor': 'tumor', 'subtype': 'diffuse type cancer'}, 'GSM2836257': {'tumor': 'tumor', 'subtype': 'diffuse type cancer'}, 'GSM2836256': {'tumor': 'tumor', 'subtype': 'diffuse type cancer'}, 'GSM2836258': {'tumor': 'tumor', 'subtype': 'diffuse type cancer'}, 'GSM1519623': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'not available'}, 'GSM1519622': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'autism spectrum disorder'}, 'GSM1519621': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'not available'}, 'GSM1519620': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'not available'}, 'GSM1519627': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'autism spectrum disorder'}, 'GSM1519626': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'autism spectrum disorder'}, 'GSM1519625': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'autism spectrum disorder'}, 'GSM1519624': {'tissue': 'frozen postmortem brain from NICHD', 'disease': 'not available'}, 'GSM1861850': {'subtype': 'naive CD31- CD4+', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1861851': {'subtype': 'naive CD31+ CD4+', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1279772': {'transfection': 'LSD1 siRNA transfection', 'type': 'LNCaP', 'passage': '14-17'}, 'GSM2287641': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2303249': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2287643': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287644': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1861852': {'subtype': 'naive CD31+ CD4+', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM2287646': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287647': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287648': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287649': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM811631': {'type': 'Polarbody_single', 'strategy': 'Sigma-Aldrich WTA2'}, 'GSM811630': {'type': 'Polarbody_single', 'strategy': 'Sigma-Aldrich WTA2'}, 'GSM2303247': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303246': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303245': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'None/Other', 'id': 'ACJV399'}, 'GSM2303244': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2082542': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2136550': {'line': 'SHEP Tet-21/N neuroblastoma cell line', 'protocol': 'LSD1 inhibitor, TCP (tranylcypromine)'}, 'GSM701870': {'vendor': 'Millipore', 'line': 'MDA-MB-231', 'antibody': 'HP1 gamma', 'number': '05-690', 'numbers': '1501782 and 17908001'}, 'GSM2123956': {}, 'GSM2082543': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2458969': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.42'}, 'GSM2458968': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.58'}, 'GSM2458963': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.92'}, 'GSM2458962': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.17'}, 'GSM2458961': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '7.58'}, 'GSM2458960': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '4.50'}, 'GSM2458967': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '11.58'}, 'GSM2458966': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.08'}, 'GSM2458965': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.75'}, 'GSM2458964': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.42'}, 'GSM2760239': {'transfection': 'Control', 'type': 'NCC'}, 'GSM2760238': {'transfection': 'Control', 'type': 'NCC'}, 'GSM2760235': {'transfection': 'FGFR1(SP-/NLS+)(TK-)', 'type': 'NPC'}, 'GSM2760234': {'transfection': 'FGFR1(SP-/NLS+)(TK-)', 'type': 'NPC'}, 'GSM2760237': {'transfection': 'Control', 'type': 'NCC'}, 'GSM2760236': {'transfection': 'FGFR1(SP-/NLS+)(TK-)', 'type': 'NPC'}, 'GSM2760231': {'transfection': 'Control', 'type': 'NPC'}, 'GSM2760233': {'transfection': 'Control', 'type': 'NPC'}, 'GSM2760232': {'transfection': 'Control', 'type': 'NPC'}, 'GSM2454026': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM1896089': {'individual': 'AF19', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1866082': {'line': 'Gliobmastoma cell line'}, 'GSM1866083': {'line': 'Gliobmastoma cell line'}, 'GSM1896081': {'individual': 'AF11', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896083': {'individual': 'AF11', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896082': {'individual': 'AF11', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896085': {'individual': 'AF17', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1866080': {'line': 'Gliobmastoma cell line'}, 'GSM1896087': {'individual': 'AF19', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896086': {'individual': 'AF17', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1087883': {'labexpid': '13279', 'line': 'GM12878'}, 'GSM1087882': {'labexpid': '13278', 'line': 'GM12878'}, 'GSM1087881': {'labexpid': '13277', 'line': 'GM12878'}, 'GSM2664356': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1087887': {'labexpid': '13285', 'line': 'GM12878'}, 'GSM1087886': {'labexpid': '13284', 'line': 'GM12878'}, 'GSM1087885': {'labexpid': '13283', 'line': 'GM12878'}, 'GSM1087884': {'labexpid': '13282', 'line': 'GM12878'}, 'GSM1866086': {'line': 'Gliobmastoma cell line'}, 'GSM1087889': {'labexpid': '13287', 'line': 'GM12878'}, 'GSM1087888': {'labexpid': '13286', 'line': 'GM12878'}, 'GSM2664359': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664358': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1866087': {'line': 'Gliobmastoma cell line'}, 'GSM1866084': {'line': 'Gliobmastoma cell line'}, 'GSM1866085': {'line': 'Gliobmastoma cell line'}, 'GSM3190868': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.182876'}, 'GSM1681979': {'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'Msi1 KD'}, 'GSM2454025': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM1681978': {'line': 'U251', 'type': 'glioblastoma cells', 'variation': 'Msi1 KD'}, 'GSM2816042': {'line': 'H9'}, 'GSM2816043': {'line': 'H9'}, 'GSM2816040': {'line': 'H9'}, 'GSM2816041': {'line': 'H9'}, 'GSM2816046': {'line': 'H9'}, 'GSM2816047': {'line': 'H9'}, 'GSM2816044': {'line': 'H9'}, 'GSM2816045': {'line': 'H9'}, 'GSM2816048': {'line': 'H9'}, 'GSM2816049': {'line': 'H9'}, 'GSM1828770': {'type': 'HUVEC', 'treatment': 'EZH2 knock-down', 'condition': 'fluid shear stress 20 dyne/cm^2'}, 'GSM1828771': {'type': 'HUVEC', 'treatment': 'EZH2 knock-down', 'condition': 'fluid shear stress 20 dyne/cm^2'}, 'GSM2123917': {}, 'GSM2123916': {}, 'GSM2195086': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2123914': {}, 'GSM2123913': {}, 'GSM2123912': {}, 'GSM2123911': {}, 'GSM2123910': {}, 'GSM2195088': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195089': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2123919': {}, 'GSM2123918': {}, 'GSM2218828': {'knockdown': 'control', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'TGFβ3, 5 ng/ml, 16h'}, 'GSM2218829': {'knockdown': 'siControl, final 25 nM', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'untreated'}, 'GSM2316892': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316893': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316894': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316895': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316896': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316897': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316898': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316899': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2218826': {'knockdown': 'control', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'untreated'}, 'GSM2218827': {'knockdown': 'control', 'line': 'MCF10A MII', 'type': 'Breast epithelial cell line', 'transformation': 'H-Ras transformed', 'treatment': 'TGFβ3, 5 ng/ml, 1.5h'}, 'GSM1647034': {'illumina_index': '12', 'point': '18', 'batch': '7', 'agent': 'Salm', 'rin': '9.4', 'individual': 'M376'}, 'GSM1647035': {'illumina_index': '13', 'point': '18', 'batch': '7', 'agent': 'Rv+', 'rin': '9.3', 'individual': 'M373'}, 'GSM1647036': {'illumina_index': '14', 'point': '48', 'batch': '7', 'agent': 'Yers', 'rin': '8.9', 'individual': 'M377'}, 'GSM1647037': {'illumina_index': '15', 'point': '4', 'batch': '7', 'agent': 'none', 'rin': '9.7', 'individual': 'M376'}, 'GSM1647030': {'illumina_index': '4', 'point': '18', 'batch': '7', 'agent': 'Rv+', 'rin': '9.1', 'individual': 'M377'}, 'GSM1647031': {'illumina_index': '5', 'point': '4', 'batch': '7', 'agent': 'Smeg', 'rin': '10', 'individual': 'M372'}, 'GSM3289926': {'tissue': 'Knee', 'stage': '17 wks'}, 'GSM2204111': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM3289924': {'tissue': 'Knee', 'stage': '17 wks'}, 'GSM3289925': {'tissue': 'Knee', 'stage': '17 wks'}, 'GSM1647032': {'illumina_index': '6', 'point': '48', 'batch': '7', 'agent': 'Yers', 'rin': '9.7', 'individual': 'M372'}, 'GSM2204110': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2932963': {'pucai': '50', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '14'}, 'GSM2042241': {'type': 'IPS-derived mature hepatocytes', 'line': 'HDF-iPSCs', 'protocol': 'directed in-vitro differentiation'}, 'GSM2042240': {'type': 'IPS-derived immature hepatocytes', 'line': 'HDF-iPSCs', 'protocol': 'directed in-vitro differentiation'}, 'GSM2042243': {'tissue': 'liver from week 18 gestational fetus'}, 'GSM2042242': {'tissue': 'liver from week 17 gestational fetus'}, 'GSM2172294': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2551186': {'type': 'cardiogenic mesoderm (C-ECs)'}, 'GSM1647038': {'illumina_index': '16', 'point': '4', 'batch': '7', 'agent': 'none', 'rin': '8.4', 'individual': 'M374'}, 'GSM1647039': {'illumina_index': '18', 'point': '48', 'batch': '7', 'agent': 'BCG', 'rin': '8.4', 'individual': 'M373'}, 'GSM2204119': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204118': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2431668': {'number': '1_21', 'timepoint': '24h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D5'}, 'GSM2815762': {'line': 'H9'}, 'GSM2815763': {'line': 'H9'}, 'GSM2815760': {'line': 'H9'}, 'GSM2815761': {'line': 'H9'}, 'GSM2815766': {'line': 'H9'}, 'GSM2815767': {'line': 'H9'}, 'GSM2815764': {'line': 'H9'}, 'GSM2815765': {'line': 'H9'}, 'GSM2815768': {'line': 'H9'}, 'GSM2815769': {'line': 'H9'}, 'GSM2477388': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'HTS'}, 'GSM1363459': {'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM1363458': {'antibody': 'none (input)', 'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM2586970': {'with': 'negtive control siRNA(siNC)', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma (HCC)'}, 'GSM2586971': {'with': 'negtive control siRNA(siNC)', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma (HCC)'}, 'GSM2586972': {'with': 'negtive control siRNA(siNC)', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma (HCC)'}, 'GSM2477383': {'type': 'SAEC-Small Airway Epithelial Cells (Lonza CC-2547)', 'agent': 'cytokine + HTS'}, 'GSM1363457': {'antibody': 'none (input)', 'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM1363456': {'antibody': 'none (input)', 'type': 'Mesenchymal stem cell', 'variation': 'WT'}, 'GSM1363455': {'antibody': 'H3K9me3 (Abcam, catalog# ab8898, lot# GR130994-1)'}, 'GSM1363454': {'antibody': 'H3K9me3 (Abcam, catalog# ab8898, lot# GR111948-1)'}, 'GSM2391976': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391977': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1673635': {'differentiation': 'M-CSF', 'protocol': 'No treatment', 'individual': 'Donor 2', 'type': 'macrophage'}, 'GSM2391974': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2431664': {'number': '1_18', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D5'}, 'GSM2391975': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1673637': {'differentiation': 'M-CSF', 'protocol': 'No treatment', 'individual': 'Donor 3', 'type': 'macrophage'}, 'GSM2750952': {'type': 'primed pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2391972': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1673636': {'differentiation': 'M-CSF', 'protocol': 'Additional 51mM NaCl for 24 hours', 'individual': 'Donor 2', 'type': 'macrophage'}, 'GSM2750951': {'type': 'primed pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2391973': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2451303': {'compartment': 'Epithelium', 'id': 'CUMC_029', 'library': 'NuGEN'}, 'GSM2391970': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391971': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2109074': {'treatment': '6 h'}, 'GSM2109075': {'treatment': '6 h'}, 'GSM2109076': {'treatment': '6 h'}, 'GSM2109077': {'treatment': '6 h'}, 'GSM2109070': {'treatment': '3 h'}, 'GSM2109071': {'treatment': '3 h'}, 'GSM2109072': {'treatment': '6 h'}, 'GSM2109073': {'treatment': '6 h'}, 'GSM2197622': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197623': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197620': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197621': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197626': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197627': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197624': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197625': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM1697916': {'differentiation': 'N/A', 'tumor': 'Normal 2'}, 'GSM1697917': {'differentiation': 'N/A', 'tumor': 'Tumor 2'}, 'GSM1697914': {'differentiation': 'N/A', 'tumor': 'Normal 1'}, 'GSM1697915': {'differentiation': 'N/A', 'tumor': 'Tumor 1'}, 'GSM1697912': {'differentiation': 'd0', 'tumor': 'N/A'}, 'GSM1697913': {'differentiation': 'd15', 'tumor': 'N/A'}, 'GSM1697910': {'differentiation': 'd15', 'tumor': 'N/A'}, 'GSM1697911': {'differentiation': 'input', 'tumor': 'N/A'}, 'GSM1697918': {'differentiation': 'N/A', 'tumor': 'N/A'}, 'GSM2226739': {'treatment': \"3'-seq, Control,\"}, 'GSM2226738': {'treatment': \"3'-seq, Control,\"}, 'GSM2226731': {'treatment': 'mRNA with mir92a MIR after TEX 293 cell'}, 'GSM2226730': {'treatment': 'mRNA with let7 MIR after TEX 293 cell'}, 'GSM2226733': {'treatment': 'mRNA with mir92a MIR after TEX 293 cell'}, 'GSM2226732': {'treatment': 'mRNA with mir92a MIR after TEX 293 cell'}, 'GSM2226735': {'treatment': 'mRNA with TEX in 293 cells,'}, 'GSM2157995': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2226737': {'treatment': \"3'-seq, Control,\"}, 'GSM2226736': {'treatment': 'mRNA with TEX in 293 cells,'}, 'GSM1012140': {'donor': 'human breast cancer patient 1', 'draw': '3', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012141': {'donor': 'human breast cancer patient 1', 'draw': '4', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012142': {'donor': 'human breast cancer patient 1', 'draw': '4', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012143': {'donor': 'human breast cancer patient 1', 'draw': '5', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012144': {'donor': 'human breast cancer patient 1', 'draw': '5', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012145': {'donor': 'healthy human donor 1', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012146': {'donor': 'healthy human donor 1', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012147': {'donor': 'healthy human donor 2', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1012148': {'donor': 'healthy human donor 2', 'draw': '1', 'tissue': 'blood', 'by': 'IgG CTC chip'}, 'GSM1012149': {'donor': 'healthy human donor 3', 'draw': '1', 'tissue': 'blood', 'by': 'EPCAM CTC chip'}, 'GSM1111658': {'protocol': 'Hard spin, Washed twice', 'id': '179', 'stage': 'Mature'}, 'GSM1111659': {'protocol': 'Hard spin, Washed twice', 'id': '183', 'stage': 'Mature'}, 'GSM1111652': {'protocol': 'Hard spin, Washed once', 'id': '187', 'stage': 'Colostrum'}, 'GSM1111653': {'protocol': 'Hard spin, Washed once', 'id': '188', 'stage': 'Transitional'}, 'GSM1111650': {'protocol': 'Hard spin, Washed once', 'id': '179', 'stage': 'Transitional'}, 'GSM1111651': {'protocol': 'Hard spin, Washed once', 'id': '183', 'stage': 'Colostrum'}, 'GSM1111656': {'protocol': 'Hard spin, Washed twice', 'id': '168', 'stage': 'Mature'}, 'GSM1111657': {'protocol': 'Soft spin, Unwashed', 'id': '359', 'stage': 'Mature'}, 'GSM1111654': {'protocol': 'Hard spin, Unwashed', 'id': '179', 'stage': 'Mature'}, 'GSM1111655': {'protocol': 'Hard spin, Unwashed', 'id': '183', 'stage': 'Mature'}, 'GSM2038169': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM2098728': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098721': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098720': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098723': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098722': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098725': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098724': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2098727': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098726': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2638000': {'with': 'IL-2 and IL-7', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2638001': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2638002': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2638003': {'with': 'IL-2 and IL-7', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2638004': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2638005': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2638006': {'with': 'IL-2 and IL-7', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2638007': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2638008': {'with': 'none; not cultured', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2638009': {'with': 'IL-2 and IL-7', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM2172128': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048718': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2108385': {'stages': 'myoblast'}, 'GSM2108384': {'stages': 'myoblast'}, 'GSM2108387': {'stages': 'myoblast'}, 'GSM2108386': {'stages': 'myoblast'}, 'GSM2108381': {'stages': 'myoblast'}, 'GSM2108380': {'stages': 'myoblast'}, 'GSM2108383': {'stages': 'myoblast'}, 'GSM2108382': {'stages': 'myoblast'}, 'GSM2108389': {'stages': 'myoblast'}, 'GSM2108388': {'stages': 'myoblast'}, 'GSM2048715': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2047369': {'well': 'D11', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047368': {'well': 'D10', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2048714': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2047365': {'well': 'D07', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047364': {'well': 'D06', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047367': {'well': 'D09', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047366': {'well': 'D08', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047361': {'well': 'D03', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047360': {'well': 'D02', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047363': {'well': 'D05', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047362': {'well': 'D04', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2436493': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436492': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436491': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436490': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436497': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2436496': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2649828': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649829': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649826': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649827': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649824': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649825': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649822': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649823': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649820': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649821': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2048713': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048712': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2361958': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1872960': {'10': 'Non-remitter', 'name': 'HF-37237', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872961': {'10': 'Non-remitter', 'name': 'HF-35642', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872962': {'10': 'Non-remitter', 'name': 'HF-37504', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'NOS'}, 'GSM1872963': {'10': 'Non-remitter', 'name': 'HF-37615', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'NOS'}, 'GSM1872964': {'10': 'Non-remitter', 'name': 'HF-37614', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'NOS'}, 'GSM1668469': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with SFRS11 siRNA.', 'genotype': 'SFRS11 Knock-down'}, 'GSM1872966': {'10': 'Non-remitter', 'name': 'HF-37535', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'NOS'}, 'GSM1872967': {'10': 'Non-remitter', 'name': 'HF-37273', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872968': {'10': 'Non-remitter', 'name': 'HF-37246', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1668465': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with non-targeting siRNA.', 'genotype': 'WT'}, 'GSM1668466': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with non-targeting siRNA.', 'genotype': 'WT'}, 'GSM1668467': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with SMAD3 siRNA.', 'genotype': 'SMAD3 Knock-down'}, 'GSM1668460': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 8 days post induced OSKM viral Expression and treated with SFRS11 siRNA.', 'genotype': 'SFRS11 Knock-down'}, 'GSM1668461': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with SAE1 siRNA.', 'genotype': 'SAE1 Knock-down'}, 'GSM1668462': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 12 days post induced OSKM viral Expression and treated with SAE1 siRNA.', 'genotype': 'SAE1 Knock-down'}, 'GSM1668463': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 8 days post induced OSKM viral Expression and treated with ZMYM2 siRNA.', 'genotype': 'ZMYM2 Knock-down'}, 'GSM2194548': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194549': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194542': {'type': 'mesenchyme', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194543': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194540': {'type': 'acinar', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194541': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194546': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194547': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194544': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194545': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1401355': {'rin': '10', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-09-10'}, 'GSM1401354': {'rin': '9.8', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-09-03'}, 'GSM1401357': {'rin': '9.59', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-10-08'}, 'GSM1401356': {'rin': '8.8', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-10-01'}, 'GSM1401351': {'rin': '9.9', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-08-06'}, 'GSM1401350': {'rin': '9.8', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-07-16'}, 'GSM1401353': {'rin': '8.4', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-08-27'}, 'GSM1401352': {'rin': '7.59', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-08-13'}, 'GSM1401359': {'rin': '9.3', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-10-22'}, 'GSM1401358': {'rin': '9.3', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-10-15'}, 'GSM3104768': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104762': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104763': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104760': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104761': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104766': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104767': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV mutated CLL'}, 'GSM3104764': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104765': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM2125958': {'line': 'IMR5-75', 'treatment': '1µg/ml tetracycline', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '24h'}, 'GSM2125951': {'line': 'IMR5-75', 'treatment': 'ethanol', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '12h'}, 'GSM2125950': {'line': 'IMR5-75', 'treatment': '1µg/ml tetracycline', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '6h'}, 'GSM2125953': {'line': 'IMR5-75', 'treatment': '1µg/ml tetracycline', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '12h'}, 'GSM2125952': {'line': 'IMR5-75', 'treatment': 'ethanol', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '12h'}, 'GSM2125955': {'line': 'IMR5-75', 'treatment': 'ethanol', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '24h'}, 'GSM2125954': {'line': 'IMR5-75', 'treatment': '1µg/ml tetracycline', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '12h'}, 'GSM2125957': {'line': 'IMR5-75', 'treatment': '1µg/ml tetracycline', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '24h'}, 'GSM2125956': {'line': 'IMR5-75', 'treatment': 'ethanol', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '24h'}, 'GSM2307139': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2390812': {'disease': 'Healthy Control'}, 'GSM2390813': {'disease': 'Healthy Control'}, 'GSM2390810': {'disease': 'Healthy Control'}, 'GSM2390811': {'disease': 'Healthy Control'}, 'GSM2390816': {'disease': 'Healthy Control'}, 'GSM2390817': {'disease': 'Healthy Control'}, 'GSM2390814': {'disease': 'Healthy Control'}, 'GSM2390815': {'disease': 'Healthy Control'}, 'GSM2390818': {'disease': 'Healthy Control'}, 'GSM2390819': {'disease': 'Healthy Control'}, 'GSM2307138': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM765387': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8556', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '001N', 'spikeinpool': 'Nist14'}, 'GSM765386': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8532', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '003N', 'spikeinpool': 'Nist14'}, 'GSM2750950': {'type': 'primed pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2228922': {'treatment': '24 h IL-2'}, 'GSM2228923': {'treatment': '24 h IL-2 + 100 micromolar HODHBt'}, 'GSM2228920': {'treatment': '24 h IL-2 + 100 micromolar HODHBt'}, 'GSM2228921': {'treatment': '24 h antiCD3/CD28-coated beads'}, 'GSM2228926': {'treatment': '24 h IL-2 + 100 micromolar HODHBt'}, 'GSM2228927': {'treatment': '24 h antiCD3/CD28-coated beads'}, 'GSM2228924': {'treatment': '24 h antiCD3/CD28-coated beads'}, 'GSM2228925': {'treatment': '24 h IL-2'}, 'GSM2133541': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2307135': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM1953863': {'line': 'UACC257', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM2359219': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '50nM / 250nM', 'drug': 'THZ1 / Crizotinib'}, 'GSM2359218': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '50nM / 250nM', 'drug': 'THZ1 / Crizotinib'}, 'GSM2258219': {'group': 'NF2/Chr22_Loss', 'grade': '1', 'gender': 'M', 'age': '66', 'tissue': 'meningioma', 'histology': 'meningothelial', 'radiated': 'N'}, 'GSM2258218': {'group': 'POLR2A', 'grade': '1', 'gender': 'F', 'age': '67', 'tissue': 'meninges', 'histology': 'meningothelial', 'radiated': 'N'}, 'GSM2258217': {'group': 'NF2/Chr22_Loss', 'grade': '1', 'gender': 'F', 'age': '50', 'tissue': 'meningioma', 'histology': 'fibrous', 'radiated': 'N'}, 'GSM2258216': {'group': 'NF2/Chr22_Loss', 'grade': '1', 'gender': 'M', 'age': '48', 'tissue': 'meningioma', 'histology': 'meningothelial', 'radiated': 'N'}, 'GSM2258215': {'group': 'KLF4/TRAF7', 'grade': '1', 'gender': 'F', 'age': '53', 'tissue': 'meningioma', 'histology': 'secretory', 'radiated': 'N'}, 'GSM2359210': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '200 nM', 'drug': 'GSK1120212'}, 'GSM2359217': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '150nM', 'drug': 'THZ1'}, 'GSM2359216': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '150nM', 'drug': 'THZ1'}, 'GSM2359215': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '150nM', 'drug': 'THZ1'}, 'GSM2359214': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '200 nM', 'drug': 'GSK1120212'}, 'GSM2840392': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2307134': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2840394': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1953865': {'line': 'A375', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM1953864': {'line': 'Hema-LP', 'passages': 'long term culture', 'type': 'normal human melanocytes'}, 'GSM2307137': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2944131': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'ES2'}, 'GSM1945842': {'line': 'MV4-11'}, 'GSM2393566': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '2', 'treatment': 'RNY5 6 hr'}, 'GSM1945840': {'line': 'MV4-11'}, 'GSM1945841': {'line': 'MV4-11'}, 'GSM2393563': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '1', 'treatment': 'RNY5 2 hr'}, 'GSM2393562': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '2', 'treatment': 'RNY5 24 hr'}, 'GSM2393561': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '1', 'treatment': 'RNY5 24 hr'}, 'GSM2393560': {'type': 'long RNA', 'line': 'HUVEC', 'replicate': '2b', 'treatment': 'RNY5 untreated'}, 'GSM1901293': {'treatment': 'VP55 9 day'}, 'GSM1901292': {'treatment': 'GFP 9 day'}, 'GSM1901291': {'treatment': 'GFP 9 day'}, 'GSM1901290': {'treatment': 'VP55 24hr'}, 'GSM1901297': {'treatment': 'VP55+IFN'}, 'GSM1901296': {'treatment': 'GFP+IFN'}, 'GSM2085668': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085669': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085666': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085667': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085664': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085665': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085662': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085663': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085660': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085661': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2307130': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM1874935': {'type': 'Subcortical White Matter'}, 'GSM1874937': {'type': 'Subcortical White Matter'}, 'GSM1874936': {'type': 'Subcortical White Matter'}, 'GSM1874939': {'type': 'Subcortical White Matter'}, 'GSM1874938': {'type': 'Subcortical White Matter'}, 'GSM2262901': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2307133': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2243727': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243726': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243725': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243724': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243723': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A1', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243722': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243721': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243720': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2307132': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2243729': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243728': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1482932': {'status': 'trained', 'point': 'post-training period 1', 'gender': 'female', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '11T2'}, 'GSM2649289': {'status': 'Undifferentiated', 'line': 'CSES7', 'type': 'Embryonic stem cell line', 'treatment': 'GFP Knockdown'}, 'GSM2666069': {'age': 'Day 450', 'well': 'F5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666068': {'age': 'Day 450', 'well': 'G7', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666065': {'age': 'Day 450', 'well': 'B2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666064': {'age': 'Day 450', 'well': 'C6', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666067': {'age': 'Day 450', 'well': 'C10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666066': {'age': 'Day 450', 'well': 'D10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666061': {'age': 'Day 450', 'well': 'B11', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666060': {'age': 'Day 450', 'well': 'G8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666063': {'age': 'Day 450', 'well': 'A2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2666062': {'age': 'Day 450', 'well': 'E10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM1395845': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395844': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395847': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395846': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395841': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395840': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395843': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395842': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395849': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395848': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2262904': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2705331': {'date': '19.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 9', 'dilution': '1:10'}, 'GSM2705330': {'date': '13.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 8', 'dilution': '1:10'}, 'GSM2705333': {'date': '19.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 11', 'dilution': '1:10'}, 'GSM2705332': {'date': '19.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 10', 'dilution': '1:10'}, 'GSM2705335': {'date': '19.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 14', 'dilution': '1:10'}, 'GSM2705334': {'date': '19.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 13', 'dilution': '1:10'}, 'GSM2705337': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 1', 'dilution': '1:10'}, 'GSM2705336': {'date': '19.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 15', 'dilution': '1:10'}, 'GSM2705339': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 3', 'dilution': '1:10'}, 'GSM2705338': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 2', 'dilution': '1:10'}, 'GSM2360020': {'induction': 'Osteoblast differentiation', 'treatment': 'siCon'}, 'GSM2360021': {'induction': 'Osteoblast differentiation', 'treatment': 'siCHD1'}, 'GSM2360022': {'induction': 'Undifferentiated', 'treatment': 'siCHD2'}, 'GSM2391951': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1518070': {'culture': 'OP9-GFP'}, 'GSM1427139': {'shRNA': 'shEZH2', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM2170474': {'stage': 'Definitive endoderm 1'}, 'GSM2170475': {'stage': 'Definitive endoderm 1'}, 'GSM2170476': {'stage': 'Definitive endoderm 1'}, 'GSM2170477': {'stage': 'Definitive endoderm 1'}, 'GSM2170470': {'stage': 'Definitive endoderm 1'}, 'GSM2170471': {'stage': 'Definitive endoderm 1'}, 'GSM2199518': {'age': '28', 'tissue': 'Liver', 'bmi': '50.1'}, 'GSM2170473': {'stage': 'Definitive endoderm 1'}, 'GSM2199516': {'age': '56', 'tissue': 'Liver', 'bmi': '44.8'}, 'GSM2199517': {'age': '28', 'tissue': 'Liver', 'bmi': '47.0'}, 'GSM2199514': {'age': '41', 'tissue': 'Liver', 'bmi': '39.0'}, 'GSM2199515': {'age': '37', 'tissue': 'Liver', 'bmi': '47.5'}, 'GSM2170478': {'stage': 'Definitive endoderm 1'}, 'GSM2170479': {'stage': 'Definitive endoderm 1'}, 'GSM2181591': {'cell_line': 'HCC1143', 'cell_type': 'basal-like breast cancer', 'treatment': 'Trametinib and BEZ235'}, 'GSM2181590': {'cell_line': 'HCC1143', 'cell_type': 'basal-like breast cancer', 'treatment': 'BEZ235'}, 'GSM3594356': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594357': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594354': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594355': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594352': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594353': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594350': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594351': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1965123': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965122': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965121': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965120': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965127': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965126': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965125': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM3594359': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1872965': {'10': 'Non-remitter', 'name': 'HF-37276', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1626509': {'tissue': 'placental villus parenchyma'}, 'GSM1626508': {'tissue': 'placental villus parenchyma'}, 'GSM2630228': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405846'}, 'GSM2630229': {'line': 'NCI-H358', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM1626501': {'tissue': 'placental villus parenchyma'}, 'GSM1626500': {'tissue': 'placental villus parenchyma'}, 'GSM1626503': {'tissue': 'placental villus parenchyma'}, 'GSM1626502': {'tissue': 'placental villus parenchyma'}, 'GSM1626505': {'tissue': 'placental villus parenchyma'}, 'GSM1626504': {'tissue': 'placental villus parenchyma'}, 'GSM1626507': {'tissue': 'placental villus parenchyma'}, 'GSM1626506': {'tissue': 'placental villus parenchyma'}, 'GSM2338047': {'line': 'U2OS', 'type': 'S-phase cells'}, 'GSM2338046': {'line': 'U2OS', 'type': 'S-phase cells'}, 'GSM2338045': {'line': 'U2OS', 'type': 'S-phase cells'}, 'GSM2338044': {'line': 'U2OS', 'type': 'S-phase cells'}, 'GSM2338043': {'line': 'U2OS', 'type': 'non-released cells'}, 'GSM2338042': {'line': 'U2OS', 'type': 'non-released cells'}, 'GSM2338041': {'line': 'U2OS', 'type': 'non-released cells'}, 'GSM2338040': {'line': 'U2OS', 'type': 'non-released cells'}, 'GSM2338048': {'line': 'U2OS', 'type': 'S-phase cells'}, 'GSM2677359': {'replicate': 'A', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'white-tufted ear marmoset FOXP2 cDNA'}, 'GSM2677358': {'replicate': 'A', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'human FOXP2 cDNA'}, 'GSM2100600': {'type': 'human cervical cancer cell line'}, 'GSM2100601': {'type': 'human cervical cancer cell line'}, 'GSM2100602': {'type': 'human cervical cancer cell line'}, 'GSM2100603': {'type': 'human cervical cancer cell line'}, 'GSM2100604': {'type': 'human cervical cancer cell line'}, 'GSM2677357': {'replicate': 'A', 'line': 'SH-SY5Y', 'type': 'neuroblastoma cells', 'state': 'empty expression vector (pcDNA-3)'}, 'GSM2390759': {'disease': 'Healthy Control'}, 'GSM2259844': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'None', 'cells': 'Unknown'}, 'GSM1574089': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '38', 'treatment': 'none'}, 'GSM1234238': {'replicate': '2', 'line': 'MS1', 'antibody': 'SA1'}, 'GSM1613650': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1234230': {'replicate': '1', 'line': 'MS1', 'antibody': 'H3K4me1'}, 'GSM2390755': {'disease': 'Healthy Control'}, 'GSM1234232': {'replicate': '1', 'line': 'MS1', 'antibody': 'H3K4me3'}, 'GSM1234233': {'replicate': '2', 'line': 'MS1', 'antibody': 'H3K4me3'}, 'GSM1234234': {'replicate': '1', 'line': 'MS1', 'antibody': 'Input'}, 'GSM1234235': {'replicate': '1', 'line': 'MS1', 'antibody': 'RNA-seq'}, 'GSM1234236': {'replicate': '2', 'line': 'MS1', 'antibody': 'RNA-seq'}, 'GSM1234237': {'replicate': '1', 'line': 'MS1', 'antibody': 'SA1'}, 'GSM2071232': {'treatment': 'Ethanol'}, 'GSM2071233': {'treatment': 'Ethanol'}, 'GSM2071230': {'treatment': '10nM E2'}, 'GSM2071231': {'treatment': '10nM E2'}, 'GSM2071236': {'treatment': '10nM E2'}, 'GSM2071234': {'treatment': 'Ethanol'}, 'GSM2071235': {'treatment': '10nM E2'}, 'GSM2036528': {'gender': 'Male', 'age': '70', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2632688': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM1274270': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '48hr'}, 'GSM3059098': {'type': 'Lung progenitors'}, 'GSM2107371': {'line': 'IMR5-75', 'type': 'neuroblastoma'}, 'GSM2632681': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632682': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632683': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632684': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632685': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632686': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632687': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142501': {'gender': 'female', 'age': '83', 'who': '1', 'dead': '1', 'date': '2011-12-31', 'histology': '2', 'tnm': '5', 'smoking': '3'}, 'GSM2341169': {'state': 'endometriosis', 'individual': 'patient 3', 'type': 'cell culture of endometriotic stromal cells', 'sites': 'Ectopic endometriotic stroma : ovary'}, 'GSM2142503': {'code': '404'}, 'GSM1274273': {'origin': 'Ovarian cancer', 'line': 'epithelial ovarian cancer cell line A2780', 'stress': 'control', 'time': '6days'}, 'GSM2142505': {'gender': 'male', 'age': '76', 'who': '1', 'dead': '1', 'date': '2009-12-28', 'histology': '3', 'tnm': '2', 'smoking': '3'}, 'GSM2142504': {'gender': 'male', 'age': '58', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142507': {'gender': 'male', 'age': '74', 'who': '0', 'dead': '1', 'date': '2008-03-26', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142506': {'gender': 'male', 'age': '75', 'who': '0', 'dead': '1', 'date': '2011-03-19', 'histology': '3', 'tnm': '1', 'smoking': '1'}, 'GSM2142509': {'gender': 'male', 'age': '67', 'who': '0', 'dead': '1', 'date': '2010-03-04', 'histology': '1', 'tnm': '3', 'smoking': '2'}, 'GSM2142508': {'gender': 'female', 'age': '70', 'who': '2', 'dead': '1', 'date': '2009-07-03', 'histology': '2', 'tnm': '3', 'smoking': '2'}, 'GSM2341167': {'state': 'endometriosis', 'individual': 'patient 1', 'type': 'cell culture of endometriotic stromal cells', 'sites': 'Ectopic endometriotic stroma : ovary'}, 'GSM3579323': {'type': 'Immortalized human mammary epithelial cells', 'treatment': 'plus 4OH-tamoxifen', 'construct': 'ER'}, 'GSM1886859': {'line': 'SUDHL4', 'treatment': 'treated with DMSO for 12h'}, 'GSM1886858': {'line': 'SUDHL4', 'treatment': 'treated with DMSO for 12h'}, 'GSM2829957': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1693053': {'line': 'SMU159PT-MDA-MB-231', 'type': 'Heterofusion'}, 'GSM1693052': {'line': 'SUM159CAL51', 'type': 'Heterofusion'}, 'GSM1693051': {'line': 'SUM159PT-21NT', 'type': 'Heterofusion'}, 'GSM1693050': {'line': 'MDA-MB-453', 'type': 'Luminal cells'}, 'GSM1693056': {'line': 'ZR75-1', 'type': 'Luminal cells'}, 'GSM1693055': {'line': 'SUM159PT-ZR75-1', 'type': 'Heterofusion'}, 'GSM1693054': {'line': 'SUM159PT-MDA-MB-453', 'type': 'Heterofusion'}, 'GSM2317030': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2829951': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1084060': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1084061': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'arsenite', 'manufacturer': 'Abnova'}, 'GSM785402': {'type': 'testicular germ', 'normal': 'normal'}, 'GSM1084063': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'arsenite', 'manufacturer': 'Abnova'}, 'GSM1084064': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM785405': {'type': 'testicular germ', 'normal': 'cancer'}, 'GSM1084066': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Santa Cruz'}, 'GSM1084067': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'emetine', 'manufacturer': 'Santa Cruz'}, 'GSM785408': {'type': 'testicular germ', 'normal': 'normal'}, 'GSM785409': {'type': 'testicular germ', 'normal': 'cancer'}, 'GSM1273648': {'antibody': 'H3K4me2(abcam, ab32356)', 'type': 'hESC derived anterior primitive streak (APS)'}, 'GSM1273649': {'antibody': 'H3K4me3 (abcam, ab8580)', 'type': 'hESC derived anterior primitive streak (APS)'}, 'GSM1273644': {'antibody': 'H3K4me3 (abcam, ab8580)', 'type': 'H7 - Embryonic stem cell'}, 'GSM1273645': {'antibody': 'H3K27ac (abcam, ab4729)', 'type': 'H7 - Embryonic stem cell'}, 'GSM1273646': {'antibody': 'H3K27me3 (Millipore/upstate , 07-449 )', 'type': 'H7 - Embryonic stem cell'}, 'GSM1273647': {'antibody': 'none', 'type': 'hESC derived anterior primitive streak (APS)'}, 'GSM1273640': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273641': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273642': {'antibody': 'none', 'type': 'H7 - Embryonic stem cell'}, 'GSM1273643': {'antibody': 'H3K4me2(abcam, ab32356)', 'type': 'H7 - Embryonic stem cell'}, 'GSM2232099': {'status': 'yes', 'gender': 'male', 'age': '70', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IIIA'}, 'GSM2232098': {'status': 'yes', 'gender': 'female', 'age': '76', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IB'}, 'GSM2232091': {'status': 'yes', 'gender': 'male', 'age': '67', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IB'}, 'GSM2232090': {'line': 'Caco-2', 'treatment': 'C. concisus UNSWCD infection'}, 'GSM2232093': {'status': 'yes', 'gender': 'female', 'age': '76', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IA'}, 'GSM2232092': {'status': 'no', 'gender': 'male', 'age': '75', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IB'}, 'GSM2232095': {'status': 'yes', 'gender': 'male', 'age': '78', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IA'}, 'GSM2232094': {'status': 'yes', 'gender': 'male', 'age': '64', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IA'}, 'GSM2232097': {'status': 'yes', 'gender': 'male', 'age': '67', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IB'}, 'GSM2232096': {'status': 'yes', 'gender': 'male', 'age': '73', 'state': 'lung SCC', 'tissue': 'resected tumor', 'stage': 'IA'}, 'GSM2805338': {'status': 'Healthy', 'gender': 'male', 'age': '59', 'timepoint': 'D2_ZT_15:30'}, 'GSM2805339': {'status': 'Healthy', 'gender': 'male', 'age': '59', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805334': {'status': 'Healthy', 'gender': 'male', 'age': '40', 'timepoint': 'D2_ZT_15:30'}, 'GSM2805335': {'status': 'Healthy', 'gender': 'male', 'age': '40', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805336': {'status': 'Healthy', 'gender': 'male', 'age': '40', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805337': {'status': 'Healthy', 'gender': 'male', 'age': '40', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805330': {'status': 'Healthy', 'gender': 'male', 'age': '59', 'timepoint': 'D2_ZT_15:30'}, 'GSM2805331': {'status': 'Healthy', 'gender': 'male', 'age': '59', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805332': {'status': 'Healthy', 'gender': 'male', 'age': '59', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805333': {'status': 'Healthy', 'gender': 'male', 'age': '59', 'timepoint': 'D3_ZT_11:15'}, 'GSM2576222': {'tissue': 'breast cancer xenograft'}, 'GSM2576221': {'tissue': 'breast cancer xenograft'}, 'GSM2576220': {'tissue': 'breast cancer xenograft'}, 'GSM2752548': {'line': 'LU65', 'agent': 'DMSO treated'}, 'GSM2752549': {'line': 'LU65', 'agent': 'DMSO treated'}, 'GSM2367474': {'point': '2h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'ACAGTG', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'siDDX54'}, 'GSM2752542': {'line': 'NCI-H358', 'agent': 'shRNA Luciferase control'}, 'GSM2752543': {'line': 'NCI-H358', 'agent': 'shRNA KRAS #1 hairpin'}, 'GSM2752540': {'line': 'NCI-H358', 'agent': 'ARS-1620 treated 1uM'}, 'GSM2367475': {'point': '0h post irradiation', 'type': 'breast carcinoma epithelial cell line', 'barcode': 'CTTGTA', 'subtype': '4SU+ RNA', 'line': 'MCF-7', 'with': 'siDDX54'}, 'GSM2752546': {'line': 'NCI-H358', 'agent': 'trametinib treated 50nM'}, 'GSM2752547': {'line': 'LU65', 'agent': 'DMSO treated'}, 'GSM2752544': {'line': 'NCI-H358', 'agent': 'shRNA KRAS #2 hairpin'}, 'GSM2752545': {'line': 'NCI-H358', 'agent': 'shRNA KRAS #2 hairpin'}, 'GSM2562631': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2616377': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616374': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2562632': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562635': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2616373': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616370': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616371': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2562639': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562638': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2616378': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616379': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2543601': {'library_id': 'lib5714', 'stim': 'TT', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511557': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2543603': {'library_id': 'lib5716', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543602': {'library_id': 'lib5715', 'stim': 'DM', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543605': {'library_id': 'lib5718', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543604': {'library_id': 'lib5717', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511550': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2511551': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2543609': {'library_id': 'lib5722', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543608': {'library_id': 'lib5721', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1684865': {'line': 'SCC15'}, 'GSM2511558': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2511559': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'CD active'}, 'GSM2011589': {'tissue': 'triple negative breast cancer', 'variation': 'wild type'}, 'GSM1338291': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM2257838': {'with': 'DMSO, vehicle control', 'line': 'OCI-AML2', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257839': {'with': 'EPZ004777, DOT1L inhibitor', 'line': 'OCI-AML2', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257836': {'with': 'DMSO, vehicle control', 'line': 'OCI-AML2', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257837': {'with': 'DMSO, vehicle control', 'line': 'OCI-AML2', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257834': {'with': 'EPZ004777, DOT1L inhibitor', 'line': 'OCI-AML3', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257835': {'with': 'EPZ004777, DOT1L inhibitor', 'line': 'OCI-AML3', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257832': {'with': 'DMSO, vehicle control', 'line': 'OCI-AML3', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257833': {'with': 'EPZ004777, DOT1L inhibitor', 'line': 'OCI-AML3', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257830': {'with': 'DMSO, vehicle control', 'line': 'OCI-AML3', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257831': {'with': 'DMSO, vehicle control', 'line': 'OCI-AML3', 'type': 'Acute myeloid leukemia cell line'}, 'GSM1703727': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703726': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703725': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703724': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703723': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703722': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703721': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703720': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703729': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703728': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM2051665': {'subtype': 'adenocarcinoma', 'line': 'H358', 'metastasis': 'not tested', 'knockdown': 'GNF5'}, 'GSM2051664': {'subtype': 'adenocarcinoma', 'line': 'H358', 'metastasis': 'not tested', 'knockdown': 'DMSO'}, 'GSM2051663': {'subtype': 'adenocarcinoma', 'line': 'PC9M', 'metastasis': 'more bone-brain metastasis', 'knockdown': 'ABL1/ABL2-specific shRNAs'}, 'GSM2051662': {'subtype': 'adenocarcinoma', 'line': 'PC9M', 'metastasis': 'more bone-brain metastasis', 'knockdown': 'scrambled shRNA'}, 'GSM2051661': {'subtype': 'adenocarcinoma', 'line': 'PC9M', 'metastasis': 'more bone-brain metastasis', 'knockdown': 'GNF5'}, 'GSM2051660': {'subtype': 'adenocarcinoma', 'line': 'PC9M', 'metastasis': 'more bone-brain metastasis', 'knockdown': 'DMSO'}, 'GSM2155015': {'replicate': '3', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '24hr'}, 'GSM2155014': {'replicate': '2', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '24hr'}, 'GSM2155013': {'replicate': '1', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '24hr'}, 'GSM2155012': {'replicate': '3', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '2hr'}, 'GSM2155011': {'replicate': '2', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '2hr'}, 'GSM2155010': {'replicate': '1', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '2hr'}, 'GSM2305784': {'tissue': 'colon'}, 'GSM2305785': {'tissue': 'colon'}, 'GSM2305786': {'tissue': 'colon'}, 'GSM2305787': {'tissue': 'colon'}, 'GSM1599212': {'line': 'CSC_shH1.0-2', 'treatment': 'washDOX (4d after Dox removal)'}, 'GSM1599213': {'line': 'CSC_shH1.0-2', 'treatment': 'washDOX (4d after Dox removal)'}, 'GSM2305782': {'tissue': 'colon'}, 'GSM2305783': {'tissue': 'colon'}, 'GSM2720316': {'passages': 'p10', 'type': 'MSC'}, 'GSM2720317': {'passages': 'p10', 'type': 'MSC'}, 'GSM2305788': {'tissue': 'colon'}, 'GSM2305789': {'tissue': 'colon'}, 'GSM3190525': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'No', 'visit': 'None', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'M', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', '4': 'No', '2': 'No', 'years': '9', 'libcounts': '7.154524', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM3190524': {'boca': 'Yes', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.272543'}, 'GSM3190527': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.451548'}, 'GSM3190526': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.441603'}, 'GSM3190521': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'Yes', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.319083'}, 'GSM3190520': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.808674'}, 'GSM3190523': {'boca': 'Yes', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.82612'}, 'GSM3190522': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.443738'}, 'GSM2251220': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM3190529': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C8', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.095424'}, 'GSM3190528': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.017203'}, 'GSM2573300': {'age': 'fetal', 'type': 'primary astrocytes', 'treatment': 'none'}, 'GSM1900345': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': 'Veh', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM2195163': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195162': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195161': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195160': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195167': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195166': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195165': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195164': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195169': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195168': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1915600': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915603': {'donorid': '6792', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915602': {'donorid': '6792', 'type': 'primary human blood cell from fresh sample'}, 'GSM1620679': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620678': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620671': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620670': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620673': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620672': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620675': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620674': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620677': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620676': {'type': 'MCF10a human breast cancer cells'}, 'GSM1915609': {'donorid': '7256', 'type': 'primary human blood cell from fresh sample'}, 'GSM1908818': {'tissue': 'CD34+ HSPCs', 'stage': 'bone marrow'}, 'GSM1908819': {'tissue': 'CD34+ HSPCs', 'stage': 'bone marrow'}, 'GSM1908816': {'tissue': 'CD34+ HSPCs', 'stage': 'bone marrow'}, 'GSM1908817': {'tissue': 'CD34+ HSPCs', 'stage': 'bone marrow'}, 'GSM1908814': {'tissue': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'fetal liver'}, 'GSM1908815': {'tissue': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'fetal liver'}, 'GSM1908812': {'tissue': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'fetal liver'}, 'GSM1908813': {'tissue': 'CD34+ HSPC-derived proerythroblasts', 'stage': 'fetal liver'}, 'GSM1908810': {'tissue': 'CD34+ HSPCs', 'stage': 'fetal liver'}, 'GSM1908811': {'tissue': 'CD34+ HSPCs', 'stage': 'fetal liver'}, 'GSM1695891': {'age': '45', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695890': {'age': '39', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695893': {'age': '52', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1369953': {'vendor': 'Abcam', 'antibody': 'H3K36me3', 'type': 'MCF10A'}, 'GSM1369954': {'vendor': 'Millipore', 'antibody': 'H3K27me3', 'type': 'MCF10A'}, 'GSM1369955': {'vendor': 'Abcam', 'antibody': 'HP1', 'type': 'MCF10A'}, 'GSM1369956': {'vendor': 'Diagenode', 'antibody': '5metC', 'type': 'MCF10A'}, 'GSM1369957': {'vendor': 'Abcam', 'antibody': 'RNAPII', 'type': 'MCF10A'}, 'GSM1369958': {'vendor': 'Monoclonal anti-AGO1', 'antibody': 'AGO1-4B8', 'type': 'MCF7'}, 'GSM1369959': {'vendor': 'Monoclonal anti-AGO1', 'antibody': 'AGO1-4B8', 'type': 'MCF10A'}, 'GSM900483': {'state': 'Tetralogy of Fallot (TOF)', 'tissue': 'heart, right ventricle'}, 'GSM1297578': {'stage': 'late basophilic erythroblasts'}, 'GSM1297579': {'stage': 'polychromatophilic erythroblasts'}, 'GSM1297576': {'stage': 'proerythroblasts'}, 'GSM1297577': {'stage': 'early basophilic erythroblasts'}, 'GSM2492568': {'tissue': 'cord blood in artificial thymic organoid', 'type': 'ATO-derived naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8SP', 'method': 'Sorted CB CD34+CD3- HSPCs were cultured in MS5-hDLL1 ATOs for 6-8 weeks followed by FACS sorting for the indicated phenotype'}, 'GSM2248124': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM1556628': {'state': 'asthma', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM3594472': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM2898240': {'donor': 'P4_Healthy', 'point': '46H', 'number': '10k_cells', 'exposure': 'no_TLR'}, 'GSM3594471': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM1375531': {'line': 'HeLa', 'treatment': '3 h DRB 8 min 4sU', 'time': '8 min'}, 'GSM1375530': {'line': 'HeLa', 'treatment': '3 h DRB 8 min 4sU', 'time': '8 min'}, 'GSM763413': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763412': {'line': 'OCI-LY1', 'antibody': 'H3K79me2'}, 'GSM763411': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM3594470': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM763417': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763416': {'line': 'OCI-LY1', 'antibody': 'H3K36me3'}, 'GSM763415': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763414': {'line': 'OCI-LY1', 'antibody': 'H3K27me3'}, 'GSM763419': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763418': {'line': 'OCI-LY1', 'antibody': 'H3K9Ac'}, 'GSM1556624': {'state': 'asthma', 'tissue': 'lung', 'type': 'bronchial smooth muscle cells'}, 'GSM1901509': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901508': {'count': '1', 'ercc_mix': 'mix2', 'type': 'duct', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2248122': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Control', 'dose': 'Control'}, 'GSM1901503': {'count': '1', 'ercc_mix': 'mix2', 'type': 'NA', 'ercc_dilution': '1000000', 'pass': 'FALSE'}, 'GSM1901502': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2108509': {'stages': 'myotube nucleus'}, 'GSM1901500': {'count': '1', 'ercc_mix': 'mix2', 'type': 'NA', 'ercc_dilution': '1000000', 'pass': 'FALSE'}, 'GSM1901507': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901506': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901505': {'count': '1', 'ercc_mix': 'mix2', 'type': 'undefined', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901504': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2304699': {'antibody': 'Myc antibody (Cell Signaling Technology, 9402S)', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells'}, 'GSM2304698': {'antibody': 'none (input)', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells'}, 'GSM2304693': {'type': '22Rv1', 'treatment': 'FBS'}, 'GSM2304695': {'with': 'non-targeting control shRNA', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells'}, 'GSM2304694': {'type': '22Rv1', 'treatment': 'DHT'}, 'GSM2304697': {'with': 'MEN1 shRNAs', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells'}, 'GSM2304696': {'with': 'MYC shRNAs', 'line': 'HT1080', 'type': 'Human fibrosarcoma cells'}, 'GSM2028278': {'line': 'H9', 'antibody': 'N/A', 'treatment': 'none', 'passage': '58-60'}, 'GSM1428518': {'culture': 'day 30 of differentiation', 'type': 'monolayer cardiomyocytes', 'treatment': 'no ischemia', 'variation': 'WT'}, 'GSM2028274': {'line': 'H9', 'antibody': 'anti-UBTF (Millipore # MABE195)', 'treatment': 'none', 'passage': '58-60'}, 'GSM2028275': {'line': 'H9', 'antibody': 'anti-UBTF (Millipore # MABE195)', 'treatment': '50 ng/mL Activin A for 6 hours', 'passage': '58-60'}, 'GSM2028276': {'line': 'H9', 'antibody': 'Mouse IgG (Millipore #12-371)', 'treatment': 'none', 'passage': '58-60'}, 'GSM1428519': {'culture': 'day 30 of differentiation', 'type': 'monolayer cardiomyocytes', 'treatment': 'no ischemia', 'variation': 'WT'}, 'GSM1632596': {'stimulation': 'TLR2 stimulated'}, 'GSM2756634': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756635': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756636': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756637': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756630': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756631': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756632': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756633': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756638': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2756639': {'line': 'H1 hESC WA01/NIH Reg. No 0043', 'type': 'human embryonic stem cells', 'name': 'WA01', 'number': '0043'}, 'GSM2678109': {'subtype': 'Myometrium', 'age': '44', 'tissue': 'uterus', 'ethinity': 'Hispanic'}, 'GSM2311940': {'culture': '12', 'line': 'DCX+'}, 'GSM2678105': {'subtype': 'Myometrium', 'age': '46', 'tissue': 'uterus', 'ethinity': 'Hispanic'}, 'GSM1382042': {'line': 'HCT116', 'type': 'human colon cancer cells'}, 'GSM2678106': {'subtype': 'Leiomyoma', 'age': '46', 'tissue': 'uterus', 'ethinity': 'Hispanic'}, 'GSM2374803': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2882410': {'patient': '5', 'tissue': 'Skin biopsy', 'group': 'normal skin from control individuals (NN)'}, 'GSM2882411': {'patient': '6', 'tissue': 'Skin biopsy', 'group': 'normal skin from control individuals (NN)'}, 'GSM2882412': {'patient': '7', 'tissue': 'Skin biopsy', 'group': 'normal skin from control individuals (NN)'}, 'GSM2882413': {'patient': '8', 'tissue': 'Skin biopsy', 'group': 'normal skin from control individuals (NN)'}, 'GSM2374800': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM1698562': {'donors': '1', 'vendor': 'Biochain', 'gender': 'Female', 'age': '37 weeks old', 'isolate': 'Lot no.: B207218', 'tissue': 'Colon'}, 'GSM1698563': {'donors': '1', 'vendor': 'Agilent', 'gender': 'Female', 'age': '73 years old', 'isolate': 'Lot no.: 0006097996', 'tissue': 'Heart'}, 'GSM1698560': {'donors': '1', 'vendor': 'Biochain', 'gender': 'Male', 'age': '24 weeks old', 'isolate': 'Lot no.: B303126', 'tissue': 'Stomach'}, 'GSM1698561': {'donors': '1', 'vendor': 'Agilent', 'gender': 'Female', 'age': '20 weeks gestation', 'isolate': 'Lot no.: 0006071667', 'tissue': 'Colon'}, 'GSM1698566': {'donors': '1', 'vendor': 'Biochain', 'gender': 'Male', 'age': '20 years old', 'isolate': 'Lot no.:B307203', 'tissue': 'Lung'}, 'GSM1698567': {'donors': '3', 'vendor': 'Agilent', 'gender': 'pooled male and female', 'age': '30, 44 and 55 years', 'isolate': 'Lot no.: 0006063161', 'tissue': 'Liver'}, 'GSM1382044': {'line': 'HCT116', 'type': 'human colon cancer cells'}, 'GSM1698565': {'donors': '1', 'vendor': 'Agilent', 'gender': 'Female', 'age': '40 years old', 'isolate': 'Lot no.: 0006106003', 'tissue': 'Lung'}, 'GSM1698568': {'donors': '1', 'vendor': 'Biochain', 'gender': 'Male', 'age': '64 years old', 'isolate': 'Lot no.: B510092', 'tissue': 'Liver'}, 'GSM1698569': {'donors': '1', 'vendor': 'Agilent', 'gender': 'Female', 'age': '76 years old', 'isolate': 'Lot no.: 0006068269', 'tissue': 'Kidney'}, 'GSM2410332': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'p.P177L EBF3'}, 'GSM2204791': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1931342': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM1931343': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM1931340': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM2410331': {'line': 'SK-N-SH (ATCC HTB-11)', 'expression': 'p.P177L EBF3'}, 'GSM1931344': {'tissue': 'tumor', 'diagnosis': 'Renal cell carcinoma'}, 'GSM1561621': {'type': 'Uninvolved skin'}, 'GSM1261904': {'type': 'induced pluripotent stem cells', 'disease': 'Control (euploid)'}, 'GSM1261905': {'type': 'induced pluripotent stem cells', 'disease': 'Control (euploid)'}, 'GSM1261906': {'type': 'induced pluripotent stem cells', 'disease': 'Trisomy 21'}, 'GSM1261907': {'type': 'induced pluripotent stem cells', 'disease': 'Trisomy 21'}, 'GSM2455865': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1261901': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'surrounding normal lung (nor)', 'id': '6'}, 'GSM1261902': {'type': 'induced pluripotent stem cells', 'disease': 'Control (euploid)'}, 'GSM1261903': {'type': 'induced pluripotent stem cells', 'disease': 'Control (euploid)'}, 'GSM2455869': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455868': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1261908': {'type': 'induced pluripotent stem cells', 'disease': 'Trisomy 21'}, 'GSM2431636': {'number': '2_33', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D2', 'concentration': '100ng/ml'}, 'GSM2431637': {'number': '2_32', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_24h', 'donor': 'D2', 'concentration': '10μM'}, 'GSM2431634': {'number': '2_43', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D2'}, 'GSM2431635': {'number': '2_34', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D2', 'concentration': '10μM'}, 'GSM2431632': {'number': '2_45', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D2', 'concentration': '100ng/ml'}, 'GSM2431633': {'number': '2_44', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_06h', 'donor': 'D2', 'concentration': '10μM'}, 'GSM2431630': {'number': '2_25', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D2'}, 'GSM2431631': {'number': '2_46', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_24h', 'donor': 'D2', 'concentration': '10μM'}, 'GSM2644641': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644640': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644643': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644642': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644644': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2431638': {'number': '2_31', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D2'}, 'GSM2431639': {'number': '2_62', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_24h', 'donor': 'D3', 'concentration': '10μM'}, 'GSM2256192': {'infected': 'common:TSS11541_+_102133421.23-P1P2', 'type': 'U87'}, 'GSM2256193': {'infected': 'Gal4', 'type': 'U87'}, 'GSM2256190': {'infected': 'Gal4', 'type': 'HeLa'}, 'GSM2256191': {'infected': 'common:TSS11541_+_102133389.23-P1P2', 'type': 'U87'}, 'GSM2141708': {'individual': 'EU288', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2256194': {'infected': 'Gal4', 'type': 'U87'}, 'GSM2141709': {'individual': 'EU290', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141706': {'individual': 'EU288', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141707': {'individual': 'EU288', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2501452': {'time': '8 weeks', 'treatment': 'none', 'infection': 'HIV vector', 'Stage': 'latency'}, 'GSM2501453': {'time': '10 weeks', 'treatment': 'none', 'infection': 'mock', 'Stage': 'latency'}, 'GSM2501450': {'time': '6 weeks', 'treatment': 'none', 'infection': 'HIV vector', 'Stage': 'latency'}, 'GSM2501451': {'time': '8 weeks', 'treatment': 'none', 'infection': 'mock', 'Stage': 'latency'}, 'GSM2501456': {'time': '24h', 'treatment': 'DMSO (neg control)', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501457': {'time': '8h', 'treatment': 'SAHA', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501454': {'time': '10 weeks', 'treatment': 'none', 'infection': 'HIV vector', 'Stage': 'latency'}, 'GSM2501455': {'time': '8h', 'treatment': 'DMSO (neg control)', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501458': {'time': '24h', 'treatment': 'SAHA', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2501459': {'time': '8h', 'treatment': 'disulfiram', 'infection': 'HIV vector', 'Stage': 'reactivation'}, 'GSM2877308': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2877309': {'passages': '17', 'line': 'JMSU-1', 'tissue': 'bladder', 'treatment': '0.1% DMSO'}, 'GSM2108504': {'stages': 'myotube nucleus'}, 'GSM2779273': {'line': 'M395', 'type': 'none', 'treatment': 'none'}, 'GSM2779272': {'line': 'M249', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2779271': {'line': 'M249', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM2779270': {'line': 'M249', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM2779276': {'line': 'M395', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2779275': {'line': 'M395', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM2779274': {'line': 'M395', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1395786': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395787': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395784': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395785': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395782': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395783': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395780': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395781': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2204147': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2287520': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2152527': {'line': 'RWPE1', 'expression': 'Control vector'}, 'GSM1395788': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395789': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1171568': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM2359397': {'type': 'Sorted Central Memory CD8', 'id': '3023'}, 'GSM2359395': {'type': 'Sorted Naive CD8', 'id': '3023'}, 'GSM1387943': {'line': 'MRC5'}, 'GSM1387942': {'line': 'MRC5'}, 'GSM1387941': {'line': 'MRC5'}, 'GSM1387940': {'line': 'MRC5'}, 'GSM1562863': {'line': 'CACO-2', 'replicate': '2', 'treatment': 'HMO-grown B. breve'}, 'GSM1562862': {'line': 'CACO-2', 'replicate': '1', 'treatment': 'HMO-grown B. breve'}, 'GSM1562861': {'line': 'CACO-2', 'replicate': '3', 'treatment': 'glucose-grown B. breve'}, 'GSM1562860': {'line': 'CACO-2', 'replicate': '2', 'treatment': 'glucose-grown B. breve'}, 'GSM2413452': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413453': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2359398': {'type': 'Sorted Central Memory CD8', 'id': '3076'}, 'GSM2359399': {'with': 'Control eGFP mRNA Nanoparticle', 'type': 'Bead isolated total CD8', 'id': '3023', 'treatment': '8'}, 'GSM1171569': {'tissue': 'heart', 'diagnosis': 'ischemic cardiomyopathy (ICM)'}, 'GSM2784408': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '48h'}, 'GSM2784409': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_2', 'time': '48h'}, 'GSM2784404': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '48h'}, 'GSM2784405': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '48h'}, 'GSM2784406': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '48h'}, 'GSM2784407': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORC siRNA_1', 'time': '48h'}, 'GSM2784400': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '48h'}, 'GSM2784401': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '48h'}, 'GSM2784402': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '48h'}, 'GSM2784403': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '48h'}, 'GSM2509689': {'status': 'undifferentiated hiPSC', 'protocol': 'in meTSR1 medium', 'type': 'undifferentiated hiPSCs, derived from cardiac fibroblast'}, 'GSM2509688': {'status': 'undifferentiated hiPSC', 'protocol': 'in meTSR1 medium', 'type': 'undifferentiated hiPSCs, derived from cardiac fibroblast'}, 'GSM1510134': {'line': 'BJ-NT-ES-8', 'type': 'Undifferentiated nuclear-transfer embryonic stem cells'}, 'GSM1510135': {'line': '1018-NT-ES', 'type': 'Undifferentiated nuclear-transfer embryonic stem cells'}, 'GSM1510136': {'line': 'BJ-iPS-M', 'type': 'Undifferentiated induced pluripotent stem cells'}, 'GSM1510137': {'line': 'BJ-iPS-O', 'type': 'Undifferentiated induced pluripotent stem cells'}, 'GSM1510130': {'line': 'BJ-NT-ES-6', 'type': 'Undifferentiated nuclear-transfer embryonic stem cells'}, 'GSM1510131': {'line': 'BJ-NT-ES-8', 'type': 'Undifferentiated nuclear-transfer embryonic stem cells'}, 'GSM1510132': {'line': 'BJ-NT-ES-5', 'type': 'Undifferentiated nuclear-transfer embryonic stem cells'}, 'GSM1510133': {'line': 'BJ-NT-ES-6', 'type': 'Undifferentiated nuclear-transfer embryonic stem cells'}, 'GSM1941370': {'tissue': 'Blood', 'type': 'Monocyte', 'method': 'FACS', 'condition': 'Healthy Volunteer'}, 'GSM1510138': {'line': '1018-iPS-A', 'type': 'Undifferentiated induced pluripotent stem cells'}, 'GSM1510139': {'line': '1018-iPS-B', 'type': 'Undifferentiated induced pluripotent stem cells'}, 'GSM1250452': {'genotype': 'Unknown Mutation', 'gender': 'Male', 'age': '46 Years', 'onset': 'Bulbar', 'course': '6 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Sporadic ALS'}, 'GSM3082792': {'subtype': 'total RNA from cytosol fraction', 'line': 'HEK293', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM3082793': {'subtype': 'total RNA from cytosol fraction', 'line': 'HEK293', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM3082790': {'subtype': 'total RNA from cytosol fraction', 'line': 'HEK293', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM3082791': {'subtype': 'total RNA from cytosol fraction', 'line': 'HEK293', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2845514': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2A'}, 'GSM2932987': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2932984': {'pucai': '15', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2932985': {'pucai': '20', 'score': '1', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '13'}, 'GSM2845510': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siCtrl', 'sirna': 'siCtrl'}, 'GSM2845511': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2A'}, 'GSM2845512': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2A'}, 'GSM2845513': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2A'}, 'GSM2845518': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2C'}, 'GSM2845519': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2C'}, 'GSM2932988': {'pucai': '75', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '6'}, 'GSM2932989': {'pucai': '85', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM1977418': {'tissue': 'neonatal cord blood', 'type': 'GMP'}, 'GSM1977419': {'tissue': 'neonatal cord blood', 'type': 'MEP++'}, 'GSM1977414': {'tissue': 'neonatal cord blood', 'type': 'MEP--'}, 'GSM1977415': {'tissue': 'neonatal cord blood', 'type': 'MPP++'}, 'GSM1977416': {'tissue': 'neonatal cord blood', 'type': 'MPP--'}, 'GSM1977417': {'tissue': 'neonatal cord blood', 'type': 'CMP+-'}, 'GSM1977410': {'tissue': 'neonatal cord blood', 'type': 'MPP+-'}, 'GSM1977411': {'tissue': 'neonatal cord blood', 'type': 'CMP+-'}, 'GSM1977412': {'tissue': 'neonatal cord blood', 'type': 'GMP'}, 'GSM1977413': {'tissue': 'neonatal cord blood', 'type': 'MEP++'}, 'GSM2434037': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1428525': {'culture': 'day 30 of differentiation', 'type': 'monolayer cardiomyocytes', 'treatment': 'ischemia', 'variation': 'ALDH2*2'}, 'GSM1428524': {'culture': 'day 30 of differentiation', 'type': 'monolayer cardiomyocytes', 'treatment': 'ischemia', 'variation': 'ALDH2*2'}, 'GSM1428523': {'culture': 'day 30 of differentiation', 'type': 'monolayer cardiomyocytes', 'treatment': 'ischemia', 'variation': 'WT'}, 'GSM1428522': {'culture': 'day 30 of differentiation', 'type': 'monolayer cardiomyocytes', 'treatment': 'ischemia', 'variation': 'WT'}, 'GSM1428521': {'culture': 'day 30 of differentiation', 'type': 'monolayer cardiomyocytes', 'treatment': 'no ischemia', 'variation': 'ALDH2*2'}, 'GSM1428520': {'culture': 'day 30 of differentiation', 'type': 'monolayer cardiomyocytes', 'treatment': 'no ischemia', 'variation': 'ALDH2*2'}, 'GSM1250458': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '52 Years', 'onset': 'Bulbar', 'course': '4 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'ASO Treatment - Cells were transfected with a nuclear RNase-H dependent antisense oligonucleotide targeting Exon 2 of Hs C9orf72. This ASO has been shown in previous work to efficiently knockdown all known isoforms of C9orf72.', 'diagnosis': 'Familial ALS and Dementia'}, 'GSM2434033': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1642302': {'tissue': 'Cerebellum', 'genotype': 'sALS'}, 'GSM2434032': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1171560': {'tissue': 'heart', 'diagnosis': 'control'}, 'GSM2047703': {'well': 'H06', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1936639': {'antibody': 'anti-5-methylcytidine [A-1014] (Epigentek) Lot #407008', 'type': 'T-lymphocyte', 'stage': 'Activated'}, 'GSM1936638': {'antibody': 'anti-5-hydroxymethylcytidine [A-1018] (Epigentek) Lot #A503009', 'type': 'T-lymphocyte', 'stage': 'Naïve'}, 'GSM1936633': {'antibody': 'none', 'type': 'T-lymphocyte', 'stage': 'Naïve'}, 'GSM1936637': {'antibody': 'anti-5-methylcytidine [A-1014] (Epigentek) Lot #407008', 'type': 'T-lymphocyte', 'stage': 'Naïve'}, 'GSM1936636': {'antibody': 'anti-CTCF [D31H2] (Cell signaling) Lot #1', 'type': 'T-lymphocyte', 'stage': 'Activated'}, 'GSM1936635': {'antibody': 'anti-CTCF [D31H2] (Cell signaling) Lot #1', 'type': 'T-lymphocyte', 'stage': 'Naïve'}, 'GSM1936634': {'antibody': 'none', 'type': 'T-lymphocyte', 'stage': 'Activated'}, 'GSM1641272': {'type': 'PBMC'}, 'GSM1250469': {'genotype': 'No Known Relevant Mutations', 'gender': 'Female', 'age': '52 Years', 'onset': 'N/A', 'course': 'N/A', 'tissue': 'Fibroblast', 'treatment': 'ASO Treatment - Cells were transfected with a nuclear RNase-H dependent antisense oligonucleotide targeting Exon 2 of Hs C9orf72. This ASO has been shown in previous work to efficiently knockdown all known isoforms of C9orf72.', 'diagnosis': 'Non-Neurologic Control'}, 'GSM1250468': {'genotype': 'No Known Relevant Mutations', 'gender': 'Female', 'age': '52 Years', 'onset': 'N/A', 'course': 'N/A', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Non-Neurologic Control'}, 'GSM2551422': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2551423': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM1250465': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '55 Years', 'onset': 'Leg', 'course': '2 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Familial ALS'}, 'GSM1250464': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '55 Years', 'onset': 'Unknown', 'course': '14 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'ASO Treatment - Cells were transfected with a nuclear RNase-H dependent antisense oligonucleotide targeting Exon 2 of Hs C9orf72. This ASO has been shown in previous work to efficiently knockdown all known isoforms of C9orf72.', 'diagnosis': 'Familial ALS'}, 'GSM2551426': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM1250462': {'genotype': 'C9orf72 Intron 1 Hexanucleotide Expansion', 'gender': 'Male', 'age': '55 Years', 'onset': 'Unknown', 'course': '14 years at time of biopsy', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Familial ALS'}, 'GSM2551424': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551425': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2649918': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2067378': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2041846': {'lineage': 'myeloid', 'etiology': 'UCB', 'genotype': 'MLL-AF9'}, 'GSM2041844': {'lineage': 'myeloid', 'etiology': 'UCB', 'genotype': 'MLL-AF9'}, 'GSM2649919': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2041842': {'lineage': 'myeloid', 'etiology': 'PBPC', 'genotype': 'MLL-AF9'}, 'GSM2041840': {'lineage': 'myeloid', 'etiology': 'PBPC', 'genotype': 'MLL-AF9'}, 'GSM2948442': {'type': 'hESC-H9(WA09)', 'system': '3D PEG hydrogel'}, 'GSM1383539': {'line': 'KMS11', 'type': 'Multiple myeloma', 'phenotype': 'High levels of MMSET', 'passage': '15-20'}, 'GSM2649917': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM1233917': {'replicate': '1', 'line': '12890', 'antibody': 'H3K27Ac'}, 'GSM2176106': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176107': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176104': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176105': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176102': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176103': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176100': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176101': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176108': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176109': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2286997': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286996': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286995': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286994': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286993': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286992': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286991': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286990': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2429839': {'status': 'purified', 'type': 'iPS-derived cardiomyocytes', 'Stage': 'day 30 of differentiation'}, 'GSM2429838': {'status': 'purified', 'type': 'iPS-derived cardiomyocytes', 'Stage': 'day 30 of differentiation'}, 'GSM2418721': {'type': 'Umbilical vein endothelial cells', 'passage': '6-8'}, 'GSM2418720': {'type': 'Umbilical vein endothelial cells', 'passage': '6-8'}, 'GSM2286999': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286998': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2940630': {'line': 'H1299', 'p72rpolymorphism': 'R', 'hotspot': 'R175H', 'batch': 'b2'}, 'GSM2806577': {'line': 'A549', 'replicate': '1', 'treatment': '7 hr'}, 'GSM1081526': {'line': 'HEK293T RAD21cv'}, 'GSM2105112': {'gender': 'Female', 'age': '9 Year old', 'batch': '1L', 'condition': 'Trisomic'}, 'GSM1557562': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM1557563': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM1557560': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM1557561': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM1557566': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM1557567': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM3586441': {'origin': 'GCB', 'pfstt': '1269', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1459', 'cycles': '6', 'oscs': '0'}, 'GSM3586440': {'origin': 'ABC', 'pfstt': '1237', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1238', 'cycles': '6', 'oscs': '0'}, 'GSM3586443': {'origin': 'GCB', 'pfstt': '1102', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1418', 'cycles': '6', 'oscs': '0'}, 'GSM3586442': {'origin': 'GCB', 'pfstt': '1271', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1436', 'cycles': '6', 'oscs': '0'}, 'GSM3586445': {'origin': 'GCB', 'pfstt': '144', 'pfscs': '1', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '270', 'cycles': '6', 'oscs': '1'}, 'GSM3586444': {'origin': 'GCB', 'pfstt': '1112', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1112', 'cycles': '6', 'oscs': '0'}, 'GSM3586447': {'origin': 'GCB', 'pfstt': '729', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '729', 'cycles': '6', 'oscs': '0'}, 'GSM3586446': {'origin': 'UNCLASSIFIED', 'pfstt': '554', 'pfscs': '1', 'region': 'Other', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '908', 'cycles': '6', 'oscs': '0'}, 'GSM3586449': {'origin': 'GCB', 'pfstt': '1643', 'pfscs': '0', 'region': 'North America', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1650', 'cycles': '6', 'oscs': '0'}, 'GSM3586448': {'origin': 'UNCLASSIFIED', 'pfstt': '658', 'pfscs': '0', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '739', 'cycles': '6', 'oscs': '0'}, 'GSM1557565': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM2462654': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '50P/S'}, 'GSM2840519': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM1557569': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM1598019': {'tissue': 'fetal brain', 'antibody': 'H3K4me3 (Abcam, ab8580)', 'stage': '12 weeks after gestation'}, 'GSM1598018': {'tissue': 'fetal brain', 'antibody': 'H3K4me3 (Abcam, ab8580)', 'stage': '12 weeks after gestation'}, 'GSM1598017': {'vendor': 'active motif', 'tissue': 'fetal brain', 'antibody': 'H3K27ac', 'stage': '12 weeks after gestation'}, 'GSM1598016': {'vendor': 'active motif', 'tissue': 'fetal brain', 'antibody': 'H3K27ac', 'stage': '12 weeks after gestation'}, 'GSM2565090': {'construction': 'PLATE-Seq', 'drug': 'Cabozantinib - XL 184'}, 'GSM2565091': {'construction': 'PLATE-Seq', 'drug': 'Fulvestrant'}, 'GSM2565092': {'construction': 'PLATE-Seq', 'drug': 'Panobinostat (LBH589)'}, 'GSM2565093': {'construction': 'PLATE-Seq', 'drug': 'Arsenic trioxide'}, 'GSM2565094': {'construction': 'PLATE-Seq', 'drug': 'Paclitaxel'}, 'GSM2565095': {'construction': 'PLATE-Seq', 'drug': 'Mercaptopurine'}, 'GSM2565096': {'construction': 'PLATE-Seq', 'drug': 'Lenvatinib (E7080)'}, 'GSM2434056': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2565098': {'construction': 'PLATE-Seq', 'drug': 'Etoposide'}, 'GSM2565099': {'construction': 'PLATE-Seq', 'drug': 'Docetaxel'}, 'GSM2348798': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348799': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2571051': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'IER5_enhancer_KO#2', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571050': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'IER5_enhancer_KO#2', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571053': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571052': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571055': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571054': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571057': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1899724': {'of': 'IGF1R', 'type': 'mammary epithelial cells'}, 'GSM2571059': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1509289': {'line': 'Hela', 'transfection': 'NC siRNA'}, 'GSM1899727': {'of': 'HER2/ERBB2', 'type': 'mammary epithelial cells'}, 'GSM1899726': {'of': 'HER2/ERBB2', 'type': 'mammary epithelial cells'}, 'GSM1899721': {'of': 'IGF1R', 'type': 'mammary epithelial cells'}, 'GSM1899720': {'of': 'IGF1R', 'type': 'mammary epithelial cells'}, 'GSM1899723': {'of': 'IGF1R', 'type': 'mammary epithelial cells'}, 'GSM1899722': {'of': 'IGF1R', 'type': 'mammary epithelial cells'}, 'GSM2459074': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.92'}, 'GSM2179011': {'shrna': 'SF3B1', 'added': 'plus dox', 'name': 'Cal51'}, 'GSM2179010': {'shrna': 'SF3B1', 'added': 'minus dox', 'name': 'Cal51'}, 'GSM2179013': {'shrna': 'SF3B1', 'added': 'minus dox', 'name': 'Cal51 CRISPR copy loss'}, 'GSM2179012': {'shrna': 'Luciferase', 'added': 'plus dox', 'name': 'Cal51'}, 'GSM2179015': {'shrna': 'SF3B1', 'added': 'plus dox', 'name': 'HCC1954'}, 'GSM2179014': {'shrna': 'SF3B1', 'added': 'plus dox', 'name': 'Cal51 CRISPR copy loss'}, 'GSM2179016': {'shrna': 'SF3B1', 'added': 'plus dox', 'name': 'HCC1954'}, 'GSM2889020': {'tissue': 'pancreatic islets'}, 'GSM2889021': {'tissue': 'pancreatic islets'}, 'GSM2889022': {'tissue': 'pancreatic islets'}, 'GSM2479756': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2889024': {'tissue': 'pancreatic islets'}, 'GSM2889025': {'tissue': 'pancreatic islets'}, 'GSM1964975': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964974': {'line': 'HeLa-229', 'variation': 'transfection with control miR (50nM, 72h)'}, 'GSM1010128': {'type': 'human umbilical vein endothelial cells', 'variation': 'Virilizer knockdown'}, 'GSM2889029': {'tissue': 'pancreatic islets'}, 'GSM1964979': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964978': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2479759': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'adult'}, 'GSM2204677': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2187270': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'shZMYND8'}, 'GSM2144028': {'treatment': 'EPRS shRNA 74', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144029': {'treatment': 'EPRS shRNA 84', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144020': {'treatment': 'EPRS shRNA 74', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144021': {'treatment': 'EPRS shRNA 84', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144022': {'treatment': 'Empty Vector', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144023': {'treatment': 'EPRS shRNA 73', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144024': {'treatment': 'EPRS shRNA 74', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144025': {'treatment': 'EPRS shRNA 84', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144026': {'treatment': 'Empty Vector', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144027': {'treatment': 'EPRS shRNA 73', 'phenotype': 'Tamoxifen Resistance'}, 'GSM1162717': {'preparation': 'Illumina PolyA', 'involution': 'Yes', 'type': 'human mammary epithelial cell'}, 'GSM1162719': {'preparation': 'Illumina PolyA', 'involution': 'Yes', 'type': 'human mammary epithelial cell'}, 'GSM1162718': {'preparation': 'Illumina PolyA', 'involution': 'No', 'type': 'human mammary epithelial cell'}, 'GSM2204672': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1527723': {'passages': '13 days', 'type': 'Th2'}, 'GSM1527722': {'passages': '13 days', 'type': 'Th1'}, 'GSM1527721': {'passages': '13 days', 'type': 'Th1'}, 'GSM1527720': {'passages': '0 days', 'type': 'Naive CD4+ cells'}, 'GSM2204673': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1527727': {'passages': '13 days', 'type': 'Th2'}, 'GSM2664419': {'tumor': 'melanoma', 'line': 'A375', 'type': 'melanocyte'}, 'GSM2302054': {'timepoint': 'Pre', 'id': '18', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Partial Response'}, 'GSM3335827': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335826': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335825': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'not treated with extra DNAse'}, 'GSM3335824': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'not treated with extra DNAse'}, 'GSM3335823': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'not treated with extra DNAse'}, 'GSM3335822': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'not treated with extra DNAse'}, 'GSM3335821': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'not treated with extra DNAse'}, 'GSM3335820': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'not treated with extra DNAse'}, 'GSM1540553': {'state': 'Lyme disease', 'individual': 'patient 01-33', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540552': {'state': 'Lyme disease', 'individual': 'patient 01-32', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540551': {'state': 'Lyme disease', 'individual': 'patient 01-31', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540550': {'state': 'Lyme disease', 'individual': 'patient 01-30', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540557': {'state': 'Lyme disease', 'individual': 'patient 01-39', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540556': {'state': 'Lyme disease', 'individual': 'patient 01-37', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM3335829': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335828': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM1527728': {'passages': '13 days', 'type': 'Th2'}, 'GSM1357999': {'tissue': 'cortical ischemic stroke tissue'}, 'GSM1357998': {'tissue': 'healthy cortex'}, 'GSM1357995': {'tissue': 'healthy cortex'}, 'GSM1357994': {'tissue': 'healthy cortex'}, 'GSM1357997': {'tissue': 'healthy cortex'}, 'GSM1357996': {'tissue': 'healthy cortex'}, 'GSM958732': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '10878', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM958733': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '11286', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM958730': {'description': 'Single 75 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': '11011', 'readtype': '1x75D', 'mapalgorithm': 'TH1014', 'sex': 'U', 'replicate': '1', 'treatment': 'None', 'insertlength': 'None'}, 'GSM958731': {'description': 'Single 75 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': '11008', 'readtype': '1x75D', 'mapalgorithm': 'TH1014', 'sex': 'U', 'replicate': '1', 'treatment': 'None', 'insertlength': 'None'}, 'GSM958736': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '10884', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM2548623': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 10 uM IPA-3'}, 'GSM2548620': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 10 uM Importazole'}, 'GSM2548621': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 10 uM Importazole'}, 'GSM2303621': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303620': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM958738': {'description': 'Single 75 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': '11206', 'readtype': '1x75D', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': 'None'}, 'GSM958739': {'description': 'Single 75 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': '11208', 'readtype': '1x75D', 'mapalgorithm': 'TH1014', 'sex': 'U', 'replicate': '1', 'treatment': 'None', 'insertlength': 'None'}, 'GSM2548628': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 3 uM Ivermectin'}, 'GSM2548629': {'type': 'derived cardiomyocytes from hiPSC', 'treatment': '10 nM Endothelin-1 + 3 uM Ivermectin'}, 'GSM2200946': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200947': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200944': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200945': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2137723': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib and AZ1366 treated'}, 'GSM2572775': {'vairation': 'CDKAL1-/- hESCs', 'type': 'hESC-derived pancreatic beta-like cells'}, 'GSM2572776': {'vairation': 'CDKAL1-/-hESCs overexpressing MT1E', 'type': 'hESC-derived pancreatic beta-like cells'}, 'GSM2137722': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib and AZ1366 treated'}, 'GSM2194199': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194198': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194191': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194190': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194193': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194192': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194195': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194194': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194197': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194196': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2476253': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476252': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476255': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476254': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476257': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476256': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476259': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM2476258': {'line': 'MCF7', 'type': 'breast cancer'}, 'GSM1598026': {'vendor': 'active motif', 'tissue': 'fetal heart', 'antibody': 'H3K27ac', 'stage': '12 weeks after gestation'}, 'GSM2700508': {'line': '293T (pool of 3 KO clones)', 'tissue': 'Human Embryonic kidney', 'genotype': 'Fas ligand KO -/-', 'infection': 'Infected with pTIP-scr; 100ng/uL doxycycline', 'point': 'harvested at 50hrs'}, 'GSM1598024': {'vendor': 'Abcam', 'tissue': 'fetal brain', 'antibody': 'H3K4me3', 'stage': '12 weeks after gestation'}, 'GSM2232716': {'tissue': 'Peripheral blood', 'genotype': 'ASXL2 mutation', 'markers': 'ckit+ScaI+'}, 'GSM1598025': {'vendor': 'Abcam', 'tissue': 'fetal brain', 'antibody': 'H3K4me3', 'stage': '12 weeks after gestation'}, 'GSM2108569': {'stages': 'mononucleated cell nucleus'}, 'GSM2108568': {'stages': 'mononucleated cell nucleus'}, 'GSM1846900': {'antibody': 'H3K27ac (Abcam, ab4729)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM2108565': {'stages': 'mononucleated cell nucleus'}, 'GSM2108564': {'stages': 'mononucleated cell nucleus'}, 'GSM2108567': {'stages': 'mononucleated cell nucleus'}, 'GSM2108566': {'stages': 'mononucleated cell nucleus'}, 'GSM2108561': {'stages': 'mononucleated cell nucleus'}, 'GSM2108560': {'stages': 'mononucleated cell nucleus'}, 'GSM2108563': {'stages': 'mononucleated cell nucleus'}, 'GSM2108562': {'stages': 'mononucleated cell nucleus'}, 'GSM2817733': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 3uM 24h'}, 'GSM2817732': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 30nM 24h'}, 'GSM2817731': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 30nM 24h'}, 'GSM2232715': {'tissue': 'Bone marrow', 'genotype': 'ASXL2 mutation', 'markers': 'ckit+ScaI+'}, 'GSM2817737': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 300nM 6h'}, 'GSM2817736': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 3uM 24h'}, 'GSM2817735': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 3uM 24h'}, 'GSM1880780': {'preparation': '5.16.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM2232712': {'tissue': 'Bone marrow', 'genotype': 'wildtype', 'markers': 'ckit+ScaI+'}, 'GSM2817739': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 300nM 6h'}, 'GSM2817738': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 300nM 6h'}, 'GSM2519363': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1846904': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61L', 'passage': '2'}, 'GSM2251360': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251361': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251362': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2519362': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2251364': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM1826308': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM2251366': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251367': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1826305': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy with hippocampal sclerosis'}, 'GSM2251369': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1826307': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM2232711': {'tissue': 'Bone marrow', 'genotype': 'wildtype', 'markers': 'ckit+ScaI+'}, 'GSM1826301': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1826300': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1826303': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1826302': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy with hippocampal sclerosis'}, 'GSM2803967': {'subtype': 'Sorted live B-cells', 'type': 'PBMCs', 'treatment': 'Pre-CCB'}, 'GSM2153102': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153101': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153100': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153107': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2458846': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.33'}, 'GSM2153105': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153104': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153109': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2519366': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2803968': {'subtype': 'Sorted live B-cells', 'type': 'PBMCs', 'treatment': 'Post-CCB'}, 'GSM1848811': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 15', 'point': 'pre exercise'}, 'GSM2700507': {'line': '293T (pool of 3 KO clones)', 'tissue': 'Human Embryonic kidney', 'genotype': 'Fas ligand KO -/-', 'infection': 'Infected with pTIP-scr; 100ng/uL doxycycline', 'point': 'harvested at 50hrs'}, 'GSM1880788': {'preparation': '6.25.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '9 h'}, 'GSM2700506': {'line': 'HeyA8 CD95 k.o. cells clone #11', 'tissue': 'Ovaries', 'infection': 'Cells were infected with pLenti-GIII-CMV-RFP-2A-Puro-CD95L and selected with 3 ug/mL puromycin for 2 days. Total RNA was isolated 50hrs after puromycin selection.'}, 'GSM1371575': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'differentiated organoid'}, 'GSM1371574': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'human embryonic stem cells'}, 'GSM1371573': {'line': 'AI91', 'stage': 'background contamination'}, 'GSM1556373': {'gender': 'female', 'id': 'AG09429 (Coriell)', 'diagnosis': 'Control'}, 'GSM3229537': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229536': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229535': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229539': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM3229538': {'type': 'telomerase-expressing non-transformed human retina epithelial cells'}, 'GSM1438968': {'with': 'vehicle (0.1% EtOH) as control for 72hrs', 'line': 'MCF-7:5C', 'type': 'breast cancer cell line'}, 'GSM1438969': {'with': 'E2 (10-9mol/L)for 72 hrs', 'line': 'MCF-7:5C', 'type': 'breast cancer cell line'}, 'GSM2740946': {'with': 'shNS', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM2571037': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'SERPINE2_enhancer_KO#1', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2251949': {'type': 'Human peritoneal mesothelial cells'}, 'GSM2571036': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'SERPINE2_enhancer_KO#1', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2312269': {'culture': '12', 'line': 'DCX-'}, 'GSM2312268': {'culture': '12', 'line': 'DCX-'}, 'GSM2312267': {'culture': '12', 'line': 'DCX-'}, 'GSM2312266': {'culture': '12', 'line': 'DCX-'}, 'GSM2312265': {'culture': '12', 'line': 'DCX-'}, 'GSM2312264': {'culture': '12', 'line': 'DCX-'}, 'GSM2312263': {'culture': '12', 'line': 'DCX-'}, 'GSM2312262': {'culture': '12', 'line': 'DCX-'}, 'GSM2312261': {'culture': '12', 'line': 'DCX-'}, 'GSM2312260': {'culture': '12', 'line': 'DCX-'}, 'GSM1267836': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1267837': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-Mutant (65KDa Isoform)'}, 'GSM1267835': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM2469538': {'status': 'resistant', 'gender': 'male', 'individual': 'r01', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469539': {'status': 'resistant', 'gender': 'male', 'individual': 'r01', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM1267838': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1267839': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1702302': {'knockout': 'CRISPR/Cas9', 'line': 'Jurkat', 'type': 'T-acute lymphoblastic leukemia'}, 'GSM1702300': {'knockout': 'shRNA', 'line': 'Jurkat', 'type': 'T-acute lymphoblastic leukemia'}, 'GSM1702301': {'knockout': 'CRISPR/Cas9', 'line': 'Jurkat', 'type': 'T-acute lymphoblastic leukemia'}, 'GSM2571039': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'SERPINE2_enhancer_KO#1', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571038': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'SERPINE2_enhancer_KO#1', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2248192': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM1556378': {'gender': 'female', 'id': 'GM01835 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556379': {'gender': 'male', 'id': 'GM02497 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM2141262': {'individual': 'AF31', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2390687': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'fraction': 'total RNA', 'infection': 'shEPAS_pGIPz (V2LHS_113753)'}, 'GSM2390686': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'fraction': 'Newly Tr RNA', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2390685': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'fraction': 'Newly Tr RNA', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2390684': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'fraction': 'total RNA', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2390683': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'fraction': 'total RNA', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2390682': {'tissue': 'Diff normal iPS line', 'subject': 'WT3 cell line'}, 'GSM2390681': {'tissue': 'Diff normal iPS line', 'subject': 'TKDA3 cell line'}, 'GSM2390680': {'tissue': 'Diff normal iPS line', 'subject': 'JMC1 cell line'}, 'GSM2361746': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361747': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361744': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361745': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361742': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361743': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390689': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'fraction': 'Newly Tr RNA', 'infection': 'shEPAS_pGIPz (V2LHS_113753)'}, 'GSM2390688': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'fraction': 'total RNA', 'infection': 'shEPAS_pGIPz (V2LHS_113753)'}, 'GSM2462669': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '1', 'condition': '100P/S'}, 'GSM2462668': {'batch': '1', 'astrocytes': 'y', 'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '100P/S'}, 'GSM2462665': {'culture': 'D100', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '1', 'condition': '50P/S'}, 'GSM2141269': {'individual': 'AF39', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2462667': {'culture': 'D100', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '100P/S'}, 'GSM2462666': {'culture': 'D100', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '2', 'condition': '50P/S'}, 'GSM2462661': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '50P/S'}, 'GSM2462660': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '100P/S'}, 'GSM2462663': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '100P/S'}, 'GSM2462662': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells', 'batch': '3', 'condition': '50P/S'}, 'GSM2607578': {'line': 'WA26'}, 'GSM2172048': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172047': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2607577': {'line': 'WA26'}, 'GSM2172045': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172044': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172043': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172042': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172041': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172040': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1872976': {'10': 'Non-remitter', 'name': 'HF-34733', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2571046': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'IER5_enhancer_KO#1', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2296633': {'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM2296637': {'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'DMSO', 'batch': '2'}, 'GSM2296635': {'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'DMSO', 'batch': '1'}, 'GSM1312736': {'line': 'HGDP00237', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Pathan'}, 'GSM1312737': {'line': 'HGDP00239', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Pathan'}, 'GSM1312734': {'line': 'HGDP00222', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Pathan'}, 'GSM1312735': {'line': 'HGDP00232', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Pathan'}, 'GSM2931165': {'concentration': '125 uM', 'passages': '<25', 'line': 'HepG2', 'treatment': 'TBOEP'}, 'GSM1312733': {'line': 'HGDP00213', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Pathan'}, 'GSM1312730': {'line': 'HGDP01274', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Mozabite'}, 'GSM1312731': {'line': 'HGDP01275', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Mozabite'}, 'GSM1322942': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2931168': {'concentration': '2.5 uM', 'passages': '<25', 'line': 'HepG2', 'treatment': 'TBOEP'}, 'GSM1322940': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322941': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322946': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1322947': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM1312738': {'line': 'HGDP00247', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Pathan'}, 'GSM1312739': {'line': 'HGDP00258', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Pathan'}, 'GSM2544079': {'library_id': 'lib8403', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544078': {'library_id': 'lib8402', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544077': {'library_id': 'lib8401', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.65', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544076': {'library_id': 'lib8400', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.65', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544075': {'library_id': 'lib8399', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544074': {'library_id': 'lib8398', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544073': {'library_id': 'lib8397', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544072': {'library_id': 'lib8396', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544071': {'library_id': 'lib8393', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544070': {'library_id': 'lib8392', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2411937': {'line': '12022C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411936': {'line': '12022B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411935': {'line': '10950C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411934': {'line': '10950A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411933': {'line': '9462B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411932': {'line': '9462A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411931': {'line': '921C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM1642809': {'line': '184A1', 'type': 'Breast epithelial cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1642806': {'line': '184A1', 'type': 'Breast epithelial cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642807': {'line': '184A1', 'type': 'Breast epithelial cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM1642804': {'line': 'MDA-MB-231', 'type': 'Breast cancer cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM1642805': {'line': 'MDA-MB-231', 'type': 'Breast cancer cells', 'treatment': 'SUZ12 siRNA with 6h IFNg'}, 'GSM1642802': {'line': 'MDA-MB-231', 'type': 'Breast cancer cells', 'treatment': 'control siRNA without IFNg treatment'}, 'GSM1642803': {'line': 'MDA-MB-231', 'type': 'Breast cancer cells', 'treatment': 'control siRNA with 6h IFNg'}, 'GSM1642800': {'line': 'HeLa', 'type': 'Cervical cancer cells', 'treatment': 'SUZ12 siRNA without IFNg treatment'}, 'GSM3025244': {'line': 'MCF7', 'treatment': 'PPT+PBDE153', 'batch': 'batch1'}, 'GSM2109418': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109419': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109412': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109413': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109410': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109411': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109416': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109417': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109414': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109415': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2041730': {'type': 'Ovation RNASeq System V2', 'number': 'Passage 28, 16 days of culture in EpiLC media'}, 'GSM2430829': {'duration': '1 hr', 'pattern': 'Static', 'type': 'HUVEC', 'batch': '1'}, 'GSM2081260': {'type': 'undifferntiated iPS cells', 'condition': 'non-cultured iPSC-Ecs, fresh after thawing', 'passage': '30'}, 'GSM2486739': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486738': {'tissue': 'esophageal adenocarcinoma'}, 'GSM718707': {'status': '3 Never', 'gender': '3 Female', 'age': '29.7', 'type': 'large airway epithelial cells', 'cancer': '3 No'}, 'GSM2486735': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM718708': {'status': '3 Current', 'cancer': '3 No', 'gender': '1 Male, 2 Female', 'age': '41.7', 'type': 'large airway epithelial cells', 'packyears': '21.5'}, 'GSM2486737': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486736': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486731': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486730': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486733': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486732': {'tissue': 'esophageal adenocarcinoma'}, 'GSM1639686': {'type': 'Neurons', 'genotype': 'Deletion 15q (Angelman syndrome)', 'number': '1'}, 'GSM2247788': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3-CD56-CD14+', 'tissue': 'clear cell RCC tumor', 'type': 'macrophages', 'identifier': 'RCC356'}, 'GSM1639684': {'type': 'Neurons', 'genotype': 'Duplication 15q (Isodicentric)', 'number': '4'}, 'GSM2200893': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200894': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200895': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1639680': {'type': 'Neurons', 'genotype': 'Duplication 15q (Interstitial)', 'number': '3'}, 'GSM1639681': {'type': 'DPSC', 'genotype': 'Duplication 15q (Isodicentric)', 'number': '4'}, 'GSM2200898': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200899': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1295079': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': 'none'}, 'GSM1295078': {'strain': 'BF', 'tissue': 'normal breast', 'antibody': 'A300-882a from BETHYL'}, 'GSM2247785': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3-CD56-CD14+', 'tissue': 'clear cell RCC tumor', 'type': 'macrophages', 'identifier': 'RCC343'}, 'GSM2124785': {'type': 'CD11b+ human glioblastoma-associated microglia/monocytes'}, 'GSM1639688': {'type': 'Neurons', 'genotype': 'Deletion 15q (Angelman syndrome)', 'number': '1'}, 'GSM1639689': {'type': 'DPSC', 'genotype': 'Deletion 15q (Angelman syndrome)', 'number': '1'}, 'GSM2467190': {'state': 'non-Diabetic', 'type': 'retinal endothelial cells'}, 'GSM2467191': {'state': 'non-Diabetic', 'type': 'retinal endothelial cells'}, 'GSM2837007': {'line': 'MGC-803', 'type': 'gastric cancer cell line', 'transfection': 'vector control'}, 'GSM2837006': {'line': 'MGC-803', 'type': 'gastric cancer cell line', 'transfection': 'vector control'}, 'GSM2420658': {'line': 'HEK293T'}, 'GSM2420659': {'line': 'HEK293T'}, 'GSM715489': {'tissue': 'gastrointestinal stromal tumor', 'method': 'FFPE'}, 'GSM715488': {'tissue': 'gastrointestinal stromal tumor', 'method': 'FFPE'}, 'GSM715485': {'tissue': 'gastrointestinal stromal tumor', 'method': 'FFPE'}, 'GSM715484': {'tissue': 'myxoid liposarcoma', 'method': 'FFPE'}, 'GSM715487': {'tissue': 'gastrointestinal stromal tumor', 'method': 'FFPE'}, 'GSM715486': {'tissue': 'gastrointestinal stromal tumor', 'method': 'FFPE'}, 'GSM715481': {'tissue': 'myxoid liposarcoma', 'method': 'FFPE'}, 'GSM715480': {'tissue': 'myxoid liposarcoma', 'method': 'FFPE'}, 'GSM715483': {'tissue': 'myxoid liposarcoma', 'method': 'FFPE'}, 'GSM715482': {'tissue': 'myxoid liposarcoma', 'method': 'FFPE'}, 'GSM2071049': {'type': 'activated naive CD4 T cells', 'with': 'IL12'}, 'GSM2071048': {'type': 'activated naive CD4 T cells', 'with': 'beads only'}, 'GSM2071045': {'tissue': 'umbilical vein', 'type': 'endothelial cells', 'passage': '15-18'}, 'GSM2071044': {'tissue': 'umbilical vein', 'type': 'endothelial cells', 'passage': '15-18'}, 'GSM2071047': {'type': 'activated naive CD4 T cells', 'with': 'Activin A+IL12'}, 'GSM2071046': {'type': 'activated naive CD4 T cells', 'with': 'Activin A'}, 'GSM1969194': {'source': 'epithelium', 'line': 'HeLa', 'group': 'EXPERIMENT 4', 'description': '36h scrambled RNA control followed by poly-IC treatment for 6h', 'variation': '36h scrambled RNA control'}, 'GSM1473759': {'origin': 'Skin', 'with': 'None (spontaneously immortal)', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'spontaneously immortal cells'}, 'GSM1405122': {'source': 'IP with Ab rabbit IgG (Santa Cruz, sc-2027)', 'line': 'HeLa', 'antibody': 'rabbit IgG (Santa Cruz, sc-2027)', 'treatment': 'IgG ChIP control in wt Hela cells', 'type': 'ChIP-seq'}, 'GSM1405123': {'source': 'Hela wt cells', 'line': 'HeLa', 'type': 'RNA-seq', 'treatment': 'total RNA was sequenced in cycling wt Hela Cells'}, 'GSM1405120': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined cycling non starved wt Hela Cells', 'type': 'ChIP-seq'}, 'GSM1405121': {'source': 'IP with Ab RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'line': 'HeLa', 'antibody': 'RNAPII rabbit polyclonal N20 (Santa Cruz, sc-899)', 'treatment': 'RNAPII occupancy examined cycling non starved wt Hela Cells', 'type': 'ChIP-seq'}, 'GSM2256657': {'patient': 'patient 1', 'treatment': 'before'}, 'GSM1564326': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '100', 'replicate': '3', 'hcc827': '0'}, 'GSM1564324': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '50', 'replicate': '3', 'hcc827': '50'}, 'GSM1564325': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '75', 'replicate': '3', 'hcc827': '25'}, 'GSM1564322': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '0', 'replicate': '3', 'hcc827': '100'}, 'GSM1564323': {'strain': 'R3', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '25', 'replicate': '3', 'hcc827': '75'}, 'GSM1564320': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '75', 'replicate': '2', 'hcc827': '25'}, 'GSM1564321': {'strain': 'R2D', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '100', 'replicate': '2', 'hcc827': '0'}, 'GSM1915639': {'donorid': 'SU353', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1574752': {'concentration': '12854.3', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Compound 1uM', 'conc': '52.7'}, 'GSM1574753': {'concentration': '8226.1', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Compound 1uM', 'conc': '28.7'}, 'GSM1885098': {'with': 'mock RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'mock', 'group': 'non-stressed'}, 'GSM1885099': {'with': 'mock RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'mock', 'group': 'non-stressed'}, 'GSM1574756': {'concentration': '18075.2', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Compound 10uM', 'conc': '46'}, 'GSM1574757': {'concentration': '1968.7', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Diclofenac', 'conc': '39'}, 'GSM1574754': {'concentration': '7687.5', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Compound 3uM', 'conc': '47.2'}, 'GSM1574755': {'concentration': '11349.5', 'individual': 'PHH1', 'type': 'primary human hepatocytes', 'treatment': 'Compound 3uM', 'conc': '44.6'}, 'GSM1885092': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885093': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885090': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885091': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885096': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885097': {'with': 'mock RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'mock', 'group': 'non-stressed'}, 'GSM1885094': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1885095': {'status': \"advanced Alzheimer's Disease\", 'subtype': 'dorsolateral prefrontal cortex', 'tissue': 'brain'}, 'GSM1969198': {'source': 'epithelium', 'line': 'T47D', 'group': 'EXPERIMENT 5', 'description': 'T47D cells semi-permeabilized with digitonin +2-5A for 1 minute', 'variation': 'wild type'}, 'GSM1969199': {'source': 'epithelium', 'line': 'T47D', 'group': 'EXPERIMENT 5', 'description': 'T47D cells semi-permeabilized with digitonin +2-5A for 3 minutes', 'variation': 'wild type'}, 'GSM2754739': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0060', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754738': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '18', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0060', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754733': {'bin': '3', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '18', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '06_0127', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754732': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0979', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754731': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0355', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754730': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0355', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754737': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '18', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0060', 'previousdiagnosisoftb': 'No', 'tst': '16', 'type': 'Tcells'}, 'GSM2754736': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '18', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0060', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754735': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0308', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754734': {'bin': '3', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '06_0231', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1940706': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940707': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940704': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940705': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1681898': {'tissue': 'Lung tumor', 'type': 'neutrophils (Neu)'}, 'GSM1681899': {'tissue': 'Lung tumor', 'type': 'epithelial cells (Epi)'}, 'GSM1940700': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940701': {'group': 'Allergic rhinitis', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2842537': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM2842536': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM1681896': {'tissue': 'Lung tumor', 'type': 'immature monocytic myeloid cells (IMMCs)'}, 'GSM2842534': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2842533': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM2842532': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM2842531': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2842530': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2889073': {'tissue': 'pancreatic islets'}, 'GSM1957159': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM996195': {'age': '29', 'treatment': 'incubated for 1h with TNF-alpha (10 ng/mL)', 'Sex': 'male'}, 'GSM2232200': {'status': 'HCV', 'patient_identifier': 'A720', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 4h', 'endogenous_ifn': 'low ISG'}, 'GSM2232201': {'status': 'HCV', 'patient_identifier': 'B199', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 16h', 'endogenous_ifn': 'high ISG'}, 'GSM2232202': {'status': 'HCV', 'patient_identifier': 'A991', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 16h', 'endogenous_ifn': 'high ISG'}, 'GSM2232203': {'status': 'HCV', 'patient_identifier': 'C552', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 16h', 'endogenous_ifn': 'low ISG'}, 'GSM2232204': {'status': 'HCV', 'patient_identifier': 'A748', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 48h', 'endogenous_ifn': 'low ISG'}, 'GSM2232205': {'status': 'HCV', 'patient_identifier': 'A727', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 48h', 'endogenous_ifn': 'low ISG'}, 'GSM2232206': {'status': 'HCV', 'patient_identifier': 'B254', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 48h', 'endogenous_ifn': 'low ISG'}, 'GSM2232207': {'status': 'HCV', 'patient_identifier': 'A616', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 96h', 'endogenous_ifn': 'low ISG'}, 'GSM2232208': {'status': 'HCV', 'patient_identifier': 'B136', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 96h', 'endogenous_ifn': 'low ISG'}, 'GSM2232209': {'status': 'HCV', 'patient_identifier': 'B283', 'tissue': 'liver', 'treatment': 'pegIFNa/ribavirin 96h', 'endogenous_ifn': 'low ISG'}, 'GSM2188217': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'DMSO'}, 'GSM2188216': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'DMSO'}, 'GSM2188215': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'DMSO'}, 'GSM2188219': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siCNTR'}, 'GSM2188218': {'protocol': 'differentiated for 5 days into osteoblastic lineage', 'type': 'human Fetal Osteoblasts (hFOB)', 'treatment': 'siCNTR'}, 'GSM1370695': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'control', 'purification': 'Ribosome protected RNA fragments'}, 'GSM1370697': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'Silvestrol', 'purification': 'Ribosome protected RNA fragments'}, 'GSM1370696': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'control', 'purification': 'Ribosome protected RNA fragments'}, 'GSM1370699': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'control', 'purification': 'Total RNA'}, 'GSM1370698': {'line': 'KOPT-K1 T-ALL cell line', 'agent': 'Silvestrol', 'purification': 'Ribosome protected RNA fragments'}, 'GSM907570': {'gender': 'M', 'age': '69', 'histologics': 'Diffuse', 'Stage': 'IV'}, 'GSM907571': {'gender': 'M', 'age': '52', 'histologics': 'unknown', 'Stage': 'II'}, 'GSM907572': {'gender': 'F', 'age': '32', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907573': {'gender': 'F', 'age': '66', 'histologics': 'Diffuse', 'Stage': 'I'}, 'GSM907574': {'gender': 'M', 'age': '66', 'histologics': 'Intestine', 'Stage': 'II'}, 'GSM907575': {'gender': 'M', 'age': '66', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907576': {'gender': 'M', 'age': '47', 'histologics': 'Intestine', 'Stage': 'III'}, 'GSM907577': {'gender': 'M', 'age': '61', 'histologics': 'Intestine', 'Stage': 'III'}, 'GSM907578': {'gender': 'M', 'age': '64', 'histologics': 'Diffuse', 'Stage': 'I'}, 'GSM907579': {'gender': 'M', 'age': '55', 'histologics': 'Diffuse', 'Stage': 'III'}, 'GSM2871614': {'age': '38', 'tissue': 'Sciatic nerve', 'number': '3', 'Sex': 'Female'}, 'GSM2871615': {'age': '38', 'tissue': 'Sciatic nerve', 'number': '8', 'Sex': 'Female'}, 'GSM2871616': {'age': '30', 'tissue': 'Sural nerve', 'number': 'Not applicable', 'Sex': 'Female'}, 'GSM2871617': {'age': '65', 'tissue': 'Sural nerve', 'number': 'Not applicable', 'Sex': 'Female'}, 'GSM2889072': {'tissue': 'pancreatic islets'}, 'GSM2422097': {'type': 'IGR-N91 neuroblastoma cells'}, 'GSM2422098': {'type': 'IGR-N91 neuroblastoma cells'}, 'GSM2422099': {'type': 'IGR-N91 neuroblastoma cells'}, 'GSM2420312': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2199520': {'age': '27', 'tissue': 'Liver', 'bmi': '44.9'}, 'GSM2714254': {'line': 'MCF-7 GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714255': {'line': 'MCF-7 GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714256': {'line': 'MCF-7 GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714257': {'line': 'MCF-7 GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714258': {'line': 'MCF-7 GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714259': {'line': 'MCF-7 GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2275022': {'area_under_the_curve': '0.968640469', 'siteandparticipantcode': '137567', 'baseline_area_under_the_curve': '0.968640469', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '910000', 'sampleID': 'S12559', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib867', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_137567', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib867', 'studysiteshort': 'COLUMBIA'}, 'GSM2071869': {'type': 'breast cancer'}, 'GSM2071868': {'type': 'breast cancer'}, 'GSM2071867': {'type': 'breast cancer'}, 'GSM2071866': {'type': 'breast cancer'}, 'GSM2071865': {'type': 'breast cancer'}, 'GSM2071864': {'type': 'breast cancer'}, 'GSM2071863': {'type': 'breast cancer'}, 'GSM2071862': {'type': 'breast cancer'}, 'GSM2071861': {'type': 'breast cancer'}, 'GSM2071860': {'type': 'breast cancer'}, 'GSM1376103': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2392235': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392236': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1924960': {'line': 'HPV31-positive, CIN612-9E cells', 'treatment': 'dox to induce IFN-kappa expression'}, 'GSM1924961': {'line': 'HPV31-positive, CIN612-9E cells', 'treatment': 'dox to induce IFN-kappa expression'}, 'GSM1376100': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2265628': {'antibody': 'H3K27ac (CST, 8173)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265629': {'antibody': 'H3K27ac (CST, 8173)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265626': {'antibody': 'RNA pol II (CST, 14958)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2392230': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2265624': {'antibody': 'H3K27M (Millipore, ABE419)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265625': {'antibody': 'H3K27M (Millipore, ABE419)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2300037': {'line': 'MCF7', 'treatment': 'vehicle', 'infection': 'lentivirally infected with constructs against shMEN1'}, 'GSM2392231': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2262912': {'protocol': 'LPS exposed 24 hours, BG exposed for 24 hours, culture for 4 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2392232': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2262399': {'time': 'day 2', 'population': 'Liver bud'}, 'GSM2262398': {'time': 'day 2', 'population': 'Liver bud'}, 'GSM2262397': {'time': 'day 2', 'population': 'Liver bud'}, 'GSM2262396': {'time': 'day 0', 'population': 'Liver bud'}, 'GSM2262395': {'time': 'day 0', 'population': 'Liver bud'}, 'GSM2262394': {'time': 'day 0', 'population': 'Liver bud'}, 'GSM2262393': {'time': 'NA', 'population': 'Hepatic-specified endoderm iPSC'}, 'GSM2262392': {'time': 'NA', 'population': 'Hepatic-specified endoderm iPSC'}, 'GSM2262391': {'time': 'NA', 'population': 'Hepatic-specified endoderm iPSC'}, 'GSM2262390': {'time': 'NA', 'population': 'Definitive endoderm iPSC'}, 'GSM2616547': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616546': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM1376109': {'state': 'COPD', 'tissue': 'lung'}, 'GSM958751': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '11622', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'DIFF_7d', 'labversion': 'myocyte', 'insertlength': '200'}, 'GSM2278035': {'line': 'HCC70', 'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278034': {'line': 'HCC70', 'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278037': {'line': 'HCC1143', 'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278036': {'line': 'HCC1143', 'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278031': {'line': 'HCC70', 'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278030': {'line': 'HCC70', 'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278033': {'line': 'HCC70', 'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278032': {'line': 'HCC70', 'type': 'HCC70 (Human Tnm Stage Iiia, Grade 3, Primary Ductal Carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278039': {'line': 'HCC1143', 'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278038': {'line': 'HCC1143', 'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2394420': {'antibody': 'p65, Santa Cruz #sc-372X', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM957359': {'sample': 'GM07000', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1340'}, 'GSM957358': {'sample': 'GM06994', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1340'}, 'GSM957351': {'sample': 'GM12716', 'protocol': 'non-directional', 'relation': 'paternal grandfather', 'family': '1358'}, 'GSM957350': {'sample': 'GM12004', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1420'}, 'GSM957353': {'sample': 'GM12750', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1444'}, 'GSM957352': {'sample': 'GM12717', 'protocol': 'non-directional', 'relation': 'paternal grandmother', 'family': '1358'}, 'GSM957355': {'sample': 'GM12878', 'protocol': 'non-directional', 'relation': 'mother', 'family': '1463'}, 'GSM957354': {'sample': 'GM12877', 'protocol': 'non-directional', 'relation': 'father', 'family': '1463'}, 'GSM957357': {'sample': 'GM06993', 'protocol': 'non-directional', 'relation': 'maternal grandfather', 'family': '1341'}, 'GSM957356': {'sample': 'GM06985', 'protocol': 'non-directional', 'relation': 'maternal grandmother', 'family': '1341'}, 'GSM1716871': {'line': 'Hela'}, 'GSM1716870': {'line': 'Hela'}, 'GSM1716873': {'line': 'Hela'}, 'GSM1716872': {'line': 'Hela'}, 'GSM1716875': {'line': 'Hela'}, 'GSM1716874': {'line': 'Hela'}, 'GSM3190670': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'Yes', 'visit': 'RV-A09', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'F', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', '4': 'No', '2': 'No', 'years': '8', 'libcounts': '5.273196', 'event': 'Case', '229e': 'No', 'nl63': 'No'}, 'GSM1963978': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963979': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963976': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963977': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963974': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963975': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963972': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963973': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963970': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1963971': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM1376129': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2889070': {'tissue': 'pancreatic islets'}, 'GSM2674611': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM2674610': {'compartment': 'exosome', 'tissue': 'Blood'}, 'GSM1432454': {'protocol': 'differentiated with calcium chloride for 2 days and incubated with recombinant human IL-4 for 3 hours', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432455': {'protocol': 'differentiated with calcium chloride for 2 days and incubated with recombinant human IL-4 for 3 hours', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432456': {'protocol': 'differentiated with calcium chloride for 2 days and incubated with recombinant human IL-4 for 24 hours', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432457': {'protocol': 'differentiated with calcium chloride for 2 days and incubated with recombinant human IL-4 for 24 hours', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432452': {'protocol': 'differentiated with calcium chloride for 2 days', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432453': {'protocol': 'differentiated with calcium chloride for 2 days', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432458': {'protocol': 'differentiated with calcium chloride for 5 days', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432459': {'protocol': 'differentiated with calcium chloride for 5 days', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM2348453': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348452': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348451': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348450': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348457': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348456': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348455': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2611000': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2348459': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348458': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2611003': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1276908': {'score': '9.6', 'sequence': 'TGACCA', 'number': '4', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'control'}, 'GSM1276909': {'score': '9.7', 'sequence': 'TAGCTT', 'number': '10', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'control'}, 'GSM2492127': {'type': 'Small Airway Epithelial Cells', 'agent': 'blasticidin', 'variation': 'KRAS G12V'}, 'GSM2611002': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1276900': {'score': '9.6', 'sequence': 'TAGCTT', 'targeted': 'PCBP2', 'number': '10', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276901': {'score': '9.8', 'sequence': 'CGATGT', 'targeted': 'PCBP2', 'number': '2', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276902': {'score': '9', 'sequence': 'TTAGGC', 'targeted': 'PCBP2', 'number': '3', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276903': {'score': '9.3', 'sequence': 'GAGTGG', 'targeted': 'RNPS1', 'number': '23', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2492129': {'type': 'Small Airway Epithelial Cells', 'agent': 'puromycin', 'variation': 'KRAS G12V'}, 'GSM1276905': {'score': '8.2', 'sequence': 'GGCTAC', 'targeted': 'RNPS1', 'number': '11', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276906': {'score': '8.1', 'sequence': 'AGTCAA', 'number': '13', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'control'}, 'GSM1276907': {'score': '9.1', 'sequence': 'ATCACG', 'number': '1', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'control'}, 'GSM2307171': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307170': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307173': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307172': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307175': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2611007': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2307177': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307176': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307179': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307178': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2611006': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1960281': {'derivative': 'PC9 WZ4002-tolerant', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM1960280': {'derivative': 'PC9 WZ4002-tolerant', 'line': 'PC9 NSCLC cell line', 'treatment': 'Vehicle'}, 'GSM1960283': {'derivative': 'PC9 WZ4002-tolerant', 'line': 'PC9 NSCLC cell line', 'treatment': 'WZ4002'}, 'GSM1960282': {'derivative': 'PC9 WZ4002-tolerant', 'line': 'PC9 NSCLC cell line', 'treatment': 'WZ4002'}, 'GSM2311832': {'culture': '12', 'line': 'DCX+'}, 'GSM3594251': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1500847': {'line': 'HCT116'}, 'GSM2535851': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4271', 'samplename': '1_T1D_CD154+_C18', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25510', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4271', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C18'}, 'GSM2535850': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4269', 'samplename': '1_T1D_CD154+_C91', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25508', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4269', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C91'}, 'GSM2535853': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4276', 'samplename': '1_T1D_CD154+_C22', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25515', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4276', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C22'}, 'GSM2311830': {'culture': '12', 'line': 'DCX+'}, 'GSM2535855': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4278', 'samplename': '1_T1D_CD154+_C36', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25517', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4278', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C36'}, 'GSM2535857': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4279', 'samplename': '1_T1D_CD154+_C78', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25518', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4279', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C78'}, 'GSM2535859': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4280', 'samplename': '1_T1D_CD154+_C84', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25519', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4280', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C84'}, 'GSM2311837': {'culture': '12', 'line': 'DCX+'}, 'GSM2311836': {'culture': '12', 'line': 'DCX+'}, 'GSM1664620': {'tissue': 'laryngo-pharyngeal tumor', 'id': 'LP7'}, 'GSM2311834': {'culture': '12', 'line': 'DCX+'}, 'GSM2035773': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035772': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035771': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035770': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035777': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035776': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035775': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035774': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035779': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035778': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2100232': {'rin': '10', 'Sex': 'Female', 'sspg': '153', 'age': '52', 'bmi': '30.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '843', 'method': 'Life-Tech GITC'}, 'GSM2468937': {'with': '0.05% DMSO', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468936': {'with': '0.05% DMSO', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468935': {'with': '0.05% DMSO', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468934': {'with': '0.05% DMSO', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468933': {'with': '0.05% DMSO', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468932': {'with': '500 nM BI00923812', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468931': {'with': '500 nM BI00923812', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468930': {'with': '500 nM BI00923812', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468939': {'with': '500 nM BI00923802', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468938': {'with': '0.05% DMSO', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM1964905': {'line': 'breast cancer cell line MDA-MB-231', 'treatment': 'Infected cells were selected with puromycin (1mg/mL) for 5 days', 'infection': 'Scrambled control shRNA_1'}, 'GSM3594255': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM2889076': {'tissue': 'pancreatic islets'}, 'GSM1564291': {'strain': 'R1', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '100', 'replicate': '1', 'hcc827': '0'}, 'GSM2535719': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1191', 'samplename': '1gr_413CD3_C22', 'seqsite': 'BRI', 'sampleID': 'S13318', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1191', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C22'}, 'GSM1334193': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM2769058': {'antibody': 'Pol II(CST, #14958)', 'line': 'DLD-1-OsTIR1', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2769059': {'antibody': 'Pol II(CST, #14958)', 'line': 'DLD-1-OsTIR1', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM565970': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'NQO1 inhibitor'}, 'GSM565971': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'DMSO only'}, 'GSM565972': {'supplier': 'Dr. Steve Ethier, University of Michigan', 'line': 'SUM159PT', 'treatment': 'non-targeting siRNAs'}, 'GSM2769055': {'antibody': 'PAF1(Abcam, ab20662)', 'line': 'HCT116', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM565974': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'non-targeting siRNAs'}, 'GSM565975': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'STAT3 siRNAs'}, 'GSM565976': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'non-targeting siRNAs'}, 'GSM565977': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'STAT3 siRNAs'}, 'GSM2093117': {'bin': '3', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093116': {'bin': '3', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2316558': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2889079': {'tissue': 'pancreatic islets'}, 'GSM1694222': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM976973': {'sorting': 'Anti-human KDR-PE (R&D Systems, cat#FAB357P); Anti-human CD31-FITC (BD Biosciences; cat#555445) CD144-FITC (BD bioscience; cat#560411)', 'type': 'Hematovascular Mesodermal Precursors/Direct Precursors of Hemogenic Endothelium'}, 'GSM976974': {'sorting': 'Anti-human KDR-PE (R&D Systems, cat#FAB357P); Anti-human CD31-FITC (BD Biosciences; cat#555445) CD144-FITC (BD bioscience; cat#560411)', 'type': 'Mesodermal subset without hematopoietic potential'}, 'GSM976975': {'sorting': 'CD31 (BD Biosciences 555445), CD43 (BD Biosciences 555475), CD41a (BD Biosciences 555467), CD73(BD Biosciences 550257), CD144(BD Biosciences 560411), CD235a (BD Biosciences 555570)', 'type': 'Hematopoietic cells enriched in erythro-megakaryocytic progenitors'}, 'GSM976976': {'sorting': 'CD31 (BD Biosciences 555445), CD43 (BD Biosciences 555475), CD41a (BD Biosciences 555467), CD73(BD Biosciences 550257), CD144(BD Biosciences 560411), CD235a (BD Biosciences 555570)', 'type': 'Angiogenic hematopoietic progeniotrs'}, 'GSM976977': {'sorting': 'None', 'type': 'Endothelial intermediates formed during development of hemangioblast colonies in semisolid medium'}, 'GSM976978': {'sorting': 'CD43 (BD Biosciences 555475), CD45(BD Biosciences 555485), CD41a (BD Biosciences 555467), CD235a (BD Biosciences 555570)', 'type': 'Hematopoietic cells enriched in erythro-megakaryocytic progenitors'}, 'GSM976979': {'sorting': 'CD43 (BD Biosciences 555475), CD45(BD Biosciences 555485), CD41a (BD Biosciences 555467), CD235a (BD Biosciences 555570)', 'type': 'lin-CD34+CD43+CD45-CD38- multipotent hematopoietic progeniotrs'}, 'GSM1964942': {'line': 'HeLa-229', 'agent': 'Shigella flexneri 5 str. 8401'}, 'GSM1964943': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1964940': {'line': 'HeLa-229', 'agent': '--'}, 'GSM1964941': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2312104': {'culture': '12', 'line': 'DCX-'}, 'GSM1964946': {'line': 'HeLa-229', 'agent': 'Shigella flexneri 5 str. 8401'}, 'GSM2479721': {'antibody': 'n.a.', 'type': 'monocytes', 'stage': 'newborn'}, 'GSM1964944': {'line': 'HeLa-229', 'agent': 'Shigella flexneri 5 str. 8401'}, 'GSM1964945': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1289658': {'with': 'pcDNA3.1-V5/His vector', 'line': 'MIA PaCa-2', 'type': 'human pancreatic cancer cell line'}, 'GSM1289659': {'with': 'pcDNA3.1-GNAS/R201H-V5/His', 'line': 'MIA PaCa-2', 'type': 'human pancreatic cancer cell line'}, 'GSM1289656': {'with': 'pcDNA3.1-V5/His vector', 'line': 'PK8', 'type': 'human pancreatic cancer cell line'}, 'GSM1289657': {'with': 'pcDNA3.1-GNAS/R201H-V5/His', 'line': 'PK8', 'type': 'human pancreatic cancer cell line'}, 'GSM1289654': {'with': 'pcDNA3.1-V5/His vector', 'line': 'PCI35', 'type': 'human pancreatic cancer cell line'}, 'GSM1289655': {'with': 'pcDNA3.1-GNAS/R201H-V5/His', 'line': 'PCI35', 'type': 'human pancreatic cancer cell line'}, 'GSM2438543': {'donor': 'BC5', 'tissue': 'peripheral blood', 'type': 'moDC', 'treatment': 'LPS'}, 'GSM2438542': {'donor': 'BC5', 'tissue': 'peripheral blood', 'type': 'moDC', 'treatment': 'undiff'}, 'GSM2438541': {'donor': 'BC3', 'tissue': 'peripheral blood', 'type': 'IL-10-APC', 'treatment': 'LPS_IL-10'}, 'GSM2438540': {'donor': 'BC3', 'tissue': 'peripheral blood', 'type': 'IL-10-APC', 'treatment': 'IL-10'}, 'GSM2438545': {'donor': 'BC5', 'tissue': 'peripheral blood', 'type': 'IL-10-APC', 'treatment': 'LPS_IL-10'}, 'GSM2438544': {'donor': 'BC5', 'tissue': 'peripheral blood', 'type': 'IL-10-APC', 'treatment': 'IL-10'}, 'GSM2029365': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- +EZH2 (Null + EZH2)'}, 'GSM2029364': {'antibody': 'H3K27me3 (Millipore, 07-449)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- +EZH2 (Null + EZH2)'}, 'GSM2029367': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- +EZH2 (Null + EZH2)'}, 'GSM2029366': {'antibody': 'H3K27ac (Abcam, ab4729)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- +EZH2 (Null + EZH2)'}, 'GSM2029361': {'antibody': 'H3K27ac (Abcam, ab4729)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- (Null)'}, 'GSM2029360': {'antibody': 'H3K4me3 (Abcam, ab8580)', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- (Null)'}, 'GSM2029363': {'antibody': 'None', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- (Null)'}, 'GSM2430719': {'type': 'human foreskin keratinocytes', 'with': 'vector expressing HPV16 E6/E7'}, 'GSM2430716': {'type': 'human foreskin keratinocytes', 'with': 'vector expressing HPV16 E6'}, 'GSM2430717': {'type': 'human foreskin keratinocytes', 'with': 'vector expressing HPV16 E7'}, 'GSM2430714': {'type': 'human foreskin keratinocytes', 'with': 'control vector'}, 'GSM2430715': {'type': 'human foreskin keratinocytes', 'with': 'vector expressing HPV16 E6'}, 'GSM2430712': {'type': 'human foreskin keratinocytes', 'with': 'vector expressing HPV16 E6/E7'}, 'GSM2029368': {'antibody': 'None', 'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- +EZH2 (Null + EZH2)'}, 'GSM2430710': {'type': 'human foreskin keratinocytes', 'with': 'vector expressing HPV16 E6/E7'}, 'GSM2430711': {'type': 'human foreskin keratinocytes', 'with': 'control vector'}, 'GSM2535711': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1181', 'samplename': '1gr_413CD3_C91', 'seqsite': 'BRI', 'sampleID': 'S13308', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1181', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C91'}, 'GSM2387232': {'tissue': 'heart'}, 'GSM3383923': {'tissue': 'pancreas tumor', 'id': 'patient3', 'diagnosis': 'pancreatic cancer'}, 'GSM2387230': {'tissue': 'heart'}, 'GSM2387231': {'tissue': 'heart'}, 'GSM2387236': {'tissue': 'heart'}, 'GSM2387234': {'tissue': 'heart'}, 'GSM3383922': {'tissue': 'pancreas tumor', 'id': 'patient2', 'diagnosis': 'pancreatic cancer'}, 'GSM1958415': {'line': 'HAP1', 'mutation': 'Wildtype', 'passage': 'P12'}, 'GSM2044760': {'line': 'MCF7', 'shRNA': 'shTRIM24', 'variation': 'wild type rescue'}, 'GSM2044761': {'line': 'MCF7', 'shRNA': 'shTRIM24', 'variation': 'SUMO DM rescue'}, 'GSM2044762': {'line': 'MCF7', 'shRNA': 'shTRIM24', 'variation': 'SUMO DM rescue'}, 'GSM1958414': {'line': 'HAP1', 'mutation': 'Wildtype', 'passage': 'P9'}, 'GSM2535716': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1188', 'samplename': '1gr_413CD3_C11', 'seqsite': 'BRI', 'sampleID': 'S13315', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1188', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C11'}, 'GSM1694968': {'line': 'HUES63'}, 'GSM1694969': {'line': 'HUES64'}, 'GSM1694962': {'line': 'HUES44'}, 'GSM1694963': {'line': 'HUES45'}, 'GSM1694960': {'line': 'HUES13'}, 'GSM1694961': {'line': 'HUES28'}, 'GSM1694966': {'line': 'HUES53'}, 'GSM1694967': {'line': 'HUES62'}, 'GSM1694964': {'line': 'HUES48'}, 'GSM1694965': {'line': 'HUES49'}, 'GSM2649729': {'tumor': 'NORMAL', 'barcode': 'BC11', 'Sex': 'male'}, 'GSM2649728': {'tumor': 'TUMOR', 'barcode': 'BC10', 'Sex': 'male'}, 'GSM2649725': {'tumor': 'TUMOR', 'barcode': 'BC7', 'Sex': 'male'}, 'GSM2649724': {'tumor': 'NORMAL', 'barcode': 'BC6', 'Sex': 'male'}, 'GSM2649727': {'tumor': 'NORMAL', 'barcode': 'BC9', 'Sex': 'female'}, 'GSM2649726': {'tumor': 'TUMOR', 'barcode': 'BC8', 'Sex': 'female'}, 'GSM2649721': {'tumor': 'NORMAL', 'barcode': 'BC3', 'Sex': 'male'}, 'GSM2649720': {'tumor': 'TUMOR', 'barcode': 'BC2', 'Sex': 'male'}, 'GSM2649723': {'tumor': 'NORMAL', 'barcode': 'BC5', 'Sex': 'female'}, 'GSM2649722': {'tumor': 'TUMOR', 'barcode': 'BC4', 'Sex': 'female'}, 'GSM3190799': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1.1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.691914'}, 'GSM2029378': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- (Null)'}, 'GSM2535715': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1187', 'samplename': '1gr_413CD3_C05', 'seqsite': 'BRI', 'sampleID': 'S13314', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1187', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C05'}, 'GSM2182754': {'used': '-', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182755': {'used': '-', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182756': {'used': 'ACGT, CATG', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182757': {'used': 'GTAC, TAGC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182758': {'used': 'CAGT, CGAT', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182759': {'used': 'GCAT, CTAG', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM1835790': {'line': 'HT1080', 'type': 'fibroscarcoma cell line', 'treatment': '5day DOX', 'integration': 'chr12'}, 'GSM2209629': {'with': 'none (solvent only)', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2739493': {'differentiation': 'M-CSF', 'donor': 'Donor 4'}, 'GSM2739492': {'differentiation': 'M. obuense', 'donor': 'Donor 3'}, 'GSM2739491': {'differentiation': 'GM-CSF', 'donor': 'Donor 3'}, 'GSM2995472': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995475': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995474': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2739495': {'differentiation': 'M. obuense', 'donor': 'Donor 4'}, 'GSM2739494': {'differentiation': 'GM-CSF', 'donor': 'Donor 4'}, 'GSM2995479': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995478': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2361859': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1564294': {'strain': 'R2', 'line': 'Human lung cancer cell lines NCI-H1975 and HCC827', 'h1975': '50', 'replicate': '2', 'hcc827': '50'}, 'GSM1620708': {'type': 'MCF10a human breast cancer cells'}, 'GSM1821009': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'wild-type'}, 'GSM1821008': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'wild-type'}, 'GSM2053625': {'with': 'control shRNA', 'barcode': 'AAGG', 'type': 'human adult fibroblasts (HAFs)', 'point': '6 days after switching to N3 media without lentivirus'}, 'GSM2053624': {'with': 'control shRNA', 'barcode': 'AACC', 'type': 'human adult fibroblasts (HAFs)', 'point': '6 days after switching to N3 media without lentivirus'}, 'GSM2053627': {'with': 'PTB shRNA', 'barcode': 'ACGC', 'type': 'human adult fibroblasts (HAFs)', 'point': '6 days after switching to N3 media'}, 'GSM2053626': {'with': 'PTB shRNA', 'barcode': 'ACCA', 'type': 'human adult fibroblasts (HAFs)', 'point': '6 days after switching to N3 media'}, 'GSM2053629': {'with': 'PTB shRNA', 'barcode': 'AGTC', 'type': 'human adult fibroblasts (HAFs)', 'point': '3 weeks after switching to N3 media'}, 'GSM2053628': {'with': 'PTB shRNA', 'barcode': 'AGGA', 'type': 'human adult fibroblasts (HAFs)', 'point': '3 weeks after switching to N3 media'}, 'GSM2723006': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.148', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.208', 'age': '58', 'tcga_subtype_dif': '-0.397', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.017', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IV'}, 'GSM1821003': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'a single-copy deletion of chr17p13.1'}, 'GSM2545267': {'line': 'MDA MB-231', 'type': 'TNBC Claudin Low Breast Cancer Cell Line'}, 'GSM2545266': {'line': 'MDA MB-231', 'type': 'TNBC Claudin Low Breast Cancer Cell Line'}, 'GSM1227201': {'subtype': 'ABC', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'U-2932'}, 'GSM1227200': {'subtype': 'GCB', 'state': 'diffuse large B cell lymphoma (DLBCL)', 'line': 'SU-DHL6'}, 'GSM3182739': {'passages': '28-34', 'type': 'embryonic stem cells'}, 'GSM1821002': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'a single-copy deletion of chr17p13.1'}, 'GSM2545269': {'line': 'MDA MB-436', 'type': 'TNBC Claudin Low Breast Cancer Cell Line'}, 'GSM2545268': {'line': 'MDA MB-231', 'type': 'TNBC Claudin Low Breast Cancer Cell Line'}, 'GSM1916182': {'cell_type': 'T Cell/ T LymphocyteÂ\\xa0', 'age': '14', 'sample_type': 'cell culture', 'Sex': 'maleÂ\\xa0', 'tissue': 'peripheral bloodÂ\\xa0', 'phenotype': 'Lymphoid-like', 'biomaterial_provider': 'ATCC', 'cell_line': 'Jurkat T-lymphocytesÂ\\xa0'}, 'GSM2202562': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2202563': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2202560': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2202561': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with active, untreated disease'}, 'GSM2202566': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2202567': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM3594602': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2202565': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2202568': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2202569': {'tissue': 'blood', 'type': 'CD4+ T cell', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM3594608': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594609': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2462588': {'line': 'SW480', 'transfection': 'PRDX2 siRNA'}, 'GSM2593164': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593167': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2127240': {'virus': 'mock'}, 'GSM2127247': {'virus': 'mock'}, 'GSM2127246': {'virus': 'mock'}, 'GSM2593163': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593162': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2127249': {'virus': 'ZIKVM'}, 'GSM2127248': {'virus': 'mock'}, 'GSM2593169': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593168': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2462586': {'line': 'SW480', 'transfection': 'Control siRNA'}, 'GSM2462587': {'line': 'SW480', 'transfection': 'PRDX2 siRNA'}, 'GSM2172368': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172369': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172362': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172363': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172360': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172361': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172366': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172367': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172364': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172365': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2451058': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451059': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100138': {'rin': '9.5', 'Sex': 'Male', 'sspg': '92', 'age': '54', 'bmi': '22.4', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '504', 'method': 'Life-Tech GITC'}, 'GSM2100139': {'rin': '9.4', 'Sex': 'Male', 'sspg': '92', 'age': '54', 'bmi': '22.4', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '504', 'method': 'Life-Tech GITC'}, 'GSM2451050': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451051': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100134': {'rin': '9.5', 'Sex': 'Male', 'sspg': '199', 'age': '79', 'bmi': '29', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '496', 'method': 'Qiagen:trizol'}, 'GSM2100135': {'rin': '9.5', 'Sex': 'Male', 'sspg': '199', 'age': '79', 'bmi': '29', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '496', 'method': 'Qiagen:trizol'}, 'GSM2451054': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100133': {'rin': '9.3', 'Sex': 'Male', 'sspg': '69', 'age': '41', 'bmi': '24.6', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '13014', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '475', 'method': 'Life-Tech GITC'}, 'GSM2100130': {'rin': '10', 'Sex': 'Female', 'sspg': '163', 'age': '56', 'bmi': '23.1', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '460', 'method': 'Life-Tech GITC'}, 'GSM2451057': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2200843': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2479753': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2391845': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2723002': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.185', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.139', 'age': '72', 'tcga_subtype_dif': '-0.387', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'BLACK', 'tcga_subtype_imr': '0.38', 'outcome': 'Suboptimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM1957539': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957538': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2544138': {'passages': '5-7', 'type': 'adipose derived mesenchymal stem cells'}, 'GSM2544139': {'passages': '5-7', 'type': 'adipose derived mesenchymal stem cells'}, 'GSM2361851': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2284967': {'protocol': 'Cells were grown in DMEM supplemented with 10%FBS', 'line': 'MDA-MB231', 'type': 'Breast cancer (Basal type)', 'treatment': 'DMSO'}, 'GSM2479752': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM1957530': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957533': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957532': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957535': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2544137': {'passages': '5-7', 'type': 'adipose derived mesenchymal stem cells'}, 'GSM1957537': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957536': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2437164': {'status': 'NGT', 'id': 'GD3'}, 'GSM2411872': {'line': '12888A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411873': {'line': '12888B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411870': {'line': '1236B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411871': {'line': '1236C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411876': {'line': '13352A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411877': {'line': '13352E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411874': {'line': '1296C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411875': {'line': '1296E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411878': {'line': '14157A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411879': {'line': '14157C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2723000': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.102', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.061', 'age': '57', 'tcga_subtype_dif': '0.331', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.277', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2817792': {'type': 'PANC-1', 'treatment': 'gemcitabine 300nM 6h'}, 'GSM2263354': {'group': 'Ctrl', 'gender': 'M', 'age': '27', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263355': {'group': 'Ctrl', 'gender': 'M', 'age': '41', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263356': {'group': 'Ctrl', 'gender': 'M', 'age': '23', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263357': {'group': 'Fy', 'gender': 'F', 'age': '24', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2817798': {'type': 'PANC-1', 'treatment': 'gemcitabine 3uM 6h'}, 'GSM2263358': {'group': 'Fy', 'gender': 'F', 'age': '21', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2263359': {'group': 'Fy', 'gender': 'F', 'age': '37', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM3124820': {'individual': 'mi058', 'group': 'TIL [Term in Labor (with labor)]'}, 'GSM1568496': {'line': 'LP-1', 'treatment': 'DMSO 6h'}, 'GSM1568497': {'line': 'LP-1', 'treatment': 'DMSO 6h'}, 'GSM1568498': {'line': 'LP-1', 'treatment': '2.5uM SGCCBP30 6h'}, 'GSM1568499': {'line': 'LP-1', 'treatment': '2.5uM SGCCBP30 6h'}, 'GSM2243819': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243818': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2723923': {'state': 'ccRCC', 'individual': 'patient 20431713', 'tissue': 'adjacent normal kidney'}, 'GSM2243811': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E6', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243810': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243813': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243812': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243815': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243814': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243817': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243816': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM686943': {'transfection': 'siCTRL (1027280)', 'vendor': 'Santa Cruz', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'p300', 'transgenes': 'none'}, 'GSM686942': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Abcam', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H2A.Z', 'transgenes': 'none'}, 'GSM686941': {'transfection': 'siCTRL (1027280)', 'vendor': 'Abcam', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H2A.Z', 'transgenes': 'none'}, 'GSM1980420': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM686947': {'line': 'LNCaP', 'antibody': 'none', 'transgenes': 'none', 'agent': 'DHT'}, 'GSM686946': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Bethyl', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'MED12', 'transgenes': 'none'}, 'GSM686945': {'transfection': 'siCTRL (1027280)', 'vendor': 'Bethyl', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'MED12', 'transgenes': 'none'}, 'GSM686944': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Santa Cruz', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'p300', 'transgenes': 'none'}, 'GSM686949': {'transgenes': 'none', 'line': 'LNCaP', 'antibody': 'none', 'transfection': 'siCTRL (1027280)', 'agent': 'DHT'}, 'GSM686948': {'transgenes': 'none', 'line': 'LNCaP', 'antibody': 'none', 'transfection': 'siCTRL (1027280)', 'agent': 'vehicle'}, 'GSM916961': {'line': 'HAEC', 'passages': 'Passage 4-6', 'type': 'Primary Human Aortic Endothelial Cells'}, 'GSM916960': {'with': '500 nM Trichostatin A (TSA) for 12hr', 'line': 'HAEC', 'passages': 'Passage 4-6', 'type': 'Primary Human Aortic Endothelial Cells'}, 'GSM916963': {'line': 'HAEC', 'passages': 'Passage 4-6', 'type': 'Primary Human Aortic Endothelial Cells'}, 'GSM916962': {'line': 'HAEC', 'passages': 'Passage 4-6', 'type': 'Primary Human Aortic Endothelial Cells'}, 'GSM1857098': {'prox1gfp': 'plus', 'type': 'iPSC-derived neurons'}, 'GSM2226537': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 6', 'type': 'Primary Tumor'}, 'GSM2226536': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 5', 'type': 'Primary Tumor'}, 'GSM2565445': {'construction': 'PLATE-Seq', 'drug': 'SULCONAZOLE NITRATE'}, 'GSM2226534': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 3', 'type': 'Primary Tumor'}, 'GSM2492459': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2226532': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 1', 'type': 'Primary Tumor'}, 'GSM984339': {'grade': '3', 'recurrence': '0', 'size': '2', 'metastasis': '1', 'Stage': 'IIA'}, 'GSM984338': {'grade': '2', 'recurrence': '0', 'size': '2', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM984337': {'grade': '3', 'recurrence': '0', 'size': '2', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM984336': {'grade': '3', 'recurrence': '0', 'size': '2', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM984335': {'grade': '3', 'recurrence': '1', 'size': '1', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM984334': {'grade': '3', 'recurrence': '0', 'size': '1', 'metastasis': '0', 'Stage': 'I'}, 'GSM984333': {'grade': '2', 'recurrence': '0', 'size': '1', 'metastasis': '0', 'Stage': 'I'}, 'GSM984332': {'grade': '3', 'recurrence': '0', 'size': '2', 'metastasis': '0', 'Stage': 'IIA'}, 'GSM2226539': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 8', 'type': 'Primary Tumor'}, 'GSM984330': {'grade': '3', 'recurrence': '1', 'size': '3', 'metastasis': '1', 'Stage': 'IIIA'}, 'GSM2779619': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779618': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779617': {'strain': 'H9', 'passages': '20-30', 'type': 'ES-derived neuronal cells'}, 'GSM2779616': {'strain': 'H9', 'passages': '20-30', 'type': 'human embryonic stem cells'}, 'GSM2723008': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.251', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.029', 'age': '79', 'tcga_subtype_dif': '0.18', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.046', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2099990': {'rin': '10', 'Sex': 'Male', 'sspg': '93', 'age': '53', 'bmi': '25.6', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '110', 'method': 'Life-Tech GITC'}, 'GSM2099993': {'rin': '10', 'Sex': 'Female', 'sspg': '128', 'age': '59', 'bmi': '28.8', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Hispanic', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '120', 'method': 'Life-Tech GITC'}, 'GSM898055': {'line': 'OCI-LY1', 'antibody': 'P300'}, 'GSM898056': {'line': 'OCI-LY1', 'antibody': 'NCOR'}, 'GSM898057': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM1249878': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siBrd4-2'}, 'GSM1249879': {'line': 'Human Embryonic Kidney 293 cells', 'antibody': 'JMJD6', 'details': 'ab10526 (Abcam)'}, 'GSM1249876': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siJMJD6-2'}, 'GSM1249877': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siBrd4-1'}, 'GSM1249874': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siCTL'}, 'GSM1249875': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siJMJD6-1'}, 'GSM1249872': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siBrd4-1'}, 'GSM1249873': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siBrd4-2'}, 'GSM1249870': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siJMJD6-1'}, 'GSM1249871': {'line': 'Human Embryonic Kidney 293 cells', 'transfection': 'siJMJD6-2'}, 'GSM1654535': {'type': 'peripheral blood mononuclear cells', 'condition': 'stable coronary heart disease'}, 'GSM1654537': {'type': 'peripheral blood mononuclear cells', 'condition': 'stable coronary heart disease'}, 'GSM1654531': {'type': 'peripheral blood mononuclear cells', 'condition': 'stable coronary heart disease'}, 'GSM1654533': {'type': 'peripheral blood mononuclear cells', 'condition': 'stable coronary heart disease'}, 'GSM2099999': {'rin': '10', 'Sex': 'Female', 'sspg': '174', 'age': '63', 'bmi': '28.1', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '123', 'method': 'Life-Tech GITC'}, 'GSM2099998': {'rin': '10', 'Sex': 'Female', 'sspg': '129', 'age': '46', 'bmi': '32.3', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '122', 'method': 'Life-Tech GITC'}, 'GSM2036529': {'gender': 'Male', 'age': '58', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2616664': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616665': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616666': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2285371': {'differentiation': 'iPS-derived', 'conditions': 'grown in neural conditioned medium NCM (Transwell co-culture)'}, 'GSM2616660': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616661': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2616662': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616663': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616668': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616669': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2285377': {'differentiation': 'iPS-derived', 'conditions': 'grown in basal medium'}, 'GSM1194686': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 2'}, 'GSM1194687': {'type': 'Normal basal cells', 'pathology': 'Normal', 'patient': 'Patient 3'}, 'GSM1194684': {'pathology': 'Premalignant', 'tissue': 'Premalignant lesion', 'patient': 'Patient 2'}, 'GSM1194685': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 2'}, 'GSM1194682': {'type': 'Normal basal cells', 'pathology': 'Normal', 'patient': 'Patient 2'}, 'GSM1194683': {'pathology': 'Premalignant', 'tissue': 'Premalignant lesion', 'patient': 'Patient 2'}, 'GSM1194680': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 1'}, 'GSM1194681': {'pathology': 'Tumor', 'tissue': 'Squamous cell carcinoma', 'patient': 'Patient 1'}, 'GSM1194688': {'pathology': 'Premalignant', 'tissue': 'Premalignant lesion', 'patient': 'Patient 3'}, 'GSM1194689': {'pathology': 'Premalignant', 'tissue': 'Premalignant lesion', 'patient': 'Patient 3'}, 'GSM2303470': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM1202576': {'line': 'MDA-LM2', 'rep': '4', 'point': '2'}, 'GSM2303472': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303473': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303474': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303475': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCG268'}, 'GSM2303476': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303477': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303478': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303479': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM1202574': {'line': 'MDA-LM2', 'rep': '2', 'point': '2'}, 'GSM2242773': {'line': 'A375', 'replicate': '4'}, 'GSM1704576': {'protocol': '24 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704575': {'protocol': '12 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704574': {'protocol': 'Uninfected', 'analysis': 'mRNA-seq', 'strain': 'none', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704573': {'protocol': 'Uninfected', 'analysis': 'mRNA-seq', 'strain': 'none', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704572': {'protocol': 'Interferon treatment', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704571': {'protocol': 'Interferon treatment', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704570': {'protocol': '40 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM2242779': {'line': 'A375', 'replicate': '4'}, 'GSM2242778': {'line': 'A375', 'replicate': '4'}, 'GSM1704579': {'protocol': '72 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1704578': {'protocol': '6 h DENV1 infection', 'analysis': 'ribosome profiling', 'strain': 'DENV1 (EU081230.1)', 'replicate': 'rep 1', 'line': 'Huh7 cells', 'compartment': 'Total cell lysate'}, 'GSM1202570': {'line': 'MDA-LM2', 'rep': '2', 'point': '0'}, 'GSM2339272': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339270': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339277': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339275': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2787359': {'catalog': 'Millipore 05-745R', 'antibody': 'H3K4me3'}, 'GSM2787358': {'catalog': 'Millipore 05-745R', 'antibody': 'H3K4me3'}, 'GSM2787353': {'catalog': 'Millipore 05-745R', 'antibody': 'H3K4me3'}, 'GSM2634133': {'line': 'A549', 'sirna': 'Negative control siRNA (designed by siDirect, RNAi inc., Tokyo, Japan) (5â\\x80\\x99â\\x86\\x923â\\x80\\x99): GUACCGCACGUCAUUCGUAUC and UACGAAUGACGUGCGGUACGU', 'histology': 'Invasive mucinous adenocarcinoma', 'variation': 'control'}, 'GSM2787355': {'catalog': 'Millipore 05-745R', 'antibody': 'H3K4me3'}, 'GSM2787354': {'catalog': 'Millipore 05-745R', 'antibody': 'H3K4me3'}, 'GSM2787357': {'catalog': 'Millipore 05-745R', 'antibody': 'H3K4me3'}, 'GSM2787356': {'catalog': 'Millipore 05-745R', 'antibody': 'H3K4me3'}, 'GSM2840278': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2696530': {'status': '0', 'grade': '1', 'age': '71', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '3'}, 'GSM3711663': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM2275038': {'area_under_the_curve': '1.024910469', 'siteandparticipantcode': '443762', 'baseline_area_under_the_curve': '1.024910469', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '915803', 'sampleID': 'S12575', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib883', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_443762', 'gender': 'Male', 'age': '23', 'race': 'White', 'libraryid': 'lib883', 'studysiteshort': 'COLORADO'}, 'GSM2275039': {'area_under_the_curve': '1.185445469', 'siteandparticipantcode': '707556', 'baseline_area_under_the_curve': '1.185445469', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '924436', 'sampleID': 'S12576', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib884', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'Control', 'name': 'AbATE_707556', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib884', 'studysiteshort': 'COLORADO'}, 'GSM2840279': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2696535': {'status': '2+', 'grade': '3', 'age': '24', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.8'}, 'GSM2696536': {'status': '2+', 'grade': '3', 'age': '24', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.8'}, 'GSM2696537': {'status': '2+', 'grade': '2', 'age': '39', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '9.9'}, 'GSM2696538': {'status': '3+', 'grade': '2', 'age': '38', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '9.2'}, 'GSM2696539': {'status': '2+', 'grade': '3', 'age': '51', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '4.2'}, 'GSM2275030': {'area_under_the_curve': '0.552821719', 'siteandparticipantcode': '333398', 'baseline_area_under_the_curve': '0.552821719', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '915456', 'sampleID': 'S12567', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib875', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_333398', 'gender': 'Female', 'age': '27', 'race': 'White', 'libraryid': 'lib875', 'studysiteshort': 'UCSF'}, 'GSM2275031': {'area_under_the_curve': '0.591352188', 'siteandparticipantcode': '475166', 'baseline_area_under_the_curve': '0.591352188', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '912448', 'sampleID': 'S12568', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib876', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'Control', 'name': 'AbATE_475166', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib876', 'studysiteshort': 'UCSF'}, 'GSM2275036': {'area_under_the_curve': '0.553752656', 'siteandparticipantcode': '676063', 'baseline_area_under_the_curve': '0.553752656', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '931670', 'sampleID': 'S12573', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib881', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_676063', 'gender': 'Female', 'age': '14', 'race': 'White', 'libraryid': 'lib881', 'studysiteshort': 'UCSF'}, 'GSM2275037': {'area_under_the_curve': '0.756541875', 'siteandparticipantcode': '692210', 'baseline_area_under_the_curve': '0.756541875', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '934423', 'sampleID': 'S12574', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib882', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'Control', 'name': 'AbATE_692210', 'gender': 'Female', 'age': '15', 'race': 'White; Asian', 'libraryid': 'lib882', 'studysiteshort': 'UCSF'}, 'GSM2275034': {'area_under_the_curve': '0.505240469', 'siteandparticipantcode': '479125', 'baseline_area_under_the_curve': '0.505240469', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '924096', 'sampleID': 'S12571', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib879', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'Control', 'name': 'AbATE_479125', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib879', 'studysiteshort': 'UCSF'}, 'GSM2275035': {'area_under_the_curve': '0.953871071', 'siteandparticipantcode': '464149', 'baseline_area_under_the_curve': '0.953871071', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '931161', 'sampleID': 'S12572', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib880', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_464149', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib880', 'studysiteshort': 'UCSF'}, 'GSM1896276': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Listeria', 'time': '24 hr'}, 'GSM1896277': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Listeria', 'time': '24 hr'}, 'GSM1896274': {'individual': 'EU302', 'type': 'macrophage', 'infection': 'Listeria', 'time': '24 hr'}, 'GSM2565057': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM1896272': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '24 hr'}, 'GSM1896273': {'individual': 'EU28', 'type': 'macrophage', 'infection': 'Listeria', 'time': '24 hr'}, 'GSM1896270': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '24 hr'}, 'GSM1896271': {'individual': 'EU52', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '24 hr'}, 'GSM3711667': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '7'}, 'GSM1896278': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Listeria', 'time': '24 hr'}, 'GSM3711666': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '7'}, 'GSM2194300': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194301': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194302': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194303': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194304': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM3711665': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '7'}, 'GSM2194306': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194307': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194308': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194309': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM3711664': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '13'}, 'GSM921028': {'barcode': 'CGTGGC', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd6'}, 'GSM921029': {'barcode': 'GCGTCC', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd7'}, 'GSM921022': {'barcode': 'TCAAAG', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd7'}, 'GSM921023': {'barcode': 'CATGAT', 'type': 'Fibroblasts', 'treatment': 'Noninduced', 'name': 'Charlotte', 'day': 'd0'}, 'GSM921020': {'barcode': 'ATCTCT', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd4'}, 'GSM921021': {'barcode': 'GCCTAG', 'type': 'Fibroblasts', 'treatment': 'Adipogenesis', 'name': 'Daphne', 'day': 'd5'}, 'GSM921026': {'barcode': 'TCTACC', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd4'}, 'GSM921027': {'barcode': 'AGTCGT', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd5'}, 'GSM921024': {'barcode': 'TGTGCG', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd2'}, 'GSM921025': {'barcode': 'GCAGGA', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Charlotte', 'day': 'd3'}, 'GSM2895284': {'tissue': 'Peripheral blood mononuclear cells', 'type': \"10x Genomics single cell 3' v2\", 'tags': '12 bases tag: IgG_control, IgG2a_control, IgG1_control, IgG2a_2_control, IgG2b_control, IgM_control, IgG2b_2_control, IgG1_2_control; 10 bases tag: CD3, CD4, CD8, CD45RA, CCR7, HLA-DR, PD-1'}, 'GSM1053823': {'antibody': 'Flag M2 Agarose beads (Sigma Aldrich)', 'line': 'eCenH3 HeLa S3', 'type': 'Cervical cancer', 'variation': 'CenH3 over-expression'}, 'GSM2895283': {'tissue': 'Peripheral blood mononuclear cells', 'type': \"10x Genomics single cell 3' v2\", 'tags': 'BatchA, BatchB, BatchC, BatchD, BatchE, BatchF, BatchG, BatchH'}, 'GSM2895282': {'tissue': 'Peripheral blood mononuclear cells', 'type': \"10x Genomics single cell 3' v2\", 'tags': 'none'}, 'GSM2724442': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir ST metastasis C 11'}, 'GSM2724443': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir ST metastasis B 11'}, 'GSM2724440': {'line': 'Control', 'type': 'Control Primary tumor, mouse number 2'}, 'GSM2724441': {'line': 'Control', 'type': 'Control primary tumor, mouse number 5'}, 'GSM2724446': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir primary tumor 14'}, 'GSM2724447': {'line': 'Kif2a', 'type': 'Kif2a bone metastasis, mouse number 56'}, 'GSM2724444': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir ST metastasis A 11'}, 'GSM2724445': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir primary tumor 11'}, 'GSM2724448': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir bone metastasis, mouse number 4966'}, 'GSM2724449': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir brain metastasis, mouse number 4965'}, 'GSM1642778': {'line': '786-O', 'transfection': 'control (pRRL)'}, 'GSM1642779': {'line': '786-O', 'transfection': 'control (pRRL)'}, 'GSM2048528': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048529': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM1642770': {'line': '786-O', 'antibody': 'none', 'transfection': 'HIF-2a (pRRL-HIF-2a)'}, 'GSM1642771': {'line': '786-O', 'transfection': 'HIF-1a (pRRL-HIF-1a)'}, 'GSM1642772': {'line': '786-O', 'transfection': 'HIF-1a (pRRL-HIF-1a)'}, 'GSM1642773': {'line': '786-O', 'transfection': 'HIF-1a (pRRL-HIF-1a)'}, 'GSM2842525': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM1642775': {'line': '786-O', 'transfection': 'HIF-2a (pRRL-HIF-2a)'}, 'GSM1642776': {'line': '786-O', 'transfection': 'HIF-2a (pRRL-HIF-2a)'}, 'GSM1642777': {'line': '786-O', 'transfection': 'control (pRRL)'}, 'GSM3473718': {'type': 'IPSC-derived neurons', 'genotype': 'R841X-C', 'timepoint': '4wk'}, 'GSM3473719': {'type': 'IPSC-derived neurons', 'genotype': 'R841X-C', 'timepoint': '9wk'}, 'GSM3473712': {'type': 'IPSC-derived neurons', 'genotype': 'R841X-C', 'timepoint': '4wk'}, 'GSM3473713': {'type': 'IPSC-derived neurons', 'genotype': 'R841X-C', 'timepoint': '9wk'}, 'GSM3473710': {'type': 'IPSC-derived neurons', 'genotype': 'R841X', 'timepoint': '4wk'}, 'GSM3473711': {'type': 'IPSC-derived neurons', 'genotype': 'R841X', 'timepoint': '9wk'}, 'GSM3473716': {'type': 'IPSC-derived neurons', 'genotype': 'R841X-C', 'timepoint': '4wk'}, 'GSM1060360': {'line': 'EGFP-10a+ MDA-MB-231', 'protocol': 'without MSC supplementation'}, 'GSM3473714': {'type': 'IPSC-derived neurons', 'genotype': 'R841X-C', 'timepoint': '4wk'}, 'GSM3473715': {'type': 'IPSC-derived neurons', 'genotype': 'R841X-C', 'timepoint': '9wk'}, 'GSM2274783': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33228', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9645', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C32', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9645', 'studysiteshort': 'YALE'}, 'GSM2274782': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33227', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9644', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C26', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9644', 'studysiteshort': 'YALE'}, 'GSM2274781': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33226', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9643', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C14', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9643', 'studysiteshort': 'YALE'}, 'GSM2274780': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33225', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9642', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C02', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9642', 'studysiteshort': 'YALE'}, 'GSM2274787': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33232', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9649', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C19', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9649', 'studysiteshort': 'YALE'}, 'GSM2274786': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33231', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9648', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C13', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9648', 'studysiteshort': 'YALE'}, 'GSM2274785': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33230', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9647', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C01', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9647', 'studysiteshort': 'YALE'}, 'GSM2274784': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33229', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9646', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C38', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9646', 'studysiteshort': 'YALE'}, 'GSM2274789': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33238', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9655', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C45', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9655', 'studysiteshort': 'YALE'}, 'GSM2274788': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33236', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9653', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C27', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9653', 'studysiteshort': 'YALE'}, 'GSM2406737': {'source': 'CD34+ hematopoietic stem and progenitor cells', 'type': 'in vitro expanded CD34+ cells', 'vitro': '5 days-PBS control treated'}, 'GSM2406736': {'source': 'CD34+ hematopoietic stem and progenitor cells', 'type': 'in vitro expanded CD34+ cells', 'vitro': '5 days-PBS control treated'}, 'GSM1006729': {'linker_sequence': 'TCGTATGCCGTCTTCTGCTTG', 'antibody': 'BrdU', 'type': 'H1 embryonic stem cells', 'number': 'Santa Cruz 32323-ac'}, 'GSM1006728': {'linker_sequence': 'TCGTATGCCGTCTTCTGCTTG', 'antibody': 'BrdU', 'type': 'H1 embryonic stem cells', 'number': 'Santa Cruz 32323-ac'}, 'GSM1006721': {'antibody': 'H3K27Ac', 'concentration': '50ng/ml', 'type': 'H1 embryonic stem cells', 'number': 'Abcam AB4729', 'treatment': '48hr'}, 'GSM1006723': {'antibody': 'IgG', 'concentration': '50ng/ml', 'type': 'H1 embryonic stem cells', 'number': 'Millipore 12-370', 'treatment': '48hr'}, 'GSM1006722': {'antibody': 'H3K4me3', 'concentration': '50ng/ml', 'type': 'H1 embryonic stem cells', 'number': 'Millipore 07-473', 'treatment': '48hr'}, 'GSM1006725': {'type': 'H1 embryonic stem cells'}, 'GSM1006724': {'type': 'H1 embryonic stem cells'}, 'GSM1006727': {'concentration': '50ng/ml', 'type': 'H1 embryonic stem cells', 'treatment': '48hr'}, 'GSM1006726': {'concentration': '50ng/ml', 'type': 'H1 embryonic stem cells', 'treatment': '48hr'}, 'GSM3112198': {'status': 'Splice Reversed', 'line': 'C643', 'type': 'ribosome protected mRNA'}, 'GSM1838422': {'line': 'K562', 'gene': 'none', 'target': 'none'}, 'GSM3112196': {'status': 'Splice Reversed', 'line': 'C643', 'type': 'ribosome protected mRNA'}, 'GSM3112197': {'status': 'Splice Reversed', 'line': 'C643', 'type': 'ribosome protected mRNA'}, 'GSM3112194': {'status': 'WT-splice', 'line': 'C643', 'type': 'ribosome protected mRNA'}, 'GSM3112195': {'status': 'WT-splice', 'line': 'C643', 'type': 'ribosome protected mRNA'}, 'GSM3112192': {'status': 'Splice Induced', 'line': 'CAL62', 'type': 'mRNA'}, 'GSM3112193': {'status': 'WT-splice', 'line': 'C643', 'type': 'ribosome protected mRNA'}, 'GSM3112190': {'status': 'Splice Induced', 'line': 'CAL62', 'type': 'mRNA'}, 'GSM3112191': {'status': 'Splice Induced', 'line': 'CAL62', 'type': 'mRNA'}, 'GSM1681955': {'gender': 'female', 'age': '63', 'tissue': 'Tumor', 'class': 'II'}, 'GSM1334900': {'transgene': 'NFH-SNRNP70', 'treatment': 'IPL'}, 'GSM2253960': {'line': 'HEK293T'}, 'GSM2253961': {'line': 'HEK293T'}, 'GSM2253962': {'line': 'HEK293T'}, 'GSM2253963': {'line': 'HEK293T'}, 'GSM2253964': {'line': 'HEK293T'}, 'GSM2253965': {'line': 'HEK293T'}, 'GSM2253966': {'line': 'HEK293T'}, 'GSM2253967': {'line': 'HEK293T'}, 'GSM2253968': {'line': 'HEK293T'}, 'GSM2253969': {'line': 'HEK293T'}, 'GSM2575069': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '418', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2303588': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2433748': {'sample_label': '14-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433749': {'sample_label': '15-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433740': {'sample_label': '1955', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433741': {'sample_label': '1958', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433742': {'sample_label': '2008', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433743': {'sample_label': '2033', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433744': {'sample_label': '2045', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433745': {'sample_label': '2070', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433746': {'sample_label': '1-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433747': {'sample_label': '8-NO', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM3711595': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '13'}, 'GSM3711594': {'Sex': 'F', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '9'}, 'GSM2303589': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM1212191': {'type': 'Lymphocyte cell lines', 'treatment': 'control'}, 'GSM1212190': {'type': 'Lymphocyte cell lines', 'treatment': 'control'}, 'GSM1212193': {'type': 'Lymphocyte cell lines', 'treatment': \"4-thiouridine 5' lableing\"}, 'GSM1212192': {'type': 'Lymphocyte cell lines', 'treatment': 'control'}, 'GSM1212195': {'type': 'Lymphocyte cell lines', 'treatment': \"4-thiouridine 5' lableing\"}, 'GSM1212194': {'type': 'Lymphocyte cell lines', 'treatment': \"4-thiouridine 5' lableing\"}, 'GSM1212197': {'type': 'Lymphocyte cell lines', 'treatment': \"4-thiouridine 5' lableing\"}, 'GSM1212196': {'type': 'Lymphocyte cell lines', 'treatment': \"4-thiouridine 5' lableing\"}, 'GSM1212199': {'tissue': 'human heart', 'type': 'Ambion'}, 'GSM1212198': {'tissue': 'human brain', 'type': 'Ambion'}, 'GSM3711590': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '11'}, 'GSM3711593': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '8'}, 'GSM3711592': {'Sex': 'F', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '8'}, 'GSM1545613': {'count': '0', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545612': {'count': '0', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545611': {'count': '5', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545610': {'count': '2', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545617': {'count': '4', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545616': {'count': '4', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '4'}, 'GSM1545615': {'count': '0', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545614': {'count': '1', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545619': {'count': '1', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545618': {'count': '4', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM782165': {'line': \"Cell line derived from Burkitt's lymphoma\", 'passage': 'Multiple'}, 'GSM2474983': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-2295', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2391109': {'disease': 'NSCLC'}, 'GSM2391108': {'disease': 'NSCLC'}, 'GSM1624201': {'line': 'H1', 'treatment': 'DAPT'}, 'GSM2391103': {'disease': 'NSCLC'}, 'GSM2391102': {'disease': 'NSCLC'}, 'GSM2391101': {'disease': 'NSCLC'}, 'GSM2391100': {'disease': 'NSCLC'}, 'GSM2391107': {'disease': 'NSCLC'}, 'GSM2391106': {'disease': 'NSCLC'}, 'GSM2391105': {'disease': 'NSCLC'}, 'GSM2391104': {'disease': 'NSCLC'}, 'GSM1872924': {'10': 'Non-remitter', 'name': 'HF-35631', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM2406738': {'source': 'CD34+ hematopoietic stem and progenitor cells', 'type': 'in vitro expanded CD34+ cells', 'vitro': '5 days-valproic acid treated'}, 'GSM2576749': {'tissue': 'Peripheral blood', 'type': 'Circulating macrophage'}, 'GSM517436': {'stage': 'Embryonic stem cells'}, 'GSM1872925': {'10': 'Non-remitter', 'name': 'HF-37428', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1181985': {'line': 'Caco-2', 'type': 'RNC-mRNA'}, 'GSM1181984': {'line': 'Caco-2', 'type': 'mRNA'}, 'GSM517438': {'stage': 'early initiation'}, 'GSM517439': {'stage': 'neural progenitors'}, 'GSM1401786': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401787': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401784': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401785': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401782': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2674899': {'age': '4-6', 'site': 'center of upper back', 'Sex': 'Female', 'volume': '200', 'strain': 'SCID-Beige', 'replicate': '3', 'laboratory': 'WCELL', 'line': 'H9 (WCELL)', 'sex': 'Female'}, 'GSM1401780': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401781': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2674898': {'age': '4-6', 'site': 'center of upper back', 'Sex': 'Female', 'volume': '200', 'strain': 'SCID-Beige', 'replicate': '1', 'laboratory': 'WCELL', 'line': 'H9 (WCELL)', 'sex': 'Female'}, 'GSM1401788': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1401789': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2674897': {'age': '4-6', 'site': 'center of upper back', 'Sex': 'Male', 'volume': '200', 'strain': 'SCID-Beige', 'replicate': '1', 'laboratory': 'WCELL', 'line': 'DF19-9-11T.H', 'sex': 'Female'}, 'GSM1706708': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'None', 'passages': 'p38', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM1706709': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'None', 'passages': 'p38', 'type': 'human embryonic stem cells (hESCs)', 'method': 'None'}, 'GSM2674896': {'age': '4-6', 'site': 'center of upper back', 'Sex': 'Male', 'volume': '200', 'strain': 'SCID-Beige', 'replicate': '2', 'laboratory': 'WCELL', 'line': 'H14(WA14)', 'sex': 'Female'}, 'GSM1706702': {'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM1706703': {'antibody': 'H3 (Active Motif, 61475)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM1706700': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM1706701': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL1', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM1706706': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM2424904': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1706704': {'antibody': 'HDAC2 (Cell Signaling, 2545S)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM1706705': {'antibody': 'H3K27me3 (Active Motif, 39155)', 'clone': 'CL2', 'passages': 'p12', 'type': 'human induced pluripotent stem cells (hiPSCs)', 'method': 'LentiVirus'}, 'GSM1956176': {'a': '53788', 'cd38': '992', 'cd49f': '563', 'w': '65696', 'h': '53657', 'lin': '404', 'cd34': '4592', 'cd90': '356', 'cd7': '95', 'cd10': '762', 'time': '20854', 'cd135': '1580', 'cd45ra': '200'}, 'GSM1956177': {'a': '69475', 'cd38': '905', 'cd49f': '978', 'w': '65619', 'h': '69388', 'lin': '656', 'cd34': '8487', 'cd90': '141', 'cd7': '161', 'cd10': '1145', 'time': '20630', 'cd135': '5535', 'cd45ra': '1704'}, 'GSM1956174': {'a': '55847', 'cd38': '671', 'cd49f': '250', 'w': '66381', 'h': '55136', 'lin': '481', 'cd34': '4508', 'cd90': '435', 'cd7': '-211', 'cd10': '905', 'time': '21238', 'cd135': '1775', 'cd45ra': '77'}, 'GSM2424905': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1956172': {'a': '57901', 'cd38': '203', 'cd49f': '278', 'w': '69632', 'h': '54495', 'lin': '-571', 'cd34': '7426', 'cd90': '1565', 'cd7': '495', 'cd10': '626', 'time': '21644', 'cd135': '3025', 'cd45ra': '38'}, 'GSM1956173': {'a': '60557', 'cd38': '431', 'cd49f': '1511', 'w': '67320', 'h': '58952', 'lin': '273', 'cd34': '6414', 'cd90': '135', 'cd7': '258', 'cd10': '625', 'time': '21449', 'cd135': '11978', 'cd45ra': '565'}, 'GSM1956170': {'a': '66496', 'cd38': '-94', 'cd49f': '95', 'w': '68865', 'h': '63281', 'lin': '-66', 'cd34': '10686', 'cd90': '1701', 'cd7': '701', 'cd10': '373', 'time': '22059', 'cd135': '1056', 'cd45ra': '-43'}, 'GSM1956171': {'a': '61582', 'cd38': '-371', 'cd49f': '524', 'w': '67736', 'h': '59582', 'lin': '1186', 'cd34': '15951', 'cd90': '7497', 'cd7': '192', 'cd10': '1113', 'time': '21844', 'cd135': '3176', 'cd45ra': '371'}, 'GSM2424902': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1956178': {'a': '61030', 'cd38': '924', 'cd49f': '454', 'w': '68445', 'h': '58436', 'lin': '-61', 'cd34': '9234', 'cd90': '286', 'cd7': '120', 'cd10': '1145', 'time': '20318', 'cd135': '5173', 'cd45ra': '863'}, 'GSM2424903': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM899456': {'tissue': 'brain', 'type': 'primary neural progenitors', 'variation': 'Non-transduced', 'stage': '17 week'}, 'GSM899455': {'tissue': 'brain', 'type': 'primary neural progenitors', 'variation': 'lentiviral-mediated knockdown of RBFOX1', 'stage': '17 week'}, 'GSM899454': {'tissue': 'brain', 'type': 'primary neural progenitors', 'variation': 'lentiviral-mediated knockdown of GFP (control)', 'stage': '17 week'}, 'GSM2424900': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424901': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2687213': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day10'}, 'GSM2687212': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day10'}, 'GSM2687211': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day10'}, 'GSM2687210': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687217': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day10'}, 'GSM2687216': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day10'}, 'GSM2687215': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day10'}, 'GSM2687214': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'day10'}, 'GSM2687219': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day10'}, 'GSM2687218': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'day10'}, 'GSM2817803': {'type': 'PANC-1', 'treatment': 'untreated'}, 'GSM2817802': {'type': 'PANC-1', 'treatment': 'untreated'}, 'GSM2774095': {'status': 'wild-type', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax'}, 'GSM2774097': {'status': 'wild-type', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax'}, 'GSM2080913': {'line': 'C42B', 'antibody': 'H3K27Ac'}, 'GSM2080917': {'line': 'RWPE1', 'antibody': 'H3K27Ac'}, 'GSM2535762': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1245', 'samplename': '1gr_413tetr_C05', 'seqsite': 'BRI', 'sampleID': 'S13413', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1245', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C05'}, 'GSM2080915': {'line': 'C42B', 'antibody': 'none'}, 'GSM2080914': {'line': 'C42B', 'antibody': 'H3K27Ac'}, 'GSM2420289': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420288': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420281': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420280': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420283': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420282': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420285': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420284': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420287': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420286': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM1576426': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human myeloid DC', 'time': '7 d'}, 'GSM1861836': {'subtype': 'naive CD31+ CD4+', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM1861837': {'subtype': 'memory (CD45RA-) CD4', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM1861834': {'subtype': 'memory (CD45RA-) CD4', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM1861835': {'subtype': 'naive CD31- CD4+', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM1576427': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human monocytes', 'time': '0 d'}, 'GSM1861838': {'subtype': 'naive CD31- CD4+', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM1861839': {'subtype': 'naive CD31+ CD4+', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM2326088': {'tag': 'NorHep'}, 'GSM2326089': {'tag': 'NorHep'}, 'GSM1576424': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human myeloid DC', 'time': '1 d'}, 'GSM2326080': {'type': 'Human embryonic stem cell'}, 'GSM2326084': {'tag': 'HepG2'}, 'GSM2326085': {'tag': 'HepG2'}, 'GSM2326086': {'tag': 'SKHep1'}, 'GSM2326087': {'tag': 'SKHep1'}, 'GSM1595850': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with DMSO'}, 'GSM1595851': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with DMSO'}, 'GSM1595852': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with DMSO'}, 'GSM1595853': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with erlotinib'}, 'GSM1595854': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with erlotinib'}, 'GSM1595855': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with erlotinib'}, 'GSM2358959': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358958': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358957': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358956': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358955': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358954': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358953': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358952': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358951': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM2358950': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM1872928': {'10': 'Non-remitter', 'name': 'HF-37220', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2295985': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2295986': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2295987': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2295988': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM2295989': {'line': 'MCF10A', 'type': 'breast cancer'}, 'GSM984234': {'line': 'UACC-812', 'type': 'breast cancer cells'}, 'GSM984235': {'line': 'ZR-75-30', 'type': 'breast cancer cells'}, 'GSM984232': {'line': 'HCC1500', 'type': 'breast cancer cells'}, 'GSM984233': {'line': 'SUM 44PE', 'type': 'breast cancer cells'}, 'GSM984230': {'line': 'CAMA-1', 'type': 'breast cancer cells'}, 'GSM984231': {'line': 'HCC1419', 'type': 'breast cancer cells'}, 'GSM2391958': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391959': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2882968': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject4', 'drug': 'Placebo'}, 'GSM2882969': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject4', 'drug': 'Placebo'}, 'GSM2882964': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject1', 'drug': 'Placebo'}, 'GSM2882965': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject2', 'drug': 'Placebo'}, 'GSM2882966': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject3', 'drug': 'Placebo'}, 'GSM2882967': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject3', 'drug': 'Placebo'}, 'GSM2391954': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391955': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391956': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391957': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1576423': {'assay': 'RNA-seq', 'donor': 'Donor: HD31', 'type': 'primary human myeloid DC', 'time': '0 d'}, 'GSM2325833': {'type': 'Differentiated embryonic stem cell'}, 'GSM1901028': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'PD0325901'}, 'GSM1901029': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'PD0325901'}, 'GSM2741773': {'sirna': 'none', 'line': 'HCT116', 'tissue': 'Human colon cancer cell line HCT116', 'antibody': 'ZFX'}, 'GSM2741772': {'sirna': 'none', 'line': 'HCT116', 'tissue': 'Human colon cancer cell line HCT116', 'antibody': 'ZFX'}, 'GSM2741775': {'sirna': 'none', 'line': 'HCT116', 'tissue': 'Human colon cancer cell line HCT116', 'antibody': 'none'}, 'GSM3595457': {'donor': 'A', 'region': 'Superior colliculus', 'age': '64'}, 'GSM2741777': {'sirna': 'none', 'line': 'HEK293T', 'tissue': 'Human kidney cancer cell line HEK293T', 'antibody': 'ZFX'}, 'GSM2741776': {'sirna': 'none', 'line': 'HEK293T', 'tissue': 'Human kidney cancer cell line HEK293T', 'antibody': 'ZFX'}, 'GSM1901020': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh5', 'treatment': 'doxycycline'}, 'GSM1901021': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh5', 'treatment': 'doxycycline'}, 'GSM1901022': {'line': 'NCI-H1299', 'shRNA': 'shNT', 'treatment': 'doxycycline'}, 'GSM1901023': {'line': 'NCI-H1299', 'shRNA': 'shNT', 'treatment': 'doxycycline'}, 'GSM1901024': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'DMSO'}, 'GSM1901025': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'DMSO'}, 'GSM1901026': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline'}, 'GSM1901027': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline'}, 'GSM1571081': {'stage': 'mesoderm'}, 'GSM2616369': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM1571080': {'stage': 'mesoderm'}, 'GSM2937092': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM3583620': {'type': 'IMR90 iPSC derived cardiomyocytes', 'condition': '3D cardiac spheres', 'stage': 'Day 28 differentiated cells'}, 'GSM3583621': {'type': 'IMR90 iPSC derived cardiomyocytes', 'condition': '3D cardiac spheres', 'stage': 'Day 28 differentiated cells'}, 'GSM2055551': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055550': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055553': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055552': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055555': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055554': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055557': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055556': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2047769': {'well': 'E11', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047768': {'well': 'E10', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047761': {'well': 'E03', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047760': {'well': 'E02', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047763': {'well': 'E05', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047762': {'well': 'E04', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047765': {'well': 'E07', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047764': {'well': 'E06', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047767': {'well': 'E09', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047766': {'well': 'E08', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2316584': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2176270': {'line': 'MCF7', 'type': 'epithelial', 'treatment': 'retinoic acid 10-7M 4hours'}, 'GSM2176271': {'line': 'BT474', 'type': 'epithelial', 'treatment': 'ethanol 4 hours'}, 'GSM2176272': {'line': 'BT474', 'type': 'epithelial', 'treatment': 'retinoic acid 10-7M 4hours'}, 'GSM2644911': {'passages': '74', 'sirna': 'TUNAR siRNAs', 'treatment': '1-AKP'}, 'GSM1683209': {'type': 'MCF10a human breast cancer cells'}, 'GSM1683208': {'type': 'MCF10a human breast cancer cells'}, 'GSM1537307': {'gender': 'Female', 'line': 'ZR751', 'type': 'Luminal'}, 'GSM2883034': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject12', 'drug': 'Placebo'}, 'GSM1683203': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683202': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683201': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683200': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683207': {'type': 'MCF10a human breast cancer cells'}, 'GSM1683206': {'type': 'MCF10a human breast cancer cells'}, 'GSM1683205': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1683204': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1521573': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2883031': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject9', 'drug': 'Placebo'}, 'GSM2883030': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject8', 'drug': 'Placebo'}, 'GSM2883033': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject11', 'drug': 'Placebo'}, 'GSM2883032': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject10', 'drug': 'Placebo'}, 'GSM2186958': {'length': '13', 'line': 'HEK293', 'type': 'Human embryonic Kidney derived cell line', 'modifications': 'CRISPR/Cas9 targetted - modified'}, 'GSM1614672': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614673': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614670': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614671': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614676': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614677': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614674': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614675': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614678': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614679': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM2817708': {'type': 'MIA PACA-2', 'treatment': 'CM03 6h'}, 'GSM2817709': {'type': 'MIA PACA-2', 'treatment': 'CM03 24h'}, 'GSM2806574': {'line': 'A549', 'replicate': '2', 'treatment': '3 hr'}, 'GSM2108513': {'stages': 'mononucleated cell nucleus'}, 'GSM2049103': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049102': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049101': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049100': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049107': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049106': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2616598': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616599': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616596': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2616597': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616594': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2049108': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2616592': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616593': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616590': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2817707': {'type': 'MIA PACA-2', 'treatment': 'CM03 6h'}, 'GSM2840575': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840574': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840577': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840576': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840571': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840570': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840573': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840572': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1899800': {'line': 'HeLa cells', 'genotype': 'Rtf1 knockdown'}, 'GSM2840579': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840578': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2251382': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM1314714': {'type': 'blood endothelial colony forming cells', 'passage': '8 to15'}, 'GSM2312257': {'culture': '12', 'line': 'DCX-'}, 'GSM2339181': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'birth': 'C-section'}, 'GSM2339180': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'birth': 'C-section'}, 'GSM2153139': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2197589': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197588': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197587': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197586': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197585': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197584': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197583': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197582': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197581': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197580': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2632411': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632410': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632413': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632412': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632415': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632414': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632417': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632416': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632419': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632418': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2890014': {'line': 'H929', 'type': 'Multiple Myeloma'}, 'GSM2565762': {'line': 'HeLa', 'tag': 'localization and affinity purification (LAP)-tag', 'with': 'ARS2'}, 'GSM2565763': {'line': 'HeLa', 'tag': 'localization and affinity purification (LAP)-tag', 'with': 'PHAX'}, 'GSM2565760': {'line': 'HeLa', 'tag': 'localization and affinity purification (LAP)-tag', 'with': 'CBP20'}, 'GSM2565761': {'line': 'HeLa', 'tag': 'localization and affinity purification (LAP)-tag', 'with': 'ARS2'}, 'GSM2565766': {'line': 'HEK293 Flp-In T-Rex', 'tag': '3x FLAG-tag', 'with': 'ZC3H18'}, 'GSM2565764': {'line': 'HeLa', 'tag': 'localization and affinity purification (LAP)-tag', 'with': 'PHAX'}, 'GSM2565765': {'line': 'HEK293 Flp-In T-Rex', 'tag': '3x FLAG-tag', 'with': 'ZC3H18'}, 'GSM1233983': {'replicate': '2', 'line': '18486', 'antibody': 'H3K27me3'}, 'GSM1233982': {'replicate': '1', 'line': '18486', 'antibody': 'H3K27me3'}, 'GSM1233981': {'replicate': '2', 'line': '18486', 'antibody': 'H3K27Ac'}, 'GSM1233980': {'replicate': '1', 'line': '18486', 'antibody': 'H3K27Ac'}, 'GSM1233987': {'replicate': '2', 'line': '18486', 'antibody': 'H3K4me1'}, 'GSM1233986': {'replicate': '1', 'line': '18486', 'antibody': 'H3K4me1'}, 'GSM1233985': {'replicate': '2', 'line': '18486', 'antibody': 'H3K36me3'}, 'GSM1233984': {'replicate': '1', 'line': '18486', 'antibody': 'H3K36me3'}, 'GSM1233989': {'replicate': '2', 'line': '18486', 'antibody': 'H3K4me3'}, 'GSM1233988': {'replicate': '1', 'line': '18486', 'antibody': 'H3K4me3'}, 'GSM2153134': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2312259': {'culture': '12', 'line': 'DCX-'}, 'GSM2665749': {'age': 'Day 100', 'well': 'C6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665748': {'age': 'Day 100', 'well': 'B9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665741': {'age': 'Day 100', 'well': 'F11', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665740': {'age': 'Day 100', 'well': 'G3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665743': {'age': 'Day 100', 'well': 'E10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665742': {'age': 'Day 100', 'well': 'C11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665745': {'age': 'Day 100', 'well': 'H2', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665744': {'age': 'Day 100', 'well': 'D8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665747': {'age': 'Day 100', 'well': 'G2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665746': {'age': 'Day 100', 'well': 'A1', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM922203': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922202': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922201': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922200': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922207': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922206': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922205': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922204': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922209': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922208': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM1279686': {'passages': 'unknown', 'crosslinking': 'not applied', 'treatment': 'p37 overexpresion', 'protein': 'not applied', 'type': 'HEK293 Total RNA', 'line': 'HEK293'}, 'GSM1279687': {'passages': 'unknown', 'crosslinking': 'not applied', 'treatment': 'p40 overexpresion', 'protein': 'not applied', 'type': 'HEK293 Total RNA', 'line': 'HEK293'}, 'GSM1279684': {'passages': 'unknown', 'crosslinking': 'not applied', 'treatment': 'AUF1 siRNA', 'protein': 'not applied', 'type': 'HEK293 Total RNA', 'line': 'HEK293'}, 'GSM1279685': {'passages': 'unknown', 'crosslinking': 'not applied', 'treatment': 'Empty Vector', 'protein': 'not applied', 'type': 'HEK293 Total RNA', 'line': 'HEK293'}, 'GSM1279683': {'passages': 'unknown', 'crosslinking': 'not applied', 'treatment': 'Control siRNA', 'protein': 'not applied', 'type': 'HEK293 Total RNA', 'line': 'HEK293'}, 'GSM2687362': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1 + 10 nM Estrogen', 'passage': '7'}, 'GSM2687361': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '5 ng/mL TGF-β1 + 10 nM Estrogen', 'passage': '7'}, 'GSM1279688': {'passages': 'unknown', 'crosslinking': 'not applied', 'treatment': 'p42 overexpresion', 'protein': 'not applied', 'type': 'HEK293 Total RNA', 'line': 'HEK293'}, 'GSM1279689': {'passages': 'unknown', 'crosslinking': 'not applied', 'treatment': 'p45 overexpresion', 'protein': 'not applied', 'type': 'HEK293 Total RNA', 'line': 'HEK293'}, 'GSM1889918': {'sirna': 'ODC1 siRNA treated', 'line': 'Huh7', 'tissue': 'Liver', 'type': 'Hepatocellular carcinoma cell line'}, 'GSM1890540': {'type': 'keratinocyte', 'treatment': 'differentiated in 1.3mM Ca2+', 'time': '120 hours'}, 'GSM2652138': {'origin': 'endothelial cell', 'tissue': 'umbilical vein'}, 'GSM1865622': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1377959': {'status': 'Post anakinra treatment', 'tissue': 'Peripheral blood', 'timepoint': '4', 'diagnosis': 'NLRC4-Macrophage Activation Syndrome (MAS)'}, 'GSM1377958': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'timepoint': '3', 'diagnosis': 'NLRC4-Macrophage Activation Syndrome (MAS)'}, 'GSM2687365': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '10 nM Estrogen', 'passage': '7'}, 'GSM2687364': {'tissue': 'lung, bronchus', 'type': 'epithelial virus transformed', 'exposure': '10 nM Estrogen', 'passage': '7'}, 'GSM1377957': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'timepoint': '2', 'diagnosis': 'NLRC4-Macrophage Activation Syndrome (MAS)'}, 'GSM1377956': {'status': 'Prior to anakinra treatment', 'tissue': 'Peripheral blood', 'timepoint': '1', 'diagnosis': 'NLRC4-Macrophage Activation Syndrome (MAS)'}, 'GSM2218712': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218713': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218710': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218711': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'SKMM1', 'type': 'Multiple myeloma cell line'}, 'GSM2218716': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218717': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218714': {'with': 'lentiviruses carrying FAM46CD90A,D92AGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2141248': {'individual': 'AF23', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141247': {'individual': 'AF21', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141246': {'individual': 'AF21', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2218718': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2218719': {'with': 'lentiviruses carrying FAM46CWTGFP for 72 hours', 'line': 'H929', 'type': 'Multiple myeloma cell line'}, 'GSM2141243': {'individual': 'AF19', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141242': {'individual': 'AF19', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141241': {'individual': 'AF17', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141240': {'individual': 'AF17', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2114229': {'line': 'K562', 'agent': 'actD', 'time': '8 hours since actD treatment'}, 'GSM2114228': {'line': 'K562', 'agent': 'actD', 'time': '8 hours since actD treatment'}, 'GSM2114223': {'line': 'K562', 'agent': 'actD', 'time': '2 hours since actD treatment'}, 'GSM2114222': {'line': 'K562', 'agent': 'actD', 'time': '2 hours since actD treatment'}, 'GSM2114221': {'line': 'K562', 'agent': 'actD', 'time': '0.5 hours since actD treatment'}, 'GSM2114220': {'line': 'K562', 'agent': 'actD', 'time': '0.5 hours since actD treatment'}, 'GSM2114227': {'line': 'K562', 'agent': 'actD', 'time': '4 hours since actD treatment'}, 'GSM2114226': {'line': 'K562', 'agent': 'actD', 'time': '4 hours since actD treatment'}, 'GSM2114225': {'line': 'K562', 'agent': 'actD', 'time': '4 hours since actD treatment'}, 'GSM2114224': {'line': 'K562', 'agent': 'actD', 'time': '2 hours since actD treatment'}, 'GSM2611029': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611028': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611023': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611022': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611021': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611020': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611027': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611026': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611025': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611024': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM1967998': {'line': 'MIA PaCa-2'}, 'GSM1967999': {'line': 'MIA PaCa-2'}, 'GSM2311859': {'culture': '12', 'line': 'DCX+'}, 'GSM2311858': {'culture': '12', 'line': 'DCX+'}, 'GSM2311855': {'culture': '12', 'line': 'DCX+'}, 'GSM2311854': {'culture': '12', 'line': 'DCX+'}, 'GSM2311857': {'culture': '12', 'line': 'DCX+'}, 'GSM2311856': {'culture': '12', 'line': 'DCX+'}, 'GSM2311851': {'culture': '12', 'line': 'DCX+'}, 'GSM1967995': {'line': 'MIA PaCa-2'}, 'GSM2311853': {'culture': '12', 'line': 'DCX+'}, 'GSM2311852': {'culture': '12', 'line': 'DCX+'}, 'GSM1902623': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM1902622': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM1902621': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM1902620': {'line': 'PrEC', 'tissue': 'prostate'}, 'GSM2817119': {'tissues': 'peripheral blood', 'stage': 'early pregnancy'}, 'GSM2817118': {'tissues': 'peripheral blood', 'stage': 'early pregnancy'}, 'GSM2653559': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653558': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653555': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653554': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653557': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653556': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653551': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653550': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653553': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653552': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM1417178': {'state': 'Untreated', 'tissue': 'primary tumour'}, 'GSM1417179': {'state': 'Untreated', 'tissue': 'primary tumour'}, 'GSM2915388': {'antibody': 'ERα HC-20 (Santa Cruz Biotechnology sc-543)', 'type': 'MCF-7 cells'}, 'GSM1417177': {'state': 'Untreated', 'tissue': 'primary tumour'}, 'GSM1395490': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395491': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1338808': {'type': 'M1-polarized IPSDM'}, 'GSM1338809': {'type': 'M1-polarized IPSDM'}, 'GSM1338804': {'type': 'iPSC derived macrophage (IPSDM)'}, 'GSM1338805': {'type': 'iPSC derived macrophage (IPSDM)'}, 'GSM1338806': {'type': 'iPSC derived macrophage (IPSDM)'}, 'GSM1338807': {'type': 'iPSC derived macrophage (IPSDM)'}, 'GSM1338800': {'type': 'Induced pluripotent stem cell (iPSC)'}, 'GSM1338801': {'type': 'Induced pluripotent stem cell (iPSC)'}, 'GSM1338802': {'type': 'Induced pluripotent stem cell (iPSC)'}, 'GSM1338803': {'type': 'Induced pluripotent stem cell (iPSC)'}, 'GSM2342002': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': 'none'}, 'GSM2342003': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': '12 day 1 µM dasatinib'}, 'GSM2342000': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': 'none'}, 'GSM2342001': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': 'none'}, 'GSM2335758': {'line': 'MCF-7', 'tissue': 'breast cancer', 'variation': 'mNT suppressed'}, 'GSM2335759': {'line': 'MCF-7', 'tissue': 'breast cancer', 'variation': 'mNT suppressed'}, 'GSM2342004': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': '12 day 1 µM dasatinib'}, 'GSM2342005': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': '12 day 1 µM dasatinib'}, 'GSM2335754': {'line': 'MCF-7', 'tissue': 'breast cancer', 'variation': 'Control'}, 'GSM2335755': {'line': 'MCF-7', 'tissue': 'breast cancer', 'variation': 'Control'}, 'GSM2342008': {'line': 'Patient-derived neurosphere line GSC8', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM2335757': {'line': 'MCF-7', 'tissue': 'breast cancer', 'variation': 'mNT suppressed'}, 'GSM2411164': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411165': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411166': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411167': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411160': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411161': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411162': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411163': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2309546': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309547': {'source': 'autopsy', 'identifier': 'D', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309544': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309545': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309542': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309543': {'source': 'autopsy', 'identifier': 'D', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309540': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309541': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309548': {'source': 'autopsy', 'identifier': 'D', 'tissue': 'Pectoral muscle', 'classification': 'myotonic dystrophy type 2'}, 'GSM2309549': {'source': 'biopsy', 'identifier': 'C', 'tissue': 'Quadriceps muscle', 'classification': 'None'}, 'GSM2153451': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153450': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153453': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153452': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1197610': {'line': 'HeLa', 'treatment': 'over-express N-terminal flag-tagged YTHDF2 for 24h (0.75ug plasmid/mL)'}, 'GSM2153454': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153457': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153456': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153459': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153458': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2419773': {'posttransfection': 'Total RNA was extracted at 72h posttransfection', 'knockdown': 'Control siRNA', 'line': 'T98', 'type': 'Glioblastoma'}, 'GSM2419772': {'posttransfection': 'Total RNA was extracted at 72h posttransfection', 'knockdown': 'Control siRNA', 'line': 'T98', 'type': 'Glioblastoma'}, 'GSM2419775': {'posttransfection': 'Total RNA was extracted at 72h posttransfection', 'knockdown': 'LKB1 siRNA', 'line': 'T98', 'type': 'Glioblastoma'}, 'GSM2419774': {'posttransfection': 'Total RNA was extracted at 72h posttransfection', 'knockdown': 'LKB1 siRNA', 'line': 'T98', 'type': 'Glioblastoma'}, 'GSM2419777': {'posttransfection': 'Total RNA was extracted at 72h posttransfection', 'knockdown': 'Control siRNA', 'line': 'U87', 'type': 'Glioblastoma'}, 'GSM2419776': {'posttransfection': 'Total RNA was extracted at 72h posttransfection', 'knockdown': 'Control siRNA', 'line': 'U87', 'type': 'Glioblastoma'}, 'GSM1856041': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856040': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1856043': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856042': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-TA1del expressed'}, 'GSM2392155': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392154': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392157': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392156': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392151': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392150': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1537298': {'gender': 'Female', 'line': 'HMEC', 'type': 'Normal Cells', 'antibody': 'None'}, 'GSM1537299': {'gender': 'Female', 'line': 'WI38', 'type': 'Normal Cells', 'antibody': 'None'}, 'GSM1537296': {'gender': 'Female', 'line': 'MDAMB436', 'type': 'Basal-Like Carcinoma', 'antibody': 'Santa Cruz; sc-9001; H-224'}, 'GSM1537297': {'gender': 'Female', 'line': 'ZR751', 'type': 'Luminal', 'antibody': 'Santa Cruz; sc-9001; H-224'}, 'GSM1537294': {'gender': 'Female', 'line': 'WI38', 'type': 'Normal Cells', 'antibody': 'Santa Cruz; sc-9001; H-224'}, 'GSM1537295': {'gender': 'Female', 'line': 'SKBR3', 'type': 'HER2+', 'antibody': 'Santa Cruz; sc-9001; H-224'}, 'GSM1537292': {'gender': 'Female', 'line': 'ZR751', 'type': 'Luminal', 'antibody': 'Millipore; ab07449'}, 'GSM2392158': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1537290': {'gender': 'Female', 'line': 'SKBR3', 'type': 'HER2+', 'antibody': 'Millipore; ab07449'}, 'GSM1537291': {'gender': 'Female', 'line': 'MDAMB436', 'type': 'Basal-Like Carcinoma', 'antibody': 'Millipore; ab07449'}, 'GSM2424920': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424921': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424922': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620445': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2424924': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424925': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424926': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424927': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424928': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424929': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620448': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620449': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2312199': {'culture': '12', 'line': 'DCX-'}, 'GSM2312198': {'culture': '12', 'line': 'DCX-'}, 'GSM2312191': {'culture': '12', 'line': 'DCX-'}, 'GSM2312190': {'culture': '12', 'line': 'DCX-'}, 'GSM2312193': {'culture': '12', 'line': 'DCX-'}, 'GSM2312192': {'culture': '12', 'line': 'DCX-'}, 'GSM2312195': {'culture': '12', 'line': 'DCX-'}, 'GSM2312194': {'culture': '12', 'line': 'DCX-'}, 'GSM2312197': {'culture': '12', 'line': 'DCX-'}, 'GSM2312196': {'culture': '12', 'line': 'DCX-'}, 'GSM2228799': {'donor': '11', 'treatment': 'LPS', 'infection': '48'}, 'GSM1061024': {'transfection': 'RIPK4', 'line': 'PA1 cell'}, 'GSM2477630': {'agent': 'control', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 K700E'}, 'GSM2477631': {'agent': 'H3B-8800', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 K700E'}, 'GSM2477632': {'agent': 'H3B-8800', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 K700E'}, 'GSM2477633': {'agent': 'H3B-8800', 'state': 'Myelogenous leukemia', 'line': 'K562', 'variation': 'SF3B1 K700E'}, 'GSM2350159': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM1085739': {'transfection': 'TCF21 knockdown siRNA', 'type': 'in vitro cultured primary coronary artery smooth muscle cells'}, 'GSM1085738': {'transfection': 'non-silencing control siRNA', 'type': 'in vitro cultured primary coronary artery smooth muscle cells'}, 'GSM1085737': {'transfection': 'non-silencing control siRNA', 'type': 'in vitro cultured primary coronary artery smooth muscle cells'}, 'GSM1085736': {'transfection': 'non-silencing control siRNA', 'type': 'in vitro cultured primary coronary artery smooth muscle cells'}, 'GSM2471098': {'status': 'HIV, Successfully treated', 'donorid': 'ST124', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'PMA_Ionomycin'}, 'GSM2150371': {'antibody': 'H3K27me3', 'treatment': 'SAHA'}, 'GSM2150370': {'antibody': 'H3K27ac', 'treatment': 'SAHA'}, 'GSM2150373': {'antibody': 'H3K4me1', 'treatment': 'SAHA'}, 'GSM2150372': {'antibody': 'H3K36me3', 'treatment': 'SAHA'}, 'GSM2150375': {'antibody': 'H3K9ac', 'treatment': 'SAHA'}, 'GSM2150374': {'antibody': 'H3K4me3', 'treatment': 'SAHA'}, 'GSM2150377': {'antibody': 'Input', 'treatment': 'SAHA'}, 'GSM2150376': {'antibody': 'H3K9me3', 'treatment': 'SAHA'}, 'GSM2150379': {'antibody': 'H3K27me3', 'treatment': 'SB939'}, 'GSM2150378': {'antibody': 'H3K27ac', 'treatment': 'SB939'}, 'GSM2153357': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2092513': {'repertoire': 'TCR-alpha', 'individual': 'patient 2 (non-glioma)', 'tissue': 'peripheral blood'}, 'GSM2287602': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1291156': {'gender': 'Female', 'state': 'healthy control', 'type': 'primary monocytes'}, 'GSM1345809': {'type': 'osteoblastic cell'}, 'GSM1291157': {'gender': 'Female', 'state': 'healthy control', 'type': 'primary monocytes'}, 'GSM2361718': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1294038': {'line': 'Breast cancer cell line T47D-MTVL', 'treatment': 'unstimulated'}, 'GSM1294039': {'line': 'Breast cancer cell line T47D-MTVL', 'treatment': 'progestin R5020-stimulated'}, 'GSM2887501': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887500': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM3594259': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594258': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1957148': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957149': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2887507': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887506': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM3594253': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594252': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1957146': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957147': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957140': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957141': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957142': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957143': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2451055': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1626462': {'tissue': 'placental villus parenchyma'}, 'GSM1626463': {'tissue': 'placental villus parenchyma'}, 'GSM1626460': {'tissue': 'placental villus parenchyma'}, 'GSM1626461': {'tissue': 'placental villus parenchyma'}, 'GSM1626466': {'tissue': 'placental villus parenchyma'}, 'GSM1626467': {'tissue': 'placental villus parenchyma'}, 'GSM1626464': {'tissue': 'placental villus parenchyma'}, 'GSM1626465': {'tissue': 'placental villus parenchyma'}, 'GSM1626468': {'tissue': 'placental villus parenchyma'}, 'GSM1626469': {'tissue': 'placental villus parenchyma'}, 'GSM1940151': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM2138481': {'line': 'M407', 'state': 'Melanoma'}, 'GSM2138483': {'line': 'M257', 'state': 'Melanoma'}, 'GSM1633701': {'line': '786-O RCC cell line'}, 'GSM2469560': {'status': 'resistant', 'gender': 'male', 'individual': 'r12', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM1940150': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1864250': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T3'}, 'GSM2138485': {'line': 'M296', 'state': 'Melanoma'}, 'GSM2138484': {'line': 'M244', 'state': 'Melanoma'}, 'GSM2085989': {'line': 'WC00060', 'sirna': 'KPC1'}, 'GSM2085988': {'line': 'WC00060', 'sirna': 'KPC1'}, 'GSM2138487': {'line': 'M381', 'state': 'Melanoma'}, 'GSM2085983': {'line': 'IM-0223', 'vector': 'Control'}, 'GSM2085982': {'line': 'IM-0223', 'vector': 'Control'}, 'GSM2138486': {'line': 'M318', 'state': 'Melanoma'}, 'GSM2085987': {'line': 'WC00060', 'sirna': 'Control'}, 'GSM2085986': {'line': 'WC00060', 'sirna': 'Control'}, 'GSM2085985': {'line': 'IM-0223', 'vector': 'KPC1'}, 'GSM2085984': {'line': 'IM-0223', 'vector': 'KPC1'}, 'GSM2543809': {'library_id': 'lib7917', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543808': {'library_id': 'lib7916', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1418960': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3K4me3 (Abcam)', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1418961': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3K4me1 (Abcam)', 'treatment': 'DMSO (6hrs)'}, 'GSM1418962': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3K4me1 (Abcam)', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1418963': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3K27ac (Active Motif)', 'treatment': 'DMSO (6hrs)'}, 'GSM1418964': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3K27ac (Active Motif)', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1418965': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H4K16ac (Millipore)', 'treatment': 'DMSO (6hrs)'}, 'GSM1418966': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H4K16ac (Millipore)', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1864258': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oral', 'stage': 'T1'}, 'GSM1418968': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'RNAPII (Abcam (8wG16))', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1418969': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'p53 (EMD Millipore (DO1))', 'treatment': 'DMSO (6hrs)'}, 'GSM2543805': {'library_id': 'lib7913', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.33', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2771732': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_5', 'structure': 'cell body'}, 'GSM1940156': {'with': '0.01% DMSO vehicle', 'line': 'GM12878', 'type': 'lymphoblasts', 'treatment': '72 hours'}, 'GSM2543804': {'library_id': 'lib7912', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.33', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1948541': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM2771733': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_6', 'structure': 'neurite'}, 'GSM2543803': {'library_id': 'lib7905', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2771730': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_3', 'structure': 'neurite'}, 'GSM1907118': {'gondii': 'NA', 'variation': 'NA', 'infection': 'Uninfected'}, 'GSM1907119': {'gondii': 'NA', 'variation': 'NA', 'infection': 'Uninfected'}, 'GSM2771731': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_4', 'structure': 'cell body'}, 'GSM2543801': {'library_id': 'lib7903', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2325953': {'type': 'Human embryonic stem cell'}, 'GSM2543800': {'library_id': 'lib7902', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2648118': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'EC313+Tamoxifen', 'time': '3 weeks'}, 'GSM2771734': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_7', 'structure': 'cell body'}, 'GSM2771735': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_8', 'structure': 'neurite'}, 'GSM2771738': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_13', 'structure': 'neurite'}, 'GSM485456': {'line': 'NA18502'}, 'GSM485457': {'line': 'NA18508'}, 'GSM485454': {'line': 'NA19127'}, 'GSM1138984': {'gender': 'male', 'type': 'blood lymphocyte', 'phenotype': 'control'}, 'GSM1138983': {'gender': 'female', 'type': 'blood lymphocyte', 'phenotype': 'control'}, 'GSM1138982': {'gender': 'male', 'type': 'blood lymphocyte', 'phenotype': 'control'}, 'GSM1138981': {'gender': 'female', 'type': 'blood lymphocyte', 'phenotype': 'control'}, 'GSM1138980': {'gender': 'male', 'type': 'blood lymphocyte', 'phenotype': 'control'}, 'GSM485458': {'line': 'NA19138'}, 'GSM485459': {'line': 'NA18519'}, 'GSM2533737': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2390926': {'disease': 'Healthy Control'}, 'GSM2390927': {'disease': 'Healthy Control'}, 'GSM2390924': {'disease': 'Healthy Control'}, 'GSM2390925': {'disease': 'Healthy Control'}, 'GSM2390922': {'disease': 'Healthy Control'}, 'GSM2390923': {'disease': 'Healthy Control'}, 'GSM2390920': {'disease': 'Healthy Control'}, 'GSM2390921': {'disease': 'Healthy Control'}, 'GSM1980122': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980123': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980120': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980121': {'status': 'no_primers', 'phenotype': 'Cell line', 'stage': 'Cell line'}, 'GSM1980126': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980127': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980124': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2390929': {'disease': 'Healthy Control'}, 'GSM2689178': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689179': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689174': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689175': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689176': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689177': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689170': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689171': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689172': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689173': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1686451': {'line': 'Kupffer cells (Primary culture (Life technologies))', 'treatment': 'BxPC-3 exosomes'}, 'GSM1686450': {'line': 'Kupffer cells (Primary culture (Life technologies))', 'treatment': 'PBS'}, 'GSM1686453': {'line': 'Kupffer cells (Primary culture (Life technologies))', 'treatment': 'BxPC-3 exosomes'}, 'GSM1686452': {'line': 'Kupffer cells (Primary culture (Life technologies))', 'treatment': 'BxPC-3 exosomes'}, 'GSM2204388': {'treatment': 'treated with Dox to induce knockdown'}, 'GSM2204389': {'treatment': 'untreated'}, 'GSM2183465': {'status': 'Germinoma patient', 'type': 'tumor tissue', 'age': '12 y/o', 'strain': 'NOD-SCID', 'gender': 'Male', 'with': 'Radial Glial (RG) cells'}, 'GSM2183467': {'status': 'Healthy child', 'type': 'tumor tissue', 'age': '9 y/o', 'strain': 'NOD-SCID', 'gender': 'Male', 'with': 'Radial Glial (RG) cells'}, 'GSM2183466': {'status': 'Aggressive medulloblastoma patient', 'type': 'tumor tissue', 'age': '5 y/o', 'strain': 'NOD-SCID', 'gender': 'Female', 'with': 'Radial Glial (RG) cells'}, 'GSM1933878': {'status': 'androgen independent (AI)', 'course': 'day 22', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1400975': {'line': 'MCF7'}, 'GSM2932836': {'pucai': '25', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '17'}, 'GSM2932837': {'pucai': '45', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '16'}, 'GSM2932834': {'pucai': '40', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '7'}, 'GSM2932835': {'pucai': '30', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '11'}, 'GSM2932832': {'pucai': '65', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '7'}, 'GSM2932833': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM2948751': {'tumor': 'C1-3', 'tissue': 'VCaP xenograft', 'condition': 'Abi/Enza resistant'}, 'GSM2932830': {'pucai': '10', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '15'}, 'GSM2932831': {'pucai': '10', 'score': '0', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '8'}, 'GSM2420638': {'line': 'HEK293T'}, 'GSM1897358': {'line': 'MCF7', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(+)', 'treatment': 'Isotype PBMC'}, 'GSM1897359': {'line': 'MCF7', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(+)', 'treatment': 'Isotype PBMC+SP'}, 'GSM1897356': {'line': 'ZR75B', 'type': 'breast cancer cell line'}, 'GSM1897357': {'line': 'MCF7', 'tumorgenecity': 'Tumor', 'types': 'Breast Cancer Cell line, ER(+)', 'treatment': 'Isotype SP'}, 'GSM1897354': {'line': 'ZR751', 'type': 'breast cancer cell line'}, 'GSM1897355': {'line': 'ZR7530', 'type': 'breast cancer cell line'}, 'GSM1897352': {'line': 'UACC812', 'type': 'breast cancer cell line'}, 'GSM1897353': {'line': 'UACC893', 'type': 'breast cancer cell line'}, 'GSM1897350': {'line': 'T47D', 'type': 'breast cancer cell line'}, 'GSM1897351': {'line': 'UACC3199', 'type': 'breast cancer cell line'}, 'GSM2295879': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG7'}, 'GSM2243619': {'type': 'Differentiated ES cells'}, 'GSM2243618': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2328848': {'status': 'FACS sorted CD45-CD31-NCAM+ hPSC muscle progenitor', 'facs': 'Immediately', 'line': 'H9', 'age': 'day 50 in culture'}, 'GSM2243613': {'type': 'H9 ES cells'}, 'GSM2243612': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'B6', 'cluster': '3', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Vascular', 'id': 'BT_S2'}, 'GSM2243611': {'type': 'H9 ES cells'}, 'GSM2328849': {'status': 'FACS sorted CD45-CD31-NCAM+ hPSC myotube', 'facs': '5 days expansion and 7 days differentiation', 'line': 'H9', 'age': 'day 62 in culture'}, 'GSM2243617': {'type': 'Differentiated ES cells'}, 'GSM2243616': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243615': {'type': 'H9 ES cells'}, 'GSM2243614': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1858948': {'line': 'LChIT clone 3.2', 'treatment': 'TNF', 'sgrna': 'Control'}, 'GSM1858949': {'line': 'LChIT clone 3.2', 'treatment': 'TNF', 'sgrna': 'Control'}, 'GSM1858946': {'line': 'LChIT clone 3.2', 'treatment': 'TNF', 'sgrna': 'Control'}, 'GSM1858947': {'line': 'LChIT clone 3.2', 'treatment': 'TNF', 'sgrna': 'Control'}, 'GSM1858944': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'Control'}, 'GSM1858945': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'Control'}, 'GSM1858942': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'Control'}, 'GSM2420632': {'line': 'HEK293T'}, 'GSM1858940': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'Control'}, 'GSM1858941': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'Control'}, 'GSM1638214': {'age': '74', 'tissue': 'Prostate', 'type': 'luminal epithelial cells', 'number': 'HPCa177N'}, 'GSM2328845': {'status': 'Fetal Myotubes', 'facs': 'No FACS', 'age': 'human week 17', 'tissue': 'Fetal limb muscle'}, 'GSM1638212': {'age': '62', 'tissue': 'Prostate', 'type': 'luminal epithelial cells', 'number': 'HPCa173N'}, 'GSM1638213': {'age': '67', 'tissue': 'Prostate', 'type': 'luminal epithelial cells', 'number': 'HPCa175N'}, 'GSM1638210': {'age': '67', 'tissue': 'Prostate', 'type': 'basal epithelial cells', 'number': 'HPCa175N'}, 'GSM1638211': {'age': '74', 'tissue': 'Prostate', 'type': 'basal epithelial cells', 'number': 'HPCa177N'}, 'GSM2328842': {'status': 'FACS sorted CD45-CD31-NCAM+ fetal muscle progenitor', 'facs': 'Immediately', 'age': 'human week 17', 'tissue': 'Fetal limb muscle'}, 'GSM2328843': {'status': 'directly isolated fetal muscle stem cell', 'facs': '5 days expansion and 7 days differentiation', 'age': 'human week 17', 'tissue': 'Fetal limb muscle'}, 'GSM2235692': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'CTCF (Millipore 07-729)', 'treatment': '10nM R1881', 'time': '2h'}, 'GSM2235693': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'CTCF (Millipore 07-729)', 'treatment': '10nM R1881', 'time': '2h'}, 'GSM2235690': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'CTCF (Millipore 07-729)', 'treatment': 'Ethanol', 'time': '2h'}, 'GSM2235691': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'CTCF (Millipore 07-729)', 'treatment': 'Ethanol', 'time': '2h'}, 'GSM1848792': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 4', 'point': '3 hours after exercise'}, 'GSM1848793': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 4', 'point': 'pre exercise'}, 'GSM2235694': {'origin': 'bone metastasis of prostate cancer', 'line': 'Vertebral Cancer of Prostate (VCaP)', 'antibody': 'H3K9me3 (Abcam 8898)', 'treatment': '10nM R1881', 'time': '2h'}, 'GSM1848791': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 4', 'point': 'immediately after exercise'}, 'GSM2666119': {'age': 'Day 130', 'well': 'F9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666118': {'age': 'Day 130', 'well': 'B3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM692139': {'vendor': 'Millipore', 'number': '05-690', 'numbers': '1501782 and 17908001', 'fraction': 'Chromatin immunoprecipitated DNA', 'line': 'MDA-MB-231', 'antibody': 'HP1g'}, 'GSM2420637': {'line': 'HEK293T'}, 'GSM1848798': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 8', 'point': '3 hours after exercise'}, 'GSM1848799': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 8', 'point': 'pre exercise'}, 'GSM1592617': {'line': 'EPC2-hTERT', 'conditions': 'ALI (day 14)', 'treatment': 'IL-13 (100 ng/mL)'}, 'GSM1592616': {'line': 'EPC2-hTERT', 'conditions': 'ALI (day 14)', 'treatment': 'IL-13 (100 ng/mL)'}, 'GSM1592615': {'line': 'EPC2-hTERT', 'conditions': 'ALI (day 14)', 'treatment': 'IL-13 (100 ng/mL)'}, 'GSM1592614': {'line': 'EPC2-hTERT', 'conditions': 'ALI (day 14)', 'treatment': 'untreated'}, 'GSM1592613': {'line': 'EPC2-hTERT', 'conditions': 'ALI (day 14)', 'treatment': 'untreated'}, 'GSM1592612': {'line': 'EPC2-hTERT', 'conditions': 'ALI (day 14)', 'treatment': 'untreated'}, 'GSM1592611': {'line': 'EPC2-hTERT', 'conditions': 'submerged (day 8)', 'treatment': 'untreated'}, 'GSM1592610': {'line': 'EPC2-hTERT', 'conditions': 'submerged (day 8)', 'treatment': 'untreated'}, 'GSM2705025': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'AKTi', 'donor': '265'}, 'GSM2705024': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'Vehicle', 'donor': '264'}, 'GSM2705027': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'Vehicle', 'donor': '265'}, 'GSM2705026': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'CAL101', 'donor': '265'}, 'GSM2705023': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'CAL101', 'donor': '264'}, 'GSM2705022': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'AKTi', 'donor': '264'}, 'GSM2705029': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'CAL101', 'donor': '266'}, 'GSM2705028': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'AKTi', 'donor': '266'}, 'GSM1174218': {'line': 'HeLa', 'barcode': 'AAGCTA', 'type': 'exosome-depleted'}, 'GSM2040768': {'line': 'ID00014', 'type': 'lymphoblastoid cell', 'age': '34', 'genotype': '22q11del'}, 'GSM2040769': {'line': 'ID00015', 'type': 'lymphoblastoid cell', 'age': '57', 'genotype': 'wild type'}, 'GSM2040764': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040765': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040766': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM2040767': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM2040760': {'line': 'ID00014', 'type': 'lymphoblastoid cell', 'age': '34', 'genotype': '22q11del'}, 'GSM2040761': {'line': 'ID00015', 'type': 'lymphoblastoid cell', 'age': '57', 'genotype': 'wild type'}, 'GSM2040762': {'line': 'ID00016', 'type': 'lymphoblastoid cell', 'age': '11', 'genotype': '22q11del'}, 'GSM2040763': {'line': 'ID00016', 'type': 'lymphoblastoid cell', 'age': '11', 'genotype': '22q11del'}, 'GSM2298385': {'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM2455240': {'line': 'SET2', 'type': 'cultured sAML cells', 'treatment': 'ARV-825'}, 'GSM1162982': {'patient': 'Disease_K1', 'gender': 'M', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Untreated', 'id': '1'}, 'GSM2455242': {'line': 'SET2', 'type': 'cultured sAML cells', 'treatment': 'ARV-825'}, 'GSM2455245': {'line': 'SET2', 'type': 'cultured sAML cells', 'treatment': 'Control'}, 'GSM2298380': {'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM2298383': {'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'DMSO', 'batch': '2'}, 'GSM2298382': {'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'DMSO', 'batch': '1'}, 'GSM2455249': {'type': 'patient-derived CD34+ sAML progenitor cells', 'treatment': 'ARV-825'}, 'GSM2455248': {'type': 'patient-derived CD34+ sAML progenitor cells', 'treatment': 'ARV-825'}, 'GSM1306816': {'line': 'Caco-2', 'treatment': 'None'}, 'GSM1306817': {'line': 'Caco-2', 'treatment': 'None'}, 'GSM1306818': {'line': 'Caco-2', 'treatment': 'None'}, 'GSM1306819': {'line': 'Caco-2', 'treatment': '10mM TNFa'}, 'GSM2178795': {'ir': '0.46882325363338', 'weight': 'non-obese', 'gender': 'female', 'age': '49', 'bmi': '23', 'disease': 'ngt', 'l': '0.05', 'h': '1', 'id': '23a'}, 'GSM2178794': {'ir': '0.46882325363338', 'weight': 'non-obese', 'gender': 'female', 'age': '49', 'bmi': '23', 'disease': 'ngt', 'l': '0.05', 'h': '0.5', 'id': '23a'}, 'GSM2178797': {'ir': '0.48030739673391', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '23.9', 'disease': 'ngt', 'l': '0.08', 'h': '0.5', 'id': '32a'}, 'GSM2178796': {'ir': '0.46882325363338', 'weight': 'non-obese', 'gender': 'female', 'age': '49', 'bmi': '23', 'disease': 'ngt', 'l': '0.05', 'h': '2', 'id': '23a'}, 'GSM2178791': {'ir': '0.335908632851864', 'weight': 'obese', 'gender': 'female', 'age': '55', 'bmi': '30.9', 'disease': 'ngt', 'l': '0.03', 'h': '1', 'id': '28a'}, 'GSM2178790': {'ir': '1.7921146953405', 'weight': 'obese', 'gender': 'male', 'age': '47', 'bmi': '35.1', 'disease': 'ngt', 'l': '0.07', 'h': '0', 'id': '59a'}, 'GSM2178793': {'ir': '0.335908632851864', 'weight': 'obese', 'gender': 'female', 'age': '55', 'bmi': '30.9', 'disease': 'ngt', 'l': '0.03', 'h': '2', 'id': '28a'}, 'GSM2178792': {'ir': '1.96850393700787', 'weight': 'non-obese', 'gender': 'male', 'age': '61', 'bmi': '24.7', 'disease': 't2d', 'l': '0.16', 'h': '2', 'id': '63a'}, 'GSM2178799': {'ir': '2.29885057471264', 'weight': 'obese', 'gender': 'male', 'age': '51', 'bmi': '33.9', 'disease': 't2d', 'l': '0.09', 'h': '0.5', 'id': '41a'}, 'GSM2178798': {'ir': '0.48030739673391', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '23.9', 'disease': 'ngt', 'l': '0.08', 'h': '1', 'id': '32a'}, 'GSM2348361': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348360': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348363': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2405948': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF8 knockdown'}, 'GSM2348365': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348364': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348367': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348366': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348369': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348368': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2405941': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'control'}, 'GSM2405940': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'control'}, 'GSM2405947': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF8 knockdown'}, 'GSM2405946': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF8 knockdown'}, 'GSM2405945': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF8 knockdown'}, 'GSM2405944': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'control'}, 'GSM1965019': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965018': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965017': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965016': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965015': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965014': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965013': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965012': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965011': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965010': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2392217': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2635278': {'type': 'CD133hi cells'}, 'GSM2635279': {'type': 'Double negative (DN) cells'}, 'GSM1511880': {'line': 'MCF10A', 'tissue': 'breast'}, 'GSM2635270': {'line': 'K562'}, 'GSM2635271': {'line': 'K562'}, 'GSM2635272': {'line': 'K562'}, 'GSM2635273': {'type': 'CD133hi cells'}, 'GSM2635274': {'type': 'Double negative (DN) cells'}, 'GSM2635275': {'type': 'Double positive (DP) cells'}, 'GSM2635276': {'type': 'Notchhi cells'}, 'GSM2635277': {'type': 'CD133hi cells'}, 'GSM2262865': {'protocol': 'LPS and 5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262864': {'protocol': 'LPS and 5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262867': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262866': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262861': {'protocol': 'LPS and 5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262860': {'protocol': 'LPS and 5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262863': {'protocol': 'LPS and 5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262862': {'protocol': 'LPS and 5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262869': {'protocol': '1 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262868': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2551365': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2112323': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'knee', 'type': 'Fibroblast-like synoviocytes'}, 'GSM2112324': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'knee', 'type': 'Fibroblast-like synoviocytes'}, 'GSM2112325': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'knee', 'type': 'Fibroblast-like synoviocytes'}, 'GSM2142433': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2112327': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'knee', 'type': 'Fibroblast-like synoviocytes'}, 'GSM2112328': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'hip', 'type': 'Fibroblast-like synoviocytes'}, 'GSM2112329': {'status': 'rheumatoid arthritis (RA) patient', 'tissue': 'hip', 'type': 'Fibroblast-like synoviocytes'}, 'GSM2172074': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2048604': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2551361': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2551360': {'age': 'Old', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2607527': {'line': 'WA26'}, 'GSM2551362': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2458799': {'source': 'fetus', 'line': 'The 293T cell line is a highly transfectable derivative of human embryonic kidney 293 cells, and contains the SV40 T-antigen', 'type': 'embryonic kidney cell line'}, 'GSM1704804': {'line': 'H1 embryonic stem cells', 'type': 'day 6 ES cells differentiating along the cardiac lineage', 'variation': 'wild-type'}, 'GSM2048609': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048608': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM1958527': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'M'}, 'GSM1958526': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'M'}, 'GSM1958525': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'F'}, 'GSM1958524': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'M'}, 'GSM1958523': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'M'}, 'GSM3190843': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '6.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.012599'}, 'GSM1958521': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'M'}, 'GSM1958520': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'M'}, 'GSM3190848': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '6.322669'}, 'GSM1958528': {'type': 'Non-bone related diseased osteoblasts', 'Sex': 'M'}, 'GSM913885': {'tissue': 'Parathyroid tumor', 'patient': '3', 'agent': 'Control', 'time': '24h'}, 'GSM913884': {'tissue': 'Parathyroid tumor', 'patient': '2', 'agent': 'OHT', 'time': '48h'}, 'GSM913887': {'tissue': 'Parathyroid tumor', 'patient': '3', 'agent': 'DPN', 'time': '24h'}, 'GSM913886': {'tissue': 'Parathyroid tumor', 'patient': '3', 'agent': 'Control', 'time': '48h'}, 'GSM913881': {'tissue': 'Parathyroid tumor', 'patient': '2', 'agent': 'DPN', 'time': '24h'}, 'GSM2632599': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM913883': {'tissue': 'Parathyroid tumor', 'patient': '2', 'agent': 'OHT', 'time': '24h'}, 'GSM913882': {'tissue': 'Parathyroid tumor', 'patient': '2', 'agent': 'DPN', 'time': '48h'}, 'GSM785390': {'type': 'transitional', 'normal': 'normal'}, 'GSM785391': {'type': 'transitional', 'normal': 'cancer'}, 'GSM785392': {'type': 'transitional', 'normal': 'normal'}, 'GSM2632597': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM913889': {'tissue': 'Parathyroid tumor', 'patient': '3', 'agent': 'OHT', 'time': '24h'}, 'GSM913888': {'tissue': 'Parathyroid tumor', 'patient': '3', 'agent': 'DPN', 'time': '48h'}, 'GSM785396': {'type': 'transitional', 'normal': 'normal'}, 'GSM2632593': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2815908': {'line': 'H9'}, 'GSM2815909': {'line': 'H9'}, 'GSM2815906': {'line': 'H9'}, 'GSM2815907': {'line': 'H9'}, 'GSM2815904': {'line': 'H9'}, 'GSM2815905': {'line': 'H9'}, 'GSM2815902': {'line': 'H9'}, 'GSM2815903': {'line': 'H9'}, 'GSM2815900': {'line': 'H9'}, 'GSM2815901': {'line': 'H9'}, 'GSM1704802': {'line': 'H1 embryonic stem cells', 'type': 'day 6 ES cells differentiating along the cardiac lineage', 'variation': 'ZNF503 shRNA knockdown'}, 'GSM1551281': {'tissue': 'Thyroid tumor', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551280': {'tissue': 'Thyroid tumor', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551283': {'tissue': 'Thyroid tumor', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551282': {'tissue': 'Thyroid tumor', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551285': {'tissue': 'Thyroid tumor', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551284': {'tissue': 'Thyroid tumor', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551287': {'tissue': 'Thyroid tumor', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551286': {'tissue': 'Thyroid tumor', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551289': {'tissue': 'Normal Thyroid', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551288': {'tissue': 'Normal Thyroid', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1972960': {'line': 'H9', 'treatment': 'Control treated with Retinoic Acid (RA) for 4 days'}, 'GSM2050859': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050858': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050853': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050852': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050851': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050850': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050857': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050856': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050855': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050854': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2287693': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287692': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287691': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287690': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287697': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287696': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287695': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287694': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287699': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287698': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM3189286': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.563726', 'percentaligned': '0.958754423', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '11.609991', 'original': 'Case'}, 'GSM1203307': {'tissue': 'bone marrow'}, 'GSM1203305': {'tissue': 'bone marrow'}, 'GSM1228187': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM3189283': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.704256', 'percentaligned': '0.951605767', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.548807', 'original': 'Control'}, 'GSM2562525': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM485430': {'line': 'NA19193'}, 'GSM2562527': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562526': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562521': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562520': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562523': {'gender': 'female', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM485431': {'line': 'NA18516'}, 'GSM3189281': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '21', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.544663', 'percentaligned': '0.951794008', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '8.797448', 'original': 'Case'}, 'GSM2562529': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562528': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2840288': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM485434': {'line': 'NA18498'}, 'GSM485435': {'line': 'NA19131'}, 'GSM485436': {'line': 'NA19108'}, 'GSM485437': {'line': 'NA19190'}, 'GSM485438': {'line': 'NA18861'}, 'GSM1203308': {'tissue': 'bone marrow'}, 'GSM485439': {'line': 'NA19257'}, 'GSM1203309': {'tissue': 'bone marrow'}, 'GSM732316': {'status': 'stage III colorectal cancer patients', 'type': 'Bowel adenocarcinoma tissue'}, 'GSM732317': {'status': 'stage III colorectal cancer patients', 'type': 'normal bowel tissue'}, 'GSM732315': {'status': 'stage III colorectal cancer patients', 'type': 'normal bowel tissue'}, 'GSM2586183': {'tissue': 'PBMC', 'type': 'DC', 'sorting': 'Lin-HLA-DR+CD135+', 'batch': 'first run'}, 'GSM2586184': {'tissue': 'PBMC', 'type': 'DC', 'sorting': 'Lin-HLA-DR+CD135+', 'batch': 'second run'}, 'GSM732318': {'status': 'stage III colorectal cancer patients', 'type': 'Bowel adenocarcinoma tissue'}, 'GSM2264858': {'line': 'H9', 'type': 'hESC'}, 'GSM2264859': {'line': 'H9', 'type': 'hESC'}, 'GSM3189068': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.595864', 'percentaligned': '0.955988', 'Sex': 'M', 'nl63': 'Yes', 'libcounts': '11.055852', 'original': 'Control'}, 'GSM2264852': {'line': 'H1', 'type': 'hESC-derived cells'}, 'GSM2264853': {'line': 'H1', 'type': 'hESC-derived cells'}, 'GSM2264850': {'line': 'H1', 'type': 'hESC'}, 'GSM2264851': {'line': 'H1', 'type': 'hESC'}, 'GSM2264856': {'line': 'H1', 'type': 'hESC-derived cells'}, 'GSM2264857': {'line': 'H1', 'type': 'hESC-derived cells'}, 'GSM2264854': {'line': 'H1', 'type': 'hESC-derived cells'}, 'GSM2264855': {'line': 'H1', 'type': 'hESC-derived cells'}, 'GSM2473519': {'library_name': 'Drug A Replicate2', 'age': '36', 'Sex': 'Female', 'tissue': 'Cell Line HL-60', 'treatment': \"5-aza-2'-deoxycytidine (decitabine, 5-AZA-CdR)\", 'type': 'acute promyelocytic leukemia'}, 'GSM2473518': {'library_name': 'Drug D Replicate1', 'age': '36', 'Sex': 'Female', 'tissue': 'Cell Line HL-60', 'treatment': '3-deazaneplanocin-A (DZNep)', 'type': 'acute promyelocytic leukemia'}, 'GSM2794847': {'status': 'poorly differentiated', 'tissue': 'tumor', 'infection': 'HBV-infected', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2634'}, 'GSM2794846': {'status': 'poorly differentiated', 'tissue': 'non-tumor', 'infection': 'HBV-infected', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2634'}, 'GSM2794843': {'status': 'well differentiated', 'tissue': 'tumor', 'infection': 'HBV-infected', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2429'}, 'GSM2794842': {'status': 'well differentiated', 'tissue': 'non-tumor', 'infection': 'HBV-infected', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2429'}, 'GSM2473515': {'library_name': 'Drug A+D Replicate2', 'age': '36', 'Sex': 'Female', 'tissue': 'Cell Line HL-60', 'treatment': \"5-aza-2'-deoxycytidine (decitabine, 5-AZA-CdR) + 3-deazaneplanocin-A (DZNep)\", 'type': 'acute promyelocytic leukemia'}, 'GSM2794848': {'status': 'poorly differentiated', 'tissue': 'non-tumor', 'infection': 'HBV-infected', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2701'}, 'GSM2473517': {'library_name': 'Drug D Replicate2', 'age': '36', 'Sex': 'Female', 'tissue': 'Cell Line HL-60', 'treatment': '3-deazaneplanocin-A (DZNep)', 'type': 'acute promyelocytic leukemia'}, 'GSM2473516': {'library_name': 'Drug A+D Replicate1', 'age': '36', 'Sex': 'Female', 'tissue': 'Cell Line HL-60', 'treatment': \"5-aza-2'-deoxycytidine (decitabine, 5-AZA-CdR) + 3-deazaneplanocin-A (DZNep)\", 'type': 'acute promyelocytic leukemia'}, 'GSM1395463': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395462': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2052400': {'differentiation': '17', 'iprecs': 'N/A', 'type': 'immortalized basal prostate epithelial cells', 'number': '28', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM2052401': {'differentiation': '0', 'iprecs': 'Erg and Myc over expression; loss of Pten via shRNA', 'type': 'immortalized basal prostate epithelial cells', 'number': '39', 'immortalization': 'HPV E6/E7 and hTert'}, 'GSM1395467': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395466': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2543735': {'library_id': 'lib5876', 'stim': 'NS', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543734': {'library_id': 'lib5875', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543737': {'library_id': 'lib5878', 'stim': 'TT', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543736': {'library_id': 'lib5877', 'stim': 'CR', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543731': {'library_id': 'lib5872', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1395465': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2543733': {'library_id': 'lib5874', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543732': {'library_id': 'lib5873', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1395464': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2543739': {'library_id': 'lib5880', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543738': {'library_id': 'lib5879', 'stim': 'DM', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1395469': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1519357': {'line': 'HCC1419', 'treatment': '1μM Lapatinib indefinitely', 'id': 'dep_mgA6'}, 'GSM1395468': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1281799': {'status': 'No LVAD', 'pacemaker': 'NA', 'fraction': 'NA', 'gender': 'Female', 'age': '63', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': 'NA', 'race': 'African American', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1519356': {'line': 'HCC1419', 'treatment': '1μM Lapatinib 9 days', 'id': 'dtp_mg05'}, 'GSM1281797': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '13', 'gender': 'Male', 'age': '49', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281796': {'status': '6 months LVAD support', 'pacemaker': 'N/A', 'fraction': '13', 'gender': 'Male', 'age': '49', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281795': {'status': '3 months LVAD support', 'pacemaker': 'N/A', 'fraction': '13', 'gender': 'Male', 'age': '49', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281794': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '13', 'gender': 'Male', 'age': '61', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2005', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '384'}, 'GSM1281793': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '13', 'gender': 'Male', 'age': '61', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2005', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '384'}, 'GSM1519355': {'line': 'HCC1419', 'treatment': '1μM Lapatinib 9 days', 'id': 'dtp_mg02'}, 'GSM1281791': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '19', 'gender': 'Female', 'age': '45', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2001', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '159'}, 'GSM1281790': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '10', 'gender': 'Male', 'age': '33', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '377'}, 'GSM1519354': {'line': 'HCC1419', 'treatment': 'untreated', 'id': 'par_mg03'}, 'GSM1519353': {'line': 'HCC1419', 'treatment': 'untreated', 'id': 'par_mg01'}, 'GSM2544046': {'library_id': 'lib8366', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544047': {'library_id': 'lib8367', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3594592': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2445622': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D13', 'type': 'primary human hepatocyte'}, 'GSM2445623': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D13', 'type': 'primary human hepatocyte'}, 'GSM2144488': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2445621': {'number': 'Donor1', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D8', 'type': 'primary human hepatocyte'}, 'GSM2445626': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'IFN', 'time': '8h', 'type': 'primary human hepatocyte'}, 'GSM2445627': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': '12h', 'type': 'primary human hepatocyte'}, 'GSM2445624': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'IFN', 'time': '24h', 'type': 'primary human hepatocyte'}, 'GSM1866120': {'tissue': 'Gliobmastoma biopsy'}, 'GSM2144482': {'status': 'HIV-infected ART-treated patient', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144483': {'status': 'HIV-infected ART-treated patient', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2445628': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': '24h', 'type': 'primary human hepatocyte'}, 'GSM2445629': {'number': 'Donor1', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': '4h', 'type': 'primary human hepatocyte'}, 'GSM2144486': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144487': {'status': 'uninfected control', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144484': {'status': 'HIV-infected ART-treated patient', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2144485': {'status': 'HIV-infected ART-treated patient', 'storage': 'RNALater Immediately Upon Biopsy', 'type': 'Mixed'}, 'GSM2544040': {'library_id': 'lib8356', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544041': {'library_id': 'lib8357', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2402811': {'line': 'SW620', 'tissue': 'colon', 'variation': 'WT'}, 'GSM1982256': {'antibody': 'No', 'line': 'A549', 'type': 'RNA-seq'}, 'GSM1982257': {'antibody': 'SYSY 202 003', 'line': 'A549', 'type': 'Methylated RNA IP seq'}, 'GSM1982258': {'antibody': 'SYSY 202 003', 'line': 'A549', 'type': 'Methylated RNA IP seq'}, 'GSM1982259': {'antibody': 'No', 'line': 'A549', 'type': 'RNA-seq'}, 'GSM2125379': {'line': 'H157', 'type': 'Lung carcinoma cells', 'variation': 'expressing YAP'}, 'GSM2125378': {'line': 'H157', 'type': 'Lung carcinoma cells', 'variation': 'expressing pCDNA-ctl'}, 'GSM2042850': {'antibody': 'anti-FLAG (Sigma, F1804)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042852': {'antibody': 'anti-FLAG (Sigma, F1804)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042854': {'antibody': 'anti-PPARG (Santa Cruz, sc-7273)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '2hr'}, 'GSM2042856': {'antibody': 'anti-PPARG (Santa Cruz, sc-7273)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '2hr'}, 'GSM2042858': {'antibody': 'anti-PPARG (Santa Cruz, sc-7273)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM1808028': {'tissue': 'Heart'}, 'GSM1808029': {'tissue': 'Heart'}, 'GSM1808020': {'tissue': 'Heart'}, 'GSM1808021': {'tissue': 'Heart'}, 'GSM1808022': {'tissue': 'Heart'}, 'GSM1808023': {'tissue': 'Heart'}, 'GSM1808024': {'tissue': 'Heart'}, 'GSM1808025': {'tissue': 'Heart'}, 'GSM1808026': {'tissue': 'Heart'}, 'GSM1808027': {'tissue': 'Heart'}, 'GSM2391129': {'disease': 'NSCLC'}, 'GSM2316843': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316842': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316841': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316840': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316847': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316846': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316845': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316844': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316849': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316848': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2391128': {'disease': 'NSCLC'}, 'GSM1376156': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1833279': {'type': 'MII oocyte'}, 'GSM2805871': {'genotype': 'WT', 'antibody': 'UbH2A Cell Signaling 8240S', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805870': {'genotype': 'WT', 'antibody': 'RYBP Chemicon Ab3637', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2175988': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2474248': {'duration': '60 min', 'genotype': 'DNMT1a and DNMT3b double-knockout', 'treatment': 'EGF'}, 'GSM2474244': {'duration': '60 min', 'genotype': 'WT', 'treatment': 'EGF'}, 'GSM2474245': {'duration': '0', 'genotype': 'DNMT1a and DNMT3b double-knockout', 'treatment': 'untreated'}, 'GSM2474246': {'duration': '0', 'genotype': 'DNMT1a and DNMT3b double-knockout', 'treatment': 'untreated'}, 'GSM2474247': {'duration': '60 min', 'genotype': 'DNMT1a and DNMT3b double-knockout', 'treatment': 'EGF'}, 'GSM2474241': {'duration': '0', 'genotype': 'WT', 'treatment': 'untreated'}, 'GSM2474242': {'duration': '0', 'genotype': 'WT', 'treatment': 'untreated'}, 'GSM2474243': {'duration': '60 min', 'genotype': 'WT', 'treatment': 'EGF'}, 'GSM2325760': {'type': 'embryonic stem cells'}, 'GSM2325761': {'type': 'embryonic stem cells'}, 'GSM2325762': {'type': 'embryonic stem cells'}, 'GSM2325763': {'type': 'embryonic stem cells'}, 'GSM2390944': {'disease': 'Multiple Sclerosis'}, 'GSM2877838': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877839': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877836': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877837': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877834': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877835': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877832': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM1937931': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM2877830': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877831': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2047530': {'well': 'B02', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047531': {'well': 'B03', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047532': {'well': 'B04', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047533': {'well': 'B05', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047534': {'well': 'B06', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047535': {'well': 'B07', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047536': {'well': 'B08', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047537': {'well': 'B09', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047538': {'well': 'B10', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047539': {'well': 'B11', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2390941': {'disease': 'Multiple Sclerosis'}, 'GSM2390942': {'disease': 'Multiple Sclerosis'}, 'GSM2204639': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1937934': {'status': 'HPV16', 'gender': 'M', 'stage': 'IVa'}, 'GSM2627041': {'origin': 'small intestine', 'patient_id': '3', 'type': 'liver metastasis', 'tumor_id': '3'}, 'GSM2242858': {'line': 'A375', 'replicate': '4'}, 'GSM2242859': {'line': 'A375', 'replicate': '4'}, 'GSM2242856': {'line': 'A375', 'replicate': '4'}, 'GSM2242857': {'line': 'A375', 'replicate': '4'}, 'GSM2242854': {'line': 'A375', 'replicate': '4'}, 'GSM2242855': {'line': 'A375', 'replicate': '4'}, 'GSM2242852': {'line': 'A375', 'replicate': '4'}, 'GSM2242853': {'line': 'A375', 'replicate': '4'}, 'GSM2242850': {'line': 'A375', 'replicate': '4'}, 'GSM2242851': {'line': 'A375', 'replicate': '4'}, 'GSM2361780': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361781': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM4008595': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008594': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008597': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008596': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008591': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008590': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM1325079': {'line': 'IMR90', 'type': 'human primary lung fibroblasts', 'variation': 'expressing shRNA directed against macroH2A1'}, 'GSM1325078': {'line': 'IMR90', 'type': 'human primary lung fibroblasts', 'variation': 'expressing shRNA directed against macroH2A1'}, 'GSM1325077': {'line': 'IMR90', 'type': 'human primary lung fibroblasts', 'variation': 'expressing shRNA directed against macroH2A1'}, 'GSM1325076': {'line': 'IMR90', 'type': 'human primary lung fibroblasts', 'variation': 'expressing shRNA directed against luciferase as a control'}, 'GSM1325075': {'line': 'IMR90', 'type': 'human primary lung fibroblasts', 'variation': 'expressing shRNA directed against luciferase as a control'}, 'GSM1325074': {'line': 'IMR90', 'type': 'human primary lung fibroblasts', 'variation': 'expressing shRNA directed against luciferase as a control'}, 'GSM4008599': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM4008598': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM2125174': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10nM Estradiol + 10 nM Dexamethasone', 'time': '75 minutes (15 min E2 and 60 min E2+Dexamethasone)'}, 'GSM2550429': {'donor': 'C', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2324419': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2324418': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2047398': {'well': 'G04', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047399': {'well': 'G05', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047394': {'well': 'F12', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047395': {'well': 'G01', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2324413': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2324412': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2324415': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2324414': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2324417': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2324416': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'SCZ'}, 'GSM2467563': {'transfection': 'empty control vector'}, 'GSM2467562': {'transfection': 'empty control vector'}, 'GSM2467565': {'transfection': 'NANOGNB'}, 'GSM2467564': {'transfection': 'empty control vector'}, 'GSM2467567': {'transfection': 'NANOGNB'}, 'GSM2467566': {'transfection': 'NANOGNB'}, 'GSM2705557': {'replicate': '1', 'treatment': 'RAB25'}, 'GSM2705556': {'replicate': '1', 'treatment': 'DMSO'}, 'GSM1956994': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day6'}, 'GSM1956995': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day7'}, 'GSM1956996': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day7'}, 'GSM1956997': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day7'}, 'GSM1956990': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day5'}, 'GSM1956991': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day5'}, 'GSM1956992': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day6'}, 'GSM1956993': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day6'}, 'GSM1632189': {'type': 'U2OS', 'treatment': 'control'}, 'GSM1528663': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '142'}, 'GSM1528662': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '141'}, 'GSM1528661': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '146'}, 'GSM1528660': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '146'}, 'GSM1528667': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '135'}, 'GSM1528666': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '135'}, 'GSM1528665': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '153'}, 'GSM1528664': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '151'}, 'GSM1528669': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '148'}, 'GSM1528668': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '148'}, 'GSM1239127': {'status': '+ / + / -', 'grade': '2', 'subtype': 'rRNA depleted RNA', 'id': 'BRB123', 'size': '1.7cm'}, 'GSM1239126': {'status': '+ / + / +', 'grade': '2', 'subtype': 'rRNA depleted RNA', 'id': 'MCJBCR028', 'size': '1cm'}, 'GSM1946104': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19102', 'for': '60min'}, 'GSM1239124': {'status': '+ / + / +', 'grade': '2', 'subtype': 'rRNA depleted RNA', 'id': 'BRB248', 'size': '2cm'}, 'GSM1946102': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19102', 'for': '30min'}, 'GSM1946103': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19102', 'for': '30min'}, 'GSM1946100': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19102', 'for': '30min'}, 'GSM1946101': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19102', 'for': '30min'}, 'GSM2689158': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1239129': {'status': '+ / - / +', 'grade': '3', 'subtype': 'rRNA depleted RNA', 'id': 'BRB147', 'size': '3cm'}, 'GSM1946109': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19108', 'for': '30min'}, 'GSM984621': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47096', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '063WC', 'spikeinpool': 'Nist13'}, 'GSM984620': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47255', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '080WC', 'spikeinpool': 'Nist13'}, 'GSM2689159': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2226810': {'information': 'Treated Active Tuberculosis', 'tissue': 'whole blood'}, 'GSM2284058': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2284059': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2088038': {'status': 'Normal', 'ratio': '1.047355215727', 'age': '73', 'years': '53', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Male', 'alignments': '67447672', 'alignment': '41594130'}, 'GSM2088039': {'status': 'Dysplasia', 'ratio': '1.17789533432938', 'age': '69', 'years': '42', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '73500278', 'alignment': '45735420'}, 'GSM2665950': {'age': 'Day 130', 'well': 'B11', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665951': {'age': 'Day 130', 'well': 'H10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665952': {'age': 'Day 130', 'well': 'G9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665953': {'age': 'Day 130', 'well': 'F4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665954': {'age': 'Day 130', 'well': 'D10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665955': {'age': 'Day 130', 'well': 'G10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665956': {'age': 'Day 130', 'well': 'C11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665957': {'age': 'Day 130', 'well': 'A6', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665958': {'age': 'Day 130', 'well': 'D7', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665959': {'age': 'Day 130', 'well': 'E7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2723027': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.218', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.421', 'age': '54', 'tcga_subtype_dif': '-0.271', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.02', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2723026': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '-0.427', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.384', 'age': '51', 'tcga_subtype_dif': '-0.184', 'stic': 'No', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'ASIAN', 'tcga_subtype_imr': '0.148', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2723021': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.037', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.458', 'age': '56', 'tcga_subtype_dif': '0.096', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.474', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2723023': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '0.665', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.065', 'age': '59', 'tcga_subtype_dif': '-0.104', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.483', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM1545677': {'strain': 'HCT116', 'by': 'scramble shRNA', 'type': 'human colon cancer cell', 'treatment': 'DMSO for 1 hour', 'serum': 'starved'}, 'GSM2455995': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455994': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455997': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455996': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455991': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455990': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455993': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455992': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2170772': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2455999': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455998': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1511120': {'line': 'HUES-7', 'age': '23 DIV'}, 'GSM2322019': {'tissue': 'hematopoietic systerm', 'batch': 'batch1', 'stage': 'Monocytic middle stage'}, 'GSM2322018': {'tissue': 'hematopoietic systerm', 'batch': 'batch1', 'stage': 'Monocytic early stage'}, 'GSM2454028': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2454029': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2322013': {'tissue': 'hematopoietic systerm', 'batch': 'batch1', 'stage': 'Granulocytic middle stage'}, 'GSM2322012': {'tissue': 'hematopoietic systerm', 'batch': 'batch1', 'stage': 'Granulocytic early stage'}, 'GSM2322011': {'gender': 'female', 'line': 'PA-1', 'type': 'Human ovarian cancer', 'treatment': 'Control'}, 'GSM2322010': {'gender': 'female', 'line': 'PA-1', 'type': 'Human ovarian cancer', 'treatment': 'LPA-Treated'}, 'GSM2322017': {'tissue': 'hematopoietic systerm', 'batch': 'batch2', 'stage': 'Granulocytic late stage'}, 'GSM2322016': {'tissue': 'hematopoietic systerm', 'batch': 'batch2', 'stage': 'Granulocytic middle stage'}, 'GSM2322015': {'tissue': 'hematopoietic systerm', 'batch': 'batch2', 'stage': 'Granulocytic early stage'}, 'GSM2322014': {'tissue': 'hematopoietic systerm', 'batch': 'batch1', 'stage': 'Granulocytic late stage'}, 'GSM2728767': {'patient': 'Non-inflammed Muscle'}, 'GSM2728769': {'patient': 'Non-inflammed Muscle'}, 'GSM2728768': {'patient': 'Non-inflammed Muscle'}, 'GSM2260197': {'duration': '10min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM2260196': {'duration': '5min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM2260195': {'line': 'Jurkat cells', 'passage': '3-5'}, 'GSM2260194': {'duration': '15min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM2260193': {'duration': '15min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM2260192': {'duration': '10min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM2260191': {'duration': '10min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM2260190': {'duration': '5min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM1579155': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_48h_0.1µM'}, 'GSM2260198': {'duration': '15min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM1266746': {'type': 'iPSC-derived midbrain dopamine (mDA) neurons', 'construct': 'Progerin GFP'}, 'GSM1266745': {'type': 'iPSC-derived midbrain dopamine (mDA) neurons', 'construct': 'Progerin GFP'}, 'GSM1266744': {'type': 'iPSC-derived midbrain dopamine (mDA) neurons', 'construct': 'Nuclear GFP'}, 'GSM1266743': {'type': 'iPSC-derived midbrain dopamine (mDA) neurons', 'construct': 'Nuclear GFP'}, 'GSM1266742': {'type': 'iPSC-derived midbrain dopamine (mDA) neurons', 'construct': 'Progerin GFP'}, 'GSM1266741': {'type': 'iPSC-derived midbrain dopamine (mDA) neurons', 'construct': 'Progerin GFP'}, 'GSM1266740': {'type': 'iPSC-derived midbrain dopamine (mDA) neurons', 'construct': 'Nuclear GFP'}, 'GSM1579153': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_48h_0.1µM'}, 'GSM3177217': {'responder': 'NO', 'global': '34', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '31', 'cdai': '123.4'}, 'GSM1579152': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_6h_0.1µM'}, 'GSM2756206': {'status': 'pancreatic ductal adenocarcinoma (PDAC)', 'tissue': 'peripheral blood', 'type': 'Circulating epithelial cells (CECs)'}, 'GSM3301506': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'pDAPT'}, 'GSM3301505': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'pDAPT'}, 'GSM3301504': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'pDAPT'}, 'GSM3301503': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'pDAPT'}, 'GSM3301502': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'pDAPT'}, 'GSM3301501': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'pDAPT'}, 'GSM3301500': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Dia'}, 'GSM1579158': {'origin': 'xenograft tumours', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1726204': {'down': 'Xrn1 siRNA', 'construct': 'GFP-SOX'}, 'GSM1726201': {'down': 'Xrn1 shRNA', 'construct': 'GFP'}, 'GSM1726203': {'down': 'Xrn1 siRNA', 'construct': 'GFP'}, 'GSM1726202': {'down': 'Xrn1 shRNA', 'construct': 'GFP-SOX'}, 'GSM2131186': {'type': 'T47D', 'treatment': 'DMSO'}, 'GSM2131185': {'type': 'T47D', 'treatment': 'DMSO'}, 'GSM2131184': {'type': 'T47D', 'treatment': 'AKT inhibitor MK2206'}, 'GSM2131183': {'type': 'T47D', 'treatment': 'AKT inhibitor MK2206'}, 'GSM2374078': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374079': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374076': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374077': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374074': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374075': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374072': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374073': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374070': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374071': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2516835': {'death': '92', 'score': 'V', 'post_mortem_interval': '2', 'caseid': '10-75', 'Sex': 'M', 'rin_score': '6.5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655474'}, 'GSM1412081': {'line': 'MCF7', 'purification': 'VN96 method'}, 'GSM1412080': {'line': 'MCF7', 'purification': 'Exoquick'}, 'GSM1412083': {'line': 'MDA-MB-231', 'purification': 'VN96 method'}, 'GSM1412082': {'line': 'MCF7', 'purification': 'ultracentrifugation method'}, 'GSM1412084': {'line': 'MDA-MB-231', 'purification': 'ultracentrifugation method'}, 'GSM2175367': {'line': 'HeLa', 'transfection': 'scramble control', 'passage': '5 to 8'}, 'GSM2550213': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM1444183': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '6 h p.i.'}, 'GSM1444182': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '4 h p.i.'}, 'GSM2287109': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1845154': {'with': '500nM I-BET151 and 5uM SGC0946', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'Mixed lineage leukemia (MLL) fusion protein (FP) leukemia cell line'}, 'GSM1444187': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 1-2 h p.i.'}, 'GSM1845152': {'with': '5uM SGC0946', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'Mixed lineage leukemia (MLL) fusion protein (FP) leukemia cell line'}, 'GSM1444185': {'reagent': 'mock', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU prior to infection'}, 'GSM1444184': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '8 h p.i.'}, 'GSM1949011': {'antibody': 'SMAD3, Abcam, AB28379', 'line': 'H1', 'type': 'H1 hESC', 'state': 'RPMI+ B27 media for 24hrs and 50 ng/ml Activin for 48 hrs'}, 'GSM1949010': {'line': 'H1', 'type': 'H1 hESC', 'state': 'RPMI+ B27 media for 24hrs and 50 ng/ml Activin for 48 hrs'}, 'GSM2287101': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287100': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287107': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287106': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287105': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287104': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2335527': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'knockout'}, 'GSM2335526': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'knockout'}, 'GSM2335525': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'knockout'}, 'GSM2335524': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'knockout'}, 'GSM2335523': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'knockout'}, 'GSM2335522': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'knockout'}, 'GSM2840218': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2902805': {'replicate': '1', 'treatment': 'xRNA', 'point': '16h'}, 'GSM2902808': {'replicate': '1', 'treatment': 'xRNA', 'point': '6h'}, 'GSM2902809': {'replicate': '2', 'treatment': 'xRNA', 'point': '6h'}, 'GSM2243796': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243797': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243794': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2840217': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2243792': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243793': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H3', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243790': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243791': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243798': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243799': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1166063': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166062': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166061': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor'}, 'GSM1166060': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor'}, 'GSM1166067': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor'}, 'GSM1166066': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166065': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor'}, 'GSM1166064': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM2637997': {'with': 'IL-2 and IL-7', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637996': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637995': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637994': {'with': 'IL-2 and IL-7', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637993': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637992': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637991': {'with': 'IL-2 and IL-7', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637990': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM1522570': {'line': 'GBM1B', 'type': 'glioblastoma cell line'}, 'GSM2411357': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411356': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411355': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411354': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411353': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411352': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411351': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411350': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411359': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411358': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2490558': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-P525L/P525L'}, 'GSM2490559': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-P525L/P525L'}, 'GSM2515708': {'age': '12', 'state': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2490552': {'differentiation': '12', 'type': 'iPSC-derived neuronal cells (non-motoneurons)', 'genotype': 'FUS-WT'}, 'GSM2515706': {'age': '42', 'state': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2515705': {'age': '42', 'state': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2490551': {'differentiation': '12', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-WT'}, 'GSM2515703': {'age': '63', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2490557': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-P525L/P525L'}, 'GSM2490554': {'differentiation': '12+7', 'type': 'iPSC-derived motoneurons', 'genotype': 'FUS-WT'}, 'GSM2515700': {'age': '55', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM3397818': {'status': 'Deficient', 'type': 'Cancer cells'}, 'GSM1658689': {'tissue': 'HCT116 xenograft tumors', 'variation': 'knockdown of NHERF2'}, 'GSM1658688': {'tissue': 'HCT116 xenograft tumors', 'variation': 'knockdown of NHERF2'}, 'GSM1658687': {'tissue': 'HCT116 xenograft tumors', 'variation': 'knockdown of NHERF2'}, 'GSM1658686': {'tissue': 'HCT116 xenograft tumors', 'variation': 'knockdown of LPA2'}, 'GSM1658685': {'tissue': 'HCT116 xenograft tumors', 'variation': 'knockdown of LPA2'}, 'GSM1658684': {'tissue': 'HCT116 xenograft tumors', 'variation': 'knockdown of LPA2'}, 'GSM1658683': {'tissue': 'HCT116 xenograft tumors'}, 'GSM1658682': {'tissue': 'HCT116 xenograft tumors'}, 'GSM1658681': {'tissue': 'HCT116 xenograft tumors'}, 'GSM2666098': {'age': 'Day 130', 'well': 'G10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666099': {'age': 'Day 130', 'well': 'D2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666094': {'age': 'Day 130', 'well': 'E3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666095': {'age': 'Day 130', 'well': 'E7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666096': {'age': 'Day 130', 'well': 'C7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666097': {'age': 'Day 130', 'well': 'A8', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666090': {'age': 'Day 450', 'well': 'H9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000212'}, 'GSM2666091': {'age': 'Day 450', 'well': 'G2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000212'}, 'GSM2666092': {'age': 'Day 450', 'well': 'H11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000213'}, 'GSM2666093': {'age': 'Day 130', 'well': 'D6', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2171976': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171977': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171974': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171975': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171972': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171973': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171970': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171971': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171978': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171979': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM1281807': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': '0', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281806': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Female', 'age': '0', 'tissue': 'Skeletal Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281805': {'status': 'No LVAD', 'pacemaker': 'No', 'fraction': 'NA', 'gender': 'Female', 'age': '0', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281804': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '0', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281803': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '0', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281802': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '0', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281801': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Male', 'age': '70', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': 'NA', 'race': 'Hispanic', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281800': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': 'NA', 'gender': 'Female', 'age': '63', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM3594522': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM1281809': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '0', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281808': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '0', 'tissue': 'Cardiac Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1366427': {'gender': 'Male', 'age': '73', 'tissue': 'Illeum', 'type': 'Small intestinal neuroendocrine tumor', 'staining': 'NA.'}, 'GSM1366429': {'gender': 'Male', 'age': '73', 'tissue': 'Illeum', 'type': 'Small intestinal neuroendocrine tumor', 'staining': 'NA.'}, 'GSM1366428': {'gender': 'Female', 'age': '66', 'tissue': 'Illeum', 'type': 'Small intestinal neuroendocrine tumor', 'staining': '+'}, 'GSM1548455': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM3594529': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594528': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM1598303': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM1598302': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM1598301': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM1598300': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM2441389': {'line': 'H1299', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441388': {'line': 'HBE', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441385': {'line': 'H1299', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441384': {'line': 'HBE', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441387': {'line': 'HBE', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441386': {'line': 'H1299', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441381': {'line': 'H1299', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441383': {'line': 'HBE', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441382': {'line': 'H1299', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM1965198': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965199': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965192': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965193': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965190': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965191': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965196': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965197': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965194': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965195': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1489575': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '16T4'}, 'GSM2267408': {'histology': 'Poorly differentiated', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2267409': {'histology': 'Adenocarcinoma', 'tissuetype': 'Gastric cancer cell line'}, 'GSM1489574': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '16T3'}, 'GSM2267404': {'histology': 'Adenocarcinoma;', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2267405': {'histology': 'gastric carcinoma; poorly differentiated', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2267406': {'histology': 'Adenocarcinoma', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2267407': {'histology': 'Adenocarcinoma', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2267400': {'histology': 'SRCC', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2267401': {'histology': 'Well-differentiated tubular adenocarcinoma', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2267402': {'histology': 'Moderately differentiated tubular adenocarcinoma', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2267403': {'histology': 'poorly differentiated adenocarcinoma containing signet ring cells;', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2044420': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM1974239': {'type': 'ESC-derived hepatocytes', 'treatment': 'SB'}, 'GSM1489576': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '16U2'}, 'GSM2170857': {'stage': 'Liver bud 1'}, 'GSM1489571': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '15T4'}, 'GSM1489570': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '15T3'}, 'GSM1970082': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1489573': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '15U4'}, 'GSM1489572': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '15U2'}, 'GSM2044427': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM1489579': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '18U2'}, 'GSM2230686': {'line': 'HMLE-Her2; Cell type: Human mammary epithelial cell line; Transformation stage: Tumorigenic'}, 'GSM2230687': {'line': 'HME; Cell type: Human mammary epithelial cell line; Transformation stage: Immortalized, non-transformed'}, 'GSM2230684': {'line': 'HCC1954; Cell type: Human mammary epithelial cell line; Transformation stage: Tumorigenic'}, 'GSM1489578': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '16U4'}, 'GSM2348668': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348669': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2536311': {'phenotype': '24hr Mock infected'}, 'GSM2536310': {'phenotype': '24hr infected with mutant VP24_VP35 virus'}, 'GSM1833914': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM2536315': {'phenotype': '24hr infected with mutant VP24_VP35 virus'}, 'GSM2536314': {'phenotype': '24hr infected with mutant VP35 virus'}, 'GSM2348660': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348661': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348662': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348663': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348664': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348665': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348666': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348667': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2855454': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '1', 'agent': 'none'}, 'GSM2855455': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '13', 'agent': '10 microM AA147 (ATF6 Activator)'}, 'GSM2855456': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '13', 'agent': '10 microM AA147 (ATF6 Activator)'}, 'GSM2855457': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '13', 'agent': '10 microM AA147 (ATF6 Activator)'}, 'GSM2855452': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '1', 'agent': 'none'}, 'GSM2855453': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '1', 'agent': 'none'}, 'GSM2855458': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '13', 'agent': '10 microM RP22 (Inactive Analogue)'}, 'GSM2855459': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '13', 'agent': '10 microM RP22 (Inactive Analogue)'}, 'GSM786005': {'line': 'DG75', 'type': 'nascent RNA', 'plasmid': 'eGFP'}, 'GSM2204687': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM786004': {'line': 'DG75', 'type': 'nascent RNA', 'plasmid': 'eGFP'}, 'GSM2204686': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2712681': {'condition': 'TB'}, 'GSM2712680': {'condition': 'TB'}, 'GSM2712683': {'condition': 'TB'}, 'GSM2712682': {'condition': 'TB'}, 'GSM2712685': {'condition': 'TB'}, 'GSM2712684': {'condition': 'TB'}, 'GSM2712687': {'condition': 'TB'}, 'GSM2712686': {'condition': 'TB'}, 'GSM2712689': {'condition': 'TB'}, 'GSM2712688': {'condition': 'TB'}, 'GSM1836538': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM2722980': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.603', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.044', 'age': '60', 'tcga_subtype_dif': '-0.203', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.456', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722982': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.336', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.154', 'age': '64', 'tcga_subtype_dif': '-0.671', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.113', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722984': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '0.002', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.326', 'age': '44', 'tcga_subtype_dif': '-0.536', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.118', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IV'}, 'GSM2722986': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.363', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.47', 'age': '66', 'tcga_subtype_dif': '-0.206', 'stic': 'No', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.374', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2722988': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '0.396', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.223', 'age': '58', 'tcga_subtype_dif': '-0.012', 'stic': 'No', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.121', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM1836535': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U2'}, 'GSM1836534': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM2141611': {'individual': 'EU186', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2635717': {'genotype': 'YAP-', 'treatment_time': '30h', 'treatment': 'Activin A'}, 'GSM786006': {'line': 'DG75', 'type': 'total RNA', 'plasmid': 'eGFP'}, 'GSM2204688': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1836531': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836530': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1965083': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2307348': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307349': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307346': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307347': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307344': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307345': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307342': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307343': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307340': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307341': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM1100210': {'line': 'MDA-MB-436', 'type': '50 M reads'}, 'GSM2565079': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib'}, 'GSM2549664': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'oxidized', 'passage': '4'}, 'GSM2549661': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'non-oxidized control', 'passage': '4'}, 'GSM2549660': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'non-oxidized control', 'passage': '6'}, 'GSM2549663': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'oxidized', 'passage': '6'}, 'GSM2549662': {'line': 'PA1 (ATCC, CRL-1572)', 'type': 'oxidized', 'passage': '6'}, 'GSM2193190': {'donor': 'Human (donor B)', 'type': 'B cells'}, 'GSM2193191': {'donor': 'Human (donor B)', 'type': 'Monocytes'}, 'GSM2193192': {'donor': 'Human (donor B)', 'type': 'CD4+ T cells'}, 'GSM2193193': {'donor': 'Human (donor B)', 'type': 'CD8+ T cells'}, 'GSM2193194': {'donor': 'Human (donor E)', 'type': 'Brain'}, 'GSM2193195': {'donor': 'Human (donor E)', 'type': 'Gut'}, 'GSM2193196': {'donor': 'Human (donor E)', 'type': 'Heart'}, 'GSM2193197': {'donor': 'Human (donor E)', 'type': 'Liver'}, 'GSM2193198': {'donor': 'Human (donor E)', 'type': 'Ovary'}, 'GSM2193199': {'donor': 'Human (donor E)', 'type': 'Placenta'}, 'GSM786002': {'line': 'DG75', 'type': 'nascent RNA', 'plasmid': 'eGFP'}, 'GSM1377533': {'tissue': 'Liver', 'antibody': 'FXR (1:1 mixture of sc-1204x and sc-13063x, ChIP grade, Santa Cruz)'}, 'GSM1377532': {'tissue': 'Liver', 'antibody': 'normal rabbit IgG (sc-2027, Santa Cruz)'}, 'GSM1377535': {'tissue': 'Liver', 'antibody': 'FXR (1:1 mixture of sc-1204x and sc-13063x, ChIP grade, Santa Cruz)'}, 'GSM1377534': {'tissue': 'Liver', 'antibody': 'normal rabbit IgG (sc-2027, Santa Cruz)'}, 'GSM1377537': {'tissue': 'Liver'}, 'GSM1377536': {'tissue': 'Liver'}, 'GSM1664599': {'tissue': 'matched normal from the same patient', 'id': 'LP9'}, 'GSM2472543': {'tissue': 'ROR1+ cells', 'type': 'Resemble human lens epithelial cells'}, 'GSM2472544': {'tissue': 'ROR1+ cells', 'type': 'Resemble human lens epithelial cells'}, 'GSM2436518': {'gender': 'male', 'state': 'Diabetic Patient', 'type': 'endothelial cell'}, 'GSM2436519': {'gender': 'female', 'state': 'Healthy control', 'type': 'endothelial cell'}, 'GSM2436516': {'gender': 'female', 'state': 'Diabetic Patient', 'type': 'endothelial cell'}, 'GSM2436517': {'gender': 'female', 'state': 'Diabetic Patient', 'type': 'endothelial cell'}, 'GSM2436514': {'gender': 'female', 'state': 'Healthy control', 'type': 'endothelial cell'}, 'GSM2436515': {'gender': 'male', 'state': 'Diabetic Patient', 'type': 'endothelial cell'}, 'GSM2436512': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436513': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436510': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436511': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM1504016': {'gender': 'male', 'repeats': '43', 'tissue': 'peripheral blood'}, 'GSM1504017': {'gender': 'male', 'repeats': '42', 'tissue': 'peripheral blood'}, 'GSM1504014': {'gender': 'female', 'repeats': '42', 'tissue': 'peripheral blood'}, 'GSM1504015': {'gender': 'male', 'repeats': '43', 'tissue': 'peripheral blood'}, 'GSM1504012': {'gender': 'male', 'repeats': '41', 'tissue': 'peripheral blood'}, 'GSM1504013': {'gender': 'female', 'repeats': '41', 'tissue': 'peripheral blood'}, 'GSM1504010': {'gender': 'female', 'repeats': '42', 'tissue': 'peripheral blood'}, 'GSM1504011': {'gender': 'male', 'repeats': '42', 'tissue': 'peripheral blood'}, 'GSM1504018': {'gender': 'male', 'repeats': '42', 'tissue': 'peripheral blood'}, 'GSM1504019': {'gender': 'female', 'repeats': 'not tested', 'tissue': 'peripheral blood'}, 'GSM2088085': {'status': 'Dysplasia', 'ratio': '1.560078479', 'point': 't1', 'age': '44.641', 'Sex': 'Male', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '47', 'alignments': '79277016', 'id': 'Patient_P15', 'alignment': '49043359'}, 'GSM3584112': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'female'}, 'GSM2088084': {'status': 'Dysplasia', 'ratio': '1.896264647', 'point': 't1', 'age': '52.237', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'years': '28', 'alignments': '64644040', 'id': 'Patient_P21', 'alignment': '39534884'}, 'GSM2088087': {'status': 'Dysplasia', 'ratio': '1.816090055', 'point': 't1', 'age': '57.818', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '59', 'alignments': '48426074', 'id': 'Patient_P8', 'alignment': '30352845'}, 'GSM2088086': {'status': 'Dysplasia', 'ratio': '1.997266794', 'point': 't1', 'age': '65.397', 'Sex': 'Female', 'content': '47.47', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'years': '66', 'alignments': '49982612', 'id': 'Patient_P3', 'alignment': '31407809'}, 'GSM2088081': {'status': 'NA', 'ratio': '1.36290190227956', 'age': '65', 'years': '35', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'Sex': 'Male', 'alignments': '63740726', 'alignment': '39267397'}, 'GSM2104419': {'expression': 'positive', 'individual': 'Patient 2', 'type': 'Ascites fluid macrophage'}, 'GSM2104418': {'expression': 'positive', 'individual': 'Patient 1', 'type': 'Ascites fluid macrophage'}, 'GSM2088080': {'status': 'NA', 'ratio': '1.31614469860429', 'age': '57', 'years': '30', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'Sex': 'Female', 'alignments': '69515702', 'alignment': '42619954'}, 'GSM2088083': {'status': 'Dysplasia', 'ratio': '1.50975724184984', 'age': '65', 'years': '36', 'content': '47.47', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '70671146', 'alignment': '43211781'}, 'GSM2394571': {'id': 'IonXpress_021', 'plate': 'R2', 'type': 'iPS-derived cardiomyocytes', 'name': 'Milrinone', 'point': 'after 12h of compound treatment'}, 'GSM2394570': {'id': 'IonXpress_020', 'plate': 'R2', 'type': 'iPS-derived cardiomyocytes', 'name': 'AG-1296', 'point': 'after 12h of compound treatment'}, 'GSM2394573': {'id': 'IonXpress_054', 'plate': 'R1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Propafenone', 'point': 'after 12h of compound treatment'}, 'GSM2394572': {'id': 'IonXpress_044', 'plate': 'R1', 'type': 'iPS-derived cardiomyocytes', 'name': '5(S)-HETE', 'point': 'after 12h of compound treatment'}, 'GSM2808852': {'tissue': 'Lung', 'metastasis': 'Negative', 'histology': 'lung adenocarcinoma'}, 'GSM2808853': {'tissue': 'Lung', 'metastasis': 'Negative', 'histology': 'lung adenocarcinoma'}, 'GSM2808850': {'tissue': 'Lung', 'metastasis': 'N/A', 'histology': 'normal lung tissues'}, 'GSM2808851': {'tissue': 'Lung', 'metastasis': 'N/A', 'histology': 'normal lung tissues'}, 'GSM2808854': {'tissue': 'Lung', 'metastasis': 'Negative', 'histology': 'lung adenocarcinoma'}, 'GSM1619506': {'type': 'peripheral monocytes', 'id': '#17', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1916011': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'RNase H'}, 'GSM1916010': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'RNase H'}, 'GSM1916013': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'RNase H'}, 'GSM1916012': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'RNase H'}, 'GSM2671221': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2151690': {'gender': 'female', 'line': 'MCF-7', 'type': 'human breast cancer cells'}, 'GSM2671220': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1980578': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM756309': {'line': 'DLBCL cell line OCI-LY1', 'variation': 'control'}, 'GSM1980571': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980570': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980573': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980572': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980575': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980574': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980577': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980576': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2086420': {'line': 'HEK293'}, 'GSM865291': {'tissue': 'islets of Langerhans'}, 'GSM865296': {'tissue': 'islets of Langerhans'}, 'GSM865297': {'tissue': 'islets of Langerhans'}, 'GSM1547996': {'sample': 'embryo', 'age': '53 days', 'type': 'cKIT+ FACS sort'}, 'GSM1547997': {'sample': 'embryo', 'age': '53 days', 'type': 'cKIT+ FACS sort'}, 'GSM865294': {'tissue': 'islets of Langerhans'}, 'GSM865295': {'tissue': 'islets of Langerhans'}, 'GSM1547998': {'sample': 'embryo', 'age': '57 days', 'type': 'cKIT+ FACS sort'}, 'GSM1547999': {'sample': 'embryo', 'age': '67 days', 'type': 'cKIT+ FACS sort'}, 'GSM1187414': {'age': '43', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-wt', 'stage': 'T2N0M0', 'Sex': 'male'}, 'GSM1187413': {'age': '35', 'tissue': 'Thyroid cancer', 'variation': 'BRAF - mut', 'stage': 'T2N1aM0', 'Sex': 'female'}, 'GSM1187412': {'age': '63', 'tissue': 'Thyroid cancer', 'variation': 'BRAF - mut', 'stage': 'T1bN1aM0', 'Sex': 'female'}, 'GSM1187411': {'age': '33', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-wt', 'stage': 'T3N1bM0', 'Sex': 'female'}, 'GSM1187410': {'age': '57', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T1bN0M0', 'Sex': 'female'}, 'GSM2785129': {'transfection': 'none', 'tissue': 'U2OS 2-6-3 cell line', 'protocol': 'none', 'night': 'yes'}, 'GSM2842503': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2108411': {'stages': 'myoblast nucleus'}, 'GSM2108410': {'stages': 'myoblast nucleus'}, 'GSM2108413': {'stages': 'myoblast nucleus'}, 'GSM2108412': {'stages': 'myoblast nucleus'}, 'GSM2108415': {'stages': 'myoblast nucleus'}, 'GSM2108414': {'stages': 'myoblast nucleus'}, 'GSM2108417': {'stages': 'myoblast nucleus'}, 'GSM2108416': {'stages': 'myoblast nucleus'}, 'GSM2108419': {'stages': 'myoblast nucleus'}, 'GSM2108418': {'stages': 'myoblast nucleus'}, 'GSM2359539': {'down': 'control', 'expression': 'none'}, 'GSM2842508': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM1076108': {'passages': '0', 'type': 'Liver sinusoidal endothelial cells'}, 'GSM1076106': {'passages': '15', 'type': 'Human umbilical vein endothelial cell'}, 'GSM1076107': {'passages': '0', 'type': 'hepatocyte'}, 'GSM2842509': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'subtype': 'TEM'}, 'GSM2735242': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '248', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735243': {'cohort': 'Paired', 'tils': '10', 'subtype': 'I', 'burden': '21', 'morphology': 'undifferentiated, round', 'event': 'Disease progression', 'stage': 'Unknown'}, 'GSM2735240': {'cohort': 'Paired', 'tils': '30', 'subtype': 'II', 'burden': '2', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735241': {'cohort': 'Paired', 'tils': '10', 'subtype': 'I', 'burden': '13', 'morphology': 'differentiated', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM1288390': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM2735247': {'cohort': 'Unpaired', 'tils': 'Not evaluated', 'subtype': 'III', 'burden': '239', 'morphology': 'N/A', 'event': 'Last follow-up', 'stage': 'II'}, 'GSM2735244': {'cohort': 'Paired', 'tils': '30', 'subtype': 'I', 'burden': '13', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735245': {'cohort': 'Paired', 'tils': '10', 'subtype': 'III', 'burden': '15', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735248': {'cohort': 'Paired', 'tils': '5', 'subtype': 'II', 'burden': '68', 'morphology': 'undifferentiated, round', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735249': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'I', 'burden': '255', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2086423': {'line': 'HEK293'}, 'GSM1823344': {'line': 'iPS5.C4', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM2526809': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1823342': {'line': 'iPS5.C4', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM1823340': {'line': 'iPS5.C4', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM2526802': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526803': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526800': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526801': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526806': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526807': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526804': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526805': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2784651': {'digestion': 'not applicable', 'tissue': 'Vehicle treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'vehicle'}, 'GSM2784650': {'digestion': 'not applicable', 'tissue': 'Vehicle treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'vehicle'}, 'GSM1833332': {'type': 'TE'}, 'GSM1833333': {'type': 'TE'}, 'GSM1833330': {'type': 'ICM'}, 'GSM1833331': {'type': 'ICM'}, 'GSM1833334': {'type': 'TE'}, 'GSM2575381': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'Drug'}, 'GSM2575380': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'NoDrug'}, 'GSM2575383': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'NoDrug'}, 'GSM2575382': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'NoDrug'}, 'GSM2575385': {'line': 'WM983B', 'subclone': 'B10', 'condition': 'NoDrug'}, 'GSM2575384': {'line': 'WM983B', 'subclone': 'G5', 'condition': 'NoDrug'}, 'GSM2575387': {'line': 'WM983B', 'subclone': 'D3', 'condition': 'NoDrug'}, 'GSM2575386': {'line': 'WM983B', 'subclone': 'B10', 'condition': 'Drug'}, 'GSM2575389': {'line': 'WM983B', 'subclone': 'D2', 'condition': 'NoDrug'}, 'GSM2575388': {'line': 'WM983B', 'subclone': 'D3', 'condition': 'Drug'}, 'GSM2550591': {'gender': 'F', 'age': '63', 'tissue': 'lung', 'type': 'epithelium', 'id': '2', 'ethnicity': 'AA'}, 'GSM2550590': {'gender': 'F', 'age': '62', 'tissue': 'lung', 'type': 'epithelium', 'id': '1', 'ethnicity': 'AA'}, 'GSM2550593': {'gender': 'F', 'age': '62', 'tissue': 'lung', 'type': 'epithelium', 'id': '1', 'ethnicity': 'AA'}, 'GSM2550592': {'gender': 'F', 'age': '61', 'tissue': 'lung', 'type': 'epithelium', 'id': '4', 'ethnicity': 'W'}, 'GSM2550595': {'gender': 'F', 'age': '61', 'tissue': 'lung', 'type': 'epithelium', 'id': '4', 'ethnicity': 'W'}, 'GSM2550594': {'gender': 'F', 'age': '63', 'tissue': 'lung', 'type': 'epithelium', 'id': '2', 'ethnicity': 'AA'}, 'GSM2550597': {'gender': 'F', 'age': '63', 'tissue': 'lung', 'type': 'epithelium', 'id': '2', 'ethnicity': 'AA'}, 'GSM2550596': {'gender': 'F', 'age': '62', 'tissue': 'lung', 'type': 'epithelium', 'id': '1', 'ethnicity': 'AA'}, 'GSM2550598': {'gender': 'F', 'age': '61', 'tissue': 'lung', 'type': 'epithelium', 'id': '4', 'ethnicity': 'W'}, 'GSM1970538': {'genotype': 'wild type', 'age': '16 weeks 4 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'renal cortex,renal cortical interstitium,nephrogenic interstitium', 'Stage': 'Fetal 17wk'}, 'GSM1970539': {'genotype': 'wild type', 'age': '16 weeks 4 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'cap mesenchyme,pretubular aggregate', 'Stage': 'Fetal 17wk'}, 'GSM1970536': {'genotype': 'wild type', 'age': '16 weeks 6 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'cap mesenchyme,pretubular aggregate', 'Stage': 'Fetal 17wk'}, 'GSM1970537': {'genotype': 'wild type', 'age': '17 weeks 2 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'cap mesenchyme,pretubular aggregate', 'Stage': 'Fetal 18wk'}, 'GSM1970534': {'genotype': 'wild type', 'age': '17 weeks 2 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'renal cortex,renal cortical interstitium,nephrogenic interstitium', 'Stage': 'Fetal 18wk'}, 'GSM1970535': {'genotype': 'wild type', 'age': '16 weeks 3 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'cap mesenchyme,pretubular aggregate', 'Stage': 'Fetal 17wk'}, 'GSM1970532': {'genotype': 'wild type', 'age': '16 weeks 4 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'renal cortex', 'Stage': 'Fetal 17wk'}, 'GSM1970533': {'genotype': 'wild type', 'age': '16 weeks 3 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'renal cortex,nephrogenic interstitium,renal cortical interstitium', 'Stage': 'Fetal 17wk'}, 'GSM2840401': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840400': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2806902': {'phase': 'S', 'line': 'HeLa'}, 'GSM2806903': {'phase': 'G2', 'line': 'HeLa'}, 'GSM2806900': {'phase': 'S', 'line': 'HeLa'}, 'GSM2806901': {'phase': 'S', 'line': 'HeLa'}, 'GSM2806906': {'phase': 'G1', 'line': 'U2OS'}, 'GSM2806907': {'phase': 'G1', 'line': 'U2OS'}, 'GSM2806904': {'phase': 'G2', 'line': 'HeLa'}, 'GSM2806905': {'phase': 'G2', 'line': 'HeLa'}, 'GSM2806908': {'phase': 'S', 'line': 'U2OS'}, 'GSM2806909': {'phase': 'S', 'line': 'U2OS'}, 'GSM849356': {'lineage': 'inner cell mass', 'description': 'tier 2', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'J86', 'readtype': '1x36', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '2', 'biorep': '006C'}, 'GSM2393866': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'AGO2_KO'}, 'GSM2393867': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'AGO2_KO'}, 'GSM2393864': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'parental'}, 'GSM2393865': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'AGO2_KO'}, 'GSM2393862': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'parental'}, 'GSM2393863': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'parental'}, 'GSM2840409': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2393868': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'FH-AGO2_WT'}, 'GSM2393869': {'line': 'HCT116', 'type': 'Human colorectal carcinoma', 'genotype': 'FH-AGO2_WT'}, 'GSM2043602': {'tissue': 'placental villous tissue', 'pool': 'Mix_2', 'sex': 'Female'}, 'GSM2043603': {'tissue': 'placental villous tissue', 'pool': 'Mix_1', 'sex': 'Male'}, 'GSM2043600': {'tissue': 'placental villous tissue', 'pool': 'Mix_1', 'sex': 'Male'}, 'GSM2043601': {'tissue': 'placental villous tissue', 'pool': 'Mix_2', 'sex': 'Male'}, 'GSM2043606': {'tissue': 'placental villous tissue', 'pool': 'Mix_1', 'sex': 'Female'}, 'GSM2043607': {'tissue': 'placental villous tissue', 'pool': 'Mix_1', 'sex': 'Female'}, 'GSM2043604': {'tissue': 'placental villous tissue', 'pool': 'Mix_2', 'sex': 'Male'}, 'GSM2043605': {'tissue': 'placental villous tissue', 'pool': 'Mix_1', 'sex': 'Female'}, 'GSM2043608': {'tissue': 'placental villous tissue', 'pool': 'Mix_2', 'sex': 'Male'}, 'GSM2043609': {'tissue': 'placental villous tissue', 'pool': 'Mix_2', 'sex': 'Male'}, 'GSM2048720': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048721': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048722': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048723': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048724': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048725': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2172135': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2048727': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048728': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048729': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2172139': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172138': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1440428': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440429': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440424': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440425': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440426': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440427': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440420': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440421': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440422': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440423': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1395508': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395509': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395504': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395505': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395506': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395507': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395500': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2572722': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '10', 'day': '3'}, 'GSM1395502': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395503': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM3594499': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594498': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594495': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594494': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594497': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594496': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594491': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594490': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594493': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594492': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM2411788': {'line': '4756B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2411789': {'line': '521C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2572723': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '10', 'day': '7'}, 'GSM2881032': {'donor': 'Donor_4', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2204779': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204778': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204775': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204774': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204777': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204776': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204771': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204770': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204773': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204772': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1613664': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613665': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613666': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613667': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613660': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613661': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613662': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613663': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613668': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613669': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2411783': {'line': '3726A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2829949': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829948': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2572721': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '10', 'day': '1'}, 'GSM2829945': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829944': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829947': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829946': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829943': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829942': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2909535': {'sirna': 'none', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2284157': {'transduction': 'NLRP1 mutant M77T', 'type': 'N-TERT/1 immortalized keratinocytes'}, 'GSM2284156': {'transduction': 'NLRP1 mutant A54T', 'type': 'N-TERT/1 immortalized keratinocytes'}, 'GSM1557748': {'transfection': 'Control siRNA'}, 'GSM1684871': {'line': 'A549', 'tissue': 'lung', 'type': 'alveolar adenocarcinoma cells'}, 'GSM1684870': {'line': 'SCC351'}, 'GSM1684873': {'line': 'A549', 'tissue': 'lung', 'type': 'alveolar adenocarcinoma cells'}, 'GSM1684872': {'line': 'A549', 'tissue': 'lung', 'type': 'alveolar adenocarcinoma cells'}, 'GSM2284159': {'transduction': 'vector', 'type': 'N-TERT/1 immortalized keratinocytes'}, 'GSM2284158': {'transduction': 'NLRP1 mutant A66V', 'type': 'N-TERT/1 immortalized keratinocytes'}, 'GSM1557746': {'transfection': 'Control siRNA'}, 'GSM1557747': {'transfection': 'Stabilin-1 siRNA'}, 'GSM849358': {'lineage': 'endoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'K12', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '017WC'}, 'GSM2493887': {'line': 'Hap1', 'variation': 'WT'}, 'GSM2285400': {'replicate': '1', 'time': '24 h', 'type': 'aml', 'name': 'MOLM13', 'treatment': 'AZD5153'}, 'GSM2285401': {'replicate': '2', 'time': '24 h', 'type': 'aml', 'name': 'MOLM13', 'treatment': 'AZD5153'}, 'GSM2285402': {'replicate': '1', 'time': '24 h', 'type': 'dlbcl', 'name': 'OCILY19', 'treatment': 'DMSO'}, 'GSM2285403': {'replicate': '2', 'time': '24 h', 'type': 'dlbcl', 'name': 'OCILY19', 'treatment': 'DMSO'}, 'GSM2285404': {'replicate': '1', 'time': '24 h', 'type': 'dlbcl', 'name': 'WILL2', 'treatment': 'DMSO'}, 'GSM2285405': {'replicate': '2', 'time': '24 h', 'type': 'dlbcl', 'name': 'WILL2', 'treatment': 'DMSO'}, 'GSM2285406': {'replicate': '1', 'time': '24 h', 'type': 'aml', 'name': 'MV411', 'treatment': 'DMSO'}, 'GSM2285407': {'replicate': '2', 'time': '24 h', 'type': 'aml', 'name': 'MV411', 'treatment': 'DMSO'}, 'GSM2285408': {'replicate': '3', 'time': '24 h', 'type': 'aml', 'name': 'MV411', 'treatment': 'DMSO'}, 'GSM2285409': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'MM1S', 'treatment': 'DMSO'}, 'GSM2267399': {'histology': 'Diffuse adenocarcinoma;poorly differentiated; Lymph node metastasis and pancreatic metastasis were observed', 'tissuetype': 'Gastric cancer cell line'}, 'GSM2204199': {'status': 'ex vivo; unstimulated', 'type': 'LN_Tfh', 'phenotype': 'Tfh(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1+CD57+)'}, 'GSM2204198': {'status': 'ex vivo; unstimulated', 'type': 'LN_nGC', 'phenotype': 'nonGCTfh(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1+CD57-)'}, 'GSM1915636': {'donorid': 'SU351', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915637': {'donorid': 'SU353', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915630': {'donorid': 'SU070', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915631': {'donorid': 'SU070', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915632': {'donorid': 'SU209', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM1915633': {'donorid': 'SU209', 'type': 'primary human leukemia cell from cryopreserved sample'}, 'GSM2204191': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2204190': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204193': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2204192': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204195': {'status': 'ex vivo; unstimulated', 'type': 'LN_N', 'phenotype': 'Naive(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO-)'}, 'GSM2204194': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204197': {'status': 'ex vivo; unstimulated', 'type': 'LN_CMPD1lo57hi', 'phenotype': 'CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1-CD57+'}, 'GSM2204196': {'status': 'ex vivo; unstimulated', 'type': 'LN_CMPD1lo57lo', 'phenotype': 'CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1-CD57-'}, 'GSM1690212': {'line': 'HeLa', 'expression': 'shRNA against AFF1'}, 'GSM1338290': {'antibody': 'H3K27me3 (Millipore, 07-449, Lots DR10853-1,R1 and GR80367-1,R2)', 'passages': 'p21-50', 'type': 'H9 Human ESCs-derived PAX6 positive cells'}, 'GSM1716538': {'type': 'MDA-MB-231'}, 'GSM1716539': {'type': 'MDA-MB-231'}, 'GSM1470410': {'line': 'A-431', 'type': 'cytoplasmic RNA'}, 'GSM2136860': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 5 days, Control', 'batch': '1'}, 'GSM2171895': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2233247': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233246': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233245': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233244': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233243': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233242': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233241': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233240': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2141715': {'individual': 'EU296', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141714': {'individual': 'EU294', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141717': {'individual': 'EU296', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141716': {'individual': 'EU296', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141711': {'individual': 'EU290', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141710': {'individual': 'EU290', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2233249': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233248': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2450998': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2450999': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2445607': {'number': 'Donor2', 'infection': 'Mock', 'tissue': 'liver', 'treatment': 'none', 'time': 'D2', 'type': 'primary human hepatocyte'}, 'GSM1895372': {'line': 'WI38 lung fibroblast cells', 'treatment': 'RNA interference targeting BRD4 was performed using HiPerFect transfection reagent (Qiagen). Cells were then incubated for 72 hours. To induce heat stress, cells were incubated at 42°C in a waterbath for 4 hours.'}, 'GSM1895370': {'line': 'WI38 lung fibroblast cells', 'treatment': 'RNA interference targeting BRD4 was performed using HiPerFect transfection reagent (Qiagen). Cells were then incubated for 72 hours. To induce heat stress, cells were incubated at 42°C in a waterbath for 4 hours.'}, 'GSM1895371': {'line': 'WI38 lung fibroblast cells', 'treatment': 'To induce heat stress, cells were incubated at 42°C in a waterbath for 4 hours'}, 'GSM2754829': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0074', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754828': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0060', 'previousdiagnosisoftb': 'No', 'tst': '17', 'type': 'Tcells'}, 'GSM2754827': {'bin': '3', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '06_0129', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754826': {'bin': '3', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '06_0231', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754825': {'bin': '3', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '06_0127', 'previousdiagnosisoftb': 'No', 'tst': '16', 'type': 'Tcells'}, 'GSM2754824': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0628', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754823': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0721', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754822': {'bin': '9', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0644', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754821': {'bin': '7', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '03_0714', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754820': {'bin': '7', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '03_0711', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2413489': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413488': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413481': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413480': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413483': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413482': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413485': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413484': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413487': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413486': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1899718': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899719': {'of': 'IGF1R', 'type': 'mammary epithelial cells'}, 'GSM1899710': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899711': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899712': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899713': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899714': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899715': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899716': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM1899717': {'of': 'GFP control', 'type': 'mammary epithelial cells'}, 'GSM2158065': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158064': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158067': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158066': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158061': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158060': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158063': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158062': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158069': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158068': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1382030': {'line': 'H1', 'type': 'Embryonic stem cells', 'passage': '30-38'}, 'GSM1382031': {'line': 'H1', 'type': 'Embryonic stem cells', 'passage': '30-38'}, 'GSM1382032': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382033': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382034': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382035': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382036': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382037': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1550105': {'line': 'MCF-10A-H1047R', 'time': '0hr'}, 'GSM1550104': {'line': 'MCF-10A-H1047R', 'time': '0hr'}, 'GSM1550107': {'line': 'MCF-10A', 'time': '0hr'}, 'GSM1550106': {'line': 'MCF-10A', 'time': '0hr'}, 'GSM1550101': {'line': 'MCF-10A', 'time': '6hr'}, 'GSM1550100': {'line': 'MCF-10A', 'time': '6hr'}, 'GSM1550103': {'line': 'MCF-10A-H1047R', 'time': '0hr'}, 'GSM1550102': {'line': 'MCF-10A', 'time': '6hr'}, 'GSM1550109': {'line': 'MCF-10A', 'time': '12hr'}, 'GSM1550108': {'line': 'MCF-10A', 'time': '0hr'}, 'GSM2109300': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2728645': {'type': 'lymphatic endothelial cells (LEC)', 'variation': 'vector control'}, 'GSM2728647': {'type': 'lymphatic endothelial cells (LEC)', 'variation': 'V5/vIRF3 overexpression'}, 'GSM2172076': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2666048': {'age': 'Day 450', 'well': 'D5', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000209'}, 'GSM2109301': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM2437919': {'type': 'skin fibroblasts'}, 'GSM2437918': {'type': 'skin fibroblasts'}, 'GSM2089700': {'state': 'colorectal cancer', 'line': 'SW48-p53_KO', 'treatment': 'Doxorubicin at a final concentration of 300 nM for 16 hours'}, 'GSM2437917': {'type': 'skin fibroblasts'}, 'GSM1965408': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965409': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965404': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965405': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965406': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965407': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965400': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965401': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965402': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965403': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1613627': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2170940': {'stage': 'Liver bud 3'}, 'GSM2170941': {'stage': 'Liver bud 3'}, 'GSM2172075': {'donor_age': '21', 'inferred_cell_type': 'beta', 'gender': 'male'}, 'GSM1553458': {'with': 'EGFP (control)', 'line': 'MDA-MB-231', 'type': 'highly invasive', 'variation': 'EGFP control'}, 'GSM1553459': {'with': 'mt-REST', 'line': 'MDA-MB-231', 'type': 'highly invasive', 'variation': 'overexpression of mutant REST'}, 'GSM2265670': {'antibody': 'H3K27ac (CST, 8173)', 'type': 'Colon cancer ectopically expressing H3.3'}, 'GSM1553456': {'with': 'si-REST', 'line': 'MCF-7', 'type': 'weakly invasive', 'variation': 'Downregulation of REST'}, 'GSM1553457': {'with': 'si-REST', 'line': 'MCF-7', 'type': 'weakly invasive', 'variation': 'Downregulation of REST'}, 'GSM1553455': {'with': 'si-GAPDH (control)', 'line': 'MCF-7', 'type': 'weakly invasive', 'variation': 'control'}, 'GSM2309634': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309635': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309636': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309637': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309630': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309631': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309632': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309633': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309638': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309639': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2172072': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM3132058': {'line': 'MZ-CRC-1 medullary thyroid cancer cells', 'time': '24hr', 'agent': 'Dinaciclib', 'dose': '20nM'}, 'GSM2147939': {'patient': 'P501', 'age': '25', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM3132051': {'line': 'MZ-CRC-1 medullary thyroid cancer cells', 'time': '12hr', 'agent': 'control', 'dose': 'control'}, 'GSM3132050': {'line': 'TT medullary thyroid cancer cells', 'time': '24hr', 'agent': 'Dinaciclib', 'dose': '10nM'}, 'GSM3132053': {'line': 'MZ-CRC-1 medullary thyroid cancer cells', 'time': '12hr', 'agent': 'Dinaciclib', 'dose': '20nM'}, 'GSM3132052': {'line': 'MZ-CRC-1 medullary thyroid cancer cells', 'time': '12hr', 'agent': 'control', 'dose': 'control'}, 'GSM3132055': {'line': 'MZ-CRC-1 medullary thyroid cancer cells', 'time': '24hr', 'agent': 'control', 'dose': 'control'}, 'GSM3132054': {'line': 'MZ-CRC-1 medullary thyroid cancer cells', 'time': '12hr', 'agent': 'Dinaciclib', 'dose': '20nM'}, 'GSM3132057': {'line': 'MZ-CRC-1 medullary thyroid cancer cells', 'time': '24hr', 'agent': 'Dinaciclib', 'dose': '20nM'}, 'GSM3132056': {'line': 'MZ-CRC-1 medullary thyroid cancer cells', 'time': '24hr', 'agent': 'control', 'dose': 'control'}, 'GSM1386276': {'type': 'adult human dermal microvascular ECs (hDMECs)'}, 'GSM1386277': {'type': 'adult human dermal microvascular ECs (hDMECs)'}, 'GSM1386274': {'type': 'Lin-CD34+ Cord blood cells'}, 'GSM1386275': {'type': 'CD45+HUVEC-rEC-hMPP'}, 'GSM1386272': {'type': 'Lin-CD34+ Cord blood cells'}, 'GSM1386273': {'type': 'Lin-CD34+ Cord blood cells'}, 'GSM2172073': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1386278': {'type': 'hDMEC CD45+CD34+ in vivo'}, 'GSM1386279': {'type': 'human umbilical vein ECs (HUVECs)'}, 'GSM2392229': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392228': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2711208': {'tissue': 'Meningioma tumor'}, 'GSM2711209': {'tissue': 'Meningioma tumor'}, 'GSM2392223': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392222': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392221': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392220': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392227': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392226': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392225': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392224': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376176': {'line': 'hLF', 'type': 'cultured human lung fibroblasts'}, 'GSM1376177': {'line': 'hLF', 'type': 'cultured human lung fibroblasts'}, 'GSM1376174': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376175': {'line': 'hLF', 'type': 'cultured human lung fibroblasts'}, 'GSM1376172': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376173': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376170': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376171': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2172070': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1376178': {'line': 'hFF', 'type': 'cultured human foreskin fibroblasts'}, 'GSM3190640': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A44', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.510603'}, 'GSM3190641': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.383383'}, 'GSM3190642': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.814118'}, 'GSM3190643': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.752766'}, 'GSM3190644': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.258281'}, 'GSM3190645': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A21', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.822768'}, 'GSM3190646': {'boca': 'Yes', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.100646'}, 'GSM3190647': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.191802'}, 'GSM3190648': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A21', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.281401'}, 'GSM3190649': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'Yes', 'visit': 'RV-A21', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'F', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', '4': 'No', '2': 'No', 'years': '11', 'libcounts': '6.637734', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM2172071': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1505614': {'tissue': 'Trachea'}, 'GSM1505613': {'tissue': 'Thyroid'}, 'GSM1505612': {'tissue': 'Thymus'}, 'GSM1505611': {'tissue': 'Testes'}, 'GSM1505610': {'tissue': 'Spleen'}, 'GSM2304518': {'tissue': 'Endometrial stromal cells', 'point': 'TP2 (decidualized)'}, 'GSM1607409': {'tissue': 'Foreskin', 'antibody': '5-Methylcytosine (Eurogentec. Cat: BI-MECY-0100)', 'passage': '2'}, 'GSM1607408': {'tissue': 'Foreskin', 'antibody': '5-Methylcytosine (Eurogentec. Cat: BI-MECY-0100)', 'passage': '2'}, 'GSM2649796': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM1607401': {'tissue': 'Foreskin', 'antibody': 'H3K4me3 (Diagenode. Cat: C15410003-50)', 'passage': '2'}, 'GSM1607400': {'tissue': 'Foreskin', 'antibody': 'none, input', 'passage': '2'}, 'GSM1607403': {'tissue': 'Foreskin', 'antibody': 'H3K4me3 (Diagenode. Cat: C15410003-50)', 'passage': '2'}, 'GSM1607402': {'tissue': 'Foreskin', 'antibody': 'H3K4me3 (Diagenode. Cat: C15410003-50)', 'passage': '2'}, 'GSM1607405': {'tissue': 'Foreskin', 'antibody': 'H3K27ac (Merck Millipore. Cat 07-360)', 'passage': '2'}, 'GSM1607404': {'tissue': 'Foreskin', 'antibody': 'H3K27ac (Merck Millipore. Cat 07-360)', 'passage': '2'}, 'GSM1607407': {'tissue': 'Foreskin', 'antibody': '5-Methylcytosine (Eurogentec. Cat: BI-MECY-0100)', 'passage': '2'}, 'GSM1607406': {'tissue': 'Foreskin', 'antibody': 'H3K27ac (Merck Millipore. Cat 07-360)', 'passage': '2'}, 'GSM2274938': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '650', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-30', 'trunkbarcode': '927496', 'sampleID': 'S32698', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9311', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9311', 'studysiteshort': 'UCSF'}, 'GSM2274939': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-9', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-32', 'trunkbarcode': '927496', 'sampleID': 'S32722', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9312', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9312', 'studysiteshort': 'UCSF'}, 'GSM2092996': {'bin': '29', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092997': {'bin': '29', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092990': {'bin': '28', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2092991': {'bin': '28', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2092992': {'bin': '28', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2092993': {'bin': '28', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'black'}, 'GSM2274930': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-22', 'trunkbarcode': '927496', 'sampleID': 'S32690', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9303', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9303', 'studysiteshort': 'UCSF'}, 'GSM2274931': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-23', 'trunkbarcode': '927496', 'sampleID': 'S32691', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9304', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9304', 'studysiteshort': 'UCSF'}, 'GSM2274932': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-24', 'trunkbarcode': '927496', 'sampleID': 'S32692', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9305', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9305', 'studysiteshort': 'UCSF'}, 'GSM2274933': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-25', 'trunkbarcode': '927496', 'sampleID': 'S32693', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9306', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '2,3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9306', 'studysiteshort': 'UCSF'}, 'GSM2274934': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-26', 'trunkbarcode': '927496', 'sampleID': 'S32694', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9307', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9307', 'studysiteshort': 'UCSF'}, 'GSM2274935': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-27', 'trunkbarcode': '927496', 'sampleID': 'S32695', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9308', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9308', 'studysiteshort': 'UCSF'}, 'GSM2274936': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-28', 'trunkbarcode': '927496', 'sampleID': 'S32696', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9309', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated + PVR-fc treated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9309', 'studysiteshort': 'UCSF'}, 'GSM2274937': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-6', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '650', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-29', 'trunkbarcode': '927496', 'sampleID': 'S32697', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9310', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3,2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9310', 'studysiteshort': 'UCSF'}, 'GSM2125708': {'cancer': 'normal'}, 'GSM2125709': {'cancer': 'gastritis/IM'}, 'GSM2705312': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 1 14 month at -20°C', 'date': '11.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2125700': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2125701': {'cancer': 'gastric cancer', 'stage': '4'}, 'GSM2125702': {'cancer': 'gastric cancer', 'stage': '1'}, 'GSM2125703': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM2125704': {'cancer': 'gastritis/IM'}, 'GSM2125705': {'cancer': 'gastritis/IM'}, 'GSM2125706': {'cancer': 'gastritis/IM'}, 'GSM2125707': {'cancer': 'gastritis/IM'}, 'GSM1963802': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963803': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963800': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963801': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963806': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963807': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963804': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963805': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963808': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM1963809': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC04'}, 'GSM2341652': {'source': 'none', 'line': 'IMR90', 'RNAi': 'Control RNAi', 'factor': 'none'}, 'GSM2341653': {'source': 'none', 'line': 'IMR90', 'RNAi': 'Control RNAi', 'factor': 'none'}, 'GSM2341650': {'source': 'none', 'line': 'U2OS', 'RNAi': 'Nup93 RNAi', 'factor': 'none'}, 'GSM2341651': {'source': 'none', 'line': 'U2OS', 'RNAi': 'Nup93 RNAi', 'factor': 'none'}, 'GSM2689362': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2341654': {'source': 'none', 'line': 'IMR90', 'RNAi': 'Nup153 RNAi', 'factor': 'none'}, 'GSM2341655': {'source': 'none', 'line': 'IMR90', 'RNAi': 'Nup153 RNAi', 'factor': 'none'}, 'GSM2705310': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 3', 'date': '11.04.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705317': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM1845863': {'line': 'ATCC CRL-1740', 'passages': '33 (in our lab)', 'type': 'LNCaP', 'treatment': 'Treated with only DMSO vehicle'}, 'GSM1845862': {'line': 'ATCC CRL-1740', 'passages': '33 (in our lab)', 'type': 'LNCaP', 'treatment': 'Treated R1881 10 nM 48 hrs'}, 'GSM1845861': {'line': 'EP156T', 'passages': '64', 'type': 'prostate epithelial cell', 'treatment': 'Treated with only DMSO vehicle'}, 'GSM1845860': {'line': 'EP156T', 'passages': '64', 'type': 'prostate epithelial cell', 'treatment': 'Treated R1881 10 nM 48 hrs'}, 'GSM1845867': {'line': 'ATCC CRL-2505', 'type': '22Rv1', 'treatment': 'Treated with 1 nM R1881 24 hrs'}, 'GSM1845866': {'line': 'ATCC CRL-2505', 'type': '22Rv1', 'treatment': 'Grown normal medium w/o R1881'}, 'GSM1845865': {'line': 'EPT3-M1', 'passages': '11', 'type': 'mesenchymal traits', 'treatment': 'Treated with only DMSO vehicle'}, 'GSM2723938': {'state': 'ccRCC', 'individual': 'patient 86049102', 'tissue': 'ccRCC tumor'}, 'GSM2723937': {'state': 'ccRCC', 'individual': 'patient 86049102', 'tissue': 'adjacent normal kidney'}, 'GSM2723936': {'state': 'ccRCC', 'individual': 'patient 77972083', 'tissue': 'ccRCC tumor'}, 'GSM2723935': {'state': 'ccRCC', 'individual': 'patient 77972083', 'tissue': 'adjacent normal kidney'}, 'GSM2723934': {'state': 'ccRCC', 'individual': 'patient 75416923', 'tissue': 'ccRCC tumor'}, 'GSM2723933': {'state': 'ccRCC', 'individual': 'patient 75416923', 'tissue': 'adjacent normal kidney'}, 'GSM2723932': {'state': 'ccRCC', 'individual': 'patient 74575859', 'tissue': 'ccRCC tumor'}, 'GSM2723931': {'state': 'ccRCC', 'individual': 'patient 74575859', 'tissue': 'adjacent normal kidney'}, 'GSM2723930': {'state': 'ccRCC', 'individual': 'patient 70528835', 'tissue': 'ccRCC tumor'}, 'GSM2526774': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526775': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526776': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526777': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526770': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526771': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526772': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526773': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526778': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526779': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2653503': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2302140': {'timepoint': 'Pre', 'id': '61', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM1202569': {'line': 'MDA-LM2', 'rep': '1', 'point': '0'}, 'GSM1202568': {'line': 'MDA-MB-231', 'rep': '4', 'point': '7'}, 'GSM1202565': {'line': 'MDA-MB-231', 'rep': '1', 'point': '7'}, 'GSM1202564': {'line': 'MDA-MB-231', 'rep': '4', 'point': '4'}, 'GSM1202567': {'line': 'MDA-MB-231', 'rep': '3', 'point': '7'}, 'GSM1202566': {'line': 'MDA-MB-231', 'rep': '2', 'point': '7'}, 'GSM1202561': {'line': 'MDA-MB-231', 'rep': '1', 'point': '4'}, 'GSM1202560': {'line': 'MDA-MB-231', 'rep': '4', 'point': '2'}, 'GSM1202563': {'line': 'MDA-MB-231', 'rep': '3', 'point': '4'}, 'GSM1202562': {'line': 'MDA-MB-231', 'rep': '2', 'point': '4'}, 'GSM2565043': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM2565042': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2565041': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM2565040': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2565047': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2565046': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM3711618': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711619': {'Sex': 'M', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '8'}, 'GSM3711616': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '10'}, 'GSM3711617': {'Sex': 'F', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '14'}, 'GSM3711614': {'Sex': 'M', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711615': {'Sex': 'M', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM3711612': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM1556177': {'subtype': 'basal', 'line': 'MDAMB468', 'agent': 'DMSO'}, 'GSM3711610': {'Sex': 'F', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '8'}, 'GSM3711611': {'Sex': 'F', 'visit': 'Visit 2b', 'tissue': 'Peripheral Blood', 'flowcell': 'CAJMRANXX', 'years': '8'}, 'GSM2062418': {'line': 'Huh7', 'passages': 'P3'}, 'GSM3305336': {'shRNA': 'Cells were treated with a non-targeting shRNA (shCONT)', 'condition': 'Normoxia'}, 'GSM2535838': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4089', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25048', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C66', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4089', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C66'}, 'GSM3305337': {'shRNA': 'Cells were treated with an shRNA targeting ALKBH1', 'condition': 'Normoxia'}, 'GSM2046872': {'type': 'Mesenchymal stem cells', 'antibody': 'none', 'agasga': 'AGA'}, 'GSM2046873': {'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM2046870': {'type': 'Mesenchymal stem cells', 'antibody': 'none', 'agasga': 'AGA'}, 'GSM2046871': {'type': 'Mesenchymal stem cells', 'antibody': 'none', 'agasga': 'AGA'}, 'GSM2046876': {'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2046877': {'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2046874': {'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM517442': {'stage': 'early glial-like'}, 'GSM2123707': {'with': 'TPRX1', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123704': {'with': 'LEUTX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123705': {'with': 'LEUTX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123702': {'with': 'LEUTX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2123700': {'with': 'DPRX', 'type': 'Human Adult Dermal Fibroblasts (HDF-a)'}, 'GSM2112746': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '24 Hours'}, 'GSM2112747': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': 'Vehicle', 'time': '24 Hours'}, 'GSM2112744': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '24 Hours'}, 'GSM2112745': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM R5020', 'time': '24 Hours'}, 'GSM2112742': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '48 Hours'}, 'GSM2112743': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': 'Vehicle', 'time': '24 Hours'}, 'GSM2112740': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '48 Hours'}, 'GSM2112741': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM R5020', 'time': '48 Hours'}, 'GSM2112748': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '24 Hours'}, 'GSM2112749': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM R5020', 'time': '24 Hours'}, 'GSM2113299': {'score': '10', 'type': 'Accuracy sample', 'histology': 'Synovial sarcoma'}, 'GSM2113298': {'score': '7.7', 'type': 'Accuracy sample', 'histology': 'Adenocarcinoma'}, 'GSM2113293': {'score': '8.5', 'type': 'Accuracy sample', 'histology': 'Acute Promyelocytic Leukemia'}, 'GSM2113297': {'score': '10', 'type': 'Accuracy sample', 'histology': 'Histiocytic lymphoma'}, 'GSM2113296': {'score': '10', 'type': 'Accuracy sample', 'histology': 'Liposarcoma'}, 'GSM2113295': {'score': '10', 'type': 'Accuracy sample', 'histology': 'Ewings sarcoma'}, 'GSM2113294': {'score': '9.7', 'type': 'Accuracy sample', 'histology': 'Endometrial Stromal Nodule'}, 'GSM1406295': {'type': 'Primary Monocytes(BC17)'}, 'GSM1406294': {'type': 'Primary Monocytes(BC17)'}, 'GSM1406297': {'type': 'Macrophages(BC17)'}, 'GSM1406296': {'type': 'Primary Monocytes(BC17)'}, 'GSM1406299': {'type': 'Macrophages(BC17)'}, 'GSM1406298': {'type': 'Macrophages(BC17)'}, 'GSM2287607': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1288869': {'with': 'control miR (final conc. of 50nM)', 'type': 'HeLa-229 cells', 'time': '72h post-transfection'}, 'GSM1067867': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'line': 'HEK293'}, 'GSM1435814': {'type': 'Monocyte-derived denditric cells'}, 'GSM1067865': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'vendor': 'Cytoskeleton, Inc.', 'line': 'HEK293', 'antibody': 'Fibrillarin; mouse monoclonal; AFB01', 'number': '011'}, 'GSM1067864': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'vendor': 'Cytoskeleton, Inc.', 'line': 'HEK293', 'antibody': 'Fibrillarin; mouse monoclonal; AFB01', 'number': '011'}, 'GSM1067863': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'vendor': 'SIGMA', 'line': 'HEK293', 'antibody': 'ANTI-FLAG M2; mouse monoclonal', 'number': '088K6018'}, 'GSM1067862': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'vendor': 'Santa Cruz Biotechnology', 'line': 'HEK293', 'antibody': 'Nop58; goat polyclonal IgG; sc-23705'}, 'GSM1067861': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'vendor': 'Santa Cruz Biotechnology', 'line': 'HEK293', 'antibody': 'Nop58; goat polyclonal IgG; sc-23705'}, 'GSM2287603': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1435819': {'type': 'Monocyte-derived denditric cells'}, 'GSM1435818': {'type': 'Monocyte-derived denditric cells'}, 'GSM1067869': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'vendor': 'From Gunter Meister; PMID:18430891', 'line': 'HeLa', 'antibody': 'monoclonal Ago2; 11A9'}, 'GSM1067868': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'line': 'HEK293'}, 'GSM2303286': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM1521567': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521566': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521565': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521564': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521563': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521562': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521561': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521560': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2287608': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1521569': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521568': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1646978': {'illumina_index': '16', 'point': '4', 'batch': '2', 'agent': 'Salm', 'rin': '10', 'individual': 'M377'}, 'GSM2845516': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2A'}, 'GSM2150849': {'line': 'HeLa', 'transfection': 'Linear RNA'}, 'GSM2150848': {'line': 'HeLa', 'transfection': 'Linear RNA'}, 'GSM2150847': {'line': 'HeLa', 'transfection': 'Untreated'}, 'GSM2150846': {'line': 'HeLa', 'transfection': 'Untreated'}, 'GSM1395629': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395628': {'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395625': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395624': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395627': {'subtype': 'Cla+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395626': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395621': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395620': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395623': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395622': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2081482': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081483': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081480': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081481': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081486': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081487': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081484': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2081485': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2883000': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject7', 'drug': 'Metformin'}, 'GSM2883001': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject7', 'drug': 'Metformin'}, 'GSM2883002': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject8', 'drug': 'Metformin'}, 'GSM2081489': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2883004': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject9', 'drug': 'Metformin'}, 'GSM2883005': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject10', 'drug': 'Metformin'}, 'GSM2883006': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject10', 'drug': 'Metformin'}, 'GSM2883007': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject11', 'drug': 'Metformin'}, 'GSM1061019': {'transfection': 'Vector', 'line': 'PA1 cell'}, 'GSM1267816': {'induction': '0 (uninduced)', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM1346271': {'individual': 'Patient-2 (a.k.a. BRx-07)', 'type': 'circulating tumor cell from blood'}, 'GSM2092509': {'repertoire': 'TCR-beta', 'individual': 'patient 1 (non-glioma)', 'tissue': 'peripheral blood'}, 'GSM2092508': {'repertoire': 'TCR-alpha', 'individual': 'patient 1 (non-glioma)', 'tissue': 'peripheral blood'}, 'GSM2092507': {'repertoire': 'TCR-beta', 'individual': 'patient 1 (non-glioma)', 'tissue': 'brain'}, 'GSM2092506': {'repertoire': 'TCR-alpha', 'individual': 'patient 1 (non-glioma)', 'tissue': 'brain'}, 'GSM2754525': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0290', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1267817': {'induction': '5 minutes', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM2362488': {'line': 'HEK293'}, 'GSM2362489': {'line': 'HEK293'}, 'GSM2648120': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'Progesterone+Tamoxifen', 'time': '3 weeks'}, 'GSM2648121': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'MPA', 'time': '3 weeks'}, 'GSM2648122': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'MPA+Tamoxifen', 'time': '3 weeks'}, 'GSM2648123': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'Tamoxifen', 'time': '3 weeks'}, 'GSM2648124': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'R5020', 'time': '3 weeks'}, 'GSM2648125': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'R5020+Tamoxifen', 'time': '3 weeks'}, 'GSM2648126': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'EC313+BZA', 'time': '3 weeks'}, 'GSM2565374': {'construction': 'PLATE-Seq', 'drug': 'BENZALKONIUM CHLORIDE'}, 'GSM2648128': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'EC313+ICI', 'time': '3 weeks'}, 'GSM2648129': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'Tamoxifen', 'time': '3 weeks'}, 'GSM2565377': {'construction': 'PLATE-Seq', 'drug': 'NSC 663284'}, 'GSM2565376': {'construction': 'PLATE-Seq', 'drug': 'IPAG'}, 'GSM2565370': {'construction': 'PLATE-Seq', 'drug': 'SAR245409 (XL765)'}, 'GSM2565373': {'construction': 'PLATE-Seq', 'drug': 'Varlitinib'}, 'GSM2565372': {'construction': 'PLATE-Seq', 'drug': 'Telatinib'}, 'GSM2200458': {'state': 'non-disease', 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'C/C rs6716753'}, 'GSM2262803': {'tissue': 'pancreas'}, 'GSM2932829': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2932828': {'pucai': '45', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2262802': {'tissue': 'pancreas'}, 'GSM2200450': {'state': \"Crohn's disease\", 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'C/C rs6716753'}, 'GSM2200451': {'state': \"Crohn's disease\", 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'T/T rs6716753'}, 'GSM2200452': {'state': \"Crohn's disease\", 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'C/C rs6716753'}, 'GSM2200453': {'state': \"Crohn's disease\", 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'T/T rs6716753'}, 'GSM2602085': {'shRNA': 'METTL3 shRNA #9', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602084': {'shRNA': 'Control shRNA', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602087': {'shRNA': 'METTL3 shRNA #9', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2200457': {'state': 'non-disease', 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'C/C rs6716753'}, 'GSM2671102': {'line': 'T47D', 'tissue': 'breast cancer', 'genotype': 'Control shRNA'}, 'GSM2671100': {'line': 'T47D', 'tissue': 'breast cancer', 'genotype': 'HectD1 depletion by shRNA'}, 'GSM2671101': {'line': 'T47D', 'tissue': 'breast cancer', 'genotype': 'Control shRNA'}, 'GSM1267813': {'induction': '24 hours', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'poly(A) RNA'}, 'GSM2326211': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326210': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326213': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326212': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326215': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM1023435': {'group': 'non-lesional', 'tissue': 'skin', 'patient': 'Patient 2'}, 'GSM1023436': {'group': 'non-lesional', 'tissue': 'skin', 'patient': 'Patient 3'}, 'GSM2326216': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326219': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'eHDAC6-Guide'}, 'GSM2326218': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'eHDAC6-Guide'}, 'GSM2262809': {'tissue': 'pancreas'}, 'GSM2453997': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453996': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2370636': {'antibodies': 'H3K27Ac (Diagenode, pAb-196-060)', 'type': 'Resting naive CD4 purified cells', 'ids': '489'}, 'GSM2370637': {'antibodies': 'RNA Polymerase II (Active Motif, 4H8)', 'type': 'Resting naive CD4 purified cells', 'ids': '881'}, 'GSM2370630': {'antibodies': 'H3K4me3 (Abcam ab8580)', 'type': 'Resting naive CD4 purified cells', 'ids': '392'}, 'GSM2370631': {'antibodies': 'H3K4Me3 (Millipore,17-614)', 'type': 'Resting naive CD4 purified cells', 'ids': '486'}, 'GSM2453991': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453990': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2370638': {'antibodies': 'H3K4me3 (Abcam ab8580)', 'type': 'Resting TCM CD4 purified cells', 'ids': '387'}, 'GSM2370639': {'antibodies': 'H3K4Me3 (Millipore,17-614)', 'type': 'Resting TCM CD4 purified cells', 'ids': '479'}, 'GSM2453999': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453998': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2470068': {'line': 'U2OS-PcTF KAH126', 'tag': 'treated', 'protein': 'PcTF'}, 'GSM2470069': {'line': 'U2OS-dTF KAH132', 'tag': 'untreated (deactivated protein)', 'protein': 'delta-TF (truncated)'}, 'GSM2470064': {'line': 'SK-N-SH (ATCC HTB-11)', 'tag': 'untreated', 'protein': 'none'}, 'GSM2470065': {'line': 'K562 (CCL-243)', 'tag': 'treated', 'protein': 'PcTF'}, 'GSM2470066': {'line': 'K562 (CCL-243)', 'tag': 'untreated', 'protein': 'none'}, 'GSM2635259': {'line': 'K562'}, 'GSM2470061': {'line': 'U-2 OS (ATCC HTB-96)', 'tag': 'treated', 'protein': 'PcTF'}, 'GSM2470062': {'line': 'U-2 OS (ATCC HTB-96)', 'tag': 'untreated', 'protein': 'none'}, 'GSM2470063': {'line': 'SK-N-SH (ATCC HTB-11)', 'tag': 'treated', 'protein': 'PcTF'}, 'GSM1598282': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM1598283': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM1598287': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM3436217': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'GSK-LSD1', 'variation': 'wild type'}, 'GSM3190724': {'boca': 'Yes', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '3.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.287536'}, 'GSM3190723': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '3.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.787547'}, 'GSM3190722': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '3.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.885356'}, 'GSM2084199': {'status': 'Not infected', 'concentration': 'Hypoxia (1% O2 for 24hrs)', 'type': 'SLK cells'}, 'GSM2084198': {'status': 'Not infected', 'concentration': 'Hypoxia (1% O2 for 24hrs)', 'type': 'SLK cells'}, 'GSM1267818': {'induction': '30 minues', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM2361799': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361798': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM3190729': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.206013'}, 'GSM1239132': {'status': '+ / + / -', 'grade': '2', 'subtype': 'rRNA depleted RNA', 'id': 'BRB215', 'size': '3.5cm'}, 'GSM2361791': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361790': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361793': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361792': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361795': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361794': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361797': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361796': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1267819': {'induction': '1 hour', 'line': 'Akata', 'type': 'An Epstein-Barr virus (EBV)-producer line', 'subtype': 'Ribo-Zero treated RNA'}, 'GSM2550418': {'donor': 'F', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'male'}, 'GSM2550419': {'donor': 'F', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'male'}, 'GSM2550414': {'donor': 'F', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'male'}, 'GSM2550415': {'donor': 'F', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'male'}, 'GSM2550416': {'donor': 'F', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'male'}, 'GSM2550417': {'donor': 'F', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'male'}, 'GSM2550410': {'donor': 'D', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'male'}, 'GSM2550411': {'donor': 'D', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'male'}, 'GSM2550412': {'donor': 'F', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'male'}, 'GSM2550413': {'donor': 'F', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'male'}, 'GSM2383939': {'knockdown': 'NA', 'line': 'H460 cells', 'target': 'NA'}, 'GSM2383938': {'knockdown': 'NA', 'line': 'H460 cells', 'target': 'NA'}, 'GSM1239133': {'status': '+ / + / +', 'grade': '2', 'subtype': 'rRNA depleted RNA', 'id': 'BRB248', 'size': '2cm'}, 'GSM2383931': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'NRF2'}, 'GSM2383930': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'NRF2'}, 'GSM2383933': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'NR0B1'}, 'GSM2383932': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'NR0B1'}, 'GSM2383935': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'SNW1'}, 'GSM2374786': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2383937': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'SNW1'}, 'GSM2383936': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'SNW1'}, 'GSM2889023': {'tissue': 'pancreatic islets'}, 'GSM2374787': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM3177209': {'responder': 'NO', 'global': '22', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '27', 'cdai': '373'}, 'GSM3177208': {'responder': 'YES', 'global': '2', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '26', 'cdai': '10'}, 'GSM3177207': {'responder': 'YES', 'global': '0', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '26', 'cdai': '14'}, 'GSM3177206': {'responder': 'YES', 'global': '12', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w106', 'id': '26', 'cdai': '94'}, 'GSM3177205': {'responder': 'YES', 'global': '12', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '26', 'cdai': '335'}, 'GSM3177204': {'responder': 'YES', 'global': '6', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '23', 'cdai': '1.5'}, 'GSM3177203': {'responder': 'YES', 'global': '6', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '23', 'cdai': '101'}, 'GSM3177202': {'responder': 'YES', 'global': '14', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w106', 'id': '23', 'cdai': '64.96'}, 'GSM3177201': {'responder': 'YES', 'global': '4', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '22', 'cdai': '36'}, 'GSM3177200': {'responder': 'YES', 'global': '4', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '22', 'cdai': '70.76'}, 'GSM1603346': {'cl': '106', 'ca': '8.8', 'dyslipidemia': 'Yes', 'year': '--', 'statin': '--', 'creatinine': '1', 'id': 'S33', 'co2': '25', 'rr': '14', 'plavix': '--', 'na': '139', 'iiia': '--', 'type': 'STEMI', 'glucose': '130', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '25', 'smoking': 'No', 'day': '--', 'ticagrelor': 'Yes', 'troponin': '22.79', 'gender': 'F', 'k': '4.2', 'batch': '3', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603347': {'cl': '100', 'ca': '9.4', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '0.79', 'id': 'S34', 'co2': '28', 'rr': '--', 'plavix': 'Yes', 'na': '135', 'iiia': '--', 'type': 'STEMI', 'glucose': '145', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': '--', 'bun': '9', 'smoking': 'Yes', 'day': '0.5', 'ticagrelor': '--', 'troponin': '12.18', 'gender': 'F', 'k': '3.7', 'batch': '1', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603344': {'cl': '101', 'ca': '9.2', 'dyslipidemia': 'Yes', 'year': '60', 'statin': '--', 'creatinine': '1.07', 'id': 'S31', 'co2': '23', 'rr': '18', 'plavix': '--', 'na': '134', 'iiia': 'Yes', 'type': 'STEMI', 'glucose': '261', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '10', 'smoking': 'No', 'day': '--', 'ticagrelor': 'Yes', 'troponin': '88.87', 'gender': 'M', 'k': '4.5', 'batch': '4', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603345': {'cl': '105', 'ca': '8.4', 'dyslipidemia': 'No', 'year': '--', 'statin': '--', 'creatinine': '1.06', 'id': 'S32', 'co2': '23', 'rr': '18', 'plavix': '--', 'na': '138', 'iiia': '--', 'type': 'STEMI', 'glucose': '160', 'ht': 'No', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '10', 'smoking': 'Yes', 'day': '2', 'ticagrelor': 'Yes', 'troponin': '56.72', 'gender': 'M', 'k': '3.9', 'batch': '2', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603342': {'cl': '104', 'ca': '9.9', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '1.17', 'id': 'S29', 'co2': '27', 'rr': '18', 'plavix': '--', 'na': '139', 'iiia': 'Yes', 'type': 'STEMI', 'glucose': '123', 'ht': 'No', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '12', 'smoking': 'Yes', 'day': '--', 'ticagrelor': 'Yes', 'troponin': '3.89', 'gender': 'M', 'k': '3.8', 'batch': '2', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603343': {'cl': '104', 'ca': '9.1', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '0.89', 'id': 'S30', 'co2': '24', 'rr': '20', 'plavix': '--', 'na': '136', 'iiia': '--', 'type': 'STEMI', 'glucose': '98', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '17', 'smoking': 'Yes', 'day': '1', 'ticagrelor': 'Yes', 'troponin': '7.37', 'gender': 'M', 'k': '4.2', 'batch': '1', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603340': {'cl': '93', 'ca': '8.7', 'dyslipidemia': 'No', 'year': '--', 'statin': '--', 'creatinine': '0.73', 'id': 'S27', 'co2': '28', 'rr': '24', 'plavix': '--', 'na': '132', 'iiia': '--', 'type': 'STEMI', 'glucose': '155', 'ht': 'No', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '12', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '1.48', 'gender': 'M', 'k': '3.9', 'batch': '4', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603341': {'cl': '118', 'ca': '5.7', 'dyslipidemia': 'No', 'year': '20-40', 'statin': '--', 'creatinine': '0.63', 'id': 'S28', 'co2': '17', 'rr': '--', 'plavix': '--', 'na': '140', 'iiia': '--', 'type': 'STEMI', 'glucose': '99', 'ht': 'No', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '7', 'smoking': 'Yes', 'day': '--', 'ticagrelor': 'Yes', 'troponin': '2.33', 'gender': 'M', 'k': '3.7', 'batch': '3', 'prasugrel': '--', 'cad': 'No'}, 'GSM1149312': {'line': 'KBM7', 'ploidy': 'haploid'}, 'GSM1149313': {'line': 'KBM7', 'ploidy': 'haploid'}, 'GSM1603348': {'type': 'non-myocardial infarction control'}, 'GSM1603349': {'type': 'non-myocardial infarction control'}, 'GSM2516827': {'death': '92', 'score': 'III', 'post_mortem_interval': '3.83', 'caseid': '02-12', 'Sex': 'M', 'rin_score': '5.7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655500'}, 'GSM2516826': {'death': '74', 'score': 'VI', 'post_mortem_interval': '3', 'caseid': '08-41', 'Sex': 'F', 'rin_score': '5.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655470'}, 'GSM2516825': {'death': '99', 'score': 'III', 'post_mortem_interval': '3.5', 'caseid': '09-20', 'Sex': 'F', 'rin_score': '7.4', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655490'}, 'GSM2516824': {'death': '85', 'score': 'IV', 'post_mortem_interval': '2.25', 'caseid': '11-20', 'Sex': 'M', 'rin_score': '6.5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655428'}, 'GSM2516823': {'death': '80', 'score': 'VI', 'post_mortem_interval': '3.16', 'caseid': '07-15', 'Sex': 'M', 'rin_score': '6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655441'}, 'GSM2516822': {'death': '70', 'score': 'VI', 'post_mortem_interval': '2.66', 'caseid': '05-52', 'Sex': 'F', 'rin_score': '7.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655455'}, 'GSM2516821': {'death': '82', 'score': 'IV', 'post_mortem_interval': '3', 'caseid': '10-94', 'Sex': 'M', 'rin_score': '8.2', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655488'}, 'GSM3381519': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM2251705': {'tissue': 'ES-derived cardiac progenitor cells', 'treatment': 'Glucose 0 mM for 5 days and back to Glucose 25 mM for 5 days'}, 'GSM2516829': {'death': '77', 'score': 'IV', 'post_mortem_interval': '3.25', 'caseid': '11-03', 'Sex': 'M', 'rin_score': '6.7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655421'}, 'GSM2516828': {'death': '81', 'score': 'V', 'post_mortem_interval': '3.33', 'caseid': '07-50', 'Sex': 'M', 'rin_score': '7.5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655453'}, 'GSM1239135': {'status': '+ / + / +', 'grade': '2', 'subtype': 'rRNA depleted RNA', 'id': 'MCJBCR028', 'size': '1cm'}, 'GSM2689459': {'status': 'steroid-resistant asthma', 'type': 'CD8+T cells', 'id': '100', 'time': '8 days'}, 'GSM2689458': {'status': 'steroid-resistant asthma', 'type': 'CD8+T cells', 'id': '100', 'time': 'none'}, 'GSM3594518': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594519': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594510': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594511': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594512': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594513': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594514': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594515': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594516': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594517': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3381510': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM1548449': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548448': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM3381511': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM1548445': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548444': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548447': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548446': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548441': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM2754186': {'with': 'non-targeting shRNA negative control', 'type': 'CD34+ Cells', 'point': 'Day 14 Culture'}, 'GSM1548443': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548442': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM3381513': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM2616392': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM3381514': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM1239137': {'status': '- / - / +', 'grade': '3', 'subtype': 'polyA enriched RNA', 'id': 'BRB144', 'size': '6cm'}, 'GSM3381515': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM2535839': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4243', 'samplename': '1_T1D_CD154+_C09', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25482', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4243', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C09'}, 'GSM2048689': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048688': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048687': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048686': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048685': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048684': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048683': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048682': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048681': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048680': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2100042': {'rin': '9.5', 'Sex': 'Female', 'sspg': '323', 'age': '68', 'bmi': '27.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'Hispanic', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '255', 'method': 'Qiagen:trizol'}, 'GSM2100043': {'rin': '9.3', 'Sex': 'Male', 'sspg': '184', 'age': '64', 'bmi': '28.9', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '268', 'method': 'Qiagen:trizol'}, 'GSM2100040': {'rin': '8.8', 'Sex': 'Female', 'sspg': '323', 'age': '68', 'bmi': '27.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'Hispanic', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '255', 'method': 'Qiagen:trizol'}, 'GSM2100041': {'rin': '8.5', 'Sex': 'Female', 'sspg': '323', 'age': '68', 'bmi': '27.8', 'batch': '1-1', 'by': 'YL', 'cell': 'Activated T-Cells', 'state': 'Insulin resistant', 'race': 'Hispanic', 'lot': 'unk', 'date': 'NA', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '255', 'method': 'Qiagen:trizol'}, 'GSM2451128': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451129': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100044': {'rin': '8.9', 'Sex': 'Male', 'sspg': '184', 'age': '64', 'bmi': '28.9', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '268', 'method': 'Qiagen:trizol'}, 'GSM2100045': {'rin': '9.7', 'Sex': 'Male', 'sspg': '184', 'age': '64', 'bmi': '28.9', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '268', 'method': 'Qiagen:trizol'}, 'GSM2451124': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451125': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451126': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451127': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451120': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451121': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451122': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451123': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM3584128': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'male'}, 'GSM3584129': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'male'}, 'GSM3584124': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'male'}, 'GSM3584125': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'male'}, 'GSM3584126': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'male'}, 'GSM3584127': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'male'}, 'GSM3584120': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'male'}, 'GSM3584121': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'male'}, 'GSM3584122': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'male'}, 'GSM3584123': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'male'}, 'GSM1587790': {'line': 'FaDu', 'protocol': 'Transduced with Snail-expressing vector.'}, 'GSM1922959': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': '4 day 2.5 µM KDM5C70'}, 'GSM1922958': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K4me3 (Millipore, 07-473, Lot 2207275)', 'treatment': '4 day 1 µM dasatinib, 4 day 2.5 µM KDM5C70'}, 'GSM2616393': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM1163024': {'patient': 'Disease_K6', 'gender': 'F', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163025': {'patient': 'Disease_K6', 'gender': 'F', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Antagonist', 'id': '4'}, 'GSM678049': {'type': 'Granulocytes'}, 'GSM2136858': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 5 days, ENL Knock Down', 'batch': '1'}, 'GSM2136859': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 3 days, Control', 'batch': '1'}, 'GSM2230439': {'antibody': 'none', 'region': 'Ventral Mesencephalon', 'type': 'NA', 'age': '8 weeks'}, 'GSM2230438': {'antibody': 'none', 'region': 'Ventral Mesencephalon', 'type': 'NA', 'age': '7 weeks'}, 'GSM2230435': {'antibody': 'none', 'region': 'Ventral Mesencephalon', 'type': 'NA', 'age': '4 weeks, 5 days'}, 'GSM2136851': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 3 days, ENL Knock Down', 'batch': '1'}, 'GSM2230437': {'antibody': 'none', 'region': 'Ventral Mesencephalon', 'type': 'NA', 'age': '7 weeks, 5 days'}, 'GSM2230436': {'antibody': 'none', 'region': 'Ventral Mesencephalon', 'type': 'NA', 'age': '6 weeks, 5 days'}, 'GSM2136854': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 5 days, ENL Knock Down', 'batch': '1'}, 'GSM2136855': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 3 days, ENL Knock Down', 'batch': '1'}, 'GSM2230433': {'antibody': 'none', 'region': 'Ventral Mesencephalon', 'type': 'NA', 'age': '7 weeks, 5 days'}, 'GSM2230432': {'antibody': 'none', 'region': 'Ventral Mesencephalon', 'type': 'NA', 'age': '7 weeks, 5 days'}, 'GSM1464282': {'status': 'healthy'}, 'GSM1464283': {'status': 'healthy'}, 'GSM2200841': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2807393': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2200847': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2807395': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2200845': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2807397': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2807398': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2807399': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2200849': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200848': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM1163028': {'patient': 'Disease_K6', 'gender': 'F', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Agonist', 'id': '7'}, 'GSM2178985': {'stimulation': '14', 'type': 'CD8ab', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM2453568': {'tissue': 'H1-EC2'}, 'GSM2453569': {'tissue': 'H1-EC2'}, 'GSM2453566': {'tissue': 'HUVEC'}, 'GSM2453567': {'tissue': 'H1-EC2'}, 'GSM2453564': {'tissue': 'HUVEC'}, 'GSM2453565': {'tissue': 'HUVEC'}, 'GSM2453562': {'tissue': 'HUVEC'}, 'GSM2453563': {'tissue': 'HUVEC'}, 'GSM2453560': {'tissue': 'H1-EC2'}, 'GSM2453561': {'tissue': 'H1-EC2'}, 'GSM715458': {'tissue': 'endometrial stromal sarcoma', 'method': 'FFPE'}, 'GSM715459': {'tissue': 'endometrial stromal sarcoma', 'method': 'FFPE'}, 'GSM715452': {'tissue': 'papillary urothelial carcinoma', 'method': 'FFPE'}, 'GSM715453': {'tissue': 'papillary urothelial carcinoma', 'method': 'FFPE'}, 'GSM715451': {'tissue': 'lung squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715456': {'tissue': 'nasopharyngeal carcinoma', 'method': 'FFPE'}, 'GSM715457': {'tissue': 'endometrial stromal sarcoma', 'method': 'FFPE'}, 'GSM715454': {'tissue': 'nasopharyngeal carcinoma', 'method': 'FFPE'}, 'GSM715455': {'tissue': 'nasopharyngeal carcinoma', 'method': 'FFPE'}, 'GSM1545554': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545555': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545556': {'count': '4', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545557': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545550': {'count': '0', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545551': {'count': '3', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545552': {'count': '2', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545553': {'count': '0', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '2'}, 'GSM2560479': {'name': 'wt', 'antibody': 'Anti-CDX-2, Clone CDX2-88; cat.no. AM392-10M; Biogenex', 'type': 'column goblet cells', 'ko': 'none', 'cdx2opt': 'none', 'line': 'LS174T CL-188', 'induction': 'none'}, 'GSM1249908': {'line': 'HeLa cervical cancerÂ\\xa0cellsÂ\\xa0', 'antibody': 'AcH4', 'details': '06-598 (Millipore)'}, 'GSM1545558': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545559': {'count': '4', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM2748321': {'line': 'HCT8', 'treatment': 'treated with V. cholerae membrane vesicles'}, 'GSM1919368': {'status': 'Treatment-naïve', 'patient': 'Patient 18', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919369': {'status': 'Treatment-naïve', 'patient': 'Patient 19', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM2748320': {'line': 'HCT8', 'treatment': 'treated with V. cholerae membrane vesicles'}, 'GSM1919362': {'status': 'Treatment-naïve', 'patient': 'Patient 08', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919363': {'status': 'Treatment-naïve', 'patient': 'Patient 10', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919360': {'status': 'Treatment-naïve', 'patient': 'Patient 08', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919361': {'status': 'Treatment-naïve', 'patient': 'Patient 08', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919366': {'status': 'Treatment-naïve', 'patient': 'Patient 18', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919367': {'status': 'Treatment-naïve', 'patient': 'Patient 18', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919364': {'status': 'Treatment-naïve', 'patient': 'Patient 16', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM1919365': {'status': 'Treatment-naïve', 'patient': 'Patient 18', 'tissue': 'TECC/CTM', 'type': 'Single cell cluster', 'diagnosis': 'colorectal cancer'}, 'GSM2748322': {'line': 'HCT8', 'treatment': 'treated with E. coli membrane vesicles'}, 'GSM2748325': {'gsc': '3565', 'infection': 'control'}, 'GSM2748324': {'line': 'HCT8', 'treatment': 'treated with E. coli membrane vesicles'}, 'GSM2141698': {'individual': 'EU282', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141699': {'individual': 'EU282', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1892605': {'tissue': 'FFPE', 'antibody': 'H3K4me3 (Diagenode C15410003)'}, 'GSM2141690': {'individual': 'EU276', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141691': {'individual': 'EU278', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141692': {'individual': 'EU278', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141693': {'individual': 'EU278', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141694': {'individual': 'EU280', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141695': {'individual': 'EU280', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141696': {'individual': 'EU280', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141697': {'individual': 'EU282', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2754788': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0257', 'previousdiagnosisoftb': 'No', 'tst': '19', 'type': 'Tcells'}, 'GSM2754789': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0218', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754782': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0293', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754783': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '12', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '01_0524', 'previousdiagnosisoftb': 'No', 'tst': '18.1', 'type': 'Tcells'}, 'GSM2754780': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0152', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754781': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0229', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754786': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '01_0940', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754787': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0391', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754784': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0859', 'previousdiagnosisoftb': 'No', 'tst': '13', 'type': 'Tcells'}, 'GSM2754785': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1158', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2693929': {'morphology': 'epithelial', 'age': 'fetus', 'tissue': 'embryonic kidney'}, 'GSM2212754': {'gender': 'male', 'condition': 'control'}, 'GSM2241557': {'batch': 'B', 'condition': 'Trisomic'}, 'GSM2241554': {'batch': 'A', 'condition': 'Trisomic'}, 'GSM2241555': {'batch': 'B', 'condition': 'Trisomic'}, 'GSM2212750': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2212751': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212752': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212753': {'gender': 'female', 'condition': 'control'}, 'GSM2241558': {'batch': 'B', 'condition': 'Trisomic'}, 'GSM2241559': {'batch': 'B', 'condition': 'Trisomic'}, 'GSM1958509': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM1958508': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM1553082': {'type': 'MRC-5 fibroblasts', 'doublings': '32'}, 'GSM1507934': {'line': 'mel95.23', 'type': 'Melanoma cell line', 'mutation': 'BRAF'}, 'GSM1507935': {'line': '518.A2', 'type': 'Melanoma cell line', 'mutation': 'BRAF'}, 'GSM1507936': {'line': 'mel99.08', 'type': 'Melanoma cell line', 'mutation': 'NRAS'}, 'GSM1507937': {'line': 'mel1.12', 'type': 'Melanoma cell line', 'mutation': 'NRAS'}, 'GSM1507930': {'line': 'mel888', 'type': 'Melanoma cell line', 'mutation': 'BRAF'}, 'GSM1507931': {'line': 'D10', 'type': 'Melanoma cell line', 'mutation': 'BRAF'}, 'GSM1507932': {'line': 'mel0.08', 'type': 'Melanoma cell line', 'mutation': 'BRAF'}, 'GSM1507933': {'line': 'A875', 'type': 'Melanoma cell line', 'mutation': 'BRAF'}, 'GSM1507938': {'line': 'M016X1', 'type': 'Melanoma cell line', 'mutation': 'NRAS'}, 'GSM1507939': {'line': 'MZ2-mel', 'type': 'Melanoma cell line', 'mutation': 'NRAS'}, 'GSM2283978': {'tissue': 'Human Aortic Endothelial Cells (HAEC)', 'day': 'none'}, 'GSM2283979': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day 0', 'matrix': 'Matrigel'}, 'GSM2283972': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells by differentiation on Laminin411-E8-coated dish', 'day': 'day7'}, 'GSM2283973': {'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'day': 'none'}, 'GSM2283970': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells by differentiation on Laminin411-E8-coated dish', 'day': 'day7'}, 'GSM2283971': {'tissue': 'embryonic stem cell-derived endothelial progenitor cells by differentiation on Laminin411-E8-coated dish', 'day': 'day7'}, 'GSM2283976': {'tissue': 'Human Aortic Endothelial Cells (HAEC)', 'day': 'none'}, 'GSM2283977': {'tissue': 'Human Aortic Endothelial Cells (HAEC)', 'day': 'none'}, 'GSM2283974': {'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'day': 'none'}, 'GSM2283975': {'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'day': 'none'}, 'GSM1689729': {'line': 'HEK293 embryonic kidney cell line', 'transfection': 'miR-603 negative control'}, 'GSM2307116': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM889424': {'line': 'LA1-55n', 'genes': 'DNMT3B7-GFP'}, 'GSM889423': {'line': 'LA1-55n', 'genes': 'DNMT3B7-GFP'}, 'GSM889422': {'line': 'LA1-55n', 'genes': 'GFP'}, 'GSM889421': {'type': 'Ls174T human colon cancer cells', 'suppression': 'off'}, 'GSM889420': {'type': 'Ls174T human colon cancer cells', 'suppression': 'off'}, 'GSM2307112': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM1704854': {'origin': 'cord blood', 'type': 'CD34+ iPSC', 'description': 'iPSC'}, 'GSM1963920': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM2307110': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM1704856': {'origin': 'fibroblast', 'type': 'mesoderm differentiated cells', 'description': 'Mesodermal differentiated iPSC'}, 'GSM1704857': {'origin': 'CD34+', 'type': 'mesoderm differentiated cells', 'description': 'Mesodermal differentiated iPSC'}, 'GSM1704850': {'origin': 'CD34+', 'type': 'CD34+ iPSC', 'description': 'iPSC'}, 'GSM1704851': {'origin': 'CD34+', 'type': 'CD34+ iPSC', 'description': 'iPSC'}, 'GSM1704852': {'origin': 'embryo', 'type': 'embryo', 'description': 'iPSC'}, 'GSM2305948': {'tissue': 'colon'}, 'GSM2305946': {'tissue': 'colon'}, 'GSM2305947': {'tissue': 'colon'}, 'GSM2305944': {'tissue': 'colon'}, 'GSM2305945': {'tissue': 'colon'}, 'GSM2305942': {'tissue': 'colon'}, 'GSM2305943': {'tissue': 'colon'}, 'GSM2305940': {'tissue': 'colon'}, 'GSM2305941': {'tissue': 'colon'}, 'GSM1376811': {'status': 'W5C5 negative', 'type': 'Endometrial Stromal Cell'}, 'GSM1376810': {'status': 'W5C5 positive', 'type': 'Endometrial Stromal Cell'}, 'GSM1827517': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '3.61943874058864', 'quality': '2'}, 'GSM2306244': {'subtype': 'ribo-depleted total RNA', 'concentration': 'n/a', 'type': 'HeLa cells', 'compound': 'none (DMSO)'}, 'GSM1827515': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '3.62217659137577', 'quality': '1'}, 'GSM1827514': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '3.01437371663244', 'quality': '1'}, 'GSM1827513': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '2.18754277891855', 'quality': '1'}, 'GSM1827512': {'cinsarc': 'C1', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '4.08213552361396', 'quality': '3'}, 'GSM1827511': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'Yes', 'microarray': '--', 'time': '0', 'quality': '2'}, 'GSM2306245': {'subtype': 'ribo-depleted total RNA', 'concentration': 'n/a', 'type': 'HeLa cells', 'compound': 'none (DMSO)'}, 'GSM2306246': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HeLa cells', 'compound': 'I-BET762'}, 'GSM1827519': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '2.11635865845311', 'quality': '3'}, 'GSM1827518': {'cinsarc': 'C1', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '2.36002737850787', 'quality': '4'}, 'GSM2306247': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HeLa cells', 'compound': 'I-BET762'}, 'GSM2416891': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM2416890': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM2416893': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM2416892': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM1980324': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2416894': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM1980326': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2416896': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM1980328': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980329': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2306248': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HeLa cells', 'compound': 'I-BET762'}, 'GSM2306249': {'subtype': 'ribo-depleted total RNA', 'concentration': '1 uM', 'type': 'HUVEC cells', 'compound': 'AX15836'}, 'GSM1969378': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM1969379': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Upper limb'}, 'GSM1969372': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM1969373': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969370': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM1969371': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM1969376': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Trunk wall'}, 'GSM1969377': {'metastasis': 'No', 'fusion': 'No', 'type': 'Low grade fibromyxoid sarcoma', 'localization': 'Trunk wall'}, 'GSM1969374': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM1969375': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Pleomorphic rhabdomyosarcoma', 'localization': 'Lower limb'}, 'GSM2392586': {'treatment': 'Vehicle', 'genotype': 'Y537S'}, 'GSM602564': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T1N0M0'}, 'GSM602567': {'tissue': 'kidney normal'}, 'GSM602566': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T1N0M0'}, 'GSM2392582': {'treatment': 'Vehicle', 'genotype': 'Wild type'}, 'GSM602560': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T2N0M0'}, 'GSM602563': {'tissue': 'kidney normal'}, 'GSM602562': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T2N0M0'}, 'GSM602569': {'tissue': 'kidney normal'}, 'GSM602568': {'pathology': 'renal clear cell', 'tissue': 'kidney cancer', 'stage': 'T2N0M0'}, 'GSM2392588': {'treatment': 'Vehicle', 'genotype': 'Y537S'}, 'GSM2392589': {'treatment': 'Vehicle', 'genotype': 'Y537S'}, 'GSM1323750': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '29.3', 'reads': '121,983,482', 'tissue': 'prostate', 'u': '2.8', 'mapped': '58.8%', 'id': 'VA-PC-97-46', 'bcr': '1'}, 'GSM1323751': {'tgleason': '8', 'race': 'B', 'score': '448', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '11.16', 'reads': '127,724,002', 'tissue': 'prostate', 'u': '2.2', 'mapped': '66.9%', 'id': 'VA-PC-98-53', 'bcr': '1'}, 'GSM1323752': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT3A', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.96', 'reads': '119,105,608', 'tissue': 'prostate', 'u': '39.9', 'mapped': '81.4%', 'id': 'VA-PC-99-85', 'bcr': '1'}, 'GSM2616541': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2723876': {'source': '786-O (ATCC CRL1932)', 'treatment': 'non-targeting control'}, 'GSM2723877': {'source': '786-O (ATCC CRL1932)', 'treatment': 'HIF2A siRNA'}, 'GSM2723874': {'source': '786-O (ATCC CRL1932)', 'treatment': 'empty vector'}, 'GSM2723875': {'source': '786-O (ATCC CRL1932)', 'treatment': 'wildtype VHL restoration'}, 'GSM2738549': {'genotype': 'wild type'}, 'GSM859989': {'line': '293T', 'antibody': 'hnRNPU', 'manufacturer': 'Bethyl Laboratories'}, 'GSM859988': {'line': '293T', 'antibody': 'hnRNPM', 'manufacturer': 'Aviva Systems Biology'}, 'GSM859985': {'line': '293T', 'antibody': 'hnRNPF', 'manufacturer': 'Santa Cruz'}, 'GSM859984': {'line': '293T', 'antibody': 'hnRNPF', 'manufacturer': 'Santa Cruz'}, 'GSM859987': {'line': '293T', 'antibody': 'hnRNPM', 'manufacturer': 'Aviva Systems Biology'}, 'GSM859986': {'line': '293T', 'antibody': 'hnRNPF', 'manufacturer': 'Santa Cruz'}, 'GSM859981': {'line': '293T', 'antibody': 'hnRNPA1', 'clone': '4B10', 'manufacturer': 'Novus Biologicals'}, 'GSM859980': {'line': '293T', 'antibody': 'hnRNPA1', 'clone': '4B10', 'manufacturer': 'Novus Biologicals'}, 'GSM859983': {'line': '293T', 'antibody': 'hnRNPF', 'manufacturer': 'Santa Cruz'}, 'GSM859982': {'line': '293T', 'antibody': 'hnRNPA2B1', 'manufacturer': 'Santa Cruz'}, 'GSM1435815': {'type': 'Monocyte-derived denditric cells'}, 'GSM1533858': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533859': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM987850': {'donor': 'pancreatic cancer patient 20', 'state': 'pancreatic cancer', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM1533852': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533853': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533854': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533855': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533856': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533857': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM3123416': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM2138319': {'with': 'DMSO (control)', 'passages': '4', 'type': 'Human umbilical cord blood MNCs-derived ECFCs', 'id': 'ECFC clone28 cord5 p4'}, 'GSM2138318': {'with': 'DMSO (control)', 'passages': '3', 'type': 'Human umbilical cord blood MNCs-derived ECFCs', 'id': 'ECFC clone28 cord5 p3'}, 'GSM1435817': {'type': 'Monocyte-derived denditric cells'}, 'GSM2139042': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'NUSAP1 overexpression'}, 'GSM2139043': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'EGFP overexpression'}, 'GSM2139040': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'NUSAP1 overexpression'}, 'GSM2139041': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'NUSAP1 overexpression'}, 'GSM2139046': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'scramble knockdown 72 hrs'}, 'GSM2139047': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'scramble knockdown 72 hrs'}, 'GSM2139044': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'EGFP overexpression'}, 'GSM2139045': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'EGFP overexpression'}, 'GSM2139048': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'scramble knockdown 72 hrs'}, 'GSM2139049': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'with shRNA NUSAP #1 knockdown 72 hrs'}, 'GSM1435816': {'type': 'Monocyte-derived denditric cells'}, 'GSM1957249': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM1639683': {'type': 'DPSC', 'genotype': 'Duplication 15q (Isodicentric)', 'number': '4'}, 'GSM2113316': {'score': '3.9', 'type': 'Degradation: RIN3.9', 'histology': 'UHR tumor*'}, 'GSM2113317': {'score': '4.9', 'type': 'Degradation: RIN4.9', 'histology': 'UHR tumor*'}, 'GSM2113314': {'score': '5', 'type': 'Degradation: RIN5', 'histology': 'Chronic Myelogenous Leukemia'}, 'GSM2113315': {'score': '7', 'type': 'Degradation: RIN7', 'histology': 'Chronic Myelogenous Leukemia'}, 'GSM2113312': {'score': '9.3', 'type': 'Accuracy sample', 'histology': 'Invasive grade 3 adenocarcinoma'}, 'GSM2113313': {'score': '3', 'type': 'Degradation: RIN3', 'histology': 'Chronic Myelogenous Leukemia'}, 'GSM2113310': {'score': '8.3', 'type': 'Accuracy sample', 'histology': 'Normal tissue'}, 'GSM2113311': {'score': '6.4', 'type': 'Accuracy sample', 'histology': 'Adenocarcinoma'}, 'GSM2113318': {'score': '5.9', 'type': 'Degradation: RIN5.9', 'histology': 'UHR tumor*'}, 'GSM2113319': {'score': '7.6', 'type': 'Degradation: RIN7.6', 'histology': 'UHR tumor*'}, 'GSM3332057': {'subtype': 'nascent RNA', 'type': 'Human umbilical vein endothelial cell (HUVEC)', 'variation': 'empty transgene cassette under CMV promoter (AdCMV)'}, 'GSM1435813': {'type': 'Monocyte-derived denditric cells'}, 'GSM3332059': {'subtype': 'nascent RNA', 'type': 'Human umbilical vein endothelial cell (HUVEC)', 'variation': 'constitutively active forms of HIF2a (AdHIF2a)'}, 'GSM3332058': {'subtype': 'nascent RNA', 'type': 'Human umbilical vein endothelial cell (HUVEC)', 'variation': 'constitutively active forms of HIF1a (AdHIF1a)'}, 'GSM2616399': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM3123411': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM2692391': {'donor': 'YF661', 'type': 'sorted CD45RA+ CCR7+ CD8 T cells', 'day': 'Day 14 post YFV-17D'}, 'GSM2692393': {'donor': 'YFMCB', 'type': 'sorted CD45RA+ CCR7+ CD8 T cells', 'day': 'Day 1346 post YFV-17D'}, 'GSM2806559': {'line': 'A549', 'replicate': '1', 'treatment': '1 hr'}, 'GSM1980319': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2092572': {'repertoire': 'TCR-beta', 'individual': 'patient 14 (glioblastoma)', 'tissue': 'brain'}, 'GSM2081380': {'line': 'OCILY10 Diffuse large B-cell lymphomaÂ\\xa0(DLBCL) cell line', 'protocol': 'a dual inhibitor against G9a and DNMTs'}, 'GSM1980318': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2050871': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050870': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM1091923': {'line': 'ATCC-HeLa', 'expression': 'EGFR shRNA-E1', 'condition': 'Normoxia'}, 'GSM2050872': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM1091922': {'line': 'ATCC-HeLa', 'expression': 'Scrambled Control', 'condition': 'Normoxia'}, 'GSM1980317': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1957355': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957354': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957357': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957356': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957351': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957350': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957353': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957352': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957359': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957358': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1980310': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1406318': {'type': 'Primary Monocytes(BC8)'}, 'GSM1406319': {'type': 'Macrophages(BC8)'}, 'GSM1406314': {'type': 'Macrophages(BC8)'}, 'GSM1406315': {'type': 'Macrophages(BC8)'}, 'GSM1406316': {'type': 'Macrophages(BC8)'}, 'GSM1406317': {'type': 'Macrophages(BC8)'}, 'GSM1406310': {'type': 'Macrophages(BC8)'}, 'GSM1406311': {'type': 'Macrophages(BC8)'}, 'GSM1406312': {'type': 'Macrophages(BC8)'}, 'GSM1406313': {'type': 'Macrophages(BC8)'}, 'GSM2476158': {'passages': '3-5', 'line': 'Anaplastic thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2476159': {'passages': '3-5', 'line': 'Anaplastic thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM1540487': {'state': 'Lyme disease', 'individual': 'patient 01-20', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM2476152': {'passages': '3-5', 'line': 'Anaplastic thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2476153': {'passages': '3-5', 'line': 'Anaplastic thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2476156': {'passages': '3-5', 'line': 'Anaplastic thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2476157': {'passages': '3-5', 'line': 'Anaplastic thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2476154': {'passages': '3-5', 'line': 'Anaplastic thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM2476155': {'passages': '3-5', 'line': 'Anaplastic thyroid cancer cell line', 'tissue': 'thyroid'}, 'GSM1090498': {'dnebna1': 'yes', 'line': 'Sav S1-1', 'barts': 'yes', 'treatment': 'Doxycycline'}, 'GSM1090499': {'dnebna1': 'no', 'line': 'Sav S1-1', 'barts': 'yes', 'treatment': 'Ethanol (vehicle)'}, 'GSM1090497': {'dnebna1': 'no', 'line': 'Sav S1-1', 'barts': 'no', 'treatment': 'Ethanol (vehicle)'}, 'GSM2464328': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464329': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464326': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464327': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464324': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464325': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464322': {'cell': '293FT', 'treatment': 'ZIKV'}, 'GSM2464323': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464320': {'cell': 'BJ', 'treatment': 'ZIKV'}, 'GSM2464321': {'cell': '293FT', 'treatment': 'none'}, 'GSM2357109': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '12h'}, 'GSM2357108': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '12h'}, 'GSM1624675': {'tumor': 'PDX', 'material': 'Fresh Frozen', 'treatment': 'post-treatment Vemurafenib'}, 'GSM2357104': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '06h'}, 'GSM2357107': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2357106': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2357101': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '03h'}, 'GSM2357100': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '03h'}, 'GSM1624673': {'tumor': 'Patient material', 'material': 'FFPE', 'treatment': 'post-treatment Vemurafenib'}, 'GSM1624672': {'tumor': 'PDX', 'material': 'Fresh Frozen', 'treatment': 'pre-treatment'}, 'GSM1576417': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human T cells', 'time': '3 d'}, 'GSM1576416': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human T cells', 'time': '1 d'}, 'GSM1576415': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human T cells', 'time': '0 d'}, 'GSM1576414': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human PBMC', 'time': '7 d'}, 'GSM1576413': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human PBMC', 'time': '3 d'}, 'GSM1576412': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human PBMC', 'time': '1 d'}, 'GSM2840638': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840639': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840636': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840637': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840634': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840635': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840632': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840633': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840630': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1576418': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human T cells', 'time': '7 d'}, 'GSM1946274': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19225', 'for': '30min'}, 'GSM1946275': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19225', 'for': '60min'}, 'GSM1946276': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19238', 'for': '30min'}, 'GSM1946277': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19238', 'for': '60min'}, 'GSM1946270': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19223', 'for': '30min'}, 'GSM1946271': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19223', 'for': '60min'}, 'GSM1946272': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19223', 'for': '60min'}, 'GSM1946273': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19223', 'for': '60min'}, 'GSM1946278': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19239', 'for': '30min'}, 'GSM1946279': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19239', 'for': '60min'}, 'GSM2362563': {'line': 'HEK293'}, 'GSM2362562': {'line': 'HEK293'}, 'GSM2362561': {'line': 'HEK293'}, 'GSM2362560': {'line': 'HEK293'}, 'GSM2362567': {'line': 'HEK293'}, 'GSM2362566': {'line': 'HEK293'}, 'GSM2362565': {'line': 'HEK293'}, 'GSM2362564': {'line': 'HEK293'}, 'GSM1956002': {'a': '60283', 'cd38': '67', 'cd49f': '582', 'w': '66035', 'h': '59828', 'lin': '430', 'cd34': '9957', 'cd90': '7874', 'cd7': '75', 'cd10': '836', 'time': '6479', 'cd135': '2230', 'cd45ra': '200'}, 'GSM1956003': {'a': '59692', 'cd38': '616', 'cd49f': '1523', 'w': '68382', 'h': '57208', 'lin': '896', 'cd34': '5163', 'cd90': '1285', 'cd7': '14', 'cd10': '1075', 'time': '6266', 'cd135': '4961', 'cd45ra': '197'}, 'GSM2362569': {'line': 'HEK293'}, 'GSM2362568': {'line': 'HEK293'}, 'GSM1956006': {'a': '61955', 'cd38': '457', 'cd49f': '1548', 'w': '71129', 'h': '57084', 'lin': '263', 'cd34': '8233', 'cd90': '-553', 'cd7': '537', 'cd10': '738', 'time': '5636', 'cd135': '15734', 'cd45ra': '5423'}, 'GSM1956007': {'a': '59841', 'cd38': '467', 'cd49f': '2824', 'w': '75504', 'h': '51941', 'lin': '-645', 'cd34': '6935', 'cd90': '2858', 'cd7': '-124', 'cd10': '1046', 'time': '5430', 'cd135': '5912', 'cd45ra': '479'}, 'GSM1956004': {'a': '63089', 'cd38': '-110', 'cd49f': '582', 'w': '68067', 'h': '60743', 'lin': '566', 'cd34': '12923', 'cd90': '2096', 'cd7': '423', 'cd10': '624', 'time': '6048', 'cd135': '2897', 'cd45ra': '276'}, 'GSM1956005': {'a': '63488', 'cd38': '1105', 'cd49f': '850', 'w': '68722', 'h': '60544', 'lin': '582', 'cd34': '6642', 'cd90': '3110', 'cd7': '-215', 'cd10': '1330', 'time': '5838', 'cd135': '3563', 'cd45ra': '325'}, 'GSM2287609': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2385622': {'line': '464T', 'type': 'glioblastoma stem cell'}, 'GSM3586665': {'origin': 'ABC', 'pfstt': '772', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '855', 'cycles': '6', 'oscs': '0'}, 'GSM1113373': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T12', 'point': 'Day 6 post-vaccine'}, 'GSM3586664': {'origin': 'ABC', 'pfstt': '859', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '862', 'cycles': '6', 'oscs': '0'}, 'GSM2626919': {'origin': 'pancreas', 'patient_id': '5', 'type': 'liver metastasis', 'tumor_id': '5'}, 'GSM2626918': {'origin': 'pancreas', 'patient_id': '75', 'type': 'liver metastasis', 'tumor_id': '49'}, 'GSM2626915': {'origin': 'pancreas', 'patient_id': '71', 'type': 'liver metastasis', 'tumor_id': '45'}, 'GSM2626914': {'origin': 'pancreas', 'patient_id': '4', 'type': 'liver metastasis', 'tumor_id': '4'}, 'GSM2626917': {'origin': 'pancreas', 'patient_id': '74', 'type': 'liver metastasis', 'tumor_id': '48'}, 'GSM2626916': {'origin': 'pancreas', 'patient_id': '73', 'type': 'liver metastasis', 'tumor_id': '47'}, 'GSM2626911': {'origin': 'pancreas', 'patient_id': '148', 'type': 'liver metastasis', 'tumor_id': '122'}, 'GSM2626910': {'origin': 'pancreas', 'patient_id': '134', 'type': 'liver metastasis', 'tumor_id': '108'}, 'GSM2626913': {'origin': 'pancreas', 'patient_id': '157', 'type': 'liver metastasis', 'tumor_id': '131'}, 'GSM2626912': {'origin': 'pancreas', 'patient_id': '149', 'type': 'liver metastasis', 'tumor_id': '123'}, 'GSM3508656': {'group': 'GFD', 'age': '36', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508657': {'group': 'GFD', 'age': '36', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM3508654': {'group': 'Active', 'age': '36', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508655': {'group': 'Active', 'age': '36', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK-'}, 'GSM1953980': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM1953981': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM1953982': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM1953983': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM3508658': {'group': 'Control', 'age': '12', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM3508659': {'group': 'Active', 'age': '7', 'number': '100', 'Sex': 'F', 'compartment': 'Duodenum', 'type': 'VD1_NK+'}, 'GSM857477': {'status': 'KRAS mutant ©', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM2562542': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM857475': {'status': 'KRAS wildtype', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857474': {'status': 'KRAS wildtype', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM1892695': {'tissue': 'FFPE'}, 'GSM2562547': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1668813': {'line': 'HEK293T', 'with': 'TALE-activator targeting IL1RN'}, 'GSM2562546': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2325841': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325840': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325843': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325842': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325845': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325844': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325847': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325846': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325849': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325848': {'type': 'Differentiated embryonic stem cell'}, 'GSM2562544': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM1668814': {'line': 'HEK293T', 'with': 'TALE-activator targeting HBG1'}, 'GSM1668817': {'line': 'HEK293T', 'with': 'TALE-activator targeting HBG1'}, 'GSM1892693': {'tissue': 'FFPE'}, 'GSM2816086': {'line': 'H9'}, 'GSM2816087': {'line': 'H9'}, 'GSM2816084': {'line': 'H9'}, 'GSM2816085': {'line': 'H9'}, 'GSM2053469': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '64', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#20'}, 'GSM2053468': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '43', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#19'}, 'GSM2053467': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '61', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#18'}, 'GSM2053466': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '60', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#17'}, 'GSM2053465': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '43', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#16'}, 'GSM2053464': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '47', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#15'}, 'GSM2053463': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '51', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#14'}, 'GSM2053462': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '52', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#13'}, 'GSM2053461': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '49', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#12'}, 'GSM2053460': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '53', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#11'}, 'GSM2816080': {'line': 'H9'}, 'GSM2816081': {'line': 'H9'}, 'GSM1481533': {'tissue': 'blood', 'type': 'peripheral blood mono-nuclear cells', 'genotype': 'KLF1: W30X/R319fsX34'}, 'GSM2816088': {'line': 'H9'}, 'GSM2816089': {'line': 'H9'}, 'GSM3099446': {'stimulation': '1 μM JAK1 inhibitor in DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099447': {'stimulation': '1 μM JAK1 inhibitor in DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099444': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml + DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099445': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml + DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099442': {'stimulation': 'DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099443': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml + DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099440': {'stimulation': 'DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099441': {'stimulation': 'DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099448': {'stimulation': '1 μM JAK1 inhibitor in DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3099449': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml + 1 μM JAK1 inhibitor in DMSO', 'type': 'Bronchial epithelial cells'}, 'GSM3019890': {'marker': 'CD19+ CD11chi CD27- IgD-', 'type': 'CD19+ CD11chi CD27- IgD- B cells', 'collection': 'SLE-3', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM2564970': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2564971': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM1233282': {'challenge': 'Pre', 'tissue': 'whole blood'}, 'GSM3189469': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.642959', 'percentaligned': '0.959037456', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.645415'}, 'GSM1233284': {'challenge': 'Pre', 'tissue': 'whole blood'}, 'GSM1233285': {'challenge': 'Post', 'tissue': 'whole blood'}, 'GSM2564976': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM2564977': {'construction': 'PLATE-Seq', 'drug': 'Albendazole (Albenza)'}, 'GSM1233288': {'challenge': 'Pre', 'tissue': 'whole blood'}, 'GSM1233289': {'challenge': 'Post', 'tissue': 'whole blood'}, 'GSM3189460': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.66656', 'percentaligned': '0.962322191', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.776873', 'original': 'Case'}, 'GSM3189461': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'EV-D68', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.190902', 'percentaligned': '0.713928898', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.535199', 'original': 'Case'}, 'GSM3189466': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.930602', 'percentaligned': '0.935235747', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.260327'}, 'GSM3189467': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.680752', 'percentaligned': '0.950180183', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.342595'}, 'GSM3189464': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'percentage': '33', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'Yes', 'b': 'No', 'mediancvcoverage': '0.572921', 'percentaligned': '0.950230301', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.387631'}, 'GSM3189465': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'EV-D68', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'percentage': '52', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.580055', 'percentaligned': '0.954780835', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.310386', 'original': 'Case'}, 'GSM867278': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Untreated'}, 'GSM867279': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours'}, 'GSM2123953': {}, 'GSM2061681': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2195041': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2123951': {}, 'GSM2293609': {'line': 'RPE1', 'replicate': '1', 'drug': 'nutlin-3'}, 'GSM2293608': {'line': 'RPE1', 'replicate': '3', 'drug': 'dmso'}, 'GSM2123950': {}, 'GSM2293601': {'replicate': 'B', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '3'}, 'GSM2293600': {'replicate': 'A', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '3'}, 'GSM2293603': {'replicate': 'A', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '3'}, 'GSM2293602': {'replicate': 'C', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '3'}, 'GSM2293605': {'replicate': 'C', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '3'}, 'GSM2293604': {'replicate': 'B', 'line': 'RPE1', 'ploidy': '4n', 'isolate': '3'}, 'GSM2293607': {'line': 'RPE1', 'replicate': '2', 'drug': 'dmso'}, 'GSM2293606': {'line': 'RPE1', 'replicate': '1', 'drug': 'dmso'}, 'GSM2632374': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632375': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632376': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632377': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632370': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2195046': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2632372': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632373': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM1425779': {'grade': 'Sarcomatoid', 'pretreatment': 'None', 'type': 'S', 'Stage': 'IV'}, 'GSM2195047': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2632378': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632379': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM1425778': {'grade': 'Epithelioid', 'pretreatment': 'None', 'type': 'E', 'Stage': 'III'}, 'GSM1599120': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM1599121': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM1599122': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM1599123': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1599124': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1599125': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1599126': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM1599127': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM1599128': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM1599129': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM2226740': {'treatment': \"3'-seq, Alpha-amanitin,\"}, 'GSM2226741': {'treatment': \"3'-seq, Alpha-amanitin,\"}, 'GSM2226742': {'treatment': \"3'-seq, Alpha-amanitin,\"}, 'GSM2226743': {'treatment': \"3'-seq, TEX,\"}, 'GSM2226744': {'treatment': \"3'-seq, TEX,\"}, 'GSM2226745': {'treatment': \"3'-seq, TEX,\"}, 'GSM1553089': {'type': 'BJ fibroblasts', 'doublings': '34'}, 'GSM1553088': {'type': 'BJ fibroblasts', 'doublings': '34'}, 'GSM2157945': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM1185610': {'tissue': 'umbilical cord blood', 'type': 'CD34+CD45RA-', 'stage': 'peri-natal'}, 'GSM1553083': {'type': 'MRC-5 fibroblasts', 'doublings': '32'}, 'GSM2226747': {'treatment': \"3'-seq, alpha-amanitin +TEX,\"}, 'GSM1553085': {'type': 'MRC-5 fibroblasts', 'doublings': '72'}, 'GSM1553084': {'type': 'MRC-5 fibroblasts', 'doublings': '32'}, 'GSM1553087': {'type': 'MRC-5 fibroblasts', 'doublings': '72'}, 'GSM1553086': {'type': 'MRC-5 fibroblasts', 'doublings': '72'}, 'GSM1234215': {'replicate': '2', 'line': '2630', 'antibody': 'SA1'}, 'GSM2059920': {'donor': '5', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059921': {'donor': '5', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059922': {'donor': '3a', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059923': {'donor': '3a', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059924': {'donor': '3b', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059925': {'donor': '3b', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059926': {'donor': '5', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059927': {'donor': '5', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059928': {'donor': '4', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059929': {'donor': '4', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2635685': {'antibody': 'Input Control', 'genotype': 'YAP-, Piggy', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2635684': {'antibody': 'Input Control', 'genotype': 'YAP-, Piggy', 'treatment_time': '15h', 'treatment': 'Activin A, Doxycycline'}, 'GSM2635687': {'antibody': 'Ser7P', 'genotype': 'WT', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2635686': {'antibody': 'Input Control', 'genotype': 'YAP-', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635681': {'antibody': 'Input Control', 'genotype': 'WT', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635680': {'antibody': 'Input Control', 'genotype': 'WT', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2635683': {'antibody': 'Input Control', 'genotype': 'YAP-', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2635682': {'antibody': 'Input Control', 'genotype': 'WT', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2392062': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM2635689': {'antibody': 'Ser7P', 'genotype': 'YAP-, Piggy', 'treatment_time': '15h', 'treatment': 'Activin A, Doxycycline'}, 'GSM2635688': {'antibody': 'Ser7P', 'genotype': 'YAP-', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2243605': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2212048': {'line': 'Kasumi-1 cells', 'treatment': '250 nM JQ1, 15 min'}, 'GSM1234210': {'replicate': '2', 'line': '2630', 'antibody': 'H3K4me3'}, 'GSM2440300': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'LBH589 (10nM) for 28 days'}, 'GSM2440301': {'subtype': 'Triple-negative breast cancer', 'line': 'MDA-MB-231', 'treatment': 'LBH589 (10nM) for 28 days'}, 'GSM1464329': {'status': 'small cell lung cancer'}, 'GSM1464328': {'status': 'small cell lung cancer'}, 'GSM2348558': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348559': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348556': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348557': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464323': {'status': 'small cell lung cancer'}, 'GSM2348555': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464325': {'status': 'small cell lung cancer'}, 'GSM1464324': {'status': 'small cell lung cancer'}, 'GSM1464327': {'status': 'small cell lung cancer'}, 'GSM2348551': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1556309': {'gender': 'female', 'id': 'GM01835 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556308': {'gender': 'male', 'id': 'GM01792 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556305': {'gender': 'female', 'id': 'AG09429 (Coriell)', 'diagnosis': 'Control'}, 'GSM1556304': {'gender': 'female', 'id': 'AG09319 (Coriell)', 'diagnosis': 'Control'}, 'GSM1556307': {'gender': 'male', 'id': 'GM02038 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556306': {'gender': 'male', 'id': 'GM02038 (Coriell)', 'diagnosis': 'Schizophrenia'}, 'GSM1556301': {'gender': 'male', 'id': 'GM03440 (Coriell)', 'diagnosis': 'Control'}, 'GSM1556300': {'gender': 'male', 'id': 'BJ', 'diagnosis': 'Control'}, 'GSM1556303': {'gender': 'female', 'id': 'GM04506 (Coriell)', 'diagnosis': 'Control'}, 'GSM1556302': {'gender': 'female', 'id': 'GM03651 (Coriell)', 'diagnosis': 'Control'}, 'GSM1276867': {'score': '9.1', 'sequence': 'CTTGTA', 'targeted': 'HNRPH2', 'number': '12', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276866': {'score': '9.5', 'sequence': 'TGACCA', 'targeted': 'HNRPR', 'number': '4', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276865': {'score': '8.9', 'sequence': 'CTTGTA', 'targeted': 'HNRPR', 'number': '12', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276864': {'score': '9.5', 'sequence': 'GATCAG', 'targeted': 'HNRPR', 'number': '9', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276863': {'score': '9.3', 'sequence': 'ACTTGA', 'targeted': 'HNRPA2B1', 'number': '8', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276862': {'score': '9.4', 'sequence': 'GGCTAC', 'targeted': 'HNRPA2B1', 'number': '11', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276861': {'score': '9.3', 'sequence': 'ACTTGA', 'targeted': 'HNRPA2B1', 'number': '8', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276860': {'score': '9', 'sequence': 'TAGCTT', 'targeted': 'SRSF4', 'number': '10', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2805877': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2805876': {'genotype': 'RNF2-R', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': '1micro/ml Doxycyclin', 'type': 'H1 hESC'}, 'GSM896814': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (2-cell)', 'stage': 'early blastomere'}, 'GSM896815': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2805873': {'genotype': 'WT', 'antibody': 'H3K36me2 Upstate 07-369', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Bioruptor', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM896813': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (2-cell)', 'stage': 'early blastomere'}, 'GSM896810': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (2-cell)', 'stage': 'early blastomere'}, 'GSM896811': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (2-cell)', 'stage': 'early blastomere'}, 'GSM2111058': {'status': 'Activated', 'type': 'Naive', 'id': 'Donator 4', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM3100468': {'treatment': 'Combination imatinib and JQ1 24 hours'}, 'GSM1721042': {'with': '1 µg/ml Tet and 20 ng/ml EGF for 60hrs', 'line': 'N/TERT-2G', 'type': 'keratinocyte', 'variation': 'Tet-inducible AREG shRNA'}, 'GSM1721043': {'with': '1 µg/ml Tet and 20 ng/ml EGF for 60hrs', 'line': 'N/TERT-2G', 'type': 'keratinocyte', 'variation': 'Tet-inducible AREG shRNA'}, 'GSM1721040': {'with': '1 µg/ml Tet for 60hrs', 'line': 'N/TERT-2G', 'type': 'keratinocyte', 'variation': 'Tet-inducible AREG shRNA'}, 'GSM1721041': {'with': '1 µg/ml Tet for 60hrs', 'line': 'N/TERT-2G', 'type': 'keratinocyte', 'variation': 'Tet-inducible AREG shRNA'}, 'GSM2111052': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 3', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM1261111': {'state': 'ALS', 'barcode': 'CTTGGAA', 'type': 'iPSC derived motor neuron culture'}, 'GSM2552913': {'individual': 'volunteer 10'}, 'GSM2552912': {'individual': 'volunteer 10'}, 'GSM2552911': {'individual': 'volunteer 10'}, 'GSM2552910': {'individual': 'volunteer 9'}, 'GSM2552914': {'individual': 'volunteer 10'}, 'GSM2111054': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 4', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2094790': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM proscillaridin A for 72 hours'}, 'GSM2094791': {'line': 'TPC-1', 'protocol': 'TPC-1 cell line treated with DMSO vehicle for 48 hours'}, 'GSM2094792': {'line': 'TPC-1', 'protocol': 'TPC-1 cell line treated with 50 µM lanatoside C for 48 hours'}, 'GSM2094793': {'line': 'TPC-1', 'protocol': 'TPC-1 cell line treated with DMSO vehicle for 72 hours'}, 'GSM2094794': {'line': 'TPC-1', 'protocol': 'TPC-1 cell line treated with 50 µM lanatoside C for 72 hours'}, 'GSM2533742': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM1620573': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2779008': {'time_hr': '2', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779009': {'time_hr': '3', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779004': {'time_hr': '16', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779005': {'time_hr': '1', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779006': {'time_hr': '20', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779007': {'time_hr': '24', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM2779000': {'time_hr': '6', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779001': {'time_hr': '9', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'PS'}, 'GSM2779002': {'time_hr': '1', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'ST'}, 'GSM2779003': {'time_hr': '12', 'tissue': 'Blood vessel', 'type': 'HUVEC', 'condition': 'OS'}, 'GSM1479491': {'index': '9', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '45', 'collectiondate': 'June 28 2012', 'samplename': '45_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'MS pretreatment'}, 'GSM1479490': {'index': '4', 'diagnosis': '--', 'cellcount': '329348', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '45', 'collectiondate': 'June 28 2012', 'samplename': '45_NK', 'celltype': 'NK', 'diseasestatus': 'MS pretreatment'}, 'GSM1479493': {'index': '7', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '46', 'collectiondate': 'June 29 2012', 'samplename': '46_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'MS posttreatment'}, 'GSM1479492': {'index': '22', 'diagnosis': '--', 'cellcount': '34537500', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '46', 'collectiondate': 'June 29 2012', 'samplename': '46_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'MS posttreatment'}, 'GSM1479495': {'index': '27', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '46', 'collectiondate': 'June 29 2012', 'samplename': '46_CD4T', 'celltype': 'CD4', 'diseasestatus': 'MS posttreatment'}, 'GSM1479494': {'index': '25', 'diagnosis': '--', 'cellcount': '487967', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '46', 'collectiondate': 'June 29 2012', 'samplename': '46_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'MS posttreatment'}, 'GSM1479497': {'index': '1', 'diagnosis': '--', 'cellcount': '301460', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '46', 'collectiondate': 'June 29 2012', 'samplename': '46_NK', 'celltype': 'NK', 'diseasestatus': 'MS posttreatment'}, 'GSM1479496': {'index': '11', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '46', 'collectiondate': 'June 29 2012', 'samplename': '46_CD8T', 'celltype': 'CD8', 'diseasestatus': 'MS posttreatment'}, 'GSM1479499': {'index': '1', 'diagnosis': '--', 'cellcount': '42250000', 'gender': 'F', 'age': '29', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '20', 'collectiondate': 'January 25 2012', 'samplename': '20_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Healthy Control'}, 'GSM1479498': {'index': '27', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '46', 'collectiondate': 'June 29 2012', 'samplename': '46_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'MS posttreatment'}, 'GSM2300418': {'variation': 'G870S'}, 'GSM2141333': {'individual': 'EU26', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141332': {'individual': 'EU26', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141331': {'individual': 'EU26', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141330': {'individual': 'EU24', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2218622': {'with': '+UV (Recovery time=1h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218623': {'with': '+UV (Recovery time=2h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218620': {'with': 'NO UV (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218621': {'with': '+UV (Recovery time=0.5h', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2141339': {'individual': 'EU30', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141338': {'individual': 'EU30', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2218628': {'with': '+UV (Recovery time=2h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218629': {'with': '+UV (Recovery time=48h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2420383': {'type': 'human spermatogonia'}, 'GSM2420384': {'type': 'human spermatogonia'}, 'GSM501686': {'modification': 'None', 'antibody': 'none', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM501687': {'modification': 'Tet-on TAp73alpha', 'antibody': 'BL906 against p73', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM501688': {'modification': 'Tet-on TAp73alpha', 'antibody': 'BL906 against p73', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM501689': {'modification': 'Tet-on TAp73beta', 'antibody': 'BL906 against p73', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM2287428': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287429': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1545079': {'type': 'gastric cancer tumor', 'class': 'IIIB', 'location': 'GE junction'}, 'GSM1545078': {'type': 'gastric cancer tumor', 'class': 'IIIB', 'location': 'Proximal'}, 'GSM2287420': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287421': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287422': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287423': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287424': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287425': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287426': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287427': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610860': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610861': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610862': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610863': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610864': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610865': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610866': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610867': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (3 hour with 10 mM benzene)'}, 'GSM2610868': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610869': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1980389': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2442794': {'antibody': 'myc, Santa Cruz sc-764 X', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442793': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442792': {'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442791': {'antibody': 'NA', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442790': {'antibody': 'H3K27me3, Millipore 17-622', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2183055': {'type': 'luminal', 'patient': 'BS2980', 'population': 'Trop2+ CD49f Lo'}, 'GSM1910789': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910788': {'stability': 'Non stable', 'type': 'ileum'}, 'GSM1382452': {'line': 'HEK293', 'gene': 'b-globin PTC39 reporter expressed from Flp-In locus', 'variation': 'UPF1/XRN1 depletion'}, 'GSM1382453': {'line': 'HEK293', 'gene': 'no gene inserted in Flp-In locus', 'barcode': 'a mix of 3 barcodes (AGACAGCAG, CTTCAGCAG, GATCAGCAG ) and 30 % phiX as spike in.'}, 'GSM1382450': {'line': 'HEK293', 'gene': 'b-globin PTC39 reporter expressed from Flp-In locus', 'variation': 'XRN1 depletion'}, 'GSM1382451': {'line': 'HEK293', 'gene': 'b-globin PTC39 reporter expressed from Flp-In locus', 'variation': 'SMG6/XRN1 depletion'}, 'GSM1910783': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910782': {'stability': 'Non stable', 'type': 'ileum'}, 'GSM1910781': {'stability': 'Non stable', 'type': 'ileum'}, 'GSM1910780': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910787': {'stability': 'Non stable', 'type': 'ileum'}, 'GSM1910786': {'stability': 'Non stable', 'type': 'ileum'}, 'GSM1910785': {'stability': 'Non stable', 'type': 'ileum'}, 'GSM1910784': {'stability': 'Stable', 'type': 'ileum'}, 'GSM2151567': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151566': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151565': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151564': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2310218': {'gender': 'Male', 'age': '12', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2310219': {'gender': 'Male', 'age': '12', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2151561': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151560': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2310214': {'gender': 'Female', 'age': '32', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Control'}, 'GSM2310215': {'gender': 'Female', 'age': '32', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Control'}, 'GSM2310216': {'gender': 'Female', 'age': '32', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Control'}, 'GSM2310217': {'gender': 'Female', 'age': '32', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'African American', 'subject': 'Control'}, 'GSM2310210': {'gender': 'Male', 'age': '25', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2310211': {'gender': 'Male', 'age': '25', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2310212': {'gender': 'Male', 'age': '25', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Control'}, 'GSM2151568': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2644579': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-GATA3 C-terminus (ThermoFisher, PA5-20892)'}, 'GSM2644578': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-FOXA1 (abcam, ab5089)'}, 'GSM2388489': {'line': 'HEK 293 T', 'treatment': 'Control'}, 'GSM2644573': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-GATA3 (Cell Signaling, D13C9)'}, 'GSM2644572': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-GATA3 (Cell Signaling, D13C9)'}, 'GSM2644571': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-GATA3 (Cell Signaling, D13C9)'}, 'GSM2212274': {'with': '2µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212273': {'with': '2µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212272': {'with': '2µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212271': {'with': '1µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212270': {'with': '1µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2476374': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM1513236': {'gender': 'Male', 'line': 'GM19144', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513237': {'gender': 'Female', 'line': 'GM19147', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513234': {'gender': 'Male', 'line': 'GM19141', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513235': {'gender': 'Female', 'line': 'GM19143', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513232': {'gender': 'Male', 'line': 'GM19138', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513233': {'gender': 'Female', 'line': 'GM19140', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513230': {'gender': 'Female', 'line': 'GM19131', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513231': {'gender': 'Female', 'line': 'GM19137', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513238': {'gender': 'Female', 'line': 'GM19152', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513239': {'gender': 'Male', 'line': 'GM19153', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2152030': {'line': 'K562'}, 'GSM2152031': {'line': 'K562'}, 'GSM2152032': {'line': 'K562'}, 'GSM1980288': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980287': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980286': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980285': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980284': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980283': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980282': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980281': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980280': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM3189207': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.582238', 'percentaligned': '0.958024716', 'Sex': 'M', 'nl63': 'No', 'libcounts': '18.72084', 'original': 'Case'}, 'GSM2573279': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM2045596': {'on': 'matrigel', 'line': 'MDA-MB-231', 'serum': '0%'}, 'GSM2045597': {'on': 'matrigel', 'line': 'MDA-MB-231', 'serum': '10%'}, 'GSM2045598': {'on': 'matrigel', 'line': 'MDA-MB-453', 'serum': '0%'}, 'GSM2045599': {'on': 'matrigel', 'line': 'MDA-MB-453', 'serum': '10%'}, 'GSM2679960': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2932970': {'pucai': '20', 'score': '3', 'remission': 'Yes', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '5'}, 'GSM2916067': {'line': 'HEK293', 'medium': 'Zn(II) Depleted Freestyle Medium'}, 'GSM2916066': {'line': 'HEK293', 'medium': 'Zn(II) Depleted Freestyle Medium'}, 'GSM2175778': {'line': 'MCF10A', 'type': 'Human breast cell line'}, 'GSM2175779': {'line': 'MCF10A', 'type': 'Human breast cell line'}, 'GSM2916065': {'line': 'HEK293', 'medium': 'Untreated Freestyle Medium'}, 'GSM2154869': {'status': 'Non-Amplified', 'line': 'SH-SY5Y'}, 'GSM2154868': {'status': 'Non-Amplified', 'line': 'SH-SY5Y'}, 'GSM1622595': {'tissue': 'Adipose', 'phenotype': 'Control'}, 'GSM2154861': {'line': 'BE(2)C:MYCN-ORF'}, 'GSM2154860': {'line': 'BE(2)C:MYCN-ORF'}, 'GSM2154863': {'status': 'Amplified', 'line': 'Kelly'}, 'GSM2154862': {'status': 'Amplified', 'line': 'Kelly'}, 'GSM2154865': {'status': 'Amplified', 'line': 'BE(2)C'}, 'GSM2154864': {'status': 'Amplified', 'line': 'Kelly'}, 'GSM2154867': {'status': 'Amplified', 'line': 'BE(2)C'}, 'GSM2154866': {'status': 'Amplified', 'line': 'BE(2)C'}, 'GSM1533868': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'HER2/ERBB2 overexpression'}, 'GSM2125504': {'donor': '7F3158', 'type': 'Human bronchial epithelial cells HBECs', 'source': 'Lonza', 'antibody': 'INTS12 (Sigma cat. num. HPA03577)', 'passage': '3'}, 'GSM1622599': {'tissue': 'Adipose', 'phenotype': \"Cushing's\"}, 'GSM2042065': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042064': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042067': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042066': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042061': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042060': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042063': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2350158': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350157': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350156': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350155': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350154': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350153': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2042068': {'cohort': 'Serrated Polyposis', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2350151': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350150': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2361500': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361501': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361502': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361503': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361504': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361505': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361506': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361507': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361508': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361509': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1581026': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1503699': {'molecule': 'polyA RNA', 'line': 'IVF Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1503698': {'molecule': 'polyA RNA', 'line': 'IVF Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1503691': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1503690': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1503693': {'molecule': 'polyA RNA', 'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1503692': {'molecule': 'polyA RNA', 'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1503695': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1503694': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1503697': {'molecule': 'polyA RNA', 'line': 'IVF Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM2105075': {'gender': 'Male', 'age': '2 Year old', 'batch': '2F', 'condition': 'Trisomic'}, 'GSM2172201': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172200': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172203': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2172202': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172205': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172204': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172207': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172206': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172209': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172208': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1581023': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2815753': {'line': 'H9'}, 'GSM1495277': {'line': 'tracheal basal cells', 'infection': 'infected with lenti-RFP virus'}, 'GSM1495276': {'line': 'tracheal basal cells', 'infection': 'uninfected without treatment'}, 'GSM1495275': {'line': 'tracheal basal cells', 'infection': 'uninfected without treatment'}, 'GSM1495274': {'line': 'tracheal basal cells', 'infection': 'uninfected without treatment'}, 'GSM1495273': {'feed': 'N/A', 'reagent': 'MTS-biotin', 'line': 'HEK 293T'}, 'GSM1495272': {'feed': '700 μM, 60 minutes', 'reagent': 'MTS-biotin', 'line': 'HEK 293T'}, 'GSM1495271': {'feed': '700 μM, 60 minutes', 'reagent': 'MTS-biotin', 'line': 'HEK 293T'}, 'GSM1495270': {'feed': '700 μM, 60 minutes', 'reagent': 'HPDP-biotin', 'line': 'HEK 293T'}, 'GSM1495279': {'line': 'tracheal basal cells', 'infection': 'infected with lenti-RFP virus'}, 'GSM1495278': {'line': 'tracheal basal cells', 'infection': 'infected with lenti-RFP virus'}, 'GSM1369018': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 5'}, 'GSM1369011': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 2'}, 'GSM1369010': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 18'}, 'GSM1369013': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 2'}, 'GSM1369012': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 2'}, 'GSM1369015': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 4'}, 'GSM1369014': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 4'}, 'GSM1369017': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 5'}, 'GSM1369016': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 4'}, 'GSM2152854': {'overexpresson': 'Overexpression of GFP-control vector', 'type': 'human breast adenocarcinoma cell line'}, 'GSM2152855': {'overexpresson': 'Overexpression of GFP-hCINAP', 'type': 'human breast adenocarcinoma cell line'}, 'GSM2152852': {'overexpresson': 'Overexpression of GFP-hCINAP', 'type': 'human breast adenocarcinoma cell line'}, 'GSM2152853': {'overexpresson': 'Overexpression of GFP-hCINAP', 'type': 'human breast adenocarcinoma cell line'}, 'GSM2152850': {'overexpresson': 'Overexpression of GFP-control vector', 'type': 'human breast adenocarcinoma cell line'}, 'GSM2152851': {'overexpresson': 'Overexpression of GFP-control vector', 'type': 'human breast adenocarcinoma cell line'}, 'GSM1901467': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2026948': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'O75467'}, 'GSM2026949': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q86UD4'}, 'GSM2307069': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307068': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2026944': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'A2RRD8'}, 'GSM1853605': {'line': 'HeLa', 'treatment': '20nM Rrp40 siRNA - Dharmacon'}, 'GSM2307065': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2026947': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q6U7Q0'}, 'GSM2307063': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2026941': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q14593'}, 'GSM2026942': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q96PQ6'}, 'GSM2026943': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q96PQ6'}, 'GSM2543915': {'library_id': 'lib8067', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2735953': {'tissue': 'human airway epithelium (HAE)-ALI'}, 'GSM2543917': {'library_id': 'lib8069', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543916': {'library_id': 'lib8068', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2735956': {'tissue': 'human airway epithelium (HAE)-ALI'}, 'GSM2543910': {'library_id': 'lib8060', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543913': {'library_id': 'lib8065', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.479', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543912': {'library_id': 'lib8064', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.479', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2735958': {'tissue': 'human airway epithelium (HAE)-ALI'}, 'GSM2543919': {'library_id': 'lib8071', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543918': {'library_id': 'lib8070', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1531422': {'transfection': 'siH19', 'type': 'primary human myoblast'}, 'GSM1211428': {'line': 'Hep3B', 'type': 'hepatocellular carcinoma cell line', 'strategy': 'mRNA'}, 'GSM1211429': {'line': 'Hep3B', 'type': 'hepatocellular carcinoma cell line', 'strategy': 'RNC-mRNA'}, 'GSM2535699': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1167', 'samplename': '1gr_413CD3_C55', 'seqsite': 'BRI', 'sampleID': 'S13294', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1167', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C55'}, 'GSM2664082': {'status': 'p53+/+', 'identifier': 'P4902_1021', 'type': 'polysome-associated RNA', 'method': 'Optimized non-linear gradient', 'background': 'HCT116'}, 'GSM2194561': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1501690': {'line': 'MiaPaCa', 'type': 'Pancreatic cancer', 'variation': 'MYB-silenced'}, 'GSM2139063': {'tumor': 'prostatic adenocarcinoma', 'passages': '10 to 15', 'tissue': 'prostate bone metastasis', 'variation': 'shRNA NUSAP #2 knockdown 96 hrs'}, 'GSM2451399': {'compartment': 'Bulk', 'id': 'CUMC_070', 'library': 'TruSeq'}, 'GSM2451398': {'compartment': 'Bulk', 'id': 'CUMC_071', 'library': 'TruSeq'}, 'GSM2815756': {'line': 'H9'}, 'GSM1891818': {'type': 'SCNT assisted by KDM4A derived human ES cells'}, 'GSM2250136': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM2664084': {'status': 'p53+/+', 'identifier': 'P4902_1023', 'type': 'cytosolic RNA', 'method': 'NA', 'background': 'HCT116'}, 'GSM2573281': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM1875299': {'media': 'DMEM', 'line': 'T98G', 'type': 'glioblastoma'}, 'GSM1875298': {'media': 'DMEM', 'line': 'U-87', 'type': 'glioblastoma'}, 'GSM2250138': {'type': 'Lung squamous cell carcinoma', 'Stage': 'I'}, 'GSM2153247': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2573286': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM1836111': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836110': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836113': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836112': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836115': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836114': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836117': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836116': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836119': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836118': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2586939': {'replicate': '1', 'microrna': 'miR873Mut', 'treatment': 'Con - control transcriptome'}, 'GSM1228200': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM2573287': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM1228201': {'tissue': 'primary colorectal cancer', 'stage': 'Stage IV'}, 'GSM1228202': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM2086999': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2086998': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM1228203': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM2086991': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086990': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086993': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086992': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086995': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086994': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086997': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2086996': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2573284': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM1228206': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228207': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228208': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228209': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM2573285': {'type': 'induced pluripotent stem cells-derived astrocytes', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM1234061': {'replicate': '1', 'line': '19193', 'antibody': 'CTCF'}, 'GSM1234060': {'replicate': '2', 'line': '19099', 'antibody': 'SA1'}, 'GSM1234063': {'replicate': '1', 'line': '19193', 'antibody': 'H3K27Ac'}, 'GSM1234062': {'replicate': '2', 'line': '19193', 'antibody': 'CTCF'}, 'GSM1234065': {'replicate': '1', 'line': '19193', 'antibody': 'H3K27me3'}, 'GSM1234064': {'replicate': '2', 'line': '19193', 'antibody': 'H3K27Ac'}, 'GSM1234067': {'replicate': '1', 'line': '19193', 'antibody': 'H3K36me3'}, 'GSM1234066': {'replicate': '2', 'line': '19193', 'antibody': 'H3K27me3'}, 'GSM1234069': {'replicate': '1', 'line': '19193', 'antibody': 'H3K4me1'}, 'GSM1234068': {'replicate': '2', 'line': '19193', 'antibody': 'H3K36me3'}, 'GSM3189308': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '37', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.612923', 'percentaligned': '0.942871796', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.942955', 'original': 'Control'}, 'GSM2754539': {'bin': '5', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0197', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754538': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0030', 'previousdiagnosisoftb': 'No', 'tst': '18.3', 'type': 'Tcells'}, 'GSM2754535': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0386', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754534': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0520', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754537': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0180', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754536': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '17', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0208', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754531': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0587', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754530': {'bin': '9', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0507', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754533': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0377', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754532': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0462', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1380722': {'status': 'idiopathic dilated CMP', 'gender': 'male', 'age': '68', 'failure': 'yes', 'tissue': 'heart left ventricle', 'ethnicity': 'White/Caucasian'}, 'GSM1380723': {'status': 'idiopathic dilated CMP', 'gender': 'female', 'age': '59', 'failure': 'yes', 'tissue': 'heart left ventricle', 'ethnicity': 'White/Caucasian'}, 'GSM1380720': {'status': 'non-failing', 'gender': 'male', 'age': '52', 'failure': 'no', 'tissue': 'heart left ventricle', 'ethnicity': 'White/Caucasian'}, 'GSM1380721': {'status': 'ischemic', 'gender': 'female', 'age': '41', 'failure': 'yes', 'tissue': 'heart left ventricle', 'ethnicity': 'White/Caucasian'}, 'GSM2840391': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840390': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1953861': {'line': 'SKMEL5', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM1953860': {'line': 'SKMEL2', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM2840395': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1953866': {'line': 'A375', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM2840397': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840396': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840399': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840398': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2564973': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM1848819': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 4', 'point': '3 hours after exercise'}, 'GSM2564975': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM1972434': {'infant': '23 week gestation, 2-day-old premature infant', 'tissue': 'aborted postnatal cerebral cortex', 'type': 'human neural stem/progenitor cells (hNSPC)', 'number': '17'}, 'GSM1972433': {'infant': '23 week gestation, 2-day-old premature infant', 'tissue': 'aborted postnatal cerebral cortex', 'type': 'human neural stem/progenitor cells (hNSPC)', 'number': '15'}, 'GSM1972432': {'infant': '23 week gestation, 2-day-old premature infant', 'tissue': 'aborted postnatal cerebral cortex', 'type': 'human neural stem/progenitor cells (hNSPC)', 'number': '12'}, 'GSM3190714': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.530985'}, 'GSM1848818': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 4', 'point': 'immediately after exercise'}, 'GSM1177771': {'antibody': 'S2P, Covance MMS-129R', 'type': 'U2OS Cells', 'variation': 'shCTRL'}, 'GSM1177770': {'antibody': 'POLII, Santa Cruz sc-9001x, lot # E3012', 'type': 'U2OS Cells', 'variation': 'shZMYND11'}, 'GSM1177773': {'type': 'U2OS Cells', 'variation': 'shCTRL'}, 'GSM1177772': {'antibody': 'S2P, Covance MMS-129R', 'type': 'U2OS Cells', 'variation': 'shZMYND11'}, 'GSM2585438': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585439': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585434': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585435': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585436': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585437': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585430': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585431': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585432': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585433': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM1646684': {'status': 'Tumor', 'gender': 'M', 'age': '79', 'tissue': 'liver'}, 'GSM1646685': {'status': 'Tumor', 'gender': 'M', 'age': '33', 'tissue': 'liver'}, 'GSM1646686': {'status': 'Tumor', 'gender': 'F', 'age': '57', 'tissue': 'liver'}, 'GSM1646687': {'status': 'Tumor', 'gender': 'M', 'age': '71', 'tissue': 'liver'}, 'GSM1646680': {'status': 'Adjacent Normal tissue', 'tissue': 'liver'}, 'GSM1646681': {'status': 'Adjacent Normal tissue', 'tissue': 'liver'}, 'GSM1646682': {'status': 'Adjacent Normal tissue', 'tissue': 'liver'}, 'GSM1646683': {'status': 'Adjacent Normal tissue', 'tissue': 'liver'}, 'GSM1646688': {'status': 'Tumor', 'gender': 'M', 'age': '40', 'tissue': 'liver'}, 'GSM1646689': {'status': 'Tumor', 'gender': 'M', 'age': '74', 'tissue': 'liver'}, 'GSM1900348': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '1 uM PaPE', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'PP242'}, 'GSM1900349': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '1 uM PaPE', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'PP242'}, 'GSM1900342': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '10 nM E2', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1900343': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '10 nM E2', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1900340': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '10 nM E2', 'time': '24h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1900341': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '10 nM E2', 'time': '24h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1900346': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': 'Veh', 'time': '24h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1900347': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': 'Veh', 'time': '24h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1900344': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': 'Veh', 'time': '4h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM1023059': {'type': 'fibroblast', 'number': '2'}, 'GSM3104735': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM1122323': {'target': 'MYH11', 'company': 'Diagenode', 'number': 'A1379', 'treatment': '3 days Tet free medium', 'line': 'U937CM', 'type': 'leukemic cell line'}, 'GSM3104734': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104737': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104736': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2564979': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM3104731': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104730': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104733': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104732': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2665572': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2374802': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2665570': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2665571': {'differentiation': 'Day15', 'type': 'hESC derived cIN'}, 'GSM2374807': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374806': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374805': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374804': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374809': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374808': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2409659': {'line': 'G401', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2389447': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389446': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389445': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389444': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389443': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389442': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389441': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389440': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2413428': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2389449': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389448': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2739431': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739430': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739433': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739432': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739435': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739434': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739437': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739436': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2932978': {'pucai': '40', 'score': '0', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '13'}, 'GSM1503922': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Unfav1', 'reporter': 'N/A'}, 'GSM2243509': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243508': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243507': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243506': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243505': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243504': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243503': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243502': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243501': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243500': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2190612': {'subtype': 'total RNA, rRNA depleated', 'line': 'HEK293', 'variation': 'producing mut DIS3L2'}, 'GSM2190613': {'subtype': 'total RNA, rRNA depleated', 'line': 'HEK293', 'variation': 'producing WT DIS3L2'}, 'GSM2190610': {'subtype': 'total RNA, rRNA depleated', 'line': 'HEK293', 'variation': 'producing mut DIS3L2'}, 'GSM2190611': {'subtype': 'total RNA, rRNA depleated', 'line': 'HEK293', 'variation': 'producing mut DIS3L2'}, 'GSM2190616': {'subtype': 'total RNA, after library preparation size selected for RNAs 20-200 nt', 'line': 'HEK293', 'variation': 'producing mut DIS3L2'}, 'GSM2190617': {'subtype': 'total RNA, after library preparation size selected for RNAs 20-200 nt', 'line': 'HEK293', 'variation': 'producing mut DIS3L2'}, 'GSM2190614': {'subtype': 'total RNA, rRNA depleated', 'line': 'HEK293', 'variation': 'producing WT DIS3L2'}, 'GSM2190615': {'subtype': 'total RNA, rRNA depleated', 'line': 'HEK293', 'variation': 'producing WT DIS3L2'}, 'GSM2190618': {'subtype': 'total RNA, after library preparation size selected for RNAs 20-200 nt', 'line': 'HEK293', 'variation': 'producing mut DIS3L2'}, 'GSM2190619': {'subtype': 'total RNA, after library preparation size selected for RNAs 20-200 nt', 'line': 'HEK293', 'variation': 'producing WT DIS3L2'}, 'GSM2047323': {'well': 'A01', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2290628': {'type': 'Hepatic Progenitor'}, 'GSM2290629': {'type': 'Hepatic Progenitor'}, 'GSM3161891': {'stimulation': 'stimulated', 'line': 'MyCell1187', 'type': 'ventricle myocyte', 'pathology': 'abnormal', 'Sex': 'male'}, 'GSM3161890': {'stimulation': 'stimulated', 'line': 'MyCell1320', 'type': 'ventricle myocyte', 'pathology': 'abnormal', 'Sex': 'female'}, 'GSM3161893': {'stimulation': 'stimulated', 'line': 'MyCell1187', 'type': 'ventricle myocyte', 'pathology': 'abnormal', 'Sex': 'male'}, 'GSM3161892': {'stimulation': 'stimulated', 'line': 'MyCell1187', 'type': 'ventricle myocyte', 'pathology': 'abnormal', 'Sex': 'male'}, 'GSM3096660': {'donor': 'F', 'tissue': 'Blood', 'type': 'CD8+ T cell IL-7R{alpha}hiKLRG1lo'}, 'GSM2837009': {'line': 'MGC-803', 'type': 'gastric cancer cell line', 'transfection': 'vector expressing Trem2'}, 'GSM2837008': {'line': 'MGC-803', 'type': 'gastric cancer cell line', 'transfection': 'vector expressing Trem2'}, 'GSM2170658': {'stage': 'Hepatic endoderm 2'}, 'GSM2170659': {'stage': 'Hepatic endoderm 2'}, 'GSM2124789': {'type': 'CD11b+ human glioblastoma-associated microglia/monocytes'}, 'GSM2124788': {'type': 'CD11b+ human glioblastoma-associated microglia/monocytes'}, 'GSM2170654': {'stage': 'Hepatic endoderm 2'}, 'GSM2170655': {'stage': 'Hepatic endoderm 2'}, 'GSM2170656': {'stage': 'Hepatic endoderm 2'}, 'GSM2170657': {'stage': 'Hepatic endoderm 2'}, 'GSM2170650': {'stage': 'Hepatic endoderm 2'}, 'GSM2170651': {'stage': 'Hepatic endoderm 2'}, 'GSM2170652': {'stage': 'Hepatic endoderm 2'}, 'GSM2170653': {'stage': 'Hepatic endoderm 2'}, 'GSM1965303': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965302': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965301': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965300': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965307': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965306': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965305': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965304': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965309': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965308': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1717160': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 36', 'subtype': 'CD1c+ myleoid dendirtic cells (mDC)'}, 'GSM1717161': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 36', 'subtype': 'slan(+) Dendritic cells'}, 'GSM1717162': {'type': 'Monocyte', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 36', 'subtype': 'CD14+ monocytes'}, 'GSM2616549': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616548': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2300039': {'line': 'MCF7', 'treatment': '10nM estradiol', 'infection': 'lentivirally infected with constructs against shMEN1'}, 'GSM2300038': {'line': 'MCF7', 'treatment': '10nM estradiol', 'infection': 'lentivirally infected with constructs against shMEN1'}, 'GSM2300035': {'line': 'MCF7', 'treatment': '10nM estradiol', 'infection': 'lentivirally infected with constructs against shCtrl'}, 'GSM2616540': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2616543': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2300036': {'line': 'MCF7', 'treatment': 'vehicle', 'infection': 'lentivirally infected with constructs against shMEN1'}, 'GSM2616545': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2262914': {'protocol': 'LPS exposed 24 hours, BG exposed for 24 hours, culture for 4 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2300033': {'line': 'MCF7', 'treatment': 'vehicle', 'infection': 'lentivirally infected with constructs against shCtrl'}, 'GSM2300032': {'line': 'MCF7', 'treatment': 'vehicle', 'infection': 'lentivirally infected with constructs against shCtrl'}, 'GSM1415921': {'cohort': 'active EoE'}, 'GSM1415920': {'cohort': 'active EoE'}, 'GSM1103992': {'type': 'ER+ Breast Tumor'}, 'GSM1103993': {'type': 'ER+ Breast Tumor'}, 'GSM2862140': {'line': 'HEK293', 'variation': 'WT'}, 'GSM2862141': {'line': 'HEK293', 'variation': 'WT'}, 'GSM2742745': {'type': 'immortalized human keratinocytes', 'treatment': 'single'}, 'GSM2058178': {'line': 'V9M', 'tissue': 'colorectal cancer cell line'}, 'F': {'code': '200'}, 'GSM1054024': {'tissue': 'PBMC', 'treatment': '10mM nicotinamide'}, 'GSM2309907': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'MPGN-membranoproliferative?typ', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '65.14'}, 'GSM1054021': {'tissue': 'PBMC', 'treatment': 'Un-treated control'}, 'GSM1054023': {'tissue': 'PBMC', 'treatment': 'Un-treated control'}, 'GSM1054022': {'tissue': 'PBMC', 'treatment': '10mM nicotinamide'}, 'GSM2316524': {'experiment': '4', 'type': 'Total RNA control'}, 'GSM2316520': {'experiment': '4', 'type': 'PLEKHA7 IP'}, 'GSM2316521': {'experiment': '1', 'type': 'Total RNA control'}, 'GSM2316522': {'experiment': '2', 'type': 'Total RNA control'}, 'GSM2316523': {'experiment': '3', 'type': 'Total RNA control'}, 'GSM1587358': {'line': 'SET2', 'type': 'essential thrombocythemia', 'treatment': 'DMSO 4hrs'}, 'GSM1587359': {'line': 'SET2', 'type': 'essential thrombocythemia', 'treatment': '25nM CA 4hrs'}, 'GSM1958419': {'line': 'HAP1', 'mutation': 'SMARCA4 Null (CRISPR-2)', 'passage': 'P12'}, 'GSM1958418': {'line': 'HAP1', 'mutation': 'SMARCA4 Null (CRISPR-1)', 'passage': 'P12'}, 'GSM3383929': {'tissue': 'pancreas tumor', 'id': 'patient9', 'diagnosis': 'pancreatic cancer'}, 'GSM3383928': {'tissue': 'pancreas tumor', 'id': 'patient8', 'diagnosis': 'pancreatic cancer'}, 'GSM3383927': {'tissue': 'pancreas tumor', 'id': 'patient7', 'diagnosis': 'pancreatic cancer'}, 'GSM3383926': {'tissue': 'pancreas tumor', 'id': 'patient6', 'diagnosis': 'pancreatic cancer'}, 'GSM3383925': {'tissue': 'pancreas tumor', 'id': 'patient5', 'diagnosis': 'pancreatic cancer'}, 'GSM3383924': {'tissue': 'pancreas tumor', 'id': 'patient4', 'diagnosis': 'pancreatic cancer'}, 'GSM1958417': {'line': 'HAP1', 'mutation': 'SMARCB1 Null (CRISPR-2)', 'passage': 'P12'}, 'GSM1958416': {'line': 'HAP1', 'mutation': 'SMARCB1 Null (CRISPR-1)', 'passage': 'P12'}, 'GSM1587356': {'line': 'SET2', 'type': 'essential thrombocythemia', 'treatment': 'DMSO 4hrs'}, 'GSM1587357': {'line': 'SET2', 'type': 'essential thrombocythemia', 'treatment': 'DMSO 4hrs'}, 'GSM2251313': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1479518': {'index': '16', 'diagnosis': '--', 'cellcount': '552072', 'samplename': '52_NK', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '52', 'collectiondate': 'August 16 2012', 'celltype': 'NK', 'diseasestatus': 'ALS'}, 'GSM1479519': {'index': '15', 'diagnosis': '--', 'cellcount': '--', 'samplename': '52_Tempus', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '52', 'collectiondate': 'August 16 2012', 'celltype': 'Whole Blood', 'diseasestatus': 'ALS'}, 'GSM1479514': {'index': '22', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '52_Monocytes', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '52', 'collectiondate': 'August 16 2012', 'celltype': 'Monocytes', 'diseasestatus': 'ALS'}, 'GSM1479515': {'index': '8', 'diagnosis': '--', 'cellcount': '702000', 'samplename': '52_Bcells', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '52', 'collectiondate': 'August 16 2012', 'celltype': 'B-cells', 'diseasestatus': 'ALS'}, 'GSM1479516': {'index': '15', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '52_CD4T', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '52', 'collectiondate': 'August 16 2012', 'celltype': 'CD4', 'diseasestatus': 'ALS'}, 'GSM1479517': {'index': '6', 'diagnosis': '--', 'cellcount': '928859', 'samplename': '52_CD8T', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '52', 'collectiondate': 'August 16 2012', 'celltype': 'CD8', 'diseasestatus': 'ALS'}, 'GSM1479510': {'index': '13', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '22', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '21', 'collectiondate': 'February 2 2012', 'samplename': '21_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Healthy Control'}, 'GSM1479511': {'index': '14', 'diagnosis': '--', 'cellcount': '147461', 'gender': 'F', 'age': '22', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '21', 'collectiondate': 'February 2 2012', 'samplename': '21_NK', 'celltype': 'NK', 'diseasestatus': 'Healthy Control'}, 'GSM1479512': {'index': '20', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '22', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '21', 'collectiondate': 'February 2 2012', 'samplename': '21_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Healthy Control'}, 'GSM1479513': {'index': '14', 'diagnosis': '--', 'cellcount': '7987500', 'samplename': '52_Neutrophils', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '52', 'collectiondate': 'August 16 2012', 'celltype': 'Neutrophils', 'diseasestatus': 'ALS'}, 'GSM2193059': {'sirna': 'PAX8 siRNA 405', 'line': 'JHOS4', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15405, Ambion'}, 'GSM2193058': {'sirna': 'PAX8 siRNA 404', 'line': 'JHOS4', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15404, Ambion'}, 'GSM2251312': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM1872927': {'10': 'Non-remitter', 'name': 'HF-37189', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1314709': {'type': 'lymphatic endothelial colony forming cells', 'passage': '8 to15'}, 'GSM1314708': {'type': 'lymphatic endothelial colony forming cells', 'passage': '8 to 15'}, 'GSM603078': {'marker': 'CD24', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM603079': {'marker': 'CD24', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM2802968': {'line': 'hMSC-TERT4', 'variation': 'siControl', 'stage': 'D7'}, 'GSM603077': {'marker': 'CD24', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell'}, 'GSM2193051': {'sirna': 'PAX8 siRNA 403', 'line': 'FT33', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15403, Ambion'}, 'GSM2193050': {'sirna': 'non-targeting siRNA control', 'line': 'FT33', 'type': 'Immortalized fallopian tube secretory cell'}, 'GSM2193053': {'sirna': 'PAX8 siRNA 405', 'line': 'FT33', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15405, Ambion'}, 'GSM1350530': {'line': 'MDA-MB-231', 'antibody': 'Glucocorticoid Receptor (D8H2) XP® Rabbit mAb #3660 from CST', 'cancer': 'Breast adenocarcinoma'}, 'GSM1350531': {'line': 'MDA-MB-231', 'antibody': 'Glucocorticoid Receptor (D8H2) XP® Rabbit mAb #3660 from CST', 'cancer': 'Breast adenocarcinoma'}, 'GSM2193052': {'sirna': 'PAX8 siRNA 404', 'line': 'FT33', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15404, Ambion'}, 'GSM2309865': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Cystinosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '29.62'}, 'GSM1647000': {'illumina_index': '14', 'point': '48', 'batch': '4', 'agent': 'GC', 'rin': '9.7', 'individual': 'M372'}, 'GSM1872929': {'10': 'Non-remitter', 'name': 'HF-35649', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1338273': {'antibody': 'H3K4me3 (Abcam, ab1012, Lot JBC18733477)', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM1338277': {'antibody': 'H3K27me3 (Millipore, 07-449, Lot DR10853-1)', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM1338276': {'antibody': 'H3K27me3 (Millipore, 07-449, Lot DR10853-1)', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM1338275': {'antibody': 'H3K4me3 (Abcam, ab1012, Lot JBC18733477)', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM1338274': {'antibody': 'H3K4me3 (Abcam, ab1012, Lot JBC18733477)', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM1338279': {'antibody': 'none', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM1338278': {'antibody': 'H3K27me3 (Millipore, 07-449, Lot DR10853-1)', 'passages': 'p21-50', 'type': 'H9 Human ESCs'}, 'GSM2251317': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2058170': {'line': 'V703', 'tissue': 'colorectal cancer cell line'}, 'GSM2652431': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652430': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652433': {'status': 'osteosarcoma patient', 'chemotherapy': 'yes', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652432': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'female'}, 'GSM2652435': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652434': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652437': {'status': 'osteosarcoma patient', 'chemotherapy': 'yes', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652436': {'status': 'osteosarcoma patient', 'chemotherapy': 'yes', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'female'}, 'GSM2652439': {'status': 'osteosarcoma patient', 'chemotherapy': 'yes', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'female'}, 'GSM2652438': {'status': 'osteosarcoma patient', 'chemotherapy': 'yes', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM1838421': {'line': 'K562', 'gene': 'none', 'target': 'none'}, 'GSM1838420': {'line': 'K562', 'gene': 'none', 'target': 'none'}, 'GSM1354856': {'donor': 'donor No.8', 'tissue': 'endometrial tumor', 'organ': 'endometrium', 'gender': 'female'}, 'GSM1534521': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534520': {'tissue': 'Hematopoietic', 'genotype': 'NPM1+ FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534523': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534522': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534525': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534524': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534527': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534526': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 ITD', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534529': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534528': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM2573787': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573786': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573785': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573784': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573783': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573782': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573781': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573780': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1289018': {'line': 'HepG2', 'type': 'Liver', 'infection': 'Plasmodium berghei SLTRiP-KO parasite', 'point': '22 hrs of post sporozoite infection of HepG2 cells'}, 'GSM1289019': {'line': 'HepG2', 'type': 'Liver', 'infection': 'Plasmodium berghei 268-KO parasite', 'point': '22 hrs of post sporozoite infection of HepG2 cells'}, 'GSM2573789': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573788': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM1624200': {'line': 'H1', 'treatment': 'DAPT'}, 'GSM2474982': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-1946', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474981': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-17R', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474980': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-1369', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474987': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-56', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474986': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-3133', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474985': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-3133', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474984': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-2295', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474989': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OVCAR3', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474988': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OV-90', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2093188': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093189': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093180': {'bin': '22', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093181': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093182': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093183': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093184': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2093185': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093186': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093187': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2392740': {'type': 'Induced pluripotent stem cell'}, 'GSM2392741': {'type': 'Induced pluripotent stem cell'}, 'GSM2392742': {'type': 'Induced pluripotent stem cell'}, 'GSM2046132': {'with': 'none (control)', 'line': 'A549', 'type': 'human lung carcinoma cell line'}, 'GSM1647009': {'illumina_index': '7', 'point': '4', 'batch': '5', 'agent': 'Staph', 'rin': '7.9', 'individual': 'M374'}, 'GSM2058174': {'line': 'V703', 'tissue': 'colorectal cancer cell line'}, 'GSM1409240': {'line': 'OCI-LY1', 'type': 'DLBCL', 'genotype': 'siBCL6;etopic expression of BCL6 RD2 mutant'}, 'GSM1647008': {'illumina_index': '6', 'point': '18', 'batch': '5', 'agent': 'GC', 'rin': '8.3', 'individual': 'M376'}, 'GSM2042924': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'T0901317', 'time': '24hr'}, 'GSM2042926': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'T0901317', 'time': '24hr'}, 'GSM2042927': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'T0901317', 'time': '24hr'}, 'GSM2042920': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '24hr'}, 'GSM2042921': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '24hr'}, 'GSM2042922': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '24hr'}, 'GSM2042923': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '24hr'}, 'GSM1447488': {'knockdown': 'Control siRNA', 'line': 'RBE', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM2042928': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'T0901317', 'time': '24hr'}, 'GSM2042929': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '24hr'}, 'GSM2058176': {'line': 'V703', 'tissue': 'colorectal cancer cell line'}, 'GSM1447484': {'knockdown': 'Control siRNA', 'line': 'HuH28', 'type': 'Intrahepatic cholangiocarcinoma', 'time': '48h'}, 'GSM2051449': {'line': 'MDA MB 231', 'type': 'Mesenchymal cancer cells', 'transfection': 'd4 NTC'}, 'GSM2051448': {'line': 'MDA MB 231', 'type': 'Mesenchymal cancer cells', 'transfection': 'd4 NTC'}, 'GSM2051447': {'transfection': 'd4 siCTBP1', 'tissue': 'Human Primary Breast Epithelial Cell', 'type': 'Primary cell'}, 'GSM2051446': {'transfection': 'd4 siCTBP1', 'tissue': 'Human Primary Breast Epithelial Cell', 'type': 'Primary cell'}, 'GSM2051445': {'transfection': 'd4 FBXO32', 'tissue': 'Human Primary Breast Epithelial Cell', 'type': 'Primary cell'}, 'GSM2051444': {'transfection': 'd4 FBXO32', 'tissue': 'Human Primary Breast Epithelial Cell', 'type': 'Primary cell'}, 'GSM2051443': {'transfection': 'd4 NTC', 'tissue': 'Human Primary Breast Epithelial Cell', 'type': 'Primary cell'}, 'GSM2051442': {'transfection': 'd4 NTC', 'tissue': 'Human Primary Breast Epithelial Cell', 'type': 'Primary cell'}, 'GSM2051441': {'transfection': 'none', 'tissue': 'Human Primary Breast Epithelial Cell', 'type': 'Primary cell'}, 'GSM2051440': {'transfection': 'none', 'tissue': 'Human Primary Breast Epithelial Cell', 'type': 'Primary cell'}, 'GSM2680629': {'clone': 'CL1', 'passages': 'p10', 'type': 'hiPSCs', 'method': 'Sendai Virus', 'treatment': '0.2 mM Sodium Butyrate'}, 'GSM2680628': {'clone': 'CL1', 'passages': 'p10', 'type': 'hiPSCs', 'method': 'Sendai Virus', 'treatment': 'DMSO'}, 'GSM2680627': {'clone': 'CL1', 'passages': 'p10', 'type': 'hiPSCs', 'method': 'LentiVirus', 'treatment': '0.2 mM Sodium Butyrate'}, 'GSM2680626': {'clone': 'CL1', 'passages': 'p10', 'type': 'hiPSCs', 'method': 'LentiVirus', 'treatment': 'DMSO'}, 'GSM2058123': {'line': 'V968', 'tissue': 'colorectal cancer cell line'}, 'GSM2058122': {'line': 'V940', 'tissue': 'colorectal cancer cell line'}, 'GSM2058121': {'line': 'V868', 'tissue': 'colorectal cancer cell line'}, 'GSM2058120': {'line': 'V866', 'tissue': 'colorectal cancer cell line'}, 'GSM2890017': {'line': 'UPN2', 'type': 'Mantle Cell Lymphoma'}, 'GSM2058126': {'line': 'V389', 'tissue': 'colorectal cancer cell line'}, 'GSM2890015': {'line': 'REC-1', 'type': 'Mantle Cell Lymphoma'}, 'GSM2058124': {'line': 'V389', 'tissue': 'colorectal cancer cell line'}, 'GSM2058129': {'line': 'V389', 'tissue': 'colorectal cancer cell line'}, 'GSM2890018': {'line': 'Z138', 'type': 'Mantle Cell Lymphoma'}, 'GSM1862184': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shPCBP1', 'treatment': 'none'}, 'GSM3189219': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A44', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.656001', 'percentaligned': '0.955619611', 'Sex': 'M', 'nl63': 'No', 'libcounts': '17.801132', 'original': 'Control'}, 'GSM3189218': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A44', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.609866', 'percentaligned': '0.956187944', 'Sex': 'M', 'nl63': 'No', 'libcounts': '17.654861', 'original': 'Control'}, 'GSM3189215': {'boca': 'No', 'years': '17', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.660062', 'percentaligned': '0.952249015', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.594134', 'original': 'Control'}, 'GSM3189214': {'boca': 'No', 'years': '17', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.575961', 'percentaligned': '0.957971379', 'Sex': 'M', 'nl63': 'No', 'libcounts': '15.215119', 'original': 'Control'}, 'GSM3189217': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-Cpat19', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '22', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.578095', 'percentaligned': '0.942246223', 'Sex': 'F', 'nl63': 'No', 'libcounts': '17.895346', 'original': 'Case'}, 'GSM3189216': {'boca': 'Yes', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.991483', 'percentaligned': '0.836080404', 'Sex': 'M', 'nl63': 'No', 'libcounts': '0.757219', 'original': 'Control'}, 'GSM3189211': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '8', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.677988', 'percentaligned': '0.933103965', 'Sex': 'M', 'nl63': 'No', 'libcounts': '12.186333'}, 'GSM3189210': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '40', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.597161', 'percentaligned': '0.950506073', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '14.029951', 'original': 'Control'}, 'GSM3189213': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A51', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '1.307571', 'percentaligned': '0.899664467', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.108099', 'original': 'Case'}, 'GSM3189212': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A51', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.681843', 'percentaligned': '0.928133823', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.897267', 'original': 'Case'}, 'GSM1363545': {'grade': '0', 'alb': '31.6', 'tb': '52.1', 'individual': 'HCC-C6', 'alt': '11', 'pt': '16.3', 'hbvdna': '<1000', 'ca199': '4.5', 'hgb': '75', 'method': '0', 'ggt': '5.8', 'cea': '1.4', 'ast': '14', 'rna': 'Yes', 'db': '15.5', 'cirrhosis': '0', 'afp': '137.5', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '51', 'ltx': 'A3', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '7.52'}, 'GSM1363544': {'grade': '0', 'alb': '42.7', 'tb': '19.7', 'individual': 'HCC-C9', 'alt': '16', 'pt': '11.9', 'hbvdna': '1290', 'ca199': '24.6', 'hgb': '158', 'method': '0', 'ggt': '35.3', 'cea': '4.85', 'ast': '18', 'rna': 'Yes', 'db': '5.2', 'cirrhosis': '0', 'afp': '9.2', 'hbsag': '+', 'organ': '0', 'gender': 'M', 'age': '40', 'ltx': 'A3', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.32'}, 'GSM1363546': {'grade': '0', 'alb': '31.6', 'tb': '52.1', 'individual': 'HCC-C6', 'alt': '11', 'pt': '16.3', 'hbvdna': '<1000', 'ca199': '4.5', 'hgb': '75', 'method': '0', 'ggt': '5.8', 'cea': '1.4', 'ast': '14', 'rna': 'Yes', 'db': '15.5', 'cirrhosis': '0', 'afp': '137.5', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '51', 'ltx': 'A3', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '7.52'}, 'GSM1363541': {'grade': '0', 'alb': '30.8', 'tb': '47.7', 'individual': 'HCC-C8', 'alt': '16', 'pt': '15.7', 'hbvdna': '<1000', 'ca199': '21', 'hgb': '148', 'method': '0', 'ggt': '56.4', 'cea': '2.81', 'ast': '25', 'rna': 'Yes', 'db': '16.1', 'cirrhosis': '0', 'afp': '62.5', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '64', 'ltx': 'A3', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.73'}, 'GSM1363540': {'grade': '0', 'alb': '22.3', 'tb': '35.8', 'individual': 'HCC-C2', 'alt': '78', 'pt': '17', 'hbvdna': '1040000', 'ca199': '72.6', 'hgb': '113', 'method': '0', 'ggt': '64.2', 'cea': '4.79', 'ast': '134', 'rna': 'Yes', 'db': '14.1', 'cirrhosis': '0', 'afp': '5.2', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '55', 'ltx': 'D', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.55'}, 'GSM1363543': {'grade': '0', 'alb': '42.7', 'tb': '19.7', 'individual': 'HCC-C9', 'alt': '16', 'pt': '11.9', 'hbvdna': '1290', 'ca199': '24.6', 'hgb': '158', 'method': '0', 'ggt': '35.3', 'cea': '4.85', 'ast': '18', 'rna': 'Yes', 'db': '5.2', 'cirrhosis': '0', 'afp': '9.2', 'hbsag': '+', 'organ': '0', 'gender': 'M', 'age': '40', 'ltx': 'A3', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.32'}, 'GSM1363542': {'grade': '0', 'alb': '30.8', 'tb': '47.7', 'individual': 'HCC-C8', 'alt': '16', 'pt': '15.7', 'hbvdna': '<1000', 'ca199': '21', 'hgb': '148', 'method': '0', 'ggt': '56.4', 'cea': '2.81', 'ast': '25', 'rna': 'Yes', 'db': '16.1', 'cirrhosis': '0', 'afp': '62.5', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '64', 'ltx': 'A3', 'tissue': 'HCC Non-recurrent Tumor', 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '4.73'}, 'GSM2361609': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361608': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2705296': {'pcr': 'Nextera', 'inactivation': 'NT buffer', 'batch': 'Nextera', 'date': '16.12.2016', 'input': '150 pg', 'line': 'HeLa', 'dilution': 'none'}, 'GSM2425044': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425045': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425046': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425047': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425040': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425041': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425042': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425043': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425048': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425049': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2361603': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361602': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1862188': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shPCBP1', 'treatment': 'TGF-beta and EGF'}, 'GSM2361601': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361600': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361607': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361606': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1357263': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, TB Antigenic Tetramer+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357262': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, TB Antigenic Tetramer+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357261': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, TB Antigenic Tetramer+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357260': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357267': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells - stimulated with PMA/ionomycin', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357266': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells - stimulated with medium', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357265': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells - stimulated with medium', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357264': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, TB Antigenic Tetramer+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357269': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells - stimulated with PMA/ionomycin', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1357268': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells - stimulated with PMA/ionomycin', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1603034': {'date': '2013-12-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603035': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603036': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603037': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603030': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603031': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603032': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603033': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603038': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603039': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1624666': {'tumor': 'Patient material', 'material': 'FFPE', 'treatment': 'pre-treatment'}, 'GSM1624667': {'tumor': 'Patient material', 'material': 'FFPE', 'treatment': 'post-treatment Vemurafenib'}, 'GSM1624664': {'tumor': 'PDX', 'material': 'Fresh Frozen', 'treatment': 'pre-treatment'}, 'GSM2689361': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689360': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689363': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2649869': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2689365': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689364': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689367': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689366': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689369': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689368': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1624663': {'tumor': 'Patient material', 'material': 'FFPE', 'treatment': 'post-treatment Vemurafenib'}, 'GSM2630170': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630171': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2840643': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2630173': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2840642': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2451212': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451213': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451210': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451211': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451216': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451217': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451214': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451215': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451218': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451219': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2630178': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2172301': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2877942': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877943': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877940': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877941': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877946': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877947': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877944': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877945': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877948': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2877949': {'tissue': 'Ovary', 'stage': 'Preovulatory'}, 'GSM2047404': {'well': 'G10', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047405': {'well': 'G11', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047406': {'well': 'G12', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047407': {'well': 'H01', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047400': {'well': 'G06', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047401': {'well': 'G07', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047402': {'well': 'G08', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047403': {'well': 'G09', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2172307': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2047408': {'well': 'H02', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047409': {'well': 'H03', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1875316': {'line': 'HCC1954', 'type': 'established breast cancer cell line', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875317': {'line': 'HCC1954', 'type': 'HCC1954 derivative isolated from BLI-negative mouse organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875314': {'line': 'HCC1954', 'type': 'established breast cancer cell line', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875315': {'line': 'HCC1954', 'type': 'established breast cancer cell line', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875312': {'line': 'HCC1954', 'type': 'HCC1954 derivative isolated from BLI-negative mouse organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1875313': {'line': 'HCC1954', 'type': 'HCC1954 derivative isolated from BLI-negative mouse organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1875310': {'line': 'HCC1954', 'type': 'HCC1954 derivative isolated from BLI-negative mouse organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM1875311': {'line': 'HCC1954', 'type': 'HCC1954 derivative isolated from BLI-negative mouse organ', 'condition': 'mitogen-rich media (MRM)', 'time': '48hr'}, 'GSM2411941': {'line': '12888B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM1875318': {'line': 'HCC1954', 'type': 'HCC1954 derivative isolated from BLI-negative mouse organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM1875319': {'line': 'HCC1954', 'type': 'HCC1954 derivative isolated from BLI-negative mouse organ', 'condition': 'mitogen-low media (MLM)', 'time': '48hr'}, 'GSM2877852': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877853': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM1836630': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U2'}, 'GSM1836631': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U2'}, 'GSM1836632': {'expression_construct': 'TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U5'}, 'GSM1836633': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U5'}, 'GSM1836634': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U5'}, 'GSM1836635': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U5'}, 'GSM1836636': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U5'}, 'GSM1836637': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U5'}, 'GSM1836638': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM1836639': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U5'}, 'GSM2047515': {'well': 'H12', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047512': {'well': 'H09', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047513': {'well': 'H10', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2467491': {'line': 'NA20764', 'type': 'Lymphocyte'}, 'GSM2467490': {'line': 'NA18612', 'type': 'Lymphocyte'}, 'GSM2561438': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561439': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561436': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561437': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561434': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561435': {'subtype': 'human embroynic outer radial glial cell (oRG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561432': {'subtype': 'human embroynic intermediate progenitor cell (IPC)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561433': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561430': {'subtype': 'human embroynic intermediate progenitor cell (IPC)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561431': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2533676': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM1964999': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1579157': {'origin': 'xenograft tumours', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1520932': {'fixation': 'DMA + FA', 'line': 'CCRF-CEM', 'type': 'human acute lymphocytic leukemia (ALL) cell line'}, 'GSM1520931': {'vendor': 'LSBio', 'fixation': 'DMA + FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'PAF1 knockdown', 'treatment': 'pMY136 (PAF1 shRNA #1)', 'line': 'THP1', 'antibody': 'CDK12'}, 'GSM1520930': {'vendor': 'LSBio', 'fixation': 'DMA + FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'vector control', 'treatment': 'pMY56 (control)', 'line': 'THP1', 'antibody': 'CDK12'}, 'GSM1836098': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836099': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1579151': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_6h_0.1µM'}, 'GSM1579150': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vemurafenib_6h_0.1µM'}, 'GSM1836094': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836095': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836096': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836097': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836090': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836091': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '4', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1579159': {'origin': 'xenograft tumours', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1836093': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2902800': {'replicate': '2', 'treatment': 'vehicle', 'point': '16h'}, 'GSM2902801': {'replicate': '3', 'treatment': 'vehicle', 'point': '16h'}, 'GSM2902802': {'replicate': '1', 'treatment': 'vehicle', 'point': '6h'}, 'GSM2902803': {'replicate': '2', 'treatment': 'vehicle', 'point': '6h'}, 'GSM2902804': {'replicate': '3', 'treatment': 'vehicle', 'point': '6h'}, 'GSM2840219': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2902806': {'replicate': '2', 'treatment': 'xRNA', 'point': '16h'}, 'GSM2902807': {'replicate': '3', 'treatment': 'xRNA', 'point': '16h'}, 'GSM2840214': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840215': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840216': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2676799': {'antibody': 'Abcam ab128874', 'treatment': 'DMSO'}, 'GSM2840210': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840211': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840212': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840213': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2536054': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10642', 'samplename': '1_T1D2-REDRAW _C15', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34742', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10642', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C15'}, 'GSM2536055': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10644', 'samplename': '1D_T1D2-REDRAW _C31', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34744', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10644', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C31'}, 'GSM2536056': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10645', 'samplename': '1D_T1D2-REDRAW _C37', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34745', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10645', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C37'}, 'GSM2536057': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10646', 'samplename': '1_T1D2-REDRAW _C43', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34746', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10646', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C43'}, 'GSM2536050': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10629', 'samplename': '1_Ctl5_redraw_C83', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34729', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10629', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C83'}, 'GSM2536051': {'status': 'HC', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10630', 'samplename': '1D_Ctl5_redraw_C95', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34730', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10630', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C95'}, 'GSM2536052': {'status': 'HC', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10631', 'samplename': '1_Ctl5_redraw_C72', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC5', 'sampleID': 'S34731', 'numcellssorted': '226', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10631', 'projectid': 'P91-14', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C72'}, 'GSM2536053': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10640', 'samplename': '1_T1D2-REDRAW _C03', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34740', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10640', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C03'}, 'GSM2536058': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10647', 'samplename': '1_T1D2-REDRAW _C02', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34747', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10647', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C02'}, 'GSM2536059': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10648', 'samplename': '1_T1D2-REDRAW _C08', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34748', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10648', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C08'}, 'GSM1876036': {'antibody': 'H3K27ac, Abcam ab4729', 'treatment': 'Normal serum'}, 'GSM1876037': {'antibody': 'H3K27ac, Abcam ab4729', 'treatment': 'Normal serum'}, 'GSM1876034': {'state': 'Atherosclerotic coronary artery (media)'}, 'GSM1876035': {'treatment': 'Normal serum'}, 'GSM1876032': {'state': 'Atherosclerotic coronary artery (media)'}, 'GSM1876033': {'state': 'Atherosclerotic coronary artery (media)'}, 'GSM1876030': {'state': 'Normal coronary artery (media)'}, 'GSM1876031': {'state': 'Normal coronary artery (media)'}, 'GSM1833912': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833913': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833910': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833911': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 8 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833916': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM1833917': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 50'}, 'GSM1876038': {'antibody': 'H3K27ac, Abcam ab4729', 'treatment': 'Normal serum'}, 'GSM1876039': {'treatment': 'Serum-free control'}, 'GSM2665824': {'age': 'Day 175', 'well': 'F12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665825': {'age': 'Day 175', 'well': 'A6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665826': {'age': 'Day 175', 'well': 'A8', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665827': {'age': 'Day 175', 'well': 'H8', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665820': {'age': 'Day 175', 'well': 'G9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665821': {'age': 'Day 175', 'well': 'C12', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665822': {'age': 'Day 175', 'well': 'H4', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665823': {'age': 'Day 175', 'well': 'E9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665828': {'age': 'Day 175', 'well': 'G6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665829': {'age': 'Day 175', 'well': 'F2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM1492710': {'status': 'EBV(+); experimentally infected with EBV', 'line': 'SNU-638-EBV', 'type': 'SNU-638 in vitro infected with EBV'}, 'GSM2374102': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374103': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374100': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374101': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374106': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374107': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374104': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374105': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374108': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374109': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2088089': {'status': 'Dysplasia', 'ratio': '2.037763443', 'point': 't2', 'age': '64.986', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '70', 'alignments': '57987132', 'id': 'Patient_P2', 'alignment': '35473169'}, 'GSM2088088': {'status': 'Dysplasia', 'ratio': '1.781272787', 'point': 't2', 'age': '72.396', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '8', 'alignments': '59951086', 'id': 'Patient_P11', 'alignment': '37360757'}, 'GSM2671223': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671222': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1523628': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM865299': {'tissue': 'islets of Langerhans'}, 'GSM2671227': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671226': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671225': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671224': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM865292': {'tissue': 'islets of Langerhans'}, 'GSM865293': {'tissue': 'islets of Langerhans'}, 'GSM2671229': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671228': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1523626': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523627': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523624': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM1523625': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Rnase I footprinting, ribosome pelleting, RNA extraction'}, 'GSM2361604': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2836222': {'line': 'HPAFII', 'tissue': 'pancreatic cancer', 'treatment': 'PBS'}, 'GSM2836223': {'line': 'HPAFII', 'tissue': 'pancreatic cancer', 'treatment': 'PBS'}, 'GSM2836224': {'line': 'HPAFII', 'tissue': 'pancreatic cancer', 'treatment': 'PBS'}, 'GSM2836225': {'line': 'HPAFII', 'tissue': 'pancreatic cancer', 'treatment': 'Gemcitabine (10 µM)'}, 'GSM2836226': {'line': 'HPAFII', 'tissue': 'pancreatic cancer', 'treatment': 'Gemcitabine (10 µM)'}, 'GSM2836227': {'line': 'HPAFII', 'tissue': 'pancreatic cancer', 'treatment': 'Gemcitabine (10 µM)'}, 'GSM1012772': {'phase': 'M', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1194147': {'status': 'wild-type', 'line': 'HEK293T-rex', 'clone': '15', 'treatment': 'Doxycycline 0 min'}, 'GSM2781937': {'line': 'U87 glioblastoma cells', 'variation': 'control vector'}, 'GSM2781936': {'line': 'U87 glioblastoma cells', 'variation': 'control vector'}, 'GSM2781939': {'line': 'U87 glioblastoma cells', 'variation': 'Myt1 expression'}, 'GSM2781938': {'line': 'U87 glioblastoma cells', 'variation': 'control vector'}, 'GSM2047554': {'well': 'D02', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM3301479': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'iPS cell', 'protocol': 'Ctrl'}, 'GSM3301478': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'iPS cell', 'protocol': 'Ctrl'}, 'GSM3301477': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'iPS cell', 'protocol': 'Ctrl'}, 'GSM3301476': {'gender': 'unknown', 'type': 'endothelial cell (primary cell)', 'protocol': 'Ctrl'}, 'GSM3301475': {'gender': 'unknown', 'type': 'endothelial cell (primary cell)', 'protocol': 'Ctrl'}, 'GSM3301474': {'gender': 'unknown', 'type': 'endothelial cell (primary cell)', 'protocol': 'Ctrl'}, 'GSM2047555': {'well': 'D03', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2459021': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.00'}, 'GSM2459020': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.42'}, 'GSM2459023': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.08'}, 'GSM2459022': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '15.67'}, 'GSM2459025': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.50'}, 'GSM2459024': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.67'}, 'GSM2459027': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.17'}, 'GSM2459026': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.83'}, 'GSM2459029': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.08'}, 'GSM2459028': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.58'}, 'GSM1370370': {'line': 'HEK293', 'type': 'Embryonic kidney derived cells'}, 'GSM1370371': {'line': 'HeLa', 'type': 'cervical epithelial'}, 'GSM2147937': {'patient': 'P501', 'age': '25', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147936': {'patient': 'P427', 'age': '30', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147935': {'patient': 'P607', 'age': 'missing', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147934': {'patient': 'P607', 'age': 'missing', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147933': {'patient': 'P604', 'age': 'missing', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147932': {'patient': 'P604', 'age': 'missing', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147931': {'patient': 'P604', 'age': 'missing', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147930': {'patient': 'P600', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2593183': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM3436224': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'GSK-LSD1', 'variation': 'drug-resistant SET-2 LSD1 (Leu659_Asn660insArg)'}, 'GSM2392212': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1977409': {'tissue': 'neonatal cord blood', 'type': 'MLP'}, 'GSM3436221': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'DMSO', 'variation': 'drug-resistant SET-2 LSD1 (Leu659_Asn660insArg)'}, 'GSM2401582': {'gleason': '7', 'race': 'White', 'age': '43', 'psa': '8.48', 'batch': '2', 'tissue': 'tumor', 'id': '32', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2A'}, 'GSM2401581': {'gleason': '7', 'race': 'White', 'age': '44', 'psa': '2.41', 'batch': '2', 'tissue': 'tumor', 'id': '31', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2A'}, 'GSM2401580': {'gleason': '7', 'race': 'White', 'age': '45', 'psa': '5.19', 'batch': '2', 'tissue': 'tumor', 'id': '13', 'ethnicity': 'Non-Hispanic', 'Stage': 'T2C'}, 'GSM2302149': {'timepoint': 'Post', 'id': '65', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302148': {'timepoint': 'Pre', 'id': '65', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM3436223': {'line': 'SET-2', 'type': 'acute myeloid leukemia', 'treatment': 'GSK-LSD1', 'variation': 'drug-resistant SET-2 LSD1 (Leu659_Asn660insArg)'}, 'GSM2302143': {'timepoint': 'Post', 'id': '62', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302142': {'timepoint': 'Pre', 'id': '62', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302141': {'timepoint': 'Post', 'id': '61', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2593184': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2302147': {'timepoint': 'Post', 'id': '64', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302146': {'timepoint': 'Pre', 'id': '64', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302145': {'timepoint': 'Post', 'id': '63', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2302144': {'timepoint': 'Pre', 'id': '63', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Progressive Disease'}, 'GSM2305490': {'treatment': 'Pravastatin'}, 'GSM2305491': {'treatment': 'Pravastatin'}, 'GSM2305492': {'treatment': 'Pravastatin'}, 'GSM2232928': {'antibody': 'input', 'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line'}, 'GSM2232921': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'shMYCN'}, 'GSM2232920': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'control'}, 'GSM2232923': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'shMYCN'}, 'GSM2232922': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'shMYCN'}, 'GSM2232925': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'shTEAD4'}, 'GSM2232924': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'shTEAD4'}, 'GSM2232927': {'antibody': 'anti-TEAD4 (ab58310; abcam)', 'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line'}, 'GSM2232926': {'line': 'SK-N-BE2', 'type': 'neuroblastoma cell line', 'treatment': 'shTEAD4'}, 'GSM2816019': {'line': 'H9'}, 'GSM2816018': {'line': 'H9'}, 'GSM2816015': {'line': 'H9'}, 'GSM2816014': {'line': 'H9'}, 'GSM2816017': {'line': 'H9'}, 'GSM2816016': {'line': 'H9'}, 'GSM2816011': {'line': 'H9'}, 'GSM2816010': {'line': 'H9'}, 'GSM2816013': {'line': 'H9'}, 'GSM2816012': {'line': 'H9'}, 'GSM2779576': {'duration': '1 day', 'line': 'M229SDR', 'type': 'Melanoma cell line', 'cells': 'GFP', 'treatment': '20 min of STP, 0.5 uM'}, 'GSM2779577': {'duration': '2 day', 'line': 'M229SDR', 'type': 'Melanoma cell line', 'cells': 'GFP', 'treatment': '20 min of STP, 0.5 uM'}, 'GSM2779578': {'duration': '1 day', 'line': 'M229SDR', 'type': 'Melanoma cell line', 'cells': 'PD-1', 'treatment': 'none'}, 'GSM2932974': {'pucai': '55', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2779579': {'duration': '2 day', 'line': 'M229SDR', 'type': 'Melanoma cell line', 'cells': 'PD-1', 'treatment': 'none'}, 'GSM2061457': {'line': 'HEK 293', 'sirna': '#2_SKIV2L'}, 'GSM1616944': {'classification': 'NA', 'disease_stage': 'NA', 'age': '49', 'disease': 'Normal, SI Neuroendocrine tumor', 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616942': {'classification': 'NA', 'disease_stage': 'NA', 'age': '70', 'disease': 'Normal, Adenoma', 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616943': {'classification': 'NA', 'disease_stage': 'NA', 'age': '62', 'disease': 'Normal, Adenoma', 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616940': {'classification': 'NA', 'disease_stage': 'NA', 'age': '65', 'disease': 'Normal control, large polyp', 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616941': {'classification': 'NA', 'disease_stage': 'NA', 'age': '45', 'disease': 'Normal, colonic inertia', 'inflamed': 'No', 'Sex': 'female'}, 'GSM2178988': {'stimulation': '14', 'type': 'gdT', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM2178989': {'stimulation': '14', 'type': 'gdT', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM1163026': {'patient': 'Disease_K6', 'gender': 'F', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Untreated', 'id': '5'}, 'GSM1163027': {'patient': 'Disease_K6', 'gender': 'F', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Culture/DMSO', 'id': '6'}, 'GSM1163020': {'patient': 'Disease_K5', 'gender': 'M', 'age': '30', 'tissue': 'Nonlesion', 'treatment': 'Agonist', 'id': '7'}, 'GSM1163021': {'patient': 'Disease_K5', 'gender': 'M', 'age': '30', 'tissue': 'Nonlesion', 'treatment': 'Antagonist', 'id': '8'}, 'GSM1163022': {'patient': 'Disease_K6', 'gender': 'F', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Untreated', 'id': '1'}, 'GSM1163023': {'patient': 'Disease_K6', 'gender': 'F', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM2178980': {'stimulation': '7', 'type': 'CD8ab', 'derivation': 'Regenerated from LMP2 T-iPSCs', 'method': 'LCL pulsed with LMP2 peptide with IL-7 and IL-21'}, 'GSM2178981': {'stimulation': '7', 'type': 'CD8aa', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM2178982': {'stimulation': '7', 'type': 'CD8aa', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM2178983': {'stimulation': '7', 'type': 'CD8aa', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM2178984': {'stimulation': '14', 'type': 'CD8ab', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM2747605': {'line': 'fhRPE-13A', 'passages': '48', 'type': 'retina pigment epithelium', 'Stage': '3 days'}, 'GSM2178986': {'stimulation': '14', 'type': 'CD8ab', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM2178987': {'stimulation': '14', 'type': 'gdT', 'derivation': 'Peripheral blood', 'method': 'CD3/28 beads with IL-7 and IL-15'}, 'GSM2748329': {'gsc': '4121', 'infection': 'control'}, 'GSM2748328': {'gsc': '387', 'infection': 'ZIKV-Brazil/Dakar strains'}, 'GSM1892609': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892608': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892603': {'tissue': 'FFPE', 'antibody': 'H3K36me3 (Abcam ab9050)'}, 'GSM1892602': {'tissue': 'FFPE', 'antibody': 'H3K27me3( Cell Signaling C36811)'}, 'GSM1892601': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892600': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892607': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892606': {'tissue': 'FFPE', 'antibody': 'H3K9ac (Abcam ab4441)'}, 'GSM2748327': {'gsc': '387', 'infection': 'control'}, 'GSM1892604': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2312014': {'culture': '12', 'line': 'DCX+'}, 'GSM2312015': {'culture': '12', 'line': 'DCX+'}, 'GSM2312016': {'culture': '12', 'line': 'DCX+'}, 'GSM2312017': {'culture': '12', 'line': 'DCX+'}, 'GSM2312010': {'culture': '12', 'line': 'DCX+'}, 'GSM2312011': {'culture': '12', 'line': 'DCX+'}, 'GSM2312012': {'culture': '12', 'line': 'DCX+'}, 'GSM2312013': {'culture': '12', 'line': 'DCX+'}, 'GSM2312018': {'culture': '12', 'line': 'DCX+'}, 'GSM2312019': {'culture': '12', 'line': 'DCX+'}, 'GSM1980052': {'line': 'SW480'}, 'GSM1980053': {'line': 'SW480'}, 'GSM2194988': {'status': 'LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2194989': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM1980050': {'line': 'SW480'}, 'GSM1843469': {'status': 'wild type', 'down': 'NA', 'type': 'fibroblast'}, 'GSM1843468': {'status': 'wild type', 'down': 'NA', 'type': 'fibroblast'}, 'GSM2455905': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2632712': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632713': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632710': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632711': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632716': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632717': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632714': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632715': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM1414959': {'region': 'BA45', 'identifier': '4593', 'age': '33', 'Sex': 'M'}, 'GSM1414958': {'region': 'BA47', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1980054': {'line': 'SW480'}, 'GSM1414951': {'region': 'BA39', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1414950': {'region': 'BA40', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1414953': {'region': 'BA44', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1414952': {'region': 'BA22', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1414955': {'region': 'BA6', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1414954': {'region': 'BA9', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1414957': {'region': 'BA46', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1414956': {'region': 'BA45', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1216771': {'gender': 'Male', 'age': '64', 'bmi': '26.2', 'hba1c': '4.5', 'tissue': 'pancreatic islets', 'birth': '1945'}, 'GSM1216770': {'gender': 'Female', 'age': '56', 'bmi': '22.5', 'hba1c': '5.3', 'tissue': 'pancreatic islets', 'birth': '1953'}, 'GSM1216773': {'gender': 'Female', 'age': '27', 'bmi': '21.1', 'hba1c': '4.3', 'tissue': 'pancreatic islets', 'birth': '1982'}, 'GSM1216772': {'gender': 'Female', 'age': '72', 'tissue': 'pancreatic islets', 'birth': '1937', 'bmi': '29.1'}, 'GSM1216775': {'gender': 'Female', 'age': '44', 'bmi': '27.5', 'hba1c': '5.4', 'tissue': 'pancreatic islets', 'birth': '1965'}, 'GSM1216774': {'gender': 'Female', 'age': '55', 'tissue': 'pancreatic islets', 'birth': '1954', 'bmi': '22'}, 'GSM1216777': {'gender': 'Male', 'age': '61', 'bmi': '26.3', 'hba1c': '6.2', 'tissue': 'pancreatic islets', 'birth': '1949'}, 'GSM1216776': {'gender': 'Male', 'age': '59', 'bmi': '26.2', 'hba1c': '5.5', 'tissue': 'pancreatic islets', 'birth': '1951'}, 'GSM1216779': {'gender': 'Male', 'age': '50', 'bmi': '24.5', 'hba1c': '6', 'tissue': 'pancreatic islets', 'birth': '1960'}, 'GSM1216778': {'gender': 'Female', 'age': '62', 'bmi': '29.4', 'hba1c': '5.8', 'tissue': 'pancreatic islets', 'birth': '1948'}, 'GSM2459872': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'DROSHA siRNA treated'}, 'GSM2459870': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'Negative control siRNA treated'}, 'GSM2459871': {'line': 'HEK293T', 'type': 'human embryonic kidney cell line', 'condition': 'DICER siRNA treated'}, 'GSM2570508': {'knockdown': 'control', 'line': 'Jurkat'}, 'GSM2570509': {'knockdown': 'control', 'line': 'Jurkat'}, 'GSM3586669': {'origin': 'GCB', 'pfstt': '201', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1047', 'cycles': '8', 'oscs': '0'}, 'GSM3271564': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': 'None'}, 'GSM3271567': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 20hr'}, 'GSM3271566': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 20hr'}, 'GSM3271561': {'line': 'WM239A', 'treatment': 'None'}, 'GSM3271560': {'line': 'WM239A', 'treatment': 'None'}, 'GSM3271563': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': 'None'}, 'GSM3271562': {'line': 'WM239A', 'treatment': 'None'}, 'GSM3586661': {'origin': 'ABC', 'pfstt': '779', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1020', 'cycles': '6', 'oscs': '0'}, 'GSM3586660': {'origin': 'GCB', 'pfstt': '1030', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1037', 'cycles': '6', 'oscs': '0'}, 'GSM3586663': {'origin': 'UNCLASSIFIED', 'pfstt': '875', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '878', 'cycles': '6', 'oscs': '0'}, 'GSM3586662': {'origin': 'GCB', 'pfstt': '848', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1012', 'cycles': '6', 'oscs': '0'}, 'GSM3271569': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d'}, 'GSM3271568': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 20hr'}, 'GSM3586667': {'origin': 'UNCLASSIFIED', 'pfstt': '1069', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1069', 'cycles': '8', 'oscs': '0'}, 'GSM3586666': {'origin': 'GCB', 'pfstt': '136', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '183', 'cycles': '6', 'oscs': '1'}, 'GSM2483545': {'line': 'A673 cells', 'rescue': 'wt EWS/FLI', 'RNAi': 'EWS/FLI', 'batch': '5'}, 'GSM2483544': {'line': 'A673 cells', 'rescue': 'wt EWS/FLI', 'RNAi': 'EWS/FLI', 'batch': '4'}, 'GSM2483541': {'line': 'A673 cells', 'rescue': 'wt EWS/FLI', 'RNAi': 'EWS/FLI', 'batch': '1'}, 'GSM2483540': {'line': 'A673 cells', 'rescue': 'mut9', 'RNAi': 'EWS/FLI', 'batch': '5'}, 'GSM2483543': {'line': 'A673 cells', 'rescue': 'wt EWS/FLI', 'RNAi': 'EWS/FLI', 'batch': '3'}, 'GSM2483542': {'line': 'A673 cells', 'rescue': 'wt EWS/FLI', 'RNAi': 'EWS/FLI', 'batch': '2'}, 'GSM1969335': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM2026926': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q96NJ6'}, 'GSM1969332': {'metastasis': 'No', 'fusion': 'Yes', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM1536026': {'line': 'PLC8024', 'fraction': 'CD133-'}, 'GSM2024998': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM1536024': {'line': 'Huh7', 'fraction': 'CD133-'}, 'GSM1536025': {'line': 'PLC8024', 'fraction': 'CD133+'}, 'GSM1536023': {'line': 'Huh7', 'fraction': 'CD133+'}, 'GSM2024991': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2024990': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2024993': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2024992': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2024995': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2024994': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2024997': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2024996': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2226748': {'treatment': \"3'-seq, alpha-amanitin +TEX,\"}, 'GSM2157949': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157948': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157943': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157942': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157941': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157940': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157947': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157946': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2226746': {'treatment': \"3'-seq, alpha-amanitin +TEX,\"}, 'GSM2157944': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2325852': {'type': 'Differentiated embryonic stem cell'}, 'GSM1395390': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '12hr'}, 'GSM1969330': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Trunk wall'}, 'GSM2177851': {'status': 'Hepatoblastoma', 'Sex': 'Female', 'type': 'Hepatoblastoma', 'years': '11'}, 'GSM2250137': {'type': 'Adjacent normal lung tissue'}, 'GSM1328164': {'line': 'C4-2 cell', 'passages': 'CRPC'}, 'GSM2177850': {'status': 'Hepatoblastoma', 'Sex': 'Female', 'type': 'Hepatoblastoma', 'years': '< 1'}, 'GSM1328162': {'line': 'LNCaP cell', 'passages': 'Primary PC'}, 'GSM1328163': {'line': 'C4-2 cell', 'passages': 'CRPC'}, 'GSM1328161': {'line': 'LNCaP cell', 'passages': 'Primary PC'}, 'GSM2098750': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098751': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098752': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098753': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098754': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098755': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098756': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2177856': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '4'}, 'GSM2177855': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM2177854': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM2177859': {'status': 'Hepatoblastoma', 'Sex': 'Female', 'type': 'Hepatoblastoma', 'years': '2'}, 'GSM2147002': {'transduction': 'miR-28 XENO 2', 'pair': '6', 'treatment': 'Doxyciclin', 'batch': '2'}, 'GSM2177858': {'status': 'Hepatoblastoma', 'Sex': 'Female', 'type': 'Hepatoblastoma', 'years': '< 1'}, 'GSM3362545': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of normal pregnancy'}, 'GSM2108374': {'stages': 'myoblast'}, 'GSM2108375': {'stages': 'myoblast'}, 'GSM2108376': {'stages': 'myoblast'}, 'GSM2108377': {'stages': 'myoblast'}, 'GSM2108370': {'stages': 'myoblast'}, 'GSM2108371': {'stages': 'myoblast'}, 'GSM2108372': {'stages': 'myoblast'}, 'GSM2108373': {'stages': 'myoblast'}, 'GSM2108378': {'stages': 'myoblast'}, 'GSM2108379': {'stages': 'myoblast'}, 'GSM1872992': {'infection': 'Uninfected control'}, 'GSM1957023': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'CTRL'}, 'GSM1957022': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'CTRL'}, 'GSM1957021': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'RBM47 KD'}, 'GSM1957020': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'RBM47 KD'}, 'GSM1957024': {'line': 'H358', 'tissue': 'Lung', 'genotype': 'CTRL'}, 'GSM2898783': {'line': 'NA18498', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898782': {'line': 'NA18489', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898781': {'line': 'NA18486', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898787': {'line': 'NA18505', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898786': {'line': 'NA18502', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898785': {'line': 'NA18501', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898784': {'line': 'NA18499', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898789': {'line': 'NA18510', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898788': {'line': 'NA18508', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1581028': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581029': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2105070': {'gender': 'Male', 'age': '1 Year old', 'batch': '1F', 'condition': 'Trisomic'}, 'GSM1581025': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2105072': {'gender': 'Male', 'age': '1 Year old', 'batch': '1F', 'condition': 'Trisomic'}, 'GSM1581027': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581020': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581021': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581022': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM2105077': {'gender': 'Male', 'age': '2 Year old', 'batch': '2F', 'condition': 'Trisomic'}, 'GSM2685853': {'line': 'HeLa', 'genotype': 'wild-type'}, 'GSM2685852': {'line': 'HeLa', 'genotype': 'wild-type'}, 'GSM2685857': {'line': 'T47D', 'genotype': 'wild-type'}, 'GSM2685856': {'line': 'T47D', 'genotype': 'wild-type'}, 'GSM2685855': {'line': 'HeLa', 'genotype': 'wild-type'}, 'GSM2685854': {'line': 'HeLa', 'genotype': 'wild-type'}, 'GSM2549711': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM2549710': {'type': 'Pancreatic Cell Control'}, 'GSM2685859': {'line': 'T47D', 'genotype': 'wild-type'}, 'GSM2685858': {'line': 'T47D', 'genotype': 'wild-type'}, 'GSM2705340': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 4', 'dilution': '1:10'}, 'GSM2705341': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 6', 'dilution': '1:10'}, 'GSM1187134': {'line': 'BJ', 'type': 'other'}, 'GSM1668433': {'with': '1,25(OH)2D3 treatment', 'type': 'skeletal muscle cells'}, 'GSM1668432': {'with': 'ethanol', 'type': 'skeletal muscle cells'}, 'GSM1668431': {'with': '1,25(OH)2D3 treatment', 'type': 'skeletal muscle cells'}, 'GSM1668430': {'with': 'ethanol', 'type': 'skeletal muscle cells'}, 'GSM2705343': {'date': '13.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 8', 'dilution': '1:10'}, 'GSM2705344': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 9', 'dilution': '1:10'}, 'GSM2705345': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 10', 'dilution': '1:10'}, 'GSM2194515': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194514': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194517': {'type': 'mesenchyme', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194516': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194511': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194510': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194513': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194512': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2705347': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 12', 'dilution': '1:10'}, 'GSM2194519': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194518': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1194146': {'status': 'knock-down', 'line': 'HEK293T-rex', 'clone': '15', 'treatment': 'Doxycycline 40 min'}, 'GSM2443606': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 5'}, 'GSM2443607': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 5'}, 'GSM2443604': {'subset': 'Derm CD8+CD103-', 'donor': 'Subject 5'}, 'GSM2443605': {'subset': 'Derm CD8+CD103+', 'donor': 'Subject 5'}, 'GSM2443602': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 4'}, 'GSM2443603': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 4'}, 'GSM2443600': {'subset': 'Derm CD8+CD103-', 'donor': 'Subject 4'}, 'GSM2443601': {'subset': 'Derm CD8+CD103+', 'donor': 'Subject 4'}, 'GSM3104739': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM3104738': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM2443608': {'subset': 'Derm CD8+CD103-', 'donor': 'Subject 6'}, 'GSM2443609': {'subset': 'Derm CD8+CD103+', 'donor': 'Subject 6'}, 'GSM1930766': {'line': 'HCC1419', 'type': 'breast cancer cell line'}, 'GSM1930765': {'line': 'HCC1419', 'type': 'breast cancer cell line'}, 'GSM1930762': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1930761': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM1930760': {'line': 'MCF-10A', 'type': 'Mammary epithelial cell line'}, 'GSM2205864': {'type': 'Tumor tissue'}, 'GSM2390849': {'disease': 'Healthy Control'}, 'GSM2390848': {'disease': 'Healthy Control'}, 'GSM2390845': {'disease': 'Healthy Control'}, 'GSM2390844': {'disease': 'Healthy Control'}, 'GSM2390847': {'disease': 'Healthy Control'}, 'GSM2390846': {'disease': 'Healthy Control'}, 'GSM2390841': {'disease': 'Healthy Control'}, 'GSM2390840': {'disease': 'Healthy Control'}, 'GSM2390843': {'disease': 'Healthy Control'}, 'GSM2390842': {'disease': 'Healthy Control'}, 'GSM2439190': {'status': 'SCHIZOPHRENIA; SCZD', 'with': 'neuronal media for 2 days', 'type': 'iPSC derived NPC'}, 'GSM2781956': {'line': 'WI38 hTERT RAF1-ER', 'state': 'proliferative', 'treatment': 'transfected with siRNA against H2A.Z for 3 days'}, 'GSM2252899': {'line': 'PC-3', 'tissue': 'prostate; derived from metastatic site: bone', 'transfection': 'PC-3 control'}, 'GSM1915026': {'line': 'MNNG'}, 'GSM2042882': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042880': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '24hr'}, 'GSM2042886': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '24hr'}, 'GSM1940199': {'vendor': 'Santa Cruz Biotech', 'antibody': 'rabbit anti-PU.1', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'line': 'K562', 'with': '1 μM SAHA'}, 'GSM2042884': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM1940197': {'vendor': 'Santa Cruz Biotech', 'antibody': 'rabbit anti-PU.1', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'line': 'K562', 'with': '1 μM SAHA'}, 'GSM1940196': {'vendor': 'Santa Cruz Biotech', 'antibody': 'rabbit anti-PU.1', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'line': 'K562', 'with': '0.01% DMSO vehicle'}, 'GSM1940195': {'vendor': 'Santa Cruz Biotech', 'antibody': 'rabbit anti-PU.1', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'line': 'K562', 'with': '0.01% DMSO vehicle'}, 'GSM2042888': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '24hr'}, 'GSM1940193': {'with': '0.5 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940192': {'with': '0.5 mM NaBut', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940191': {'with': '0.5% 1xPBS vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1940190': {'with': '0.5% 1xPBS vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM1633688': {'type': 'Human Kupffer cells', 'treatment': 'Treatment with normal pancreas exosomes'}, 'GSM1443861': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'e1aWT-infected'}, 'GSM1443860': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'dl312-infected'}, 'GSM1443863': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'RB binding mutant-infected'}, 'GSM1443862': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'P300 binding mutant-infected'}, 'GSM1443864': {'line': 'IMR90 human primary lung embryo fibroblasts', 'type': 'contact-inhibited IMR90', 'infection': 'RB binding mutant and P300 binding mutant-infected'}, 'GSM2355498': {'type': 'Human embryonic stem cells'}, 'GSM2355494': {'type': 'Human embryonic stem cells'}, 'GSM2355496': {'type': 'Human embryonic stem cells'}, 'GSM2355490': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM2355492': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM3189398': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.560324', 'percentaligned': '0.961036662', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.140456'}, 'GSM3189399': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.588842', 'percentaligned': '0.954930736', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.780357', 'original': 'Control'}, 'GSM3189390': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.598012', 'percentaligned': '0.923144799', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.205912', 'original': 'Control'}, 'GSM3189391': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '65', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.565557', 'percentaligned': '0.94816058', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.255309'}, 'GSM3189392': {'boca': 'No', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C24', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '29', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.554396', 'percentaligned': '0.940328032', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.531576', 'original': 'Control'}, 'GSM3189393': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C49', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.533544', 'percentaligned': '0.956423557', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.809123', 'original': 'Case'}, 'GSM3189394': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C49', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.581626', 'percentaligned': '0.940066494', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.143362', 'original': 'Case'}, 'GSM3189395': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A02', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '13', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.595507', 'percentaligned': '0.959782842', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.184', 'original': 'Control'}, 'GSM3189396': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A02', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.744648', 'percentaligned': '0.957289', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.466191', 'original': 'Control'}, 'GSM3189397': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C46', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.590309', 'percentaligned': '0.929875002', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.415428', 'original': 'Control'}, 'GSM1914606': {'type': 'cerebral organoid'}, 'GSM1874940': {'type': 'Subcortical White Matter'}, 'GSM1874941': {'type': 'Cortical Gray Matter'}, 'GSM1874942': {'type': 'Cortical Gray Matter'}, 'GSM1874943': {'type': 'Cortical Gray Matter'}, 'GSM1874944': {'type': 'Cortical Gray Matter'}, 'GSM1874945': {'type': 'Cortical Gray Matter'}, 'GSM1874946': {'type': 'Cortical Gray Matter'}, 'GSM2325796': {'type': 'Differentiated embryonic stem cell'}, 'GSM2595219': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '32'}, 'GSM2595218': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '24'}, 'GSM2595211': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '3'}, 'GSM2595210': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '237'}, 'GSM2325799': {'type': 'Differentiated embryonic stem cell'}, 'GSM2595212': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '18'}, 'GSM2595215': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '79'}, 'GSM2595214': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '33'}, 'GSM2595217': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '29'}, 'GSM2595216': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '29'}, 'GSM2055793': {'tissue': 'Normal tissue adjacent to colorectal cancer'}, 'GSM2055792': {'tissue': 'Normal tissue adjacent to breast cancer'}, 'GSM2055791': {'tissue': 'Normal tissue adjacent to bladder urothelial carcinoma'}, 'GSM2055790': {'tissue': 'Stomach'}, 'GSM2055797': {'tissue': 'Normal tissue adjacent to prostate cancer'}, 'GSM2055796': {'tissue': 'Normal tissue adjacent to clear cell carcinoma'}, 'GSM2055795': {'tissue': 'Normal tissue adjacent to hepatocellular carcinoma'}, 'GSM2055794': {'tissue': 'Normal tissue adjacent to gastric cancer'}, 'GSM2055799': {'tissue': 'Breast cancer'}, 'GSM2055798': {'tissue': 'Bladder urothelial carcinoma'}, 'GSM2324208': {'group': 'LowA422', 'type': 'PBMC', 'day': '28', 'subjectid': '2809'}, 'GSM2324209': {'group': 'LowA422', 'type': 'PBMC', 'day': '56', 'subjectid': '2809'}, 'GSM2324204': {'group': 'LowA422', 'type': 'PBMC', 'day': '56', 'subjectid': '2730'}, 'GSM2324205': {'group': 'LowA422', 'type': 'PBMC', 'day': '84', 'subjectid': '2730'}, 'GSM2324206': {'group': 'LowA422', 'type': 'PBMC', 'day': '0', 'subjectid': '2809'}, 'GSM2324207': {'group': 'LowA422', 'type': 'PBMC', 'day': '14', 'subjectid': '2809'}, 'GSM2324200': {'group': 'LowA422', 'type': 'PBMC', 'day': '56', 'subjectid': '2408'}, 'GSM2324201': {'group': 'LowA422', 'type': 'PBMC', 'day': '0', 'subjectid': '2730'}, 'GSM2324202': {'group': 'LowA422', 'type': 'PBMC', 'day': '14', 'subjectid': '2730'}, 'GSM2324203': {'group': 'LowA422', 'type': 'PBMC', 'day': '28', 'subjectid': '2730'}, 'GSM2361966': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361967': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361964': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361965': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361962': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361963': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361960': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361961': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705348': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 13', 'dilution': '1:10'}, 'GSM2705349': {'date': '19.01.2017', 'additive': 'TMAC', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 14', 'dilution': '1:10'}, 'GSM2361968': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361969': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1970440': {'line': 'OE', 'type': 'normal ovarian epithelial cell line'}, 'GSM2845458': {'line': 'RUES2', 'type': 'Embryonic stem cells (ESC)', 'point': 'Day 0 of differentiation'}, 'GSM2711161': {'line': 'HEK293 (ATCC)', 'treatment': 'treated with 1uM Senexin B for 3 hours'}, 'GSM2711160': {'line': 'HEK293 (ATCC)', 'treatment': 'treated with 1uM Senexin B for 3 hours'}, 'GSM2711163': {'line': 'HEK293 (ATCC)', 'treatment': 'pre-treated with 0.1% DMSO (vehicle control) for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2711162': {'line': 'HEK293 (ATCC)', 'treatment': 'pre-treated with 0.1% DMSO (vehicle control) for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2711165': {'line': 'HEK293 (ATCC)', 'treatment': 'pre-treated with 1uM Senexin B for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2711164': {'line': 'HEK293 (ATCC)', 'treatment': 'pre-treated with 0.1% DMSO (vehicle control) for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2711167': {'line': 'HEK293 (ATCC)', 'treatment': 'pre-treated with 1uM Senexin B for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2711166': {'line': 'HEK293 (ATCC)', 'treatment': 'pre-treated with 1uM Senexin B for 1 hour, then treated with 10ng/mL TNF-alpha for 2 hours'}, 'GSM2166244': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166245': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166246': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166247': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166240': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166241': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166242': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166243': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2536673': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 1', 'treatment': 'pre-treatment'}, 'GSM2627040': {'origin': 'small intestine', 'patient_id': '133', 'type': 'liver metastasis', 'tumor_id': '107'}, 'GSM2536675': {'tissue': 'Melanoma biopsy', 'id': 'melanoma patient 2', 'treatment': 'pre-treatment'}, 'GSM2627042': {'origin': 'small intestine', 'patient_id': '68', 'type': 'liver metastasis', 'tumor_id': '42'}, 'GSM2627043': {'origin': 'small intestine', 'patient_id': '70', 'type': 'liver metastasis', 'tumor_id': '44'}, 'GSM2774143': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax'}, 'GSM3594381': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594380': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594383': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594382': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594385': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594384': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594387': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594386': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594389': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2627048': {'origin': 'small intestine', 'patient_id': '81', 'type': 'liver metastasis', 'tumor_id': '55'}, 'GSM2665973': {'age': 'Day 130', 'well': 'G10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM3099430': {'stimulation': 'Non-stimulated control', 'type': 'Bronchial epithelial cells'}, 'GSM2665971': {'age': 'Day 130', 'well': 'C10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2242889': {'line': 'A375', 'replicate': '4'}, 'GSM2242888': {'line': 'A375', 'replicate': '4'}, 'GSM2630279': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630278': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2242881': {'line': 'A375', 'replicate': '4'}, 'GSM2242880': {'line': 'A375', 'replicate': '4'}, 'GSM2630275': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630274': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630273': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2242884': {'line': 'A375', 'replicate': '4'}, 'GSM2630271': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2242886': {'line': 'A375', 'replicate': '4'}, 'GSM984398': {'line': 'C4-2B', 'antibody': 'H3K4Me3', 'treatment': 'DHT treated (4h)', 'manufacturer': 'Millipore'}, 'GSM3594388': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1571122': {'stage': 'definitive cardiomyocyte'}, 'GSM1571123': {'stage': 'definitive cardiomyocyte'}, 'GSM1558602': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558603': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558601': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558606': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558607': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558604': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2100160': {'rin': '10', 'Sex': 'Male', 'sspg': '282', 'age': '70', 'bmi': '36.1', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '551', 'method': 'Life-Tech GITC'}, 'GSM2037124': {'type': 'HUVEC', 'experiment': 'experiment 2', 'run': '2nd Run', 'condition': 'Hypoxia_24h'}, 'GSM2037125': {'type': 'HUVEC', 'experiment': 'experiment 2', 'run': '2nd Run', 'condition': 'Hypoxia_24h'}, 'GSM2037126': {'type': 'HUVEC', 'experiment': 'experiment 1', 'run': '1st Run', 'condition': 'Hypoxia_48h'}, 'GSM2037127': {'type': 'HUVEC', 'experiment': 'experiment 1', 'run': '1st Run', 'condition': 'Hypoxia_48h'}, 'GSM2100163': {'rin': '7', 'Sex': 'Female', 'sspg': '48', 'age': '58', 'bmi': '26', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Hispanic', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '553', 'method': 'Qiagen:trizol'}, 'GSM2037122': {'type': 'HUVEC', 'experiment': 'experiment 2', 'run': '2nd Run', 'condition': 'Normoxia_24h'}, 'GSM2037123': {'type': 'HUVEC', 'experiment': 'experiment 2', 'run': '2nd Run', 'condition': 'Normoxia_24h'}, 'GSM2455788': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455789': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2451000': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2455780': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2100165': {'rin': '10', 'Sex': 'Female', 'sspg': '171', 'notes': 'Earlier-MEF Passage Thawed', 'bmi': '29', 'batch': '1-50', 'by': 'AP', 'cell': 'Erythroblasts', 'age': '41', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '01:20:00 AM', 'passage': '10', 'indiv': '558', 'method': 'Life-Tech GITC'}, 'GSM2455782': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455783': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455784': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455785': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455786': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455787': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2451005': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451004': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2632659': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632658': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632653': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632652': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632651': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632650': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632657': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632656': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632655': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632654': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142570': {'gender': 'male', 'age': '75', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM2142571': {'gender': 'female', 'age': '64', 'who': '0', 'dead': '1', 'date': '2012-04-01', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2142572': {'gender': 'female', 'age': '74', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM2142573': {'gender': 'female', 'age': '49', 'who': '1', 'dead': '1', 'date': '2010-10-05', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2142574': {'gender': 'female', 'age': '59', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '5', 'smoking': '1'}, 'GSM2142575': {'gender': 'male', 'age': '65', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '5', 'smoking': '2'}, 'GSM2142576': {'gender': 'male', 'age': '61', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '3', 'smoking': '2'}, 'GSM2142577': {'gender': 'male', 'age': '82', 'who': '1', 'dead': '1', 'date': '2011-05-26', 'histology': '1', 'tnm': '3', 'smoking': '1'}, 'GSM2142578': {'gender': 'male', 'age': '72', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '2', 'smoking': '2'}, 'GSM2142579': {'gender': 'male', 'age': '84', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM1517773': {'knockdown': 'shMITF', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM2084390': {'induction': 'PMA+LPS', 'time': '48 hr'}, 'GSM1517771': {'knockdown': 'shMITF', 'line': 'Hermes 3A', 'type': 'melanocyte'}, 'GSM1244817': {'type': 'MCF7', 'treatment': 'Control ethanol 24h'}, 'GSM1244816': {'type': 'MCF7', 'treatment': 'Control ethanol 24h'}, 'GSM1244815': {'type': 'MCF7', 'treatment': '10nM E2 treatment for 24h'}, 'GSM1244814': {'type': 'MCF7', 'treatment': '10nM E2 treatment for 24h'}, 'GSM1244813': {'type': 'MCF7', 'treatment': '10nM E2 treatment for 24h'}, 'GSM1446799': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'GSI 72 hrs', 'passage': '--'}, 'GSM1244811': {'type': 'MCF7', 'treatment': '10nM E2 treatment for 24h'}, 'GSM1244810': {'type': 'MCF7', 'treatment': '10nM E2 treatment for 24h'}, 'GSM1446794': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '--'}, 'GSM1446795': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'vehicle', 'passage': '--'}, 'GSM1446796': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'GSI 72 hrs', 'passage': '--'}, 'GSM1446797': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '--'}, 'GSM1446790': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'GSI 72 hrs', 'passage': '--'}, 'GSM1446791': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'GSI 72 hrs, wash out 4 hrs', 'passage': '--'}, 'GSM1244819': {'type': 'MCF7', 'treatment': 'Control ethanol 24h'}, 'GSM1446793': {'line': 'HCC1599', 'type': 'Triple negative breast cancer cell line containing an activating Notch1 mutation, grown in suspension', 'treatment': 'GSI 72 hrs', 'passage': '--'}, 'GSM2285714': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM1915709': {'gender': 'female', 'line': 'YB5', 'tissue': 'colorectal adenocarcinoma', 'type': 'C, grade IV'}, 'GSM2285710': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM2285711': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM2285712': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM2285713': {'line': 'MCF10A', 'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM1915700': {'status': 'positive', 'gender': 'female', 'line': 'MCF7', 'tissue': 'mammary gland, breast', 'type': 'breast cancer cell line'}, 'GSM1915701': {'status': 'positive', 'gender': 'female', 'line': 'MCF7', 'tissue': 'mammary gland, breast', 'type': 'breast cancer cell line'}, 'GSM1915702': {'status': 'positive', 'gender': 'female', 'line': 'MCF7', 'tissue': 'mammary gland, breast', 'type': 'breast cancer cell line'}, 'GSM1915703': {'status': 'positive', 'gender': 'female', 'line': 'MCF7', 'tissue': 'mammary gland, breast', 'type': 'breast cancer cell line'}, 'GSM1915704': {'gender': 'female', 'line': 'YB5', 'tissue': 'colorectal adenocarcinoma', 'type': 'C, grade IV'}, 'GSM1915705': {'gender': 'female', 'line': 'YB5', 'tissue': 'colorectal adenocarcinoma', 'type': 'C, grade IV'}, 'GSM1915706': {'gender': 'female', 'line': 'YB5', 'tissue': 'colorectal adenocarcinoma', 'type': 'C, grade IV'}, 'GSM1915707': {'gender': 'female', 'line': 'YB5', 'tissue': 'colorectal adenocarcinoma', 'type': 'C, grade IV'}, 'GSM2665983': {'age': 'Day 130', 'well': 'B8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1172849': {'subtype': 'Basal', 'line': '21PT', 'type': 'breast cancer'}, 'GSM1498315': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498314': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM2665987': {'age': 'Day 130', 'well': 'D5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM1498312': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498311': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1498310': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM1948557': {'sirna': 'siCtrl', 'replicates': '2'}, 'GSM1948556': {'sirna': 'siCDC73', 'replicates': '2'}, 'GSM1948555': {'sirna': 'siMYC', 'replicates': '1'}, 'GSM1948554': {'sirna': 'siCtrl', 'replicates': '1'}, 'GSM1172844': {'subtype': 'Non-malignant', 'line': '184A1', 'type': 'breast cancer'}, 'GSM1172845': {'subtype': 'Non-malignant', 'line': '184B5', 'type': 'breast cancer'}, 'GSM1172846': {'subtype': 'Basal', 'line': '21MT1', 'type': 'breast cancer'}, 'GSM2728740': {'protocol': 'mNET-seq (Nojima et al., 2016; Schlackow et al., 2017)', 'genotype': 'CDK9as', 'antibody': 'MABI0601 (BIOZOL)', 'type': 'B lymphocyte cells', 'line': 'Raji', 'conditions': '15 min of 5 µM of 1-NA-PP1 (CDK9as inhibitor) (Calbiochem, EMD Millipore).'}, 'GSM2316797': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316796': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316795': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316794': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316793': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316792': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316791': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316790': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2242883': {'line': 'A375', 'replicate': '4'}, 'GSM2316799': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316798': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM1890708': {'line': 'HT-29', 'treatment': 'DMSO'}, 'GSM1890709': {'line': 'HT-29', 'treatment': 'JQ.1'}, 'GSM2242882': {'line': 'A375', 'replicate': '4'}, 'GSM1890700': {'line': 'SW 480', 'treatment': 'DMSO'}, 'GSM2242885': {'line': 'A375', 'replicate': '4'}, 'GSM1890702': {'line': 'SW 480', 'treatment': 'DMSO'}, 'GSM1890703': {'line': 'SW 480', 'treatment': 'JQ.1'}, 'GSM1890704': {'line': 'SW 480', 'treatment': 'JQ.1'}, 'GSM1890705': {'line': 'SW 480', 'treatment': 'JQ.1'}, 'GSM1890706': {'line': 'HT-29', 'treatment': 'DMSO'}, 'GSM1890707': {'line': 'HT-29', 'treatment': 'DMSO'}, 'GSM2242887': {'line': 'A375', 'replicate': '4'}, 'GSM2630270': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2298411': {'status': 'wt', 'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'DMSO', 'batch': '2'}, 'GSM2298410': {'status': 'wt', 'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'DMSO', 'batch': '1'}, 'GSM2298413': {'status': 'wt', 'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM2298412': {'status': 'wt', 'line': 'Osteosarcoma Cell Line SJSA', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM1273619': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1273618': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2233333': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233332': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233331': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233330': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233337': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233336': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233335': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233334': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1145142': {'line': 'HEK293T', 'replicate': '3', 'rna': 'HBG1,HBG2'}, 'GSM1145141': {'line': 'HEK293T', 'replicate': '2', 'rna': 'HBG1,HBG2'}, 'GSM1145140': {'line': 'HEK293T', 'replicate': '1', 'rna': 'HBG1,HBG2'}, 'GSM2754913': {'bin': '5', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '04_0779', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754912': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_1003', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754911': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_1003', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754910': {'bin': '2', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_1003', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754917': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754916': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': '12', 'type': 'Tcells'}, 'GSM2754915': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754914': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_0779', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754919': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0843', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754918': {'bin': '5', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_0663', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754617': {'bin': '5', 'group': 'case', 'qft': 'indeterminate', 'gender': 'male', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0695', 'previousdiagnosisoftb': 'No', 'tst': '20', 'type': 'Tcells'}, 'GSM2287718': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287719': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287716': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2635313': {'line': 'MG63.3', 'antibody': 'rabbit anti-c-Fos (Santa Cruz #sc-52)'}, 'GSM2287714': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287715': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287712': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287713': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287710': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2745899': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '113,495,410', 'totalnummappedreads': '105,517,453', 'age': '36.48', 'percentexonicmapping': '27.291079', 'Sex': 'Female', 'rin': '8.3', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.76', 'brainid': '1134'}, 'GSM854403': {'line': 'K562', 'type': 'K-562 std gel sized', 'size': '223.877392'}, 'GSM854407': {'line': 'K562', 'type': 'K-562 truseq 500ng', 'size': '227.16942'}, 'GSM854406': {'line': 'K562', 'type': 'K-562 truseq 1000ng', 'size': '173.245305'}, 'GSM854405': {'line': 'K562', 'type': 'K-562 truseq 3000ng', 'size': '185.42764'}, 'GSM854404': {'line': 'K562', 'type': 'K-562 truseq 10000ng', 'size': '172.945267'}, 'GSM854409': {'line': 'K562', 'type': 'K-562 truseq 100ng', 'size': '179.351572'}, 'GSM854408': {'line': 'K562', 'type': 'K-562 truseq 250ng', 'size': '203.395985'}, 'GSM485432': {'line': 'NA18511'}, 'GSM2752515': {'line': 'A549', 'type': 'lung cancer cell', 'treatment': 'negative control siRNA'}, 'GSM2752514': {'line': 'A549', 'type': 'lung cancer cell', 'treatment': 'negative control siRNA'}, 'GSM2752517': {'line': 'A549', 'type': 'lung cancer cell', 'treatment': 'siRNA targeting SBF2-AS1'}, 'GSM2752516': {'line': 'A549', 'type': 'lung cancer cell', 'treatment': 'siRNA targeting SBF2-AS1'}, 'GSM1940649': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2158119': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158118': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2562642': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562643': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562644': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562645': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562646': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562647': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2158111': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158110': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158113': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158112': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158115': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158114': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158117': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158116': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2391950': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM3586556': {'origin': 'GCB', 'pfstt': '1280', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1280', 'cycles': '8', 'oscs': '0'}, 'GSM2543670': {'library_id': 'lib5799', 'stim': 'NS', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511580': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543672': {'library_id': 'lib5801', 'stim': 'TT', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543673': {'library_id': 'lib5802', 'stim': 'DM', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511585': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543675': {'library_id': 'lib5804', 'stim': 'CR', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543676': {'library_id': 'lib5805', 'stim': 'TT', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543677': {'library_id': 'lib5806', 'stim': 'DM', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543678': {'library_id': 'lib5807', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543679': {'library_id': 'lib5808', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2630159': {'line': 'DV-90', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib + SAR405843'}, 'GSM2147878': {'patient': 'P502', 'age': '39', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147879': {'patient': 'P502', 'age': '39', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147872': {'patient': 'P500', 'age': '28', 'Sex': 'male', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147873': {'patient': 'P500', 'age': '28', 'Sex': 'male', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2840531': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2147876': {'patient': 'P500', 'age': '28', 'Sex': 'male', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147877': {'patient': 'P500', 'age': '28', 'Sex': 'male', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '12mo', 'ethnicity': 'Caucasian'}, 'GSM2147874': {'patient': 'P500', 'age': '28', 'Sex': 'male', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147875': {'patient': 'P500', 'age': '28', 'Sex': 'male', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM1333764': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333765': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333766': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333767': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333760': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333761': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333762': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM1333763': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM2840530': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1333768': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333769': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM2053721': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053722': {'type': 'glioblastoma (Grade IV)'}, 'GSM2391184': {'disease': 'NSCLC'}, 'GSM2840532': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1397514': {'tissue': 'osteoblasts'}, 'GSM2491430': {'disease': 'Other Febrile Illness', 'condition': 'Other Febrile Illness'}, 'GSM2085748': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2816198': {'line': 'H9'}, 'GSM2535689': {'projectid': 'P48', 'lane': '2,6', 'samplelabel': 'lib1157', 'samplename': '1gr_413CD3_C31', 'seqsite': 'BRI', 'sampleID': 'S13284', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1157', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C31'}, 'GSM2840535': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2535680': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1146', 'samplename': '1_413UNST_C59', 'seqsite': 'BRI', 'sampleID': 'S13230', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1146', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C59'}, 'GSM2535681': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1147', 'samplename': '1_413UNST_C71', 'seqsite': 'BRI', 'sampleID': 'S13189', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1147', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C71'}, 'GSM2535682': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1148', 'samplename': '1_413UNST_C77', 'seqsite': 'BRI', 'sampleID': 'S13206', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1148', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C77'}, 'GSM2816193': {'line': 'H9'}, 'GSM2535684': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1150', 'samplename': '1_413UNST_C89', 'seqsite': 'BRI', 'sampleID': 'S13194', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1150', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C89'}, 'GSM2535685': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1151', 'samplename': '1_413UNST_C95', 'seqsite': 'BRI', 'sampleID': 'S13211', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1151', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C95'}, 'GSM2535686': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1152', 'samplename': '1_413UNST_C66', 'seqsite': 'BRI', 'sampleID': 'S13219', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1152', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C66'}, 'GSM2535687': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1153', 'samplename': '1_413UNST_C72', 'seqsite': 'BRI', 'sampleID': 'S13191', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1153', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C72'}, 'GSM2840534': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2905290': {'line': 'H9', 'protocol': 'BMPi', 'stage': 'day 32'}, 'GSM2905291': {'line': 'H9', 'protocol': 'BMPi', 'stage': 'day 32'}, 'GSM2905292': {'line': 'H9', 'protocol': 'BMPa', 'stage': 'day 32'}, 'GSM2905293': {'line': 'H9', 'protocol': 'BMPa', 'stage': 'day 32'}, 'GSM1376008': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1529689': {'line': 'HEK 293T', 'type': 'non-malignant cell line'}, 'GSM2392319': {'line': 'H1 stem cell line', 'multiplex': '6 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392318': {'line': 'H1 stem cell line', 'multiplex': '6 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376002': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2392316': {'line': 'H1 stem cell line', 'multiplex': '6 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392315': {'line': 'H1 stem cell line', 'multiplex': '6 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392314': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392313': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392312': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392311': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376005': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2840536': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2386554': {'line': 'U2OS', 'treatment': '10μM GSK 343 for 24h'}, 'GSM2386555': {'line': 'U2OS', 'treatment': '10μM GSK 343 for 24h'}, 'GSM2386556': {'line': 'U2OS', 'treatment': '5μM Rapamycin for 24h'}, 'GSM2386557': {'line': 'U2OS', 'treatment': '5μM Rapamycin for 24h'}, 'GSM2386550': {'line': 'U2OS', 'treatment': '0.5%(V/V) DMSO'}, 'GSM2386551': {'line': 'U2OS', 'treatment': '0.5%(V/V) DMSO'}, 'GSM2386552': {'line': 'U2OS', 'treatment': '1mM 2-PCPA for 12h'}, 'GSM2386553': {'line': 'U2OS', 'treatment': '1mM 2-PCPA for 12h'}, 'GSM2386558': {'line': 'U2OS', 'treatment': '5μM BIX-01294 for 12h'}, 'GSM2386559': {'line': 'U2OS', 'treatment': '20μM BRD4770 for 24h'}, 'GSM1826459': {'line': 'PC-3 prostate carcinoma cells', 'treatment': 'PBS', 'period': '5d'}, 'GSM1826458': {'line': 'PC-3 prostate carcinoma cells', 'treatment': 'PBS', 'period': '5d'}, 'GSM1826455': {'line': 'PC-3 prostate carcinoma cells', 'treatment': 'S-adenosylmethionine 160 micromolar', 'period': '5d'}, 'GSM1826454': {'line': 'PC-3 prostate carcinoma cells', 'treatment': 'S-adenosylmethionine 160 micromolar', 'period': '5d'}, 'GSM1826457': {'line': 'PC-3 prostate carcinoma cells', 'treatment': 'PBS', 'period': '5d'}, 'GSM1826456': {'line': 'PC-3 prostate carcinoma cells', 'treatment': 'S-adenosylmethionine 160 micromolar', 'period': '5d'}, 'GSM1507265': {'resistant': 'Yes'}, 'GSM2589144': {'1': '4-OHT'}, 'GSM2158212': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM1571335': {'line': 'MF', 'variation': 'SETD2 mutated'}, 'GSM1571334': {'line': 'FG2', 'variation': 'SETD2 mutated'}, 'GSM1571333': {'line': 'ER', 'variation': 'SETD2 mutated'}, 'GSM1571332': {'line': 'AB', 'variation': 'SETD2 mutated'}, 'GSM1571331': {'line': 'Caki2', 'variation': 'SETD2 wild-type'}, 'GSM1899540': {'line': 'HEK293T', 'transfection': 'siLUC'}, 'GSM3586554': {'origin': 'GCB', 'pfstt': '1452', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1452', 'cycles': '8', 'oscs': '0'}, 'GSM1624674': {'tumor': 'PDX', 'material': 'Fresh Frozen', 'treatment': 'pre-treatment'}, 'GSM2589148': {'1': '4-OHT', '2': 'DMSO', 'antibody': 'RNAPII (N20, Santa Cruz, sc-899)'}, 'GSM2158210': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158211': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158216': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2158217': {'gender': 'M', 'age': '68', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2274808': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33260', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9677', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C58', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9677', 'studysiteshort': 'YALE'}, 'GSM2274809': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33261', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9678', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C78', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9678', 'studysiteshort': 'YALE'}, 'GSM2274804': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33256', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9673', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C35', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9673', 'studysiteshort': 'YALE'}, 'GSM2274805': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33257', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9674', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C22', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9674', 'studysiteshort': 'YALE'}, 'GSM2274806': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33258', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9675', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C30', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9675', 'studysiteshort': 'YALE'}, 'GSM2274807': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33259', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9676', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C42', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9676', 'studysiteshort': 'YALE'}, 'GSM2274800': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33250', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9667', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C05', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9667', 'studysiteshort': 'YALE'}, 'GSM2274801': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33251', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9668', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C11', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9668', 'studysiteshort': 'YALE'}, 'GSM2274802': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33253', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9670', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C17', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9670', 'studysiteshort': 'YALE'}, 'GSM2274803': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33255', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9672', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C29', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9672', 'studysiteshort': 'YALE'}, 'GSM2649856': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM1620608': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620609': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620600': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620601': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620602': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620603': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620604': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620605': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620606': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620607': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2305822': {'tissue': 'colon'}, 'GSM1853936': {'tissue': 'bone marrow', 'obtention': 'collected by the Leukemia Cell Bank of Quebec'}, 'GSM1853937': {'tissue': 'bone marrow', 'obtention': 'collected by the Leukemia Cell Bank of Quebec'}, 'GSM1853938': {'tissue': 'bone marrow', 'obtention': 'collected by the Leukemia Cell Bank of Quebec'}, 'GSM2616651': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM1006903': {'description': 'Paired 36 nt reads', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'RHA013,RHA014', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'clone-free', 'biorep': '087N,088N'}, 'GSM2616650': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2307399': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307398': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM1395303': {'type': 'iPS clone'}, 'GSM2307391': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307390': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307393': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307392': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307395': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307394': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307397': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307396': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2666021': {'age': 'Day 130', 'well': 'E5', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM1395301': {'type': 'iPS clone'}, 'GSM2666020': {'age': 'Day 130', 'well': 'A7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1978815': {'line': 'MCF7', 'treatment': 'EZH2 Knock Down'}, 'GSM1558605': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2666023': {'age': 'Day 130', 'well': 'C3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1978814': {'line': 'MCF7', 'treatment': 'EZH2 Knock Down'}, 'GSM2666022': {'age': 'Day 130', 'well': 'A9', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM1395304': {'type': 'iPS clone'}, 'GSM2305829': {'tissue': 'colon'}, 'GSM1395305': {'type': 'iPS clone'}, 'GSM1558608': {'tissue': 'Hepatocellular carcinoma primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1558609': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM937713': {'type': 'Human embryonic stem cell line'}, 'GSM937712': {'karyotype': 'Normal', 'type': 'iPS cell derived from BJ'}, 'GSM937711': {'type': 'iPS cell derived from BJ'}, 'GSM937710': {'karyotype': 'Normal', 'type': 'iPS cell derived from BJ'}, 'GSM1395801': {'subtype': 'Pro+Neu', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395800': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395803': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395802': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395805': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395804': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395807': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395806': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2209820': {'line': 'HepG2.2.15', 'lentivirus': 'CD36 overexpression'}, 'GSM2455781': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM767839': {'description': 'tier 3', 'localization': 'cytosol', 'datatype': 'RnaSeq', 'labexpid': 'LID18556', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '029C', 'spikeinpool': 'Nist14'}, 'GSM767838': {'lineage': 'ectoderm', 'description': 'tier 2', 'datatype': 'RnaSeq', 'labexpid': 'LID18551', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '012C', 'spikeinpool': 'Nist14'}, 'GSM1872878': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872879': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872876': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872877': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872874': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872875': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872872': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872873': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872870': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM1872871': {'gender': 'Female', 'age': 'young', 'tissue': 'bone'}, 'GSM2644638': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644639': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644630': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644631': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644632': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644633': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644634': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644635': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644636': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644637': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM1033540': {'genotype': 'wild type'}, 'GSM1953579': {'reference': 'Ambion FirstChoice® Human Brain Reference Total RNA'}, 'GSM1953578': {'reference': 'Agilent Universal Human Reference RNA'}, 'GSM1033546': {'genotype': 'wild type'}, 'GSM874648': {'antibody': 'anti-deoxyBrU', 'line': 'A549', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'Nuclear-Run On RNA'}, 'GSM1033548': {'genotype': 'SETBP1 D868N -/+'}, 'GSM1395751': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395750': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395753': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395752': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395755': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395754': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395757': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395756': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395759': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395758': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2455810': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455811': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455812': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455813': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455814': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455815': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455816': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455817': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455818': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455819': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2357916': {'condition': 'HDM treated'}, 'GSM2357917': {'condition': 'Microvesicle treated'}, 'GSM2357918': {'condition': 'HDM+Microvesicle treated'}, 'GSM2357919': {'condition': 'Control'}, 'GSM2784459': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '24h'}, 'GSM2784458': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '24h'}, 'GSM2784457': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '24h'}, 'GSM2784456': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '24h'}, 'GSM2784455': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '24h'}, 'GSM2784454': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '24h'}, 'GSM2784453': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '0h'}, 'GSM2784452': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '0h'}, 'GSM2784451': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '0h'}, 'GSM2784450': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '48h'}, 'GSM618479': {'status': 'ETV1+', 'name': 'LNCaP', 'site': 'None', 'state': 'cancer', 'line': 'LNCaP', 'type': 'Cell Line', 'id': 'NA'}, 'GSM3586550': {'origin': 'GCB', 'pfstt': '1094', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1094', 'cycles': '8', 'oscs': '0'}, 'GSM2084427': {'induction': 'Vitamin D3', 'time': '3 hr'}, 'GSM2084426': {'induction': 'Vitamin D3', 'time': '3 hr'}, 'GSM2084425': {'induction': 'Vitamin D3', 'time': '3 hr'}, 'GSM2084424': {'induction': 'DMSO/ATRA+LPS', 'time': '120 hr'}, 'GSM2084423': {'induction': 'DMSO/ATRA+LPS', 'time': '120 hr'}, 'GSM2084422': {'induction': 'DMSO/ATRA+LPS', 'time': '120 hr'}, 'GSM2084421': {'induction': 'DMSO/ATRA', 'time': '120 hr'}, 'GSM2084420': {'induction': 'DMSO/ATRA', 'time': '120 hr'}, 'GSM2084429': {'induction': 'Vitamin D3', 'time': '6 hr'}, 'GSM2084428': {'induction': 'Vitamin D3', 'time': '6 hr'}, 'GSM1681960': {'gender': 'male', 'age': '52', 'tissue': 'Tumor', 'class': 'II'}, 'GSM1681961': {'gender': 'male', 'age': '58', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681962': {'gender': 'female', 'age': '67', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681963': {'gender': 'female', 'age': '65', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681964': {'gender': 'male', 'age': '65', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681965': {'gender': 'male', 'age': '53', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1866079': {'line': 'Gliobmastoma cell line'}, 'GSM1866078': {'line': 'Gliobmastoma cell line'}, 'GSM1681968': {'gender': 'female', 'age': '64', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681969': {'gender': 'male', 'age': '59', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1866075': {'line': 'Gliobmastoma cell line'}, 'GSM1866074': {'line': 'Gliobmastoma cell line'}, 'GSM2803242': {'line': 'HeyA8', 'tissue': 'Ovary', 'genotype': 'WT', 'infection': 'Treated cells with 1nM siCGA/UCG for 2 days'}, 'GSM1866072': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866071': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866070': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1968924': {'type': 'chondroblastoma', 'genotype': 'histone H3 wildtype'}, 'GSM1968925': {'type': 'chondroblastoma', 'genotype': 'histone H3.3 K36M mutant'}, 'GSM1968926': {'type': 'chondroblastoma', 'genotype': 'histone H3.3 K36M mutant'}, 'GSM1968927': {'type': 'chondroblastoma', 'genotype': 'histone H3.3 K36M mutant'}, 'GSM1968920': {'state': 'Ataxia Telangiectasia', 'type': 'neural progenitor'}, 'GSM1968921': {'state': 'Ataxia Telangiectasia', 'type': 'neural progenitor'}, 'GSM1968922': {'type': 'chondroblastoma', 'genotype': 'histone H3 wildtype'}, 'GSM1968923': {'type': 'chondroblastoma', 'genotype': 'histone H3 wildtype'}, 'GSM1968928': {'type': 'chondroblastoma', 'genotype': 'histone H3.3 K36M mutant'}, 'GSM1968929': {'type': 'chondroblastoma', 'genotype': 'histone H3.3 K36M mutant'}, 'GSM2932951': {'pucai': '45', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932950': {'pucai': '15', 'score': '4', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '11'}, 'GSM2932953': {'pucai': '15', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2932952': {'pucai': '25', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '17'}, 'GSM2932955': {'pucai': '85', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2932954': {'pucai': '80', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM1647007': {'illumina_index': '5', 'point': '4', 'batch': '5', 'agent': 'Staph', 'rin': '8.3', 'individual': 'M377'}, 'GSM1647006': {'illumina_index': '4', 'point': '48', 'batch': '5', 'agent': 'BCG', 'rin': '9.5', 'individual': 'M376'}, 'GSM2932959': {'pucai': '80', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '11'}, 'GSM2932958': {'pucai': '25', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '13'}, 'GSM1553091': {'type': 'BJ fibroblasts', 'doublings': '72'}, 'GSM2355510': {'type': 'Human embryonic stem cells'}, 'GSM2355511': {'type': 'Human embryonic stem cells'}, 'GSM2355512': {'type': 'Human embryonic stem cells'}, 'GSM2355513': {'type': 'Human embryonic stem cells'}, 'GSM2355514': {'type': 'Human embryonic stem cells'}, 'GSM2355515': {'type': 'Human embryonic stem cells'}, 'GSM2355516': {'type': 'Human embryonic stem cells'}, 'GSM2084283': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM2084282': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1517629': {'line': 'Ewing sarcoma cell line SKMNC', 'treatment': 'shFLI1', 'time': '96 hrs'}, 'GSM2084286': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM2084285': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM2084284': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM2084289': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM1517626': {'line': 'Ewing sarcoma cell line SKMNC', 'treatment': 'shGFP', 'time': '48 hrs'}, 'GSM1087859': {'labexpid': '12518', 'line': 'GM12878'}, 'GSM2803868': {'with': 'none (control)', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage', 'subject': 'Healthy Asian donors'}, 'GSM2803869': {'with': 'none (control)', 'age': '30-40 years old', 'tissue': 'Blood', 'type': 'Primary macrophage', 'subject': 'Healthy Asian donors'}, 'GSM2335509': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'wildtype'}, 'GSM2287124': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2563867': {'experiment': 'CEP701/Vehicle', 'group': '7', 'condition': 'ETOH'}, 'GSM2563866': {'experiment': 'CEP701/Vehicle', 'group': '7', 'condition': 'ETOH'}, 'GSM2563865': {'experiment': 'CEP701/Vehicle', 'group': '7', 'condition': 'ETOH'}, 'GSM2563864': {'experiment': 'DMSO/R1881', 'group': '6', 'condition': 'androgen'}, 'GSM2563863': {'experiment': 'DMSO/R1881', 'group': '6', 'condition': 'androgen'}, 'GSM2563862': {'experiment': 'DMSO/R1881', 'group': '6', 'condition': 'androgen'}, 'GSM2563861': {'experiment': 'DMSO/Vehicle', 'group': '5', 'condition': 'ETOH'}, 'GSM2563860': {'experiment': 'DMSO/Vehicle', 'group': '5', 'condition': 'ETOH'}, 'GSM2563869': {'experiment': 'CEP701/R1881', 'group': '8', 'condition': 'androgen'}, 'GSM2563868': {'experiment': 'CEP701/R1881', 'group': '8', 'condition': 'androgen'}, 'GSM2048910': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM1446798': {'line': 'REC1', 'type': 'Mantle cell lymphoma cell line containing an activating Notch1 mutation', 'treatment': 'vehicle', 'passage': '--'}, 'GSM3398130': {'genotype': 'G2019S', 'age': '49', 'astrocytes': '52.13', 'Sex': 'M', 'line': 'JR036-1', 'type': 'iPSC-derived midbrain-patterned astrocytes', 'method': 'Retrovirus'}, 'GSM3398131': {'genotype': 'G2019S', 'age': '57', 'astrocytes': '21.6', 'Sex': 'F', 'line': 'MK144-7', 'type': 'iPSC-derived midbrain-patterned astrocytes', 'method': 'Retrovirus'}, 'GSM3398132': {'genotype': 'G2019S', 'age': '57', 'astrocytes': '31.61', 'Sex': 'M', 'line': 'SFC855-03-06', 'type': 'iPSC-derived midbrain-patterned astrocytes', 'method': 'Cytotune 2.0 (Sendai virus)'}, 'GSM1244812': {'type': 'MCF7', 'treatment': '10nM E2 treatment for 24h'}, 'GSM1383565': {'line': 'REH-R', 'type': 'B-ALL', 'genotype': 'tet-regulated PAX5-IRES-GFP expression'}, 'GSM686914': {'transfection': 'siCTRL (1027280)', 'vendor': 'Santa Cruz', 'agent': 'vehicle', 'line': 'LNCaP', 'antibody': 'AR', 'transgenes': 'none'}, 'GSM1383566': {'line': 'REH-R', 'type': 'B-ALL', 'genotype': 'tet-regulated IRES-GFP expression (control)'}, 'GSM2259856': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259857': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2390748': {'disease': 'Healthy Control'}, 'GSM2390749': {'disease': 'Healthy Control'}, 'GSM2259852': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259853': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259850': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259851': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2390742': {'disease': 'Healthy Control'}, 'GSM2390740': {'disease': 'Healthy Control'}, 'GSM1244818': {'type': 'MCF7', 'treatment': 'Control ethanol 24h'}, 'GSM2390746': {'disease': 'Healthy Control'}, 'GSM2390747': {'disease': 'Healthy Control'}, 'GSM2259858': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259859': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM1708292': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1915708': {'gender': 'female', 'line': 'YB5', 'tissue': 'colorectal adenocarcinoma', 'type': 'C, grade IV'}, 'GSM1708290': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1708291': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1708296': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1708297': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1708294': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1708295': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1886848': {'line': 'SUDHL6', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM1886849': {'line': 'SUDHL6', 'treatment': 'treated with 10uM 79-6.1085 for 12h'}, 'GSM2429840': {'status': 'purified', 'type': 'iPS-derived cardiomyocytes', 'Stage': 'day 30 of differentiation'}, 'GSM2516919': {'death': '97', 'score': 'IV', 'post_mortem_interval': '2.98', 'caseid': '11-89', 'Sex': 'M', 'rin_score': '7.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655388'}, 'GSM2516918': {'death': '91', 'score': 'III', 'post_mortem_interval': '3.27', 'caseid': '10-42', 'Sex': 'M', 'rin_score': '7.2', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655482'}, 'GSM2516913': {'death': '80', 'score': 'III', 'post_mortem_interval': '2.5', 'caseid': '09-34', 'Sex': 'M', 'rin_score': '8.3', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655484'}, 'GSM2516912': {'death': '94', 'score': 'IV', 'post_mortem_interval': '2.5', 'caseid': '08-54', 'Sex': 'F', 'rin_score': '7.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655383'}, 'GSM2516911': {'death': '81', 'score': 'IV', 'post_mortem_interval': '2.25', 'caseid': '11-05', 'Sex': 'M', 'rin_score': '7.7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655486'}, 'GSM2516910': {'death': '87', 'score': 'IV', 'post_mortem_interval': '2', 'caseid': '00-39', 'Sex': 'M', 'rin_score': '7.2', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655404'}, 'GSM2516917': {'death': '84', 'score': 'V', 'post_mortem_interval': '1.5', 'caseid': '04-55', 'Sex': 'M', 'rin_score': '6.9', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655454'}, 'GSM2516916': {'death': '93', 'score': 'IV', 'post_mortem_interval': '2.15', 'caseid': '11-11', 'Sex': 'F', 'rin_score': '7.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655406'}, 'GSM2516915': {'death': '82', 'score': 'IV', 'post_mortem_interval': '4.5', 'caseid': '00-28', 'Sex': 'F', 'rin_score': '6.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655390'}, 'GSM2516914': {'death': '97', 'score': 'III', 'post_mortem_interval': '1.87', 'caseid': '09-05', 'Sex': 'M', 'rin_score': '6', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655479'}, 'GSM1172848': {'subtype': 'Basal', 'line': '21NT', 'type': 'breast cancer'}, 'GSM1498316': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM2665981': {'age': 'Day 130', 'well': 'B9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665980': {'age': 'Day 130', 'well': 'H4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM3594468': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594469': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594464': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM1498313': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'Vehicle'}, 'GSM3594466': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594467': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594460': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594461': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594462': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594463': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM2665985': {'age': 'Day 130', 'well': 'G3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM1948558': {'sirna': 'siMYC', 'replicates': '2'}, 'GSM2665989': {'age': 'Day 130', 'well': 'F2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665988': {'age': 'Day 130', 'well': 'G2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2204788': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204789': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204784': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204785': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204786': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204787': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204780': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1367030': {'status': 'Positive', 'therapy': 'Enzalutamide', 'type': 'Metastatic castration resistant prostate cancer'}, 'GSM2204782': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204783': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1478319': {'type': 'circulating pancreas tumor single cell in lysis buffer', 'patient': 'HP1'}, 'GSM1498319': {'state': 'non-asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM1172847': {'subtype': 'Basal', 'line': '21MT2', 'type': 'breast cancer'}, 'GSM2309025': {'line': 'H9 ESC', 'type': 'Human Embryonic Stem Cells'}, 'GSM2309024': {'line': 'Derived from H9 ESC', 'type': 'Human ESC-derived Neuroectodermal Cells'}, 'GSM2309027': {'line': 'Derived from H9 ESC', 'type': 'Human ESC-derived Neuroectodermal Cells'}, 'GSM2434020': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434021': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434022': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2275053': {'area_under_the_curve': '0.873943438', 'siteandparticipantcode': '689968', 'baseline_area_under_the_curve': '0.873943438', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '921849', 'sampleID': 'S12590', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib898', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'Control', 'name': 'AbATE_689968', 'gender': 'Female', 'age': '25', 'race': 'White', 'libraryid': 'lib898', 'studysiteshort': 'PNRI'}, 'GSM2434024': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434025': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434026': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434027': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434028': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434029': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2309023': {'line': 'H9 ESC', 'type': 'Human Embryonic Stem Cells'}, 'GSM957409': {'sample': 'GM14506', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1735'}, 'GSM957408': {'sample': 'GM14468', 'protocol': 'non-directional', 'relation': 'twin sister', 'family': '1721'}, 'GSM957401': {'sample': 'GM14432', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1710'}, 'GSM957400': {'sample': 'GM14409', 'protocol': 'non-directional', 'relation': 'twin brother', 'family': '1705'}, 'GSM957403': {'sample': 'GM14447', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1715'}, 'GSM957402': {'sample': 'GM14433', 'protocol': 'non-directional', 'relation': 'twin sister', 'family': '1710'}, 'GSM957405': {'sample': 'GM14452', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1716'}, 'GSM957404': {'sample': 'GM14448', 'protocol': 'non-directional', 'relation': 'twin sister', 'family': '1715'}, 'GSM957407': {'sample': 'GM14467', 'protocol': 'non-directional', 'relation': 'proband', 'family': '1721'}, 'GSM957406': {'sample': 'GM14453', 'protocol': 'non-directional', 'relation': 'twin sister', 'family': '1716'}, 'GSM3586436': {'origin': 'GCB', 'pfstt': '1475', 'pfscs': '0', 'region': 'Other', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1478', 'cycles': '6', 'oscs': '0'}, 'GSM3586437': {'origin': 'GCB', 'pfstt': '1285', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1285', 'cycles': '6', 'oscs': '0'}, 'GSM3586438': {'origin': 'GCB', 'pfstt': '917', 'pfscs': '0', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '917', 'cycles': '6', 'oscs': '0'}, 'GSM3586439': {'origin': 'GCB', 'pfstt': '1481', 'pfscs': '0', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1481', 'cycles': '6', 'oscs': '0'}, 'GSM2316612': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316613': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316610': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316611': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316616': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316617': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316614': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316615': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316618': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316619': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1564649': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '7.3', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564648': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '5.7', 'with': 'DHT (dihydrotestosterone)'}, 'GSM2536298': {'phenotype': '8hr infected with mutant VP24 virus'}, 'GSM1890701': {'line': 'SW 480', 'treatment': 'DMSO'}, 'GSM1564641': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '9', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2536297': {'phenotype': '8hr infected with wild-type virus'}, 'GSM1564643': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1564642': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1564645': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '2.4', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564644': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1564647': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '3.5', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564646': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '2', 'with': 'DHT (dihydrotestosterone)'}, 'GSM2695676': {'treatment': 'overexpression of YAP1'}, 'GSM2695674': {'treatment': 'empty vector'}, 'GSM2695675': {'treatment': 'overexpression of YAP1'}, 'GSM2695672': {'treatment': 'empty vector'}, 'GSM2695673': {'treatment': 'empty vector'}, 'GSM2695670': {'treatment': 'siRNA interference of YAP1'}, 'GSM2695671': {'treatment': 'siRNA interference of YAP1'}, 'GSM1846912': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846913': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846910': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846911': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846916': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM1846917': {'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM1846914': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846915': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM2142327': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'Rx+sox-34+KIT+'}, 'GSM2571023': {'antibody': 'none', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571024': {'antibody': 'none', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571025': {'antibody': 'none', 'line': 'HCT116', 'shRNA': 'No shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571026': {'antibody': 'none', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571027': {'antibody': 'none', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571028': {'antibody': 'H3K27ac (CST, catalog# 8173, lot# 1)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571029': {'antibody': 'H3K27ac (CST, catalog# 8173, lot# 1)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1338141': {'gender': 'Male', 'age': '59', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1338140': {'gender': 'Male', 'age': '63', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1338142': {'gender': 'Male', 'age': '58', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1464338': {'status': 'small cell lung cancer'}, 'GSM1464339': {'status': 'small cell lung cancer'}, 'GSM1898078': {'line': 'CD133+ D456MG', 'stage': 'Glioblastoma Grade IV'}, 'GSM1898079': {'line': 'CD133+ D456MG', 'stage': 'Glioblastoma Grade IV'}, 'GSM1712118': {'line': 'MR49F', 'treatment': 'Enzalutamide-Treated'}, 'GSM1898076': {'line': 'CD133+ D456MG', 'stage': 'Glioblastoma Grade IV'}, 'GSM1898077': {'line': 'CD133+ D456MG', 'stage': 'Glioblastoma Grade IV'}, 'GSM1898074': {'line': 'CD133+ D456MG', 'stage': 'Glioblastoma Grade IV'}, 'GSM1898075': {'line': 'CD133+ D456MG', 'stage': 'Glioblastoma Grade IV'}, 'GSM1464332': {'status': 'small cell lung cancer'}, 'GSM1464333': {'status': 'small cell lung cancer'}, 'GSM1464330': {'status': 'small cell lung cancer'}, 'GSM1464331': {'status': 'small cell lung cancer'}, 'GSM1464336': {'status': 'small cell lung cancer'}, 'GSM2233339': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1464337': {'status': 'small cell lung cancer'}, 'GSM4599139': {'type': 'melanoma', 'name': 'UACC62R', 'treatment': '10 uM CCG-222740'}, 'GSM2348525': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM4599133': {'type': 'melanoma', 'name': 'UACC62P', 'treatment': '10 uM CCG-222740'}, 'GSM4599131': {'type': 'melanoma', 'name': 'UACC62P', 'treatment': '10 uM CCG-222740'}, 'GSM4599137': {'type': 'melanoma', 'name': 'UACC62P', 'treatment': '10 uM CCG-222740'}, 'GSM4599135': {'type': 'melanoma', 'name': 'UACC62P', 'treatment': '10 uM CCG-222740'}, 'GSM2714519': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714518': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714513': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714512': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714511': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714510': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714517': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714516': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714515': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM2714514': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM1273617': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1273616': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1273615': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM958743': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '10876', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '400'}, 'GSM2816107': {'line': 'H9'}, 'GSM958741': {'description': 'Single 75 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': '11204', 'readtype': '1x75D', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': 'None'}, 'GSM958740': {'description': 'Single 75 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': '11210', 'readtype': '1x75D', 'mapalgorithm': 'TH1014', 'sex': 'U', 'replicate': '1', 'treatment': 'None', 'insertlength': 'None'}, 'GSM958747': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '11038', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'labversion': '02971', 'insertlength': '200'}, 'GSM958746': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '11587', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM958745': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '11581', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM2816106': {'line': 'H9'}, 'GSM958749': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'biomaterial_type': 'immortalized cell line', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'labexpid': '12096', 'line': 'HCT-116', 'insertlength': '200'}, 'GSM958748': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '11039', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'labversion': '02973,02970', 'insertlength': '200'}, 'GSM2816105': {'line': 'H9'}, 'GSM2394434': {'type': 'HAEC', 'treatment': 'il1b, 4h', 'passage': '6 to 10'}, 'GSM2394435': {'type': 'HAEC', 'treatment': 'il1b, 4h', 'passage': '6 to 10'}, 'GSM2394436': {'type': 'HAEC', 'treatment': 'oxpapc, 4h', 'passage': '6 to 10'}, 'GSM2816104': {'line': 'H9'}, 'GSM2394430': {'antibody': 'none', 'type': 'HAEC', 'treatment': 'TNFa, 4h, DSG', 'passage': '6 to 10'}, 'GSM2394431': {'antibody': 'none', 'type': 'HAEC', 'treatment': 'TNFa, 4h, formaldehyde', 'passage': '6 to 10'}, 'GSM2394432': {'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2394433': {'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2535613': {'treatment': 'ET1 JQ1'}, 'GSM2394438': {'type': 'HAEC', 'treatment': 'tnfa, 4h', 'passage': '6 to 10'}, 'GSM2394439': {'type': 'HAEC', 'treatment': 'tnfa, 4h', 'passage': '6 to 10'}, 'GSM2535612': {'treatment': 'ET1 JQ1'}, 'GSM2535611': {'treatment': 'ET1 JQ1'}, 'GSM2109391': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2535610': {'treatment': 'ET1 DMSO'}, 'GSM1841081': {'tissue': 'Synovial Fluid', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(+)', 'diagnosis': 'JIA patient'}, 'GSM2616048': {'line': 'SH-SY5Y', 'with': 'wildtype CLN1', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616049': {'line': 'SH-SY5Y', 'with': 'muant CLN1 L222P', 'treatment': 'RA-NBM differentiated cells'}, 'GSM1841080': {'tissue': 'Synovial Fluid', 'type': 'CD4+CD45RO+ T cells', 'treatment': 'JQ1(-)', 'diagnosis': 'JIA patient'}, 'GSM2616044': {'line': 'SH-SY5Y', 'with': 'empty vector', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616045': {'line': 'SH-SY5Y', 'with': 'empty vector', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616046': {'line': 'SH-SY5Y', 'with': 'wildtype CLN1', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616047': {'line': 'SH-SY5Y', 'with': 'wildtype CLN1', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2616043': {'line': 'SH-SY5Y', 'with': 'empty vector', 'treatment': 'RA-NBM differentiated cells'}, 'GSM2331206': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Pre-treatment'}, 'GSM2331207': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Pre-treatment'}, 'GSM2331204': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Pre-treatment'}, 'GSM2331205': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Pre-treatment'}, 'GSM2331202': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Pre-treatment'}, 'GSM2331203': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Pre-treatment'}, 'GSM2331200': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Pre-treatment'}, 'GSM2331201': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Pre-treatment'}, 'GSM1276872': {'score': '8.6', 'sequence': 'CTTGTA', 'targeted': 'RBM39', 'number': '12', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2331208': {'tissue': 'Adipose', 'treatment': 'n-3 PUFA', 'time': 'Pre-treatment'}, 'GSM2331209': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Post-treatment Pre-LPS'}, 'GSM1965292': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM896809': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (2-cell)', 'stage': 'early blastomere'}, 'GSM2309798': {'line': 'A549', 'tissue': 'lung adenocarcinoma'}, 'GSM1276875': {'score': '9.4', 'sequence': 'ACTTGA', 'targeted': 'SYNCRIP', 'number': '8', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2572700': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2572701': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced'}, 'GSM2572702': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced'}, 'GSM2572703': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced; DMSO'}, 'GSM2572704': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced, DMSO'}, 'GSM2572705': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Induced; ATMi'}, 'GSM2572706': {'line': 'DiVA (AsiSI-ER-U2OS) cells', 'type': 'U2OS-derived cells', 'treatment': 'Uninduced, ATMi'}, 'GSM2572707': {'tissue': 'blood', 'lanes': '6,7', 'number': '7', 'day': '0'}, 'GSM2572708': {'tissue': 'blood', 'lanes': '6,7', 'number': '7', 'day': '3'}, 'GSM2572709': {'tissue': 'blood', 'lanes': '6,7', 'number': '7', 'day': '7'}, 'GSM1276877': {'score': '8.3', 'sequence': 'CGATGT', 'targeted': 'SRSF1', 'number': '2', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276878': {'score': '9.1', 'sequence': 'ATCACG', 'targeted': 'SRSF1', 'number': '1', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1276879': {'score': '9.3', 'sequence': 'ACTTGA', 'targeted': 'SRSF10', 'number': '8', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1298379': {'tissue': '3-dimensional neuronal aggregates that resemble a first trimester telencephalon', 'group': '37C control'}, 'GSM2051119': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 5c'}, 'GSM2051118': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 3c'}, 'GSM2051117': {'line': 'THP-1', 'treatment': 'exposed at Arnica m. centesimal dilution 2c'}, 'GSM2051116': {'line': 'THP-1', 'treatment': 'untreated control'}, 'GSM2577202': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '20h'}, 'GSM2339453': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': '-'}, 'GSM2339452': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339451': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339450': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339457': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339456': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339455': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339454': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339459': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': '-'}, 'GSM2339458': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM1832780': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM3190692': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'Yes', 'visit': 'RV-C34', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'F', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', '4': 'No', '2': 'No', 'years': '12', 'libcounts': '5.433466', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM1832782': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1832783': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM3190697': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.827544'}, 'GSM3190696': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.77314'}, 'GSM3190695': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.558884'}, 'GSM3190694': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.88258'}, 'GSM3190699': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.923648'}, 'GSM3190698': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.856179'}, 'GSM2577203': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '20h'}, 'GSM2817782': {'type': 'PANC-1', 'treatment': 'gemcitabine 10uM 6h'}, 'GSM2817783': {'type': 'PANC-1', 'treatment': 'gemcitabine 10uM 6h'}, 'GSM2817780': {'type': 'PANC-1', 'treatment': 'gemcitabine 100nM 6h'}, 'GSM2817781': {'type': 'PANC-1', 'treatment': 'gemcitabine 10uM 6h'}, 'GSM2817786': {'type': 'PANC-1', 'treatment': 'gemcitabine 1uM 6h'}, 'GSM2817787': {'type': 'PANC-1', 'treatment': 'gemcitabine 1uM 6h'}, 'GSM2817784': {'type': 'PANC-1', 'treatment': 'gemcitabine 10uM 6h'}, 'GSM2817785': {'type': 'PANC-1', 'treatment': 'gemcitabine 1uM 6h'}, 'GSM2817788': {'type': 'PANC-1', 'treatment': 'gemcitabine 1uM 6h'}, 'GSM2817789': {'type': 'PANC-1', 'treatment': 'gemcitabine 300nM 6h'}, 'GSM2411378': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2679954': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM1980434': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980435': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980436': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980437': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980430': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980431': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980432': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980433': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980438': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980439': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM2436494': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2058085': {'line': 'V855', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1977408': {'tissue': 'neonatal cord blood', 'type': 'MEP+-'}, 'GSM2696531': {'status': '0', 'grade': '1', 'age': '47', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '2.1'}, 'GSM874636': {'vendor': 'Bethyl laboratories', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-hPAF1'}, 'GSM874637': {'vendor': 'Sigma', 'with': 'none (uninfected)', 'infection': '0h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-Flag'}, 'GSM2392298': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392299': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM874632': {'vendor': 'Millipore', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-H3K4me3'}, 'GSM874633': {'vendor': 'Abcam', 'with': 'none (uninfected)', 'infection': '0h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-RNAP II ctd'}, 'GSM874631': {'vendor': 'Millipore', 'with': 'none (uninfected)', 'infection': '0h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-H3K4me3'}, 'GSM2392292': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392293': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392290': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392291': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392296': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392297': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392294': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392295': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1297671': {'differentiation': 'Differentiation 3, full confluency', 'material': 'extracted RNA', 'point': 'Day 14'}, 'GSM2471999': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471998': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2309495': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'Go 6983', 'dose': '10 uM'}, 'GSM2471993': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471992': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471991': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471990': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471997': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471996': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471995': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471994': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2436498': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'Mutant'}, 'GSM2674888': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '2', 'laboratory': 'UKSCB', 'line': 'NIBSC 5', 'sex': 'Female'}, 'GSM2674889': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'NIBSC 5', 'sex': 'Female'}, 'GSM2701560': {'stimulation': '25600 Pa polyacrylamide hydrogel', 'tissue': 'liver', 'type': 'stellate cells'}, 'GSM2701561': {'stimulation': '400 Pa polyacrylamide hydrogel', 'tissue': 'liver', 'type': 'stellate cells'}, 'GSM2701562': {'stimulation': '400 Pa polyacrylamide hydrogel', 'tissue': 'liver', 'type': 'stellate cells'}, 'GSM2674880': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'H9 (UKSCB)', 'sex': 'Female'}, 'GSM2674881': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'H9 (UKSCB)', 'sex': 'Female'}, 'GSM2674882': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'Oxford-2', 'sex': 'Female'}, 'GSM2674883': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'Oxford-2', 'sex': 'Female'}, 'GSM1267861': {'subtype': 'Poly(A) selected RNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM1267860': {'subtype': 'Poly(A) selected RNA', 'line': 'HEK293', 'expressed': 'N/A'}, 'GSM2674886': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'Shef3', 'sex': 'Female'}, 'GSM1267862': {'subtype': 'Poly(A) selected RNA', 'line': 'HEK293', 'expressed': 'Flag-Stau1-WT (65KDa Isoform)'}, 'GSM1438939': {'with': '100 nM 17β-estradiol (E2) for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438938': {'with': '100 nM 17β-estradiol (E2) for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438935': {'with': 'Vehicle for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438934': {'with': 'Vehicle for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438937': {'with': '100 nM 17β-estradiol (E2) for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM1438936': {'with': 'Vehicle for 40min', 'line': 'MCF-7', 'type': 'ER Positive Breast Cancer Cells', 'subtype': 'nascent RNA'}, 'GSM2251298': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM3172785': {'status': 'healthy donor', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM3172784': {'status': 'healthy donor', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM3172787': {'status': 'healthy donor', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM3172786': {'status': 'healthy donor', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM3172781': {'status': 'Amyotrophic Lateral Sclerosis', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM3172780': {'status': 'Amyotrophic Lateral Sclerosis', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM3172783': {'status': 'Amyotrophic Lateral Sclerosis', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM3172782': {'status': 'Amyotrophic Lateral Sclerosis', 'tissue': 'blood', 'type': 'PBMC'}, 'GSM2287717': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2142521': {'gender': 'male', 'age': '59', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2251299': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2577209': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '3h'}, 'GSM2287711': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1143927': {'with': '50ng/ml of doxycyline for 4 days', 'line': 'KYSE70', 'type': 'human esophageal squamous carcinoma cells', 'variation': 'stably expressing pLKO-Tet-On-shTP63'}, 'GSM1143926': {'with': 'none', 'line': 'KYSE70', 'type': 'human esophageal squamous carcinoma cells', 'variation': 'stably expressing pLKO-Tet-On-shTP63'}, 'GSM1143925': {'with': '50ng/ml of doxycyline for 4 days', 'line': 'KYSE70', 'type': 'human esophageal squamous carcinoma cells', 'variation': 'stably expressing pLKO-Tet-On-shSOX2'}, 'GSM1143924': {'with': '50ng/ml of doxycyline for 4 days', 'line': 'KYSE70', 'type': 'human esophageal squamous carcinoma cells', 'variation': 'stably expressing pLKO-Tet-On-shSOX2'}, 'GSM1143923': {'with': 'none', 'line': 'KYSE70', 'type': 'human esophageal squamous carcinoma cells', 'variation': 'stably expressing pLKO-Tet-On-shSOX2'}, 'GSM2724426': {'line': 'MCAK Hypir', 'type': 'MCAK Hypir brain metastasis, mouse number 66'}, 'GSM1143928': {'with': '50ng/ml of doxycyline for 4 days', 'line': 'KYSE70', 'type': 'human esophageal squamous carcinoma cells', 'variation': 'stably expressing pLKO-Tet-On-shTP63'}, 'GSM1978244': {'donor': 'ACFV445', 'type': 'alpha'}, 'GSM1978245': {'donor': 'ACJT115', 'type': 'alpha'}, 'GSM1978246': {'donor': 'ACFQ363', 'type': 'beta'}, 'GSM1978247': {'donor': 'ACFV445', 'type': 'beta'}, 'GSM2679956': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM1978243': {'donor': 'ACFQ363', 'type': 'alpha'}, 'GSM1978248': {'donor': 'ACJT115', 'type': 'beta'}, 'GSM1978249': {'donor': 'ACFV445', 'type': 'acinar'}, 'GSM3594523': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2361605': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2593165': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM1530731': {'genotype': 'GBA +/N370S', 'type': 'iPS cell-derived neuronal samples', 'day': '~ day 33', 'disease': 'Healthy'}, 'GSM2251294': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM1863023': {'line': 'T98G', 'shRNA': 'shRBBP4', 'type': 'glioblastoma cell line'}, 'GSM1863022': {'line': 'T98G', 'shRNA': 'shNT', 'type': 'glioblastoma cell line'}, 'GSM2251295': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1670865': {'antibody': 'IP with rabbit anti-H3K27ac (Abcam ab4729, Lot: GR183919-2)', 'type': 'Hela cell line', 'treatment': 'control EGF'}, 'GSM1670864': {'antibody': 'IP with rabbit anti-H3K27ac (Abcam ab4729, Lot: GR183919-2)', 'type': 'Hela cell line', 'treatment': 'control'}, 'GSM1670867': {'antibody': 'IP with rabbit anti-H3K27ac (Abcam ab4729, Lot: GR183919-2)', 'type': 'Hela cell line', 'treatment': 'doxycyclin EGF'}, 'GSM1670866': {'antibody': 'IP with rabbit anti-H3K27ac (Abcam ab4729, Lot: GR183919-2)', 'type': 'Hela cell line', 'treatment': 'doxycyclin'}, 'GSM3586562': {'origin': 'GCB', 'pfstt': '850', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '915', 'cycles': '8', 'oscs': '0'}, 'GSM1670869': {'antibody': 'IP with rabbit anti-H3K27ac (Abcam ab4729, Lot: GR183919-2)', 'type': 'Hela cell line', 'treatment': 'control EGF'}, 'GSM1670868': {'antibody': 'IP with rabbit anti-H3K27ac (Abcam ab4729, Lot: GR183919-2)', 'type': 'Hela cell line', 'treatment': 'control'}, 'GSM3586563': {'origin': 'ABC', 'pfstt': '789', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '789', 'cycles': '8', 'oscs': '1'}, 'GSM1126513': {'antibody': 'anti-H2A.Z (Active Motif, Cat no: 39113)', 'identifier': 'T22', 'type': 'CD14 cells', 'relationship': 'MZ twin of T21'}, 'GSM1126512': {'antibody': 'anti-H2A.Z (Active Motif, Cat no: 39113)', 'identifier': 'T21', 'type': 'CD14 cells', 'relationship': 'MZ twin of T22'}, 'GSM1126511': {'antibody': 'anti-H2A.Z (Active Motif, Cat no: 39113)', 'identifier': 'T11', 'type': 'CD14 cells'}, 'GSM1126517': {'identifier': 'T21', 'type': 'CD14 cells', 'relationship': 'MZ twin of T22'}, 'GSM1126516': {'identifier': 'T11', 'type': 'CD14 cells'}, 'GSM1126515': {'antibody': 'anti-H2A.Z (Active Motif, Cat no: 39113)', 'identifier': 'T32', 'type': 'CD14 cells', 'relationship': 'MZ twin of T31'}, 'GSM1126514': {'antibody': 'anti-H2A.Z (Active Motif, Cat no: 39113)', 'identifier': 'T31', 'type': 'CD14 cells', 'relationship': 'MZ twin of T32'}, 'GSM1126519': {'identifier': 'T31', 'type': 'CD14 cells', 'relationship': 'MZ twin of T32'}, 'GSM1126518': {'identifier': 'T22', 'type': 'CD14 cells', 'relationship': 'MZ twin of T21'}, 'GSM2050862': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2251297': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2050863': {'line': 'foreskin HDF', 'relationship': 'brother of XXFb135', 'passage': 'p2'}, 'GSM2109445': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109444': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109447': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109446': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109441': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109440': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109443': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109442': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109449': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109448': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM1294398': {'origin': 'WA09 human embryonic stem cells', 'replicate': '3', 'fraction': 'G2/M'}, 'GSM1294395': {'origin': 'WA09 human embryonic stem cells', 'replicate': '3', 'fraction': 'Early G1'}, 'GSM1294394': {'origin': 'WA09 human embryonic stem cells', 'replicate': '2', 'fraction': 'G2/M'}, 'GSM1294397': {'origin': 'WA09 human embryonic stem cells', 'replicate': '3', 'fraction': 'S phase'}, 'GSM1294396': {'origin': 'WA09 human embryonic stem cells', 'replicate': '3', 'fraction': 'Late G1'}, 'GSM1294391': {'origin': 'WA09 human embryonic stem cells', 'replicate': '2', 'fraction': 'Early G1'}, 'GSM1294390': {'origin': 'WA09 human embryonic stem cells', 'replicate': '1', 'fraction': 'G2/M'}, 'GSM1294393': {'origin': 'WA09 human embryonic stem cells', 'replicate': '2', 'fraction': 'S phase'}, 'GSM1294392': {'origin': 'WA09 human embryonic stem cells', 'replicate': '2', 'fraction': 'Late G1'}, 'GSM2562640': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562641': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1931298': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-sensitive', 'treatment': 'none'}, 'GSM1931299': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-sensitive', 'treatment': 'none'}, 'GSM1473807': {'origin': 'Skin', 'with': 'H2O2', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM1931296': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-sensitive', 'treatment': 'none'}, 'GSM1931297': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-sensitive', 'treatment': 'none'}, 'GSM2562648': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2251292': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2562649': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1534006': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534007': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534004': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534005': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP negative population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534002': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534003': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534000': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534001': {'type': 'ES-derived neural progenitor cells', 'treatment': 'Infected cells collected 24h after infection and puero selection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534008': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1534009': {'type': 'ES-derived neural progenitor cells', 'treatment': 'GFP positive population after 6 days of shRNA infection', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2251293': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2802958': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D7'}, 'GSM2773990': {'status': 'G34W', 'disease': 'GCTB', 'Sex': 'male'}, 'GSM2773991': {'status': 'WT', 'type': 'stem cells'}, 'GSM2817768': {'type': 'PANC-1', 'treatment': 'gemcitabine 300nM 24h'}, 'GSM2108713': {'type': 'primary hepatocyte cells', 'treatment': 'rifampin'}, 'GSM2108710': {'type': 'primary hepatocyte cells', 'treatment': 'vehicle'}, 'GSM2108711': {'type': 'primary hepatocyte cells', 'treatment': 'rifampin'}, 'GSM2108716': {'type': 'primary hepatocyte cells', 'treatment': 'rifampin'}, 'GSM2303429': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2108714': {'type': 'primary hepatocyte cells', 'treatment': 'vehicle'}, 'GSM2108715': {'type': 'primary hepatocyte cells', 'treatment': 'vehicle'}, 'GSM2303428': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM1148892': {'passages': '16-18', 'treatment': 'Scrambled shRNA', 'types': 'HeLa cells transduced with scrambled shRNA'}, 'GSM1148893': {'passages': '16-18', 'treatment': 'Scrambled shRNA', 'types': 'HeLa cells transduced with scrambled shRNA'}, 'GSM1148891': {'passages': '16-18', 'treatment': 'Scrambled shRNA', 'types': 'HeLa cells transduced with scrambled shRNA'}, 'GSM1148896': {'passages': '16-18', 'treatment': 'Anti-ASCC3 shRNA', 'types': 'HeLa cells transduced with anti-ASCC3 shRNA'}, 'GSM1148894': {'passages': '16-18', 'treatment': 'Anti-ASCC3 shRNA', 'types': 'HeLa cells transduced with anti-ASCC3 shRNA'}, 'GSM1148895': {'passages': '16-18', 'treatment': 'Anti-ASCC3 shRNA', 'types': 'HeLa cells transduced with anti-ASCC3 shRNA'}, 'GSM2125779': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2332399': {'line': 'HUH7', 'point': '80'}, 'GSM1482320': {'tissue': 'Bone marrow', 'type': 'MSC', 'treatment': 'TGFa'}, 'GSM1967868': {'line': 'K562', 'passage': '3-5'}, 'GSM1967869': {'line': 'K562', 'passage': '3-5'}, 'GSM2779364': {'line': 'KhES-1', 'medium': 'E8', 'type': 'embryonic stem cells'}, 'GSM2745902': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '88,440,188', 'totalnummappedreads': '79,925,902', 'age': '28.35', 'percentexonicmapping': '28.889559', 'Sex': 'Male', 'rin': '7.5', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.29', 'brainid': '1389'}, 'GSM2511581': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2745900': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '135,900,268', 'totalnummappedreads': '123,329,668', 'age': '68.54', 'percentexonicmapping': '22.967866', 'Sex': 'Male', 'rin': '6.8', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.72', 'brainid': '1137'}, 'GSM2745901': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '100,308,620', 'totalnummappedreads': '84,219,591', 'age': '3.978', 'percentexonicmapping': '27.562276', 'Sex': 'Male', 'rin': '6', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.24', 'brainid': '1290'}, 'GSM2745906': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '96,735,196', 'totalnummappedreads': '84,721,580', 'age': '46.57', 'percentexonicmapping': '9.5772', 'Sex': 'Male', 'rin': '10', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.59', 'brainid': '1532'}, 'GSM2745907': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '111,150,972', 'totalnummappedreads': '100,780,773', 'age': '20.85', 'percentexonicmapping': '25.868577', 'Sex': 'Male', 'rin': '7.8', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.73', 'brainid': '1550'}, 'GSM2745904': {'status': 'Healthy control', 'race': 'AA', 'totalnumreads': '177,200,952', 'totalnummappedreads': '160,387,584', 'age': '64.52', 'percentexonicmapping': '8.625941', 'Sex': 'Male', 'rin': '7.6', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.57', 'brainid': '1504'}, 'GSM2543671': {'library_id': 'lib5800', 'stim': 'CR', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1866132': {'line': 'Gliobmastoma cell line'}, 'GSM1866133': {'line': 'Gliobmastoma cell line'}, 'GSM2745908': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '130,996,692', 'totalnummappedreads': '119,759,413', 'age': '46.08', 'percentexonicmapping': '26.695346', 'Sex': 'Male', 'rin': '7.9', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.36', 'brainid': '1581'}, 'GSM2745909': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '156,587,608', 'totalnummappedreads': '137,286,873', 'age': '4.649', 'percentexonicmapping': '11.558148', 'Sex': 'Male', 'rin': '7.3', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.86', 'brainid': '1877'}, 'GSM1866136': {'line': 'Gliobmastoma cell line'}, 'GSM1866137': {'line': 'Gliobmastoma cell line'}, 'GSM1866134': {'line': 'Gliobmastoma cell line'}, 'GSM1866135': {'line': 'Gliobmastoma cell line'}, 'GSM2772485': {'group': 'invitro', 'disease': 'H', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'H-394', 'cdna': 'cDNA2036'}, 'GSM2772484': {'group': 'invitro', 'disease': 'H', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'H-391', 'cdna': 'cDNA2033'}, 'GSM2772487': {'group': 'invitro', 'disease': 'H', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'H-398', 'cdna': 'cDNA2048'}, 'GSM2772486': {'group': 'invitro', 'disease': 'H', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'H-397', 'cdna': 'cDNA2042'}, 'GSM2373989': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373988': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373987': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373986': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373985': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373984': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373983': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373982': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373981': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2511584': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2175990': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175991': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175992': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175993': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175994': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175995': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175996': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175997': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175998': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175999': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2511586': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'control'}, 'GSM1704546': {'protocol': '40 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1693120': {'line': 'SK-N-SH', 'type': 'human neuroblastoma cells', 'clone': 'control', 'treatment': '1uM Retinoic acid'}, 'GSM2511588': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'control'}, 'GSM1704544': {'protocol': '24 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM3501446': {'line': 'mixed sample (non-demultiplexed) comprising HEK, THP1, K562 and KG1 cells', 'type': \"10x Genomics single cell 3' v2\", 'tags': 'none'}, 'GSM3501447': {'line': 'mixed sample (non-demultiplexed) comprising HEK, THP1, K562 and KG1 cells', 'type': \"10x Genomics single cell 3' v2\", 'tags': 'HEK_A, HEK_B, HEK_C, THP1_A'}, 'GSM2158380': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158381': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158382': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1704545': {'protocol': '40 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2158384': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158385': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158386': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158387': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158388': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158389': {'gender': 'M', 'age': '56', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1704543': {'protocol': '24 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704540': {'protocol': '6 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704541': {'protocol': '12 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1648615': {'line': 'Nalm6', 'replicate': '2', 'construct': 'TEL-AML1mut', 'time': '24 h'}, 'GSM1648614': {'line': 'Nalm6', 'replicate': '1', 'construct': 'TEL-AML1mut', 'time': '24 h'}, 'GSM1648611': {'line': 'Nalm6', 'replicate': '2', 'construct': 'TEL-AML1', 'time': '12 h'}, 'GSM1648610': {'line': 'Nalm6', 'replicate': '1', 'construct': 'TEL-AML1', 'time': '12 h'}, 'GSM1648613': {'line': 'Nalm6', 'replicate': '2', 'construct': 'TEL-AML1', 'time': '24 h'}, 'GSM1648612': {'line': 'Nalm6', 'replicate': '1', 'construct': 'TEL-AML1', 'time': '24 h'}, 'GSM2672046': {'type': 'Single cell', 'number': 'Cas9 Injected control 7', 'stage': 'Blastocyst'}, 'GSM2672047': {'type': 'Single cell', 'number': 'Cas9 Injected control 7', 'stage': 'Blastocyst'}, 'GSM2672044': {'type': 'Single cell', 'number': 'Cas9 Injected control 5', 'stage': 'Blastocyst'}, 'GSM2672045': {'type': 'Single cell', 'number': 'Cas9 Injected control 5', 'stage': 'Blastocyst'}, 'GSM2672042': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM2672043': {'type': 'Single cell', 'number': 'Cas9 Injected control 5', 'stage': 'Blastocyst'}, 'GSM2672040': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM2672041': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM1511115': {'line': 'HUES-7', 'age': '0 DIV'}, 'GSM1677106': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Co-RNAi against RC3H1 and RC3H2, addition of 50 ug/ml ActD 1h before harvesting', 'barcode': 'CAGATCA'}, 'GSM1511117': {'line': 'HUES-7', 'age': '0 DIV'}, 'GSM1511116': {'line': 'HUES-7', 'age': '0 DIV'}, 'GSM1677103': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Mock treatment, addition of 50 ug/ml ActD 1h before harvesting', 'barcode': 'AGTTCCG'}, 'GSM1677102': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Mock treatment, no addition of ActD', 'barcode': 'AGTCAAC'}, 'GSM2672048': {'type': 'Single cell', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2672049': {'type': 'Single cell', 'number': 'Cas9 Injected control 8', 'stage': 'Blastocyst'}, 'GSM2550263': {'vendor': 'Abcam', 'antibody': 'Anti-histone H3 (mono methyl K4) antibody', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550262': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27me3 antibody (clone: 7B11)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550261': {'vendor': 'Active Motif', 'antibody': 'Histone H3K27ac antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550260': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550267': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550266': {'vendor': 'EMD Millipore', 'antibody': 'Anti-RNA Polymerase II antibody, CTD (clone 8WG16)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550265': {'vendor': 'Santa Cruz Biotechnology', 'antibody': 'p300 antibody (C-20)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550264': {'vendor': 'Active Motif', 'antibody': 'Histone H3K4me3 antibody (pAb)', 'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2175374': {'line': 'HeLa', 'transfection': 'siRNA2 ZBTB33', 'passage': '5 to 8'}, 'GSM2550269': {'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2048486': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2175370': {'line': 'HeLa', 'transfection': 'siRNA1 ZBTB33', 'passage': '5 to 8'}, 'GSM2175371': {'line': 'HeLa', 'transfection': 'siRNA1 ZBTB33', 'passage': '5 to 8'}, 'GSM2175372': {'line': 'HeLa', 'transfection': 'siRNA2 ZBTB33', 'passage': '5 to 8'}, 'GSM2175373': {'line': 'HeLa', 'transfection': 'siRNA2 ZBTB33', 'passage': '5 to 8'}, 'GSM2815839': {'line': 'H9'}, 'GSM1314182': {'source': 'multiple donors', 'type': 'HUVEC (human umbilical vein endothelial cells)'}, 'GSM1314181': {'source': 'multiple donors', 'type': 'HUVEC (human umbilical vein endothelial cells)'}, 'GSM1498308': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM1008241': {'line': 'HepG2', 'time': '0 h', 'antibody': 'Ago2', 'treatment': 'NT', 'manufacturer': 'Wako'}, 'GSM1008242': {'line': 'HepG2', 'time': '24 h', 'antibody': 'Ago2', 'treatment': 'miR-195', 'manufacturer': 'Wako'}, 'GSM1008243': {'line': 'HepG2', 'time': '24 h', 'antibody': 'Ago2', 'treatment': 'miR-497', 'manufacturer': 'Wako'}, 'GSM1008244': {'line': 'HepG2', 'antibody': 'none', 'treatment': 'NT', 'time': '0 h'}, 'GSM1008245': {'line': 'HepG2', 'antibody': 'none', 'treatment': 'miR-195', 'time': '24 h'}, 'GSM1008246': {'line': 'HepG2', 'antibody': 'none', 'treatment': 'miR-497', 'time': '24 h'}, 'GSM2170829': {'stage': 'iPSC line'}, 'GSM2170828': {'stage': 'iPSC line'}, 'GSM2170823': {'stage': 'iPSC line'}, 'GSM2305869': {'tissue': 'colon'}, 'GSM2170821': {'stage': 'iPSC line'}, 'GSM2170820': {'stage': 'iPSC line'}, 'GSM2170827': {'stage': 'iPSC line'}, 'GSM2170826': {'stage': 'iPSC line'}, 'GSM2170825': {'stage': 'iPSC line'}, 'GSM2170824': {'stage': 'iPSC line'}, 'GSM2453926': {'code': '404'}, 'GSM2453927': {'code': '404'}, 'GSM2453924': {'code': '404'}, 'GSM2453925': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453922': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453923': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453920': {'code': '404'}, 'GSM2453921': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453928': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453929': {'code': '404'}, 'GSM2339248': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339249': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2715276': {'type': 'iPSCs', 'day': 'day 0'}, 'GSM1643592': {'mutation': 'SAMHD1'}, 'GSM1643591': {'mutation': 'TREX1'}, 'GSM2305860': {'tissue': 'colon'}, 'GSM2514494': {'line': 'HeLa', 'variation': 'MORC2 knockout, transduced with lentviral vector encoding R252W MORC2'}, 'GSM2514490': {'line': 'HeLa', 'with': 'R252W MORC2'}, 'GSM2514492': {'line': 'HeLa', 'variation': 'MORC2 knockout, mock transduced'}, 'GSM2514493': {'line': 'HeLa', 'variation': 'MORC2 knockout, transduced with lentiviral vector encoding wild-type MORC2'}, 'GSM2048481': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2516896': {'death': '82', 'score': 'IV', 'post_mortem_interval': '2.67', 'caseid': '11-19', 'Sex': 'M', 'rin_score': '6.2', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655425'}, 'GSM2516897': {'death': '89', 'score': 'IV', 'post_mortem_interval': '3', 'caseid': '10-65', 'Sex': 'M', 'rin_score': '6.6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655416'}, 'GSM2516894': {'death': '75', 'score': 'V', 'post_mortem_interval': '3', 'caseid': '04-54', 'Sex': 'M', 'rin_score': '7.1', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655443'}, 'GSM2516895': {'death': '91', 'score': 'IV', 'post_mortem_interval': '2.5', 'caseid': '07-57', 'Sex': 'F', 'rin_score': '6.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655411'}, 'GSM2516892': {'death': '90', 'score': 'III', 'post_mortem_interval': '3.75', 'caseid': '08-29', 'Sex': 'M', 'rin_score': '6.1', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655423'}, 'GSM2516893': {'death': '89', 'score': 'III', 'post_mortem_interval': '2', 'caseid': '03-62', 'Sex': 'M', 'rin_score': '7.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655408'}, 'GSM2516890': {'death': '95', 'score': 'IV', 'post_mortem_interval': '2', 'caseid': '12-11', 'Sex': 'F', 'rin_score': '7.5', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655419'}, 'GSM2516891': {'death': '85', 'score': 'IV', 'post_mortem_interval': '3.66', 'caseid': '10-55', 'Sex': 'M', 'rin_score': '7.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655415'}, 'GSM2516898': {'death': '87', 'score': 'VI', 'post_mortem_interval': '3.13', 'caseid': '11-48', 'Sex': 'M', 'rin_score': '7.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655472'}, 'GSM2125486': {'point': '120h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '7F3206', 'with': 'INTS12_D-siRNA_A'}, 'GSM2153425': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1383680': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383681': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383682': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383683': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383684': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1383685': {'line': 'LN229', 'type': 'glioblastoma'}, 'GSM1479487': {'index': '18', 'diagnosis': '--', 'cellcount': '843981', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '45', 'collectiondate': 'June 28 2012', 'samplename': '45_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'MS pretreatment'}, 'GSM2413546': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2496705': {'state': 'Healthy', 'tissue': 'normal colonic crypt', 'replicates': 'N/A'}, 'GSM2496704': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2496707': {'state': 'Healthy', 'tissue': 'normal colonic crypt', 'replicates': 'N/A'}, 'GSM2496706': {'state': 'Healthy', 'tissue': 'aberrant crypt foci', 'replicates': 'N/A'}, 'GSM2496701': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496700': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2496703': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496702': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2176054': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176055': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176056': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176057': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2496709': {'state': 'Healthy', 'tissue': 'normal colonic crypt', 'replicates': 'N/A'}, 'GSM2496708': {'state': 'Healthy', 'tissue': 'aberrant crypt foci', 'replicates': 'N/A'}, 'GSM2176052': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176053': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2286849': {'tissue': 'Renal cell carcinoma', 'histology': 'unclassified'}, 'GSM2286848': {'tissue': 'Renal cell carcinoma', 'histology': 'unclassified'}, 'GSM2286845': {'tissue': 'Renal cell carcinoma', 'histology': 'unclassified'}, 'GSM2204159': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2286847': {'tissue': 'Renal cell carcinoma', 'histology': 'unclassified'}, 'GSM2286846': {'tissue': 'Renal cell carcinoma', 'histology': 'unclassified'}, 'GSM2286843': {'tissue': 'Renal cell carcinoma', 'histology': 'unclassified'}, 'GSM2816162': {'line': 'H9'}, 'GSM1383767': {'donor': 'A2824', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1712127': {'line': 'V16D', 'treatment': 'Vehicle'}, 'GSM2204158': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM1383765': {'donor': 'A2737', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383764': {'donor': 'A2736', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383763': {'donor': 'A2735', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM2416962': {'modification': 'Wt', 'line': 'HEK293T', 'enrichment': 'RiboMinus'}, 'GSM1383762': {'donor': 'A2824', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1712126': {'line': 'V16D', 'treatment': 'Enzalutamide-Treated'}, 'GSM1383761': {'donor': 'A2775', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1037856': {'type': 'testes', 'library': 'paired-end, 1st 4 bases of Read 1 used for multiplexing', 'size': '2x36'}, 'GSM1037855': {'status': 'proven fertile', 'type': 'sperm', 'library': 'paired-end, 1st 4 bases of Read 1 used for multiplexing', 'size': '2x36'}, 'GSM2760052': {'tissue': 'Whole blood', 'condition': 'hyperthyroid'}, 'GSM1037853': {'status': 'proven fertile', 'type': 'sperm', 'library': 'paired-end, 1st 4 bases of Read 1 used for multiplexing', 'size': '2x36'}, 'GSM1037852': {'status': 'proven fertile', 'type': 'sperm', 'library': 'paired-end, 1st 4 bases of Read 1 used for multiplexing', 'size': '2x36'}, 'GSM1369078': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock'}, 'GSM1712125': {'line': 'V16D', 'treatment': 'Enzalutamide-Treated'}, 'GSM2533734': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM1681900': {'tissue': 'Lung tumor', 'type': 'epithelial cells (Epi)'}, 'GSM1712124': {'line': 'V16D', 'treatment': 'Enzalutamide-Treated'}, 'GSM2141328': {'individual': 'EU24', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2218656': {'with': '+UV (Recovery time=120min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM1342892': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'liver tumor', 'patient': '1306734'}, 'GSM1342893': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'non-tumor liver', 'patient': '1306734'}, 'GSM1342890': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'liver tumor', 'patient': '1305780'}, 'GSM1342891': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'non-tumor liver', 'patient': '1305780'}, 'GSM1342896': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'liver tumor', 'patient': '1308849'}, 'GSM1342897': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'non-tumor liver', 'patient': '1308849'}, 'GSM1342894': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'F', 'tissue': 'liver tumor', 'patient': '1159804'}, 'GSM1342895': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'F', 'tissue': 'non-tumor liver', 'patient': '1159804'}, 'GSM1342898': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'liver tumor', 'patient': '1308388'}, 'GSM1342899': {'status': 'hepatocellular carcinoma (HCC)', 'gender': 'M', 'tissue': 'non-tumor liver', 'patient': '1308388'}, 'GSM1712123': {'line': 'MR49F', 'treatment': 'Vehicle'}, 'GSM2204154': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2816169': {'line': 'H9'}, 'GSM2141326': {'individual': 'EU22', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1542465': {'passages': '25-30', 'type': 'induced pluripotent stem cell derived cardiomyocytes', 'genotype': 'TBX20 wt/Y317*', 'phenotype': 'severe LVNC'}, 'GSM1542464': {'passages': '25-30', 'type': 'induced pluripotent stem cell derived cardiomyocytes', 'genotype': 'TBX20 wt/Y317*', 'phenotype': 'asymptomatic DCM'}, 'GSM1542467': {'passages': '25-30', 'type': 'induced pluripotent stem cell derived cardiomyocytes', 'genotype': 'TBX20 wt/Y317*', 'phenotype': 'asymptomatic LVNC'}, 'GSM1542466': {'passages': '25-30', 'type': 'induced pluripotent stem cell derived cardiomyocytes', 'genotype': 'TBX20 wt/Y317*', 'phenotype': 'severe LVNC'}, 'GSM1542461': {'passages': '25-30', 'type': 'induced pluripotent stem cell derived cardiomyocytes', 'genotype': 'TBX20 wt/wt', 'phenotype': 'no cardaic disease'}, 'GSM1542463': {'passages': '25-30', 'type': 'induced pluripotent stem cell derived cardiomyocytes', 'genotype': 'TBX20 wt/Y317*', 'phenotype': 'asymptomatic DCM'}, 'GSM1542462': {'passages': '25-30', 'type': 'induced pluripotent stem cell derived cardiomyocytes', 'genotype': 'TBX20 wt/wt', 'phenotype': 'no cardaic disease'}, 'GSM1712122': {'line': 'MR49F', 'treatment': 'Vehicle'}, 'GSM1542468': {'passages': '25-30', 'type': 'induced pluripotent stem cell derived cardiomyocytes', 'genotype': 'TBX20 wt/Y317*', 'phenotype': 'asymptomatic LVNC'}, 'GSM2565368': {'construction': 'PLATE-Seq', 'drug': 'Pimasertib (AS-703026)'}, 'GSM2565369': {'construction': 'PLATE-Seq', 'drug': 'Quizartinib (AC220)'}, 'GSM2565366': {'construction': 'PLATE-Seq', 'drug': 'LY 2183240'}, 'GSM2565367': {'construction': 'PLATE-Seq', 'drug': 'OSI-906 (Linsitinib)'}, 'GSM2565364': {'construction': 'PLATE-Seq', 'drug': '(R)-(-)-Niguldipine hydrochloride'}, 'GSM2565365': {'construction': 'PLATE-Seq', 'drug': 'Lylamine hydrochloride'}, 'GSM2565362': {'construction': 'PLATE-Seq', 'drug': 'DIHYDROCELASTROL'}, 'GSM2048483': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2565360': {'construction': 'PLATE-Seq', 'drug': 'UCN-01'}, 'GSM2565361': {'construction': 'PLATE-Seq', 'drug': 'AMINACRINE'}, 'GSM2350210': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350211': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350212': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350213': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute; 2 rounds only)'}, 'GSM2350214': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute; 2 rounds only)'}, 'GSM2350215': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute; 2 rounds only)'}, 'GSM2350216': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute; 2 rounds only)'}, 'GSM2350217': {'rna': '10 pg', 'used': 'aRNA (first round: use 0.691mM dNTPs in 2nd strand rxn. & no minelute; 2 rounds only)'}, 'GSM2058057': {'tissue': 'normal colon crypt', 'antibody': 'mouse anti-H3K27me3 (Abcam #6002)'}, 'GSM1712121': {'line': 'MR49F', 'treatment': 'Vehicle'}, 'GSM2152532': {'line': 'RWPE1', 'expression': 'NKX3.1'}, 'GSM2372332': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'High global H3K27me3'}, 'GSM2372331': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'High global H3K27me3'}, 'GSM2058054': {'tissue': 'primary colorectal cancer tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2152535': {'line': 'RWPE1', 'expression': 'NKX3.1'}, 'GSM2535820': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4071', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25030', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C40', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4071', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C40'}, 'GSM2535821': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4072', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25031', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C46', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4072', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C46'}, 'GSM2535822': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4073', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25032', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C05', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4073', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C05'}, 'GSM2535823': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4074', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25033', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C11', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4074', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C11'}, 'GSM2535824': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4075', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25034', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C17', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4075', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C17'}, 'GSM2535825': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4076', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25035', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C23', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4076', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C23'}, 'GSM2535826': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4077', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25036', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C47', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4077', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C47'}, 'GSM2535827': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4078', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25037', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C30', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4078', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C30'}, 'GSM2535828': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4079', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25038', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C42', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4079', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C42'}, 'GSM2535829': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4080', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25039', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C52', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4080', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C52'}, 'GSM1980208': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1922941': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'NA', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM1922942': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'NA', 'treatment': '4 day 1 µM dasatinib'}, 'GSM1922943': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'NA', 'treatment': '12 day 1 µM dasatinib'}, 'GSM3381521': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM1922945': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'NA', 'treatment': 'chronic 2 µM PD0325901'}, 'GSM3381523': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM3381522': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM1922948': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'RBPJ (Abcam, ab25949, lot GR169397-1)', 'treatment': 'none'}, 'GSM1922949': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'cleaved Notch1 (Val1744) (CST, 4147, lot 4)', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM1356730': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 35 to FB'}, 'GSM1356731': {'strain': 'H9', 'knockdown': 'ADAR1 shRNA', 'stage': 'day 35 to MN'}, 'GSM2267422': {'histology': 'intestinal', 'tissuetype': 'Gastric primary tumor tissue'}, 'GSM2267423': {'histology': 'not applicable', 'tissuetype': 'Gastric primary non-malignant tissue'}, 'GSM2267420': {'histology': 'diffuse', 'tissuetype': 'Gastric primary tumor tissue'}, 'GSM2374223': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM501693': {'modification': 'None', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM2374221': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2033152': {'type': 'human umbilical vein endothelial cells', 'treatment': 'siADAR1', 'passage': 'passage 3'}, 'GSM2374227': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374226': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374225': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374224': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374229': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374228': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM501691': {'modification': 'Tet-on FLp53', 'antibody': 'DO1 against p53', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM501690': {'modification': 'Tet-on TAp73beta', 'antibody': 'BL906 against p73', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM501697': {'modification': 'Tet-on TAp73beta', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM2267425': {'histology': 'not applicable', 'tissuetype': 'Gastric primary non-malignant tissue'}, 'GSM1964865': {'line': 'PA1', 'population': 'poly(A)+'}, 'GSM1964867': {'line': 'PA1', 'population': 'poly(A)-/RNaseR'}, 'GSM1964866': {'line': 'PA1', 'population': 'poly(A)-'}, 'GSM501695': {'modification': 'Tet-on TAp73alpha', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM501694': {'modification': 'None', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM2307100': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307101': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307102': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307103': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307104': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307105': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM1853567': {'line': 'HeLa', 'treatment': 'SpliceostatinA - Yoshida Lab'}, 'GSM2307107': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307108': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307109': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM1634328': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Differentiated Keratinocytes', 'passage': '2'}, 'GSM501699': {'modification': 'Tet-on FLp53', 'line': 'Saos-2', 'type': 'osteosarcoma'}, 'GSM1574300': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'CAPAN2'}, 'GSM2310584': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'Fumarate trained Macrophages, exposed to fumarate for 24 hours, then RPMI media for 5 days', 'experiment_type': 'H3K27ac', 'cell_line': '-', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)'}, 'GSM2310585': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'Macrophages, exposed to RPMI media for 6 days', 'experiment_type': 'H3K4me3', 'cell_line': '-', 'antibody': 'Rabbit polyclonal anti-H3K4me3 (Diagenode, cat. # pAb-003-050)'}, 'GSM2714494': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '3 days'}, 'GSM2310587': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'Fumarate trained Macrophages, exposed to fumarate for 24 hours, then RPMI media for 5 days', 'experiment_type': 'H3K4me3', 'cell_line': '-', 'antibody': 'Rabbit polyclonal anti-H3K4me3 (Diagenode, cat. # pAb-003-050)'}, 'GSM2714492': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '3 days'}, 'GSM2714493': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '3 days'}, 'GSM2310582': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'Macrophages, exposed to RPMI media for 6 days', 'experiment_type': 'H3K27ac', 'cell_line': '-', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)'}, 'GSM2310583': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'BG trained Macrophages, exposed to Beta Glucan for 24 hours, then RPMI media for 5 days', 'experiment_type': 'H3K27ac', 'cell_line': '-', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)'}, 'GSM2310588': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'Macrophages, exposed to RPMI media for 6 days', 'experiment_type': 'RNA', 'cell_line': '-'}, 'GSM2310589': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'BG trained Macrophages, exposed to Beta Glucan for 24 hours, then RPMI media for 5 days', 'experiment_type': 'RNA', 'cell_line': '-'}, 'GSM2714498': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '5 days'}, 'GSM2714499': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '5 days'}, 'GSM1634329': {'cell': 'Primary', 'tissue': 'foreskin', 'type': 'Epidermal Stem Cells (EpSC)', 'variation': 'control', 'passage': '3'}, 'GSM1065924': {'method': 'Somatic Cell Lysis Buffer'}, 'GSM1065925': {'method': 'PureSperm cushion'}, 'GSM1065926': {'method': 'Somatic Cell Lysis Buffer'}, 'GSM1065927': {'method': 'PureSperm cushion'}, 'GSM1065920': {'method': 'Somatic Cell Lysis Buffer'}, 'GSM1065921': {'method': 'PureSperm cushion'}, 'GSM1065922': {'method': 'Somatic Cell Lysis Buffer'}, 'GSM1065923': {'method': 'PureSperm cushion'}, 'GSM1065928': {'method': 'Somatic Cell Lysis Buffer'}, 'GSM1065929': {'method': 'PureSperm cushion'}, 'GSM2535688': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1154', 'samplename': '1_413UNST_C82', 'seqsite': 'BRI', 'sampleID': 'S13218', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1154', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C82'}, 'GSM2816199': {'line': 'H9'}, 'GSM1817060': {'line': 'H1', 'type': 'Hepatoblast', 'day': '11', 'treatment': 'HGF+KGF'}, 'GSM1817061': {'line': 'H1', 'type': 'Hepatocyte-like', 'day': '13', 'treatment': 'OSM'}, 'GSM1817062': {'line': 'H1', 'type': 'Hepatocyte-like', 'day': '21', 'treatment': 'OSM'}, 'GSM1545069': {'type': 'gastric cancer tumor', 'class': 'IIB', 'location': 'Distal'}, 'GSM2816190': {'line': 'H9'}, 'GSM2816191': {'line': 'H9'}, 'GSM2816192': {'line': 'H9'}, 'GSM2194669': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194668': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194663': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2816194': {'line': 'H9'}, 'GSM2194661': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194660': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194667': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194666': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194665': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2816195': {'line': 'H9'}, 'GSM1545060': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM1308260': {'with': 'synthetic miR-1 mimic', 'line': 'HeLa', 'type': 'human cervical cancer cells', 'point': '9hrs post-transfection'}, 'GSM2816196': {'line': 'H9'}, 'GSM2061679': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2061678': {'state': 'KTCN', 'tissue': 'cornea', 'study': 'discovery'}, 'GSM2816197': {'line': 'H9'}, 'GSM2845395': {'replicate': 'Rep1', 'treatment': '4-OHT', 'time': '24hrs'}, 'GSM2067374': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2114007': {'with': 'scrambled control', 'gender': 'male', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM03440', 'diagnosis': 'Control'}, 'GSM2067375': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2114009': {'with': 'scrambled control', 'gender': 'female', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'AG09319', 'diagnosis': 'Control'}, 'GSM2114008': {'with': 'miR-9 LNA probes (miR-9 KD)', 'gender': 'male', 'type': 'forebrain neural progenitor cells (NPCs)', 'id': 'GM03440', 'diagnosis': 'Control'}, 'GSM2067376': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067377': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2287411': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1917095': {'transduction': 'cotransduced with pWZL-Hygro and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM2287410': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1150628': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5829', 'number': '24'}, 'GSM1150629': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5830', 'number': '24'}, 'GSM2067372': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM1150620': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5751', 'number': '21'}, 'GSM1150621': {'state': 'early neoplasia', 'tissue': 'breast', 'id': 'STT5754', 'number': '22'}, 'GSM1150622': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5756', 'number': '22'}, 'GSM1150623': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5758', 'number': '22'}, 'GSM1150624': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5761', 'number': '22'}, 'GSM1150625': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5763', 'number': '22'}, 'GSM1150626': {'state': 'invasive ductal carcinoma', 'tissue': 'breast', 'id': 'STT5825', 'number': '24'}, 'GSM1150627': {'state': 'normal breast', 'tissue': 'breast', 'id': 'STT5828', 'number': '24'}, 'GSM1917092': {'transduction': 'cotransduced with pWZL-Hygro and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM2476389': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476388': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2476387': {'line': 'SKmel147', 'passage': 'N/A'}, 'GSM2287419': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2476385': {'type': 'foreskin, NHM2', 'passage': '8'}, 'GSM2476384': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476383': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476382': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476381': {'line': '501MEL', 'passage': 'N/A'}, 'GSM2476380': {'line': '501MEL', 'passage': 'N/A'}, 'GSM1946455': {'media': 'DMEM', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM1946456': {'media': 'DMEM', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM1946457': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM1917093': {'transduction': 'cotransduced with pWZL-Hygro and shp53', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1946459': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM2197724': {'passages': '25-30'}, 'GSM2845391': {'replicate': 'Rep1', 'treatment': '4-OHT', 'time': '24hrs'}, 'GSM1513347': {'line': 'HeLa', 'prep': 'chromatin-associated RNA fraction', 'variation': 'si Dicer'}, 'GSM1580869': {'death': '73', 'rin': '7.7', 'reads': '120108434', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': 'Neurologically normal', 'pmi': '2'}, 'GSM2054575': {'line': 'OVCAR3', 'antibody': 'rabbit polyclonal anti-BRD4 (Bethyl Laboratories, catalog# A301-985A, lot# A301-985A50-4)', 'agent': 'DMSO'}, 'GSM2054576': {'line': 'OVCAR3', 'antibody': 'rabbit polyclonal anti-BRD4 (Bethyl Laboratories, catalog# A301-985A, lot# A301-985A50-4)', 'agent': 'JQ1'}, 'GSM2054577': {'line': 'OVCAR3', 'antibody': 'none (input)', 'agent': 'none'}, 'GSM2054578': {'line': 'OVCAR3', 'agent': 'DMSO'}, 'GSM2054579': {'line': 'OVCAR3', 'agent': 'JQ1'}, 'GSM2451163': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2304579': {'type': 'HUVEC', 'treatment': 'mock'}, 'GSM2251278': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251279': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251276': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251277': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251274': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251275': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251272': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251273': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251270': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251271': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2153279': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153278': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153271': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153270': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153273': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153272': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153275': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153274': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153277': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153276': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1701701': {'line': 'H1'}, 'GSM1701700': {'line': 'H1'}, 'GSM2451166': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2211830': {'doxycycline': '+', '2': 'shERF', 'dht': '+'}, 'GSM2739422': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739423': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739420': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739421': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739426': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739427': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739424': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739425': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739428': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739429': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM1376009': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1224930': {'site': 'bone marrow', 'fragmentsize': '300 bp'}, 'GSM2361614': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361615': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361616': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361617': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361610': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361611': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361612': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361613': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361618': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361619': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2392317': {'line': 'H1 stem cell line', 'multiplex': '6 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376003': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376000': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1856269': {'line': 'HeLa', 'treatment': 'SSA'}, 'GSM1856268': {'line': 'HeLa', 'treatment': 'MeOH'}, 'GSM1376001': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376006': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1856263': {'line': 'HeLa', 'treatment': 'SSA'}, 'GSM1856262': {'line': 'HeLa', 'treatment': 'MeOH'}, 'GSM1856265': {'line': 'HeLa', 'treatment': 'SSA'}, 'GSM1856264': {'line': 'HeLa', 'treatment': 'MeOH'}, 'GSM1856267': {'line': 'HeLa', 'treatment': 'SSA'}, 'GSM1376007': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2182707': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'EB with SB431542 and LDN193189', 'genotype': 'wild type'}, 'GSM2182706': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'EB with SB431542 and LDN193189', 'genotype': 'wild type'}, 'GSM2182705': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'EB', 'genotype': 'wild type'}, 'GSM2182704': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'EB', 'genotype': 'wild type'}, 'GSM2182703': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'EB', 'genotype': 'wild type'}, 'GSM1376004': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2845399': {'replicate': 'Rep1', 'treatment': '4-OHT', 'time': '24hrs'}, 'GSM2392310': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2182709': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'AD with SB431542 and LDN193189', 'genotype': 'wild type'}, 'GSM2182708': {'line': 'WA09', 'tissue': 'inner cell mass', 'age': 'culture for 4 days', 'condition': 'EB with SB431542 and LDN193189', 'genotype': 'wild type'}, 'GSM1955946': {'a': '60627', 'cd38': '950', 'cd49f': '776', 'w': '65135', 'h': '61000', 'lin': '10', 'cd34': '9849', 'cd90': '2495', 'cd7': '-8', 'cd10': '1147', 'time': '13193', 'cd135': '3903', 'cd45ra': '235'}, 'GSM1955947': {'a': '62879', 'cd38': '919', 'cd49f': '274', 'w': '65622', 'h': '62797', 'lin': '738', 'cd34': '12834', 'cd90': '7086', 'cd7': '-80', 'cd10': '991', 'time': '13390', 'cd135': '4214', 'cd45ra': '187'}, 'GSM1955944': {'a': '35686', 'cd38': '194', 'cd49f': '352', 'w': '63241', 'h': '36981', 'lin': '-21', 'cd34': '3886', 'cd90': '969', 'cd7': '25', 'cd10': '935', 'time': '12769', 'cd135': '633', 'cd45ra': '110'}, 'GSM1955945': {'a': '48699', 'cd38': '545', 'cd49f': '406', 'w': '69822', 'h': '45709', 'lin': '364', 'cd34': '3360', 'cd90': '1174', 'cd7': '54', 'cd10': '769', 'time': '12983', 'cd135': '494', 'cd45ra': '235'}, 'GSM1955942': {'a': '52391', 'cd38': '987', 'cd49f': '2188', 'w': '68308', 'h': '50265', 'lin': '233', 'cd34': '7472', 'cd90': '-28', 'cd7': '257', 'cd10': '490', 'time': '12348', 'cd135': '4631', 'cd45ra': '2699'}, 'GSM1955943': {'a': '65824', 'cd38': '765', 'cd49f': '378', 'w': '68149', 'h': '63300', 'lin': '260', 'cd34': '8568', 'cd90': '875', 'cd7': '213', 'cd10': '609', 'time': '12551', 'cd135': '3938', 'cd45ra': '167'}, 'GSM1955940': {'a': '57669', 'cd38': '385', 'cd49f': '-148', 'w': '67363', 'h': '56105', 'lin': '399', 'cd34': '9334', 'cd90': '10457', 'cd7': '951', 'cd10': '288', 'time': '9410', 'cd135': '6235', 'cd45ra': '310'}, 'GSM1955941': {'a': '50620', 'cd38': '1165', 'cd49f': '745', 'w': '65032', 'h': '51012', 'lin': '26', 'cd34': '7360', 'cd90': '3412', 'cd7': '574', 'cd10': '909', 'time': '12145', 'cd135': '4621', 'cd45ra': '550'}, 'GSM1955948': {'a': '66133', 'cd38': '695', 'cd49f': '292', 'w': '67678', 'h': '64040', 'lin': '859', 'cd34': '9365', 'cd90': '4683', 'cd7': '166', 'cd10': '526', 'time': '13593', 'cd135': '3454', 'cd45ra': '210'}, 'GSM1955949': {'a': '61332', 'cd38': '223', 'cd49f': '320', 'w': '67206', 'h': '59808', 'lin': '-523', 'cd34': '5597', 'cd90': '473', 'cd7': '410', 'cd10': '672', 'time': '13844', 'cd135': '1863', 'cd45ra': '249'}, 'GSM2042119': {'cohort': 'Sporadic', 'tissue': 'Uninvolved left colon'}, 'GSM2042118': {'cohort': 'Serrated Polyposis', 'tissue': 'Uninvolved left colon'}, 'GSM2042111': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2042110': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2042113': {'cohort': 'Serrated Polyposis', 'tissue': 'Uninvolved right colon'}, 'GSM2042112': {'cohort': 'Sporadic', 'tissue': 'Uninvolved right colon'}, 'GSM2042115': {'cohort': 'Serrated Polyposis', 'tissue': 'Uninvolved right colon'}, 'GSM2042114': {'cohort': 'Serrated Polyposis', 'tissue': 'Uninvolved right colon'}, 'GSM2042117': {'cohort': 'Serrated Polyposis', 'tissue': 'Uninvolved right colon'}, 'GSM2042116': {'cohort': 'Serrated Polyposis', 'tissue': 'Uninvolved right colon'}, 'GSM2593194': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593195': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593196': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593197': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593190': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593191': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593192': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593193': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593198': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593199': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2565449': {'construction': 'PLATE-Seq', 'drug': '2,3-DCPE hydrochloride'}, 'GSM2153340': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2630149': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630148': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630145': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630144': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630147': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630146': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630141': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630140': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'SAR405838'}, 'GSM2630143': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630142': {'line': 'A427', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2172335': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172334': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172337': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172336': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172331': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2172330': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1577759': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM2172332': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1577757': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577756': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577755': {'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577754': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM2172339': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172338': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM1577751': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1577750': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM2310229': {'gender': 'Female', 'age': '10', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM1440622': {'info': 'shRNAs targeting Chr5q35 loci; TSPAN17 at Chr5:176,074,388', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'TSPAN-17 shRNA', 'id': 'TRCN0000034308'}, 'GSM1440620': {'info': 'shRNAs targeting Chr5q35 loci; TSPAN17 at Chr5:176,074,388', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'TSPAN-17 shRNA', 'id': 'TRCN0000034308'}, 'GSM1440621': {'info': 'shRNAs targeting Chr5q35 loci; TSPAN17 at Chr5:176,074,388', 'line': 'HEK293 Flp-In', 'dna': 'Promega pGL4.29', 'treatment': 'TSPAN-17 shRNA', 'id': 'TRCN0000034308'}, 'GSM1957548': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957549': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2047699': {'well': 'H02', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047698': {'well': 'H01', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047695': {'well': 'G10', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047694': {'well': 'G09', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1957542': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957543': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957544': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957545': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957546': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957547': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM3594657': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594656': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594655': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594654': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594653': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594652': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594651': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594650': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594659': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594658': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2411829': {'line': '4105B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411828': {'line': '2633D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411825': {'line': '25727B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411824': {'line': '25642C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411827': {'line': '2633B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411826': {'line': '25727G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411821': {'line': '24472D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411820': {'line': '22512D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411823': {'line': '25642B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM2411822': {'line': '24472K', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Minor/Minor'}, 'GSM714684': {'crosslinking': 'none', 'line': 'HEK293', 'nucleotide': 'none', 'transfection': 'none'}, 'GSM714685': {'crosslinking': 'none', 'line': 'HEK293', 'nucleotide': 'none', 'transfection': 'none'}, 'GSM714686': {'crosslinking': 'none', 'line': 'HEK293', 'nucleotide': 'none', 'transfection': 'anti-GFP'}, 'GSM714687': {'crosslinking': 'none', 'line': 'HEK293', 'nucleotide': 'none', 'transfection': 'anti-HuR'}, 'GSM714680': {'crosslinking': 'none', 'line': 'HEK293', 'nucleotide': '4SU', 'transfection': 'none'}, 'GSM714681': {'crosslinking': 'none', 'line': 'HEK293', 'nucleotide': '4SU', 'transfection': 'none'}, 'GSM714682': {'crosslinking': '254nm', 'line': 'HEK293', 'nucleotide': 'none', 'transfection': 'none'}, 'GSM714683': {'crosslinking': '254nm', 'line': 'HEK293', 'nucleotide': 'none', 'transfection': 'none'}, 'GSM2086422': {'line': 'HEK293'}, 'GSM2451089': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451088': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2081378': {'line': 'OCILY10 Diffuse large B-cell lymphomaÂ\\xa0(DLBCL) cell line', 'protocol': 'a dual inhibitor against G9a and DNMTs'}, 'GSM2081379': {'line': 'OCILY10 Diffuse large B-cell lymphomaÂ\\xa0(DLBCL) cell line', 'protocol': 'without treatment'}, 'GSM2454033': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2081374': {'line': 'CEMO-1 Acute Lymphoblastic Leukemia (ALL) cell line', 'protocol': 'a dual inhibitor against G9a and DNMTs'}, 'GSM2081375': {'line': 'CEMO-1 Acute Lymphoblastic Leukemia (ALL) cell line', 'protocol': 'without treatment'}, 'GSM2081376': {'line': 'CEMO-1 Acute Lymphoblastic Leukemia (ALL) cell line', 'protocol': 'a dual inhibitor against G9a and DNMTs'}, 'GSM2081377': {'line': 'OCILY10 Diffuse large B-cell lymphomaÂ\\xa0(DLBCL) cell line', 'protocol': 'without treatment'}, 'GSM2451087': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451086': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451085': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451084': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2332997': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2093122': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2147938': {'patient': 'P501', 'age': '25', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2332999': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2332998': {'origin': 'breast (tumor)', 'subtype': 'DCIS', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2653623': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM1985628': {'tissue': 'stem cells', 'passage': '51'}, 'GSM1985629': {'tissue': 'stem cells', 'passage': '51'}, 'GSM1437688': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1341691': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1234194': {'replicate': '1', 'line': '2610', 'antibody': 'RZ'}, 'GSM1341693': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341692': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1234191': {'replicate': '1', 'line': '2610', 'antibody': 'H3K4me3'}, 'GSM1341694': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1234193': {'replicate': '1', 'line': '2610', 'antibody': 'Input'}, 'GSM1341696': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341699': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341698': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1915034': {'line': 'MG63'}, 'GSM1234199': {'replicate': '2.2', 'line': '2630', 'antibody': 'CTCF'}, 'GSM1234198': {'replicate': '1', 'line': '2630', 'antibody': 'CTCF'}, 'GSM1915030': {'line': 'MG63.3'}, 'GSM1915031': {'line': 'MG63.3'}, 'GSM2243868': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B3', 'cluster': '8', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243869': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A6', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243860': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E3', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243861': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C4', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1380858': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2A'}, 'GSM2243863': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243864': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243865': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D8', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243866': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C2', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243867': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G1', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2653621': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM1380859': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2A'}, 'GSM2627071': {'origin': 'small intestine', 'patient_id': '174', 'type': 'lymph node metastasis', 'tumor_id': 'YC140'}, 'GSM2627070': {'origin': 'small intestine', 'patient_id': '207', 'type': 'lymph node metastasis', 'tumor_id': '152'}, 'GSM2627073': {'origin': 'small intestine', 'patient_id': '178', 'type': 'lymph node metastasis', 'tumor_id': 'YC144'}, 'GSM2627072': {'origin': 'small intestine', 'patient_id': '175', 'type': 'lymph node metastasis', 'tumor_id': 'YC141'}, 'GSM2627075': {'origin': 'small intestine', 'patient_id': '202', 'type': 'lymph node metastasis', 'tumor_id': 'YC186'}, 'GSM2627074': {'origin': 'small intestine', 'patient_id': '201', 'type': 'lymph node metastasis', 'tumor_id': 'YC185'}, 'GSM2627077': {'origin': 'small intestine', 'patient_id': '10', 'type': 'primary', 'tumor_id': '10'}, 'GSM2589145': {'1': '4-OHT'}, 'GSM2627079': {'origin': 'small intestine', 'patient_id': '135', 'type': 'primary', 'tumor_id': '109'}, 'GSM2627078': {'origin': 'small intestine', 'patient_id': '132', 'type': 'primary', 'tumor_id': '106'}, 'GSM2589146': {'antibody': 'none'}, 'GSM2589147': {'1': 'EtOH', '2': 'DMSO', 'antibody': 'RNAPII (N20, Santa Cruz, sc-899)'}, 'GSM984368': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'none'}, 'GSM984369': {'line': 'C4-2B', 'antibody': 'none', 'treatment': 'EtOH vehicle treated', 'manufacturer': 'none'}, 'GSM984364': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM984365': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM984366': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM984367': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM984360': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM984361': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM984362': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM984363': {'grade': 'N/A', 'recurrence': 'N/A', 'size': 'N/A', 'metastasis': 'N/A', 'Stage': 'N/A'}, 'GSM2589142': {'1': 'EtOH'}, 'GSM1571330': {'line': 'Caki1', 'variation': 'SETD2 wild-type'}, 'GSM1409649': {'vector': 'pRetroX-Tight-Pur', 'line': 'MDA-MB-231 derivative', 'tissue': 'breast cancer cell line'}, 'GSM2589149': {'1': 'EtOH', '2': 'CD532', 'antibody': 'RNAPII (N20, Santa Cruz, sc-899)'}, 'GSM2754621': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754620': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_1020', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754623': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_1020', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754622': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_1020', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754625': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_1056', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754624': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_1020', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754627': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_1056', 'previousdiagnosisoftb': 'No', 'tst': '22', 'type': 'Tcells'}, 'GSM2754626': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_1056', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1940654': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940655': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940656': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940657': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940650': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1914782': {'tissue': 'Cartilage', 'treatment': '4h IL-1beta', 'passage': 'P0'}, 'GSM1914781': {'tissue': 'Cartilage', 'treatment': '4h IL-1beta', 'passage': 'P0'}, 'GSM1914780': {'tissue': 'Cartilage', 'treatment': '4h IL-1beta', 'passage': 'P0'}, 'GSM1945955': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18504', 'for': '30min'}, 'GSM1521548': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2653624': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM3582031': {'line': 'SUM159 breast cancer cell line', 'genotype': 'WT'}, 'GSM3582032': {'line': 'SUM159 breast cancer cell line', 'genotype': 'PAI1 transfected'}, 'GSM2616637': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616636': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616635': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616634': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1434', 'subtype': 'Tregs'}, 'GSM2616633': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616632': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616631': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616630': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2537118': {'media': 'mTeSR1 (StemCell Technologies)', 'type': 'pluripotent stem cell', 'method': 'cultured cells', 'stage': 'pluripotent stem cell'}, 'GSM2537119': {'media': 'mTeSR1 (StemCell Technologies)', 'type': 'pluripotent stem cell', 'method': 'cultured cells', 'stage': 'pluripotent stem cell'}, 'GSM2616639': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616638': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM1233877': {'replicate': '2', 'line': '10847', 'antibody': 'H3K36me3'}, 'GSM1233876': {'replicate': '1', 'line': '10847', 'antibody': 'H3K36me3'}, 'GSM1233875': {'replicate': '2', 'line': '10847', 'antibody': 'H3K27me3'}, 'GSM1233874': {'replicate': '1', 'line': '10847', 'antibody': 'H3K27me3'}, 'GSM1233873': {'replicate': '2', 'line': '10847', 'antibody': 'H3K27Ac'}, 'GSM1233872': {'replicate': '1', 'line': '10847', 'antibody': 'H3K27Ac'}, 'GSM1233871': {'replicate': '2', 'line': '10847', 'antibody': 'CTCF'}, 'GSM1233870': {'replicate': '2.2', 'line': '10847', 'antibody': 'CTCF'}, 'GSM1380857': {'type': 'Primary fibroblast', 'mutation': 'RNASEH2B'}, 'GSM1233879': {'replicate': '2', 'line': '10847', 'antibody': 'H3K4me1'}, 'GSM1233878': {'replicate': '1', 'line': '10847', 'antibody': 'H3K4me1'}, 'GSM2779668': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779669': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779660': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779661': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779662': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779663': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779664': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM2779665': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779666': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2779667': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'THAP (2µM) for 2h'}, 'GSM2971176': {'activation': 'Ox mtDNA generation and pDC activation: Ox mtDNA was generated as previously described. Briefly, healthy neutrophils were pre-incubated with IFNα2β (2000 U/ml; Schering Corp.) for 90 min at 370C and then extensively washed before incubation with anti-RNP IgG (50 μg/ml) purified from SLE patient sera. Neutrophil supernatants were then collected, centrifuged for 10 min at 1400g and stored at -80C. PDCs (5x105 cells/well â\\x80\\x93 96 U bottom plate) were cultured with 40% v/v Ox mtDNA-containing neutrophil supernatants (referred in the text as â\\x80\\x9cOx mtDNAâ\\x80\\x9d) or with 5 μg/ml of either CpGA (ODN-2216; Invivogen) for 24 h. The volume of Ox mtDNA-containing neutrophil supernatants and the concentration of CpGA were selected based on their capacity to trigger similar levels of IFNα production by pDCs.', 'project': '1', 'tissue': 'T-cells', 'treatment': 'Ox mtDNA', 'diagnosis': 'healthy control', 'id': 'III'}, 'GSM2971177': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE111'}, 'GSM2971174': {'activation': 'Ox mtDNA generation and pDC activation: Ox mtDNA was generated as previously described. Briefly, healthy neutrophils were pre-incubated with IFNα2β (2000 U/ml; Schering Corp.) for 90 min at 370C and then extensively washed before incubation with anti-RNP IgG (50 μg/ml) purified from SLE patient sera. Neutrophil supernatants were then collected, centrifuged for 10 min at 1400g and stored at -80C. PDCs (5x105 cells/well â\\x80\\x93 96 U bottom plate) were cultured with 40% v/v Ox mtDNA-containing neutrophil supernatants (referred in the text as â\\x80\\x9cOx mtDNAâ\\x80\\x9d) or with 5 μg/ml of either CpGA (ODN-2216; Invivogen) for 24 h. The volume of Ox mtDNA-containing neutrophil supernatants and the concentration of CpGA were selected based on their capacity to trigger similar levels of IFNα production by pDCs.', 'project': '1', 'tissue': 'T-cells', 'treatment': 'Ox mtDNA', 'diagnosis': 'healthy control', 'id': 'I'}, 'GSM2971175': {'activation': 'Ox mtDNA generation and pDC activation: Ox mtDNA was generated as previously described. Briefly, healthy neutrophils were pre-incubated with IFNα2β (2000 U/ml; Schering Corp.) for 90 min at 370C and then extensively washed before incubation with anti-RNP IgG (50 μg/ml) purified from SLE patient sera. Neutrophil supernatants were then collected, centrifuged for 10 min at 1400g and stored at -80C. PDCs (5x105 cells/well â\\x80\\x93 96 U bottom plate) were cultured with 40% v/v Ox mtDNA-containing neutrophil supernatants (referred in the text as â\\x80\\x9cOx mtDNAâ\\x80\\x9d) or with 5 μg/ml of either CpGA (ODN-2216; Invivogen) for 24 h. The volume of Ox mtDNA-containing neutrophil supernatants and the concentration of CpGA were selected based on their capacity to trigger similar levels of IFNα production by pDCs.', 'project': '1', 'tissue': 'T-cells', 'treatment': 'Ox mtDNA', 'diagnosis': 'healthy control', 'id': 'II'}, 'GSM2971172': {'activation': 'Ox mtDNA generation and pDC activation: Ox mtDNA was generated as previously described. Briefly, healthy neutrophils were pre-incubated with IFNα2β (2000 U/ml; Schering Corp.) for 90 min at 370C and then extensively washed before incubation with anti-RNP IgG (50 μg/ml) purified from SLE patient sera. Neutrophil supernatants were then collected, centrifuged for 10 min at 1400g and stored at -80C. PDCs (5x105 cells/well â\\x80\\x93 96 U bottom plate) were cultured with 40% v/v Ox mtDNA-containing neutrophil supernatants (referred in the text as â\\x80\\x9cOx mtDNAâ\\x80\\x9d) or with 5 μg/ml of either CpGA (ODN-2216; Invivogen) for 24 h. The volume of Ox mtDNA-containing neutrophil supernatants and the concentration of CpGA were selected based on their capacity to trigger similar levels of IFNα production by pDCs.', 'project': '1', 'tissue': 'T-cells', 'treatment': 'CpGA', 'diagnosis': 'healthy control', 'id': 'II'}, 'GSM2971173': {'activation': 'Ox mtDNA generation and pDC activation: Ox mtDNA was generated as previously described. Briefly, healthy neutrophils were pre-incubated with IFNα2β (2000 U/ml; Schering Corp.) for 90 min at 370C and then extensively washed before incubation with anti-RNP IgG (50 μg/ml) purified from SLE patient sera. Neutrophil supernatants were then collected, centrifuged for 10 min at 1400g and stored at -80C. PDCs (5x105 cells/well â\\x80\\x93 96 U bottom plate) were cultured with 40% v/v Ox mtDNA-containing neutrophil supernatants (referred in the text as â\\x80\\x9cOx mtDNAâ\\x80\\x9d) or with 5 μg/ml of either CpGA (ODN-2216; Invivogen) for 24 h. The volume of Ox mtDNA-containing neutrophil supernatants and the concentration of CpGA were selected based on their capacity to trigger similar levels of IFNα production by pDCs.', 'project': '1', 'tissue': 'T-cells', 'treatment': 'CpGA', 'diagnosis': 'healthy control', 'id': 'III'}, 'GSM2971170': {'activation': 'N/A', 'project': '1', 'tissue': 'T-cells', 'treatment': 'Th0', 'diagnosis': 'healthy control', 'id': 'III'}, 'GSM2971171': {'activation': 'Ox mtDNA generation and pDC activation: Ox mtDNA was generated as previously described. Briefly, healthy neutrophils were pre-incubated with IFNα2β (2000 U/ml; Schering Corp.) for 90 min at 370C and then extensively washed before incubation with anti-RNP IgG (50 μg/ml) purified from SLE patient sera. Neutrophil supernatants were then collected, centrifuged for 10 min at 1400g and stored at -80C. PDCs (5x105 cells/well â\\x80\\x93 96 U bottom plate) were cultured with 40% v/v Ox mtDNA-containing neutrophil supernatants (referred in the text as â\\x80\\x9cOx mtDNAâ\\x80\\x9d) or with 5 μg/ml of either CpGA (ODN-2216; Invivogen) for 24 h. The volume of Ox mtDNA-containing neutrophil supernatants and the concentration of CpGA were selected based on their capacity to trigger similar levels of IFNα production by pDCs.', 'project': '1', 'tissue': 'T-cells', 'treatment': 'CpGA', 'diagnosis': 'healthy control', 'id': 'I'}, 'GSM2971178': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE111'}, 'GSM2971179': {'activation': 'N/A', 'project': '2', 'tissue': 'whole blood', 'treatment': 'N/A', 'diagnosis': 'Systemic Lupus Erythematosus (SLE)', 'id': 'SLE224'}, 'GSM2865066': {'tisue': 'retina', 'antibody': 'H3K27ac (Abcam, ab4729)', 'disease': 'normal', 'agent': 'DMSO'}, 'GSM1129244': {'input': '1000 ng', 'state': 'partially degraded'}, 'GSM1129245': {'input': '1000 ng', 'state': 'partially degraded'}, 'GSM1129242': {'input': '1000 ng', 'state': 'formalin-fixed, paraffin-embedded (FFPE)'}, 'GSM1129243': {'input': '1000 ng', 'state': 'partially degraded'}, 'GSM2348554': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1129241': {'input': '1000 ng', 'state': 'formalin-fixed, paraffin-embedded (FFPE)'}, 'GSM2158358': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2348552': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2309032': {'line': 'Derived from H9 ESC', 'type': 'Human ESC-derived Neuroectodermal Cells'}, 'GSM2309030': {'line': 'H9 ESC', 'type': 'Human Embryonic Stem Cells'}, 'GSM2309031': {'line': 'Derived from H9 ESC', 'type': 'Human ESC-derived Neuroectodermal Cells'}, 'GSM2275065': {'area_under_the_curve': '0.95286625', 'siteandparticipantcode': '921524', 'baseline_area_under_the_curve': '0.95286625', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '934898', 'sampleID': 'S12602', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib910', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '3,4,7,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_921524', 'gender': 'Female', 'age': '17', 'race': 'White', 'libraryid': 'lib910', 'studysiteshort': 'YALE'}, 'GSM2275064': {'area_under_the_curve': '1.079318594', 'siteandparticipantcode': '738493', 'baseline_area_under_the_curve': '1.079318594', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '933053', 'sampleID': 'S12601', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib909', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,2,5,6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_738493', 'gender': 'Female', 'age': '11', 'race': 'White; White', 'libraryid': 'lib909', 'studysiteshort': 'YALE'}, 'GSM2275067': {'area_under_the_curve': '0.863651406', 'siteandparticipantcode': '137567', 'baseline_area_under_the_curve': '0.968640469', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '89.16119387', 'auc_percent_of_baseline': '89.16119387', 'trunkbarcode': '905609', 'sampleID': 'S12604', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1484', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_137567', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib1484', 'studysiteshort': 'COLUMBIA'}, 'GSM2275066': {'area_under_the_curve': '0.586800938', 'siteandparticipantcode': '505125', 'baseline_area_under_the_curve': '0.638933438', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '91.84069937', 'auc_percent_of_baseline': '91.84069937', 'trunkbarcode': '905606', 'sampleID': 'S12603', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1483', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_505125', 'gender': 'Male', 'age': '15', 'race': 'White; White', 'libraryid': 'lib1483', 'studysiteshort': 'COLUMBIA'}, 'GSM2275061': {'area_under_the_curve': '1.054079844', 'siteandparticipantcode': '229085', 'baseline_area_under_the_curve': '1.054079844', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '927388', 'sampleID': 'S12598', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib906', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_229085', 'gender': 'Male', 'age': '15', 'race': 'White', 'libraryid': 'lib906', 'studysiteshort': 'YALE'}, 'GSM2275060': {'area_under_the_curve': '0.560010625', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '927389', 'sampleID': 'S12597', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib905', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'race': 'White', 'libraryid': 'lib905', 'studysiteshort': 'YALE'}, 'GSM2275063': {'area_under_the_curve': '0.548115313', 'siteandparticipantcode': '283344', 'baseline_area_under_the_curve': '0.548115313', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '933054', 'sampleID': 'S12600', 'flowcellid': 'C25A9ACXX', 'status': 'R', 'samplelabel': 'lib908', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_283344', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib908', 'studysiteshort': 'YALE'}, 'GSM2275062': {'area_under_the_curve': '0.704254219', 'siteandparticipantcode': '678610', 'baseline_area_under_the_curve': '0.704254219', 'projectid': 'P54-1', 'visitmonth': '0', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '100', 'auc_percent_of_baseline': '100', 'trunkbarcode': '928606', 'sampleID': 'S12599', 'flowcellid': 'C25A9ACXX', 'status': 'NR', 'samplelabel': 'lib907', 'visitnumber': '0', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '4,8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_678610', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib907', 'studysiteshort': 'YALE'}, 'GSM2275069': {'area_under_the_curve': '0.937660938', 'siteandparticipantcode': '493934', 'baseline_area_under_the_curve': '1.24331875', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '75.41597338', 'auc_percent_of_baseline': '75.41597338', 'trunkbarcode': '905608', 'sampleID': 'S12606', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1486', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_493934', 'gender': 'Female', 'age': '10', 'race': 'Black or African American', 'libraryid': 'lib1486', 'studysiteshort': 'COLUMBIA'}, 'GSM2275068': {'area_under_the_curve': '0.46464125', 'siteandparticipantcode': '209864', 'baseline_area_under_the_curve': '0.48657', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '95.49319728', 'auc_percent_of_baseline': '95.49319728', 'trunkbarcode': '913562', 'sampleID': 'S12605', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1485', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_209864', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib1485', 'studysiteshort': 'COLUMBIA'}, 'GSM1513246': {'gender': 'Female', 'line': 'GM19193', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM3586834': {'origin': 'ABC', 'pfstt': '606', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '606', 'cycles': '6', 'oscs': '0'}, 'GSM3586835': {'origin': 'GCB', 'pfstt': '868', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '868', 'cycles': '6', 'oscs': '0'}, 'GSM3586836': {'origin': 'GCB', 'pfstt': '948', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1060', 'cycles': '6', 'oscs': '0'}, 'GSM3586837': {'origin': 'GCB', 'pfstt': '1021', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1030', 'cycles': '6', 'oscs': '0'}, 'GSM3586830': {'origin': 'GCB', 'pfstt': '809', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '809', 'cycles': '6', 'oscs': '0'}, 'GSM3586831': {'origin': 'GCB', 'pfstt': '776', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '789', 'cycles': '6', 'oscs': '0'}, 'GSM3586832': {'origin': 'UNCLASSIFIED', 'pfstt': '366', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '366', 'cycles': '6', 'oscs': '1'}, 'GSM3586833': {'origin': 'UNCLASSIFIED', 'pfstt': '925', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '930', 'cycles': '6', 'oscs': '0'}, 'GSM1513244': {'gender': 'Female', 'line': 'GM19190', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM3586838': {'origin': 'GCB', 'pfstt': '146', 'pfscs': '1', 'region': 'Other', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '146', 'cycles': '8', 'oscs': '1'}, 'GSM3586839': {'origin': 'GCB', 'pfstt': '424', 'pfscs': '1', 'region': 'Other', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '845', 'cycles': '6', 'oscs': '0'}, 'GSM1561398': {'source': 'pleural cavity', 'line': 'HPM3', 'type': 'primary mesothelial cells', 'treatment': 'no exposure for 8 hrs'}, 'GSM1561399': {'source': 'pleural cavity', 'line': 'HPM3', 'type': 'primary mesothelial cells', 'treatment': 'no exposure for 8 hrs'}, 'GSM1561394': {'source': 'peritoneal cavity', 'line': 'HM3', 'type': 'primary mesothelial cells', 'treatment': 'no exposure for 8 hrs'}, 'GSM1561395': {'source': 'peritoneal cavity', 'line': 'HM3', 'type': 'primary mesothelial cells', 'treatment': 'no exposure for 8 hrs'}, 'GSM1561396': {'source': 'peritoneal cavity', 'line': 'HM3', 'type': 'primary mesothelial cells', 'treatment': '5 μg/cm2 of crocidolite asbestos exposure for 8 hrs'}, 'GSM1561397': {'source': 'peritoneal cavity', 'line': 'HM3', 'type': 'primary mesothelial cells', 'treatment': '5 μg/cm2 of crocidolite asbestos exposure for 8 hrs'}, 'GSM1561390': {'source': 'peritoneal cavity', 'line': 'LP9', 'type': 'immortalized mesothelial cells', 'treatment': 'no exposure for 8 hrs'}, 'GSM1561391': {'source': 'peritoneal cavity', 'line': 'LP9', 'type': 'immortalized mesothelial cells', 'treatment': 'no exposure for 8 hrs'}, 'GSM1561392': {'source': 'peritoneal cavity', 'line': 'LP9', 'type': 'immortalized mesothelial cells', 'treatment': '5 μg/cm2 of crocidolite asbestos exposure for 8 hrs'}, 'GSM1561393': {'source': 'peritoneal cavity', 'line': 'LP9', 'type': 'immortalized mesothelial cells', 'treatment': '5 μg/cm2 of crocidolite asbestos exposure for 8 hrs'}, 'GSM2243473': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243472': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243471': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM921058': {'barcode': 'CCTTTC', 'type': 'none', 'treatment': 'Blank', 'name': 'none', 'day': 'none'}, 'GSM2243477': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243476': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243475': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243474': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM921053': {'barcode': 'ACCTGA', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd7'}, 'GSM921052': {'barcode': 'AACCTA', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd6'}, 'GSM921051': {'barcode': 'CTGAAA', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd5'}, 'GSM921050': {'barcode': 'CAACAA', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Daphne', 'day': 'd4'}, 'GSM921057': {'barcode': 'CGAGTA', 'type': 'none', 'treatment': 'Blank', 'name': 'none', 'day': 'none'}, 'GSM921056': {'barcode': 'CGCACC', 'type': 'none', 'treatment': 'Blank', 'name': 'none', 'day': 'none'}, 'GSM921055': {'barcode': 'GGGCGA', 'type': 'none', 'treatment': 'Blank', 'name': 'none', 'day': 'none'}, 'GSM921054': {'barcode': 'TCACTT', 'type': 'none', 'treatment': 'Blank', 'name': 'none', 'day': 'none'}, 'GSM3019907': {'marker': 'CD19+ CD11c- IgD- CD27+CD38int', 'type': 'CD19+ CD11c- IgD- CD38int Memory B cells', 'collection': 'RA-2', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019906': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11c- IgD- CD38- Memory B cells', 'collection': 'RA-2', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019905': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11chi IgD- CD38- B cells', 'collection': 'RA-2', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019904': {'marker': 'CD19+ CD11c- IgD+ CD27-CD38int', 'type': 'CD19+ CD11c- IgD+ CD38int Naive B cells', 'collection': 'RA-1', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019903': {'marker': 'CD19+ CD11c- IgD- CD27+CD38int', 'type': 'CD19+ CD11c- IgD- CD38int Memory B cells', 'collection': 'RA-1', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019902': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11c- IgD- CD38- Memory B cells', 'collection': 'RA-1', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019901': {'marker': 'CD19+ CD11chi IgD- CD27-CD38-', 'type': 'CD19+ CD11chi IgD- CD38- B cells', 'collection': 'RA-1', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019900': {'marker': 'CD19+ CD11c- IgD+ CD27-CD38int', 'type': 'CD19+ CD11c- IgD+ CD38int Naive B cells', 'collection': 'HC-1', 'diagnosis': 'Healthy subject'}, 'GSM3019909': {'marker': 'CD19+ CD11chi IgD- CD27-CD38-', 'type': 'CD19+ CD11chi IgD- CD38- B cells', 'collection': 'RA-3', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM3019908': {'marker': 'CD19+ CD11c- IgD+ CD27-CD38int', 'type': 'CD19+ CD11c- IgD+ CD38int Naive B cells', 'collection': 'RA-2', 'diagnosis': 'Subject with Rheumatoid arthritis (RA)'}, 'GSM2575363': {'line': 'WM983B', 'subclone': 'B7', 'condition': 'Drug'}, 'GSM2341626': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'LBR'}, 'GSM1667186': {'line': 'HCT116', 'shRNA': 'CDK8', 'type': 'colorectal carcinoma cell line', 'condition': '24 hrs hypoxia (1% O2)'}, 'GSM1667187': {'line': 'HCT116', 'shRNA': 'HIF1A null', 'type': 'colorectal carcinoma cell line', 'condition': '24 hrs hypoxia (1% O2)'}, 'GSM1667184': {'line': 'HCT116', 'shRNA': 'TIP60', 'type': 'colorectal carcinoma cell line', 'condition': '24 hrs hypoxia (1% O2)'}, 'GSM1667185': {'line': 'HCT116', 'shRNA': 'CDK8', 'type': 'colorectal carcinoma cell line', 'condition': '24 hrs hypoxia (1% O2)'}, 'GSM1667182': {'line': 'HCT116', 'shRNA': 'non-targeting', 'type': 'colorectal carcinoma cell line', 'condition': '24 hrs hypoxia (1% O2)'}, 'GSM1667183': {'line': 'HCT116', 'shRNA': 'TIP60', 'type': 'colorectal carcinoma cell line', 'condition': '24 hrs hypoxia (1% O2)'}, 'GSM1667180': {'line': 'HCT116', 'shRNA': 'HIF1A null', 'type': 'colorectal carcinoma cell line', 'condition': 'normoxia'}, 'GSM1667181': {'line': 'HCT116', 'shRNA': 'non-targeting', 'type': 'colorectal carcinoma cell line', 'condition': '24 hrs hypoxia (1% O2)'}, 'GSM1667188': {'line': 'HCT116', 'shRNA': 'HIF1A null', 'type': 'colorectal carcinoma cell line', 'condition': '24 hrs hypoxia (1% O2)'}, 'GSM2048575': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048574': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048577': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048576': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048571': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048570': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048573': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048572': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2048579': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM1665955': {'with': 'Myc siRNA', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM2274732': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32795', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9385', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C14', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9385', 'studysiteshort': 'UCSF'}, 'GSM2274733': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32797', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9387', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C20', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9387', 'studysiteshort': 'UCSF'}, 'GSM2058046': {'line': 'V784', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM1665954': {'with': 'none (mock-transfected)', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM2058040': {'line': 'V456', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058041': {'line': 'V457', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2274734': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32798', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9388', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C26', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9388', 'studysiteshort': 'UCSF'}, 'GSM2274735': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32800', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9390', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C32', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9390', 'studysiteshort': 'UCSF'}, 'GSM2061725': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2274738': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32803', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9393', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C27', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9393', 'studysiteshort': 'UCSF'}, 'GSM2274739': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32804', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9394', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C49', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9394', 'studysiteshort': 'UCSF'}, 'GSM2058048': {'line': 'V855', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058049': {'line': 'V866', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2061724': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM2746536': {'antibody': 'anti-H3K4me1 (ab8895)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746537': {'antibody': 'anti-H3K427ac (ab4729)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746534': {'antibody': '12.5 ng ml-1 TNF-α for 16 hr', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746535': {'antibody': 'anti-H3K4me1 (ab8895)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2125147': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10nM Estradiol + 10 nM DHT', 'time': '45 minutes'}, 'GSM2125145': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM DHT', 'time': '45 minutes'}, 'GSM2125149': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': 'Vehicle', 'time': '60 minutes'}, 'GSM2746538': {'antibody': 'anti-H3K427ac (ab4729)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2746539': {'antibody': 'anti-p53 (FL393, sc6243)', 'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2277424': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277423': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277422': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277421': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277420': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2180154': {'source': 'H9', 'subtype': 'Cerebral organoids, 60 days differentiation', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180155': {'subtype': 'Middle frontal gyrus from 19w gestation human brain', 'Sex': 'Male'}, 'GSM2180150': {'source': 'H9', 'subtype': 'Embryoid body derived from H9 hESC', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180151': {'source': 'H9', 'subtype': 'Cerebral organoids, 40 days differentiation', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180152': {'source': 'H9', 'subtype': 'Cerebral organoids, 40 days differentiation', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2180153': {'source': 'H9', 'subtype': 'Cerebral organoids, 60 days differentiation', 'type': 'human embryonic stem cell line', 'Sex': 'Female'}, 'GSM2301450': {'gender': 'male', 'type': 'LuCaP 23.1 PDX tumor', 'group': 'YK-4-279'}, 'GSM2301451': {'gender': 'male', 'type': 'LuCaP 35 PDX tumor', 'group': 'control'}, 'GSM2301452': {'gender': 'male', 'type': 'LuCaP 35 PDX tumor', 'group': 'control'}, 'GSM2301453': {'gender': 'male', 'type': 'LuCaP 35 PDX tumor', 'group': 'YK-4-279'}, 'GSM2301454': {'gender': 'male', 'type': 'LuCaP 35 PDX tumor', 'group': 'YK-4-279'}, 'GSM2301455': {'gender': 'male', 'type': 'LuCaP 86.2 PDX tumor', 'group': 'control'}, 'GSM2301456': {'gender': 'male', 'type': 'LuCaP 86.2 PDX tumor', 'group': 'control'}, 'GSM2301457': {'gender': 'male', 'type': 'LuCaP 86.2 PDX tumor', 'group': 'YK-4-279'}, 'GSM2301458': {'gender': 'male', 'type': 'LuCaP 86.2 PDX tumor', 'group': 'YK-4-279'}, 'GSM2301459': {'gender': 'male', 'type': 'LuCaP 96 PDX tumor', 'group': 'control'}, 'GSM2372328': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372329': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372320': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372321': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372322': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372323': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372324': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372325': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372326': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2372327': {'tissue': 'Posterior Fossa Ependymoma', 'subgroup': 'Low global H3K27me3'}, 'GSM2143924': {'type': 'bladder cancer cells', 'overexpression': 'full length foxp 3'}, 'GSM2143925': {'type': 'bladder cancer cells', 'overexpression': 'full length foxp 3'}, 'GSM2143926': {'type': 'bladder cancer cells', 'overexpression': 'full length foxp 3'}, 'GSM2731734': {'source': 'Xenografts of BON cells which were derived from a metastasis of a human pancreatic neuroendocrine tumor', 'tissue': 'Tumor', 'type': 'BON cells subcutaneously injected into mice'}, 'GSM2143921': {'type': 'bladder cancer cells', 'overexpression': 'foxp3 delta3'}, 'GSM2143922': {'type': 'bladder cancer cells', 'overexpression': 'foxp3 delta3'}, 'GSM2143923': {'type': 'bladder cancer cells', 'overexpression': 'foxp3 delta3'}, 'GSM2433109': {'state': 'Idiopathic Pulmonary Fibrosis', 'tissue': 'lung'}, 'GSM2348589': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348588': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1980293': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1978809': {'line': 'MCF7', 'antibody': 'TRIM28', 'treatment': 'Control'}, 'GSM2348581': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348580': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2747604': {'line': 'fhRPE-13A', 'passages': '48', 'type': 'retina pigment epithelium', 'Stage': '2 days'}, 'GSM2348582': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348585': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348584': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348587': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348586': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2492293': {'line': '293FT'}, 'GSM2565284': {'construction': 'PLATE-Seq', 'drug': 'Pirarubicin'}, 'GSM2492291': {'line': '293FT'}, 'GSM2492290': {'line': '293FT'}, 'GSM2492297': {'line': '293FT'}, 'GSM2565280': {'construction': 'PLATE-Seq', 'drug': 'IPAG'}, 'GSM2492295': {'line': '293FT'}, 'GSM2492294': {'line': '293FT'}, 'GSM2492299': {'line': '293FT'}, 'GSM2492298': {'line': '293FT'}, 'GSM2565289': {'construction': 'PLATE-Seq', 'drug': 'Vindesine sulphate'}, 'GSM2565288': {'construction': 'PLATE-Seq', 'drug': 'Tirapazamine'}, 'GSM936510': {'line': 'HEK293', 'medium': 'DMEM', 'antibody': 'FLAG', 'expressing': 'HIS/FLAG/HA-tagged ZC3H7B'}, 'GSM1678857': {'treated': 'Not treated', 'line': 'A549 cells', 'infected': 'Not infected'}, 'GSM1678858': {'treated': 'Not treated', 'line': 'A549 cells', 'infected': 'Not infected'}, 'GSM1678859': {'treated': 'Not treated', 'line': 'A549 cells', 'infected': 'Infected with Influenza virus'}, 'GSM2391010': {'disease': 'Pulmonary Hypertension'}, 'GSM2535989': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6797', 'samplename': '1_T1D#4_RO+_C41', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30161', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6797', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C41'}, 'GSM2535988': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6796', 'samplename': '1_T1D#4_RO+_C35', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30160', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6796', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C35'}, 'GSM2535987': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6795', 'samplename': '1_T1D#4_RO+_C23', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30159', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6795', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C23'}, 'GSM2535986': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6794', 'samplename': '1_T1D#4_RO+_C17', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30158', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6794', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C17'}, 'GSM2535985': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6793', 'samplename': '1_T1D#4_RO+_C11', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30157', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6793', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C11'}, 'GSM2535984': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6792', 'samplename': '1*_T1D#4_RO+_C46', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30156', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6792', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C46'}, 'GSM2535983': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6791', 'samplename': '1_T1D#4_RO+_C28', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30155', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6791', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C28'}, 'GSM2535982': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6790', 'samplename': '1_T1D#4_RO+_C24', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30154', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6790', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C24'}, 'GSM2535981': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6789', 'samplename': '1_T1D#4_RO+_C73', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30153', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6789', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C73'}, 'GSM2535980': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6788', 'samplename': '1_T1D#4_RO+_C92', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30152', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6788', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C92'}, 'GSM1914992': {'line': 'LM7', 'antibody': 'NA'}, 'GSM1914993': {'line': 'LM7', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1914990': {'line': 'Hu09', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1914991': {'line': 'Hu09', 'antibody': 'NA'}, 'GSM1914996': {'line': 'M112', 'antibody': 'NA'}, 'GSM1914997': {'line': 'M112', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM1914994': {'line': 'LM7', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1914995': {'line': 'LM7', 'antibody': 'NA'}, 'GSM1261898': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'surrounding normal lung (nor)', 'id': '5'}, 'GSM1914999': {'line': 'M112', 'antibody': 'NA'}, 'GSM2024766': {'donor': 'G', 'time': '4', 'id': '816', 'treatment': 'RPMI'}, 'GSM2024767': {'donor': 'C', 'time': '24', 'id': '761', 'treatment': 'TPC1 cell line'}, 'GSM2024764': {'donor': 'E', 'time': '4', 'id': '782', 'treatment': 'RPMI'}, 'GSM2024765': {'donor': 'F', 'time': '4', 'id': '799', 'treatment': 'RPMI'}, 'GSM2024762': {'donor': 'G', 'time': '24', 'id': '818', 'treatment': 'RPMI'}, 'GSM2024763': {'donor': 'C', 'time': '4', 'id': '765', 'treatment': 'RPMI'}, 'GSM2024760': {'donor': 'E', 'time': '24', 'id': '784', 'treatment': 'RPMI'}, 'GSM2024761': {'donor': 'F', 'time': '24', 'id': '801', 'treatment': 'RPMI'}, 'GSM1261899': {'source': 'laser micro-dissected archival FFPE tissue specimens', 'type': 'non-invasive adenocarcinoma in situ (ais)', 'id': '6'}, 'GSM2024768': {'donor': 'E', 'time': '24', 'id': '778', 'treatment': 'TPC1 cell line'}, 'GSM2024769': {'donor': 'F', 'time': '24', 'id': '795', 'treatment': 'TPC1 cell line'}, 'GSM2747600': {'line': 'fhRPE-13A', 'passages': '27', 'type': 'retina pigment epithelium', 'Stage': '2 days'}, 'GSM2141566': {'individual': 'EU128', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141567': {'individual': 'EU128', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141564': {'individual': 'EU126', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141565': {'individual': 'EU128', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141562': {'individual': 'EU126', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141563': {'individual': 'EU126', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141560': {'individual': 'EU122', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141561': {'individual': 'EU122', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141568': {'individual': 'EU130', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141569': {'individual': 'EU130', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM554126': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM554124': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM554122': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM849339': {'lineage': 'mesoderm', 'description': 'Poly(A)+ RNA longer than 200 nt', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'I40', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'Delve version 0.9', 'biorep': 'gen0137C'}, 'GSM849338': {'lineage': 'mesoderm', 'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'J91', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '001N'}, 'GSM849337': {'lineage': 'mesoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'I23', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'karyotype': 'cancer', 'biorep': 'gen0149N'}, 'GSM849336': {'lineage': 'endoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'I09', 'softwareversion': 'Delve version 0.9', 'sex': 'M', 'rnaextract': 'longNonPolyA', 'biorep': 'gen0159WC'}, 'GSM849335': {'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'K01', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '013WC'}, 'GSM849334': {'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'J98', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '013N'}, 'GSM849333': {'lineage': 'mesoderm', 'description': 'Total RNA extract (longer than 200 nt)', 'localization': 'chromatin', 'datatype': 'Cage', 'labexpid': 'I35', 'sex': 'F', 'rnaextract': 'total', 'labversion': 'Delve version 0.9', 'karyotype': 'cancer', 'biorep': 'gen0134CH'}, 'GSM849332': {'lineage': 'mesoderm', 'description': 'Total RNA extract (longer than 200 nt)', 'localization': 'nucleolus', 'datatype': 'Cage', 'labexpid': 'I33', 'sex': 'F', 'rnaextract': 'total', 'karyotype': 'cancer', 'biorep': 'gen0144NL'}, 'GSM849331': {'lineage': 'ectoderm', 'description': 'tier 1', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'J96', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '011N'}, 'GSM849330': {'lineage': 'ectoderm', 'description': 'tier 1', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'J87', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '011C'}, 'GSM2155552': {'line': 'HEK293', 'condition': 'control'}, 'GSM2155553': {'line': 'HEK293', 'condition': 'control'}, 'GSM2155550': {'line': 'HEK293', 'condition': 'Overexpressed DIS3L2 D391N mutant'}, 'GSM2155551': {'line': 'HEK293', 'condition': 'Overexpressed DIS3L2 D391N mutant'}, 'GSM2155554': {'line': 'HEK293', 'condition': 'control'}, 'GSM1665948': {'with': 'non-targeting siRNAs', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665949': {'with': 'non-targeting siRNAs', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665946': {'with': 'non-targeting siRNAs', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1665947': {'with': 'non-targeting siRNAs', 'line': 'RKO', 'type': 'colon carcinoma cell line'}, 'GSM1401751': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401750': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401753': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1917086': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1401755': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401754': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401757': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401756': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401759': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401758': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1917089': {'transduction': 'cotransduced with pWZL HRASV12 and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'senescent'}, 'GSM1917088': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1369095': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siCCNK'}, 'GSM2257549': {'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Control siRNA transfection, 3 days', 'background': 'KRAS mutation'}, 'GSM2257546': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257544': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257545': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257542': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257543': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257540': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'DMSO treatment for 3 hours', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2257541': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM1333405': {'gender': 'Male', 'type': 'NORMAL_LONG-BONE'}, 'GSM1333404': {'gender': 'Male', 'type': 'NORMAL_SKULL'}, 'GSM1333407': {'gender': 'Female', 'type': 'NORMAL_LONG-BONE'}, 'GSM1333406': {'gender': 'Male', 'type': 'NORMAL_LONG-BONE'}, 'GSM1333401': {'gender': 'Male', 'type': 'NORMAL_SKULL'}, 'GSM1333400': {'gender': 'Female', 'type': 'SAGITAL'}, 'GSM1333403': {'gender': 'Female', 'type': 'NORMAL_SKULL'}, 'GSM1333402': {'gender': 'Male', 'type': 'NORMAL_SKULL'}, 'GSM1333408': {'gender': 'Female', 'type': 'NORMAL_LONG-BONE'}, 'GSM2166405': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2257558': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'MEK inhibitor 3 hours at 0.2 uM', 'background': 'KRAS mutation'}, 'GSM2153209': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2257557': {'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'MEK inhibitor 3 hours at 0.2 uM', 'background': 'KRAS mutation'}, 'GSM2257556': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'A549', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'ERK inhibitor 3 hours at 1uM', 'background': 'KRAS mutation'}, 'GSM2471135': {'lineage': 'erythroid', 'transduction': 'empty vector', 'type': 'BFU-E'}, 'GSM2471134': {'lineage': 'erythroid', 'transduction': 'empty vector', 'type': 'BFU-E'}, 'GSM2471137': {'lineage': 'erythroid', 'transduction': 'U2AF1 wild-type', 'type': 'BFU-E'}, 'GSM1833898': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'wild-type', 'time': 'Embryoid body, day 50'}, 'GSM1833897': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'wild-type', 'time': 'Embryoid body, day 50'}, 'GSM2471138': {'lineage': 'erythroid', 'transduction': 'U2AF1 wild-type', 'type': 'BFU-E'}, 'GSM1833895': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM1833894': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM1833893': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM1833892': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM1833891': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM1833890': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neural progenitor cells', 'genotype': 'DISC1 exon 2 mut/mut', 'time': 'Embryoid body, day 17'}, 'GSM1113418': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 7 post-vaccine'}, 'GSM1113419': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 8 post-vaccine'}, 'GSM1113416': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 5 post-vaccine'}, 'GSM1113417': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 6 post-vaccine'}, 'GSM1332750': {'passages': 'tissue', 'type': 'human', 'chromosome': 'diploid'}, 'GSM1113415': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 4 post-vaccine'}, 'GSM1113412': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 1 post-vaccine'}, 'GSM1113413': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 2 post-vaccine'}, 'GSM1113410': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 10 post-vaccine'}, 'GSM1113411': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T16', 'point': 'Day 0 (pre-vaccine)'}, 'GSM1409339': {'tissue': 'skin', 'inhibitors': 'Normal'}, 'GSM1409338': {'tissue': 'skin', 'inhibitors': 'Normal'}, 'GSM2326053': {'type': 'Human embryonic stem cell'}, 'GSM2326052': {'type': 'Human embryonic stem cell'}, 'GSM2326051': {'type': 'Human embryonic stem cell'}, 'GSM2326050': {'type': 'Human embryonic stem cell'}, 'GSM1409337': {'tissue': 'skin', 'inhibitors': 'Normal'}, 'GSM1409336': {'tissue': 'skin', 'inhibitors': 'Normal'}, 'GSM1409335': {'tissue': 'skin', 'inhibitors': 'Normal'}, 'GSM1409334': {'tissue': 'skin', 'inhibitors': 'Normal'}, 'GSM565962': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'JAK inhibitor'}, 'GSM2460290': {'type': 'human embyronic kidney cells'}, 'GSM2460291': {'type': 'human embyronic kidney cells'}, 'GSM2609176': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM1480752': {'line': 'TSU-1621-MT', 'with': 'control shRNA'}, 'GSM1480753': {'line': 'TSU-1621-MT', 'with': 'shRNA FUS-ERG'}, 'GSM1480750': {'line': 'TSU-1621-MT'}, 'GSM2609177': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM2348792': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2391983': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391982': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391981': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391980': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391987': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391986': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391985': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391984': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2082524': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2+/-'}, 'GSM2082525': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2-/-'}, 'GSM2082526': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2-/-'}, 'GSM2082527': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2+/+'}, 'GSM2082520': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2-/-'}, 'GSM2082521': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2+/+'}, 'GSM2082522': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2+/+'}, 'GSM2082523': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.2', 'variation': 'TSC2+/-'}, 'GSM2082528': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2+/+'}, 'GSM2082529': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'id': 'hESC.3', 'variation': 'TSC2+/-'}, 'GSM2348793': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1608288': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608289': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608286': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM2609178': {'wavelength': 'none', 'line': 'HK-2', 'antibody': 'none'}, 'GSM1608284': {'line': 'BJ', 'type': 'Total RNA'}, 'GSM1608285': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1608282': {'line': 'BJ', 'type': 'Total RNA'}, 'GSM1608283': {'line': 'BJ', 'type': 'Total RNA'}, 'GSM1608280': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM2265717': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'Cells lentiviral infected with control vector'}, 'GSM763960': {'line': 'HCT-116', 'passages': 'passage 4-15', 'treatment': 'serum-induced'}, 'GSM2322023': {'tissue': 'hematopoietic systerm', 'batch': 'batch2', 'stage': 'Monocytic late stage'}, 'GSM2304509': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2304508': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM2856808': {'type': 'Normal human bronchial epithelium', 'treatment': 'Calcitriol'}, 'GSM2856809': {'type': 'Normal human bronchial epithelium', 'treatment': 'Calcitriol + Poly I:C'}, 'GSM2186490': {'line': 'LNCaP', 'treatment': 'DMSO 24h'}, 'GSM1378026': {'line': 'Tissue', 'type': 'Fibroblast'}, 'GSM2856803': {'type': 'Asthma human bronchial epithelium', 'treatment': 'Sham (culture media)'}, 'GSM2304503': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2856801': {'type': 'Asthma human bronchial epithelium', 'treatment': 'Calcitriol + Poly I:C'}, 'GSM2856806': {'type': 'BEAS-2B immortalized human bronchial epithelium', 'treatment': 'Poly I:C'}, 'GSM1378023': {'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM2304507': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM1378021': {'line': 'Retro-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM3362562': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362563': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362560': {'gender': 'female', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362561': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362566': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362567': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362564': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362565': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362568': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM3362569': {'gender': 'male', 'tissue': 'iPSC derived from umbilical cord of EOPE pregnancy'}, 'GSM1241209': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241208': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM2859359': {'type': 'hemapoietic stem cell', 'treatment': 'untreated'}, 'GSM2859358': {'type': 'hemapoietic stem cell', 'treatment': 'untreated'}, 'GSM1241201': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241200': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241203': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241202': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241205': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241204': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241207': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241206': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM742950': {'length': '50', 'type': 'single-end'}, 'GSM2055528': {'individual': 'Patient GNG', 'tissue': 'Adenoma'}, 'GSM2055529': {'individual': 'Patient GNG', 'tissue': 'Adenoma'}, 'GSM2055520': {'individual': 'Patient 3', 'tissue': 'Normal rectal mucosa'}, 'GSM2055521': {'individual': 'Patient 3', 'tissue': 'Adenoma'}, 'GSM2055522': {'individual': 'Patient 4', 'tissue': 'Normal rectal mucosa'}, 'GSM2055523': {'individual': 'Patient 4', 'tissue': 'Adenoma'}, 'GSM2055524': {'individual': 'Patient 5', 'tissue': 'Normal rectal mucosa'}, 'GSM2055525': {'individual': 'Patient 5', 'tissue': 'Adenoma'}, 'GSM2055526': {'individual': 'Patient GNG', 'tissue': 'Normal rectal mucosa'}, 'GSM2055527': {'individual': 'Patient GNG', 'tissue': 'Adenoma'}, 'GSM2895244': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'estradiol (10 nM) + 4-hydroxytamoxifen (1 μM)'}, 'GSM2689295': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689294': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689297': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689296': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689291': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689290': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689293': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689292': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689299': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689298': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM956428': {'with': 'lentivirus harboring shRNA of control (Arab1)', 'line': 'PC9', 'type': 'human lung Adenocarcinoma'}, 'GSM956429': {'with': 'lentivirus harboring shRNA of control (Arab1)', 'line': 'PC9', 'type': 'human lung Adenocarcinoma'}, 'GSM2176227': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176226': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176225': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176224': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176223': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176222': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176221': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176220': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176229': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176228': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1956197': {'a': '76870', 'cd38': '1477', 'cd49f': '999', 'w': '64823', 'h': '77715', 'lin': '-276', 'cd34': '9223', 'cd90': '540', 'cd7': '343', 'cd10': '663', 'time': '6505', 'cd135': '9030', 'cd45ra': '4873'}, 'GSM2175744': {'type': 'CD19+ B cells', 'by': 'EBV strain M81', 'treatment': 'pretreated for 2 minutes with harringtonine'}, 'GSM2451326': {'compartment': 'Epithelium', 'id': 'CUMC_041', 'library': 'NuGEN'}, 'GSM2451327': {'compartment': 'Stroma', 'id': 'CUMC_041', 'library': 'NuGEN'}, 'GSM2451324': {'compartment': 'Epithelium', 'id': 'CUMC_040', 'library': 'NuGEN'}, 'GSM2451325': {'compartment': 'Stroma', 'id': 'CUMC_040', 'library': 'NuGEN'}, 'GSM2451322': {'compartment': 'Epithelium', 'id': 'CUMC_039', 'library': 'NuGEN'}, 'GSM2451323': {'compartment': 'Stroma', 'id': 'CUMC_039', 'library': 'NuGEN'}, 'GSM2451320': {'compartment': 'Epithelium', 'id': 'CUMC_038', 'library': 'NuGEN'}, 'GSM2451321': {'compartment': 'Stroma', 'id': 'CUMC_038', 'library': 'NuGEN'}, 'GSM1602271': {'line': 'P2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient ND5)', 'agent': 'AICAR'}, 'GSM1602270': {'line': 'P1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient NDUFS2)', 'agent': 'resveratrol'}, 'GSM1602273': {'line': 'P2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient ND5)', 'agent': 'chloramphenicol'}, 'GSM1602272': {'line': 'P2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient ND5)', 'agent': 'AICAR'}, 'GSM1602275': {'line': 'P2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient ND5)', 'agent': 'DMSO'}, 'GSM1602274': {'line': 'P2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient ND5)', 'agent': 'chloramphenicol'}, 'GSM2451328': {'compartment': 'Epithelium', 'id': 'CUMC_042', 'library': 'NuGEN'}, 'GSM2451329': {'compartment': 'Stroma', 'id': 'CUMC_042', 'library': 'NuGEN'}, 'GSM2047718': {'well': 'A08', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047719': {'well': 'A09', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047710': {'well': 'bulk', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047711': {'well': 'A01', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047712': {'well': 'A02', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047713': {'well': 'A03', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047714': {'well': 'A04', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047715': {'well': 'A05', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047716': {'well': 'A06', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047717': {'well': 'A07', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2093090': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2552898': {'individual': 'volunteer 6'}, 'GSM2552899': {'individual': 'volunteer 7'}, 'GSM2552896': {'individual': 'volunteer 6'}, 'GSM2552897': {'individual': 'volunteer 6'}, 'GSM2552894': {'individual': 'volunteer 5'}, 'GSM2552895': {'individual': 'volunteer 6'}, 'GSM2552892': {'individual': 'volunteer 5'}, 'GSM2552893': {'individual': 'volunteer 5'}, 'GSM2552890': {'individual': 'volunteer 4'}, 'GSM2552891': {'individual': 'volunteer 5'}, 'GSM2840584': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840585': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840586': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840587': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840580': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840581': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840582': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840583': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840588': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840589': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1705120': {'type': 'primary venous smooth muscle cells', 'treatment': '0.2% serum + 10ng/ml IL1α + 20ng/ml PDGF', 'passage': 'p4-5'}, 'GSM2450499': {'line': 'HEK293T', 'transfection': 'non-silencing siRNA'}, 'GSM2450498': {'line': 'HEK293T', 'transfection': 'LOC550643 siRNA'}, 'GSM2450497': {'line': 'HEK293T', 'transfection': 'LOC550643 siRNA'}, 'GSM2450496': {'line': 'HEK293T', 'transfection': 'LOC550643 siRNA'}, 'GSM1341718': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341719': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341714': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341715': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1930369': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1341717': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341710': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341711': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1341712': {'tissue': 'Bone marrow HSC', 'phenotype': 'Lin-CD34+CD38-CD90+'}, 'GSM1341713': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM2153068': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2093095': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2359546': {'down': 'none', 'expression': 'RBM25'}, 'GSM2406740': {'source': 'CD34+ hematopoietic stem and progenitor cells', 'type': 'in vitro expanded CD34+ cells', 'vitro': '5 days-valproic acid treated'}, 'GSM2406741': {'source': 'CD34+ hematopoietic stem and progenitor cells', 'type': 'in vitro expanded CD34+ cells', 'vitro': '5 days-valproic acid treated'}, 'GSM1695856': {'tissue': 'Bone marrow', 'markers': 'CD34+CD38+CD19+'}, 'GSM2758953': {'line': 'MCF-7', 'transfection': 'pLenti-HA-EZH2', 'treatment': 'Vehicle'}, 'GSM1695851': {'tissue': 'Bone marrow', 'markers': 'CD34+CD38neglinneg'}, 'GSM1695850': {'tissue': 'Bone marrow', 'markers': 'CD34+CD38neglinneg'}, 'GSM1695853': {'tissue': 'Bone marrow', 'markers': 'CD34+CD45RA+CD38+CD10neg CD62Lhilinneg'}, 'GSM2359540': {'down': 'control', 'expression': 'none'}, 'GSM2632460': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632461': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632462': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632463': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632464': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632465': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632466': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632467': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632468': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632469': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2492509': {'status': 'Positive', 'tissue': 'spleen', 'type': 'CD4'}, 'GSM2492508': {'status': 'Negative', 'tissue': 'spleen', 'type': 'CD4'}, 'GSM2492503': {'status': 'Positive', 'tissue': 'spleen', 'type': 'CD8'}, 'GSM2492502': {'status': 'Negative', 'tissue': 'spleen', 'type': 'CD8'}, 'GSM2492501': {'status': 'Positive', 'tissue': 'spleen', 'type': 'CD4'}, 'GSM2492500': {'status': 'Negative', 'tissue': 'spleen', 'type': 'CD4'}, 'GSM2492507': {'status': 'Positive', 'tissue': 'lung', 'type': 'CD8'}, 'GSM2492506': {'status': 'Negative', 'tissue': 'lung', 'type': 'CD8'}, 'GSM2492505': {'status': 'Positive', 'tissue': 'lung', 'type': 'CD4'}, 'GSM2304582': {'type': 'HUVEC', 'treatment': 'miR-93-5p mimic'}, 'GSM2153067': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2093098': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '13', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2635310': {'line': '143B', 'antibody': 'rabbit anti-FOSL1/Fra-1 (Santa Cruz #sc-605)'}, 'GSM2266023': {'type': 'human embryonic stem cell', 'condition': 'hPSC medium containing inhibitor(i)s (GSK3i, ERKi, p38i, JNKi)4 on MEF'}, 'GSM2665738': {'age': 'Day 100', 'well': 'A6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665739': {'age': 'Day 100', 'well': 'H4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM1915593': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915592': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915595': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM2474884': {'line': 'EBC-1', 'passages': '35-37', 'type': 'Human lung squamous cancer cell line', 'phenotype': 'parental'}, 'GSM1915597': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915596': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915599': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM2665731': {'age': 'Day 100', 'well': 'D10', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665732': {'age': 'Day 100', 'well': 'B11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665733': {'age': 'Day 100', 'well': 'F9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665734': {'age': 'Day 100', 'well': 'E12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665735': {'age': 'Day 100', 'well': 'B1', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665736': {'age': 'Day 100', 'well': 'B7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665737': {'age': 'Day 100', 'well': 'E4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM1151059': {'line': 'HCT116', 'with': '300nM TSA for 6 hrs', 'variation': 'wild type'}, 'GSM2304584': {'type': 'HUVEC', 'treatment': 'miR-93-5p mimic'}, 'GSM1890591': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor1'}, 'GSM1890593': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor1'}, 'GSM1890592': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor1'}, 'GSM1890595': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor1'}, 'GSM1890594': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor1'}, 'GSM1890597': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor1'}, 'GSM1890596': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor1'}, 'GSM1890599': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor2'}, 'GSM1890598': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor1'}, 'GSM2543999': {'library_id': 'lib8305', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM921129': {'line': 'HEK293'}, 'GSM2543998': {'library_id': 'lib8304', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2616772': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616773': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616770': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM1113406': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T15', 'point': 'Day 6 post-vaccine'}, 'GSM2616776': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616777': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616774': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616775': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616778': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM1633690': {'type': 'Human Kupffer cells', 'treatment': 'Treatment with PBS'}, 'GSM1233932': {'replicate': '2', 'line': '12890', 'antibody': 'SA1'}, 'GSM1233933': {'replicate': '1', 'line': '12891', 'antibody': 'CTCF'}, 'GSM1574321': {'type': 'CFPAC1 cells transfected with ZEB1 expressing vector', 'variation': 'ectopically expressing ZEB1', 'background': 'CFPAC1'}, 'GSM1233931': {'replicate': '1', 'line': '12890', 'antibody': 'SA1'}, 'GSM1233936': {'replicate': '2', 'line': '12891', 'antibody': 'H3K27Ac'}, 'GSM1233937': {'replicate': '3', 'line': '12891', 'antibody': 'H3K27Ac'}, 'GSM1233934': {'replicate': '2', 'line': '12891', 'antibody': 'CTCF'}, 'GSM1233935': {'replicate': '1', 'line': '12891', 'antibody': 'H3K27Ac'}, 'GSM921128': {'line': 'HEK293'}, 'GSM1233938': {'replicate': '1.2', 'line': '12891', 'antibody': 'H3K27me3'}, 'GSM1233939': {'replicate': '1', 'line': '12891', 'antibody': 'H3K27me3'}, 'GSM2543997': {'library_id': 'lib8303', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2689232': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1939024': {'state': 'renal cell carcinoma', 'type': 'Tumor', 'genotype': 'Tumor'}, 'GSM1939023': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL wild type'}, 'GSM1939022': {'state': 'renal cell carcinoma', 'type': 'Tumor', 'genotype': 'Tumor'}, 'GSM1939021': {'state': 'renal cell carcinoma', 'type': 'Tumor', 'genotype': 'Tumor'}, 'GSM1939020': {'state': 'renal cell carcinoma', 'type': 'Cell line', 'genotype': 'VHL wild type'}, 'GSM2689230': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1081540': {'line': 'HEK293T'}, 'GSM1081541': {'line': 'HEK293T'}, 'GSM1081542': {'line': 'HEK293T RAD21cv'}, 'GSM1081543': {'line': 'HEK293T RAD21cv'}, 'GSM2834978': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '12'}, 'GSM2834979': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '9'}, 'GSM2834976': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '8'}, 'GSM2834977': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '10'}, 'GSM2834974': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '7'}, 'GSM2834975': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '8'}, 'GSM2834972': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '7'}, 'GSM2834973': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '2'}, 'GSM2834970': {'timepoint': 'PreWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '1'}, 'GSM2834971': {'timepoint': 'PostWL', 'Sex': 'female', 'preparation': 'Rinsed with saline, snap frozen', 'source': 'Modified liposuction aspirate', 'tissue': 'Subcutaneous adipose', 'id': '10'}, 'GSM2287587': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287586': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287585': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287584': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287583': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287582': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287581': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287580': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2303306': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Acinar', 'id': 'ACJV399'}, 'GSM2303307': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303304': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303305': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303302': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303303': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303300': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2287588': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2042076': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042077': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2472203': {'type': 'primary tissue'}, 'GSM2458868': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.50'}, 'GSM2519388': {'with': 'none (non-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2519387': {'with': 'none (non-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'pulldown', 'passage': 'p5-15'}, 'GSM2519386': {'with': 'none (non-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2519385': {'with': 'none (non-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'pulldown', 'passage': 'p5-15'}, 'GSM2519384': {'with': 'none (non-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2519383': {'with': 'none (non-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'pulldown', 'passage': 'p5-15'}, 'GSM2458863': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.75'}, 'GSM2519381': {'with': 'none (mock-infected)', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2458861': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.17'}, 'GSM2157786': {'line': 'Mcf10A', 'expression': 'Has intact WT-p53 with pBabepuro Vector'}, 'GSM2649771': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2157789': {'line': 'Mcf10A', 'expression': 'Has intact WT-p53 with H-RasV12 stable expression by retrovirus'}, 'GSM2042078': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2157788': {'line': 'Mcf10A', 'expression': 'Has intact WT-p53 with H-RasV12 stable expression by retrovirus'}, 'GSM2042079': {'cohort': 'Sporadic', 'tissue': 'Hyperplastic polyp'}, 'GSM1896148': {'individual': 'AF65', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896149': {'individual': 'AF65', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896144': {'individual': 'AF63', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896145': {'individual': 'AF63', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896146': {'individual': 'AF63', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896147': {'individual': 'AF65', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896140': {'individual': 'AF59', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896141': {'individual': 'AF61', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896142': {'individual': 'AF61', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896143': {'individual': 'AF61', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM800459': {'input': '50 ng', 'line': 'ECC-1', 'protocol': 'Directional Tn-RNA-seq'}, 'GSM800454': {'input': '50 ng', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM800457': {'input': '50 ng', 'line': 'ECC-1', 'protocol': 'Directional Tn-RNA-seq'}, 'GSM800451': {'input': '50 ng', 'line': 'ECC-1', 'protocol': 'Tn-RNA-seq'}, 'GSM2374854': {'gender': 'F', 'tissue': 'ES cells', 'type': 'Undifferentited ES cells', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2480948': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'subpolysomal (fractions 1-5)'}, 'GSM2480949': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'subpolysomal (fractions 1-5)'}, 'GSM2480944': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480945': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'subpolysomal (fractions 1-5)'}, 'GSM2480946': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'subpolysomal (fractions 1-5)'}, 'GSM2480947': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'subpolysomal (fractions 1-5)'}, 'GSM2480940': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480941': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480942': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2480943': {'sirna': 'CNOT1', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2101160': {'line': 'HCC4006', 'type': 'NSCLC', 'treatment': 'Gefitinib Treated'}, 'GSM2374855': {'gender': 'F', 'tissue': 'ES cells', 'type': 'Undifferentited ES cells', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2397376': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2326028': {'type': 'Human embryonic stem cell'}, 'GSM2326029': {'type': 'Human embryonic stem cell'}, 'GSM2326026': {'type': 'Human embryonic stem cell'}, 'GSM1614081': {'line': 'GM12878', 'treatment': 'eluate (m6A positive) fraction of m6A-LAIC-seq'}, 'GSM2326027': {'type': 'Human embryonic stem cell'}, 'GSM2374856': {'gender': 'F', 'tissue': 'ES cells', 'type': 'Undifferentited ES cells', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2326024': {'type': 'Human embryonic stem cell'}, 'GSM2397377': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM2053485': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '43', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#16'}, 'GSM2326025': {'type': 'Human embryonic stem cell'}, 'GSM2472204': {'type': 'primary tissue'}, 'GSM2326022': {'type': 'Human embryonic stem cell'}, 'GSM2326023': {'type': 'Human embryonic stem cell'}, 'GSM2248256': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'delta', 'ercc_dilution': '1000000'}, 'GSM2248257': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2309593': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM2309592': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'None'}, 'GSM2479809': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2248253': {'count': '1', 'ercc_mix': 'mix2', 'length': '72', 'type': 'pp', 'ercc_dilution': '1000000'}, 'GSM2309597': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309596': {'source': 'biopsy', 'identifier': 'C', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309599': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2086443': {'line': 'HEK293'}, 'GSM2479807': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2326021': {'type': 'Human embryonic stem cell'}, 'GSM2479801': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479800': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2248258': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2479802': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2153420': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153421': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153422': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153423': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153424': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2472205': {'type': 'primary tissue'}, 'GSM2153426': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153427': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153428': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153429': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1097886': {'type': 'CD34+ cells', 'antibody': 'IgG'}, 'GSM2397375': {'status': 'Healthy Control', 'group': 'No RA', 'treatment': 'NO'}, 'GSM1856030': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1538995': {'genotype': '7dupASD', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-242', 'type': 'unstranded 100bp PE reads'}, 'GSM1856032': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Ty1-TA1del expressed'}, 'GSM1538997': {'genotype': 'WBS', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-306', 'type': 'unstranded 100bp PE reads'}, 'GSM1856034': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Ty1-TA1del expressed'}, 'GSM1856035': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (vector control)'}, 'GSM1856036': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (vector control)'}, 'GSM1856037': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (vector control)'}, 'GSM1856038': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1856039': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1538998': {'genotype': '7dupASD', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-Cf', 'type': 'unstranded 100bp PE reads'}, 'GSM1538999': {'genotype': '7dupASD', 'gender': 'male', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-Cf', 'type': 'unstranded 100bp PE reads'}, 'GSM2460285': {'type': 'ES-derived endothelial cells'}, 'GSM2460284': {'type': 'ES-derived endothelial cells'}, 'GSM3072997': {'tissue': 'Glial Progenitor Cells', 'diet': 'Control'}, 'GSM3072996': {'tissue': 'Glial Progenitor Cells', 'diet': 'Control'}, 'GSM2460281': {'type': 'ES-derived endothelial cells'}, 'GSM3072995': {'tissue': 'Glial Progenitor Cells', 'diet': 'Control'}, 'GSM2460280': {'type': 'ES-derived endothelial cells'}, 'GSM3072994': {'tissue': 'Glial Progenitor Cells', 'diet': 'Control'}, 'GSM1489623': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '9T4'}, 'GSM3072993': {'tissue': 'Glial Progenitor Cells', 'diet': 'Control'}, 'GSM1489622': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '9T3'}, 'GSM2233234': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM1826780': {'line': 'HeLa'}, 'GSM1614084': {'line': 'GM12878', 'treatment': 'eluate (m6A positive) fraction of m6A-LAIC-seq'}, 'GSM1826783': {'line': 'HeLa'}, 'GSM1826782': {'line': 'HeLa'}, 'GSM2102532': {'information': 'Control', 'type': 'Amnion', 'gender': 'Female'}, 'GSM2397371': {'status': 'RA patient', 'group': 'Newly diagnosed RA', 'treatment': 'NO'}, 'GSM2533813': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533812': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533811': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533810': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533817': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533816': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533815': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2533814': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1281588': {'line': 'A673', 'type': 'Ewing Sarcoma cells', 'variation': 'stably expressing shRNA targeting EWS-FLI1'}, 'GSM1620491': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620490': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620493': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1281589': {'line': 'A673', 'type': 'Ewing Sarcoma cells', 'variation': 'stably expressing shRNA targeting EWS-FLI1'}, 'GSM1620495': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620494': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620497': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620496': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620499': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620498': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1369194': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Cortical Specification'}, 'GSM2324160': {'group': 'BCG', 'type': 'PBMC', 'day': '84', 'subjectid': '3612'}, 'GSM2324163': {'group': 'BCG', 'type': 'PBMC', 'day': '28', 'subjectid': '5113'}, 'GSM1369197': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Deep Layer Formation'}, 'GSM1369190': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Cortical Specification'}, 'GSM2324164': {'group': 'BCG', 'type': 'PBMC', 'day': '56', 'subjectid': '5113'}, 'GSM1369192': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Cortical Specification'}, 'GSM2324166': {'group': 'BCG', 'type': 'PBMC', 'day': '0', 'subjectid': '6017'}, 'GSM2324169': {'group': 'BCG', 'type': 'PBMC', 'day': '56', 'subjectid': '6017'}, 'GSM2324168': {'group': 'BCG', 'type': 'PBMC', 'day': '28', 'subjectid': '6017'}, 'GSM1369198': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Deep Layer Formation'}, 'GSM1369199': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Deep Layer Formation'}, 'GSM2082533': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2+/+', 'id': '15'}, 'GSM2172116': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2099979': {'rin': '10', 'Sex': 'Female', 'sspg': '245', 'age': '48', 'bmi': '34', 'batch': '1-70', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '72', 'method': 'Life-Tech GITC'}, 'GSM2099978': {'rin': '10', 'Sex': 'Female', 'sspg': '77', 'age': '55', 'bmi': '34', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '71', 'method': 'Life-Tech GITC'}, 'GSM2099977': {'rin': '10', 'Sex': 'Female', 'sspg': '77', 'age': '55', 'bmi': '34', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '71', 'method': 'Life-Tech GITC'}, 'GSM2099976': {'rin': '10', 'Sex': 'Female', 'sspg': '77', 'age': '55', 'bmi': '34', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '71', 'method': 'Life-Tech GITC'}, 'GSM2099975': {'rin': 'NA', 'Sex': 'Female', 'sspg': '196', 'age': '66', 'bmi': '27.8', 'batch': '1-35', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '60', 'method': 'Qiagen:trizol'}, 'GSM2099974': {'rin': 'NA', 'Sex': 'Female', 'sspg': '196', 'age': '66', 'bmi': '27.8', 'batch': '1-35', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '60', 'method': 'Qiagen:trizol'}, 'GSM2099973': {'rin': 'NA', 'Sex': 'Female', 'sspg': '196', 'age': '66', 'bmi': '27.8', 'batch': '1-35', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '60', 'method': 'Qiagen:trizol'}, 'GSM2099972': {'rin': 'NA', 'Sex': 'Female', 'sspg': '196', 'age': '66', 'bmi': '27.8', 'batch': '1-35', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '60', 'method': 'Qiagen:trizol'}, 'GSM2099971': {'rin': 'NA', 'Sex': 'Female', 'sspg': '196', 'age': '66', 'bmi': '27.8', 'batch': '1-35', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '60', 'method': 'Qiagen:trizol'}, 'GSM2099970': {'rin': '10', 'Sex': 'Female', 'sspg': '147', 'age': '61', 'bmi': '25.8', 'batch': '1-110', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': 'L2110088', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '54', 'method': 'Life-Tech GITC'}, 'GSM1012775': {'phase': 'S0', 'cells': 'none', 'antibody': 'SUMO-1', 'line': 'HeLa Cells'}, 'GSM2339247': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM1012774': {'cells': 'none', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM1955847': {'a': '73429', 'cd38': '-369', 'cd49f': '884', 'w': '67228', 'h': '71581', 'lin': '284', 'cd34': '13194', 'cd90': '1251', 'cd7': '489', 'cd10': '835', 'time': '13160', 'cd135': '1978', 'cd45ra': '129'}, 'GSM1241328': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying control shRNA'}, 'GSM1241329': {'line': 'HeLa', 'tissue': 'Cervical Cancer', 'transfection': 'lentivirus carrying control shRNA'}, 'GSM1012773': {'phase': 'M', 'cells': 'His6-biotin-tagged SUMO-1', 'antibody': 'none', 'line': 'HeLa Cells'}, 'GSM2543638': {'library_id': 'lib5755', 'stim': 'CR', 'group': 'Case', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2258969': {'status': 'SINV', 'line': 'NoDice 293T'}, 'GSM2258968': {'status': 'SINV', 'line': 'NoDice 293T'}, 'GSM2453941': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2258965': {'status': 'mock', 'line': 'NoDice 293T'}, 'GSM2258964': {'status': 'mock', 'line': 'NoDice 293T'}, 'GSM2258967': {'status': 'SINV', 'line': 'NoDice 293T'}, 'GSM2258966': {'status': 'mock', 'line': 'NoDice 293T'}, 'GSM2258961': {'status': 'SINV', 'line': '293T'}, 'GSM2258960': {'status': 'mock', 'line': '293T'}, 'GSM2258963': {'status': 'mock', 'line': 'NoDice 293T'}, 'GSM2258962': {'status': 'SINV', 'line': '293T'}, 'GSM554080': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 6'}, 'GSM554082': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM554084': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM554086': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM554088': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 6'}, 'GSM2543890': {'library_id': 'lib8032', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543891': {'library_id': 'lib8033', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543892': {'library_id': 'lib8034', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543893': {'library_id': 'lib8035', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543894': {'library_id': 'lib8036', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543895': {'library_id': 'lib8037', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543896': {'library_id': 'lib8038', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543897': {'library_id': 'lib8039', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543898': {'library_id': 'lib8040', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.69', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543899': {'library_id': 'lib8041', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.69', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2046859': {'type': 'Mesenchymal stem cells', 'cells': '1.5 million', 'antibody': 'H3K4me1 (2ug Abcam, AB8895)', 'agasga': 'AGA'}, 'GSM565968': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'PFKFB3 inhibitor'}, 'GSM1470027': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'siCTL, 1hr treatment with vehicle control'}, 'GSM2088078': {'status': 'NA', 'ratio': '1.13807858484813', 'age': '63', 'years': '41.49', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'Sex': 'Female', 'alignments': '66813550', 'alignment': '41638467'}, 'GSM1470029': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'siGATA3, 1hr treatment with vehicle control'}, 'GSM1470028': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'siCTL, 1hr treatment with 100nM E2'}, 'GSM643913': {'marker': 'CD44+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM643914': {'marker': 'CD24+', 'state': 'normal', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM1569581': {'knockdown': 'siKDM3A', 'line': 'HMC-LTR', 'antibody': 'H3K9me2'}, 'GSM1957119': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957118': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957117': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957116': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957115': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957114': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957113': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957112': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957111': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957110': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2436736': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM2436737': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM2436734': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM2436735': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM2436732': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2436733': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2436730': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2436731': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM2436738': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM2436739': {'time': '24H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'PAM'}, 'GSM1535683': {'line': 'HCT116', 'passages': '17', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535682': {'line': 'HCT116', 'passages': '17', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535681': {'line': 'HCT116', 'passages': '17', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535680': {'line': 'HCT116', 'passages': '44', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535687': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535686': {'line': 'HCT116', 'passages': '17', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535685': {'line': 'HCT116', 'passages': '17', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535684': {'line': 'HCT116', 'passages': '17', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535689': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1535688': {'line': 'HCT116', 'passages': '33', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM1901954': {'line': 'U2OS', 'antibody': 'anti-MED26 antibody is from Santa Cruz Biotechnology, sc-48776'}, 'GSM1901955': {'line': 'U2OS', 'antibody': 'anti-MED26 antibody is from Santa Cruz Biotechnology, sc-48776'}, 'GSM1901956': {'line': 'U2OS', 'antibody': 'Anti-H3K18ac antibody is from Kurdistani lab'}, 'GSM1901957': {'line': 'U2OS', 'antibody': 'anti-H3K4me1 antibody is from Abcam, ab8895'}, 'GSM1901950': {'line': 'U2OS', 'antibody': 'anti-H3.3 antibody is from Abnova,H00003021-M01'}, 'GSM1901951': {'line': 'U2OS', 'antibody': 'anti-H3.3 antibody is from Abnova,H00003021-M01'}, 'GSM1901952': {'line': 'U2OS', 'antibody': 'anti-H2AZ antibody is from Abcam, ab4174'}, 'GSM1901953': {'line': 'U2OS', 'antibody': 'anti-H2AZ antibody is from Abcam, ab4174'}, 'GSM1901958': {'line': 'U2OS', 'antibody': 'none'}, 'GSM1901959': {'line': 'U2OS', 'antibody': 'none'}, 'GSM2309928': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Glom-sclerosis,chr&unspecified', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '61.15'}, 'GSM2309929': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '49.08'}, 'GSM2309920': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '75.78'}, 'GSM2309921': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '75.78'}, 'GSM2309922': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Diabetes Type 2', 'race': 'American Indian orAlaskaNative', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '75.78'}, 'GSM2309923': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'GN-other chronicGlom.nephritis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '48.60'}, 'GSM2309924': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'GN-other chronicGlom.nephritis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '48.60'}, 'GSM2309925': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'FSGS-Focal sclerosing GN', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '24.24'}, 'GSM2309926': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'FSGS-Focal sclerosing GN', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '24.24'}, 'GSM2309927': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Glom-sclerosis,chr&unspecified', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '61.15'}, 'GSM2194209': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194208': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM3189099': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '41', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.736387', 'percentaligned': '0.665952852', 'Sex': 'F', 'nl63': 'No', 'libcounts': '2.041664', 'original': 'Control'}, 'GSM3189098': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.828044', 'percentaligned': '0.924270755', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.540508'}, 'GSM1528137': {'duration': '6 hours', 'line': 'CCD-18Co', 'type': 'normal intestinal subepithelial myofibroblasts', 'treatment': '10 ng/ml rhIL-33'}, 'GSM1528136': {'duration': '6 hours', 'line': 'CCD-18Co', 'type': 'normal intestinal subepithelial myofibroblasts', 'treatment': 'vehicle (1X PBS)'}, 'GSM1528135': {'duration': '6 hours', 'line': 'CCD-18Co', 'type': 'normal intestinal subepithelial myofibroblasts', 'treatment': 'vehicle (1X PBS)'}, 'GSM1528134': {'duration': '6 hours', 'line': 'CCD-18Co', 'type': 'normal intestinal subepithelial myofibroblasts', 'treatment': 'vehicle (1X PBS)'}, 'GSM3189093': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '28', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.554674', 'percentaligned': '0.942968', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.450065', 'original': 'Control'}, 'GSM2194200': {'type': 'delta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194203': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194202': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194205': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194204': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194207': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM3189094': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.608083', 'percentaligned': '0.95472938', 'Sex': 'F', 'nl63': 'No', 'libcounts': '12.238583', 'original': 'Control'}, 'GSM2166348': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1295594': {'line': 'MCF-7', 'transfection': 'siERα'}, 'GSM1295593': {'line': 'MCF-7', 'transfection': 'siCTL'}, 'GSM2166346': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2026979': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q86XU0'}, 'GSM2026978': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q8TD23'}, 'GSM2170715': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1980175': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980174': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980177': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980176': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980171': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980170': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1291170': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM1291171': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM1980179': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980178': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1624197': {'line': 'H1', 'treatment': 'ETOH'}, 'GSM2170714': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2026971': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q96NG8'}, 'GSM2689129': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689128': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689127': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689126': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689125': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689124': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689123': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689122': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689121': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689120': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2026972': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8TC21'}, 'GSM2170717': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2026975': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q96BR6'}, 'GSM2026974': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q96BR6'}, 'GSM2026977': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q8TD23'}, 'GSM2026976': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q96BR6'}, 'GSM2170716': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2027318': {'tissue': 'Blood', 'type': 'CD1c+ DCs', 'id': '1009', 'point': 'Steady state'}, 'GSM2027319': {'tissue': 'Blood', 'type': 'CD141+ DCs', 'id': '1009', 'point': 'Steady state'}, 'GSM1862653': {'line': 'BeWo', 'condition': 'hypoxic', 'Stage': '2h'}, 'GSM1862652': {'line': 'BeWo', 'condition': 'hypoxic', 'Stage': '24h'}, 'GSM1862651': {'line': 'BeWo', 'condition': 'hypoxic', 'Stage': '16h'}, 'GSM2027311': {'tissue': 'Blood', 'type': 'CD141+ DCs', 'id': '1005', 'point': 'Steady state'}, 'GSM1862657': {'line': 'BeWo', 'condition': 'normal', 'Stage': '24h'}, 'GSM2027317': {'tissue': 'Blood', 'type': 'BDCA2+CD2+ pDCs', 'id': '1006', 'point': 'Steady state'}, 'GSM1862655': {'line': 'BeWo', 'condition': 'hypoxic', 'Stage': '8h'}, 'GSM1862654': {'line': 'BeWo', 'condition': 'hypoxic', 'Stage': '4h'}, 'GSM2170711': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2578869': {'line': 'HEK 293T', 'type': 'Human epithelial HEK 293T cells'}, 'GSM2578868': {'line': 'HEK 293T', 'type': 'Human epithelial HEK 293T cells'}, 'GSM2170710': {'stage': 'Immature hepatocyte-like 1'}, 'GSM2183490': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'Cobalt + ACF'}, 'GSM2328358': {'followup': '5.85', 'grade': 'I', 'age': '72', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'BAC', 'Stage': 'IB'}, 'GSM2602101': {'tissue': 'Skin', 'genotype': 'RelA+/-', 'passage': 'P5-7'}, 'GSM2328356': {'followup': '5.08', 'grade': 'II', 'age': '67', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'AD', 'Stage': 'IA'}, 'GSM2328357': {'followup': '5.08', 'grade': 'II', 'age': '67', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328354': {'followup': '5.13', 'grade': 'II', 'age': '77', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'BAC', 'Stage': 'IA'}, 'GSM2328355': {'followup': '5.13', 'grade': 'II', 'age': '77', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IA'}, 'GSM2328352': {'followup': '5.03', 'grade': 'I', 'age': '74', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'BAC', 'Stage': 'IB'}, 'GSM2328353': {'followup': '5.03', 'grade': 'I', 'age': '74', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2328350': {'followup': '2.98', 'grade': 'III', 'age': '58', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'AD', 'Stage': 'IB'}, 'GSM2328351': {'followup': '2.98', 'grade': 'III', 'age': '58', 'Sex': 'Female', 'survstatus': '1', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Mod', 'type': 'NL', 'Stage': 'IB'}, 'GSM1980207': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2170712': {'stage': 'Immature hepatocyte-like 1'}, 'GSM1185639': {'state': 'Normal', 'tissue': 'thyroid'}, 'GSM1185638': {'state': 'Normal', 'tissue': 'thyroid'}, 'GSM2153184': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1980206': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2287147': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1831353': {'gender': 'male', 'type': 'PB-derived cultured MCs'}, 'GSM2299023': {'age': '53', 'type': 'Stem cell'}, 'GSM2299022': {'age': '55', 'type': 'Stem cell'}, 'GSM1831354': {'gender': 'male', 'type': 'PB-derived T cells'}, 'GSM1831355': {'gender': 'male', 'type': 'PB-derived B cells'}, 'GSM3586849': {'origin': 'GCB', 'pfstt': '783', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '865', 'cycles': '8', 'oscs': '0'}, 'GSM2287146': {'pair': 'P8_11', 'gender': 'male', 'type': 'Single Cell'}, 'GSM2287145': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2666160': {'age': 'Day 130', 'well': 'A12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666161': {'age': 'Day 130', 'well': 'F7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666162': {'age': 'Day 130', 'well': 'E8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000288'}, 'GSM2666163': {'age': 'Day 130', 'well': 'H10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666164': {'age': 'Day 130', 'well': 'B5', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666165': {'age': 'Day 130', 'well': 'C5', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666166': {'age': 'Day 130', 'well': 'A1', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666167': {'age': 'Day 130', 'well': 'F7', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2666168': {'age': 'Day 130', 'well': 'H5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000289'}, 'GSM2666169': {'age': 'Day 130', 'well': 'B3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000289'}, 'GSM2371246': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371247': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371244': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371245': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371242': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371243': {'media': 'IMDM, 20% FBS, 1% Penicillin/Streptomycin, 2mM L-glutamine'}, 'GSM2371240': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371241': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371248': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM2371249': {'media': 'RPMI 1640, 10% FBS, 1% Penicillin/Streptomycin, 2mM L-Glutamine'}, 'GSM1087258': {'line': 'NB1', 'shRNA': 'scrambled control', 'plasmid': 'empty pcDNA3.1 vector'}, 'GSM1087259': {'line': 'NB1', 'shRNA': 'scrambled control', 'plasmid': 'empty pcDNA3.1 vector'}, 'GSM1087257': {'line': 'NB1', 'shRNA': 'scrambled control', 'plasmid': 'empty pcDNA3.1 vector'}, 'GSM2287143': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1501689': {'line': 'MiaPaCa', 'type': 'Pancreatic cancer', 'variation': 'MYB-overexpression'}, 'GSM2040739': {'line': 'GM07939', 'type': 'lymphoblastoid cell', 'age': '3', 'genotype': '22q11del'}, 'GSM2040738': {'line': 'GM19240', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040737': {'line': 'GM19239', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040736': {'line': 'GM19238', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040735': {'line': 'GM18505', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040734': {'line': 'GM12892', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040733': {'line': 'GM10847', 'type': 'lymphoblastoid cell', 'age': '38', 'genotype': 'wild type'}, 'GSM2040732': {'line': 'GM06990', 'type': 'lymphoblastoid cell', 'age': '41', 'genotype': 'wild type'}, 'GSM2040731': {'line': '82699', 'type': 'lymphoblastoid cell', 'age': '44', 'genotype': '1q21del'}, 'GSM2040730': {'line': '52425', 'type': 'lymphoblastoid cell', 'age': '26', 'genotype': '1q21del'}, 'GSM2298374': {'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'DMSO', 'batch': '1'}, 'GSM2298375': {'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'DMSO', 'batch': '2'}, 'GSM2298376': {'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM2298377': {'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM2298378': {'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'DMSO', 'batch': '1'}, 'GSM2298379': {'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'DMSO', 'batch': '2'}, 'GSM1395289': {'type': 'parental CD34+', 'time': 'day 4'}, 'GSM2287140': {'pair': 'P7_07', 'gender': 'male', 'type': 'Single Cell'}, 'GSM1709564': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1257874': {'line': 'MCF-7', 'treatment': 'Non-specific control RNA'}, 'GSM1335296': {'line': 'SK-N-BE(2)', 'treatment': 'hypoxia'}, 'GSM2284004': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM1335294': {'line': 'SK-N-BE(2)', 'treatment': 'input control'}, 'GSM1335295': {'line': 'SK-N-BE(2)', 'treatment': 'normoxia'}, 'GSM1335292': {'line': 'SK-N-BE(2)', 'treatment': 'normoxia'}, 'GSM1335293': {'line': 'SK-N-BE(2)', 'treatment': 'hypoxia'}, 'GSM2262894': {'protocol': 'Culture only, collected at 1 hour post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262895': {'protocol': 'Culture only, collected at 1 hour post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262896': {'protocol': 'Culture only, collected at 4 hours post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262897': {'protocol': 'Culture only, collected at 4 hours post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2516108': {'line': 'NAMEC5', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516109': {'line': 'NAMEC5', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2262892': {'protocol': 'Negatively selected monocyte. No culture', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2464574': {'passages': 'P4', 'gender': 'Male', 'age': '12 years', 'tissue': 'Foreskin', 'treatment': 'Scrambled siRNA', 'type': 'Melanocytes'}, 'GSM2516104': {'line': 'NAMEC1', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516105': {'line': 'NAMEC1', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516106': {'line': 'NAMEC1', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516107': {'line': 'NAMEC1', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2262898': {'protocol': 'Culture only, collected at 4 hours post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262899': {'protocol': 'Culture only, collected at 24 hours post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2516102': {'line': 'NAMEC1', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2516103': {'line': 'NAMEC1', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2040324': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2040325': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM1542173': {'subpopulation': 'Naive', 'type': 'CD8+ T cells'}, 'GSM1542172': {'subpopulation': 'CD62L-CX3CR1-', 'type': 'CD8+ T cells'}, 'GSM1542171': {'subpopulation': 'CD62L-CX3CR1+', 'type': 'CD8+ T cells'}, 'GSM1542170': {'subpopulation': 'CD62L+CX3CR1-', 'type': 'CD8+ T cells'}, 'GSM1542176': {'subpopulation': 'CD62L-CX3CR1-', 'type': 'CD8+ T cells'}, 'GSM1542175': {'subpopulation': 'CD62L-CX3CR1+', 'type': 'CD8+ T cells'}, 'GSM2575362': {'line': 'WM983B', 'subclone': 'B7', 'condition': 'NoDrug'}, 'GSM2178764': {'ir': '1.7921146953405', 'weight': 'obese', 'gender': 'male', 'age': '47', 'bmi': '35.1', 'disease': 'ngt', 'l': '0.07', 'h': '0.5', 'id': '59a'}, 'GSM2840462': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2178766': {'ir': '1.7921146953405', 'weight': 'obese', 'gender': 'male', 'age': '47', 'bmi': '35.1', 'disease': 'ngt', 'l': '0.07', 'h': '2', 'id': '59a'}, 'GSM2178767': {'ir': '0.492853622474125', 'weight': 'non-obese', 'gender': 'female', 'age': '63', 'bmi': '27.7', 'disease': 't2d', 'l': '0.07', 'h': '1', 'id': '127a'}, 'GSM2840467': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840466': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2178762': {'ir': '1.72117039586919', 'weight': 'obese', 'gender': 'male', 'age': '41', 'bmi': '33.4', 'disease': 'ngt', 'l': '0.15', 'h': '0.5', 'id': '56a'}, 'GSM2840464': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2170513': {'stage': 'Endothelial cells'}, 'GSM2170512': {'stage': 'Endothelial cells'}, 'GSM2840469': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2575360': {'line': 'WM983B', 'subclone': 'G8', 'condition': 'Drug'}, 'GSM2170517': {'stage': 'Endothelial cells'}, 'GSM2178769': {'ir': '0.321646831778707', 'weight': 'non-obese', 'gender': 'female', 'age': '54', 'bmi': '20.1', 'disease': 't2d', 'l': '0.2', 'h': '2', 'id': '8a'}, 'GSM2170515': {'stage': 'Endothelial cells'}, 'GSM2170514': {'stage': 'Endothelial cells'}, 'GSM1047590': {'line': 'BJ cells', 'protocol': 'BJ cells expressing hTERT and tamoxifen-inducible RASG12V were cultured in the presence of 10-7M 4-OHT-Tamoxifen for 14 days', 'condition': 'Senescence; 14 dys after RASG12V induction'}, 'GSM2040323': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM1980209': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2627216': {'line': 'prostate cell line RWPE1', 'treatment': 'Gene Overexpression', 'variation': 'wild type'}, 'GSM2040328': {'tissue': 'omental', 'treatment': 'PRE-NACT'}, 'GSM2172144': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2627219': {'line': 'prostate cell line RWPE1', 'treatment': 'None', 'variation': 'wild type'}, 'GSM2172145': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM3190891': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '2.195419'}, 'GSM3190890': {'boca': 'No', 'years': '7', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A47', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.732276'}, 'GSM3190893': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B97', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.1', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.401394'}, 'GSM3190892': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B97', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.264168'}, 'GSM3190894': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.248374'}, 'GSM2185661': {'race': 'NB', 'staging': '4', 'total_grade': '6', 'cea': '4.1', 'hcv_genotype': '1', 'hcv_activity': '3', 'age': '63', 'focal_lytic_nec_apop': '2', 'batch': '0', 'sgpt': '192', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Tumor', 'tissue': 'liver', 'interface_necrosis': '2', 'sgot': '353', 'ca19_9': '31.1', 'differentiation': '1', 'portal_inflammation': '2', 'afp': '10.9', 'hcv_viral_load': '1495390'}, 'GSM2185660': {'race': 'NB', 'staging': '4', 'total_grade': '6', 'cea': '4.1', 'hcv_genotype': '1', 'hcv_activity': '3', 'age': '63', 'focal_lytic_nec_apop': '2', 'batch': '0', 'sgpt': '192', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': '2', 'sgot': '353', 'ca19_9': '31.1', 'differentiation': '0', 'portal_inflammation': '2', 'afp': '10.9', 'hcv_viral_load': '1495390'}, 'GSM2185665': {'race': 'B', 'staging': '1', 'total_grade': 'NA', 'cea': '72', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '70', 'focal_lytic_nec_apop': 'NA', 'batch': '0', 'sgpt': '13', 'Sex': 'F', 'confluent_necrosis': 'NA', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': '20', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': '2.5', 'hcv_viral_load': '0'}, 'GSM2185664': {'race': 'B', 'staging': '2.5', 'total_grade': '5', 'cea': 'NA', 'hcv_genotype': '1', 'hcv_activity': '2', 'age': '55', 'focal_lytic_nec_apop': '1', 'batch': '0', 'sgpt': '110', 'Sex': 'F', 'confluent_necrosis': '0', 'state': 'Tumor', 'tissue': 'liver', 'interface_necrosis': '2', 'sgot': '251', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': '2', 'afp': '21.8', 'hcv_viral_load': '1928995'}, 'GSM2185669': {'race': 'NB', 'staging': '6', 'total_grade': '6', 'cea': '9.5', 'hcv_genotype': 'NA', 'hcv_activity': '0', 'age': '54', 'focal_lytic_nec_apop': '1', 'batch': '0', 'sgpt': '81', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Control', 'tissue': 'liver', 'interface_necrosis': '4', 'sgot': '253', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': '1', 'afp': '6.4', 'hcv_viral_load': '0'}, 'GSM2175461': {'type': 'D551-derived iPSC', 'treatment': 'miR29a/b/c sponge'}, 'GSM2175462': {'type': 'D551-derived iPSC', 'treatment': 'miR29a/b/c sponge'}, 'GSM2175463': {'type': 'D551-derived iPSC', 'treatment': 'miR29a inhibitor'}, 'GSM2175464': {'type': 'D551-derived iPSC', 'treatment': 'miR29a inhibitor'}, 'GSM2316489': {'culture': 'D0'}, 'GSM2316488': {'culture': 'D0'}, 'GSM2175466': {'type': 'FM1-derived iPSC', 'treatment': 'miR29a inhibitor'}, 'GSM2175467': {'type': 'FM1-derived iPSC', 'treatment': 'miR29a inhibitor'}, 'GSM2316487': {'culture': 'D0'}, 'GSM2287622': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287623': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287620': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287621': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287626': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287627': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287624': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287625': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287628': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287629': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2392698': {'type': 'Induced pluripotent stem cell'}, 'GSM1898623': {'line': 'SEES-3'}, 'GSM1898622': {'line': 'SEES-3'}, 'GSM1898621': {'line': 'SEES-3'}, 'GSM1898627': {'line': 'SEES-3'}, 'GSM1898626': {'line': 'SEES-3'}, 'GSM1898625': {'line': 'SEES-3'}, 'GSM1898624': {'line': 'SEES-3'}, 'GSM2392696': {'type': 'Induced pluripotent stem cell'}, 'GSM2331841': {'line': 'SQ20B', 'cancer': 'head and neck squamous cell carcinoma'}, 'GSM2944136': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'ES2'}, 'GSM2458987': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.75'}, 'GSM2458986': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.17'}, 'GSM2458981': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '6.58'}, 'GSM2458980': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '15.83'}, 'GSM2458983': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.58'}, 'GSM2944137': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'ES2'}, 'GSM1328789': {'tissue': 'paratumoral liver tissue'}, 'GSM2458989': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '6.50'}, 'GSM2458988': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '9.83'}, 'GSM2944135': {'type': 'Ewing sarcoma cell line', 'variation': 'HOTAIR-repressing GapmeR', 'background': 'ES2'}, 'GSM2944132': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'ES2'}, 'GSM2125170': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Dexamethasone', 'time': '60 minutes'}, 'GSM2689045': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2311909': {'culture': '12', 'line': 'DCX+'}, 'GSM2311908': {'culture': '12', 'line': 'DCX+'}, 'GSM2944130': {'type': 'Ewing sarcoma cell line', 'variation': 'control GapmeR', 'background': 'ES2'}, 'GSM2311903': {'culture': '12', 'line': 'DCX+'}, 'GSM2311902': {'culture': '12', 'line': 'DCX+'}, 'GSM2311901': {'culture': '12', 'line': 'DCX+'}, 'GSM1481730': {'with': 'vectors coding for Myc-KPC1', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM2311907': {'culture': '12', 'line': 'DCX+'}, 'GSM2311906': {'culture': '12', 'line': 'DCX+'}, 'GSM2311905': {'culture': '12', 'line': 'DCX+'}, 'GSM2311904': {'culture': '12', 'line': 'DCX+'}, 'GSM1216786': {'gender': 'Male', 'age': '33', 'bmi': '24.5', 'hba1c': '5.3', 'tissue': 'pancreatic islets', 'birth': '1977'}, 'GSM1704789': {'line': 'H1 embryonic stem cells', 'type': 'day 0 ES cells', 'variation': 'wild-type'}, 'GSM1704782': {'line': 'H1 embryonic stem cells', 'type': 'day 0 ES cells', 'variation': 'NKX2-5 shRNA knockdown'}, 'GSM1704783': {'line': 'H1 embryonic stem cells', 'type': 'day 0 ES cells', 'variation': 'NKX2-5 shRNA knockdown'}, 'GSM1704784': {'line': 'H1 embryonic stem cells', 'type': 'day 0 ES cells', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1704785': {'line': 'H1 embryonic stem cells', 'type': 'day 0 ES cells', 'variation': 'ZEB2 shRNA knockdown'}, 'GSM1704786': {'line': 'H1 embryonic stem cells', 'type': 'day 0 ES cells', 'variation': 'ZNF503 shRNA knockdown'}, 'GSM1704787': {'line': 'H1 embryonic stem cells', 'type': 'day 0 ES cells', 'variation': 'ZNF503 shRNA knockdown'}, 'GSM1836102': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836103': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1709561': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2100936': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3005'}, 'GSM2100937': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3010'}, 'GSM2100934': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '3004'}, 'GSM2100935': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3005'}, 'GSM2100932': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '3003'}, 'GSM2100933': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '3004'}, 'GSM2100930': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3002'}, 'GSM2100931': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'before bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '3003'}, 'GSM1836105': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2392244': {'line': 'H1 stem cell line', 'multiplex': '48 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2100938': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3019'}, 'GSM2100939': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'after bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch3', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/25/2014', 'id': '3019'}, 'GSM2172148': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2306949': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306948': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306947': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306946': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306945': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306944': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2306943': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2306942': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2306941': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2306940': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1836109': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2331842': {'line': 'SQ20B', 'cancer': 'head and neck squamous cell carcinoma'}, 'GSM2535330': {'pair': '1', 'line': 'THP-1', 'agent': 'DMSO'}, 'GSM2535331': {'pair': '2', 'line': 'THP-1', 'agent': 'DMSO'}, 'GSM2535332': {'pair': '3', 'line': 'THP-1', 'agent': 'DMSO'}, 'GSM2535333': {'pair': '1', 'line': 'THP-1', 'agent': 'Mebendazole'}, 'GSM2535334': {'pair': '2', 'line': 'THP-1', 'agent': 'Mebendazole'}, 'GSM2535335': {'pair': '3', 'line': 'THP-1', 'agent': 'Mebendazole'}, 'GSM1681966': {'gender': 'male', 'age': '56', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681967': {'gender': 'male', 'age': '42', 'tissue': 'Tumor', 'class': 'III'}, 'GSM2186480': {'line': 'LNCaP', 'treatment': 'DMSO 24h'}, 'GSM1866077': {'line': 'Gliobmastoma cell line'}, 'GSM1866076': {'line': 'Gliobmastoma cell line'}, 'GSM1538077': {'resection': '26.9', 'id': '4', 'sex': 'M'}, 'GSM1538076': {'resection': '27.9', 'id': '4', 'sex': 'M'}, 'GSM1538075': {'resection': '26.9', 'id': '4', 'sex': 'M'}, 'GSM1538074': {'resection': '26.9', 'id': '4', 'sex': 'M'}, 'GSM1538073': {'resection': '26.9', 'id': '4', 'sex': 'M'}, 'GSM1538072': {'resection': '44', 'id': '1', 'sex': 'M'}, 'GSM1538071': {'resection': '42', 'id': '1', 'sex': 'M'}, 'GSM1538070': {'resection': '34.9', 'id': '1', 'sex': 'M'}, 'GSM2472211': {'type': 'primary tissue'}, 'GSM2445674': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'DMSO'}, 'GSM2472213': {'type': 'primary tissue'}, 'GSM2472212': {'type': 'primary tissue'}, 'GSM2472215': {'type': 'primary tissue'}, 'GSM2445670': {'line': 'TMD8', 'type': 'Diffuse Large B Cell Lymphoma', 'treatment': 'Idela 1uM'}, 'GSM2472217': {'type': 'cell line'}, 'GSM2472216': {'type': 'primary tissue'}, 'GSM2803240': {'line': 'HeyA8', 'tissue': 'Ovary', 'genotype': 'WT', 'infection': 'Treated cells with 1nM siCAG/CUG for 2 days'}, 'GSM2262407': {'time': 'NA', 'population': 'Primary hepatocytes'}, 'GSM2262406': {'time': 'NA', 'population': 'Whole liver'}, 'GSM2262405': {'time': 'day 6', 'population': 'Liver bud'}, 'GSM2262404': {'time': 'day 6', 'population': 'Liver bud'}, 'GSM2262403': {'time': 'day 6', 'population': 'Liver bud'}, 'GSM2262402': {'time': 'day 4', 'population': 'Liver bud'}, 'GSM2262401': {'time': 'day 4', 'population': 'Liver bud'}, 'GSM2262400': {'time': 'day 4', 'population': 'Liver bud'}, 'GSM2111071': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 6', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111070': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 6', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2111073': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 6', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111072': {'status': 'resting', 'type': 'Transitional Memory (TM)', 'id': 'Donator 6', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2125380': {'line': 'H157', 'type': 'Lung carcinoma cells', 'variation': 'expressing YAP-TEAD434'}, 'GSM2125381': {'line': 'H157', 'type': 'Lung carcinoma cells', 'variation': 'expressing YAP-TEAD305'}, 'GSM2111077': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 6', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111076': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 6', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2111079': {'status': 'resting', 'type': 'central memory (CM)', 'id': 'Donator 7', 'phenotype': 'CM (CD45RO+CD27+CCR7+)'}, 'GSM2111078': {'status': 'resting', 'type': 'Naive', 'id': 'Donator 7', 'phenotype': 'Naive (CD45RO-CD27+)'}, 'GSM2877845': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2309410': {'shRNA': 'shBOD1#1-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM2309411': {'shRNA': 'shBOD1#1-R2', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM2309412': {'shRNA': 'shBOD1#2-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM2309413': {'shRNA': 'shBOD1#2-R1', 'line': 'MDA-MB-231', 'passages': 'Low passages (6-10)'}, 'GSM1281728': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '68', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281729': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '45', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Hispanic', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'N/A'}, 'GSM1281726': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '49', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281727': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Male', 'age': '68', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281724': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '69', 'tissue': 'Serum', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281725': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '62', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281722': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '49', 'tissue': 'Serum', 'disease': 'None', 'onset': 'NA', 'race': 'African American', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281723': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '69', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281720': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '41', 'tissue': 'Serum', 'disease': 'None', 'onset': 'NA', 'race': 'Caucasian', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281721': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'Female', 'age': '49', 'tissue': 'Plasma', 'disease': 'None', 'onset': 'NA', 'race': 'African American', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM2195066': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195067': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195064': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2123972': {}, 'GSM2195062': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195063': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195060': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195061': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2123979': {}, 'GSM2123978': {}, 'GSM2195068': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2195069': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2392003': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM1647001': {'illumina_index': '15', 'point': '18', 'batch': '4', 'agent': 'Salm', 'rin': '9.2', 'individual': 'M373'}, 'GSM2392001': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2392000': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2392007': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392006': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392005': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392004': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392009': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM2392008': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC06'}, 'GSM1647003': {'illumina_index': '18', 'point': '4', 'batch': '4', 'agent': 'BCG', 'rin': '10', 'individual': 'M372'}, 'GSM1647002': {'illumina_index': '16', 'point': '48', 'batch': '4', 'agent': 'Yers', 'rin': '9.3', 'individual': 'M373'}, 'GSM1647005': {'illumina_index': '2', 'point': '4', 'batch': '5', 'agent': 'Rv+', 'rin': '8.6', 'individual': 'M375'}, 'GSM1647004': {'illumina_index': '19', 'point': '4', 'batch': '4', 'agent': 'Smeg', 'rin': '5.4', 'individual': 'M376'}, 'GSM1620518': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2932957': {'pucai': '60', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '13'}, 'GSM1620514': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620515': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620516': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2932956': {'pucai': '80', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '9'}, 'GSM1620510': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620511': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620512': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620513': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2417023': {'status': 'Age related Macular degeneration (AMD)', 'gender': 'Female', 'age': '73', 'treatment': 'Vehicle', 'origin': 'RPE'}, 'GSM2417022': {'status': 'Age related Macular degeneration (AMD)', 'gender': 'Female', 'age': '93', 'treatment': 'Nicotinamide', 'origin': 'RPE'}, 'GSM2417021': {'status': 'Age related Macular degeneration (AMD)', 'gender': 'Female', 'age': '93', 'treatment': 'Vehicle', 'origin': 'RPE'}, 'GSM2417027': {'status': 'Age related Macular degeneration (AMD)', 'gender': 'Male', 'age': '75', 'treatment': 'Vehicle', 'origin': 'RPE'}, 'GSM2417026': {'status': 'Age related Macular degeneration (AMD)', 'gender': 'Male', 'age': '89', 'treatment': 'Nicotinamide', 'origin': 'RPE'}, 'GSM2417025': {'status': 'Age related Macular degeneration (AMD)', 'gender': 'Male', 'age': '89', 'treatment': 'Vehicle', 'origin': 'RPE'}, 'GSM2417024': {'status': 'Age related Macular degeneration (AMD)', 'gender': 'Female', 'age': '73', 'treatment': 'Nicotinamide', 'origin': 'RPE'}, 'GSM2417029': {'status': 'Control', 'gender': 'Female', 'age': '91', 'treatment': 'Vehicle', 'origin': 'Cornea'}, 'GSM2417028': {'status': 'Age related Macular degeneration (AMD)', 'gender': 'Male', 'age': '75', 'treatment': 'Nicotinamide', 'origin': 'RPE'}, 'GSM1540598': {'state': 'Healthy controls', 'individual': 'control 02-57', 'type': 'PBMC', 'time': 'control'}, 'GSM1920669': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT12'}, 'GSM1920668': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT08'}, 'GSM1920667': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT04'}, 'GSM1920666': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'agent': 'DMSO', 'time': 'CT00'}, 'GSM2374267': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM971688': {'line': 'THP-1', 'treatment': 'cycloheximide 100µg/ml'}, 'GSM763534': {'type': 'BJ-tert', 'subcellular': 'Whole cell'}, 'GSM763530': {'type': '143B cells', 'subcellular': 'Mitoplast'}, 'GSM763531': {'type': '143B cells', 'subcellular': 'Mitochondria'}, 'GSM763532': {'type': '143B cells', 'subcellular': 'Mitochondria'}, 'GSM763533': {'type': 'Hela', 'subcellular': 'Whole cell'}, 'GSM1348883': {'type': 'differentiated TripleX cells', 'reporter': 'GFP+'}, 'GSM1348882': {'type': 'iPSC derived from triple X female'}, 'GSM1348881': {'type': 'differentiated TSC1_c1 cells', 'reporter': 'GFP-'}, 'GSM1348880': {'type': 'differentiated TSC1_c1 cells', 'reporter': 'GFP+'}, 'GSM2391907': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391906': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2204078': {'model': 'CTG-0331, Champions Oncology', 'type': 'synovial sarcoma', 'pdx': 'PDX'}, 'GSM2391909': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM4008564': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008565': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM1122304': {'target': 'MYH11', 'company': 'Novus', 'number': '21370002', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM4008567': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM1122302': {'target': 'CBFB', 'company': 'Diagenode', 'number': 'sc-20693', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM4008561': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008562': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM2750945': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM4008568': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM2750946': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM1122308': {'target': 'TBP', 'company': 'Diagenode', 'number': 'MAb-002-100', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM1122309': {'target': 'HEB', 'company': 'Santa Cruz', 'number': 'sc-357', 'treatment': 'none', 'line': 'ME-1', 'type': 'leukemic cell line'}, 'GSM2451336': {'compartment': 'Epithelium', 'id': 'CUMC_046', 'library': 'NuGEN'}, 'GSM2750940': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM1602249': {'line': 'C1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'chloramphenicol'}, 'GSM1957098': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957099': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2451333': {'compartment': 'Stroma', 'id': 'CUMC_044', 'library': 'NuGEN'}, 'GSM1957092': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957093': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957090': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2451332': {'compartment': 'Epithelium', 'id': 'CUMC_044', 'library': 'NuGEN'}, 'GSM1957096': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2752359': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM1957094': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM1957095': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2752358': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2048610': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2084287': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Pre-treatment'}, 'GSM1517628': {'line': 'Ewing sarcoma cell line SKMNC', 'treatment': 'shGFP', 'time': '96 hrs'}, 'GSM3633026': {'strain': 'MDA-MB-231-AdipoR1-KO', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633027': {'strain': 'MDA-MB-231-AdipoR1-KO', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633024': {'strain': 'MDA-MB-231-AdipoR1-WT', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633025': {'strain': 'MDA-MB-231-AdipoR1-KO', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633022': {'strain': 'MDA-MB-231-AdipoR1-WT', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633023': {'strain': 'MDA-MB-231-AdipoR1-WT', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633020': {'strain': 'MDA-MB-231-SETKO-Clone2', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM3633021': {'strain': 'MDA-MB-231-SETKO-Clone2', 'passages': 'Low passages (6-10)', 'type': 'breast cancer cell'}, 'GSM2451339': {'compartment': 'Stroma', 'id': 'CUMC_047', 'library': 'NuGEN'}, 'GSM2451338': {'compartment': 'Epithelium', 'id': 'CUMC_047', 'library': 'NuGEN'}, 'GSM2183599': {'line': 'HepG2', 'treatment': '5 µM ACF'}, 'GSM1581610': {'stage': 'NSLN positive'}, 'GSM2183598': {'line': 'HepG2', 'treatment': '5 µM ACF'}, 'GSM1234076': {'replicate': '1', 'line': '19193', 'antibody': 'SA1'}, 'GSM1517627': {'line': 'Ewing sarcoma cell line SKMNC', 'treatment': 'shFLI1', 'time': '48 hrs'}, 'GSM1234077': {'replicate': '2', 'line': '19193', 'antibody': 'SA1'}, 'GSM1872906': {'10': 'Non-remitter', 'name': 'HF-37231', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872907': {'10': 'Non-remitter', 'name': 'HF-37605', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'NOS'}, 'GSM1872905': {'10': 'Non-remitter', 'name': 'HF-37426', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM767949': {'type': 'hESC cells'}, 'GSM1872908': {'10': 'Non-remitter', 'name': 'HF-37603', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'NOS'}, 'GSM1872909': {'10': 'Non-remitter', 'name': 'HF-37281', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2048612': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM1234078': {'replicate': '1', 'line': '19238', 'antibody': 'CTCF'}, 'GSM1220860': {'melanoma': 'right axillary', 'i': 'NA', 'gender': 'female', 'age': '53 yrs', 'ii': '4 months', 'diagnosis': '2009-07-31', 'type': 'tumor biopsy (FFPE) after treatment'}, 'GSM1220861': {'melanoma': 'right buttock', 'i': 'NA', 'gender': 'female', 'age': '43 yrs', 'ii': '10 months', 'diagnosis': '2010-09-08', 'type': 'tumor biopsy (FFPE) before treatment'}, 'GSM1220862': {'melanoma': 'right buttock', 'i': 'NA', 'gender': 'female', 'age': '43 yrs', 'ii': '10 months', 'diagnosis': '2010-09-08', 'type': 'tumor biopsy (FFPE) after treatment'}, 'GSM1220863': {'melanoma': 'left thigh', 'i': 'NA', 'gender': 'male', 'age': '66 yrs', 'ii': '< 7 months', 'diagnosis': '2009-08-01', 'type': 'tumor biopsy (FFPE) before treatment'}, 'GSM1220864': {'melanoma': 'left thigh', 'i': 'NA', 'gender': 'male', 'age': '66 yrs', 'ii': '< 7 months', 'diagnosis': '2009-08-01', 'type': 'tumor biopsy (FFPE) after treatment'}, 'GSM2172111': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2779265': {'line': 'SKMEL28', 'type': 'none', 'treatment': 'none'}, 'GSM2172110': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172113': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048705': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2172115': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2048614': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2172114': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2649888': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649889': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2172117': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2649880': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649881': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649882': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649883': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649884': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649885': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649886': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649887': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2754529': {'bin': '9', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '01_0673', 'previousdiagnosisoftb': 'No', 'tst': '15.5', 'type': 'Tcells'}, 'GSM2754524': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0425', 'previousdiagnosisoftb': 'No', 'tst': '22', 'type': 'Tcells'}, 'GSM2455964': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455965': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455966': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455967': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455960': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455961': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455962': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455963': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2048616': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2455968': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455969': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2754523': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0440', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2047707': {'well': 'H10', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1521749': {'antibody': 'none (Input)', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2047706': {'well': 'H09', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1521747': {'antibody': 'Abcam,ab8895,659352', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521746': {'antibody': 'Active Motif,39133,31610003', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521745': {'antibody': 'Millipore,07-449,2064519', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521744': {'antibody': 'none (Input)', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521743': {'antibody': 'Millipore,07-473,JBC1888194', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521742': {'antibody': 'Abcam,ab8895,659352', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521741': {'antibody': 'Abcam,ab4729,GR52206-1', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521740': {'antibody': 'Millipore,07-449,2039786', 'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM3189116': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.718633', 'percentaligned': '0.952453313', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.049087', 'original': 'Control'}, 'GSM3189117': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.572148', 'percentaligned': '0.96019108', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.737241', 'original': 'Control'}, 'GSM485502': {'line': 'NA18912'}, 'GSM485503': {'line': 'NA18501'}, 'GSM3189112': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': 'NA', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.637179', 'percentaligned': '0.812282233', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.045036', 'original': 'Control'}, 'GSM485505': {'line': 'NA18505'}, 'GSM3189110': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '44', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.626728', 'percentaligned': '0.947451238', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.008345', 'original': 'Case'}, 'GSM3189111': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.651004', 'percentaligned': '0.949240891', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.558022', 'original': 'Case'}, 'GSM485508': {'line': 'NA18852'}, 'GSM485509': {'line': 'NA18858'}, 'GSM3189118': {'boca': 'NA', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'NA', 'analaysis': 'Yes', 'hrv': 'NA', 'visit': 'NA', '1': 'NA', '3': 'NA', '2': 'NA', 'flowcell': 'C95GDANXX', '4': 'NA', 'percentage': '4', 'mpv': 'NA', 'hku1': 'NA', '229e': 'NA', 'a': 'NA', 'b': 'NA', 'mediancvcoverage': '0.597457', 'percentaligned': '0.953585521', 'Sex': 'M', 'nl63': 'NA', 'libcounts': '9.768164'}, 'GSM1957457': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2093056': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093057': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093054': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093055': {'bin': '11', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093052': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093053': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093050': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093051': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2047700': {'well': 'H03', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2093058': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093059': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2501535': {'line': 'MCF-7', 'variation': 'Parental MCF7'}, 'GSM2501537': {'line': 'MCF-7', 'variation': 'Parental MCF7'}, 'GSM2501536': {'line': 'MCF-7', 'variation': 'Parental MCF7'}, 'GSM2501539': {'line': 'MCF-7', 'variation': 'MCF-7 stably overexpressing FLAG-tagged NFIB'}, 'GSM2501538': {'line': 'MCF-7', 'variation': 'MCF-7 stably overexpressing FLAG-tagged NFIB'}, 'GSM1846899': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM1846898': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM1846897': {'antibody': 'H3K27ac (Abcam, ab4729)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM1846896': {'antibody': 'KMT2D (Sigma, HPA035977)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846895': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846894': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846893': {'antibody': 'H3K27ac (Abcam, ab4729)', 'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846892': {'antibody': 'KMT2D (Sigma, HPA035977)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846891': {'antibody': 'H3K4me3 (Active Motif, 39159)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1846890': {'antibody': 'H3K4me1 (Abcam, ab8895)', 'shrna': 'shKMT2D', 'type': 'patient derived xenograft cells', 'mutation': 'NRASQ61K', 'passage': '2'}, 'GSM1630771': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630770': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630773': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630772': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630775': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630774': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630777': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630776': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630779': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'cancer', 'cancer_type_abbrevation': 'LUCL'}, 'GSM1630778': {'gender': 'not collected', 'age': 'not collected', 'disease': 'lung_adenocarcinoma', 'sample_type': 'cell_line', 'tissue_type': 'lung', 'biomaterial_provider': 'MCTP', 'progression_stage': 'metastatic', 'cancer_type_abbrevation': 'LUCL'}, 'GSM2358104': {'line': 'MS1', 'type': 'untreated', 'timepoint': '2'}, 'GSM2358105': {'line': 'MS1', 'type': 'untreated', 'timepoint': '3'}, 'GSM2358106': {'line': 'MS1', 'type': 'untreated', 'timepoint': '4'}, 'GSM2358107': {'line': 'MS1', 'type': 'untreated', 'timepoint': '5'}, 'GSM2358103': {'line': 'MS1', 'type': 'untreated', 'timepoint': '1'}, 'GSM2358108': {'line': 'MS1', 'type': 'untreated', 'timepoint': '6'}, 'GSM2358109': {'line': 'MS1', 'type': 'untreated', 'timepoint': '7'}, 'GSM2579293': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579292': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579291': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579290': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579297': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579296': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579295': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579294': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579299': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579298': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2454266': {'state': 'Brugada Syndrome', 'type': 'hiPSC-CM', 'mutation': 'SCN5A R620H and R811H'}, 'GSM1495422': {'index': 'CAGATC', 'line': '1833/MRC5', 'type': 'co-culture'}, 'GSM1495423': {'index': 'TAGCTT', 'line': '1833/MRC5', 'type': 'co-culture'}, 'GSM2204829': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1045174': {'type': 'NTera2/D1', 'treatment': 'RA'}, 'GSM1045177': {'type': 'NTera2/D1', 'treatment': 'none'}, 'GSM1045173': {'type': 'NTera2/D1', 'treatment': 'RA'}, 'GSM1045172': {'type': 'NTera2/D1', 'treatment': 'none'}, 'GSM2204821': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204820': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204823': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204822': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204825': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204824': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204827': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204826': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2745799': {'group': '2D/D0', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745798': {'group': '2D/D0', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745793': {'group': '2D/D28', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745792': {'group': '2D/D28', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745791': {'group': '2D/D28', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745797': {'group': '2D/D28', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745796': {'group': '2D/D28', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745795': {'group': '2D/D28', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745794': {'group': '2D/D28', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2361310': {'sum': '7', 'tissue': 'normal prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '64', 'identifier': 'B3', 'population': 'Russian'}, 'GSM2840385': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1619493': {'type': 'peripheral monocytes', 'id': '#23', 'procedure': 'adjustable gastric banding', 'point': 'T0; before bariatric surgery'}, 'GSM1619492': {'type': 'peripheral monocytes', 'id': '#22', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T0; before bariatric surgery'}, 'GSM1647135': {'line': 'HEK293A', 'expression': 'D83V-MEF2B-V5', 'treatment': 'ionomycin (1.5uM)'}, 'GSM1647134': {'line': 'HEK293A', 'expression': 'Y69H-MEF2B-V5', 'treatment': 'ionomycin (1.5uM)'}, 'GSM1647136': {'line': 'HEK293A', 'expression': 'empty-vector', 'treatment': 'ionomycin (1.5uM)'}, 'GSM1647131': {'line': 'HEK293A', 'expression': 'empty-vector', 'treatment': 'DMSO (1.07uL/mL)'}, 'GSM1647130': {'line': 'HEK293A', 'expression': 'D83V-MEF2B-V5', 'treatment': 'DMSO (1.07uL/mL)'}, 'GSM1647133': {'line': 'HEK293A', 'expression': 'K4E-MEF2B-V5', 'treatment': 'ionomycin (1.5uM)'}, 'GSM1647132': {'line': 'HEK293A', 'expression': 'WT-MEF2B-V5', 'treatment': 'ionomycin (1.5uM)'}, 'GSM1619499': {'type': 'peripheral monocytes', 'id': '#09', 'procedure': 'adjustable gastric banding', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM2355468': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM1619498': {'type': 'peripheral monocytes', 'id': '#08', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM2355464': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM2355466': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM2355460': {'type': 'Human embryonic stem cells'}, 'GSM2355462': {'type': 'Human embryonic stem cells'}, 'GSM2393509': {'replicate': '1', 'line': 'A549', 'molecule': 'exosome', 'type': 'exosomal short'}, 'GSM1387908': {'line': 'MRC5'}, 'GSM1517759': {'knockdown': 'shSCR1', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1517758': {'knockdown': 'shSCR1', 'line': '501Mel', 'type': 'melanoma'}, 'GSM1949068': {'line': 'M229', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949069': {'line': 'M229', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949060': {'type': 'MEKi', 'treatment': 'on-treatment'}, 'GSM1949061': {'type': 'MEKi', 'treatment': 'on-treatment'}, 'GSM1949062': {'type': 'none', 'treatment': 'none'}, 'GSM3398133': {'genotype': 'G2019S', 'age': '77', 'astrocytes': '74.18', 'Sex': 'F', 'line': 'SFC832-03-19', 'type': 'iPSC-derived midbrain-patterned astrocytes', 'method': 'Cytotune (Sendai virus)'}, 'GSM1949064': {'line': 'M229', 'type': 'none', 'treatment': 'none'}, 'GSM1949065': {'type': 'none', 'treatment': 'none'}, 'GSM1949066': {'line': 'M229', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1949067': {'line': 'M229', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM2287458': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1936998': {'type': 'HMLE'}, 'GSM1936999': {'type': 'HMLE'}, 'GSM1936997': {'type': 'HMLE'}, 'GSM2243741': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243740': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243743': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243742': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243745': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243744': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243747': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243746': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243749': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243748': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1550651': {'with': 'JMJD1C shRNA95', 'line': 'Kasumi-1', 'type': 'myeloblast', 'disease': 'acute myeloblastic leukemia'}, 'GSM1550650': {'with': 'JMJD1C shRNA63', 'line': 'Kasumi-1', 'type': 'myeloblast', 'disease': 'acute myeloblastic leukemia'}, 'GSM1550652': {'with': 'JMJD1C shRNA95', 'line': 'Kasumi-1', 'type': 'myeloblast', 'disease': 'acute myeloblastic leukemia'}, 'GSM2467488': {'line': 'HG02260', 'type': 'Lymphocyte'}, 'GSM2705393': {'Sex': 'Female', 'rin': '3.4', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.25', 'pmi': '6'}, 'GSM2705392': {'Sex': 'Male', 'rin': '5.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.42', 'pmi': '6'}, 'GSM2705391': {'Sex': 'Male', 'rin': '6.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.24', 'pmi': '27'}, 'GSM2705390': {'Sex': 'Male', 'rin': '6.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.17', 'pmi': '19'}, 'GSM2705397': {'Sex': 'Male', 'rin': '7', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.6', 'pmi': '7'}, 'GSM2705396': {'Sex': 'Male', 'rin': '5.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.6', 'pmi': '22'}, 'GSM2705395': {'Sex': 'Male', 'rin': '2.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.6', 'pmi': '18'}, 'GSM2705394': {'Sex': 'Male', 'rin': '6.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.65', 'pmi': '19'}, 'GSM2705399': {'Sex': 'Female', 'rin': '6.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.7', 'pmi': '7'}, 'GSM2705398': {'Sex': 'Male', 'rin': '5.5', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.2', 'pmi': '9'}, 'GSM942210': {'line': 'MCF7', 'sirna': 'ON-TARGETplus Non-Targeting siRNA against GATA3', 'treatment': 'GATA3 KD', 'passage': '7'}, 'GSM942211': {'line': 'MCF7', 'sirna': 'ON-TARGETplus Non-Targeting siRNA against TCF7L2', 'treatment': 'TCF7L2 KD', 'passage': '7'}, 'GSM1599141': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1482908': {'with': 'si RNAs against NELF', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'ribosomal RNA depleted whole cell RNA'}, 'GSM2828577': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2653', 'type': 'CD8 T cells'}, 'GSM2828576': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3052', 'type': 'CD8 T cells'}, 'GSM2828575': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3047', 'type': 'CD8 T cells'}, 'GSM2828574': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3045', 'type': 'CD8 T cells'}, 'GSM2828573': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3043', 'type': 'CD8 T cells'}, 'GSM2828572': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3039', 'type': 'CD8 T cells'}, 'GSM2828571': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3038', 'type': 'CD8 T cells'}, 'GSM2828570': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3037', 'type': 'CD8 T cells'}, 'GSM2828578': {'stimulation': 'IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 2894', 'type': 'CD8 T cells'}, 'GSM2170496': {'stage': 'Definitive endoderm 1'}, 'GSM2170497': {'stage': 'Definitive endoderm 1'}, 'GSM2170494': {'stage': 'Definitive endoderm 1'}, 'GSM2170495': {'stage': 'Definitive endoderm 1'}, 'GSM2170492': {'stage': 'Definitive endoderm 1'}, 'GSM2170493': {'stage': 'Definitive endoderm 1'}, 'GSM2170490': {'stage': 'Definitive endoderm 1'}, 'GSM2170491': {'stage': 'Definitive endoderm 1'}, 'GSM2170498': {'stage': 'Definitive endoderm 1'}, 'GSM2170499': {'stage': 'Definitive endoderm 1'}, 'GSM2787829': {'isolation': 'total RNA', 'barcode': 'TTCCTTT', 'treatment': 'none', 'infection': 'Infected 6h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787828': {'isolation': 'total RNA', 'barcode': 'TTTCGGA', 'treatment': 'none', 'infection': 'Infected 6h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787827': {'isolation': 'total RNA', 'barcode': 'CTGATAT', 'treatment': 'none', 'infection': 'Infected 4h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787826': {'isolation': 'total RNA', 'barcode': 'TGGCCTT', 'treatment': 'none', 'infection': 'Infected 4h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787825': {'isolation': 'total RNA', 'barcode': 'AGTGGAT', 'treatment': 'none', 'infection': 'Infected 2h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787824': {'isolation': 'total RNA', 'barcode': 'TGAAACG', 'treatment': 'none', 'infection': 'Infected 2h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787823': {'isolation': 'total RNA', 'barcode': 'GTACGTA', 'treatment': 'none', 'infection': 'Uninfected', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787822': {'isolation': 'total RNA', 'barcode': 'TCCGCAC', 'treatment': 'none', 'infection': 'Uninfected', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787821': {'isolation': 'total RNA', 'barcode': 'CGTCCCG', 'treatment': 'none', 'infection': 'Infected 6h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2787820': {'isolation': 'total RNA', 'barcode': 'TTGTAAC', 'treatment': 'none', 'infection': 'Infected 6h before harvesting', 'sequence': 'GATCGGAAGAGCACACGT'}, 'GSM2131254': {'tissue': 'primary tumor', 'protocol': '10% FBS'}, 'GSM2424937': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM3586504': {'origin': 'GCB', 'pfstt': '723', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '723', 'cycles': '6', 'oscs': '0'}, 'GSM3586505': {'origin': 'GCB', 'pfstt': '1464', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1465', 'cycles': '6', 'oscs': '0'}, 'GSM3586506': {'origin': 'GCB', 'pfstt': '1287', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1287', 'cycles': '6', 'oscs': '0'}, 'GSM3586507': {'origin': 'ABC', 'pfstt': '1065', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1277', 'cycles': '6', 'oscs': '0'}, 'GSM3586500': {'origin': 'ABC', 'pfstt': '741', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '822', 'cycles': '6', 'oscs': '0'}, 'GSM3586501': {'origin': 'ABC', 'pfstt': '730', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '809', 'cycles': '6', 'oscs': '0'}, 'GSM3586502': {'origin': 'ABC', 'pfstt': '1', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '771', 'cycles': '6', 'oscs': '0'}, 'GSM3586503': {'origin': 'UNCLASSIFIED', 'pfstt': '738', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '774', 'cycles': '6', 'oscs': '0'}, 'GSM2131250': {'tissue': 'lung metastasis, DMSO control', 'protocol': '10% FBS', 'treatment': 'DMSO'}, 'GSM3586508': {'origin': 'ABC', 'pfstt': '1071', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1071', 'cycles': '6', 'oscs': '0'}, 'GSM3586509': {'origin': 'ABC', 'pfstt': '1109', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1109', 'cycles': '6', 'oscs': '0'}, 'GSM2358336': {'code': 'TCAGGAGG', 'type': 'primary T cell'}, 'GSM1003587': {'line': 'HeLa', 'antibody': 'CstF64', 'strategy': 'iCLIP-Seq'}, 'GSM1003588': {'line': 'HeLa', 'antibody': 'CstF64', 'strategy': 'iCLIP-Seq'}, 'GSM1003589': {'line': 'HeLa', 'antibody': 'CstF64', 'strategy': 'iCLIP-Seq'}, 'GSM2259854': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM2259855': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Saline', 'cells': 'Unknown'}, 'GSM1712284': {'type': 'Primary fibroblasts'}, 'GSM1712282': {'type': 'Primary fibroblasts'}, 'GSM1712283': {'type': 'Primary fibroblasts'}, 'GSM1712280': {'type': 'Primary fibroblasts'}, 'GSM1712281': {'type': 'Primary fibroblasts'}, 'GSM2390741': {'disease': 'Healthy Control'}, 'GSM2390744': {'disease': 'Healthy Control'}, 'GSM2390745': {'disease': 'Healthy Control'}, 'GSM1959788': {'type': 'A549 cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959789': {'type': 'A549 cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1708293': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1959782': {'type': 'A549 cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959783': {'type': 'A549 cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959784': {'type': 'A549 cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959785': {'type': 'A549 cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959786': {'type': 'A549 cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM1959787': {'type': 'A549 cells', 'treatment': 'Transient overexpression (20 nM)'}, 'GSM3381392': {'gender': 'male', 'tissue': 'adenocarcinoma', 'time': 'living'}, 'GSM3381393': {'gender': 'male', 'tissue': 'normal lung', 'time': 'living'}, 'GSM3381390': {'gender': 'male', 'tissue': 'normal lung', 'time': 'living'}, 'GSM2316725': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316722': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316723': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316720': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316721': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316728': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316729': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM1886846': {'line': 'SUDHL6', 'treatment': 'treated with DMSO for 12h'}, 'GSM1886847': {'line': 'SUDHL6', 'treatment': 'treated with DMSO for 12h'}, 'GSM2899133': {'expression': 'endothelial markers.', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2899132': {'expression': 'endothelial markers.', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2899131': {'expression': 'endothelial markers.', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2899130': {'expression': 'NKX2.5 and endothelial markers', 'line': 'Mel-1 NkxeGFP/w', 'passages': '17-23', 'type': 'pluripotent stem cell-derived cardiac and endothelial cells'}, 'GSM2815854': {'line': 'H9'}, 'GSM2815855': {'line': 'H9'}, 'GSM2815856': {'line': 'H9'}, 'GSM2815857': {'line': 'H9'}, 'GSM2815850': {'line': 'H9'}, 'GSM1599009': {'type': 'hemoangiogenic progenitors'}, 'GSM2815852': {'line': 'H9'}, 'GSM2815853': {'line': 'H9'}, 'GSM2243588': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2815858': {'line': 'H9'}, 'GSM2815859': {'line': 'H9'}, 'GSM1126654': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126655': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126656': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126657': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126650': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126651': {'support': 'Post-LVAD', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-ischemic cardiomyopathy'}, 'GSM1126652': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126653': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126658': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM1126659': {'support': 'nil', 'tissue': 'left ventricle apex tissue', 'diagnosis': 'non-failing'}, 'GSM2341624': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'LBR'}, 'GSM955120': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955121': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955122': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955123': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955124': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955125': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955126': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955127': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955128': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM955129': {'capture': 'Protein domain: His6â\\x80\\x93GSTâ\\x80\\x93MBD (Diagenode)', 'technique': 'MethylCap-sequencing', 'molecule': 'genomic DNA'}, 'GSM1579156': {'origin': 'xenograft tumours', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM2144769': {'with': 'Control siLuc', 'line': 'H9', 'type': 'hESCs'}, 'GSM785388': {'type': 'transitional', 'normal': 'normal'}, 'GSM3383914': {'tissue': 'normal pancreas', 'id': 'patient4', 'diagnosis': 'pancreatic cancer'}, 'GSM1617354': {'patient': '2', 'tissue': 'Primary colonic adenoma', 'antibody': 'H3K4me2 (Millipore, catalog# 07-030, lot# 2019745)'}, 'GSM2928287': {'transfection': 'IRF3 siRNA (siIRF3)', 'passages': '6', 'type': 'gastric cancer cells'}, 'GSM3383915': {'tissue': 'normal pancreas', 'id': 'patient5', 'diagnosis': 'pancreatic cancer'}, 'GSM3594587': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM2306048': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2306046': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2306047': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2306044': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2306045': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2306042': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2306043': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2306040': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2306041': {'gender': 'male', 'type': 'Primordial Germ Cells', 'stage': '25 week gestation'}, 'GSM2394508': {'id': 'IonXpress_051', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Rottlerin', 'point': 'after 12h of compound treatment'}, 'GSM2394509': {'id': 'IonXpress_052', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Resveratrol', 'point': 'after 12h of compound treatment'}, 'GSM2394500': {'id': 'IonXpress_041', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'ICRF-193', 'point': 'after 12h of compound treatment'}, 'GSM2394501': {'id': 'IonXpress_044', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'K252A', 'point': 'after 12h of compound treatment'}, 'GSM2394502': {'id': 'IonXpress_045', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Manoalide', 'point': 'after 12h of compound treatment'}, 'GSM2394503': {'id': 'IonXpress_046', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': '(+/-)-Epibatidine', 'point': 'after 12h of compound treatment'}, 'GSM2394504': {'id': 'IonXpress_047', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'CITCO', 'point': 'after 12h of compound treatment'}, 'GSM2394505': {'id': 'IonXpress_048', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'SP-600125', 'point': 'after 12h of compound treatment'}, 'GSM2394506': {'id': 'IonXpress_049', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'MB', 'point': 'after 12h of compound treatment'}, 'GSM2394507': {'id': 'IonXpress_050', 'plate': 'E1', 'type': 'iPS-derived cardiomyocytes', 'name': 'media_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2194490': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194491': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194492': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194493': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194494': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194495': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194496': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194497': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194498': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194499': {'type': 'mesenchyme', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2086441': {'line': 'HEK293'}, 'GSM2086440': {'line': 'HEK293'}, 'GSM2086447': {'line': 'HEK293'}, 'GSM2086446': {'line': 'HEK293'}, 'GSM2086445': {'line': 'HEK293'}, 'GSM2086444': {'line': 'HEK293'}, 'GSM2243932': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H2', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243933': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G9', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1948995': {'index': 'GATCAG', 'line': 'H1', 'type': 'DIGIT KO hESC KO1', 'state': 'cultured in mTESR1'}, 'GSM2243931': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H4', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM3189172': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '10', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.851539', 'percentaligned': '0.827398464', 'Sex': 'M', 'nl63': 'No', 'libcounts': '0.422265', 'original': 'Case'}, 'GSM3383911': {'tissue': 'normal pancreas', 'id': 'patient1', 'diagnosis': 'pancreatic cancer'}, 'GSM2243937': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H6', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2771736': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_11', 'structure': 'neurite'}, 'GSM1663098': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663099': {'antibody': 'N/A', 'treatment': '5day DOX', 'integration': 'chr1'}, 'GSM1663094': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663095': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663096': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663097': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663090': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663091': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663092': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1663093': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM1464301': {'status': 'small cell lung cancer'}, 'GSM1217919': {'antibody': 'H3K4me3', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'CITH053'}, 'GSM2771737': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_12', 'structure': 'neurite'}, 'GSM1703741': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703740': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703743': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703742': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM1703745': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM1703744': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703747': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703746': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703749': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703748': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM2563847': {'experiment': 'siCtrl/Vehicle', 'group': '1', 'condition': 'ETOH'}, 'GSM2653622': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2108460': {'stages': 'myoblast nucleus'}, 'GSM2108461': {'stages': 'myoblast nucleus'}, 'GSM2108462': {'stages': 'myotube nucleus'}, 'GSM2108463': {'stages': 'myotube nucleus'}, 'GSM2125267': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'variation': 'overexpressing ATP7B WT'}, 'GSM2108465': {'stages': 'myotube nucleus'}, 'GSM2108466': {'stages': 'myotube nucleus'}, 'GSM1363308': {'person': 'child', 'trio': 'P002'}, 'GSM2108468': {'stages': 'myotube nucleus'}, 'GSM2108469': {'stages': 'myotube nucleus'}, 'GSM2125269': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'variation': 'overexpressing ATP7B WT'}, 'GSM2125268': {'gender': 'male', 'line': 'HepG2 hepatocellular carcinoma cell line', 'variation': 'overexpressing ATP7B WT'}, 'GSM2333020': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Parous'}, 'GSM2049405': {'culture': '4 weeks', 'type': 'FAP-iPSC derived colonic organoids', 'genotype': 'APC-/+'}, 'GSM1980508': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980509': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1275864': {'ercc_mix': '-', 'line': 'N61311', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Albuterol'}, 'GSM1275865': {'ercc_mix': '-', 'line': 'N61311', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Albuterol_Dexamethasone'}, 'GSM1275862': {'ercc_mix': '-', 'line': 'N61311', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Untreated'}, 'GSM1275863': {'ercc_mix': '-', 'line': 'N61311', 'tissue': 'human airway smooth muscle cells', 'type': 'airway smooth muscle cells', 'treatment': 'Dexamethasone'}, 'GSM1980500': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980501': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980502': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980503': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980504': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980505': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980506': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980507': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2153046': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153047': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM1624880': {'type': 'lung carcinoma cell line'}, 'GSM2153045': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153042': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153043': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM1624884': {'type': 'lung carcinoma cell line'}, 'GSM1624885': {'type': 'lung carcinoma cell line'}, 'GSM1624888': {'type': 'lung carcinoma cell line'}, 'GSM2153048': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2153049': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2735219': {'cohort': 'Unpaired', 'tils': '10', 'subtype': 'I', 'burden': '241', 'morphology': 'undifferentiated, round', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735218': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '17', 'morphology': 'undifferentiated, round', 'event': 'Disease progression', 'stage': 'III'}, 'GSM2735215': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'III', 'burden': '232', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'III'}, 'GSM2735214': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '282', 'morphology': 'undifferentiated, round', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735217': {'cohort': 'Paired', 'tils': '5', 'subtype': 'II', 'burden': '22', 'morphology': 'undifferentiated, spindle', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM2735216': {'cohort': 'Paired', 'tils': '2', 'subtype': 'I', 'burden': '385', 'morphology': 'differentiated', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735211': {'cohort': 'Paired', 'tils': '5', 'subtype': 'I', 'burden': '30', 'morphology': 'undifferentiated, round', 'event': 'Disease progression', 'stage': 'III'}, 'GSM2735210': {'cohort': 'Unpaired', 'tils': '5', 'subtype': 'I', 'burden': '275', 'morphology': 'mixed (round & spindle)', 'event': 'N/A', 'stage': 'Unknown'}, 'GSM2735213': {'cohort': 'Paired', 'tils': 'Not evaluated', 'subtype': 'III', 'burden': '10', 'morphology': 'mixed (round & spindle)', 'event': 'Last follow-up', 'stage': 'Unknown'}, 'GSM2735212': {'cohort': 'Paired', 'tils': '30', 'subtype': 'I', 'burden': '12', 'morphology': 'differentiated', 'event': 'Last follow-up', 'stage': 'IV'}, 'GSM1399199': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1399198': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1399193': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1399192': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1399191': {'type': 'human primary T-ALL'}, 'GSM1399190': {'type': 'human primary T-ALL'}, 'GSM1399197': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1399196': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1399195': {'line': 'HPBALL', 'type': 'human T-ALL cell line'}, 'GSM1399194': {'line': 'HPBALL', 'type': 'human T-ALL cell line'}, 'GSM2526855': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526854': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526857': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526856': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526851': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526850': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526853': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526852': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526859': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526858': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1944029': {'line': 'MCF-7 is a human breast adenocarcinoma cell line', 'treatment': 'Expressing shRNA targeting Nudt3'}, 'GSM1944028': {'line': 'MCF-7 is a human breast adenocarcinoma cell line', 'treatment': 'Expressing shRNA targeting Nudt3'}, 'GSM1944027': {'line': 'MCF-7 is a human breast adenocarcinoma cell line', 'treatment': 'Expressing non-mammalian control shRNA'}, 'GSM1944026': {'line': 'MCF-7 is a human breast adenocarcinoma cell line', 'treatment': 'Expressing non-mammalian control shRNA'}, 'GSM1944025': {'line': 'MCF-7 is a human breast adenocarcinoma cell line', 'treatment': 'Expressing non-mammalian control shRNA'}, 'GSM2200449': {'state': \"Crohn's disease\", 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'T/T rs6716753'}, 'GSM1697097': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '2.5 h'}, 'GSM1697096': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '2.5 h'}, 'GSM1697099': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '4 h'}, 'GSM1697098': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '4 h'}, 'GSM1945990': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18522', 'for': '30min'}, 'GSM1945991': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18522', 'for': '30min'}, 'GSM1945992': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18522', 'for': '30min'}, 'GSM1945993': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18522', 'for': '60min'}, 'GSM1945994': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18522', 'for': '60min'}, 'GSM1945995': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18522', 'for': '60min'}, 'GSM1945996': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18852', 'for': '30min'}, 'GSM1945997': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18852', 'for': '30min'}, 'GSM1945998': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18852', 'for': '60min'}, 'GSM1945999': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18852', 'for': '60min'}, 'GSM1357247': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM2632478': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2138531': {'line': 'M412a', 'state': 'Melanoma'}, 'GSM2138530': {'line': 'M249AR', 'state': 'Melanoma'}, 'GSM2138533': {'line': 'PB', 'state': 'Melanoma'}, 'GSM2138532': {'line': 'M412b', 'state': 'Melanoma'}, 'GSM1683236': {'type': 'U87 human glioma cells'}, 'GSM1683237': {'type': 'U87 human glioma cells'}, 'GSM2492575': {'tissue': 'peripheral blood', 'type': 'Naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8+CD45RO-CCR7+', 'method': 'Adult peripheral blood mononuclear cells were isolated and cells of the indicated phenotype sorted by FACS'}, 'GSM1914589': {'type': 'cerebral organoid'}, 'GSM2325676': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': '5 uM IBET151 exposed 24 hours, culture media only for 2 days'}, 'GSM2325677': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': '5 uM IBET151 exposed 24 hours, culture media only for 2 days, LPS exposed for 4 hours.'}, 'GSM2325674': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'LPS and 5 uM IBET151 exposed 24 hours, culture media only for 2 days'}, 'GSM2325675': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'LPS and 5 uM IBET151 exposed 24 hours, culture media only for 2 days, LPS exposed for 4 hours.'}, 'GSM2325672': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'Culture media for 24 hours, BG exposed for 24 hours, culture media only for 24 hours'}, 'GSM2325673': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'Culture media for 24 hours, BG exposed for 24 hours, culture media only for 24 hours, LPS exposed for 4 hours.'}, 'GSM2325670': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'LPS exposed 24 hours, BG exposed for 24 hours, culture media only for 24 hours'}, 'GSM2325671': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'LPS exposed 24 hours, BG exposed for 24 hours, culture media only for 24 hours, LPS exposed for 4 hours.'}, 'GSM1683238': {'type': 'U87 human glioma cells'}, 'GSM2325678': {'tissue': 'Peripheral blood', 'type': 'Monocyte', 'treatment': 'LPS and 5 uM IBET151 exposed for 4 hours'}, 'GSM1683239': {'type': 'U87 human glioma cells'}, 'GSM1914588': {'type': 'cerebral organoid'}, 'GSM2361889': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361888': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361885': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361884': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361887': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361886': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361881': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361880': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361883': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361882': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2172182': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172183': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172180': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2172181': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172186': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172187': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172184': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172185': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172188': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172189': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2367487': {'to': '10 Gy irradition', 'line': 'MCF-7', 'barcode': 'GTGAAA', 'with': 'UV light at 365 nm (0.2 J/cm2)'}, 'GSM2367486': {'to': 'none (control)', 'line': 'MCF-7', 'barcode': 'CGATGT', 'with': 'UV light at 365 nm (0.2 J/cm2)'}, 'GSM2367485': {'to': 'none (control)', 'line': 'MCF-7', 'barcode': 'CTTGTA', 'with': 'UV light at 365 nm (0.2 J/cm2)'}, 'GSM2166328': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2231438': {'type': 'Adipose-derived Mesenchymal Stromal Cell'}, 'GSM2231439': {'type': 'Adipose-derived Mesenchymal Stromal Cell'}, 'GSM2166323': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2231437': {'type': 'Adipose-derived Mesenchymal Stromal Cell'}, 'GSM2166321': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166320': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166327': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166326': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM1905141': {'number': '5', 'knockdown': 'RBM15 (via shRBM15#2)', 'transgenes': 'yes', 'time': 'exponential phase', 'line': 'leukemia cell line MEG-01', 'protocols': 'RPMI1640+10% FBS'}, 'GSM1905140': {'number': '5', 'knockdown': 'RBM15 (via shRBM15#1)', 'transgenes': 'yes', 'time': 'exponential phase', 'line': 'leukemia cell line MEG-01', 'protocols': 'RPMI1640+10% FBS'}, 'GSM1888668': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1914585': {'type': 'cerebral organoid'}, 'GSM1888662': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888663': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888660': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888661': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888666': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888667': {'set': 'nonisogenic', 'type': 'iPSC'}, 'GSM1888664': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1888665': {'set': 'nonisogenic', 'type': 'ESC'}, 'GSM1395559': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395558': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395557': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395556': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395555': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395554': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395553': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395552': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395551': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395550': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1914584': {'type': 'cerebral organoid'}, 'GSM2705409': {'Sex': 'Male', 'rin': '6.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.16', 'pmi': '17'}, 'GSM2705408': {'Sex': 'Male', 'rin': '8.3', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.59', 'pmi': '24'}, 'GSM1071293': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'tisssue': 'malignant prostate tumors'}, 'GSM1071292': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'tisssue': 'malignant prostate tumors'}, 'GSM1071291': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'tisssue': 'malignant prostate tumors'}, 'GSM1071290': {'antibody': 'anti-AR (N20) from Santa Cruz Biotechnology (Santa Cruz, CA)', 'tisssue': 'malignant prostate tumors'}, 'GSM2705403': {'Sex': 'Male', 'rin': '8.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.37', 'pmi': '21'}, 'GSM2705402': {'Sex': 'Male', 'rin': '7.3', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.76', 'pmi': '17'}, 'GSM2705401': {'Sex': 'Male', 'rin': '7.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6', 'pmi': '18'}, 'GSM2705400': {'Sex': 'Male', 'rin': '8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.53', 'pmi': '12.5'}, 'GSM2705407': {'Sex': 'Female', 'rin': '7.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.08', 'pmi': '19'}, 'GSM2705406': {'Sex': 'Male', 'rin': '8.4', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.6', 'pmi': '11'}, 'GSM2705405': {'Sex': 'Male', 'rin': '7.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder non-suicides (MDD)', 'ph': '6.84', 'pmi': '23'}, 'GSM2705404': {'Sex': 'Male', 'rin': '4.9', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '7.07', 'pmi': '11'}, 'GSM1613637': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613636': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613635': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613634': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613633': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613632': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613631': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613630': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613639': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613638': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1440479': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440478': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440477': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440476': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440475': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440474': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440473': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440472': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440471': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1440470': {'type': 'glioma - contrast-enhancing sample'}, 'GSM1946058': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '60min'}, 'GSM2486455': {'line': 'KOPN-8'}, 'GSM2486456': {'line': 'KOPN-8'}, 'GSM2486457': {'line': 'KOPN-8'}, 'GSM2486458': {'line': 'KOPN-8'}, 'GSM2486459': {'line': 'KOPN-8'}, 'GSM1946056': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '60min'}, 'GSM1946057': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '60min'}, 'GSM1946050': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '30min'}, 'GSM1946051': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '30min'}, 'GSM1946052': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '30min'}, 'GSM1946053': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '30min'}, 'GSM1631719': {'line': 'RUES2', 'type': 'human embryonic stem cells (hESCs)'}, 'GSM2247648': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247649': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247644': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247645': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247646': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247647': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247640': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247641': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247642': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247643': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1394608': {'type': 'iPSC-derived neurons', 'variation': 'control', 'time': '4 weeks'}, 'GSM1394609': {'type': 'iPSC-derived neurons', 'variation': 'carrying heterozygous 4bp deletion in DISC1 gene', 'time': '4 weeks'}, 'GSM1394606': {'type': 'iPSC-derived neurons', 'variation': 'control', 'time': '4 weeks'}, 'GSM1394607': {'type': 'iPSC-derived neurons', 'variation': 'control', 'time': '4 weeks'}, 'GSM1842241': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM2204781': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2677863': {'cells': 'tumor in the body of the pancreas of a 61 year-old female', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-WT, p53-Y220C, p16-HD, SMAD4-HD (HD=homozygous deletion)'}, 'GSM2677862': {'cells': 'tumor in the body of the pancreas of a 61 year-old female', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-WT, p53-Y220C, p16-HD, SMAD4-HD (HD=homozygous deletion)'}, 'GSM2677861': {'cells': 'tumor in the body of the pancreas of a 61 year-old female', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-WT, p53-Y220C, p16-HD, SMAD4-HD (HD=homozygous deletion)'}, 'GSM2677867': {'cells': 'tumor in the body and tail of the pancreas of a 65 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12C, p53-R248W, p16-HD, SMAD4-WT'}, 'GSM2677866': {'cells': 'tumor in the body of the pancreas of a 61 year-old female', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-WT, p53-Y220C, p16-HD, SMAD4-HD (HD=homozygous deletion)'}, 'GSM2677865': {'cells': 'tumor in the body of the pancreas of a 61 year-old female', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-WT, p53-Y220C, p16-HD, SMAD4-HD (HD=homozygous deletion)'}, 'GSM2677864': {'cells': 'tumor in the body of the pancreas of a 61 year-old female', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-WT, p53-Y220C, p16-HD, SMAD4-HD (HD=homozygous deletion)'}, 'GSM2677869': {'cells': 'tumor in the body and tail of the pancreas of a 65 year-old male', 'type': 'established pancreatic adenocarcinoma cell line', 'genotype': 'KRAS-G12C, p53-R248W, p16-HD, SMAD4-WT'}, 'GSM1561612': {'type': 'normal skin'}, 'GSM2256138': {'infected': 'u87_unique:TSS96264_+_130598103.23-P1P2', 'type': 'U87'}, 'GSM2256139': {'infected': 'u87_unique:TSS96264_+_130598129.23-P1P2', 'type': 'U87'}, 'GSM2256134': {'infected': 'common:TSS45950_-_72265061.23-P1P2', 'type': 'U87'}, 'GSM2256135': {'infected': 'common:TSS45950_-_72265040.23-P1P2', 'type': 'U87'}, 'GSM2256136': {'infected': 'u87_unique:TSS17301_+_568376.23-P1P2', 'type': 'U87'}, 'GSM2256137': {'infected': 'u87_unique:TSS17301_+_568413.23-P1P2', 'type': 'U87'}, 'GSM2256130': {'infected': 'common:TSS11541_+_102133389.23-P1P2', 'type': 'U87'}, 'GSM2256131': {'infected': 'common:TSS11541_+_102133421.23-P1P2', 'type': 'U87'}, 'GSM2256132': {'infected': 'common:TSS89234_+_58287660.23-P1P2', 'type': 'U87'}, 'GSM2256133': {'infected': 'common:TSS89234_-_58287677.23-P1P2', 'type': 'U87'}, 'GSM2374344': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374345': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374346': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374347': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374340': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374341': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374342': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374343': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374348': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374349': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1464304': {'status': 'small cell lung cancer'}, 'GSM2326718': {'type': 'Induced Pluripotent Stem Cells (iPSCs)', 'variation': 'wild type'}, 'GSM3380661': {'type': 'H9 embryonic stem cells derived neural stem cells', 'genotype': 'WT'}, 'GSM2326710': {'line': 'SZ-ALS1', 'type': 'Human Embryonic Stem Cells (HESCs)', 'variation': 'C9 mutation'}, 'GSM2326711': {'line': 'SZ-ALS3', 'type': 'Human Embryonic Stem Cells (HESCs)', 'variation': 'C9 mutation'}, 'GSM2326712': {'type': 'Human Embryonic Stem Cells (HESCs)', 'variation': 'wild type'}, 'GSM2326713': {'type': 'Induced Pluripotent Stem Cells (iPSCs)', 'variation': 'C9 carrier'}, 'GSM2326714': {'type': 'Induced Pluripotent Stem Cells (iPSCs)', 'variation': 'C9 carrier'}, 'GSM2326715': {'type': 'Induced Pluripotent Stem Cells (iPSCs)', 'variation': 'C9/ALS patient'}, 'GSM2326716': {'type': 'Induced Pluripotent Stem Cells (iPSCs)', 'variation': 'C9/ALS patient'}, 'GSM2326717': {'type': 'Induced Pluripotent Stem Cells (iPSCs)', 'variation': 'C9/ALS patient'}, 'GSM2754898': {'bin': '4', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_1178', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754899': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0511', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM2754896': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0979', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754897': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0979', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754894': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_1056', 'previousdiagnosisoftb': 'No', 'tst': '22', 'type': 'Tcells'}, 'GSM2754895': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '01_0934', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754892': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_1056', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754893': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_1056', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754890': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '01_0935', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754891': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_1020', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1387921': {'line': 'MRC5'}, 'GSM1387920': {'line': 'MRC5'}, 'GSM1387923': {'line': 'MRC5'}, 'GSM1387922': {'line': 'MRC5'}, 'GSM1387925': {'line': 'MRC5'}, 'GSM1387924': {'line': 'MRC5'}, 'GSM1387927': {'line': 'MRC5'}, 'GSM1387926': {'line': 'MRC5'}, 'GSM1387929': {'line': 'MRC5'}, 'GSM1387928': {'line': 'MRC5'}, 'GSM475204': {'tissue': 'mixed human brain'}, 'GSM475205': {'tissue': 'mixed human brain'}, 'GSM475206': {'tissue': 'mixed human brain'}, 'GSM475207': {'tissue': 'mixed human brain'}, 'GSM475208': {'tissue': 'mixed human brain'}, 'GSM475209': {'tissue': 'mixed human brain'}, 'GSM992932': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day3'}, 'GSM992933': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day7'}, 'GSM992931': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day0'}, 'GSM992936': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day3'}, 'GSM992937': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day7'}, 'GSM992934': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day10'}, 'GSM992935': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day0'}, 'GSM992938': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day10'}, 'GSM992939': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day0'}, 'GSM2158094': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158095': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2158096': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2158097': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2158090': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158091': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158092': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158093': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158098': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2158099': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2932825': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '9'}, 'GSM2425659': {'tissue': 'glioblastoma', 'stage': 'WHO IV'}, 'GSM2425658': {'tissue': 'glioblastoma', 'stage': 'WHO IV'}, 'GSM2197613': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM1102627': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '8h'}, 'GSM1338768': {'start': 'NA', 'type': 'Fibroblast (TM)', 'dna': 'empty vector', 'group': 'Control', 'time': '30 minutes'}, 'GSM1102625': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '6h'}, 'GSM1102624': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM1338765': {'start': '10 minutes prior to washout', 'type': 'Cockayne syndrome group B fibroblasts', 'dna': 'NA', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM1338764': {'start': 'NA', 'type': 'Cockayne syndrome group B fibroblasts', 'dna': 'NA', 'group': 'Control', 'time': '10 minutes'}, 'GSM1102629': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '10h'}, 'GSM1338766': {'start': 'Immediately after washout', 'type': 'Cockayne syndrome group B fibroblasts', 'dna': 'NA', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM1338761': {'start': '10 minutes prior to washout', 'type': 'Foreskin fibroblasts (HF1)', 'dna': 'NA', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM1338760': {'start': 'NA', 'type': 'Foreskin fibroblasts (HF1)', 'dna': 'NA', 'group': 'Control', 'time': '30 minutes'}, 'GSM1338763': {'start': '10 minutes after washout', 'type': 'Foreskin fibroblasts (HF1)', 'dna': 'NA', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM1338762': {'start': 'Immediately after washout', 'type': 'Foreskin fibroblasts (HF1)', 'dna': 'NA', 'group': 'DRB exposure', 'time': '10 minutes'}, 'GSM1417184': {'state': 'Post-treatment metastasis', 'tissue': 'metastasis tumour'}, 'GSM2871739': {'extraction': 'total mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'eIF4E-silenced'}, 'GSM2871738': {'extraction': 'light polysome mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'eIF4E-silenced'}, 'GSM2871737': {'extraction': 'heavy polysome mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'eIF4E-silenced'}, 'GSM2871736': {'extraction': 'total mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'non-silencing'}, 'GSM2932824': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '16'}, 'GSM2871734': {'extraction': 'heavy polysome mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 1', 'genotype': 'non-silencing'}, 'GSM2932827': {'pucai': '35', 'score': '1', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '6'}, 'GSM2653838': {'gender': 'M', 'passages': 'p12', 'type': 'Human liver progenitor'}, 'GSM2653839': {'gender': 'M', 'passages': 'p4', 'type': 'Human liver tumoral cell'}, 'GSM2653836': {'gender': 'F', 'passages': 'p2', 'type': 'Human liver progenitor'}, 'GSM2653837': {'gender': 'M', 'passages': 'p12', 'type': 'Human liver progenitor'}, 'GSM2653834': {'gender': 'M', 'passages': 'p8', 'type': 'Human liver progenitor'}, 'GSM2653835': {'gender': 'F', 'passages': 'p5', 'type': 'Human liver progenitor'}, 'GSM2653832': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653833': {'gender': 'M', 'passages': 'p8', 'type': 'Human liver progenitor'}, 'GSM2653830': {'gender': 'F', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2653831': {'gender': 'M', 'passages': 'N/A', 'type': 'Human liver biopsy'}, 'GSM2434023': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2259828': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM2170919': {'stage': 'Liver bud 2'}, 'GSM2170918': {'stage': 'Liver bud 2'}, 'GSM2170917': {'stage': 'Liver bud 2'}, 'GSM2170916': {'stage': 'Liver bud 2'}, 'GSM2170915': {'stage': 'Liver bud 2'}, 'GSM2170914': {'stage': 'Liver bud 2'}, 'GSM2170913': {'stage': 'Liver bud 2'}, 'GSM2170912': {'stage': 'Liver bud 2'}, 'GSM2170911': {'stage': 'Liver bud 2'}, 'GSM2170910': {'stage': 'Liver bud 2'}, 'GSM2049132': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2932821': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '14'}, 'GSM2049133': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2334780': {'type': 'Undifferentiated'}, 'GSM2049130': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049131': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049136': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049137': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2932820': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '16'}, 'GSM2455597': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM735421': {'line': 'HK-2', 'type': 'kidney proximal tubule epithelial cell line'}, 'GSM2455596': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2754800': {'bin': '9', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '16', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0507', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM735423': {'line': 'HK-2', 'type': 'kidney proximal tubule epithelial cell line'}, 'GSM735422': {'line': 'HK-2', 'type': 'kidney proximal tubule epithelial cell line'}, 'GSM2932823': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '16'}, 'GSM2307115': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2932822': {'pucai': 'NA', 'score': 'NA', 'remission': 'NA', '32': 'NA', 'calprotectin': 'NA', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'NA', 'diagnosis': '17'}, 'GSM2948494': {'differentiation': 'NCSC cocultured with iPSC-derived Motor Neurons', 'harvested': '11 to 14 days to NCSC, then cocultured for 14 days, replated (to kill MN) and cultured for 7 more days', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2948491': {'differentiation': 'NCSC treated with MesenPRO with Heregulin', 'harvested': '11 to 14 days to NCSC, then 40 days in MesenPRO with Heregulin media', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2948490': {'differentiation': 'NCSC treated with MesenPRO with Heregulin', 'harvested': '11 to 14 days to NCSC, then 40 days in MesenPRO with Heregulin media', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2948493': {'differentiation': 'NCSC cocultured with iPSC-derived Motor Neurons', 'harvested': '11 to 14 days to NCSC, then cocultured for 14 days, replated (to kill MN) and cultured for 7 more days', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2948492': {'differentiation': 'NCSC cocultured with iPSC-derived Motor Neurons', 'harvested': '11 to 14 days to NCSC, then cocultured for 14 days, replated (to kill MN) and cultured for 7 more days', 'tissue': 'iPSC-derived Neural Crest Stem Cells'}, 'GSM2596491': {'state': 'wild type', 'type': 'ESC-derived macrophage', 'treatment': 'Yes'}, 'GSM1643959': {'antibody': 'p65 (Vendor: Santa Cruz, cat# sc-372, lot# D0604)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2 for 45m'}, 'GSM1643958': {'antibody': 'p65 (Vendor: Santa Cruz, cat# sc-372, lot# D0604)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'E2 for 45m'}, 'GSM5420361': {'differentiation': 'M-CSF', 'donor': 'Donor 7'}, 'GSM5420360': {'differentiation': 'M. obuense', 'donor': 'Donor 6'}, 'GSM5420363': {'differentiation': 'M. obuense', 'donor': 'Donor 7'}, 'GSM5420362': {'differentiation': 'GM-CSF', 'donor': 'Donor 7'}, 'GSM5420365': {'differentiation': 'GM-CSF', 'donor': 'Donor 8'}, 'GSM5420364': {'differentiation': 'M-CSF', 'donor': 'Donor 8'}, 'GSM5420366': {'differentiation': 'M. obuense', 'donor': 'Donor 8'}, 'GSM1643955': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b+IKK7'}, 'GSM1643954': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IKK7'}, 'GSM2746364': {'gender': 'F', 'passages': 'p5', 'type': 'Human liver tumoral cell'}, 'GSM2746363': {'gender': 'M', 'passages': 'p8', 'type': 'Human liver tumoral cell'}, 'GSM2190572': {'line': 'OVCAR5'}, 'GSM2190571': {'line': 'OVCAR5'}, 'GSM2190570': {'line': 'OVCAR5'}, 'GSM1658391': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': '+', 'gfp': '-', 'cd13': 'NA'}, 'GSM1658390': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': '+', 'gfp': '-', 'cd13': 'NA'}, 'GSM1658393': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': '-', 'gfp': '+', 'cd13': 'NA'}, 'GSM1658392': {'ssea4': '-', 'line': 'Detroit 551', 'tra160': '-', 'gfp': '+', 'cd13': 'NA'}, 'GSM1658395': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': '+', 'gfp': '-', 'cd13': 'NA'}, 'GSM1963858': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1658397': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM1658396': {'ssea4': '+', 'line': 'Detroit 551', 'tra160': '+', 'gfp': '-', 'cd13': 'NA'}, 'GSM1963855': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963854': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963857': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963856': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963851': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963850': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963853': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM1963852': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2135464': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'IFNgTNFa', 'target': 'Not applicable'}, 'GSM2787788': {'line': 'CUTLL1', 'type': 'T cell leukemia'}, 'GSM2787789': {'line': 'CUTLL1', 'type': 'T cell leukemia'}, 'GSM2135465': {'type': 'RNAseq (Ribozero Stranded Truseq HT)', 'replicate': 'Not applicable', 'treatment': 'IFNgTNFa', 'target': 'Not applicable'}, 'GSM2840504': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM1666048': {'line': 'melanoma cell line A375P', 'agent': 'DEL22379'}, 'GSM1666049': {'line': 'melanoma cell line A375P', 'agent': 'SCH772984'}, 'GSM2840505': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM1666044': {'line': 'melanoma cell line A375P', 'agent': 'CONTROL'}, 'GSM1666045': {'line': 'melanoma cell line A375P', 'agent': 'CONTROL'}, 'GSM1666046': {'line': 'melanoma cell line A375P', 'agent': 'DEL22379'}, 'GSM1666047': {'line': 'melanoma cell line A375P', 'agent': 'DEL22379'}, 'GSM1666040': {'race': 'African American', 'age': '31', 'tissue': 'LCM-dissected vaginal epithelium', 'contraception': 'DMPA 3 months at least'}, 'GSM1666041': {'race': 'African American', 'age': '21', 'tissue': 'LCM-dissected vaginal epithelium', 'contraception': 'DMPA 3 months at least'}, 'GSM1666042': {'line': 'melanoma cell line A375P', 'agent': 'CONTROL'}, 'GSM1666043': {'line': 'melanoma cell line A375P', 'agent': 'CONTROL'}, 'GSM2455656': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455657': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455654': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455655': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455652': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455653': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455650': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455651': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1557590': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM2455658': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455659': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2221671': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'polyA+ RNA'}, 'GSM2221670': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'n/a', 'subtype': 'polyA+ RNA'}, 'GSM2221672': {'source': 'Human Embryonic Kidney', 'line': 'TREX FLP-In 293T cells', 'type': 'Epithelial', 'overexpression': 'T7-tagged hnRNP A1', 'subtype': 'polyA+ RNA'}, 'GSM2348776': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348777': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348774': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1659045': {'patient': 'Healthy donor'}, 'GSM2348772': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1659043': {'patient': 'Brx-11'}, 'GSM2348770': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348771': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1370910': {'line': 'A673', 'expression': 'NT shRNA'}, 'GSM1370911': {'line': 'A673', 'expression': '813 RUNX3 shRNA'}, 'GSM2348778': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348779': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2304747': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2304746': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2304745': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2304744': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM920999': {'barcode': 'CCGCTA', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd5'}, 'GSM2350361': {'tissue': 'Cord Blood', 'type': 'preDCs-CD172a+'}, 'GSM2304741': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2304740': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM920995': {'barcode': 'AAGTAC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd1'}, 'GSM920994': {'barcode': 'GTTGCC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Noninduced', 'name': 'Charlotte', 'day': 'd0'}, 'GSM920997': {'barcode': 'TTAACT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd3'}, 'GSM920996': {'barcode': 'GATCTT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd2'}, 'GSM920991': {'barcode': 'TACTTC', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd5'}, 'GSM920990': {'barcode': 'GTCCCG', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd4'}, 'GSM2304749': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM920992': {'barcode': 'AAAGTT', 'type': 'Mesenchymal Stem Cells', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd6'}, 'GSM2307214': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307215': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307216': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307217': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307210': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307211': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307212': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307213': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307218': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307219': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2527232': {'age': '7 post conception weeks (pcw)', 'type': 'Embryonic lung tip epithelium'}, 'GSM2527233': {'age': '7 post conception weeks (pcw)', 'type': 'Embryonic lung stalk epithelium'}, 'GSM2937091': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2937090': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2527236': {'age': '9 post conception weeks (pcw)', 'type': 'Embryonic lung tip epithelium'}, 'GSM2527237': {'age': '9 post conception weeks (pcw)', 'type': 'Embryonic lung stalk epithelium'}, 'GSM2527234': {'age': '7 post conception weeks (pcw)', 'type': 'Embryonic lung tip epithelium'}, 'GSM2527235': {'age': '7 post conception weeks (pcw)', 'type': 'Embryonic lung stalk epithelium'}, 'GSM2712714': {'condition': 'latent TB infection'}, 'GSM2158007': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2527238': {'age': '9 post conception weeks (pcw)', 'type': 'Embryonic lung tip epithelium'}, 'GSM2527239': {'age': '9 post conception weeks (pcw)', 'type': 'Embryonic lung stalk epithelium'}, 'GSM2158006': {'gender': 'F', 'age': '24', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158005': {'gender': 'F', 'age': '24', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158004': {'gender': 'F', 'age': '24', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM1172904': {'subtype': 'Luminal', 'line': 'T47D', 'type': 'breast cancer'}, 'GSM2176148': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2112791': {'status': 'ER+/PR-deficient', 'line': 'MCF7', 'type': 'ER+/PR-deficient cell models', 'treatment': 'Vehicle', 'time': '12 hours'}, 'GSM2112790': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 hours'}, 'GSM2112793': {'status': 'ER+/PR-deficient', 'line': 'MCF7', 'type': 'ER+/PR-deficient cell models', 'treatment': '10 nM R5020', 'time': '12 hours'}, 'GSM2112792': {'status': 'ER+/PR-deficient', 'line': 'MCF7', 'type': 'ER+/PR-deficient cell models', 'treatment': '10 nM Estradiol', 'time': '12 hours'}, 'GSM2112795': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2112794': {'status': 'ER+/PR-deficient', 'line': 'MCF7', 'type': 'ER+/PR-deficient cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 hours'}, 'GSM2112797': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2112796': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2112799': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2112798': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM3579320': {'type': 'Immortalized human mammary epithelial cells', 'treatment': 'minus 4OH-tamoxifen', 'construct': 'ER'}, 'GSM3579321': {'type': 'Immortalized human mammary epithelial cells', 'treatment': 'minus 4OH-tamoxifen', 'construct': 'ER'}, 'GSM3579326': {'type': 'Immortalized human mammary epithelial cells', 'treatment': 'plus 4OH-tamoxifen', 'construct': 'ERSOX4'}, 'GSM3579327': {'type': 'Immortalized human mammary epithelial cells', 'treatment': 'plus 4OH-tamoxifen', 'construct': 'ERSOX4'}, 'GSM3579324': {'type': 'Immortalized human mammary epithelial cells', 'treatment': 'minus 4OH-tamoxifen', 'construct': 'ERSOX4'}, 'GSM3579325': {'type': 'Immortalized human mammary epithelial cells', 'treatment': 'minus 4OH-tamoxifen', 'construct': 'ERSOX4'}, 'GSM2889042': {'tissue': 'pancreatic islets'}, 'GSM2889043': {'tissue': 'pancreatic islets'}, 'GSM2889040': {'tissue': 'pancreatic islets'}, 'GSM2889041': {'tissue': 'pancreatic islets'}, 'GSM2889046': {'tissue': 'pancreatic islets'}, 'GSM2889047': {'tissue': 'pancreatic islets'}, 'GSM2889044': {'tissue': 'pancreatic islets'}, 'GSM2889045': {'tissue': 'pancreatic islets'}, 'GSM2243393': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 263'}, 'GSM2889048': {'tissue': 'pancreatic islets'}, 'GSM2889049': {'tissue': 'pancreatic islets'}, 'GSM1833436': {'line': 'Jurkat', 'type': 'total RNA', 'treatment': '1 hour'}, 'GSM2176146': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176147': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2627014': {'origin': 'pancreas', 'patient_id': '166', 'type': 'primary', 'tumor_id': 'YC89'}, 'GSM2311818': {'culture': '12', 'line': 'DCX+'}, 'GSM2243391': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 132'}, 'GSM1868790': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868791': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868792': {'type': 'Memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868793': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868794': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868795': {'type': 'Central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868796': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868797': {'type': 'IFNg secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1063287': {'region': 'temporal cortex', 'death': '97 years', 'tissue': 'Post morten brain', 'id': '7'}, 'GSM1063286': {'region': 'Putamen', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '2'}, 'GSM1063285': {'region': 'Caudate', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '2'}, 'GSM1063284': {'region': 'hippocampus', 'death': '82 years', 'tissue': 'Post morten brain', 'id': '3'}, 'GSM1063283': {'region': 'temporal cortex', 'death': '82 years', 'tissue': 'Post morten brain', 'id': '3'}, 'GSM1063282': {'region': 'frontal cortex', 'death': '82 years', 'tissue': 'Post morten brain', 'id': '3'}, 'GSM1063281': {'region': 'temporal cortex', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '2'}, 'GSM1063280': {'region': 'frontal cortex', 'death': '87 years', 'tissue': 'Post morten brain', 'id': '2'}, 'GSM2328815': {'type': 'normal lymphatic collector'}, 'GSM2302048': {'timepoint': 'Pre', 'id': '15', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM1172902': {'subtype': 'unknown', 'line': 'SUM229PE', 'type': 'breast cancer'}, 'GSM2302049': {'timepoint': 'Post', 'id': '15', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2536299': {'phenotype': '8hr infected with mutant VP35 virus'}, 'GSM2328814': {'type': 'normal lymphatic collector'}, 'GSM2536296': {'phenotype': '8hr Mock infected'}, 'GSM1348229': {'line': 'LNCaP', 'type': 'prostate cancer cell line', 'treatment': 'SD70'}, 'GSM1348228': {'line': 'LNCaP', 'type': 'prostate cancer cell line', 'treatment': 'SD70 + DHT'}, 'GSM1564640': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '8.3', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1348227': {'line': 'LNCaP', 'type': 'prostate cancer cell line', 'treatment': 'vehicle only'}, 'GSM1348226': {'line': 'LNCaP', 'type': 'prostate cancer cell line', 'treatment': 'DHT'}, 'GSM2718939': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM1530032': {'line': 'TamR subline', 'description': 'Tamoxifen-resistant cell line', 'agent': '4-hydroxytamoxifen'}, 'GSM1530031': {'line': 'TamR subline', 'description': 'Tamoxifen-resistant cell line', 'agent': 'vehicle control'}, 'GSM1530030': {'line': 'MCF-7 breast adenocarcinoma cell line', 'description': 'Parental cell line', 'agent': '4-hydroxytamoxifen'}, 'GSM2718931': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718930': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718933': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718932': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718935': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718934': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718937': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2718936': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM1528201': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528200': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528203': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528202': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528205': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528204': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528207': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528206': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528209': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM1528208': {'tissue': 'colon', 'type': 'epithelial', 'disease': 'colon adenocarcinoma'}, 'GSM2891083': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'control (siNT)'}, 'GSM2891082': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'case (siSF3B1)'}, 'GSM2891081': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'control (siNT)'}, 'GSM2891087': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'control (siNT)'}, 'GSM2891086': {'line': 'SW480', 'experiment': 'Triplicates', 'variation': 'case (siSF3B1)'}, 'GSM1430919': {'line': 'Ls174T'}, 'GSM1430918': {'line': 'Ls174T'}, 'GSM1430917': {'line': 'Ls174T'}, 'GSM1430916': {'line': 'Ls174T'}, 'GSM1430915': {'line': 'Ls174T'}, 'GSM1430914': {'line': 'Ls174T'}, 'GSM1430913': {'line': 'Ls174T'}, 'GSM1430912': {'line': 'Ls174T'}, 'GSM1430911': {'line': 'Ls174T'}, 'GSM1430910': {'line': 'Ls174T'}, 'GSM1431060': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'wildtype', 'agent': 'hydrogen peroxide (400 µM)'}, 'GSM1431061': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'wildtype', 'agent': 'hydrogen peroxide (400 µM)'}, 'GSM1431062': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'SLE', 'agent': 'none'}, 'GSM1431063': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'SLE', 'agent': 'hydrogen peroxide (400 µM)'}, 'GSM1431064': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'AGS', 'agent': 'none'}, 'GSM1431065': {'passages': 'passages 4-11', 'tissue': 'skin biopsies', 'genotype': 'AGS', 'agent': 'hydrogen peroxide (400 µM)'}, 'GSM2252659': {'stimulation': '6 hour stimulation with A82V M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252658': {'stimulation': '4 hour stimulation with A82V M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252655': {'stimulation': 'Unstimulated', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252657': {'stimulation': '2 hour stimulation with A82V M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2252656': {'stimulation': '1 hour stimulation with A82V M-EBOV', 'type': 'monocyte-derived dendritic cells (MDDCs)', 'id': 'healthy donor #F70'}, 'GSM2251302': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251303': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251300': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251301': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251306': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2771755': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_6', 'structure': 'neurite'}, 'GSM2771756': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_7', 'structure': 'neurite'}, 'GSM2771757': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_8', 'structure': 'neurite'}, 'GSM2771758': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_9', 'structure': 'cell body'}, 'GSM2771759': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_10', 'structure': 'neurite'}, 'GSM2251308': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251309': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2871748': {'extraction': 'total mRNA', 'tissue': 'selected tamoxifen resistant MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'eIF4E-silenced'}, 'GSM2080922': {'line': 'RWPE1', 'antibody': 'none'}, 'GSM2535757': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1239', 'samplename': '1gr_413tetr_C85', 'seqsite': 'BRI', 'sampleID': 'S13407', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1239', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C85'}, 'GSM2535754': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1235', 'samplename': '1gr_413tetr_C57', 'seqsite': 'BRI', 'sampleID': 'S13403', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1235', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C57'}, 'GSM2080921': {'line': 'RWPE1', 'antibody': 'none'}, 'GSM2535752': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1233', 'samplename': '1gr_413tetr_C80', 'seqsite': 'BRI', 'sampleID': 'S13401', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1233', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C80'}, 'GSM2535753': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1234', 'samplename': '1gr_413tetr_C92', 'seqsite': 'BRI', 'sampleID': 'S13402', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1234', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C92'}, 'GSM2535750': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1231', 'samplename': '1gr_413tetr_C68', 'seqsite': 'BRI', 'sampleID': 'S13399', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1231', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C68'}, 'GSM2535751': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1232', 'samplename': '1gr_413tetr_C74', 'seqsite': 'BRI', 'sampleID': 'S13400', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1232', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C74'}, 'GSM1866081': {'line': 'Gliobmastoma cell line'}, 'GSM2535758': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1240', 'samplename': '1gr_413tetr_C12', 'seqsite': 'BRI', 'sampleID': 'S13408', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1240', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C12'}, 'GSM2535759': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1242', 'samplename': '1gr_413tetr_C28', 'seqsite': 'BRI', 'sampleID': 'S13410', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1242', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C28'}, 'GSM2029268': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM2029269': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM2641092': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2029260': {'type': 'Heterologous pronuclear transfer embryo 4'}, 'GSM2029261': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM2029262': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM2029263': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM2029264': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM2029265': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM2029266': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM2029267': {'type': 'Heterologous pronuclear transfer embryo 9'}, 'GSM1846919': {'shrna': 'shLuc', 'type': 'patient derived xenograft cells', 'mutation': 'BRAFV600E', 'passage': '2'}, 'GSM2510249': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510248': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510245': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510244': {'shRNA': 'PUM1/PUM2', 'type': 'immortalized human cell line HEK293'}, 'GSM2510247': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510246': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2510241': {'shRNA': 'Non-target control', 'type': 'immortalized human cell line HEK293'}, 'GSM2510240': {'shRNA': 'Non-target control', 'type': 'immortalized human cell line HEK293'}, 'GSM2510243': {'shRNA': 'PUM1/PUM2', 'type': 'immortalized human cell line HEK293'}, 'GSM2510242': {'shRNA': 'PUM1/PUM2', 'type': 'immortalized human cell line HEK293'}, 'GSM2700519': {'line': 'HeyA8 (single Fas KO clone #11)', 'tissue': 'Ovaries', 'genotype': 'Fas KO -/-', 'infection': 'Infected with pLKO-scr', 'point': 'harvested at 100hrs'}, 'GSM2374788': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2519373': {'with': 'HSV1 K220A mutated', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'pulldown', 'passage': 'p5-15'}, 'GSM1880790': {'preparation': '6.25.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM2700512': {'line': '293T (pool of 3 KO clones)', 'tissue': 'Human Embryonic kidney', 'genotype': 'Fas ligand KO -/-', 'infection': 'Infected with pTIP-scr; 100ng/uL doxycycline', 'point': 'harvested at 100hrs'}, 'GSM1880791': {'preparation': '6.25.2014', 'gender': 'male', 'tissue': 'placenta', 'culture': '48 h'}, 'GSM2700513': {'line': '293T (pool of 3 KO clones)', 'tissue': 'Human Embryonic kidney', 'genotype': 'Fas ligand KO -/-', 'infection': 'Infected with pTIP-shL3; 100ng/uL doxycycline', 'point': 'harvested at 100hrs'}, 'GSM2458879': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.00'}, 'GSM2607512': {'line': 'WA26'}, 'GSM2374789': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2458878': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.00'}, 'GSM2312209': {'culture': '12', 'line': 'DCX-'}, 'GSM2312208': {'culture': '12', 'line': 'DCX-'}, 'GSM2828597': {'stimulation': 'ZK_IFNgneg', 'subset': 'CD3+CD8+ T cells', 'individual': 'subject 3053', 'type': 'CD8 T cells'}, 'GSM2312201': {'culture': '12', 'line': 'DCX-'}, 'GSM2312200': {'culture': '12', 'line': 'DCX-'}, 'GSM2312203': {'culture': '12', 'line': 'DCX-'}, 'GSM2312202': {'culture': '12', 'line': 'DCX-'}, 'GSM2312205': {'culture': '12', 'line': 'DCX-'}, 'GSM2312204': {'culture': '12', 'line': 'DCX-'}, 'GSM2312207': {'culture': '12', 'line': 'DCX-'}, 'GSM2312206': {'culture': '12', 'line': 'DCX-'}, 'GSM2706086': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'time': 'Day 25'}, 'GSM2706087': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'time': 'Day 25'}, 'GSM3073000': {'tissue': 'Glial Progenitor Cells', 'diet': 'Cuprizone'}, 'GSM3073001': {'tissue': 'Glial Progenitor Cells', 'diet': 'Cuprizone'}, 'GSM3073004': {'tissue': 'Glial Progenitor Cells', 'diet': 'Cuprizone'}, 'GSM2458874': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '15.33'}, 'GSM1194149': {'status': 'wild-type', 'line': 'HEK293T-rex', 'clone': '15', 'treatment': 'Doxycycline 25 min'}, 'GSM2458877': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '5.42'}, 'GSM2706088': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'time': 'Day 25'}, 'GSM2706089': {'line': 'RUES2 Human Embryonic Stem Cells', 'type': 'Lung progenitors', 'treatment': '+CHIR', 'time': 'Day 50'}, 'GSM1617453': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1848801': {'tissue': 'vastus lateralis muscle', 'group': 'control', 'id': 'subject 9', 'point': '3 hours after exercise'}, 'GSM1848806': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 12', 'point': 'immediately after exercise'}, 'GSM1848807': {'tissue': 'vastus lateralis muscle', 'group': 'received combined H1/H2-histamine receptor blockade prior to exercise', 'id': 'subject 12', 'point': '3 hours after exercise'}, 'GSM1371566': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'teratoma'}, 'GSM1617457': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1371567': {'line': 'WIBR3 with fused LGR5+GFP', 'stage': 'teratoma'}, 'GSM1617456': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617455': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM1617454': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM2326849': {'type': 't(3;21) paitent', 'genotype': 't(3;21) paitent'}, 'GSM2627011': {'origin': 'pancreas', 'patient_id': '48', 'type': 'primary', 'tumor_id': 'YC83'}, 'GSM1617458': {'type': 'CLL cells', 'disease': 'Chronic lymphocytic leukemia'}, 'GSM2059897': {'donor': '1', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM1846637': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM1846636': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM1846635': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM1846634': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM1846633': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM1846632': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM1846631': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM1846630': {'tissue': 'bone marrow', 'type': 'CD34 MLL-AF9 were injected into multiple NGS immunodeficient mice'}, 'GSM2550447': {'donor': 'A', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550446': {'donor': 'A', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550445': {'donor': 'A', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550444': {'donor': 'A', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550443': {'donor': 'E', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550442': {'donor': 'E', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550441': {'donor': 'E', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550440': {'donor': 'E', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2469552': {'status': 'resistant', 'gender': 'male', 'individual': 'r08', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469553': {'status': 'resistant', 'gender': 'male', 'individual': 'r08', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469550': {'status': 'resistant', 'gender': 'male', 'individual': 'r07', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469551': {'status': 'resistant', 'gender': 'male', 'individual': 'r07', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2360279': {'type': 'Adult microglia', 'treatment': 'None'}, 'GSM2469557': {'status': 'resistant', 'gender': 'male', 'individual': 'r10', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2469554': {'status': 'resistant', 'gender': 'male', 'individual': 'r09', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2469555': {'status': 'resistant', 'gender': 'male', 'individual': 'r09', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2360275': {'type': 'Fetal microglia', 'treatment': 'None'}, 'GSM2360274': {'type': 'Fetal microglia', 'treatment': 'None'}, 'GSM2469558': {'status': 'resistant', 'gender': 'male', 'individual': 'r11', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2360276': {'type': 'Fetal microglia', 'treatment': 'None'}, 'GSM2360271': {'type': 'CD14-/CD16+', 'treatment': 'None'}, 'GSM2360270': {'type': 'CD14-/CD16+', 'treatment': 'None'}, 'GSM2360273': {'type': 'CD14-/CD16+', 'treatment': 'None'}, 'GSM2360272': {'type': 'CD14-/CD16+', 'treatment': 'None'}, 'GSM2333486': {'line': 'U87MG', 'type': 'malignant glioblastoma cell line', 'population': 'highly invasive'}, 'GSM2248183': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2341625': {'source': 'none', 'line': 'U2OS', 'RNAi': 'none', 'factor': 'LBR'}, 'GSM2792928': {'protocol': 'Monocytes cultured for 24 hours in mevalonate, followed by 5 days in media (RPMI)', 'type': 'Monocyte', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'donor': 'Donor_1'}, 'GSM2248181': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2792929': {'protocol': 'Monocytes cultured for 6 days in media (RPMI) only', 'type': 'Monocyte', 'antibody': 'Rabbit polyclonal anti-H3K27ac (Diagenode, cat. # pAb-196-050)', 'donor': 'Donor_1'}, 'GSM2333482': {'with': 'EZH2 siRNA for 48 hrs', 'type': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'passage': 'passage 3 to passage 5'}, 'GSM1520018': {'to': 'Vehicle control - Treated with 0.1% DMSO', 'line': 'CML cell line KCL-22', 'treatment': 'ClonTracer-barcoded KCL-22 cell population was treated with 0.1% DMSO for 7 days.'}, 'GSM1520019': {'to': '2.5 µM imatinib', 'line': 'CML cell line KCL-22', 'treatment': 'ClonTracer-barcoded KCL-22 cell population was treated with 2.5 µM imatinib for 27 days to acquire imatinib-resistant cell population.'}, 'GSM2248187': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248184': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2248185': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '3uM'}, 'GSM2053724': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053725': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053726': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053727': {'type': 'glioblastoma (Grade IV)'}, 'GSM2732867': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2732866': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2732865': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2053723': {'type': 'glioblastoma (Grade IV)'}, 'GSM2732869': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732868': {'origin': 'fetal', 'type': 'iPSCs retroviral derived', 'passage': '5_7'}, 'GSM2053728': {'type': 'glioblastoma (Grade IV)'}, 'GSM2053729': {'type': 'glioblastoma (Grade IV)'}, 'GSM434683': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 6 additional hours'}, 'GSM434687': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434686': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434685': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 6 additional hours'}, 'GSM434684': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 6 additional hours'}, 'GSM434689': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 24 additional hours'}, 'GSM434688': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM2247667': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1896150': {'individual': 'AF67', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141279': {'individual': 'AF47', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2172029': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172028': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048638': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048639': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2172021': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172020': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172023': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172022': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172025': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172024': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172027': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172026': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2429920': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': 'DMSO'}, 'GSM2100019': {'rin': '9.7', 'Sex': 'Female', 'sspg': '80', 'age': '57', 'bmi': '27.7', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '211', 'method': 'Qiagen:trizol'}, 'GSM2100018': {'rin': '9.3', 'Sex': 'Female', 'sspg': '80', 'age': '57', 'bmi': '27.7', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '211', 'method': 'Qiagen:trizol'}, 'GSM2451179': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451178': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2464649': {'with': 'BCL11B knockdown shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '1', 'populatione': 'CD45+GFP+CD7+CD1a+ T-cell precursors'}, 'GSM2464648': {'with': 'BCL11B knockdown shRNA lentivral vector containing a GFP reporter', 'type': 'Cord blood CD34+ cells', 'number': '1', 'populatione': 'CD45+GFP+CD7+CD1a- T-cell precursors'}, 'GSM2100017': {'rin': '9.5', 'Sex': 'Male', 'sspg': '216', 'age': '53', 'bmi': '25.9', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '134', 'method': 'Qiagen:trizol'}, 'GSM2451174': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100011': {'rin': '6.5', 'Sex': 'Female', 'sspg': '281', 'age': '63', 'bmi': '24.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '182', 'method': 'Qiagen:trizol'}, 'GSM2100010': {'rin': '10', 'Sex': 'Female', 'sspg': '203', 'age': '63', 'bmi': '31.7', 'batch': '1-60', 'by': 'AP', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '042114-050914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '178', 'method': 'Life-Tech GITC'}, 'GSM2451171': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451170': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1863096': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'highDBZ_ICN', 'passage': '<20'}, 'GSM1863097': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'highDBZ_R1984A', 'passage': '<20'}, 'GSM1863094': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'mig', 'passage': '<20'}, 'GSM1863095': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'mig_highDBZ', 'passage': '<20'}, 'GSM1863092': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'highDBZ_ICN', 'passage': '<20'}, 'GSM1863093': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'highDBZ_R1984A', 'passage': '<20'}, 'GSM1863090': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'mig', 'passage': '<20'}, 'GSM1863091': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'mig_highDBZ', 'passage': '<20'}, 'GSM1395452': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395453': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395450': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395451': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395456': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395457': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1863098': {'line': 'C4-2B prostate cancer cell line', 'type': 'Bone metastatic LNCaP-derivative', 'agent': 'control'}, 'GSM1395455': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2544019': {'library_id': 'lib8329', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544018': {'library_id': 'lib8328', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544011': {'library_id': 'lib8321', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.124', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544010': {'library_id': 'lib8320', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.124', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544013': {'library_id': 'lib8323', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544012': {'library_id': 'lib8322', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544015': {'library_id': 'lib8325', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544014': {'library_id': 'lib8324', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544017': {'library_id': 'lib8327', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544016': {'library_id': 'lib8326', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2411951': {'line': '16126E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2786546': {'line': 'MAVER1'}, 'GSM2786545': {'line': 'KARPAS422'}, 'GSM2411952': {'line': '16939A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411955': {'line': '1998G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411954': {'line': '1998E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411957': {'line': '22512D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411956': {'line': '22512A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411959': {'line': '24472K', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2411958': {'line': '24472D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2786549': {'line': 'OCILY1'}, 'GSM2786548': {'line': 'MINO'}, 'GSM2124798': {'type': 'non-tumor CD11b+ microglia samples'}, 'GSM2204669': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204668': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2124799': {'type': 'non-tumor CD11b+ microglia samples'}, 'GSM2204663': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204662': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204661': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204660': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204667': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204666': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204665': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204664': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1836599': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836598': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U4'}, 'GSM2257142': {'stain': 'PANC-1', 'tissue': 'Pancreatic', 'genotype': 'pLV-IL35'}, 'GSM1836594': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836597': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836596': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836591': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836590': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836593': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U6'}, 'GSM1836592': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U6'}, 'GSM2124790': {'type': 'CD11b+ human glioblastoma-associated microglia/monocytes'}, 'GSM2124791': {'type': 'CD11b+ human glioblastoma-associated microglia/monocytes'}, 'GSM2136883': {'cell': 'MV411 cells', 'treatment': 'Control', 'batch': '4'}, 'GSM2136882': {'cell': 'MV411 cells', 'treatment': 'shENL Knock Down', 'batch': '4'}, 'GSM2136881': {'cell': 'MV411 cells', 'treatment': 'shENL Knock Down', 'batch': '4'}, 'GSM2136880': {'cell': 'MV411 cells', 'treatment': 'shENL Knock Down', 'batch': '4'}, 'GSM2124792': {'type': 'CD11b+ human glioblastoma-associated microglia/monocytes'}, 'GSM2136885': {'cell': 'MV411 cells', 'treatment': 'Control', 'batch': '4'}, 'GSM2136884': {'cell': 'MV411 cells', 'treatment': 'Control', 'batch': '4'}, 'GSM2284003': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM922258': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2284001': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2284000': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2284007': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2284006': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2284005': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM922259': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM1047591': {'line': 'BJ cells', 'protocol': 'BJ cells expressing hTERT, p16INK4A-KD, p53-KD and SV40 small T were retrovirally transduced with pBabe-puro-RASG12V', 'condition': 'Transformed cells (induced by RASG12V in the background of stable p53 and p16INK4A kds)'}, 'GSM2170665': {'stage': 'Hepatic endoderm 2'}, 'GSM2284009': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2284008': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2170664': {'stage': 'Hepatic endoderm 2'}, 'GSM2124796': {'type': 'non-tumor CD11b+ microglia samples'}, 'GSM2124797': {'type': 'non-tumor CD11b+ microglia samples'}, 'GSM2467179': {'state': 'non-Diabetic', 'type': 'retinal endothelial cells'}, 'GSM2075269': {'substrate': 'Microporous support', 'density': '80,000 cells/cm2', 'number': '0', 'treatment': 'None', 'time': '32 Days', 'id': 'hfRPE-071709'}, 'GSM1498122': {'type': 'senescent cells expressing ZFP36L1mut', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM2348287': {'line': 'FLO-1 parental'}, 'GSM1498123': {'type': 'Non-senescent cells', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM715429': {'tissue': 'breast invasive ductal carcinoma', 'method': 'FFPE'}, 'GSM715428': {'tissue': 'breast invasive ductal carcinoma', 'method': 'FFPE'}, 'GSM1498128': {'type': 'senescent cells', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM2632600': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM715427': {'tissue': 'breast invasive ductal carcinoma', 'method': 'FFPE'}, 'GSM715426': {'tissue': 'breast invasive ductal carcinoma', 'method': 'FFPE'}, 'GSM1498129': {'type': 'senescent cells expressing ZFP36L1wt', 'line': 'IRM90', 'induction': '7', 'passage': 'p15'}, 'GSM1055817': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K4me3 (Abcam ab8580)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1055816': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K4me3 (Abcam ab8580)', 'treatment': 'no treat'}, 'GSM1055815': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'H3K4me1 (Abcam ab8895)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM2747596': {'line': 'fhRPE-13A', 'passages': '15', 'type': 'retina pigment epithelium', 'Stage': '2 days'}, 'GSM2175943': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175942': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175941': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175940': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175947': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175946': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175945': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175944': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1055813': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'p300 (Santa Cruz sc-585)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM2175949': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2175948': {'irradiation': '0 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1055812': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'p300 (Santa Cruz sc-585)', 'treatment': 'no treat'}, 'GSM1055811': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'NF-κB p65 (Santa Cruz sc-372)', 'treatment': 'TNF-α (10ng/mL) 1hr'}, 'GSM1102632': {'line': 'HCT116', 'type': 'Colorectal cancer', 'time': '5h'}, 'GSM1055810': {'enzyme': 'no', 'experiment': 'ChIP-seq', 'antibody': 'NF-κB p65 (Santa Cruz sc-372)', 'treatment': 'no treat'}, 'GSM1891817': {'type': 'SCNT assisted by KDM4A derived human ES cells'}, 'GSM1891816': {'type': 'SCNT assisted by KDM4A derived human ES cells'}, 'GSM2141649': {'individual': 'EU242', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1891814': {'type': 'SCNT assisted by KDM4A derived human ES cells'}, 'GSM1891813': {'type': 'SCNT assisted by KDM4A derived human ES cells'}, 'GSM2287509': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1891811': {'type': 'Control human ES cells'}, 'GSM1891810': {'type': 'Control human ES cells'}, 'GSM2141643': {'individual': 'EU238', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141642': {'individual': 'EU232', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141641': {'individual': 'EU232', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2287508': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2233131': {'line': 'TOV21G', 'experiment': 'repressed HDAC6', 'type': 'shRNA', 'treatment': 'shHDAC6'}, 'GSM2233130': {'line': 'TOV21G', 'experiment': 'control', 'type': 'drug treatment', 'treatment': 'Vehicle control'}, 'GSM2233133': {'line': 'TOV21G', 'experiment': 'repressed HDAC6', 'type': 'drug treatment', 'treatment': 'CAY10603'}, 'GSM2233132': {'line': 'TOV21G', 'experiment': 'repressed HDAC6', 'type': 'drug treatment', 'treatment': 'ACY1215'}, 'GSM2519361': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2287503': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2311829': {'culture': '12', 'line': 'DCX+'}, 'GSM2199358': {'status': 'Head and neck squamous cell carcinoma (HNSCC) patient', 'type': 'cancer associated fibroblasts (CAF)', 'id': 'patient 1'}, 'GSM2199359': {'status': 'Head and neck squamous cell carcinoma (HNSCC) patient', 'type': 'normal fibroblasts (NF) from unaffected skin', 'id': 'patient 1'}, 'GSM2519360': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2610947': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610946': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM1519399': {'line': '8988T', 'type': 'pancreatic ductal adenocarcinoma', 'treatment': 'siCTRL'}, 'GSM1519398': {'line': '8988T', 'type': 'pancreatic ductal adenocarcinoma', 'treatment': 'siCTRL'}, 'GSM2610945': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2303385': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM1914466': {'group': 'C116_iPSC', 'region': 'C116', 'type': 'iPSC'}, 'GSM2303382': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM1965313': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2610942': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610941': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2481028': {'passages': 'p62', 'type': 'HS360', 'genotype': '46 XY, wild type'}, 'GSM2303381': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2481029': {'passages': 'p62', 'type': 'HS360', 'genotype': '46 XY, POLR3G siRNA knockdown'}, 'GSM1914467': {'group': 'C116_iPSC', 'region': 'C116', 'type': 'iPSC'}, 'GSM2158353': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158352': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158351': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158350': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158357': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158356': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158355': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM2158354': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM1041197': {'line': 'BJ cells', 'condition': 'Proliferation, normal conditions'}, 'GSM1041196': {'line': 'BJ cells', 'protocol': 'BJ cells expressing hTERT and tamoxifen-inducible RASG12V were cultured in the presence of 10-7M 4-OHT-Tamoxifen for 5 days', 'condition': 'pre-senescence; 5 dys after RASG12V induction'}, 'GSM2158359': {'gender': 'F', 'age': '31', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 11', 'ethnicity': 'H'}, 'GSM1041194': {'line': 'BJ cells', 'condition': 'Quiescence induced by serum depletion'}, 'GSM1041193': {'line': 'BJ cells', 'condition': 'Quiescence induced by serum depletion'}, 'GSM1041192': {'line': 'BJ cells', 'condition': 'Proliferation, normal conditions'}, 'GSM1041191': {'line': 'BJ cells', 'condition': 'Proliferation, normal conditions'}, 'GSM1914464': {'group': 'C116_NSC', 'region': 'C116', 'type': 'NSC'}, 'GSM2303388': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCG268'}, 'GSM3586736': {'origin': 'GCB', 'pfstt': '1137', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1328', 'cycles': '6', 'oscs': '0'}, 'GSM2610948': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM3586733': {'origin': 'GCB', 'pfstt': '464', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1548', 'cycles': '6', 'oscs': '0'}, 'GSM3586731': {'origin': 'GCB', 'pfstt': '379', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '612', 'cycles': '8', 'oscs': '1'}, 'GSM3586730': {'origin': 'ABC', 'pfstt': '212', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '212', 'cycles': '8', 'oscs': '1'}, 'GSM2722303': {'variation': 'TRMT6/61A KD', 'subtype': 'RNA fraction under 200 nt', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'TGIRT; pH 8.3; 3mM MgCl2'}, 'GSM2722302': {'subtype': 'RNA fraction under 200 nt', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'TGIRT; pH 8.3; 3mM MgCl2'}, 'GSM2722301': {'subtype': 'Ribosome protected RNA', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS III; pH 8.3; 3mM MgCl2'}, 'GSM2722300': {'subtype': 'rRNA depleted fraction', 'treatment': 'None', 'line': 'HEK293T', 'type': 'human embryonic kindey cells', 'enrichment': 'None', 'condition': 'SS III; pH 8.3; 3mM MgCl2'}, 'GSM2871676': {'line': 'U251', 'vector': 'Lentivirus', 'treatment': 'stable transfected cell line with PD-L1 overexpression', 'passage': '5-10'}, 'GSM2871677': {'line': 'U251', 'vector': 'Lentivirus', 'treatment': 'stable transfected cell line with PD-L1 overexpression', 'passage': '5-10'}, 'GSM2212707': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2241580': {'batch': 'C', 'condition': 'Disomic'}, 'GSM2303595': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303594': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACEL337'}, 'GSM2303593': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2212702': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2303591': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACEL337'}, 'GSM2303590': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303599': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2303598': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2265688': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '12h'}, 'GSM2265689': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '24h'}, 'GSM2635908': {'type': 'A549 cells', 'treatment': 'Cas9 + guide RNA transient transfection, followed by FACS of single cells', 'genotype': 'miR-1343 deleted'}, 'GSM2264250': {'type': 'stem-like cells CD133+ cells'}, 'GSM2730130': {'type': 'Flash frozen liver tissue'}, 'GSM2265680': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '48h'}, 'GSM2635903': {'type': 'A549 cells', 'treatment': 'Cas9 + guide RNA transient transfection, followed by FACS of single cells', 'genotype': 'miR-1343 wild type'}, 'GSM2265682': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '6h'}, 'GSM2265683': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '12h'}, 'GSM2265684': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '24h'}, 'GSM2680566': {'line': 'H1', 'type': 'embryonic stem cells', 'genotype': 'wild type'}, 'GSM2265686': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '3h'}, 'GSM2265687': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '6h'}, 'GSM2680567': {'line': 'H1', 'type': 'embryonic stem cells', 'genotype': 'wild type'}, 'GSM2443354': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2443355': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2443356': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM867291': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours'}, 'GSM2443358': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Non-Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2443359': {'gender': 'female', 'age': '60', 'type': 'A'}, 'GSM2170898': {'stage': 'Liver bud 2'}, 'GSM2170899': {'stage': 'Liver bud 2'}, 'GSM2170892': {'stage': 'Liver bud 2'}, 'GSM2170893': {'stage': 'Liver bud 2'}, 'GSM2170890': {'stage': 'Liver bud 2'}, 'GSM2170891': {'stage': 'Liver bud 2'}, 'GSM2170896': {'stage': 'Liver bud 2'}, 'GSM2170897': {'stage': 'Liver bud 2'}, 'GSM2170894': {'stage': 'Liver bud 2'}, 'GSM2170895': {'stage': 'Liver bud 2'}, 'GSM2264252': {'type': 'non-stem CD133- cells'}, 'GSM2680568': {'line': 'H1', 'type': 'embryonic stem cells', 'genotype': 'HEB KO'}, 'GSM2262908': {'protocol': 'Culture only for 6 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2680569': {'line': 'H1', 'type': 'embryonic stem cells', 'genotype': 'HEB KO'}, 'GSM2275119': {'area_under_the_curve': '0.437644063', 'siteandparticipantcode': '326726', 'baseline_area_under_the_curve': '0.797192813', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '54.89814454', 'auc_percent_of_baseline': '54.89814454', 'trunkbarcode': '930955', 'sampleID': 'S13129', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1537', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_326726', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1537', 'studysiteshort': 'COLUMBIA'}, 'GSM2275118': {'area_under_the_curve': '0.054511563', 'siteandparticipantcode': '406442', 'baseline_area_under_the_curve': '0.648708281', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '8.403093359', 'auc_percent_of_baseline': '8.403093359', 'trunkbarcode': '930956', 'sampleID': 'S13128', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1536', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_406442', 'gender': 'Female', 'age': '13', 'race': 'White', 'libraryid': 'lib1536', 'studysiteshort': 'COLUMBIA'}, 'GSM2262909': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2275111': {'area_under_the_curve': '1.14484625', 'siteandparticipantcode': '738493', 'baseline_area_under_the_curve': '1.079318594', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '106.0712061', 'auc_percent_of_baseline': '106.0712061', 'trunkbarcode': '905679', 'sampleID': 'S12648', 'flowcellid': 'D27JJACXX', 'status': 'R', 'samplelabel': 'lib1528', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_738493', 'gender': 'Female', 'age': '11', 'race': 'White; White', 'libraryid': 'lib1528', 'studysiteshort': 'YALE'}, 'GSM2359224': {'duration': '48h', 'line': 'H3122', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2275113': {'area_under_the_curve': '1.28428', 'siteandparticipantcode': '788532', 'baseline_area_under_the_curve': '1.4986025', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '85.69850911', 'auc_percent_of_baseline': '85.69850911', 'trunkbarcode': '946066', 'sampleID': 'S12650', 'flowcellid': 'D27JJACXX', 'status': 'NR', 'samplelabel': 'lib1530', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_788532', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib1530', 'studysiteshort': 'YALE'}, 'GSM2275112': {'area_under_the_curve': '0.565130781', 'siteandparticipantcode': '921524', 'baseline_area_under_the_curve': '0.95286625', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '59.30851064', 'auc_percent_of_baseline': '59.30851064', 'trunkbarcode': '905680', 'sampleID': 'S12649', 'flowcellid': 'D27JJACXX', 'status': 'NR', 'samplelabel': 'lib1529', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '2', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_921524', 'gender': 'Female', 'age': '17', 'race': 'White', 'libraryid': 'lib1529', 'studysiteshort': 'YALE'}, 'GSM2275115': {'area_under_the_curve': '0.919197344', 'siteandparticipantcode': '137567', 'baseline_area_under_the_curve': '0.968640469', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '94.89561642', 'auc_percent_of_baseline': '94.89561642', 'trunkbarcode': '930423', 'sampleID': 'S13125', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1533', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_137567', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib1533', 'studysiteshort': 'COLUMBIA'}, 'GSM2275114': {'area_under_the_curve': '0.138813125', 'siteandparticipantcode': '853089', 'baseline_area_under_the_curve': '0.32107', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '43.23453608', 'auc_percent_of_baseline': '43.23453608', 'trunkbarcode': '921961', 'sampleID': 'S13124', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1532', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'Control', 'name': 'AbATE_853089', 'gender': 'Male', 'age': '14', 'race': 'White', 'libraryid': 'lib1532', 'studysiteshort': 'COLUMBIA'}, 'GSM2275117': {'area_under_the_curve': '0.60573', 'siteandparticipantcode': '493934', 'baseline_area_under_the_curve': '1.24331875', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '48.718802', 'auc_percent_of_baseline': '48.718802', 'trunkbarcode': '930753', 'sampleID': 'S13127', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1535', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_493934', 'gender': 'Female', 'age': '10', 'race': 'Black or African American', 'libraryid': 'lib1535', 'studysiteshort': 'COLUMBIA'}, 'GSM2275116': {'area_under_the_curve': '0.308760938', 'siteandparticipantcode': '209864', 'baseline_area_under_the_curve': '0.48657', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '63.45663265', 'auc_percent_of_baseline': '63.45663265', 'trunkbarcode': '930751', 'sampleID': 'S13126', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1534', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_209864', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib1534', 'studysiteshort': 'COLUMBIA'}, 'GSM3586908': {'origin': 'UNCLASSIFIED', 'pfstt': '62', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '62', 'cycles': '6', 'oscs': '1'}, 'GSM3586909': {'origin': 'ABC', 'pfstt': '865', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1009', 'cycles': '6', 'oscs': '0'}, 'GSM3586900': {'origin': 'GCB', 'pfstt': '1249', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1254', 'cycles': '8', 'oscs': '0'}, 'GSM3586901': {'origin': 'ABC', 'pfstt': '872', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '872', 'cycles': '8', 'oscs': '0'}, 'GSM3586902': {'origin': 'GCB', 'pfstt': '985', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1143', 'cycles': '8', 'oscs': '0'}, 'GSM3586903': {'origin': 'GCB', 'pfstt': '862', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '862', 'cycles': '8', 'oscs': '0'}, 'GSM3586904': {'origin': 'GCB', 'pfstt': '877', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '881', 'cycles': '8', 'oscs': '0'}, 'GSM3586905': {'origin': 'GCB', 'pfstt': '893', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '896', 'cycles': '6', 'oscs': '0'}, 'GSM3586906': {'origin': 'UNCLASSIFIED', 'pfstt': '191', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '828', 'cycles': '6', 'oscs': '0'}, 'GSM3586907': {'origin': 'GCB', 'pfstt': '1198', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1206', 'cycles': '8', 'oscs': '0'}, 'GSM2262902': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2616553': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2392205': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2616550': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2392204': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2680454': {'line': 'colorectal cancer cell line COLO205', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM2680455': {'line': 'colorectal cancer cell line COLO205', 'treatment': 'DMSO', 'time': '16hr'}, 'GSM1916439': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1916438': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM2680450': {'line': 'colorectal cancer cell line COLO205', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680451': {'line': 'colorectal cancer cell line COLO205', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM2680452': {'line': 'colorectal cancer cell line COLO205', 'time': '16hr', 'treatment': 'ML00754792', 'dosage': '500 nM'}, 'GSM958742': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '10516', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'sex': 'U', 'replicate': '2', 'treatment': 'None', 'insertlength': '400'}, 'GSM1916433': {'type': 'LCL-reprogrammed iPSC'}, 'GSM1916432': {'type': 'LCL-reprogrammed iPSC'}, 'GSM1916431': {'type': 'LCL-reprogrammed iPSC'}, 'GSM1916430': {'type': 'LCL-reprogrammed iPSC'}, 'GSM1916437': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1916436': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1916435': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1916434': {'type': 'NSC differentiated from LCL-reprogrammed iPSC'}, 'GSM1969325': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Lower limb'}, 'GSM2392209': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1969327': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM1969326': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Lower limb'}, 'GSM1969321': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Head and neck'}, 'GSM2305330': {'subtype': 'RUNX2 DOX inducible model', 'type': 'MCF7', 'condition': 'Full Medium'}, 'GSM1969323': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM2092570': {'individual': 'patient 13 (glioblastoma)', 'tissue': 'brain'}, 'GSM2616555': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM1969329': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Trunk wall'}, 'GSM1969328': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM1574299': {'type': 'original Pancreatic Ductal Adenocarcinoma (PDAC) cell line', 'background': 'CAPAN2'}, 'GSM1621319': {'group': 'A: Not-expanded nTregs', 'type': 'regulatory T cells', 'batch': 'b4'}, 'GSM1621318': {'group': 'A: Not-expanded nTregs', 'type': 'regulatory T cells', 'batch': 'b3'}, 'GSM3190718': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.187433'}, 'GSM3190719': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'Yes', 'v0': 'Case', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.297147'}, 'GSM1621315': {'group': 'B: Allogeneic mature moDC-expanded nTreg', 'type': 'regulatory T cells', 'batch': 'b2'}, 'GSM1621314': {'group': 'B: Allogeneic mature moDC-expanded nTreg', 'type': 'regulatory T cells', 'batch': 'b1'}, 'GSM1621317': {'group': 'A: Not-expanded nTregs', 'type': 'regulatory T cells', 'batch': 'b3'}, 'GSM1621316': {'group': 'B: Allogeneic mature moDC-expanded nTreg', 'type': 'regulatory T cells', 'batch': 'b2'}, 'GSM3190712': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.640676'}, 'GSM3190713': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.07843'}, 'GSM1621313': {'group': 'B: Allogeneic mature moDC-expanded nTreg', 'type': 'regulatory T cells', 'batch': 'b1'}, 'GSM1621312': {'group': 'C: aCD3/aCD28-coated bead expanded nTreg', 'type': 'regulatory T cells', 'batch': 'b1'}, 'GSM2333543': {'type': 'dermal fibroblasts, immortalized', 'treatment': 'UV-C, 12 J/m2'}, 'GSM1859140': {'type': 'Epidermal keratinocytes', 'passage': '2'}, 'GSM1859143': {'type': 'Epidermal keratinocytes derived Neural crest', 'passage': '2'}, 'GSM1859142': {'type': 'Epidermal keratinocytes derived Neural crest', 'passage': '2'}, 'GSM2333547': {'expsoure': 'no', 'line': 'BEAS-2B', 'tissue': 'lung', 'stage': 'immortalized'}, 'GSM2333546': {'expsoure': 'no', 'line': 'BEAS-2B', 'tissue': 'lung', 'stage': 'immortalized'}, 'GSM2333545': {'type': 'dermal fibroblasts, immortalized', 'treatment': 'UV-C, 12 J/m2'}, 'GSM2333544': {'type': 'dermal fibroblasts, immortalized', 'treatment': 'none'}, 'GSM2333549': {'expsoure': 'yes', 'line': 'BEAS-2B', 'tissue': 'lung', 'stage': 'immortalized'}, 'GSM2333548': {'expsoure': 'yes', 'line': 'BEAS-2B', 'tissue': 'lung', 'stage': 'immortalized'}, 'GSM1323707': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Negative', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '7', 'reads': '117,694,252', 'tissue': 'prostate', 'u': '82', 'mapped': '39.9%', 'id': 'UTPC021', 'bcr': '1'}, 'GSM1323706': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '5.98', 'reads': '94,879,158', 'tissue': 'prostate', 'u': '89', 'mapped': '55.1%', 'id': 'UTPC019', 'bcr': '1'}, 'GSM1323705': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '5.98', 'reads': '109,542,098', 'tissue': 'prostate', 'u': '84', 'mapped': '54.8%', 'id': 'UTPC019', 'bcr': '1'}, 'GSM1323704': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '22.3', 'reads': '166,836,094', 'tissue': 'prostate', 'u': '68', 'mapped': '57.4%', 'id': 'UTPC009', 'bcr': '1'}, 'GSM1323703': {'tgleason': '7', 'race': 'NA', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2B', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '22.3', 'reads': '29,955,374', 'tissue': 'prostate', 'u': '53', 'mapped': '56.4%', 'id': 'UTPC009', 'bcr': '1'}, 'GSM1323702': {'tgleason': '9', 'race': 'NA', 'score': '549', 'sms': 'Negative', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '7.2', 'reads': '152,910,392', 'tissue': 'prostate', 'u': '60', 'mapped': '61.6%', 'id': 'UTPC004', 'bcr': '1'}, 'GSM1323701': {'tgleason': '9', 'race': 'NA', 'score': '549', 'sms': 'Negative', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '7.2', 'reads': '125,088,072', 'tissue': 'prostate', 'u': '38', 'mapped': '58.9%', 'id': 'UTPC004', 'bcr': '1'}, 'GSM1323700': {'tgleason': '5', 'race': 'W', 'score': '325', 'sms': 'Negative', 'pstage': 'NA', 'site': 'Moffitt Cancer Center', 'prepsa': 'NA', 'reads': '131,689,532', 'tissue': 'prostate', 'u': '180.56', 'mapped': '54.0%', 'id': 'MCC-PT264', 'bcr': '1'}, 'GSM1323709': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2A', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '5.6', 'reads': '114,519,126', 'tissue': 'prostate', 'u': '43', 'mapped': '57.2%', 'id': 'UTPC029', 'bcr': '1'}, 'GSM1323708': {'tgleason': '7', 'race': 'NA', 'score': '437', 'sms': 'Negative', 'pstage': 'pT1C', 'site': 'U. Toronto Sunnybrook Research Centre', 'prepsa': '7', 'reads': '89,032,182', 'tissue': 'prostate', 'u': '74', 'mapped': '52.8%', 'id': 'UTPC021', 'bcr': '1'}, 'GSM1963989': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'metastatic breast cancer', 'id': 'BC07LN'}, 'GSM2114213': {'line': 'HUES9', 'agent': 'actD', 'time': '8 hours since actD treatment'}, 'GSM2153430': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2092577': {'repertoire': 'TCR-beta', 'individual': 'subject 15 (healthy)', 'tissue': 'peripheral blood'}, 'GSM2394437': {'type': 'HAEC', 'treatment': 'oxpapc, 4h', 'passage': '6 to 10'}, 'GSM2607598': {'line': 'WA26'}, 'GSM2114215': {'line': 'HUES9', 'agent': 'actD', 'time': '8 hours since actD treatment'}, 'GSM2099008': {'tissue': 'iPS derived endothelial cells', 'phenotype': 'unaffected mutation carrier', 'passage': 'P4'}, 'GSM2243451': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1609429': {'line': 'GM12878', 'type': 'polyA RNA'}, 'GSM1609428': {'line': 'GM12878', 'type': 'polyA RNA'}, 'GSM1609425': {'line': 'GM18526', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609424': {'line': 'GM18526', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609427': {'line': 'GM12878', 'type': 'polyA RNA'}, 'GSM1609426': {'line': 'GM18507', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609421': {'line': 'GM19240', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609420': {'line': 'GM19239', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609423': {'line': 'GM19240', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609422': {'line': 'GM19240', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1277970': {'line': 'LLC12PH', 'type': 'Human Parthenogenic Stem Cells'}, 'GSM2719989': {'type': 'CD19+ B cells', 'by': 'EBV strain B95-8', 'treatment': 'None'}, 'GSM2198601': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siPROX1 for 24 hours', 'passage': 'Passage 6'}, 'GSM2198600': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siPROX1 for 24 hours', 'passage': 'Passage 6'}, 'GSM2198603': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siTIE2 for 24 hours', 'passage': 'Passage 6'}, 'GSM2198602': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siPROX1 for 24 hours', 'passage': 'Passage 6'}, 'GSM2198605': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siTIE2 for 24 hours', 'passage': 'Passage 6'}, 'GSM2198604': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siTIE2 for 24 hours', 'passage': 'Passage 6'}, 'GSM2243450': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2095426': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'PLO/laminin-coated tissue culture plastic', 'time': 'day 12'}, 'GSM1866128': {'line': 'Gliobmastoma cell line'}, 'GSM1914469': {'group': 'C116_iPSC', 'region': 'C116', 'type': 'iPSC'}, 'GSM1360871': {'line': '70', 'days_differentiated': '40', 'variation': 'N398', 'subline': 'SG'}, 'GSM2243453': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2095429': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM1360873': {'line': 'ATR1', 'days_differentiated': '0', 'variation': 'WT', 'passage_number': '13'}, 'GSM3189204': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '32', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.601796', 'percentaligned': '0.955137656', 'Sex': 'M', 'nl63': 'No', 'libcounts': '20.710272', 'original': 'Control'}, 'GSM2098534': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-3xFLAG-FTO'}, 'GSM1166069': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2571094': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2243452': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2095428': {'line': 'iPS (Foreskin)-1, Lot 1-DL-01, WiCell', 'substrate': 'Fibrin hydrogel', 'time': 'day 12'}, 'GSM2098536': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-3xFLAG-FTO'}, 'GSM2301525': {'type': 'breast cancer', 'phenotype': 'control'}, 'GSM2301526': {'type': 'breast cancer', 'phenotype': 'PARP resistant'}, 'GSM2098537': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-3xFLAG-FTO'}, 'GSM3189205': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A82', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.717184', 'percentaligned': '0.920776072', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.477321', 'original': 'Case'}, 'GSM2088071': {'status': 'Dysplasia', 'ratio': '1.17525618852864', 'age': '54', 'years': '90', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Female', 'alignments': '82442084', 'alignment': '50902667'}, 'GSM1166068': {'2': 'FirstChoice® Human Brain Reference Total RNA', 'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled Tumor'}, 'GSM2243455': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'B1', 'cluster': '2', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Oligodendrocyte', 'id': 'BT_S2'}, 'GSM2098533': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-3xFLAG-FTO'}, 'GSM1856025': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM2372279': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2243454': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2098538': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-3xFLAG-FTO'}, 'GSM2098539': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-FTO_KO'}, 'GSM1543545': {'gender': 'male', 'individual': 'patient1', 'tissue': 'matched normal'}, 'GSM1543544': {'gender': 'male', 'individual': 'patient1', 'tissue': 'tumor'}, 'GSM1543547': {'gender': 'female', 'individual': 'patient2', 'tissue': 'matched normal'}, 'GSM2611017': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2468951': {'with': '0.05% DMSO', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468950': {'with': '500 nM BI00923812', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468953': {'with': '0.05% DMSO', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468952': {'with': '0.05% DMSO', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468955': {'with': '0.05% DMSO', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468954': {'with': '0.05% DMSO', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM2468956': {'with': '0.05% DMSO', 'line': 'SU-DHL-4', 'type': 'lymphoma cell line'}, 'GSM1856029': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1856028': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Control cells (vector control)'}, 'GSM758559': {'description': 'Poly(A)+ RNA longer than 200 nt', 'datatype': 'RnaSeq', 'labexpid': 'LID16629,LID16630', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '003WC,004WC', 'spikeinpool': 'NIST14'}, 'GSM2243456': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2611019': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM3189201': {'boca': 'Yes', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '17', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.712929', 'percentaligned': '0.944407177', 'Sex': 'M', 'nl63': 'No', 'libcounts': '11.624605'}, 'GSM1866121': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1282329': {'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282328': {'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282327': {'line': 'Retro-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282326': {'line': 'Retro-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282325': {'line': 'IVF Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282324': {'line': 'IVF Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282323': {'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282322': {'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282321': {'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1282320': {'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1241177': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241176': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241175': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241174': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241173': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241172': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241171': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241170': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241179': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1241178': {'line': 'HCT116', 'method': 'Nextera (transposon)'}, 'GSM1571919': {'environment': '2D culture conditions', 'line': 'SW620'}, 'GSM2391048': {'disease': 'Epilepsy'}, 'GSM2391049': {'disease': 'Epilepsy'}, 'GSM2391046': {'disease': 'Epilepsy'}, 'GSM2391047': {'disease': 'Epilepsy'}, 'GSM2391044': {'disease': 'Epilepsy'}, 'GSM2391045': {'disease': 'Epilepsy'}, 'GSM2391042': {'disease': 'Epilepsy'}, 'GSM2391043': {'disease': 'Epilepsy'}, 'GSM2391040': {'disease': 'Epilepsy'}, 'GSM2391041': {'disease': 'Epilepsy'}, 'GSM2790966': {'genotype': 'wild type'}, 'GSM2790964': {'genotype': 'wild type'}, 'GSM2790965': {'genotype': 'wild type'}, 'GSM2790962': {'genotype': 'wild type'}, 'GSM2790963': {'genotype': 'wild type'}, 'GSM1015507': {'line': 'HeLa', 'replicate': '2', 'agent': 'Control'}, 'GSM2790961': {'genotype': 'wild type'}, 'GSM1015509': {'line': 'HeLa', 'replicate': '1', 'agent': 'EGF'}, 'GSM1015508': {'line': 'HeLa', 'replicate': '3', 'agent': 'Control'}, 'GSM1955704': {'a': '63564', 'cd38': '1020', 'cd49f': '991', 'w': '70979', 'h': '58689', 'lin': '905', 'cd34': '5357', 'cd90': '2604', 'cd7': '-31', 'cd10': '826', 'time': '2423', 'cd135': '3138', 'cd45ra': '177'}, 'GSM1955705': {'a': '58282', 'cd38': '-130', 'cd49f': '943', 'w': '66465', 'h': '57468', 'lin': '716', 'cd34': '7259', 'cd90': '137', 'cd7': '440', 'cd10': '1010', 'time': '2642', 'cd135': '2743', 'cd45ra': '79'}, 'GSM1955706': {'a': '56204', 'cd38': '539', 'cd49f': '1568', 'w': '67239', 'h': '54780', 'lin': '-359', 'cd34': '7604', 'cd90': '628', 'cd7': '23', 'cd10': '14419', 'time': '2880', 'cd135': '1147', 'cd45ra': '4039'}, 'GSM1955707': {'a': '47848', 'cd38': '666', 'cd49f': '468', 'w': '68914', 'h': '45503', 'lin': '68', 'cd34': '8441', 'cd90': '875', 'cd7': '383', 'cd10': '618', 'time': '3082', 'cd135': '3240', 'cd45ra': '764'}, 'GSM1955701': {'a': '52265', 'cd38': '750', 'cd49f': '468', 'w': '65521', 'h': '52277', 'lin': '-170', 'cd34': '5984', 'cd90': '1997', 'cd7': '38', 'cd10': '528', 'time': '1689', 'cd135': '3774', 'cd45ra': '471'}, 'GSM1955702': {'a': '67116', 'cd38': '1111', 'cd49f': '1536', 'w': '70049', 'h': '62792', 'lin': '605', 'cd34': '7001', 'cd90': '6009', 'cd7': '10', 'cd10': '1087', 'time': '1926', 'cd135': '1589', 'cd45ra': '416'}, 'GSM1955703': {'a': '72784', 'cd38': '634', 'cd49f': '354', 'w': '65683', 'h': '72621', 'lin': '198', 'cd34': '6111', 'cd90': '365', 'cd7': '172', 'cd10': '612', 'time': '2167', 'cd135': '5809', 'cd45ra': '301'}, 'GSM1955708': {'a': '50475', 'cd38': '276', 'cd49f': '631', 'w': '65586', 'h': '50436', 'lin': '198', 'cd34': '4853', 'cd90': '425', 'cd7': '20', 'cd10': '22092', 'time': '3272', 'cd135': '1835', 'cd45ra': '3676'}, 'GSM1955709': {'a': '55451', 'cd38': '-23', 'cd49f': '552', 'w': '65915', 'h': '55132', 'lin': '-489', 'cd34': '10543', 'cd90': '2082', 'cd7': '62', 'cd10': '807', 'time': '3465', 'cd135': '1930', 'cd45ra': '111'}, 'GSM1946227': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19200', 'for': '30min'}, 'GSM1946226': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19200', 'for': '30min'}, 'GSM1946225': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19192', 'for': '60min'}, 'GSM1946224': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19192', 'for': '60min'}, 'GSM1946223': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19192', 'for': '60min'}, 'GSM1946222': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19192', 'for': '30min'}, 'GSM1946221': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19192', 'for': '30min'}, 'GSM1946220': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19192', 'for': '30min'}, 'GSM1946229': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19200', 'for': '60min'}, 'GSM1946228': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19200', 'for': '60min'}, 'GSM2898808': {'line': 'NA19093', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898809': {'line': 'NA19098', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1400978': {'line': 'MCF7'}, 'GSM1400979': {'line': 'MCF7'}, 'GSM2898804': {'line': 'NA18907', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898805': {'line': 'NA18912', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898806': {'line': 'NA18913', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898807': {'line': 'NA19092', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898800': {'line': 'NA18859', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898801': {'line': 'NA18861', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898802': {'line': 'NA18862', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1400971': {'line': 'MCF7'}, 'GSM1956055': {'a': '51692', 'cd38': '1032', 'cd49f': '229', 'w': '64756', 'h': '52315', 'lin': '-152', 'cd34': '4369', 'cd90': '1361', 'cd7': '260', 'cd10': '858', 'time': '15395', 'cd135': '2880', 'cd45ra': '410'}, 'GSM1956054': {'a': '57675', 'cd38': '-7', 'cd49f': '545', 'w': '64536', 'h': '58568', 'lin': '-168', 'cd34': '9924', 'cd90': '4911', 'cd7': '416', 'cd10': '241', 'time': '15612', 'cd135': '3427', 'cd45ra': '229'}, 'GSM1956057': {'a': '66396', 'cd38': '1085', 'cd49f': '1796', 'w': '68703', 'h': '63336', 'lin': '211', 'cd34': '6332', 'cd90': '233', 'cd7': '-1', 'cd10': '1129', 'time': '14988', 'cd135': '14531', 'cd45ra': '8573'}, 'GSM1956056': {'a': '56786', 'cd38': '667', 'cd49f': '561', 'w': '66972', 'h': '55568', 'lin': '-237', 'cd34': '6699', 'cd90': '727', 'cd7': '-59', 'cd10': '860', 'time': '15204', 'cd135': '10226', 'cd45ra': '343'}, 'GSM1956051': {'a': '55425', 'cd38': '644', 'cd49f': '439', 'w': '66094', 'h': '54957', 'lin': '330', 'cd34': '6394', 'cd90': '1792', 'cd7': '257', 'cd10': '871', 'time': '16240', 'cd135': '3269', 'cd45ra': '97'}, 'GSM1956050': {'a': '61602', 'cd38': '1112', 'cd49f': '524', 'w': '68508', 'h': '58930', 'lin': '-368', 'cd34': '4180', 'cd90': '5655', 'cd7': '98', 'cd10': '509', 'time': '16431', 'cd135': '4012', 'cd45ra': '204'}, 'GSM1956053': {'a': '51101', 'cd38': '831', 'cd49f': '731', 'w': '68039', 'h': '49221', 'lin': '-224', 'cd34': '4101', 'cd90': '640', 'cd7': '326', 'cd10': '757', 'time': '15829', 'cd135': '3154', 'cd45ra': '499'}, 'GSM1956052': {'a': '49218', 'cd38': '913', 'cd49f': '1187', 'w': '67510', 'h': '47779', 'lin': '176', 'cd34': '4770', 'cd90': '90', 'cd7': '77', 'cd10': '11645', 'time': '16033', 'cd135': '7449', 'cd45ra': '5087'}, 'GSM622198': {'marker': 'CD24+', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'BD-Pharmingen'}, 'GSM622199': {'marker': 'SSEA4+', 'state': 'cancer', 'tissue': 'breast', 'type': 'epithelial cell', 'vender': 'R&D Systems'}, 'GSM1956059': {'a': '35901', 'cd38': '448', 'cd49f': '23857', 'w': '63472', 'h': '37069', 'lin': '-244', 'cd34': '3665', 'cd90': '164', 'cd7': '-86', 'cd10': '201', 'time': '14523', 'cd135': '-1236', 'cd45ra': '182'}, 'GSM1956058': {'a': '49302', 'cd38': '155', 'cd49f': '1352', 'w': '67622', 'h': '47781', 'lin': '-13', 'cd34': '4574', 'cd90': '-123', 'cd7': '158', 'cd10': '34590', 'time': '14727', 'cd135': '516', 'cd45ra': '5254'}, 'GSM1866126': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1541783': {'treatment': 'Agarose alone, 24hrs'}, 'GSM1541782': {'treatment': 'Agarose alone, 24hrs'}, 'GSM1541785': {'treatment': 'T3- and T4-bound agarose, 24hrs'}, 'GSM1541784': {'treatment': 'Agarose alone, 24hrs'}, 'GSM1541787': {'treatment': 'T3- and T4-bound agarose, 24hrs'}, 'GSM1541786': {'treatment': 'T3- and T4-bound agarose, 24hrs'}, 'GSM2251405': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251404': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251401': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251400': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251403': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251402': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2093108': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': '12', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093109': {'bin': '22', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1946483': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'stage': 'asynchronization'}, 'GSM1946482': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'stage': 'asynchronization'}, 'GSM1946481': {'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'media': 'frozen tissues', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'type': 'primary bone cells (generated from surgical waste of bone tissues)', 'stage': 'asynchronization'}, 'GSM1946480': {'antibody': 'H3K36me3 (Active Motif, catalog# 61101 lot # 32412003)', 'media': 'frozen tissues', 'mutation': 'WT', 'in': 'yeast reference chromatin', 'type': 'primary bone cells (generated from surgical waste of bone tissues)', 'stage': 'asynchronization'}, 'GSM1946487': {'media': 'frozen tissues', 'type': 'primary bone cells (generated from surgical waste of bone tissues)', 'mutation': 'WT', 'stage': 'asynchronization'}, 'GSM1946486': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946485': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946484': {'media': 'DMEM', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'mutation': 'WT', 'stage': 'asynchronization'}, 'GSM1946489': {'media': 'frozen tissues', 'tissue': 'chondroblastoma', 'mutation': 'K36M', 'stage': 'asynchronization'}, 'GSM1946488': {'media': 'frozen tissues', 'type': 'primary bone cells (generated from surgical waste of bone tissues)', 'mutation': 'WT', 'stage': 'asynchronization'}, 'GSM1700775': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM2564972': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM1700774': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM1700777': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM2325830': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325831': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325832': {'type': 'Differentiated embryonic stem cell'}, 'GSM1481532': {'tissue': 'blood', 'type': 'peripheral blood mono-nuclear cells', 'genotype': 'KLF1: +/R319fsX34'}, 'GSM2325834': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325835': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325836': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325837': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325838': {'type': 'Differentiated embryonic stem cell'}, 'GSM3580301': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM2420349': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420344': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420345': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420346': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420340': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420341': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420342': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420343': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2803000': {'line': 'hMSC-TERT4', 'variation': 'siSATB1', 'stage': 'D0'}, 'GSM2803001': {'line': 'hMSC-TERT4', 'variation': 'siSATB1', 'stage': 'D1'}, 'GSM2803002': {'line': 'hMSC-TERT4', 'variation': 'siSATB1', 'stage': 'D1'}, 'GSM2803003': {'line': 'hMSC-TERT4', 'variation': 'siSATB1', 'stage': 'D7'}, 'GSM2803004': {'line': 'hMSC-TERT4', 'variation': 'siSATB1', 'stage': 'D7'}, 'GSM2131600': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131601': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131602': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131603': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131604': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131605': {'tumor': 'tumor', 'step': 'advanced CaP', 'site': 'prostate'}, 'GSM2131606': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131607': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM2131608': {'tumor': 'tumor', 'step': 'CRPC', 'site': 'prostate'}, 'GSM1700779': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM1700778': {'line': 'MDA-MB-231', 'type': 'TNBC', 'cancer': 'Breast adenocarcinoma'}, 'GSM1861915': {'group': 'Vec_Tam', 'factor': 'Yes'}, 'GSM1861914': {'group': 'Vec_Tam', 'factor': 'Yes'}, 'GSM1861917': {'group': 'Vec_Tam', 'factor': 'Yes'}, 'GSM1861916': {'group': 'Vec_Tam', 'factor': 'Yes'}, 'GSM1861911': {'group': 'Vec', 'factor': 'Yes'}, 'GSM1861910': {'group': 'Vec', 'factor': 'Yes'}, 'GSM1888839': {'activated': 'TRUE', 'activation': '14', 'type': 'Memory', 'id': '5131', 'batch': '2'}, 'GSM1888838': {'activated': 'TRUE', 'activation': '14', 'type': 'Memory', 'id': '5053', 'batch': '2'}, 'GSM1888837': {'activated': 'TRUE', 'activation': '14', 'type': 'Memory', 'id': '4659', 'batch': '2'}, 'GSM1888836': {'activated': 'TRUE', 'activation': '5', 'type': 'Memory', 'id': '5291', 'batch': '1'}, 'GSM1888835': {'activated': 'TRUE', 'activation': '5', 'type': 'Memory', 'id': '5131', 'batch': '1'}, 'GSM1888834': {'activated': 'TRUE', 'activation': '5', 'type': 'Memory', 'id': '5053', 'batch': '1'}, 'GSM1888833': {'activated': 'TRUE', 'activation': '5', 'type': 'Memory', 'id': '4659', 'batch': '1'}, 'GSM1888832': {'activated': 'TRUE', 'activation': '1', 'type': 'Memory', 'id': '5291', 'batch': '2'}, 'GSM1888831': {'activated': 'TRUE', 'activation': '1', 'type': 'Memory', 'id': '5131', 'batch': '2'}, 'GSM1888830': {'activated': 'TRUE', 'activation': '1', 'type': 'Memory', 'id': '5053', 'batch': '2'}, 'GSM2198599': {'line': 'human dermal lymphatic endothelial cells (HDLECs)', 'point': 'after 72 hours of siRNA treatment', 'with': '40 nM of siControl for 24 hours', 'passage': 'Passage 6'}, 'GSM2402802': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2307278': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307279': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2461419': {'line': 'DU145', 'type': 'prostate cancer cells', 'variation': 'control (pLKO)'}, 'GSM1847020': {'line': 'MCF7', 'type': 'adenocarcinoma', 'id': 'ATCC HTB-22', 'derivation': 'breast'}, 'GSM1479522': {'index': '23', 'diagnosis': '--', 'cellcount': '682371', 'gender': 'F', 'age': '30', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '53', 'collectiondate': 'August 21 2012', 'samplename': '53_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Healthy Control'}, 'GSM2649789': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649788': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649787': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649786': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649785': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2391874': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2649783': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2391872': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2649781': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2391870': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2307270': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2061452': {'line': 'HEK 293', 'sirna': 'control siRNA'}, 'GSM2361733': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2061456': {'line': 'HEK 293', 'sirna': '#2_SKIV2L'}, 'GSM2209648': {'group': 'PTC central region'}, 'GSM2061455': {'line': 'HEK 293', 'sirna': '#2_SKIV2L'}, 'GSM2209642': {'with': 'Importazole', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209643': {'group': 'PTC invasive region'}, 'GSM2209640': {'with': 'Leptomycin B', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209641': {'with': 'mportazole', 'passages': '5', 'type': 'Primary mesenchymal stem cells from volunteers'}, 'GSM2209646': {'group': 'PTC central region'}, 'GSM2209647': {'group': 'PTC invasive region'}, 'GSM2209644': {'group': 'PTC central region'}, 'GSM2209645': {'group': 'PTC invasive region'}, 'GSM3189435': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.590058', 'percentaligned': '0.952100364', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.4438', 'original': 'Control'}, 'GSM3189434': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A20', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.687776', 'percentaligned': '0.933449687', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.975789', 'original': 'Control'}, 'GSM3189437': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.664241', 'percentaligned': '0.963564432', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.279009'}, 'GSM3189436': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.605763', 'percentaligned': '0.963581283', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.524901', 'original': 'Case'}, 'GSM3189431': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B97', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '12', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.602372', 'percentaligned': '0.944768136', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.296102', 'original': 'Control'}, 'GSM3189430': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '13', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.617147', 'percentaligned': '0.947455839', 'Sex': 'M', 'nl63': 'No', 'libcounts': '10.674682'}, 'GSM3189433': {'boca': 'No', 'years': '10', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.55094', 'percentaligned': '0.95893991', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.317996', 'original': 'Control'}, 'GSM2361732': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM3189439': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '10', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.633159', 'percentaligned': '0.919517744', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.877231'}, 'GSM3189438': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '17', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.561536', 'percentaligned': '0.964260399', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.601553', 'original': 'Case'}, 'GSM3182759': {'passages': '28-34', 'type': 'ES-derived late cardiomyocytes'}, 'GSM3182758': {'passages': '28-34', 'type': 'ES-derived late cardiomyocytes'}, 'GSM2186789': {'stimulation': 'interferon gamma', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM2186788': {'stimulation': 'TLR2/1 ligand', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM867283': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours and 20 ug/ml of IDR-1018'}, 'GSM867282': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours'}, 'GSM867281': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Untreated'}, 'GSM867280': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours and 20 ug/ml of IDR-1018'}, 'GSM3182751': {'passages': '28-34', 'type': 'ES-derived cardiac progenitor cells'}, 'GSM3182750': {'passages': '28-34', 'type': 'ES-derived cardiac mesoderm cells'}, 'GSM3182753': {'passages': '28-34', 'type': 'ES-derived cardiac progenitor cells'}, 'GSM3182752': {'passages': '28-34', 'type': 'ES-derived cardiac progenitor cells'}, 'GSM2186787': {'stimulation': 'media alone', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM3182754': {'passages': '28-34', 'type': 'ES-derived early cardiomyocytes'}, 'GSM3182757': {'passages': '28-34', 'type': 'ES-derived late cardiomyocytes'}, 'GSM867288': {'type': 'Peripheral blood mononuclear cells', 'treatment': 'Flagelline at 0.25 ug/ml for 4 hours'}, 'GSM2142239': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH-43-34-'}, 'GSM2632327': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2304732': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2632325': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632324': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632323': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632322': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632321': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632320': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2304730': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2632329': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632328': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2304731': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2152775': {'antibody': 'anti-Acinus antibody (Calbiochem, ab-2 PC552)'}, 'GSM3711670': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '9'}, 'GSM3711671': {'Sex': 'M', 'visit': 'Visit 2a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '9'}, 'GSM2304734': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2304735': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM1954029': {'line': 'MCF7L'}, 'GSM2046138': {'with': 'LeTx (1 μg/ml) for 24 hrs', 'line': 'U937', 'type': 'human promonocytic lymphoma cell line'}, 'GSM2046137': {'with': 'LeTx (1 μg/ml) for 24 hrs', 'line': 'U937', 'type': 'human promonocytic lymphoma cell line'}, 'GSM2046136': {'with': 'none (control)', 'line': 'U937', 'type': 'human promonocytic lymphoma cell line'}, 'GSM2046135': {'with': 'none (control)', 'line': 'U937', 'type': 'human promonocytic lymphoma cell line'}, 'GSM2046134': {'with': 'LeTx (1 μg/ml) for 24 hrs', 'line': 'A549', 'type': 'human lung carcinoma cell line'}, 'GSM2046133': {'with': 'LeTx (1 μg/ml) for 24 hrs', 'line': 'A549', 'type': 'human lung carcinoma cell line'}, 'GSM2304738': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2632551': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1276870': {'score': '9.4', 'sequence': 'ATCACG', 'targeted': 'RBM39', 'number': '1', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2304739': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2047668': {'well': 'E07', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047669': {'well': 'E08', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047664': {'well': 'E03', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047665': {'well': 'E04', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047666': {'well': 'E05', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047667': {'well': 'E06', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047660': {'well': 'D11', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047661': {'well': 'D12', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047662': {'well': 'E01', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047663': {'well': 'E02', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1276871': {'score': '9.7', 'sequence': 'CAGATC', 'targeted': 'RBM39', 'number': '7', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2840196': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1101969': {'tissue': 'colon'}, 'GSM1101968': {'tissue': 'breast'}, 'GSM1832781': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1234175': {'replicate': '1', 'line': '2588', 'antibody': 'Input'}, 'GSM3190691': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.67944'}, 'GSM1101967': {'tissue': 'brain'}, 'GSM1101966': {'tissue': 'bladder'}, 'GSM2100198': {'rin': '9.4', 'Sex': 'Male', 'sspg': '201', 'age': '71', 'bmi': '25.1', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '434', 'method': 'Qiagen:trizol'}, 'GSM2100199': {'rin': '9.8', 'Sex': 'Female', 'sspg': '60', 'age': '41', 'bmi': '27', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '756', 'method': 'Qiagen:trizol'}, 'GSM2451038': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM3190690': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '4.075826'}, 'GSM2451032': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451033': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100192': {'rin': '6.2', 'Sex': 'Male', 'sspg': '81', 'age': '65', 'bmi': '26.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '821', 'method': 'Qiagen:trizol'}, 'GSM2100193': {'rin': '6.7', 'Sex': 'Male', 'sspg': '81', 'age': '65', 'bmi': '26.3', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '821', 'method': 'Qiagen:trizol'}, 'GSM2451036': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2100195': {'rin': '9.4', 'Sex': 'Male', 'sspg': '76', 'age': '60', 'bmi': '28.7', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '707', 'method': 'Qiagen:trizol'}, 'GSM2100196': {'rin': '9.4', 'Sex': 'Male', 'sspg': '76', 'age': '60', 'bmi': '28.7', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '707', 'method': 'Qiagen:trizol'}, 'GSM2100197': {'rin': '9.4', 'Sex': 'Male', 'sspg': '201', 'age': '71', 'bmi': '25.1', 'batch': '1-40', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '100913', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '434', 'method': 'Qiagen:trizol'}, 'GSM2283679': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283678': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM1832786': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM1832787': {'tissue': 'omental', 'treatment': 'POST-NACT'}, 'GSM2283677': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM2283676': {'tissue': 'extracellular vesicles', 'type': 'Simian virus 40-immortalized human osteoblast cells (SV-HFO cells)'}, 'GSM1276874': {'score': '9.7', 'sequence': 'GTGAAA', 'targeted': 'SYNCRIP', 'number': '19', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2649902': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2307424': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307423': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307422': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2704192': {'line': 'THP-1', 'type': 'acute monocytic leukemia cell line', 'treatment': 'DMSO'}, 'GSM2704190': {'line': 'THP-1', 'type': 'acute monocytic leukemia cell line', 'treatment': 'DMSO'}, 'GSM2704191': {'line': 'THP-1', 'type': 'acute monocytic leukemia cell line', 'treatment': 'DMSO'}, 'GSM2307421': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM714635': {'line': 'HEK293', 'digestion': 'complete T1 digestion', 'variant': 'CLIP', 'protein': 'HuR'}, 'GSM714637': {'line': 'HEK293', 'digestion': 'complete T1 digestion', 'variant': 'PAR-CLIP', 'protein': 'HuR'}, 'GSM714636': {'line': 'HEK293', 'digestion': 'complete T1 digestion', 'variant': 'CLIP', 'protein': 'HuR'}, 'GSM1276876': {'score': '9.1', 'sequence': 'TTAGGC', 'targeted': 'SRSF1', 'number': '3', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM714639': {'line': 'HEK293', 'digestion': 'mild MNase digestion', 'variant': 'PAR-CLIP', 'protein': 'HuR'}, 'GSM714638': {'line': 'HEK293', 'digestion': 'complete T1 digestion', 'variant': 'PAR-CLIP', 'protein': 'HuR'}, 'GSM1048947': {'line': 'SK-Mel-28', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM1048946': {'line': 'SK-Mel-28', 'treatment': 'shRNA scramble (pLKO backbone, sigma)', 'point': 'post infection day 3'}, 'GSM2931408': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931409': {'age': 'WEEK13', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931402': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931403': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931400': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931401': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931406': {'age': 'WEEK11', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM2931407': {'age': 'other', 'type': 'Chorionic villus', 'Sex': 'Male'}, 'GSM1048949': {'line': 'SK-Mel-28', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1048948': {'line': 'SK-Mel-28', 'treatment': 'shRNA RAB7 (pLKO backbone, sigma, GATTGACCTCGAAA)', 'point': 'post infection day 3'}, 'GSM1464358': {'status': 'small cell lung cancer'}, 'GSM1464359': {'status': 'small cell lung cancer'}, 'GSM2333033': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333032': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Nulliparous'}, 'GSM2333031': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Nulliparous'}, 'GSM2333030': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Nulliparous'}, 'GSM2333037': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333036': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333035': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM2333034': {'origin': 'breast (normal)', 'subtype': 'Not applicable', 'type': 'CD45+CD3+ T cell', 'parity': 'Not available'}, 'GSM1717519': {'line': 'LNCaP', 'treatment': 'DHT 10nM', 'time': '6 h'}, 'GSM2779059': {'line': 'THP1', 'shRNA': 'non-targeting shRNA replicate 2', 'type': 'AML leukemia cell line'}, 'GSM2779058': {'line': 'THP1', 'shRNA': 'non-targeting shRNA replicate 1', 'type': 'AML leukemia cell line'}, 'GSM2779057': {'antibody': 'Pol II(CST, #14958)', 'line': 'THP1', 'shRNA': 'PAF1 shRNA', 'type': 'AML leukemia cell line'}, 'GSM2779056': {'antibody': 'Pol II(CST, #14958)', 'line': 'THP1', 'shRNA': 'PAF1 shRNA', 'type': 'AML leukemia cell line'}, 'GSM2779055': {'antibody': 'Pol II(CST, #14958)', 'line': 'THP1', 'shRNA': 'non-targeting shRNA', 'type': 'AML leukemia cell line'}, 'GSM2779054': {'antibody': 'Pol II(CST, #14958)', 'line': 'THP1', 'shRNA': 'non-targeting shRNA', 'type': 'AML leukemia cell line'}, 'GSM1574802': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1717518': {'line': 'LNCaP', 'treatment': 'DHT 10nM', 'time': '3 h'}, 'GSM686920': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Santa Cruz', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'AR', 'transgenes': 'none'}, 'GSM686925': {'transfection': 'siCTRL (1027280)', 'vendor': 'Abcam', 'agent': 'vehicle', 'line': 'LNCaP', 'antibody': 'FoxA1', 'transgenes': 'none'}, 'GSM686927': {'transfection': 'siCTRL (1027280)', 'vendor': 'Abcam', 'agent': 'vehicle', 'line': 'LNCaP', 'antibody': 'H3K4me1', 'transgenes': 'none'}, 'GSM686926': {'transfection': 'siCTRL (1027280)', 'vendor': 'Abcam', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'FoxA1', 'transgenes': 'none'}, 'GSM686929': {'transfection': 'siFoxA1 (M-010319)', 'vendor': 'Abcam', 'agent': 'vehicle', 'line': 'LNCaP', 'antibody': 'H3K4me1', 'transgenes': 'none'}, 'GSM686928': {'transfection': 'siCTRL (1027280)', 'vendor': 'Abcam', 'agent': 'DHT', 'line': 'LNCaP', 'antibody': 'H3K4me1', 'transgenes': 'none'}, 'GSM2225657': {'disease': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM1057042': {'with': 'EBV-miRNA-BART7 lentivirus', 'line': 'CNE1', 'passages': '3', 'type': 'human nasopharyngeal carcinoma cells'}, 'GSM1057040': {'with': 'EBV-miRNA-BART1 lentivirus', 'line': 'CNE1', 'passages': '3', 'type': 'human nasopharyngeal carcinoma cells'}, 'GSM1057041': {'with': 'EBV-miRNA-BART3 lentivirus', 'line': 'CNE1', 'passages': '3', 'type': 'human nasopharyngeal carcinoma cells'}, 'GSM2565421': {'construction': 'PLATE-Seq', 'drug': 'XL147'}, 'GSM2226550': {'status': 'ER Positive', 'state': 'breast cancer', 'individual': 'Patient 7', 'type': 'Sphere'}, 'GSM2565423': {'construction': 'PLATE-Seq', 'drug': 'TOTAROL'}, 'GSM2565422': {'construction': 'PLATE-Seq', 'drug': 'PRISTIMERIN'}, 'GSM2565425': {'construction': 'PLATE-Seq', 'drug': 'NNC 05-2090 hydrochloride'}, 'GSM2565424': {'construction': 'PLATE-Seq', 'drug': '3-CPMT'}, 'GSM2565427': {'construction': 'PLATE-Seq', 'drug': 'Perifosine (KRX-0401)'}, 'GSM2565426': {'construction': 'PLATE-Seq', 'drug': 'Ryuvidine'}, 'GSM2565429': {'construction': 'PLATE-Seq', 'drug': 'RO4929097'}, 'GSM2565428': {'construction': 'PLATE-Seq', 'drug': 'Prinomastat hydrochloride'}, 'GSM1574800': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1006914': {'description': 'Paired 36 nt reads', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'RHH004', 'readtype': '2x36', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': 'gen0124N'}, 'GSM1006915': {'description': 'Paired 36 nt reads', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'RHH003', 'readtype': '2x36', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'clone-free', 'biorep': 'gen0117C'}, 'GSM1006912': {'description': 'Paired 36 nt reads', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'RHM054,RHM055', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'clone-free', 'biorep': '089N,090N'}, 'GSM1006913': {'description': 'Paired 36 nt reads', 'localization': 'nucleus', 'datatype': 'RnaPet', 'labexpid': 'RHI005,RHI006', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'clone-free', 'biorep': '045N,046N'}, 'GSM1006910': {'description': 'Paired 36 nt reads', 'localization': 'cell', 'datatype': 'RnaPet', 'labexpid': 'RHS015,RHS016', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'clone-free', 'biorep': '085WC,086WC'}, 'GSM1006911': {'description': 'Paired 36 nt reads', 'localization': 'cytosol', 'datatype': 'RnaPet', 'labexpid': 'RHI003,RHI004', 'readtype': '2x36', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'clone-free', 'biorep': '045C,046C'}, 'GSM2571066': {'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2064612': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064613': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064611': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064616': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064617': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064614': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064615': {'phenotype': 'Lesional psoriatic skin'}, 'GSM2064618': {'phenotype': 'Non-lesional psoriatic skin'}, 'GSM2064619': {'phenotype': 'Lesional psoriatic skin'}, 'GSM922146': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922147': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922148': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM922149': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere', 'stage': 'early blastomere'}, 'GSM2303412': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303413': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303410': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303411': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303416': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303417': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303414': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303415': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2718768': {'with': 'DMSO', 'line': 'AMO-1', 'type': 'multiple myeloma cell line'}, 'GSM2718769': {'with': 'CB-5083', 'line': 'AMO-1', 'type': 'multiple myeloma cell line'}, 'GSM2303418': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303419': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2571060': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2197882': {'line': 'KNS42', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM2197883': {'line': 'KNS42', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2036536': {'gender': 'Male', 'age': '68', 'tissue': 'Non-calcified tricuspid aortic valve (TAV)'}, 'GSM979632': {'description': 'Single 50 nt reads', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'CThi10049', 'readtype': '1x50', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '3', 'biorep': '087C'}, 'GSM2036537': {'gender': 'Male', 'age': '68', 'tissue': 'Non-calcified tricuspid aortic valve (TAV)'}, 'GSM1636069': {'day': 'day 12'}, 'GSM1636068': {'day': 'day 12'}, 'GSM1636067': {'day': 'day 12'}, 'GSM1636066': {'day': 'day 12'}, 'GSM1636065': {'day': 'day 12'}, 'GSM1636064': {'day': 'day 12'}, 'GSM1636063': {'day': 'day 12'}, 'GSM1636062': {'day': 'day 12'}, 'GSM1636061': {'day': 'day 12'}, 'GSM1636060': {'day': 'day 12'}, 'GSM2616686': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616687': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2141380': {'individual': 'EU68', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2616685': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2141386': {'individual': 'EU72', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2197884': {'line': 'KNS42', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM2141384': {'individual': 'EU70', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2616681': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM979636': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10103GAT', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '057WC'}, 'GSM2141388': {'individual': 'EU74', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141389': {'individual': 'EU74', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2616688': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM2616689': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM979634': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10023', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '041WC'}, 'GSM2564978': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2571062': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'HCT116', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2090443': {'stimulus': 'UT', 'donor': '1', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2535732': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1207', 'samplename': '1gr_413CD3_C66', 'seqsite': 'BRI', 'sampleID': 'S13334', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1207', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C66'}, 'GSM1574805': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM2407545': {'line': 'MDA-MB-231', 'treatment': 'CDK12 siRNA-1'}, 'GSM1540592': {'state': 'Healthy controls', 'individual': 'control 02-19', 'type': 'PBMC', 'time': 'control'}, 'GSM2194362': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194363': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194360': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194361': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194366': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194367': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194364': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194365': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194368': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194369': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1704511': {'protocol': 'Interferon treatment', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704510': {'protocol': '40 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704513': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704512': {'protocol': 'Interferon treatment', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704515': {'protocol': '6 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704514': {'protocol': 'Uninfected', 'analysis': 'ribosome profiling', 'strain': 'none', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704517': {'protocol': '12 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704516': {'protocol': '6 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704519': {'protocol': '24 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704518': {'protocol': '12 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1969204': {'source': 'epithelium', 'line': 'HAP1', 'group': 'EXPERIMENT 6', 'description': 'RNase L-KO HAP1 cells, poly-A sequencing', 'variation': 'RNase L -/-'}, 'GSM1334189': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1334188': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM2305816': {'tissue': 'colon'}, 'GSM2339296': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339291': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305811': {'tissue': 'colon'}, 'GSM2443099': {'treatment': 'estrogen', 'xenograft': 'UCD65'}, 'GSM2443098': {'treatment': 'estrogen', 'xenograft': 'UCD65'}, 'GSM2443097': {'treatment': 'estrogen+MPA', 'xenograft': 'UCD4'}, 'GSM2443096': {'treatment': 'estrogen+MPA', 'xenograft': 'UCD4'}, 'GSM2443095': {'treatment': 'estrogen+MPA', 'xenograft': 'UCD4'}, 'GSM1334182': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM2443093': {'treatment': 'estrogen', 'xenograft': 'UCD4'}, 'GSM2305819': {'tissue': 'colon'}, 'GSM1334187': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM1334186': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM2407546': {'line': 'MDA-MB-231', 'treatment': 'scrambled siRNA'}, 'GSM874634': {'vendor': 'Abcam', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-RNAP II ctd'}, 'GSM1383756': {'donor': 'A2775', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM1383757': {'donor': 'A2824', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM1383754': {'donor': 'A2736', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM874635': {'vendor': 'Bethyl laboratories', 'with': 'none (uninfected)', 'infection': '0h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-hPAF1'}, 'GSM1383752': {'donor': 'A2824', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM1383753': {'donor': 'A2735', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM1383750': {'donor': 'A2737', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM1383751': {'donor': 'A2775', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '24hr', 'treatment': 'unstimulated'}, 'GSM1383758': {'donor': 'A2735', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM1383759': {'donor': 'A2736', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'DMSO', 'timepoint': '6hr', 'treatment': 'stimulated with interferon gamma and LPS'}, 'GSM2696552': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696553': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696550': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Prophylactic Mastectomy', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696551': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696556': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696557': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1980238': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980239': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980236': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980237': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980234': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980235': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980232': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980233': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980230': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980231': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1957130': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '35 days'}, 'GSM2309512': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'Tunicamycin', 'dose': '30 uM'}, 'GSM1122676': {'type': 'primary CD34+ cell', 'variation': 'PRMT4-KD'}, 'GSM1969200': {'source': 'epithelium', 'line': 'T47D', 'group': 'EXPERIMENT 5', 'description': 'T47D cells semi-permeabilized with digitonin +2-5A for 9 minutes', 'variation': 'wild type'}, 'GSM874638': {'vendor': 'Sigma', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-Flag'}, 'GSM1122677': {'type': 'primary CD34+ cell', 'variation': 'PRMT4-KD'}, 'GSM874639': {'vendor': 'Sigma', 'with': 'Flag-NS1 virus', 'infection': '12h', 'type': 'crosslinked-DNA', 'line': 'A549', 'antibody': 'anti-Flag'}, 'GSM1122674': {'type': 'primary CD34+ cell', 'variation': 'control'}, 'GSM1122675': {'type': 'primary CD34+ cell', 'variation': 'control'}, 'GSM1122673': {'type': 'primary CD34+ cell', 'variation': 'control'}, 'GSM1969201': {'source': 'epithelium', 'line': 'HAP1', 'group': 'EXPERIMENT 6', 'description': 'HAP1 cells, poly-A sequencing', 'variation': 'wild type'}, 'GSM2718913': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2718912': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2153334': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153335': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153336': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153337': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153330': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153331': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153332': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153333': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1508953': {'type': 'neural stem cell (NSC)', 'stage': 'asynchronization'}, 'GSM1508952': {'type': 'SF8628 cell line', 'stage': 'asynchronization'}, 'GSM1508951': {'type': 'SF7761 cell line', 'stage': 'asynchronization'}, 'GSM1508950': {'type': 'neural stem cell (NSC)', 'stage': 'asynchronization'}, 'GSM2153338': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153339': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2154818': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-WT with EWS shRNA'}, 'GSM2154819': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-P436A'}, 'GSM2718918': {'subtype': 'Luminal B', 'tissue': 'breast tumor'}, 'GSM2154810': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing empty vector'}, 'GSM2154811': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing empty vector'}, 'GSM2154812': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing empty vector'}, 'GSM2154813': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-WT'}, 'GSM2154814': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-WT'}, 'GSM2154815': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-WT'}, 'GSM2154816': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-WT with EWS shRNA'}, 'GSM2154817': {'line': 'RWPE1', 'type': 'human prostatic epithelial cell line', 'variation': 'expressing ERG-WT with EWS shRNA'}, 'GSM1709567': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709566': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2565302': {'construction': 'PLATE-Seq', 'drug': 'CELASTROL'}, 'GSM1709565': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2794416': {'age': '35 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794417': {'age': '39 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794414': {'age': '22 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794415': {'age': '19 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794412': {'age': '17 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794413': {'age': '19 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794410': {'age': '27 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM2794411': {'age': '48 y', 'tissue': 'primary skin fibroblast cells', 'genotype': 'Control'}, 'GSM1709563': {'timepoint': '90 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2794418': {'age': '56 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM1709562': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2575002': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2575003': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2575000': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2575001': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'None', 'point': 'One week before infection'}, 'GSM2575006': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575007': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575004': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575005': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575008': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2575009': {'status': 'Non-asthmatic', 'age': 'Adult', 'type': 'Nasal epithelial', 'treatment': 'HRV-A16 infection', 'point': 'Two days post infection'}, 'GSM2042094': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM2157546': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM2157545': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM2042097': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM2042090': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM2042091': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM2042092': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM2157540': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM2175038': {'line': 'K562'}, 'GSM2042098': {'cohort': 'Sporadic', 'tissue': 'Adenomatous polyp'}, 'GSM2042099': {'cohort': 'Sporadic', 'tissue': 'Colon adenocarcinoma'}, 'GSM2157549': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM2157548': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '>40 y.o.'}, 'GSM1707508': {'tissue': 'Colorectal cancer PDX', 'condition': 'Vehicle'}, 'GSM1580999': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580998': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580997': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580996': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580995': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580994': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1580993': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM987820': {'donor': 'healthy donor 1', 'state': 'healthy', 'tissue': 'blood', 'type': 'circulating tumor cell (CTC)', 'ChIP': 'IgG CTC-Chip'}, 'GSM1580991': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1580990': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM2475288': {'age': '79', 'tissue': 'Macular RPE/choroid/sclera', 'Sex': 'Male'}, 'GSM2172270': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM2476805': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2476806': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2172273': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172274': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2476801': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2172276': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2476803': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2172278': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172279': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2476808': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM2476809': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM1537513': {'line': 'HCT116', 'treatment': 'transfect siRNA without N'}, 'GSM1537512': {'line': 'HCT116', 'treatment': 'blank control'}, 'GSM1537515': {'line': 'HCT116', 'treatment': 'transfect siRNA with double N'}, 'GSM1537514': {'line': 'HCT116', 'treatment': 'transfect siRNA with single N'}, 'GSM1925978': {'line': 'H3 hESC NKX2-10eGFP/alpha-MHC-mCherry', 'type': 'hESC derived cardiomyocytes', 'day': 'Day 14 of Cardiac Differentiation'}, 'GSM1925979': {'line': 'H3 hESC NKX2-11eGFP/alpha-MHC-mCherry', 'type': 'Unknown', 'day': 'Day 14 of Cardiac Differentiation'}, 'GSM1925974': {'line': 'H3 hESC NKX2-6eGFP/alpha-MHC-mCherry', 'type': 'hESC derived mesoderm progenitor', 'day': 'Day 3 of Cardiac Differentiation'}, 'GSM1925975': {'line': 'H3 hESC NKX2-7eGFP/alpha-MHC-mCherry', 'type': 'hESC derived endoderm progenitr', 'day': 'Day 3 of Cardiac Differentiation'}, 'GSM1925976': {'line': 'H3 hESC NKX2-8eGFP/alpha-MHC-mCherry', 'type': 'hESC derived cardiac progenitor', 'day': 'Day 7 of Cardiac Differentiation'}, 'GSM1925977': {'line': 'H3 hESC NKX2-9eGFP/alpha-MHC-mCherry', 'type': 'Unknown', 'day': 'Day 7 of Cardiac Differentiation'}, 'GSM1925973': {'line': 'H3 hESC NKX2-5eGFP/alpha-MHC-mCherry', 'type': 'Human embryonic stem cells', 'day': 'Day 0 of Cardiac Differentiation'}, 'GSM1369068': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siEIF3L'}, 'GSM1369069': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siGLI1'}, 'GSM3711269': {'mediancvcoverage': '0.58638', 'percentaligned': '0.944057397', 'visit': 'Visit 1a', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '8'}, 'GSM3711268': {'mediancvcoverage': '0.77806', 'percentaligned': '0.94757034', 'visit': 'Visit 1a', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '8'}, 'GSM3711267': {'mediancvcoverage': '0.873863', 'percentaligned': '0.83601798', 'visit': 'Visit 0', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '8'}, 'GSM3711266': {'mediancvcoverage': '0.759511', 'percentaligned': '0.895684692', 'visit': 'Visit 0', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '8'}, 'GSM3711265': {'mediancvcoverage': '0.708886', 'percentaligned': '0.951871871', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '14'}, 'GSM3711264': {'mediancvcoverage': '0.753957', 'percentaligned': '0.889480652', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '14'}, 'GSM3711263': {'mediancvcoverage': '0.736487', 'percentaligned': '0.949569285', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '12'}, 'GSM3711262': {'mediancvcoverage': '0.849289', 'percentaligned': '0.938025148', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '12'}, 'GSM3711261': {'mediancvcoverage': '0.777687', 'percentaligned': '0.951982373', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '10'}, 'GSM3711260': {'mediancvcoverage': '0.634767', 'percentaligned': '0.947575042', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'C95GDANXX', 'years': '10'}, 'GSM1369183': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Pluripotency'}, 'GSM2433728': {'sample_label': '1637', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433729': {'sample_label': '1927', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM3711587': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'C8B30ANXX', 'years': '14'}, 'GSM2433722': {'sample_label': '2065', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433723': {'sample_label': '656', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433720': {'sample_label': '702', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433721': {'sample_label': '2040', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433726': {'sample_label': '1252', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433727': {'sample_label': '1575', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433724': {'sample_label': '1178', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2433725': {'sample_label': '1211', 'tissue': 'Peripheral blood Chronic Lymphocytic Leukemia (CLL) cells', 'conditions': 'n/a'}, 'GSM2039423': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2039422': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2039421': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2039420': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing human KRAS wild type'}, 'GSM2039427': {'individual': 'Patient 2 (III-2)', 'type': 'cultured primary skin fibroblast', 'variation': 'INTS8 (c.2917_2925del / c.893A>G)'}, 'GSM2039426': {'individual': 'Patient 1 (III-4)', 'type': 'cultured primary skin fibroblast', 'variation': 'INTS8 (c.2917_2925del / c.893A>G)'}, 'GSM2039425': {'individual': 'aged matched, healthy Control 2', 'type': 'cultured primary skin fibroblast', 'variation': 'control'}, 'GSM2039424': {'individual': 'aged matched, healthy Control 1', 'type': 'cultured primary skin fibroblast', 'variation': 'control'}, 'GSM2026917': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q02086'}, 'GSM2026916': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'P08047'}, 'GSM2026915': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9BWW7'}, 'GSM2026914': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'O75626'}, 'GSM2026913': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q8N2R0'}, 'GSM2026912': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'Q9NPC7'}, 'GSM2026911': {'line': 'HEK293', 'type': 'stranded total RNA', 'id': 'Q9NPC7'}, 'GSM2026910': {'line': 'HEK293', 'type': 'mRNA V2', 'id': 'O75840'}, 'GSM1369184': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Pluripotency'}, 'GSM865298': {'tissue': 'islets of Langerhans'}, 'GSM1955404': {'line': 'A549', 'type': 'Human lung adenocarcinoma cell line'}, 'GSM2092599': {'line': 'Normal Human Epidermal Keratinocytes', 'time': 'treatment lasted 24 hours', 'treatment': 'PBS', 'passage': '6'}, 'GSM2917183': {'gender': 'Male', 'state': 'Diabetic', 'type': 'Epicardial Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917182': {'gender': 'Male', 'state': 'Diabetic', 'type': 'Epicardial Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917181': {'gender': 'Female', 'state': 'Diabetic', 'type': 'Epicardial Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917180': {'gender': 'Female', 'state': 'Diabetic', 'type': 'Epicardial Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM1289020': {'line': 'HepG2', 'type': 'Liver', 'infection': 'Plasmodium berghei parasite', 'point': '22 hrs of post sporozoite infection of HepG2 cells'}, 'GSM2061149': {'line': 'WM1976', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061148': {'line': 'WM1976', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM1294153': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'Jun-D knockdown'}, 'GSM1294152': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'Jun-D knockdown'}, 'GSM1294151': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'Jun-D knockdown'}, 'GSM1294150': {'line': 'PC3', 'tissue': 'bone metastasis of grade IV prostate cancer', 'type': 'prostate cancer cells', 'variation': 'c-Jun knockdown'}, 'GSM2061141': {'line': 'A375', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061140': {'line': 'A375', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061143': {'line': 'A375', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061142': {'line': 'A375', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061145': {'line': 'A375', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061144': {'line': 'A375', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061147': {'line': 'WM1976', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061146': {'line': 'WM1976', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM1957203': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957202': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957201': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957200': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957207': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957206': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957205': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957204': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957209': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957208': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1624235': {'lineage': 'Trophectoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM2526842': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1624237': {'lineage': 'Trophectoderm', 'number': 'Embryo 9', 'stage': 'Blastocyst'}, 'GSM1341681': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1977399': {'tissue': 'neonatal cord blood', 'type': 'CMP++'}, 'GSM1624236': {'lineage': 'Trophectoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM1314595': {'genotype': 'SOD1 A4V'}, 'GSM1314596': {'genotype': 'SOD1 A4V'}, 'GSM1314597': {'genotype': 'SOD1 WT'}, 'GSM1314598': {'genotype': 'SOD1 WT'}, 'GSM1314599': {'genotype': 'SOD1 WT'}, 'GSM1624230': {'lineage': 'Trophectoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM1624233': {'lineage': 'Trophectoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM1866956': {'status': 'oral moderate dysplasia', 'tissue': 'oral mucosa', 'type': 'normal samples collected from the negative surgical margins', 'id': '037926'}, 'GSM1866957': {'status': 'oral moderate dysplasia', 'tissue': 'oral mucosa', 'type': 'normal samples collected from the negative surgical margins', 'id': '038038'}, 'GSM1866958': {'status': 'oral moderate dysplasia', 'tissue': 'oral mucosa', 'type': 'normal samples collected from the negative surgical margins', 'id': '039636'}, 'GSM1866959': {'status': 'oral moderate dysplasia', 'tissue': 'oral mucosa', 'type': 'tissue samples obtained from patients undergoing surgical treatment for oral moderated dysplasia', 'id': '037926'}, 'GSM1624232': {'lineage': 'Primitive Endoderm', 'number': 'Embryo 8', 'stage': 'Blastocyst'}, 'GSM1341686': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM2046892': {'sirna': 'scramble', 'line': 'MCF-7', 'type': 'breast cancer cell line'}, 'GSM5100649': {'sspg': '91', 'age': '51', 'bmi': '23.6', 'batch': '1-50', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/24/17', 'type': 'iPSC'}, 'GSM5100648': {'sspg': '91', 'age': '51', 'bmi': '23.6', 'batch': '1-50', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/24/17', 'type': 'iPSC'}, 'GSM5100643': {'sspg': '60', 'age': '64', 'bmi': '25.4', 'batch': '1-110', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'yes', 'lot': '1264014A', 'date': '09/16/17', 'type': 'iPSC'}, 'GSM5100642': {'sspg': '60', 'age': '64', 'bmi': '25.4', 'batch': '1-110', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'no', 'lot': '1264014A', 'date': '09/16/17', 'type': 'iPSC'}, 'GSM5100641': {'sspg': '272', 'age': '68', 'bmi': '34.3', 'batch': '1-90', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/16/17', 'type': 'iPSC'}, 'GSM5100640': {'sspg': '272', 'age': '68', 'bmi': '34.3', 'batch': '1-90', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/16/17', 'type': 'iPSC'}, 'GSM5100647': {'sspg': '82', 'age': '62', 'bmi': '21.9', 'batch': '1-70', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/24/17', 'type': 'iPSC'}, 'GSM5100646': {'sspg': '82', 'age': '62', 'bmi': '21.9', 'batch': '1-70', 'Sex': 'Female', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/24/17', 'type': 'iPSC'}, 'GSM5100645': {'sspg': '69', 'age': '41', 'bmi': '24.7', 'batch': '1-60', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'yes', 'lot': '1264008A', 'date': '09/24/17', 'type': 'iPSC'}, 'GSM5100644': {'sspg': '69', 'age': '41', 'bmi': '24.7', 'batch': '1-60', 'Sex': 'Male', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'treatment': 'no', 'lot': '1264008A', 'date': '09/24/17', 'type': 'iPSC'}, 'GSM1957330': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1620411': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM3025239': {'line': 'MCF7', 'treatment': 'PPT+PBDE100', 'batch': 'batch1'}, 'GSM2424972': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620413': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2543887': {'library_id': 'lib8029', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1620412': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2543886': {'library_id': 'lib8028', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2674884': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '1', 'laboratory': 'UKSCB', 'line': 'Shef3', 'sex': 'Female'}, 'GSM3594239': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM2098631': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2674885': {'age': '8-12', 'site': 'in-between shoulder blades', 'Sex': 'Female', 'volume': '210', 'strain': 'NOD.CB17-Prkdcscid/ J', 'replicate': '2', 'laboratory': 'UKSCB', 'line': 'Shef3', 'sex': 'Female'}, 'GSM2098630': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM2743346': {'type': 'Elf1'}, 'GSM2743347': {'antibody': 'H3K27me3 (Cat #39157, Active Motif)', 'type': 'Elf1'}, 'GSM2743345': {'type': 'Elf1'}, 'GSM2543883': {'library_id': 'lib8021', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2743348': {'antibody': 'H3K27me3 (Cat #39157, Active Motif)', 'type': 'Elf1'}, 'GSM2424974': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2543882': {'library_id': 'lib8020', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1234010': {'replicate': '1', 'line': '18526', 'antibody': 'CTCF'}, 'GSM1234011': {'replicate': '2', 'line': '18526', 'antibody': 'CTCF'}, 'GSM1907077': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM1234013': {'replicate': '2', 'line': '18526', 'antibody': 'H3K27Ac'}, 'GSM1234014': {'replicate': '1', 'line': '18526', 'antibody': 'H3K27me3'}, 'GSM2098635': {'strain': 'BT549 cells', 'tissue': 'breast'}, 'GSM1234016': {'replicate': '1', 'line': '18526', 'antibody': 'H3K36me3'}, 'GSM1234017': {'replicate': '2', 'line': '18526', 'antibody': 'H3K36me3'}, 'GSM1234018': {'replicate': '1', 'line': '18526', 'antibody': 'H3K4me1'}, 'GSM1234019': {'replicate': '2', 'line': '18526', 'antibody': 'H3K4me1'}, 'GSM3594238': {'cluster': '1', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM2543880': {'library_id': 'lib8016', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1907079': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM1907078': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM2302907': {'tetracycline': 'TET(+)', 'id': '5', 'treatment': 'control'}, 'GSM3025234': {'line': 'MCF7', 'treatment': 'PPT+MPP', 'batch': 'batch1'}, 'GSM2302906': {'tetracycline': 'TET(-)', 'id': '5', 'treatment': 'IL17+TNF'}, 'GSM3025235': {'line': 'MCF7', 'treatment': 'PPT+MPP', 'batch': 'batch1'}, 'GSM2112726': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '24 Hours'}, 'GSM2251324': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2302904': {'tetracycline': 'TET(-)', 'id': '5', 'treatment': 'IL17'}, 'GSM2251325': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2302903': {'tetracycline': 'TET(-)', 'id': '5', 'treatment': 'control'}, 'GSM2302902': {'tetracycline': 'TET(+)', 'id': '4', 'treatment': 'IL17+TNF'}, 'GSM2302901': {'tetracycline': 'TET(+)', 'id': '4', 'treatment': 'TNF'}, 'GSM2302900': {'tetracycline': 'TET(+)', 'id': '4', 'treatment': 'IL17'}, 'GSM2535770': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1255', 'samplename': '1gr_413tetr_C36', 'seqsite': 'BRI', 'sampleID': 'S13423', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1255', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C36'}, 'GSM1980480': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980483': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2535773': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1259', 'samplename': '1gr_413tetr_C70', 'seqsite': 'BRI', 'sampleID': 'S13427', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1259', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C70'}, 'GSM2251328': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251329': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM1980487': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1863678': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863679': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863676': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863677': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863674': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863675': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863672': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863673': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863670': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1863671': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM2632371': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2843831': {'line': 'MDA-MB-231 cells', 'agent': 'DMSO'}, 'GSM2843830': {'line': 'MDA-MB-231 cells', 'agent': 'DMSO'}, 'GSM2689013': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689012': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689011': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689010': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689017': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689016': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689015': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689014': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2944169': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP, HOTAIR, and EWS-FLI1 overexpression', 'background': 'hTERT-hMSC'}, 'GSM2944168': {'type': 'hTERT-immortalized mesenchymal stem cell', 'variation': 'GFP, HOTAIR, and EWS-FLI1 overexpression', 'background': 'hTERT-hMSC'}, 'GSM2689019': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2689018': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM1556829': {'with': 'nonspecific shRNA virus', 'line': 'BGC823', 'type': 'human gastric cancer cells', 'passage': '16-19'}, 'GSM1023081': {'type': 'iPS', 'number': '6'}, 'GSM1023080': {'type': 'iPS', 'number': '6'}, 'GSM1023083': {'type': 'fibroblast', 'number': '3'}, 'GSM1023082': {'type': 'iPS', 'number': '9'}, 'GSM1023085': {'type': 'iPS', 'number': '4'}, 'GSM1023084': {'type': 'iPS', 'number': '7'}, 'GSM1023087': {'type': 'iPS', 'number': '42'}, 'GSM1023086': {'type': 'iPS', 'number': '5'}, 'GSM1595839': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'treated with DMSO'}, 'GSM2455924': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1937014': {'type': 'NAMEC8'}, 'GSM1937015': {'type': 'NAMEC8'}, 'GSM1937016': {'type': 'N8-CTx'}, 'GSM1937010': {'type': 'NAMEC8'}, 'GSM1937011': {'type': 'NAMEC8'}, 'GSM1937012': {'type': 'NAMEC8'}, 'GSM1937013': {'type': 'NAMEC8'}, 'GSM2391938': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391939': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391932': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391933': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391930': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391931': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391936': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391937': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391934': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391935': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1830135': {'type': 'Human umbilical vein vascular endothelial cells'}, 'GSM1830134': {'type': 'Human umbilical vein vascular endothelial cells'}, 'GSM1830137': {'type': 'Human umbilical vein vascular endothelial cells'}, 'GSM1830136': {'type': 'Human umbilical vein vascular endothelial cells'}, 'GSM2752362': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752363': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752360': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752361': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752366': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752367': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752364': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752365': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752368': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2752369': {'tnm': '/', 'subtype': '/', 'bloom': '/', 'receptors': '/', 'nature': 'normal'}, 'GSM2535738': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1213', 'samplename': '1gr_413tetr_C21', 'seqsite': 'BRI', 'sampleID': 'S13381', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1213', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C21'}, 'GSM1901043': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'antibody': 'H3K36me2 (ab9049, abcam)', 'treatment': 'vehicle'}, 'GSM1901040': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'antibody': 'H3K36me2 (ab9049, abcam)', 'treatment': 'vehicle'}, 'GSM1901041': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'antibody': 'H3K36me2 (ab9049, abcam)', 'treatment': 'doxycycline'}, 'GSM1901046': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'antibody': 'H3K36me2 (ab9049, abcam)', 'treatment': 'doxycycline'}, 'GSM1901047': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'antibody': 'none'}, 'GSM1901044': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'antibody': 'H3K36me2 (ab9049, abcam)', 'treatment': 'vehicle'}, 'GSM1901045': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'antibody': 'H3K36me2 (ab9049, abcam)', 'treatment': 'doxycycline'}, 'GSM2816209': {'line': 'H9'}, 'GSM2043598': {'tissue': 'placental villous tissue', 'pool': 'Mix_1', 'sex': 'Female'}, 'GSM2043599': {'tissue': 'placental villous tissue', 'pool': 'Mix_2', 'sex': 'Female'}, 'GSM2387331': {'line': 'HUES8 hESCs', 'genotype': 'Inactivating mutations in TET1, TET2 and TET3'}, 'GSM2387330': {'line': 'HUES8 hESCs', 'genotype': 'Inactivating mutations in TET1, TET2 and TET3'}, 'GSM1924559': {'line': 'LS8817', 'treatment': 'Serum-starved'}, 'GSM2510263': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2387336': {'genotype': 'HCT116-WT'}, 'GSM2387335': {'genotype': 'HCT116-WT'}, 'GSM2510260': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM1556297': {'line': 'CRL-4003', 'type': 'endometrial stromal fibroblast (ATCC: CRL-4003) grown in culture'}, 'GSM1652207': {'treatment': 'Chemical treatment', 'compound': '5,6-Dichloro-1-β-D-ribofuranosylbenzimidazole'}, 'GSM1652206': {'treatment': 'RNAi knock down', 'compound': 'siRNAs targeting the hnRNP A1 and A2 mRNA'}, 'GSM1652208': {'treatment': 'RNAi knock down', 'compound': 'siRNAs targeting no expressed gene in the human genome'}, 'GSM2081125': {'gender': 'female', 'tissue': 'Breast Carcinoma', 'type': 'triple-negative breast cancer'}, 'GSM1617389': {'patient': '9', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'none (input)'}, 'GSM1617388': {'patient': '8', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'none (input)'}, 'GSM1617387': {'patient': '7', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'none (input)'}, 'GSM1617386': {'patient': '6', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'none (input)'}, 'GSM1617385': {'patient': '4', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'none (input)'}, 'GSM1617384': {'patient': '3', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'none (input)'}, 'GSM1617383': {'patient': '1', 'tissue': 'Primary colorectal carcinoma', 'antibody': 'none (input)'}, 'GSM1617382': {'patient': '10', 'tissue': 'Primary colonic adenoma', 'antibody': 'none (input)'}, 'GSM1617381': {'patient': '9', 'tissue': 'Primary colonic adenoma', 'antibody': 'none (input)'}, 'GSM1617380': {'patient': '8', 'tissue': 'Primary colonic adenoma', 'antibody': 'none (input)'}, 'GSM2535734': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1209', 'samplename': '1r_413CD3_C88', 'seqsite': 'BRI', 'sampleID': 'S13336', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, dead', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1209', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C88'}, 'GSM2535735': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1210', 'samplename': '1gr_413CD3_C94', 'seqsite': 'BRI', 'sampleID': 'S13337', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1210', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C94'}, 'GSM1846257': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM1846256': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM1846259': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM1846258': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2883026': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject6', 'drug': 'Placebo'}, 'GSM2511568': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2436724': {'time': '3H', 'tissue': 'Cord blood stem cells', 'name': 'MA9 cells', 'treatment': 'Control'}, 'GSM2667013': {'type': 'Macrophage'}, 'GSM2535736': {'projectid': 'P48', 'lane': '3,7', 'samplelabel': 'lib1211', 'samplename': '1gr_413tetr_C09', 'seqsite': 'BRI', 'sampleID': 'S13379', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1211', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C09'}, 'GSM2711789': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2711788': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2101780': {'1': 'shRNA #1 against RBPJ', 'model': '4121', '2': '5uM DAPT'}, 'GSM2101781': {'1': 'shRNA #2 against RBPJ', 'model': '4121', '2': '5uM DAPT'}, 'GSM1940723': {'group': 'Healthy non allergic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1521549': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2711785': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2711787': {'line': 'RKO', 'type': 'colon epithelial carcinoma'}, 'GSM2463759': {'type': 'ES-cell derived human cardiac organoids'}, 'GSM2372287': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372286': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372285': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372284': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372283': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372282': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372281': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2372280': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM2667012': {'type': 'Macrophage'}, 'GSM2816207': {'line': 'H9'}, 'GSM2644905': {'passages': '74', 'sirna': 'TUNAR siRNAs', 'treatment': 'DMSO'}, 'GSM2372288': {'tissue': 'Blood', 'method': 'MACS', 'condition': 'Healthy Volunteer'}, 'GSM3580304': {'phase': 'Healthy', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580305': {'phase': 'Healthy', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580306': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580307': {'phase': 'Healthy', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM2746679': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '2'}, 'GSM2559759': {'line': 'PANC-1', 'treatment': 'chaetocin (30nM)', 'passage': '<p30'}, 'GSM3580302': {'phase': 'Healthy', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM3580303': {'phase': 'Healthy', 'gender': 'Female', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'Healthy'}, 'GSM2746675': {'gender': 'Male', 'pathology': 'Control', 'batch': '2'}, 'GSM2746674': {'gender': 'Male', 'pathology': 'Control', 'batch': '2'}, 'GSM2559756': {'line': 'PANC-1', 'treatment': 'combination of chaetocin(30nM)+MLN3237(90nM)', 'passage': '<p30'}, 'GSM2746676': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '2'}, 'GSM2559750': {'differentiation': 'Highly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P21', 'stage': '0(BCLC)'}, 'GSM2559751': {'differentiation': 'Highly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P21', 'stage': '0(BCLC)'}, 'GSM2746673': {'gender': 'Male', 'pathology': 'Control', 'batch': '2'}, 'GSM2559753': {'differentiation': 'Highly', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'liver tumor', 'id': 'P24', 'stage': 'B(BCLC)'}, 'GSM2644909': {'passages': '74', 'sirna': 'Scramble siRNA', 'treatment': '1-AKP'}, 'GSM2170609': {'stage': 'Hepatic endoderm 1'}, 'GSM2124739': {'rin': '2.9', 'Sex': 'female'}, 'GSM2816200': {'line': 'H9'}, 'GSM2170606': {'stage': 'Hepatic endoderm 1'}, 'GSM2170605': {'stage': 'Hepatic endoderm 1'}, 'GSM2170604': {'stage': 'Hepatic endoderm 1'}, 'GSM2170603': {'stage': 'Hepatic endoderm 1'}, 'GSM2170602': {'stage': 'Hepatic endoderm 1'}, 'GSM2170601': {'stage': 'Hepatic endoderm 1'}, 'GSM2170600': {'stage': 'Hepatic endoderm 1'}, 'GSM1832736': {'status': 'Transduction with lentiviral particles for expression of the AR-WT', 'line': 'LNCaP', 'type': 'Prostate cancer cell line', 'fluorescence': 'EGFP'}, 'GSM1521543': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1006497': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-placebo', 'subject': 'A5'}, 'GSM1006496': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-placebo', 'subject': 'A4'}, 'GSM2833258': {'line': 'A549', 'isolate': 'CCL-185', 'agent': 'none', 'provider': 'ATCC'}, 'GSM2833259': {'line': 'A549', 'isolate': 'CCL-185', 'agent': '30 nM A2M', 'provider': 'ATCC'}, 'GSM1006493': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-placebo', 'subject': 'A1'}, 'GSM2535731': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1206', 'samplename': '1gr_413CD3_C60', 'seqsite': 'BRI', 'sampleID': 'S13333', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1206', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C60'}, 'GSM2833252': {'line': 'A549', 'isolate': 'CCL-185', 'agent': '30 nM A2M', 'provider': 'ATCC'}, 'GSM2833253': {'line': 'A549', 'isolate': 'CCL-185', 'agent': 'none', 'provider': 'ATCC'}, 'GSM2833251': {'line': 'A549', 'isolate': 'CCL-185', 'agent': 'none', 'provider': 'ATCC'}, 'GSM2833256': {'line': 'A549', 'isolate': 'CCL-185', 'agent': '30 nM A2M', 'provider': 'ATCC'}, 'GSM2833257': {'line': 'A549', 'isolate': 'CCL-185', 'agent': '30 nM A2M', 'provider': 'ATCC'}, 'GSM2833254': {'line': 'A549', 'isolate': 'CCL-185', 'agent': '30 nM A2M', 'provider': 'ATCC'}, 'GSM2833255': {'line': 'A549', 'isolate': 'CCL-185', 'agent': 'none', 'provider': 'ATCC'}, 'GSM2051450': {'line': 'MDA MB 231', 'type': 'Mesenchymal cancer cells', 'transfection': 'd4 FBXO32'}, 'GSM1901948': {'line': 'U2OS', 'antibody': 'anti-Pol II antibody is from (QED Bioscience)'}, 'GSM2051451': {'line': 'MDA MB 231', 'type': 'Mesenchymal cancer cells', 'transfection': 'd4 FBXO32'}, 'GSM1921071': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM human SRA1 siRNA4 (Dharmacon, cat#J-027192-12-0002) for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1509511': {'etiology': 'Smoker', 'type': 'human bronchiolar epithelial cells'}, 'GSM1921073': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': 'Hela cells were transfected with an empty GFP vector in 10 cm dishes for 24 hours using Lipofectamin 2000 followed by sorting', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1509513': {'etiology': 'Non-smoker', 'type': 'human bronchiolar epithelial cells'}, 'GSM1921075': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': 'Hela cells were transfected with a GFP-SRAP in 10 cm dishes for 24 hours using Lipofectamin 2000 followed by sorting', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1921074': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': 'Hela cells were transfected with a GFP-SRAP in 10 cm dishes for 24 hours using Lipofectamin 2000 followed by sorting', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM2204201': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2204200': {'status': 'ex vivo; unstimulated', 'type': 'LN_EM', 'phenotype': 'EM(CD3+CD20-CD14/CD11c-CD8-CD27-)'}, 'GSM2204203': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2204202': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204205': {'status': 'ex vivo; unstimulated', 'type': 'LN_N', 'phenotype': 'Naive(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO-)'}, 'GSM2204204': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204207': {'status': 'ex vivo; unstimulated', 'type': 'LN_CMPD1lo57hi', 'phenotype': 'CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1-CD57+'}, 'GSM2204206': {'status': 'ex vivo; unstimulated', 'type': 'LN_CMPD1lo57lo', 'phenotype': 'CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1-CD57-'}, 'GSM2616538': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616539': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM1901942': {'line': 'U2OS', 'antibody': 'anti-EP400 antibody is from Abcam, ab70301'}, 'GSM2616530': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616531': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616532': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616533': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616534': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM2616535': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2616536': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616537': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1436', 'subtype': 'Tregs'}, 'GSM2535733': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1208', 'samplename': '1gr_413CD3_C72', 'seqsite': 'BRI', 'sampleID': 'S13335', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030041', 'libraryid': 'lib1208', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C72'}, 'GSM1901944': {'line': 'U2OS', 'antibody': 'anti-EP400 antibody is from Abcam, ab70301'}, 'GSM2141489': {'individual': 'AF169', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141488': {'individual': 'AF167', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141485': {'individual': 'AF165', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141484': {'individual': 'AF165', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2553017': {'marker': 'singlet DAPI- CD45+ CD3- CD19-/lo', 'age': '63 y.o.', 'stage': 'Human lung stage IA adenocarcinoma lesion and adjacent non-involved lung', 'organ': 'lung', 'Sex': 'female'}, 'GSM2141486': {'individual': 'AF167', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141481': {'individual': 'AF163', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141480': {'individual': 'AF163', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141483': {'individual': 'AF165', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141482': {'individual': 'AF163', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2058019': {'line': 'V410', 'tissue': 'colorectal cancer cell line'}, 'GSM2285390': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'IM9', 'treatment': 'AZD5153'}, 'GSM2285391': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'IM9', 'treatment': 'AZD5153'}, 'GSM2285392': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'MOLP8', 'treatment': 'AZD5153'}, 'GSM2285393': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'MOLP8', 'treatment': 'AZD5153'}, 'GSM2285394': {'replicate': '1', 'time': '24 h', 'type': 'mm', 'name': 'OPM2', 'treatment': 'AZD5153'}, 'GSM2285395': {'replicate': '2', 'time': '24 h', 'type': 'mm', 'name': 'OPM2', 'treatment': 'AZD5153'}, 'GSM2285396': {'replicate': '1', 'time': '24 h', 'type': 'aml', 'name': 'OCIAML2', 'treatment': 'AZD5153'}, 'GSM2285397': {'replicate': '2', 'time': '24 h', 'type': 'aml', 'name': 'OCIAML2', 'treatment': 'AZD5153'}, 'GSM2285398': {'replicate': '1', 'time': '24 h', 'type': 'aml', 'name': 'KG1A', 'treatment': 'AZD5153'}, 'GSM2285399': {'replicate': '2', 'time': '24 h', 'type': 'aml', 'name': 'KG1A', 'treatment': 'AZD5153'}, 'GSM3586797': {'origin': 'GCB', 'pfstt': '884', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '884', 'cycles': '8', 'oscs': '0'}, 'GSM3586796': {'origin': 'GCB', 'pfstt': '764', 'pfscs': '0', 'region': 'Other', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '764', 'cycles': '6', 'oscs': '0'}, 'GSM3586791': {'origin': 'GCB', 'pfstt': '137', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '844', 'cycles': '6', 'oscs': '0'}, 'GSM3586790': {'origin': 'GCB', 'pfstt': '696', 'pfscs': '1', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '696', 'cycles': '6', 'oscs': '1'}, 'GSM3586793': {'origin': 'ABC', 'pfstt': '716', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '716', 'cycles': '6', 'oscs': '0'}, 'GSM3586792': {'origin': 'GCB', 'pfstt': '684', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '686', 'cycles': '6', 'oscs': '0'}, 'GSM922261': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922260': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922263': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922262': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922265': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM922264': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2316579': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316578': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316577': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316576': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316575': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316574': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316573': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316572': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316571': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316570': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1914475': {'group': 'HD_NSC', 'region': 'HD', 'type': 'NSC'}, 'GSM1914474': {'group': 'HD_NSC', 'region': 'HD', 'type': 'NSC'}, 'GSM1914477': {'group': 'HD_NSC', 'region': 'HD', 'type': 'NSC'}, 'GSM1914476': {'group': 'HD_NSC', 'region': 'HD', 'type': 'NSC'}, 'GSM1914471': {'group': 'C116_iPSC', 'region': 'C116', 'type': 'iPSC'}, 'GSM1914470': {'group': 'C116_iPSC', 'region': 'C116', 'type': 'iPSC'}, 'GSM1914473': {'group': 'HD_NSC', 'region': 'HD', 'type': 'NSC'}, 'GSM1914472': {'group': 'C116_iPSC', 'region': 'C116', 'type': 'iPSC'}, 'GSM2130401': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM1716665': {'type': 'Neutrophils', 'method': 'Negative selection (beads)', 'treatment': 'GM-CSF (5ng/mL) 1h'}, 'GSM2130403': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM2130402': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM2130405': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM2130404': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM2130407': {'used': 'ENCOR', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '60 days in vitro'}, 'GSM2130406': {'used': 'Spheroid', 'type': 'embryonic stem cells', 'genotype': 'wildtype', 'time': '20 days in vitro'}, 'GSM1479549': {'index': '22', 'diagnosis': '--', 'cellcount': '871287', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '55', 'collectiondate': 'August 23 2012', 'samplename': '55_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'MS pretreatment'}, 'GSM1479548': {'index': '14', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '55', 'collectiondate': 'August 23 2012', 'samplename': '55_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'MS pretreatment'}, 'GSM1479547': {'index': '20', 'diagnosis': '--', 'cellcount': '13275000', 'gender': 'F', 'age': '35', 'smoker': 'N', 'dose': '1 month, IV', 'race': 'White', 'donorid': '55', 'collectiondate': 'August 23 2012', 'samplename': '55_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'MS pretreatment'}, 'GSM1479546': {'index': '14', 'diagnosis': '2.5', 'cellcount': '--', 'gender': 'F', 'age': '21', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '41', 'collectiondate': 'June 20 2012', 'samplename': '41_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479545': {'index': '13', 'diagnosis': '2.5', 'cellcount': '223256', 'gender': 'F', 'age': '21', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '41', 'collectiondate': 'June 20 2012', 'samplename': '41_NK', 'celltype': 'NK', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479544': {'index': '9', 'diagnosis': '2.5', 'cellcount': '1719279', 'gender': 'F', 'age': '21', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '41', 'collectiondate': 'June 20 2012', 'samplename': '41_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479543': {'index': '7', 'diagnosis': '2.5', 'cellcount': '2000000', 'gender': 'F', 'age': '21', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '41', 'collectiondate': 'June 20 2012', 'samplename': '41_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479542': {'index': '3', 'diagnosis': '2.5', 'cellcount': '484043', 'gender': 'F', 'age': '21', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '41', 'collectiondate': 'June 20 2012', 'samplename': '41_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479541': {'index': '21', 'diagnosis': '2.5', 'cellcount': '2000000', 'gender': 'F', 'age': '21', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '41', 'collectiondate': 'June 20 2012', 'samplename': '41_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479540': {'index': '6', 'diagnosis': '2.5', 'cellcount': '12825000', 'gender': 'F', 'age': '21', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '41', 'collectiondate': 'June 20 2012', 'samplename': '41_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1365990': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Combo', 'timepoint': '24hr'}, 'GSM1365991': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'NMP', 'timepoint': '24hr'}, 'GSM2667019': {'type': 'Macrophage'}, 'GSM2304836': {'used': 'CAGT, CGAT', 'type': 'T lymphocyte', 'treatment': 'input (DMSO)', 'analysis': '29'}, 'GSM2141221': {'transduced': 'shRNA targeting KDM2B', 'type': 'glioblastoma; astrocytoma; classified as grade IV'}, 'GSM2141220': {'transduced': 'shRNA targeting KDM2B', 'type': 'glioblastoma; astrocytoma; classified as grade IV'}, 'GSM2391867': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM1595856': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with vector expressing IkB-alpha super-repressor & treated with DMSO'}, 'GSM2532907': {'condition': 'Term Delivery'}, 'GSM1473798': {'origin': 'Skin', 'with': '5-aza', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM1821695': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': 'control'}, 'GSM2532904': {'condition': 'Term Delivery'}, 'GSM2150381': {'antibody': 'H3K4me1', 'treatment': 'SB939'}, 'GSM1473790': {'origin': 'Skin', 'with': 'Adriamycin', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM1473792': {'origin': 'Skin', 'with': 'Adriamycin', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM2532905': {'condition': 'Term Delivery'}, 'GSM1473794': {'origin': 'Skin', 'with': 'Adriamycin', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM1473796': {'origin': 'Skin', 'with': '5-aza', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM2287536': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287537': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287534': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287535': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287532': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287533': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610978': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2287531': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610976': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610977': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610974': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610975': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610972': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610973': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2610970': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1865635': {'status': 'POLA1 deficient', 'model': 'XLPDR syndrome', 'type': 'dermal fibroblast'}, 'GSM979654': {'description': 'Single 50 nt reads', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'CThi10052', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '3', 'biorep': '089N'}, 'GSM979655': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10021', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '039WC'}, 'GSM979656': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10016', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '045WC'}, 'GSM979657': {'description': 'Single 50 nt reads', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'CThi10051', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '3', 'biorep': '089C'}, 'GSM979650': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10101CTT', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '069WC'}, 'GSM979651': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10103ATC', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '067WC'}, 'GSM979652': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10105ACA', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '065WC'}, 'GSM979653': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10030', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '047WC'}, 'GSM979658': {'description': 'Single 50 nt reads', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'CThi10017', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '045C'}, 'GSM979659': {'description': 'Single 50 nt reads', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'CThi10025', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '045N'}, 'GSM3189203': {'boca': 'Yes', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '11', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.591462', 'percentaligned': '0.958220558', 'Sex': 'M', 'nl63': 'No', 'libcounts': '15.701837', 'original': 'Case'}, 'GSM3189200': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.768084', 'percentaligned': '0.93326695', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.683114', 'original': 'Case'}, 'GSM1821699': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': '9527+oil'}, 'GSM2593360': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a', 'variation': 'control'}, 'GSM2652440': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'female'}, 'GSM2417931': {'type': 'human colorectal cancer cells', 'agent': 'none'}, 'GSM2417930': {'type': 'human colorectal cancer cells', 'agent': 'none'}, 'GSM2417932': {'type': 'human colorectal cancer cells', 'agent': 'none'}, 'GSM1855978': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (GFP expressed)'}, 'GSM1855979': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855970': {'passages': '3-7', 'antibody': 'GATA3 serum (Adomas et al, 2014)', 'variation': 'GATA3 expressed'}, 'GSM1855971': {'passages': '3-7', 'antibody': 'GATA3 serum (Adomas et al, 2014)', 'variation': 'GATA3 expressed'}, 'GSM1855972': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855973': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855974': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855975': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'GATA3 expressed'}, 'GSM1855976': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (GFP expressed)'}, 'GSM1855977': {'passages': '3-7', 'antibody': 'N/A', 'variation': 'Control cells (GFP expressed)'}, 'GSM2611005': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2093159': {'bin': '27', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093158': {'bin': '25', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093153': {'bin': '25', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2178813': {'ir': '1.72117039586919', 'weight': 'obese', 'gender': 'male', 'age': '41', 'bmi': '33.4', 'disease': 'ngt', 'l': '0.15', 'h': '2', 'id': '56a'}, 'GSM2093151': {'bin': '21', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093150': {'bin': '21', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': '14', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093157': {'bin': '25', 'group': 'case (TB progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093156': {'bin': '25', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': '15', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093155': {'bin': '21', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1395646': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM925609': {'line': 'H9', 'type': 'ESC'}, 'GSM2141408': {'individual': 'AF107', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1513188': {'gender': 'Male', 'line': 'GM18498', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513189': {'gender': 'Female', 'line': 'GM18499', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2948752': {'tumor': 'C1-4', 'tissue': 'VCaP xenograft', 'condition': 'Abi/Enza resistant'}, 'GSM2828179': {'passages': '18-20', 'group': 'experiment', 'condition': 'overexpression of PLAC8'}, 'GSM2828178': {'passages': '18-20', 'group': 'control', 'condition': 'overexpression of EGFP'}, 'GSM2306833': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306832': {'protocol': 'RNaseIII null polyIC'}, 'GSM2306831': {'protocol': 'RNaseIII null polyIC'}, 'GSM2306830': {'protocol': 'RNaseIII null Mock'}, 'GSM2306837': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306836': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306835': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306834': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM925606': {'line': 'BG01', 'type': 'ESC'}, 'GSM2306839': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM2306838': {'transduction': 'GFP', 'tissue': 'Donor-derived human pancreatic Islets'}, 'GSM925607': {'line': 'BG01', 'type': 'partially differentiated ESC'}, 'GSM1534558': {'type': 'Endometrial stromal cells', 'patient': '1', 'phenotype': 'Wild type (Non targeting siRNA)'}, 'GSM1534559': {'type': 'Endometrial stromal cells', 'patient': '2', 'phenotype': 'Wild type (Non targeting siRNA)'}, 'GSM2915397': {'antibody': 'SUMO2/3 (Cedarlane M114-3)', 'type': 'MCF-7 cells'}, 'GSM2611009': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611008': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1280529': {'with': 'none (parental)', 'type': 'monolayer'}, 'GSM2327829': {'line': 'HCT116Â\\xa0', 'tissue': 'colon', 'phenotype': 'colorectal carcinoma'}, 'GSM2327828': {'line': 'HCT116Â\\xa0', 'tissue': 'colon', 'phenotype': 'colorectal carcinoma'}, 'GSM2327825': {'line': 'HCT116Â\\xa0', 'tissue': 'colon', 'phenotype': 'colorectal carcinoma'}, 'GSM2327827': {'line': 'HCT116Â\\xa0', 'tissue': 'colon', 'phenotype': 'colorectal carcinoma'}, 'GSM2327826': {'line': 'HCT116Â\\xa0', 'tissue': 'colon', 'phenotype': 'colorectal carcinoma'}, 'GSM2211632': {'origin': 'healthy skin', 'subset': 'CD49a+', 'type': 'epidermal CD8+CD103+CD49a+ tissue resident memory T cells', 'donor': 'Subject 6'}, 'GSM2211633': {'origin': 'healthy skin', 'subset': 'CD49a-', 'type': 'epidermal CD8+CD103+CD49a- tissue resident memory T cells', 'donor': 'Subject 7'}, 'GSM2211630': {'origin': 'healthy skin', 'subset': 'CD49a+', 'type': 'epidermal CD8+CD103+CD49a+ tissue resident memory T cells', 'donor': 'Subject 5'}, 'GSM2211631': {'origin': 'healthy skin', 'subset': 'CD49a-', 'type': 'epidermal CD8+CD103+CD49a- tissue resident memory T cells', 'donor': 'Subject 6'}, 'GSM2311831': {'culture': '12', 'line': 'DCX+'}, 'GSM2211634': {'origin': 'healthy skin', 'subset': 'CD49a+', 'type': 'epidermal CD8+CD103+CD49a+ tissue resident memory T cells', 'donor': 'Subject 7'}, 'GSM2112818': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2112819': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2112816': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020'}, 'GSM2112817': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2112814': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2112815': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle'}, 'GSM2112812': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2112813': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2112810': {'status': 'ER+/PR-deficient', 'line': 'T47D', 'type': 'ER+/PR-deficient cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '45 minutes'}, 'GSM2112811': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2570063': {'line': 'HeLa', 'treatment': 'mock'}, 'GSM2570067': {'line': 'HeLa', 'dilution': '500ng', 'treatment': 'mock'}, 'GSM2570066': {'line': 'HeLa', 'dilution': '250ng', 'treatment': 'mock'}, 'GSM2570065': {'line': 'HeLa', 'dilution': '125ng', 'treatment': 'mock'}, 'GSM2570064': {'line': 'HeLa', 'dilution': '2ug', 'treatment': 'mock'}, 'GSM1545049': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM3580286': {'phase': 'HCV', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HCV'}, 'GSM2316906': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316907': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316904': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316905': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316902': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316903': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316900': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316901': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2311835': {'culture': '12', 'line': 'DCX+'}, 'GSM2316908': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316909': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1697228': {'number': '50'}, 'GSM1697220': {'number': '10'}, 'GSM1697221': {'number': '31'}, 'GSM1697222': {'number': '9'}, 'GSM1697223': {'number': '66'}, 'GSM1697224': {'number': '5'}, 'GSM1697225': {'number': '32'}, 'GSM1697226': {'number': '81'}, 'GSM1697227': {'number': '67'}, 'GSM2689310': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424943': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424940': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2689313': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424946': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424947': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424944': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2689317': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689318': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689319': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2424948': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424949': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425017': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425016': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425015': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425014': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425013': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425012': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425011': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425010': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2815743': {'line': 'HEK293T', 'type': 'human embryonic kidney cells', 'enrichment': 'No antibody enriched'}, 'GSM2425019': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425018': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2715277': {'tissue': 'normal liver'}, 'GSM2543911': {'library_id': 'lib8061', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1818704': {'age': '1 week post-infection', 'line': 'H9'}, 'GSM1818705': {'age': '1 week', 'line': 'H9'}, 'GSM1177221': {'tissue': 'Prostate Tumour', 'point': 'Post-Treatment'}, 'GSM1177220': {'tissue': 'Prostate Tumour', 'point': 'Post-Treatment'}, 'GSM2251928': {'type': 'adult astrocytes', 'agent': 'small molecules', 'time': '0 days'}, 'GSM1294052': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-Histone H1.2 (catalog# ab4086, Abcam)', 'treatment': 'unstimulated'}, 'GSM1294053': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-Histone H1.2 (catalog# ab4086, Abcam)', 'treatment': 'progestin R5020-stimulated'}, 'GSM1294050': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-H3K27me3 (catalog# 39155, Active Motif)', 'treatment': 'unstimulated'}, 'GSM1294051': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-H3K27me3 (catalog# 39156, Active Motif)', 'treatment': 'progestin R5020-stimulated'}, 'GSM1294054': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-CTCF (catalog# 07-729, Millipore)', 'treatment': 'unstimulated'}, 'GSM1294055': {'line': 'Breast cancer cell line T47D-MTVL', 'antibody': 'anti-CTCF (catalog# 07-729, Millipore)', 'treatment': 'progestin R5020-stimulated'}, 'GSM2390898': {'disease': 'Healthy Control'}, 'GSM2877919': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877918': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877915': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877914': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877917': {'tissue': 'Ovary', 'stage': 'Antral'}, 'GSM2877916': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877911': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877910': {'tissue': 'Ovary', 'stage': 'Primary'}, 'GSM2877913': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2877912': {'tissue': 'Ovary', 'stage': 'Secondary'}, 'GSM2047457': {'well': 'D02', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047456': {'well': 'D01', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047455': {'well': 'C12', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047454': {'well': 'C11', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047453': {'well': 'C10', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047452': {'well': 'C09', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047451': {'well': 'C08', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047450': {'well': 'C07', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1708003': {'type': 'tumour (T-cell large granular lymphocytic leukemia)'}, 'GSM1708002': {'type': 'normal'}, 'GSM1708001': {'type': 'tumour (T-cell large granular lymphocytic leukemia)'}, 'GSM1708000': {'type': 'normal'}, 'GSM2047459': {'well': 'D04', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047458': {'well': 'D03', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1632434': {'type': 'induced pluripotent stem cells', 'number': 'passage 20', 'transgenes': 'no', 'time': '80% confluence'}, 'GSM1632435': {'protocols': 'Human keratinocyte was cultured with DermaLife K serum-free human keratinocyte medium (Lifeline Cell Technology, LL-0007) per manufacturer¡Ã\\x85â\\x84¢s instruction.', 'type': 'keratinocyte', 'number': 'passage 4', 'transgenes': 'no', 'time': '80% confluence'}, 'GSM1632430': {'number': 'passage 8', 'transgenes': 'no', 'time': '48 hours post seeding', 'line': 'BJ', 'type': 'fibroblasts', 'protocols': 'Human Fibroblast cells were cultured in fibroblast medium: DMEM, 10% heat-inactivated FBS, 0.1 mM 2-mercaptoethanol, 100 U/ml penicillin, 100 mg/ml streptomycin, 0.1 mM MEM NEAA and 4 ng/ml human bFGF.'}, 'GSM1632431': {'line': 'BJ', 'type': 'fibroblasts', 'number': 'passage 5', 'transgenes': 'no', 'time': '48 hours post seeding'}, 'GSM2593358': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a'}, 'GSM1632433': {'type': 'induced pluripotent stem cells', 'number': 'passage 20', 'transgenes': 'no', 'time': '80% confluence'}, 'GSM2593356': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a'}, 'GSM2593357': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a'}, 'GSM2593354': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a'}, 'GSM2593355': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'n/a'}, 'GSM2593352': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM2593353': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM2593351': {'tissue': 'breast', 'type': 'fibrocystic disease', 'id': 'ATCC CRL-10317'}, 'GSM2543843': {'library_id': 'lib7965', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543842': {'library_id': 'lib7964', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543841': {'library_id': 'lib7963', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.087', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543840': {'library_id': 'lib7962', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.087', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543847': {'library_id': 'lib7969', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543846': {'library_id': 'lib7968', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543845': {'library_id': 'lib7967', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543844': {'library_id': 'lib7966', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543849': {'library_id': 'lib7971', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543848': {'library_id': 'lib7970', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1291164': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM2451249': {'compartment': 'Stroma', 'id': 'CUMC_006', 'library': 'NuGEN'}, 'GSM2451248': {'compartment': 'Epithelium', 'id': 'CUMC_006', 'library': 'NuGEN'}, 'GSM2451247': {'compartment': 'Stroma', 'id': 'CUMC_005', 'library': 'NuGEN'}, 'GSM2451246': {'compartment': 'Epithelium', 'id': 'CUMC_001', 'library': 'NuGEN'}, 'GSM1103998': {'type': 'HER2+ Breast Tumor'}, 'GSM1103999': {'type': 'Triple Negative Breast Tumor'}, 'GSM2258998': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4019'}, 'GSM2258999': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4019'}, 'GSM2258994': {'line': 'HEK293', 'condition': 'scrambled control'}, 'GSM2258995': {'line': 'HEK293', 'condition': 'scrambled control'}, 'GSM2258996': {'line': 'HEK293', 'condition': 'scrambled control'}, 'GSM2258997': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4019'}, 'GSM2258990': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4020'}, 'GSM1103997': {'type': 'Triple Negative Breast Tumor'}, 'GSM1103994': {'type': 'ER+ Breast Tumor'}, 'GSM1103995': {'type': 'Triple Negative Breast Tumor'}, 'GSM1634298': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634299': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634292': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634293': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634290': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634291': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634296': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634297': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634294': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM1634295': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia (AML) cells'}, 'GSM2419779': {'posttransfection': 'Total RNA was extracted at 72h posttransfection', 'knockdown': 'LKB1 siRNA', 'line': 'U87', 'type': 'Glioblastoma'}, 'GSM2545878': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2536006': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8447', 'samplename': '1*_T1D#5_C20', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31767', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8447', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C20'}, 'GSM2536005': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8445', 'samplename': '1*_T1D#5_C37', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31765', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8445', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C37'}, 'GSM2536004': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8444', 'samplename': '1*_T1D#5_C31', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31764', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8444', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C31'}, 'GSM2536003': {'status': 'T1D', 'lane': '5,6', 'seqsite': 'BRI', 'samplelabel': 'lib8443', 'samplename': '1*_T1D#5_C21', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31763', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8443', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C21'}, 'GSM2536002': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6810', 'samplename': '1_T1D#4_RO+_C94', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30174', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6810', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C94'}, 'GSM2536001': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6809', 'samplename': '1*_T1D#4_RO+_C82', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30173', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6809', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C82'}, 'GSM2536000': {'status': 'T1D', 'lane': '8', 'seqsite': 'BRI', 'samplelabel': 'lib6808', 'samplename': '1*_T1D#4_RO+_C72', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D4', 'sampleID': 'S30172', 'numcellssorted': '245', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VG0ANXX', 'c1plateid': '1771023211', 'libraryid': 'lib6808', 'projectid': 'P91-10', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C72'}, 'GSM2228434': {'tissue': '13 weeks old fetal brain tissue', 'type': 'fetal brain derived neural stem cells', 'number': 'p9'}, 'GSM2228435': {'tissue': '14 weeks old fetal brain tissue', 'type': 'fetal brain derived neural stem cells', 'number': 'p12 Diff'}, 'GSM2807437': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2545873': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2545874': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2545875': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2545876': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2536008': {'status': 'T1D', 'lane': '6,5', 'seqsite': 'BRI', 'samplelabel': 'lib8451', 'samplename': '1*_T1D#5_C19', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D5', 'sampleID': 'S31771', 'numcellssorted': '230', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6VF8ANXX', 'c1plateid': '1771023228', 'libraryid': 'lib8451', 'projectid': 'P91-11', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C19'}, 'GSM2360254': {'type': 'iMGL', 'treatment': 'None'}, 'GSM2360253': {'type': 'iMGL', 'treatment': 'None'}, 'GSM2543812': {'library_id': 'lib7924', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2360252': {'type': 'iMGL', 'treatment': 'None'}, 'GSM2325940': {'type': 'Human embryonic stem cell'}, 'GSM1864249': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T2/3'}, 'GSM2325941': {'type': 'Human embryonic stem cell'}, 'GSM2665877': {'age': 'Day 175', 'well': 'H5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665876': {'age': 'Day 175', 'well': 'D1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665875': {'age': 'Day 175', 'well': 'G2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665874': {'age': 'Day 175', 'well': 'C5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665873': {'age': 'Day 175', 'well': 'A5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665872': {'age': 'Day 175', 'well': 'B1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665871': {'age': 'Day 175', 'well': 'E9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2665870': {'age': 'Day 175', 'well': 'A10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2439233': {'antibody': 'none', 'line': 'K562', 'shRNA': 'control shRNA', 'type': 'myeloid leukemia cell line'}, 'GSM2325947': {'type': 'Human embryonic stem cell'}, 'GSM2439236': {'antibody': 'CUX1 sc-6327 Santa Cruz', 'line': 'K562', 'shRNA': 'control shRNA', 'type': 'myeloid leukemia cell line'}, 'GSM2439237': {'antibody': 'none', 'line': 'K562', 'shRNA': 'control shRNA', 'type': 'myeloid leukemia cell line'}, 'GSM2665879': {'age': 'Day 175', 'well': 'G1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000084'}, 'GSM2665878': {'age': 'Day 175', 'well': 'G12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000084'}, 'GSM2362516': {'line': 'HEK293'}, 'GSM2325948': {'type': 'Human embryonic stem cell'}, 'GSM2325949': {'type': 'Human embryonic stem cell'}, 'GSM2362517': {'line': 'HEK293'}, 'GSM2251394': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2840249': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840248': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840247': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840246': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840245': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM1357252': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Healthy'}, 'GSM2840243': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840242': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840241': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2840240': {'subtype': 'TCM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'history': 'DENV positive'}, 'GSM2671292': {'line': 'MCF7', 'antibody': 'X-DO1, Santa Cruz sc-126 X', 'passage': 'between 4-14 for all experiments'}, 'GSM2671293': {'line': 'MCF7', 'antibody': 'X-DO1, Santa Cruz sc-126 X', 'passage': 'between 4-14 for all experiments'}, 'GSM2671290': {'line': 'MCF7', 'antibody': 'X-DO1, Santa Cruz sc-126 X', 'passage': 'between 4-14 for all experiments'}, 'GSM2671291': {'line': 'MCF7', 'antibody': 'X-DO1, Santa Cruz sc-126 X', 'passage': 'between 4-14 for all experiments'}, 'GSM2671296': {'line': 'MCF7', 'antibody': 'X-DO1, Santa Cruz sc-126 X', 'passage': 'between 4-14 for all experiments'}, 'GSM2671297': {'line': 'MCF7', 'antibody': 'Abcam ab4729', 'passage': 'between 4-14 for all experiments'}, 'GSM2671294': {'line': 'MCF7', 'antibody': 'X-DO1, Santa Cruz sc-126 X', 'passage': 'between 4-14 for all experiments'}, 'GSM2671295': {'line': 'MCF7', 'antibody': 'X-DO1, Santa Cruz sc-126 X', 'passage': 'between 4-14 for all experiments'}, 'GSM1556987': {'line': 'pancreatic ductal carcinoma cell line', 'sirna': 'TCF7L2 siRNA'}, 'GSM1556986': {'line': 'pancreatic ductal carcinoma cell line', 'sirna': 'TCF7L2 siRNA'}, 'GSM1556985': {'line': 'pancreatic ductal carcinoma cell line', 'sirna': 'TCF7L2 siRNA'}, 'GSM1556984': {'line': 'pancreatic ductal carcinoma cell line', 'sirna': 'control siRNA'}, 'GSM1556983': {'line': 'pancreatic ductal carcinoma cell line', 'sirna': 'control siRNA'}, 'GSM1556982': {'line': 'pancreatic ductal carcinoma cell line', 'sirna': 'control siRNA'}, 'GSM2305840': {'tissue': 'colon'}, 'GSM1489584': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '1U4'}, 'GSM1489585': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '20T3'}, 'GSM1489586': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '20T4'}, 'GSM1489587': {'point': 'post-training period 1', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '20U2'}, 'GSM1489580': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '19U2'}, 'GSM1489581': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '1T3'}, 'GSM1489582': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '1U2'}, 'GSM1489583': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '1U3'}, 'GSM1489588': {'point': 'pre-training period 2', 'gender': 'female', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '20U3'}, 'GSM1489589': {'point': 'post-training period 2', 'gender': 'female', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '20U4'}, 'GSM2359169': {'strain': 'CCD-18Co', 'treatment': 'Recombinant Wnt3A (human)'}, 'GSM2359168': {'strain': 'CCD-18Co', 'treatment': 'Vehicle'}, 'GSM2359167': {'strain': 'CCD-18Co', 'treatment': 'Vehicle'}, 'GSM2359166': {'strain': 'CCD-18Co', 'treatment': 'Vehicle'}, 'GSM1654308': {'variation': 'WT'}, 'GSM1654309': {'variation': 'FOXA2KD'}, 'GSM1654307': {'variation': 'WT'}, 'GSM2088074': {'status': 'Dysplasia', 'ratio': '1.22251140716979', 'age': '72', 'years': '52', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'Sex': 'Male', 'alignments': '65020008', 'alignment': '40594903'}, 'GSM2088075': {'status': 'NA', 'ratio': '1.28461466066882', 'age': '60', 'years': '65.7', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'Sex': 'Female', 'alignments': '55516978', 'alignment': '34410986'}, 'GSM2088076': {'status': 'NA', 'ratio': '1.34064367981494', 'age': '61', 'years': '43.75', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'Sex': 'Male', 'alignments': '67349610', 'alignment': '42087860'}, 'GSM2088077': {'status': 'NA', 'ratio': '1.13249801037652', 'age': '73', 'years': '58', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'Sex': 'Male', 'alignments': '44422234', 'alignment': '27971565'}, 'GSM2374159': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374158': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2088072': {'status': 'Dysplasia', 'ratio': '1.13237185195681', 'age': '47', 'years': '33', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '53611494', 'alignment': '33280392'}, 'GSM2088073': {'status': 'Dysplasia', 'ratio': '1.21636221658438', 'age': '56', 'years': '39', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '57641390', 'alignment': '35687022'}, 'GSM2374155': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374154': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374157': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374156': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374151': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374150': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374153': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374152': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2459050': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '11.25'}, 'GSM2459051': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.50'}, 'GSM2459052': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.50'}, 'GSM2459053': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.50'}, 'GSM2459054': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.92'}, 'GSM2459055': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.67'}, 'GSM2459056': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.92'}, 'GSM2459057': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.33'}, 'GSM2459058': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.33'}, 'GSM2459059': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.58'}, 'GSM1256830': {'marker': 'CD3+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'T-cells'}, 'GSM1256831': {'marker': 'CD3+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'T-cells'}, 'GSM2482836': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM2295889': {'type': 'HeLa cells', 'rescue': 'SMG6', 'kd': 'SMG6, SMG7'}, 'GSM2295888': {'type': 'HeLa cells', 'rescue': 'SMG6', 'kd': 'SMG6, SMG7'}, 'GSM2947319': {'tumor': 'CD30+LPD', 'tissue': 'skin', 'classification': 'SATB1+'}, 'GSM2947318': {'tumor': 'CD30+LPD', 'tissue': 'skin', 'classification': 'SATB1+'}, 'GSM2648414': {'with': 'SIRT7-targeted siRNAs', 'line': 'BT549', 'type': 'breast cancer cells'}, 'GSM2295880': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG7'}, 'GSM2295883': {'type': 'HeLa cells', 'rescue': 'SMG7', 'kd': 'SMG7'}, 'GSM2295882': {'type': 'HeLa cells', 'rescue': 'SMG7', 'kd': 'SMG7'}, 'GSM2295885': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG6, SMG7'}, 'GSM2295884': {'type': 'HeLa cells', 'rescue': 'SMG7', 'kd': 'SMG7'}, 'GSM2295887': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG6, SMG7'}, 'GSM2295886': {'type': 'HeLa cells', 'rescue': 'none', 'kd': 'SMG6, SMG7'}, 'GSM2361408': {'transduction': 'shTP53:RB1 hairpin', 'line': 'LNCaP/AR'}, 'GSM2287048': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2455889': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2361401': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells'}, 'GSM2361400': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells'}, 'GSM2361403': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells', 'barcode': 'CGATGT'}, 'GSM2361402': {'category': 'activated', 'activation': 'CD45RO+', 'tissue': 'breast tumor', 'type': 'Regulatory T cells'}, 'GSM2361405': {'transduction': 'shNT hairpin', 'line': 'LNCaP/AR'}, 'GSM2287043': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2361407': {'transduction': 'shTP53:RB1 hairpin', 'line': 'LNCaP/AR'}, 'GSM2361406': {'transduction': 'shNT hairpin', 'line': 'LNCaP/AR'}, 'GSM1303927': {'tissue': 'islets of Langerhans', 'treatment': 'palmitate'}, 'GSM1303926': {'tissue': 'islets of Langerhans', 'treatment': 'control'}, 'GSM1087869': {'labexpid': '12538', 'line': 'GM12878'}, 'GSM1087868': {'labexpid': '12537', 'line': 'GM12878'}, 'GSM1087865': {'labexpid': '12534', 'line': 'GM12878'}, 'GSM1087864': {'labexpid': '12524', 'line': 'GM12878'}, 'GSM1087867': {'labexpid': '12536', 'line': 'GM12878'}, 'GSM1087866': {'labexpid': '12535', 'line': 'GM12878'}, 'GSM1087861': {'labexpid': '12520', 'line': 'GM12878'}, 'GSM1087860': {'labexpid': '12519', 'line': 'GM12878'}, 'GSM1087863': {'labexpid': '12523', 'line': 'GM12878'}, 'GSM1087862': {'labexpid': '12522', 'line': 'GM12878'}, 'GSM2409708': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM1479539': {'index': '4', 'diagnosis': '6', 'cellcount': '--', 'gender': 'M', 'age': '42', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '40', 'collectiondate': 'June 19 2012', 'samplename': '40_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM2409705': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409704': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409706': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2409701': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409700': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409703': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM2409702': {'line': 'VA-ES-BJ', 'tissue': 'epithelioid sarcoma'}, 'GSM1933881': {'status': 'androgen independent (AI)', 'course': 'day 22', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'expressing pLVX (empty vector)'}, 'GSM1933880': {'status': 'androgen independent (AI)', 'course': 'day 22', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOGP8 overexpression'}, 'GSM1974769': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Senescent', 'treatment': 'untreated'}, 'GSM1974768': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Senescent', 'treatment': 'untreated'}, 'GSM1974767': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Senescent', 'treatment': 'untreated'}, 'GSM1974766': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Proliferating'}, 'GSM1974765': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Proliferating'}, 'GSM1974764': {'line': 'Parkin-expressing MRC5 fibroblasts', 'state': 'Proliferating'}, 'GSM2147989': {'line': 'Ig1', 'tissue': 'ADNP mutated lymphoblastoid cell line', 'variation': 'ADNP mutated'}, 'GSM2147985': {'line': 'Lympho', 'tissue': 'lymphoblastoid cell line', 'variation': 'wild-type'}, 'GSM2482838': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM2545885': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM2545884': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM2247484': {'control': 'overexpressing', 'number': '1', 'passage': '10'}, 'GSM2545886': {'line': 'HCT-116', 'mutation': 'PHF5A Y36C'}, 'GSM1607085': {'gender': 'M', 'age': '18', 'tissue': 'lesional skin'}, 'GSM1607084': {'gender': 'M', 'age': '32', 'tissue': 'non-lesional skin'}, 'GSM1607087': {'gender': 'M', 'age': '32', 'tissue': 'lesional skin'}, 'GSM1607086': {'gender': 'M', 'age': '18', 'tissue': 'non-lesional skin'}, 'GSM1607081': {'gender': 'M', 'age': '33', 'tissue': 'lesional skin'}, 'GSM1607083': {'gender': 'M', 'age': '32', 'tissue': 'lesional skin'}, 'GSM1607082': {'gender': 'M', 'age': '33', 'tissue': 'non-lesional skin'}, 'GSM2747463': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': 'DMSO'}, 'GSM2747462': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': 'DMSO'}, 'GSM2747461': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': 'DMSO'}, 'GSM2747460': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': '5uM GW4066'}, 'GSM2747467': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous knockout', 'treatment': 'DMSO'}, 'GSM1607088': {'gender': 'M', 'age': '32', 'tissue': 'non-lesional skin'}, 'GSM2747465': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': '5uM GW4065'}, 'GSM2747464': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'wild-type', 'treatment': '5uM GW4064'}, 'GSM1964708': {'type': 'BJ fibroblast derived iPSC-1', 'point': 'before differentiation'}, 'GSM1964709': {'type': 'BJ fibroblast derived iPSC-1', 'point': 'before differentiation'}, 'GSM1964700': {'type': 'BJ fibroblast derived iPSC-1', 'point': '7 days after differentiation'}, 'GSM1964701': {'type': 'BJ fibroblast derived iPSC-1', 'point': '7 days after differentiation'}, 'GSM1964702': {'type': 'BJ fibroblast derived iPSC-2', 'point': '7 days after differentiation'}, 'GSM1964703': {'type': 'BJ fibroblast derived iPSC-2', 'point': '7 days after differentiation'}, 'GSM1964704': {'type': 'BJ fibroblast derived iPSC-1', 'point': '21 days after differentiation'}, 'GSM1964705': {'type': 'BJ fibroblast derived iPSC-1', 'point': '21 days after differentiation'}, 'GSM1964706': {'type': 'BJ fibroblast derived iPSC-2', 'point': '21 days after differentiation'}, 'GSM1964707': {'type': 'BJ fibroblast derived iPSC-2', 'point': '21 days after differentiation'}, 'GSM2098690': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2101629': {'tissue': 'pancreatic islets', 'name': 'LG2'}, 'GSM2101628': {'tissue': 'pancreatic islets', 'name': 'LG9'}, 'GSM2072059': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gCIC-2', 'treatment': '50 nM Trametinib'}, 'GSM2072058': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gCIC-2', 'treatment': 'DMSO'}, 'GSM2072057': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gCIC-2', 'treatment': 'DMSO'}, 'GSM2072056': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gCIC-1', 'treatment': '50 nM Trametinib'}, 'GSM2072055': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gCIC-1', 'treatment': '50 nM Trametinib'}, 'GSM2072054': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gCIC-1', 'treatment': 'DMSO'}, 'GSM2072053': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gCIC-1', 'treatment': 'DMSO'}, 'GSM2072052': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gGFP-1', 'treatment': '50 nM Trametinib'}, 'GSM2101627': {'tissue': 'pancreatic islets', 'name': 'LG6'}, 'GSM2101626': {'tissue': 'pancreatic islets', 'name': 'LG3'}, 'GSM1574110': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '52', 'treatment': '100 nM rotenone'}, 'GSM2670878': {'mutation': 'none', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2440770': {'line': 'HeLa', 'treatment': 'EGF'}, 'GSM2670875': {'mutation': 'none', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'Yes', 'provider': 'ATCC'}, 'GSM2670874': {'mutation': 'none', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'Yes', 'provider': 'ATCC'}, 'GSM2738056': {'antibody': 'none', 'transfection': 'siBACH2', 'passages': 'Primary Cells', 'type': 'Activated B cells'}, 'GSM2738057': {'antibody': 'none', 'transfection': 'siBACH2', 'passages': 'Primary Cells', 'type': 'Activated B cells'}, 'GSM1574118': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '22', 'treatment': 'none'}, 'GSM1574119': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '26', 'treatment': '100 nM rotenone'}, 'GSM2312047': {'culture': '12', 'line': 'DCX+'}, 'GSM2312046': {'culture': '12', 'line': 'DCX+'}, 'GSM2312045': {'culture': '12', 'line': 'DCX+'}, 'GSM2312044': {'culture': '12', 'line': 'DCX+'}, 'GSM2312043': {'culture': '12', 'line': 'DCX+'}, 'GSM2312042': {'culture': '12', 'line': 'DCX+'}, 'GSM2312041': {'culture': '12', 'line': 'DCX+'}, 'GSM2312040': {'culture': '12', 'line': 'DCX+'}, 'GSM1965071': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965070': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965073': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965072': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965075': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965074': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2312049': {'culture': '12', 'line': 'DCX+'}, 'GSM2312048': {'culture': '12', 'line': 'DCX+'}, 'GSM3586618': {'pfstt': '1540', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1540', 'cycles': '6', 'oscs': '0'}, 'GSM3586619': {'origin': 'GCB', 'pfstt': '1274', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1284', 'cycles': '6', 'oscs': '0'}, 'GSM3586610': {'origin': 'ABC', 'pfstt': '26', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '100', 'cycles': '6', 'oscs': '1'}, 'GSM3586611': {'origin': 'ABC', 'pfstt': '64', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '75', 'cycles': '6', 'oscs': '1'}, 'GSM3586612': {'origin': 'ABC', 'pfstt': '924', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '932', 'cycles': '6', 'oscs': '0'}, 'GSM3586613': {'origin': 'UNCLASSIFIED', 'pfstt': '691', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '973', 'cycles': '6', 'oscs': '0'}, 'GSM3586614': {'origin': 'ABC', 'pfstt': '514', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '753', 'cycles': '6', 'oscs': '0'}, 'GSM3586615': {'origin': 'GCB', 'pfstt': '1523', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1532', 'cycles': '6', 'oscs': '0'}, 'GSM3586616': {'origin': 'GCB', 'pfstt': '1658', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1665', 'cycles': '6', 'oscs': '0'}, 'GSM3586617': {'origin': 'ABC', 'pfstt': '182', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '209', 'cycles': '6', 'oscs': '1'}, 'GSM2337067': {'origin': 'cells in vitro', 'line': 'MMACSF', 'type': 'melanoma cell line', 'treatment': 'Vemurafenib_24h_0.2µM'}, 'GSM2676809': {'antibody': 'Abcam ab110641', 'treatment': 'JQ1'}, 'GSM2220791': {'tissue': 'fetal lung'}, 'GSM2220790': {'tissue': 'fetal lung'}, 'GSM2370618': {'state': 'resting', 'type': 'naive CD4 purified cells', 'ids': '404'}, 'GSM1963046': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM2607532': {'line': 'WA26'}, 'GSM1963044': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM2370619': {'state': '40 min activated with anti-CD3/28 beads', 'type': 'naive CD4 purified cells', 'ids': '405'}, 'GSM1963042': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963043': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM1963040': {'altitude': 'low', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM2048611': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2172001': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2048613': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2551372': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2172006': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2607534': {'line': 'WA26'}, 'GSM2172004': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2172009': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1467805': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467804': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467807': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467806': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467801': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467800': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467803': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467802': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1467809': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM1937926': {'status': 'HPV18', 'gender': 'M', 'stage': 'IVb'}, 'GSM1937927': {'status': 'HPV35', 'gender': 'M', 'stage': 'IVb'}, 'GSM2337063': {'origin': 'cells in vitro', 'line': 'COLO858', 'type': 'melanoma cell line', 'treatment': 'Vemurafenib_48h_0.2µM'}, 'GSM1866129': {'line': 'Gliobmastoma cell line'}, 'GSM2563636': {'source': 'cell culture', 'protocol': 'adapter ligation'}, 'GSM2563637': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2563634': {'source': 'cell culture', 'protocol': 'adapter ligation'}, 'GSM2563635': {'source': 'cell culture', 'protocol': 'adapter ligation'}, 'GSM2563632': {'source': 'cell culture', 'protocol': 'adapter ligation'}, 'GSM2563633': {'source': 'cell culture', 'protocol': 'adapter ligation'}, 'GSM2563630': {'source': 'cell culture', 'protocol': 'adapter ligation'}, 'GSM2563631': {'source': 'cell culture', 'protocol': 'adapter ligation'}, 'GSM1937928': {'status': 'HPV16', 'gender': 'M', 'stage': 'III'}, 'GSM2563638': {'source': 'cell culture', 'protocol': 'Clontech SMARTer RNA-seq kit'}, 'GSM2108328': {'stages': 'myoblast'}, 'GSM2585787': {'line': 'LC/2-AD cells'}, 'GSM2356353': {'ab': 'CD74 (C-16; Santa Cruz Biotechnology)', 'level': 'Binet B', 'age': '81', 'sex': 'Male', 'diagnosis': 'CLL', 'time': '2h', 'type': 'B cells'}, 'GSM2549769': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'labeled RNA (eluate)', 'barcode': 'ACAGTGA', 'infection': 'Infected 9h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2356357': {'ab': 'isotype control antibody', 'level': 'Binet B', 'age': '81', 'sex': 'Male', 'diagnosis': 'CLL', 'time': '2h', 'type': 'B cells'}, 'GSM2356356': {'ab': 'isotype control antibody', 'level': 'Binet B', 'age': '81', 'sex': 'Male', 'diagnosis': 'CLL', 'time': '2h', 'type': 'B cells'}, 'GSM2356355': {'ab': 'isotype control antibody', 'level': 'Binet A', 'age': '57', 'sex': 'Female', 'diagnosis': 'CLL', 'time': '2h', 'type': 'B cells'}, 'GSM2356354': {'ab': 'CD74 (C-16; Santa Cruz Biotechnology)', 'level': 'Binet B', 'age': '81', 'sex': 'Male', 'diagnosis': 'CLL', 'time': '2h', 'type': 'B cells'}, 'GSM2549760': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'CTTGTAA', 'infection': 'Infected 4h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549761': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'ACAGTGA', 'infection': 'Infected 9h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549762': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'AGTCAAC', 'infection': 'Infected 9h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549763': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'GCCAATA', 'infection': 'Infected 15h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549764': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'total RNA', 'barcode': 'AGTTCCG', 'infection': 'Infected 15h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549765': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'labeled RNA (eluate)', 'barcode': 'CGATGTA', 'infection': 'Uninfected', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549766': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'labeled RNA (eluate)', 'barcode': 'CAGATCA', 'infection': 'Uninfected', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2549767': {'sequence': 'GATCGGAAGAGCACACGT', 'isolation': 'labeled RNA (eluate)', 'barcode': 'TGACCAA', 'infection': 'Infected 4h before harvesting', 'treatment': '1h before harvesting', 'line': 'WI-38'}, 'GSM2100034': {'rin': '10', 'Sex': 'Female', 'sspg': '209', 'age': '50', 'bmi': '35.4', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '243', 'method': 'Life-Tech GITC'}, 'GSM1668486': {'line': 'H1', 'sorting': 'NIL', 'treatment': 'WT H9 Cells', 'genotype': 'WT'}, 'GSM2100033': {'rin': '10', 'Sex': 'Female', 'sspg': '209', 'age': '50', 'bmi': '35.4', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '243', 'method': 'Life-Tech GITC'}, 'GSM1668484': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with ENY2 siRNA.', 'genotype': 'ENY2 Knock-down'}, 'GSM1668485': {'line': 'H9', 'sorting': 'NIL', 'treatment': 'WT iPSCs', 'genotype': 'WT'}, 'GSM1668482': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with ZMYM2 siRNA.', 'genotype': 'ZMYM2 Knock-down'}, 'GSM1668483': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with ZMYM2 siRNA.', 'genotype': 'ZMYM2 Knock-down'}, 'GSM1668480': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 positive', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with SFRS11 siRNA.', 'genotype': 'SFRS11 Knock-down'}, 'GSM1668481': {'line': 'BJ Fibroblasts', 'sorting': 'Tra-160 negative', 'treatment': 'BJ Fibroblasts 16 days post induced OSKM viral Expression and treated with SFRS11 siRNA.', 'genotype': 'SFRS11 Knock-down'}, 'GSM2309887': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '65.38'}, 'GSM2309886': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '65.38'}, 'GSM2309885': {'draw': '6 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '46.03'}, 'GSM2309884': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '46.03'}, 'GSM2309883': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '46.03'}, 'GSM2309882': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Polycystic', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '46.03'}, 'GSM2309881': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'GN-membranous glom.nephritis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '32.20'}, 'GSM2309880': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'GN-membranous glom.nephritis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '32.20'}, 'GSM2451196': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2309889': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Black or African American', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '38.66'}, 'GSM2309888': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Black or African American', 'type': 'kidney', 'ethnicity': 'Unknown', 'transplant': '38.66'}, 'GSM2264218': {'type': 'CD4+ Central Memory (CD45RA lo; CD197 (CCR7) hi)'}, 'GSM2264219': {'type': 'CD4+ Effector Memory (CD45RA lo; CD197 (CCR7) lo)'}, 'GSM2264211': {'type': 'CD4+ Naive (CD45RA hi; CD197 (CCR7) hi)'}, 'GSM2264212': {'type': 'CD4+ Central Memory (CD45RA lo; CD197 (CCR7) hi)'}, 'GSM2264213': {'type': 'CD4+ Effector Memory (CD45RA lo; CD197 (CCR7) lo)'}, 'GSM2264214': {'type': 'CD4+ Naive (CD45RA hi; CD197 (CCR7) hi)'}, 'GSM2264215': {'type': 'CD4+ Central Memory (CD45RA lo; CD197 (CCR7) hi)'}, 'GSM2264216': {'type': 'CD4+ Effector Memory (CD45RA lo; CD197 (CCR7) lo)'}, 'GSM2264217': {'type': 'CD4+ Naive (CD45RA hi; CD197 (CCR7) hi)'}, 'GSM1812003': {'type': 'Treg cell', 'treatment': 'DMSO'}, 'GSM1812002': {'concentration': '4uM', 'type': 'Treg cell', 'treatment': 'CPI-703'}, 'GSM2072050': {'duration': '24 hours', 'line': 'HCT116', 'grna': 'gGFP-1', 'treatment': 'DMSO'}, 'GSM1115087': {'line': 'BJ cells', 'condition': 'Nutlin-3a, 19h'}, 'GSM1115086': {'line': 'BJ cells', 'condition': 'Nutlin-3a, 6h'}, 'GSM1115085': {'line': 'BJ cells', 'condition': 'Nutlin-3a, 4h'}, 'GSM1115084': {'line': 'BJ cells', 'condition': 'Nutlin-3a, 2h'}, 'GSM2436479': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2436478': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2436475': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2436474': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2436477': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2436476': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2436471': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM2436470': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM2436473': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM2436472': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'wildtype'}, 'GSM1581079': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581078': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581077': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581076': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581075': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581074': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581073': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581072': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581071': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581070': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM2533703': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533702': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533701': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533700': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533707': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533706': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533705': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533704': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533709': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2533708': {'line': 'induced pluripotent stem cell line BU3', 'selection': 'Live cells (PI)', 'protocol': '15'}, 'GSM2228986': {'stimulation': 'no stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'unsorted'}, 'GSM2228987': {'stimulation': 'no stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'unsorted'}, 'GSM830449': {'subtype': 'polyA RNA', 'type': 'BJ fibroblast cells', 'stage': 'confluent'}, 'GSM830448': {'subtype': 'polyA RNA', 'type': 'BJ fibroblast cells', 'stage': 'proliferative'}, 'GSM2228988': {'stimulation': 'no stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'unsorted'}, 'GSM2228989': {'stimulation': 'no stimulation', 'type': 'plasmacytoid dendritic cells', 'markers': 'unsorted'}, 'GSM2392616': {'treatment': 'Vehicle', 'genotype': 'D538G'}, 'GSM2581202': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581201': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM2581200': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '1'}, 'GSM2581207': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581206': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2581205': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2392611': {'treatment': 'Vehicle', 'genotype': 'Y537S'}, 'GSM2581209': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2581208': {'phase': 'mid secretory', 'origin': 'Estonia', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM2392618': {'treatment': 'Estrogen', 'genotype': 'Wild type'}, 'GSM2392619': {'treatment': 'Estrogen', 'genotype': 'Wild type'}, 'GSM2840299': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2573299': {'age': 'fetal', 'type': 'primary astrocytes', 'treatment': 'none'}, 'GSM2573298': {'age': 'fetal', 'type': 'primary astrocytes', 'treatment': 'Il1beta'}, 'GSM1395477': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1940128': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours'}, 'GSM2745903': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '153,712,258', 'totalnummappedreads': '140,417,621', 'age': '38.39', 'percentexonicmapping': '21.306047', 'Sex': 'Female', 'rin': '7', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.76', 'brainid': '1474'}, 'GSM2573291': {'type': 'induced pluripotent stem cells-derived neural precursor cells', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM2573290': {'type': 'induced pluripotent stem cells-derived neural precursor cells', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM2573293': {'type': 'induced pluripotent stem cells-derived neural precursor cells', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM2573292': {'type': 'induced pluripotent stem cells-derived neural precursor cells', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM2573295': {'type': 'induced pluripotent stem cells-derived neural precursor cells', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM2573294': {'type': 'induced pluripotent stem cells-derived neural precursor cells', 'genotype': 'neurotypical', 'treatment': 'Il1beta'}, 'GSM2573297': {'age': 'fetal', 'type': 'primary astrocytes', 'treatment': 'Il1beta'}, 'GSM2573296': {'type': 'induced pluripotent stem cells-derived neural precursor cells', 'genotype': 'neurotypical', 'treatment': 'none'}, 'GSM659439': {'line': 'ES cell line H1', 'timepoint': 'Day2'}, 'GSM659438': {'line': 'ES cell line H1', 'timepoint': 'Day0'}, 'GSM1443810': {'antibody': 'anti-PPARγ (H-100, sc-7196; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443811': {'antibody': 'anti-PPARγ (H-100, sc-7196; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443812': {'antibody': 'anti-PPARγ (H-100, sc-7196; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443813': {'antibody': 'anti-KLF11 (10D8; Novus Biologicals)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443814': {'antibody': 'anti-KLF11 (10D8; Novus Biologicals)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443815': {'antibody': 'anti-KLF11 (10D8; Novus Biologicals)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM1443816': {'antibody': 'anti-KLF11 (10D8; Novus Biologicals)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM2544032': {'library_id': 'lib8342', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2476400': {'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM1443819': {'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM2745905': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '136,141,218', 'totalnummappedreads': '126,866,056', 'age': '30.02', 'percentexonicmapping': '11.168138', 'Sex': 'Female', 'rin': '7.7', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.92', 'brainid': '1512'}, 'GSM1553195': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1866130': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866131': {'tissue': 'Gliobmastoma biopsy'}, 'GSM2303403': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2265681': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '3h'}, 'GSM3189349': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.536291', 'percentaligned': '0.954754794', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.595807', 'original': 'Control'}, 'GSM3189348': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.583205', 'percentaligned': '0.949755829', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.952191', 'original': 'Control'}, 'GSM1836604': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U1'}, 'GSM3189343': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.598733', 'percentaligned': '0.952629995', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.440155'}, 'GSM3189342': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A51', '1': 'Yes', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.576374', 'percentaligned': '0.9565552', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.944494', 'original': 'Case'}, 'GSM3189341': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.586648', 'percentaligned': '0.955785334', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.370738', 'original': 'Control'}, 'GSM3189340': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A12', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '1', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.57027', 'percentaligned': '0.951722187', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.565132', 'original': 'Control'}, 'GSM3189347': {'boca': 'No', 'years': '11', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '85', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.710634', 'percentaligned': '0.906022533', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.012655'}, 'GSM3189346': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '41', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.638891', 'percentaligned': '0.900828313', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.220511'}, 'GSM3189345': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B06', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.551534', 'percentaligned': '0.959054691', 'Sex': 'F', 'nl63': 'No', 'libcounts': '11.736302', 'original': 'Case'}, 'GSM3189344': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A51', '1': 'Yes', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.588116', 'percentaligned': '0.961756064', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.937692', 'original': 'Case'}, 'GSM2150424': {'transduction': 'MEIS2_KD', 'line': 'Kasumi-1', 'tissue': 'peripheral blood derived'}, 'GSM2303402': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2150421': {'transduction': 'SCR', 'line': 'Kasumi-1', 'tissue': 'peripheral blood derived'}, 'GSM2150420': {'transduction': 'PLKO', 'line': 'Kasumi-1', 'tissue': 'peripheral blood derived'}, 'GSM2150423': {'transduction': 'MEIS2_KD', 'line': 'Kasumi-1', 'tissue': 'peripheral blood derived'}, 'GSM2150422': {'transduction': 'SCR', 'line': 'Kasumi-1', 'tissue': 'peripheral blood derived'}, 'GSM1620363': {'type': 'U87 human glioma cells'}, 'GSM1620362': {'type': 'U87 human glioma cells'}, 'GSM1620361': {'type': 'U87 human glioma cells'}, 'GSM1620360': {'type': 'U87 human glioma cells'}, 'GSM1620367': {'type': 'U87 human glioma cells'}, 'GSM1620366': {'type': 'U87 human glioma cells'}, 'GSM1620365': {'type': 'U87 human glioma cells'}, 'GSM1620364': {'type': 'U87 human glioma cells'}, 'GSM1620369': {'type': 'U87 human glioma cells'}, 'GSM1620368': {'type': 'U87 human glioma cells'}, 'GSM1808048': {'tissue': 'Adipose'}, 'GSM1808049': {'tissue': 'Adipose'}, 'GSM1808042': {'tissue': 'Adipose'}, 'GSM2772489': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'SYS-180', 'cdna': 'cDNA2054'}, 'GSM1808040': {'tissue': 'Heart'}, 'GSM1808041': {'tissue': 'Heart'}, 'GSM1808046': {'tissue': 'Adipose'}, 'GSM1808047': {'tissue': 'Adipose'}, 'GSM1808044': {'tissue': 'Adipose'}, 'GSM2772488': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'SYS-177', 'cdna': 'cDNA2039'}, 'GSM2183488': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'Cobalt + ACF'}, 'GSM2373980': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2265685': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '48h'}, 'GSM2183483': {'line': 'PANC-1 pancreatic cancer cell line (ATCC, CRL-1469)', 'treatment': 'none'}, 'GSM2676808': {'antibody': 'Abcam ab128874', 'treatment': 'JQ1'}, 'GSM3036233': {'antibody': 'none', 'treatment': '4-OHT'}, 'GSM2676806': {'antibody': 'Abcam ab110641', 'treatment': 'DMSO'}, 'GSM2676807': {'antibody': 'Santa Cruz N-20, sc-899', 'treatment': 'DMSO'}, 'GSM2676804': {'antibody': 'Santa Cruz N-20, sc-899', 'treatment': 'JQ1'}, 'GSM2676805': {'antibody': 'Abcam ab128874', 'treatment': 'DMSO'}, 'GSM2676802': {'antibody': 'Abcam ab128874', 'treatment': 'JQ1'}, 'GSM2676803': {'antibody': 'Abcam ab110641', 'treatment': 'JQ1'}, 'GSM2676800': {'antibody': 'Abcam ab110641', 'treatment': 'DMSO'}, 'GSM2676801': {'antibody': 'Santa Cruz N-20, sc-899', 'treatment': 'DMSO'}, 'GSM2084377': {'induction': 'PMA', 'time': '6 hr'}, 'GSM2084376': {'induction': 'PMA', 'time': '3 hr'}, 'GSM2084375': {'induction': 'PMA', 'time': '3 hr'}, 'GSM2084374': {'induction': 'PMA', 'time': '3 hr'}, 'GSM2084373': {'induction': 'None', 'time': '0 hr'}, 'GSM2084372': {'induction': 'None', 'time': '0 hr'}, 'GSM2084371': {'induction': 'None', 'time': '0 hr'}, 'GSM2084379': {'induction': 'PMA', 'time': '6 hr'}, 'GSM2084378': {'induction': 'PMA', 'time': '6 hr'}, 'GSM2303408': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM1970419': {'tissue': 'primary epithelial ovarian tumor', 'site': 'ovary', 'identifier': '3'}, 'GSM1970418': {'tissue': 'lymph node metastasis', 'site': 'lymph node', 'identifier': '2'}, 'GSM1970415': {'tissue': 'lymph node metastasis', 'site': 'lymph node', 'identifier': '1'}, 'GSM1970414': {'tissue': 'peritoneum metastasis', 'site': 'peritoneum', 'identifier': '1'}, 'GSM1970417': {'tissue': 'peritoneum metastasis', 'site': 'peritoneum', 'identifier': '2'}, 'GSM1970416': {'tissue': 'primary epithelial ovarian tumor', 'site': 'ovary', 'identifier': '2'}, 'GSM1970413': {'tissue': 'primary epithelial ovarian tumor', 'site': 'ovary', 'identifier': '1'}, 'GSM2595268': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595269': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595260': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595261': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595262': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595263': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595264': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595265': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595266': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595267': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM903306': {'status': 'ductal carcinoma in situ', 'line': 'Sum225', 'Stage': 'premalignant stage'}, 'GSM903305': {'status': 'ductal carcinoma in situ', 'line': 'Sum102', 'Stage': 'premalignant stage'}, 'GSM903304': {'status': 'ductal carcinoma in situ', 'line': 'DCIS', 'Stage': 'premalignant stage'}, 'GSM903303': {'status': 'normal', 'line': 'MCF10A', 'Stage': 'normal'}, 'GSM1901499': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901498': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901491': {'count': '1', 'ercc_mix': 'mix2', 'type': 'duct', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901490': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901493': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901492': {'count': '1', 'ercc_mix': 'mix2', 'type': 'pp', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901495': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901494': {'count': '1', 'ercc_mix': 'mix2', 'type': 'duct', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1573658': {'line': 'LNCaP prostate cancer cells', 'passages': '10', 'genotype': 'WT', 'treatment': 'control'}, 'GSM1573659': {'line': 'LNCaP prostate cancer cells', 'passages': '10', 'genotype': 'WT', 'treatment': 'control'}, 'GSM2047552': {'well': 'C12', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047553': {'well': 'D01', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047550': {'well': 'C10', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047551': {'well': 'C11', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047556': {'well': 'D04', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047557': {'well': 'D05', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2324259': {'group': 'HighA422', 'type': 'PBMC', 'day': '84', 'subjectid': '7724'}, 'GSM2324258': {'group': 'HighA422', 'type': 'PBMC', 'day': '56', 'subjectid': '7724'}, 'GSM2324257': {'group': 'HighA422', 'type': 'PBMC', 'day': '28', 'subjectid': '7724'}, 'GSM2324256': {'group': 'HighA422', 'type': 'PBMC', 'day': '14', 'subjectid': '7724'}, 'GSM2047558': {'well': 'D06', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047559': {'well': 'D07', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2324253': {'group': 'HighA422', 'type': 'PBMC', 'day': '56', 'subjectid': '6923'}, 'GSM2324252': {'group': 'HighA422', 'type': 'PBMC', 'day': '28', 'subjectid': '6923'}, 'GSM2324251': {'group': 'HighA422', 'type': 'PBMC', 'day': '14', 'subjectid': '6923'}, 'GSM2324250': {'group': 'HighA422', 'type': 'PBMC', 'day': '0', 'subjectid': '6923'}, 'GSM1648853': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CHAP_1_5', 'biopsy': 'n/a', 'years': '2.57', 'volume': '1184', 'type': 'iPSC-derived neural progenitors', 'id': 'CHAP'}, 'GSM1648852': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CHAP_1_2', 'biopsy': 'n/a', 'years': '2.57', 'volume': '1184', 'type': 'iPSC-derived neural progenitors', 'id': 'CHAP'}, 'GSM1648851': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CENT_3_6', 'biopsy': 'n/a', 'years': '3.58', 'volume': '1389', 'type': 'iPSC-derived neural progenitors', 'id': 'CENT'}, 'GSM1648850': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CENT_3_3', 'biopsy': 'n/a', 'years': '3.58', 'volume': '1389', 'type': 'iPSC-derived neural progenitors', 'id': 'CENT'}, 'GSM1648857': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'COVE_3_1', 'biopsy': 'n/a', 'years': '2.43', 'volume': '1225', 'type': 'iPSC-derived neural progenitors', 'id': 'COVE'}, 'GSM1648856': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CLUE_4_7', 'biopsy': 'n/a', 'years': '3.41', 'volume': '1206', 'type': 'iPSC-derived neural progenitors', 'id': 'CLUE'}, 'GSM1648855': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CLAY_1_1', 'biopsy': 'n/a', 'years': '2.7', 'volume': '1182', 'type': 'iPSC-derived neural progenitors', 'id': 'CLAY'}, 'GSM1648854': {'group': 'CONTROL', 'gender': 'Male', 'clone': 'CLAY_1_2', 'biopsy': 'n/a', 'years': '2.7', 'volume': '1182', 'type': 'iPSC-derived neural progenitors', 'id': 'CLAY'}, 'GSM1648859': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_6', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSCs', 'id': 'ABLE'}, 'GSM1648858': {'group': 'ASD', 'gender': 'Male', 'clone': 'ABLE_3_12', 'biopsy': '16 (Pre-verbal/Single Words)', 'years': '2.52', 'volume': '1271', 'type': 'iPSCs', 'id': 'ABLE'}, 'GSM2231876': {'culture': '21 days', 'type': 'HES3 hESC derived INS-GFP+ cells', 'treatment': 'DMSO'}, 'GSM2293588': {'replicate': 'A', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '1'}, 'GSM2293589': {'replicate': 'B', 'line': 'RPE1', 'ploidy': '2n', 'isolate': '1'}, 'GSM1574803': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM2293582': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '2n', 'RNAi': 'Anillin', 'sample_id': '16'}, 'GSM2293583': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '2n', 'RNAi': 'Anillin', 'sample_id': '17'}, 'GSM2293580': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '4n', 'RNAi': 'Random', 'sample_id': '14'}, 'GSM2293581': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '4n', 'RNAi': 'Random', 'sample_id': '15'}, 'GSM2293586': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '4n', 'RNAi': 'Anillin', 'sample_id': '20'}, 'GSM2293587': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '4n', 'RNAi': 'Anillin', 'sample_id': '21'}, 'GSM2293584': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '2n', 'RNAi': 'Anillin', 'sample_id': '18'}, 'GSM2293585': {'subtype': 'ribo-depleted Total RNA', 'line': 'RPE1', 'ploidy': '4n', 'RNAi': 'Anillin', 'sample_id': '19'}, 'GSM1574801': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1574806': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1574807': {'cultures': '(+EtOH -E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'hormone-starved'}, 'GSM1574804': {'cultures': '(+E2)', 'line': 'MCF-7', 'type': 'MCF-7_WT', 'treatment': 'estradiol stimulation'}, 'GSM2166219': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166218': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166217': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166216': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166215': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166214': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166213': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166212': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166211': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166210': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2266025': {'type': 'human embryonic stem cell', 'condition': 'hPSC medium containing inhibitor(i)s (GSK3i, ERKi, p38i, JNKi)4 on MEF'}, 'GSM2266024': {'type': 'human embryonic stem cell', 'condition': 'hPSC medium containing inhibitor(i)s (GSK3i, ERKi, p38i, JNKi)4 on MEF'}, 'GSM2266027': {'type': 'hPGC like cell derived from human embryonic stem cell'}, 'GSM2561440': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM1620473': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2597644': {'antibody': 'Input', 'treatment': 'DAC'}, 'GSM2597645': {'antibody': 'H3K23ac', 'treatment': 'SB939'}, 'GSM2597646': {'antibody': 'H4K8ac', 'treatment': 'SB939'}, 'GSM2597647': {'antibody': 'H3K14ac', 'treatment': 'SB939'}, 'GSM2597640': {'antibody': 'H4K12ac', 'treatment': 'DAC'}, 'GSM2597641': {'antibody': 'H3K4ac', 'treatment': 'DAC'}, 'GSM2597642': {'antibody': 'H2AK9ac', 'treatment': 'DAC'}, 'GSM2597643': {'antibody': 'H2BK5ac', 'treatment': 'DAC'}, 'GSM2467489': {'line': 'HG03729', 'type': 'Lymphocyte'}, 'GSM2597648': {'antibody': 'H3K18ac', 'treatment': 'SB939'}, 'GSM2597649': {'antibody': 'H4K12ac', 'treatment': 'SB939'}, 'GSM1620472': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2455759': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455758': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1712134': {'line': 'MR49F', 'treatment': 'DHT-JQ1:CSM'}, 'GSM2455753': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455752': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455751': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455750': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455757': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455756': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455755': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455754': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2840168': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1620470': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2840162': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840163': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840160': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840161': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840166': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840167': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840164': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2840165': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM1239141': {'status': '+ / + / -', 'grade': '2', 'subtype': 'polyA enriched RNA', 'id': 'BRB215', 'size': '3.5cm'}, 'GSM1239140': {'status': '- / - / +', 'grade': '3', 'subtype': 'polyA enriched RNA', 'id': 'BRB212', 'size': '2cm'}, 'GSM1239143': {'status': '+ / + / +', 'grade': '3', 'subtype': 'polyA enriched RNA', 'id': 'BRB277', 'size': '3cm'}, 'GSM1239142': {'status': '+ / + / +', 'grade': '2', 'subtype': 'polyA enriched RNA', 'id': 'BRB248', 'size': '2cm'}, 'GSM1239144': {'status': '+ / + / +', 'grade': '2', 'subtype': 'polyA enriched RNA', 'id': 'MCJBCR028', 'size': '1cm'}, 'GSM938910': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'RNAIP-IgG', 'type': 'B-cells', 'treatment': 'RNA-IP using control IgG'}, 'GSM1631668': {'diagnosis': 'Healthy', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ healthy control, myelin tetramer positive'}, 'GSM1631669': {'diagnosis': 'Healthy', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ healthy control, myelin tetramer positive'}, 'GSM1631665': {'diagnosis': 'Healthy', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ healthy control, myelin tetramer negative'}, 'GSM1631666': {'diagnosis': 'Healthy', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ healthy control, myelin tetramer negative'}, 'GSM1631667': {'diagnosis': 'Healthy', 'population': 'CCR6+, CD4+ T cells from HLA-DR4+ healthy control, myelin tetramer negative'}, 'GSM2486772': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2390947': {'disease': 'Multiple Sclerosis'}, 'GSM2285747': {'status': 'healthy volunteer', 'gender': 'female', 'age': '27', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2632257': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2285745': {'status': 'healthy volunteer', 'gender': 'female', 'age': '22', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285744': {'status': 'healthy volunteer', 'gender': 'female', 'age': '65', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285743': {'status': 'healthy volunteer', 'gender': 'female', 'age': '56', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285742': {'status': 'healthy volunteer', 'gender': 'female', 'age': '27', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285741': {'status': 'healthy volunteer', 'gender': 'female', 'age': '26', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2779581': {'duration': '2 day', 'line': 'M229SDR', 'type': 'Melanoma cell line', 'cells': 'PD-1', 'treatment': '20 min of STP, 0.5 uM'}, 'GSM2779580': {'duration': '1 day', 'line': 'M229SDR', 'type': 'Melanoma cell line', 'cells': 'PD-1', 'treatment': '20 min of STP, 0.5 uM'}, 'GSM2779583': {'duration': '2 day', 'line': 'M229DDR', 'type': 'Melanoma cell line', 'cells': 'GFP', 'treatment': 'none'}, 'GSM2779582': {'duration': '1 day', 'line': 'M229DDR', 'type': 'Melanoma cell line', 'cells': 'GFP', 'treatment': 'none'}, 'GSM2779585': {'duration': '2 day', 'line': 'M229DDR', 'type': 'Melanoma cell line', 'cells': 'GFP', 'treatment': '20 min of STP, 0.5 uM'}, 'GSM2632255': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2285749': {'status': 'healthy volunteer', 'gender': 'female', 'age': '48', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285748': {'status': 'healthy volunteer', 'gender': 'female', 'age': '68', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2665932': {'age': 'Day 130', 'well': 'B4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665933': {'age': 'Day 130', 'well': 'A8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665930': {'age': 'Day 130', 'well': 'A1', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2632254': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2665936': {'age': 'Day 130', 'well': 'A3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665937': {'age': 'Day 130', 'well': 'A12', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665934': {'age': 'Day 130', 'well': 'F5', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665935': {'age': 'Day 130', 'well': 'F1', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM1172893': {'subtype': 'unknown', 'line': 'MX1', 'type': 'breast cancer'}, 'GSM2632253': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2665938': {'age': 'Day 130', 'well': 'A10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665939': {'age': 'Day 130', 'well': 'F2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM1172897': {'subtype': 'Basal', 'line': 'SUM149PT', 'type': 'breast cancer'}, 'GSM1172896': {'subtype': 'Claudin-low', 'line': 'SUM1315', 'type': 'breast cancer'}, 'GSM1172895': {'subtype': 'Luminal', 'line': 'SKBR3', 'type': 'breast cancer'}, 'GSM2632252': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632251': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632250': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2454088': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM1624308': {'gender': 'M', 'age': '39', 'tissue': 'skin', 'disease': 'C', 'subject': '17'}, 'GSM2373509': {'differentiation': 'undifferentiated', 'type': 'H9 line'}, 'GSM2373508': {'differentiation': 'undifferentiated', 'type': 'H9 line'}, 'GSM2373503': {'line': 'HBL-6'}, 'GSM2373502': {'line': 'BCBL-1'}, 'GSM2373501': {'line': 'BCBL-1'}, 'GSM2373500': {'line': 'BCBL-1'}, 'GSM2373507': {'differentiation': 'undifferentiated', 'type': 'H9 line'}, 'GSM2373506': {'line': 'HBL-6'}, 'GSM2373505': {'line': 'HBL-6'}, 'GSM2373504': {'line': 'HBL-6'}, 'GSM1677109': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Co-RNAi against RC3H1 and RC3H2, addition of 50 ug/ml ActD 1h before harvesting', 'barcode': 'GTCCGCA'}, 'GSM1677108': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Co-RNAi against RC3H1 and RC3H2, no addition of ActD', 'barcode': 'CCGTCCC'}, 'GSM1496164': {'line': 'HeLa Kyoto', 'expression': 'none', 'RNAi': 'PRPF8 RNAi'}, 'GSM1677107': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Co-RNAi against RC3H1 and RC3H2, addition of 50 ug/ml ActD 2h before harvesting', 'barcode': 'CTTGTAA'}, 'GSM1496162': {'line': 'HeLa Kyoto', 'expression': 'none', 'RNAi': 'SNW1 RNAi'}, 'GSM1677105': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Co-RNAi against RC3H1 and RC3H2, no addition of ActD', 'barcode': 'GCCAATA'}, 'GSM1496163': {'line': 'HeLa Kyoto', 'expression': 'none', 'RNAi': 'PRPF8 RNAi'}, 'GSM1677104': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Mock treatment, addition of 50 ug/ml ActD 2h before harvesting', 'barcode': 'ATGTCAG'}, 'GSM1496160': {'line': 'HeLa Kyoto', 'expression': 'none', 'RNAi': 'control RNAi'}, 'GSM2284062': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 7', 'matrix': 'LM411-E8'}, 'GSM2193054': {'sirna': 'PAX8 siRNA pool', 'line': 'FT33', 'type': 'Immortalized fallopian tube secretory cell', 'source': 'Catalogue s15403, s15404, s15405, Ambion'}, 'GSM1520924': {'vendor': 'Santa Cruz', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'vector control', 'treatment': 'pMY56 (control)', 'line': 'THP1', 'antibody': 'Pol II'}, 'GSM1677101': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Mock treatment, addition of 50 ug/ml ActD 2h before harvesting', 'barcode': 'ACAGTGA'}, 'GSM1520925': {'vendor': 'Santa Cruz', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'PAF1 knockdown', 'treatment': 'pMY201 (CDK9 shRNA #1)', 'line': 'THP1', 'antibody': 'Pol II'}, 'GSM1603328': {'cl': '105', 'ca': '9.2', 'dyslipidemia': 'Yes', 'year': '--', 'statin': '--', 'creatinine': '0.94', 'id': 'S15', 'co2': '22', 'rr': '24', 'plavix': 'Yes', 'na': '137', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '155', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '12', 'smoking': 'Yes', 'day': '0.5', 'ticagrelor': 'Yes', 'troponin': '55.18', 'gender': 'F', 'k': '3.8', 'batch': '2', 'prasugrel': '--', 'cad': 'No'}, 'GSM1677100': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Mock treatment, addition of 50 ug/ml ActD 1h before harvesting', 'barcode': 'TGACCAA'}, 'GSM1603329': {'cl': '103', 'ca': '8.7', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '1.1', 'id': 'S16', 'co2': '28.3', 'rr': '21', 'plavix': 'Yes', 'na': '137', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '120', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '12', 'smoking': 'Yes', 'day': '--', 'ticagrelor': 'Yes', 'troponin': '2.56', 'gender': 'M', 'k': '3.8', 'batch': '1', 'prasugrel': '--', 'cad': 'No'}, 'GSM1081380': {'sirna': 'EGFPFL pro-siRNA', 'line': 'HeLa-d1EGFP', 'type': 'derived from HeLa cells'}, 'GSM2048881': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2048880': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'KRAS-G12V'}, 'GSM2048883': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'BRAF-V600E'}, 'GSM2048882': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'KRAS-G12V'}, 'GSM2048885': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'BRAF-V600E'}, 'GSM2416852': {'antibody': 'anti-Flag', 'line': 'HeLa', 'type': 'HeLa with expressing Flag-NF90', 'treatment': 'None', 'sequence': 'NNNGGCGNN'}, 'GSM2048887': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected epithelial cells', 'mutation': 'BRAF-V600E'}, 'GSM2048886': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2048889': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'APC-R876'}, 'GSM2048888': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected epithelial cells', 'mutation': '--'}, 'GSM2072987': {'line': 'Huh7', 'type': 'HCC', 'variation': 'control'}, 'GSM2413548': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413549': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413544': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413545': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2193056': {'sirna': 'non-targeting siRNA control', 'line': 'JHOS4', 'type': 'High grade serous ovarian carcinoma'}, 'GSM2413547': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413540': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413541': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413542': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413543': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2394448': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siERG, control, 4h', 'passage': '6 to 10'}, 'GSM2158168': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158169': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158160': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158161': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158162': {'gender': 'F', 'age': '32', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2158163': {'gender': 'F', 'age': '32', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2158164': {'gender': 'F', 'age': '32', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2158165': {'gender': 'F', 'age': '32', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 2', 'ethnicity': 'C'}, 'GSM2158166': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158167': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM1105833': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105832': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105831': {'subtypes': 'Not assigned', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105830': {'subtypes': 'I', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105837': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105836': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105835': {'subtypes': 'Not assigned', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105834': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105839': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM1105838': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2839733': {'cohort': 'Original', 'age': '61', 'id': 'A2', 'Sex': 'Female'}, 'GSM2550268': {'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2839732': {'cohort': 'Original', 'age': '54', 'id': 'A1', 'Sex': 'Male'}, 'GSM2610525': {'type': 'hepatocyte'}, 'GSM2610524': {'type': 'hepatocyte, sinusoidal endothelial cell, and stellate cell'}, 'GSM2610526': {'type': 'hepatocyte'}, 'GSM2610521': {'type': 'liver progenitor cell'}, 'GSM2610523': {'type': 'hepatocyte, sinusoidal endothelial cell, and stellate cell'}, 'GSM2610522': {'type': 'liver progenitor cell'}, 'GSM2264767': {'line': 'H1', 'type': 'human embryonic stem cells (hESC)'}, 'GSM2264768': {'line': 'H1', 'type': 'human embryonic stem cells (hESC)'}, 'GSM2264769': {'line': 'H1', 'type': 'human embryonic stem cells (hESC)'}, 'GSM2515769': {'transgene': 'DUX4CA', 'type': 'human induced pluripotent stem cells', 'condition': '24hr dox-induction'}, 'GSM2515768': {'transgene': 'DUX4CA', 'type': 'human induced pluripotent stem cells', 'condition': '14hr dox-induction'}, 'GSM2046669': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM2515763': {'transgene': 'Luciferase', 'type': 'human induced pluripotent stem cells', 'condition': '14hr dox-induction'}, 'GSM2046668': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM2515765': {'transgene': 'Luciferase', 'type': 'human induced pluripotent stem cells', 'condition': '24hr dox-induction'}, 'GSM2515764': {'transgene': 'Luciferase', 'type': 'human induced pluripotent stem cells', 'condition': '14hr dox-induction'}, 'GSM2515767': {'transgene': 'DUX4CA', 'type': 'human induced pluripotent stem cells', 'condition': '14hr dox-induction'}, 'GSM2515766': {'transgene': 'Luciferase', 'type': 'human induced pluripotent stem cells', 'condition': '24hr dox-induction'}, 'GSM2144550': {'markers': 'not sorted'}, 'GSM2046667': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM2144552': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144553': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144554': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144555': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2144556': {'markers': 'EPCAM+/CD44+/CD49f+'}, 'GSM2046666': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM2144558': {'markers': 'not sorted'}, 'GSM2144559': {'markers': 'not sorted'}, 'GSM1847262': {'line': 'MCF7', 'type': 'breast adenocarcinoma', 'state': 'AKT1 WT'}, 'GSM2046664': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM1522567': {'line': 'GBM1A', 'type': 'glioblastoma cell line'}, 'GSM2536062': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10652', 'samplename': '1D_T1D2-REDRAW _C44', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34752', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10652', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C44'}, 'GSM958728': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '10565', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM1847261': {'line': 'MCF7', 'type': 'breast adenocarcinoma', 'state': 'AKT1 WT'}, 'GSM2194535': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2816149': {'line': 'H9'}, 'GSM2535658': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1121', 'samplename': '1_413UNST_C51', 'seqsite': 'BRI', 'sampleID': 'S13207', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1121', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C51'}, 'GSM2535653': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1115', 'samplename': '1_413UNST_C93', 'seqsite': 'BRI', 'sampleID': 'S13237', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1115', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C93'}, 'GSM2816142': {'line': 'H9'}, 'GSM2535651': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1113', 'samplename': '1_413UNST_C81', 'seqsite': 'BRI', 'sampleID': 'S13196', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1113', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C81'}, 'GSM2816140': {'line': 'H9'}, 'GSM2816147': {'line': 'H9'}, 'GSM2816146': {'line': 'H9'}, 'GSM2816145': {'line': 'H9'}, 'GSM2816144': {'line': 'H9'}, 'GSM1588858': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588859': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588856': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588857': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588854': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588855': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588852': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588853': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1657730': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr. RO-3306 was then removed and mitotic cells were harvested 45 min later through mitotic shake-off', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'M'}, 'GSM1657731': {'synchronization': 'Cells were treated with 6 micromolar RO-3306 for 18 hr. RO-3306 was then removed and mitotic cells were harvested 45 min later through mitotic shake-off', 'type': 'RPE-1 cells immortalized with hTERT', 'treatment': 'cells were pretreated with cycloheximide', 'timepoint': 'M'}, 'GSM2411331': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2248003': {'line': 'HCC44', 'grnas': 'ZEB1'}, 'GSM2411333': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411332': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411335': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411334': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411337': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411336': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411339': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411338': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2648922': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': '10 nM E2', 'time': '45 minutes', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM2648923': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': '10 nM R5020', 'time': '45 minutes', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM2248007': {'line': 'HCC44', 'grnas': 'RFP'}, 'GSM3711294': {'mediancvcoverage': '0.586343', 'percentaligned': '0.958264054', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '6'}, 'GSM2248006': {'line': 'HCC44', 'grnas': 'GFP'}, 'GSM1376055': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376054': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376057': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376056': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376051': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1553106': {'type': 'Wi-38 fibroblasts', 'doublings': '35'}, 'GSM1376053': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376052': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1847266': {'line': 'HCT116', 'type': 'colon carcinoma', 'state': 'AKT1 WT'}, 'GSM2248004': {'line': 'HCC44', 'grnas': 'ZEB1'}, 'GSM1376059': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1376058': {'state': 'Normal', 'tissue': 'lung'}, 'GSM3190587': {'boca': 'Yes', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.644438'}, 'GSM3190586': {'boca': 'Yes', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.899453'}, 'GSM3190585': {'boca': 'Yes', 'years': '16', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.018888'}, 'GSM3190584': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C50', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.641729'}, 'GSM3190583': {'boca': 'Yes', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C17', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.548643'}, 'GSM2394850': {'status': 'XLA Patient', 'age': '13', 'type': 'CD14-Positive Monocytes cells'}, 'GSM3190581': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-B69', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'Yes', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.9', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.670591'}, 'GSM3190580': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A104', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.350838'}, 'GSM3190589': {'boca': 'No', 'years': '15', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '9.193108'}, 'GSM3190588': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '7.6195'}, 'GSM2194531': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2374801': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2394851': {'status': 'XLA Patient', 'age': '18', 'type': 'CD14-Positive Monocytes cells'}, 'GSM2287076': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2476828': {'type': 'MCF7', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline + E2'}, 'GSM1281861': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '10', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '155'}, 'GSM1281860': {'status': 'No LVAD', 'pacemaker': 'No', 'fraction': '10', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '155'}, 'GSM1281863': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '10', 'gender': 'Male', 'age': '64', 'tissue': 'Serum', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '155'}, 'GSM1281862': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '10', 'gender': 'Male', 'age': '64', 'tissue': 'Serum', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2007', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '155'}, 'GSM1281865': {'status': 'No LVAD', 'pacemaker': 'No', 'fraction': '12', 'gender': 'Male', 'age': '70', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '83'}, 'GSM1281864': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '12', 'gender': 'Male', 'age': '70', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '83'}, 'GSM1281867': {'status': 'No LVAD', 'pacemaker': 'No', 'fraction': '12', 'gender': 'Male', 'age': '70', 'tissue': 'Serum', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '83'}, 'GSM1281866': {'status': 'Explantation', 'pacemaker': 'No', 'fraction': '12', 'gender': 'Male', 'age': '70', 'tissue': 'Serum', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': 'IV', 'device': 'HeartMate II', 'lvad': '83'}, 'GSM1281869': {'status': 'No LVAD', 'pacemaker': 'NA', 'fraction': '20', 'gender': 'Male', 'age': '68', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1991', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '54'}, 'GSM1281868': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '20', 'gender': 'Male', 'age': '68', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1991', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '54'}, 'GSM2081488': {'region': \"Brodmann's Area 24\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM1906588': {'modification': 'Stably transduced with shRNA to SREBF1', 'line': 'THP1 monocytic cells', 'condition': '80nM PMA for 72h'}, 'GSM2391122': {'disease': 'NSCLC'}, 'GSM2287070': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2476829': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM2072159': {'status': 'HIV-', 'tissue': 'Tonsil', 'phenotype': 'CD27highCD45ROlow'}, 'GSM2274859': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-18', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954-44', 'trunkbarcode': '930954', 'sampleID': 'S34290', 'c1captureannotation': 'single cell', 'flowcellid': 'C81LMANXX', 'status': 'R', 'samplelabel': 'lib10323', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '3', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White', 'c1capturesite': 'C71', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050085', 'libraryid': 'lib10323', 'studysiteshort': 'YALE'}, 'GSM1906589': {'modification': 'Stably transduced with shRNA to SREBF2', 'line': 'THP1 monocytic cells', 'condition': '80nM PMA for 72h'}, 'GSM2274857': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33342', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9744', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C53', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9744', 'studysiteshort': 'YALE'}, 'GSM2274856': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33340', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9742', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C90', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9742', 'studysiteshort': 'YALE'}, 'GSM2274855': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33339', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9741', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C78', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9741', 'studysiteshort': 'YALE'}, 'GSM2274854': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33338', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9740', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C70', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9740', 'studysiteshort': 'YALE'}, 'GSM2274853': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33336', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9738', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C64', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9738', 'studysiteshort': 'YALE'}, 'GSM2274852': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33335', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9737', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C58', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9737', 'studysiteshort': 'YALE'}, 'GSM2274851': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33332', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9734', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C52', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9734', 'studysiteshort': 'YALE'}, 'GSM2274850': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33329', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9731', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C36', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9731', 'studysiteshort': 'YALE'}, 'GSM1946140': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19128', 'for': '60min'}, 'GSM1489566': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '13U2'}, 'GSM1489567': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '13U3'}, 'GSM1489564': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '13T3'}, 'GSM1489565': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '13T4'}, 'GSM2170822': {'stage': 'iPSC line'}, 'GSM1331344': {'line': 'Hek293T', 'type': 'ribosome protected fragment', 'treatment': '0.5 hour arsenite'}, 'GSM1331345': {'line': 'Hek293T', 'type': 'â\\x80\\x9cnakedâ\\x80\\x9d mRNAseq', 'treatment': '0.5 hour arsenite'}, 'GSM1331346': {'line': 'Hek293T', 'type': 'ribosome protected fragment', 'treatment': 'vehicle'}, 'GSM1331347': {'line': 'Hek293T', 'type': 'â\\x80\\x9cnakedâ\\x80\\x9d mRNAseq', 'treatment': 'vehicle'}, 'GSM1212205': {'tissue': 'human spleen', 'type': 'Ambion'}, 'GSM1212204': {'tissue': 'human placenta', 'type': 'Ambion'}, 'GSM1331342': {'line': 'Hek293T', 'type': 'ribosome protected fragment', 'treatment': 'vehicle'}, 'GSM1331343': {'line': 'Hek293T', 'type': 'â\\x80\\x9cnakedâ\\x80\\x9d mRNAseq', 'treatment': 'vehicle'}, 'GSM1489561': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '12U2'}, 'GSM1331348': {'line': 'Hek293T', 'type': 'ribosome protected fragment', 'treatment': '0.5 hour arsenite'}, 'GSM1331349': {'line': 'Hek293T', 'type': 'â\\x80\\x9cnakedâ\\x80\\x9d mRNAseq', 'treatment': '0.5 hour arsenite'}, 'GSM1297590': {'stage': 'orthochromatophilic erythroblasts'}, 'GSM2722923': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.066', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.146', 'age': '68', 'tcga_subtype_dif': '-0.264', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'ASIAN', 'tcga_subtype_imr': '0.141', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722921': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': 'NA', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': 'NA', 'age': '67', 'tcga_subtype_dif': 'NA', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': 'NA', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722920': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': 'NA', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': 'NA', 'age': '49', 'tcga_subtype_dif': 'NA', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'HISPANIC', 'tcga_subtype_imr': 'NA', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722926': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.355', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.22', 'age': '42', 'tcga_subtype_dif': '0.663', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.011', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722928': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '0.578', 'vitalstatus': 'Dead', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.023', 'age': '51', 'tcga_subtype_dif': '-0.133', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.419', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM1489569': {'point': 'post-training period 1', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '14U2'}, 'GSM1712259': {'state': 'healthy', 'tissue': 'Venous peripheral blood', 'type': 'B lymphocytes'}, 'GSM1712258': {'state': 'healthy', 'tissue': 'Venous peripheral blood', 'type': 'T lymphocytes'}, 'GSM2348608': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348609': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1202464': {'tissue': 'bone marrow'}, 'GSM1202465': {'tissue': 'blood'}, 'GSM1202466': {'tissue': 'blood'}, 'GSM1202467': {'tissue': 'bone marrow'}, 'GSM2348602': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348603': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348600': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348601': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348606': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348607': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348604': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348605': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565106': {'construction': 'PLATE-Seq', 'drug': 'Afatinib'}, 'GSM2565107': {'construction': 'PLATE-Seq', 'drug': 'Doxorubicin'}, 'GSM2565104': {'construction': 'PLATE-Seq', 'drug': 'Carfilzomib (PR-171)'}, 'GSM2565105': {'construction': 'PLATE-Seq', 'drug': 'Epirubicin Hydrochloride'}, 'GSM2565102': {'construction': 'PLATE-Seq', 'drug': 'Pentostatin'}, 'GSM2565103': {'construction': 'PLATE-Seq', 'drug': 'Mitoxanthrone dihydrochloride'}, 'GSM2565100': {'construction': 'PLATE-Seq', 'drug': 'Amsacrine'}, 'GSM2565101': {'construction': 'PLATE-Seq', 'drug': 'Regorafenib (BAY 73-4506)'}, 'GSM2565108': {'construction': 'PLATE-Seq', 'drug': 'Ceritinib (LDK378)'}, 'GSM2565109': {'construction': 'PLATE-Seq', 'drug': 'Decitabine'}, 'GSM2204696': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2204697': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2132128': {'tissue': 'kidney', 'type': 'Podocytes'}, 'GSM2132129': {'tissue': 'kidney', 'type': 'Podocytes'}, 'GSM2306679': {'line': 'PLC/PRF/5', 'variation': 'vector control'}, 'GSM2306678': {'line': 'Huh7', 'variation': 'SCD1 knockdown'}, 'GSM2098420': {'line': 'HeLa S3', 'sirna': 'siRNA2_CTCF', 'passage': '5 to 8'}, 'GSM2306677': {'line': 'Huh7', 'variation': 'vector control'}, 'GSM1937994': {'line': 'HEK293T', 'transfection': '48 hours'}, 'GSM1556293': {'line': 'CRL-2847', 'type': 'chondrocytes (ATCC: CRL-2847) grown in culture'}, 'GSM2473258': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR243233-1)', 'genotype': 'YFFF'}, 'GSM2473259': {'antibody': 'H3K4me3 (Abcam, ab8580, lot GR240214-1)', 'genotype': 'rWT'}, 'GSM2204698': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2473252': {'antibody': 'HA (Abcam, ab9110, lot GR235874-8)', 'genotype': 'rWT'}, 'GSM2473253': {'antibody': 'HA (Abcam, ab9110, lot GR235874-8)', 'genotype': 'rWT'}, 'GSM2204699': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM2473256': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR243233-1)', 'genotype': 'rWT'}, 'GSM2473257': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR243233-1)', 'genotype': 'rWT'}, 'GSM2473254': {'antibody': 'HA (Abcam, ab9110, lot GR235874-8)', 'genotype': 'YFFF'}, 'GSM2473255': {'antibody': 'HA (Abcam, ab9110, lot GR235874-8)', 'genotype': 'YFFF'}, 'GSM2451108': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451109': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1649153': {'culture': 'alone', 'line': 'ALL leukemia cell line Nalm6', 'replicate': '1', 'time': '0 h'}, 'GSM1581138': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581139': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581132': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581133': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581130': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581131': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581136': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581137': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM1581134': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM1581135': {'condition': 'Control', 'point': 'Post-deployment'}, 'GSM2141623': {'individual': 'EU210', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141622': {'individual': 'EU210', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1585235': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM2635708': {'genotype': 'WT', 'treatment_time': '72h', 'treatment': 'ChIR'}, 'GSM2451107': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1950255': {'line': 'SUIT2', 'treatment': 'KMT2D siRNA2'}, 'GSM1950256': {'line': 'SUIT2', 'treatment': 'KMT2C siRNA1'}, 'GSM1950251': {'line': 'SUIT2', 'treatment': 'Control siRNA'}, 'GSM1950253': {'line': 'SUIT2', 'treatment': 'KMT2D siRNA1'}, 'GSM1950258': {'line': 'SUIT2', 'treatment': 'KMT2C siRNA2'}, 'GSM2194443': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194442': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194441': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194440': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194447': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194446': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1585234': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM2194444': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194449': {'type': 'mesenchyme', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194448': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2392178': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2719756': {'source': 'H3K27me3 (Active Motif, #39155)', 'RNAi': 'scrambled control'}, 'GSM2719757': {'source': 'H3K27me3 (Active Motif, #39155)', 'RNAi': 'scrambled control'}, 'GSM2719754': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719755': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719752': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'scrambled control'}, 'GSM2719753': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'scrambled control'}, 'GSM2719750': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719751': {'source': 'H3K27ac (Abcam, ab4729)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719758': {'source': 'H3K27me3 (Active Motif, #39155)', 'RNAi': 'ARID1B RNAi'}, 'GSM2719759': {'source': 'H3K27me3 (Active Motif, #39155)', 'RNAi': 'ARID1B RNAi'}, 'GSM2204157': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM1395720': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395721': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395722': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395723': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395724': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395725': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395726': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395727': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395728': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395729': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1821982': {'type': 'lymph node mix', 'disease': 'Mantle cell lymphoma'}, 'GSM1821980': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM1821981': {'type': 'peripheral blood', 'disease': 'Mantle cell lymphoma'}, 'GSM2431690': {'number': '1_9', 'timepoint': '06h', 'batch': 'B1', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D4'}, 'GSM3579146': {'line': 'U251', 'type': 'glioma', 'genotype': 'WT'}, 'GSM2671239': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1412735': {'gender': 'Female', 'tissue': 'FSHD1 myotubes'}, 'GSM1412734': {'gender': 'Female', 'tissue': 'FSHD1 myoblasts'}, 'GSM1412733': {'gender': 'Male', 'tissue': 'FSHD1 myotubes'}, 'GSM1412732': {'gender': 'Male', 'tissue': 'FSHD1 myoblasts'}, 'GSM1412731': {'gender': 'Female', 'tissue': 'FSHD2 myotubes'}, 'GSM1412730': {'gender': 'Female', 'tissue': 'FSHD2 myoblasts'}, 'GSM2664354': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1826293': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy with hippocampal sclerosis'}, 'GSM1826292': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy with hippocampal sclerosis'}, 'GSM1826297': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1826296': {'gender': 'M', 'diagnosis': 'mesial temporal lobe epilepsy'}, 'GSM1826295': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy with hippocampal sclerosis'}, 'GSM1826294': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy with hippocampal sclerosis'}, 'GSM2858970': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS15 sorted by FACS for low expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858971': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS42, spontaneously undergoing an EndoMT at very late passage'}, 'GSM1826299': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy with hippocampal sclerosis'}, 'GSM1826298': {'gender': 'F', 'diagnosis': 'mesial temporal lobe epilepsy with hippocampal sclerosis'}, 'GSM2858974': {'origin': 'cord blood', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS42 sorted by FACS for low expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858975': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES and 100 ng/mL doxycycline', 'type': 'eAEP line MS68, spontaneously undergoing an EndoMT'}, 'GSM2858976': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS68 sorted by FACS for high expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM2858977': {'origin': 'adult bone marrow', 'medium': 'EGM2 (Lonza) supplemented with 10 mM HEPES', 'type': 'Mature progeny of line MS68 sorted by FACS for mid expression of PECAM1 from a population of cells spontaneously undergoing an EndoMT'}, 'GSM1405889': {'type': 'A549 (human lung epithelial cells)'}, 'GSM1405888': {'type': 'A549 (human lung epithelial cells)'}, 'GSM2579318': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579319': {'subset': 'NAIVE CD3+CD4+CCR7+CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579316': {'subset': 'TCM CD3+CD4+CCR7+CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579317': {'subset': 'TEM CD3+CD4+CCR7-CD45RA- T cells', 'tissue': 'PBMC', 'group': 'San Diego Negative'}, 'GSM2579314': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Negative'}, 'GSM1405886': {'type': 'A549 (human lung epithelial cells)'}, 'GSM2579312': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Negative'}, 'GSM2579313': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Negative'}, 'GSM2579310': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM2579311': {'subset': 'TEMRA CD3+CD4+CCR7-CD45RA+ T cells', 'tissue': 'PBMC', 'group': 'Sri Lanka Secondary'}, 'GSM1647070': {'illumina_index': '12', 'point': '4', 'batch': '10', 'agent': 'GC', 'rin': '3.7', 'individual': 'M374'}, 'GSM1647071': {'illumina_index': '13', 'point': '18', 'batch': '10', 'agent': 'Rv', 'rin': '10', 'individual': 'M372'}, 'GSM1647072': {'illumina_index': '14', 'point': '18', 'batch': '10', 'agent': 'BCG', 'rin': '7.2', 'individual': 'M377'}, 'GSM1647073': {'illumina_index': '15', 'point': '18', 'batch': '10', 'agent': 'none', 'rin': '2.7', 'individual': 'M374'}, 'GSM1647074': {'illumina_index': '16', 'point': '4', 'batch': '10', 'agent': 'GC', 'rin': '7.2', 'individual': 'M375'}, 'GSM1647075': {'illumina_index': '18', 'point': '48', 'batch': '10', 'agent': 'Smeg', 'rin': '3.1', 'individual': 'M374'}, 'GSM1647076': {'illumina_index': '19', 'point': '4', 'batch': '10', 'agent': 'Rv+', 'rin': '9.2', 'individual': 'M372'}, 'GSM1647077': {'illumina_index': '2', 'point': '18', 'batch': '11', 'agent': 'Rv+', 'rin': '5.8', 'individual': 'M375'}, 'GSM2585791': {'line': 'PR1 cells'}, 'GSM1647079': {'illumina_index': '5', 'point': '4', 'batch': '11', 'agent': 'Yers', 'rin': '8.3', 'individual': 'M373'}, 'GSM2585793': {'line': 'PR2 cells'}, 'GSM2585792': {'line': 'PR2 cells'}, 'GSM2585794': {'line': 'PR2 cells'}, 'GSM1574059': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with shRNA against YAP1 & treated with DMSO'}, 'GSM1574058': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with Trametinib'}, 'GSM1574057': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with PLX4720'}, 'GSM1574056': {'line': 'HCC364', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with empty vector & treated with DMSO'}, 'GSM2516110': {'line': 'NAMEC5', 'type': 'Mammary epithelial cells', 'level': 'lo'}, 'GSM2575323': {'line': 'WM989', 'subclone': 'E3', 'condition': '7dayholiday'}, 'GSM2575322': {'line': 'WM989', 'subclone': 'E3', 'condition': '48hrholiday'}, 'GSM2575321': {'line': 'WM989', 'subclone': 'E3', 'condition': 'Drug'}, 'GSM2575320': {'line': 'WM989', 'subclone': 'H3', 'condition': 'NoDrug'}, 'GSM2575327': {'line': 'WM989', 'subclone': 'G3', 'condition': '48hrholiday'}, 'GSM2575326': {'line': 'WM989', 'subclone': 'E3', 'condition': 'Drug'}, 'GSM2575325': {'line': 'WM989', 'subclone': 'E3', 'condition': 'Drug'}, 'GSM2575324': {'line': 'WM989', 'subclone': 'E3', 'condition': 'Drug'}, 'GSM2575329': {'line': 'WM989', 'subclone': 'G3', 'condition': 'Drug'}, 'GSM2575328': {'line': 'WM989', 'subclone': 'G3', 'condition': '7dayholiday'}, 'GSM2085727': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085726': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085725': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085724': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085723': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085722': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085721': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085720': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085729': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085728': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2361290': {'sum': '7', 'tissue': 'tumorous prostate tissue', 'score': '4', 'diagnosis': 'prostate cancer', 'invasion': 'yes', 'operation': '69', 'identifier': 'C8', 'population': 'Russian'}, 'GSM2361291': {'sum': '7', 'tissue': 'normal prostate tissue', 'score': '4', 'diagnosis': 'prostate cancer', 'invasion': 'yes', 'operation': '69', 'identifier': 'C8', 'population': 'Russian'}, 'GSM2361292': {'sum': '7', 'tissue': 'tumorous prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '67', 'identifier': 'C9', 'population': 'Russian'}, 'GSM2361293': {'sum': '7', 'tissue': 'normal prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '67', 'identifier': 'C9', 'population': 'Russian'}, 'GSM2361294': {'sum': '7', 'tissue': 'tumorous prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '56', 'identifier': 'C10', 'population': 'Russian'}, 'GSM2361295': {'sum': '7', 'tissue': 'normal prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '56', 'identifier': 'C10', 'population': 'Russian'}, 'GSM2361296': {'sum': '6', 'tissue': 'tumorous prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '48', 'identifier': 'C11', 'population': 'Russian'}, 'GSM2361297': {'sum': '6', 'tissue': 'normal prostate tissue', 'score': '3', 'diagnosis': 'prostate cancer', 'invasion': 'no', 'operation': '48', 'identifier': 'C11', 'population': 'Russian'}, 'GSM2361298': {'sum': '5', 'tissue': 'tumorous prostate tissue', 'score': '2', 'diagnosis': 'prostate cancer', 'invasion': 'yes', 'operation': '67', 'identifier': 'C12', 'population': 'Russian'}, 'GSM2361299': {'sum': '5', 'tissue': 'normal prostate tissue', 'score': '2', 'diagnosis': 'prostate cancer', 'invasion': 'yes', 'operation': '67', 'identifier': 'C12', 'population': 'Russian'}, 'GSM1288376': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288377': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288374': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288375': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288372': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288373': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288370': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288371': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288378': {'state': 'Control', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM1288379': {'state': 'BD', 'tissue': 'dorsolateral prefrontal cortex'}, 'GSM2516899': {'death': '87', 'score': 'III', 'post_mortem_interval': '4', 'caseid': '10-53', 'Sex': 'M', 'rin_score': '7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655599'}, 'GSM2259881': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259880': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259883': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': '0'}, 'GSM2259882': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (2nM)', 'cells': 'Unknown'}, 'GSM2259885': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259884': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259887': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259886': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259889': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2259888': {'isolation': 'Microraft', 'line': 'CFPAC-1', 'with': 'Gemcitabine (5nM)', 'cells': 'Unknown'}, 'GSM2390715': {'disease': 'Healthy Control'}, 'GSM2390714': {'disease': 'Healthy Control'}, 'GSM2390717': {'disease': 'Healthy Control'}, 'GSM2390716': {'disease': 'Healthy Control'}, 'GSM2390711': {'disease': 'Healthy Control'}, 'GSM2390710': {'disease': 'Healthy Control'}, 'GSM2390713': {'disease': 'Healthy Control'}, 'GSM2390712': {'disease': 'Healthy Control'}, 'GSM2361874': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361875': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361876': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361877': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390719': {'disease': 'Healthy Control'}, 'GSM2390718': {'disease': 'Healthy Control'}, 'GSM2361872': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361873': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2166398': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166399': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2840410': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2166392': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166393': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166390': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166391': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166396': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166397': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166394': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2166395': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2170560': {'stage': 'Endothelial cells'}, 'GSM2170561': {'stage': 'Endothelial cells'}, 'GSM2248160': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248161': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248162': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248163': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248164': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248165': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248166': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248167': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM2248168': {'type': 'neural progenitor cells (NPCs)', 'agent': 'Lead', 'dose': '30uM'}, 'GSM3594436': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594435': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594434': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594433': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594432': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594431': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594430': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2048742': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048743': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048740': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048741': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048746': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048747': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048744': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048745': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048748': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048749': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2881028': {'donor': 'Donor_3', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2881029': {'donor': 'Donor_4', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2616826': {'antibody': 'Anti-FLAG antibodies', 'background': 'HEK293T'}, 'GSM2616824': {'antibody': 'Anti-FLAG antibodies', 'background': 'HEK293T'}, 'GSM2616825': {'antibody': 'Anti-FLAG antibodies', 'background': 'HEK293T'}, 'GSM2616822': {'variation': 'METTL3 knockdown', 'background': 'HeLa', 'point': '6h after ActinomycinD'}, 'GSM2616823': {'antibody': 'Anti-FLAG antibodies', 'background': 'HEK293T'}, 'GSM2616820': {'variation': 'METTL3 knockdown', 'background': 'HeLa', 'point': '0h after ActinomycinD'}, 'GSM2616821': {'variation': 'METTL3 knockdown', 'background': 'HeLa', 'point': '3h after ActinomycinD'}, 'GSM2466355': {'condition': 'Hypoxia (pO2 = 1%)'}, 'GSM2466354': {'condition': 'Nutrient Starvation (all nutrients 1/1000'}, 'GSM2466357': {'condition': 'low pH (pH 6.8)'}, 'GSM2466356': {'condition': 'Control (pH 7.4)'}, 'GSM2466353': {'condition': 'low pH (pH 6.8)'}, 'GSM2466352': {'condition': 'Control (pH 7.4)'}, 'GSM2466359': {'condition': 'Hypoxia (pO2 = 1%)'}, 'GSM2466358': {'condition': 'Nutrient Starvation (all nutrients 1/1000'}, 'GSM2881024': {'donor': 'Donor_3', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2881025': {'donor': 'Donor_3', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM2649956': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649957': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649954': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649955': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649952': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649953': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649950': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649951': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2176058': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2649958': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2176059': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2803488': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803489': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803484': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803485': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803486': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803487': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'Doxycycline for 3 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803480': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'MEK inhibitor for 3 hours at 0.2uM', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803481': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'agent': 'MEK inhibitor for 3 hours at 0.2uM', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803482': {'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM2803483': {'stimulation': 'EGF stimulation: 20 min, 100ng/ml', 'line': 'HeLa', 'medium': 'Starvation: Culture in 0.5% FBS medium for 2 days', 'background': 'Harboring inducible shRNA expressing cassette'}, 'GSM1564638': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '5.7', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1564639': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '7.3', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2664350': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2479733': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2136979': {'subtype': '1', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '4'}, 'GSM2136978': {'subtype': '4', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '3'}, 'GSM2136977': {'subtype': '4', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '3'}, 'GSM2136976': {'subtype': '3', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '3'}, 'GSM2136975': {'subtype': '3', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '3'}, 'GSM2136974': {'subtype': '2', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '3'}, 'GSM2136973': {'subtype': '2', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '3'}, 'GSM2136972': {'subtype': '1', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '3'}, 'GSM2136971': {'subtype': '1', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '3'}, 'GSM2136970': {'subtype': '4', 'tissue': 'Pancreas', 'type': 'beta cell', 'donor': '2'}, 'GSM2200906': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200907': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200904': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200905': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200902': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200903': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200900': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200901': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200908': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200909': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2286844': {'tissue': 'Renal cell carcinoma', 'histology': 'unclassified'}, 'GSM1846949': {'group': 'Live cells_FRSCR', 'line': 'H1', 'type': 'cultured embryonic stem cells', 'phenotype': 'DAPI-'}, 'GSM2200869': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200868': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2311833': {'culture': '12', 'line': 'DCX+'}, 'GSM2125114': {'status': 'ER+/PRA-/PRB+', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2316649': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316648': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1172910': {'subtype': 'Luminal', 'line': 'ZR75B', 'type': 'breast cancer'}, 'GSM2316645': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316644': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316647': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316646': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316641': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316640': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316643': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2316642': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2142367': {'etiology': 'UCB', 'donor': '2', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'Ctrl'}, 'GSM2136871': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, ENL Knock Down plus Y78A mutant rescue', 'batch': '2'}, 'GSM2200861': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1873347': {'line': 'LNCaP'}, 'GSM2200860': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1873349': {'line': 'LNCaP'}, 'GSM1873348': {'line': 'LNCaP'}, 'GSM1898021': {'phase': 'G1 phase', 'subtype': 'ribosome-protected fragments (Ribo-seq)', 'type': 'HeLa S3 cells'}, 'GSM2333829': {'tissue': 'prostate', 'type': 'fibroblasts from surgical explants of patients diagnosed with benign prostatic hyperplasia'}, 'GSM2411142': {'clone': 'A3', 'genotype': 'WT'}, 'GSM1529273': {'tissue': 'primary cell mechanically dissociated from patient brain tumor', 'type': 'SU-pcGBM2 primary tumor cells'}, 'GSM2233220': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233223': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233222': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233225': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2200867': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2233227': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233226': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233229': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233228': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM1964997': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2200866': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1964991': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964990': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964993': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964992': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2717611': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '12h'}, 'GSM2717610': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '6h'}, 'GSM2717613': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM2717612': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '12h'}, 'GSM2717615': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM2717614': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM2717617': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM2717616': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM2717619': {'status': 'ZIKV uninfected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '48h'}, 'GSM2717618': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '24h'}, 'GSM2411143': {'clone': 'A3', 'genotype': 'WT'}, 'GSM1910307': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Reactive Lymph Node', 'type': 'Regulatory T Cells'}, 'GSM1910306': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Reactive Lymph Node', 'type': 'Regulatory T Cells'}, 'GSM1910305': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Reactive Lymph Node', 'type': 'Regulatory T Cells'}, 'GSM1910304': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Reactive Lymph Node', 'type': 'Regulatory T Cells'}, 'GSM1910303': {'grade': '1', 'gender': 'F', 'age': '46', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910302': {'grade': '3A', 'gender': 'M', 'age': '50', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910301': {'grade': '1,3', 'gender': 'M', 'age': '65', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910300': {'grade': '1,3', 'gender': 'M', 'age': '43', 'tissue': 'Lymph Node', 'diagnosis': 'Follicular Lymphoma', 'type': 'Regulatory T Cells'}, 'GSM1910308': {'grade': 'n/a', 'gender': 'n/a', 'age': 'n/a', 'tissue': 'Lymph Node', 'diagnosis': 'Reactive Lymph Node', 'type': 'Regulatory T Cells'}, 'GSM2754849': {'bin': '2', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0910', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754848': {'bin': '2', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0910', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754841': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754840': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': '13.2', 'type': 'Tcells'}, 'GSM2754843': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_1125', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754842': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754845': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_1125', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754844': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '01_0782', 'previousdiagnosisoftb': 'No', 'tst': '9.6', 'type': 'Tcells'}, 'GSM2754847': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0467', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754846': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '04_1125', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1338130': {'gender': 'Male', 'age': '58', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1338131': {'gender': 'Male', 'age': '60', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1338132': {'gender': 'Male', 'age': '60', 'tissue': 'Calcified tricuspid aortic valve'}, 'GSM1338133': {'gender': 'Male', 'age': '56', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1338134': {'gender': 'Male', 'age': '67', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1338135': {'gender': 'Male', 'age': '66', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1338136': {'gender': 'Male', 'age': '65', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1338137': {'gender': 'Male', 'age': '68', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1338138': {'gender': 'Male', 'age': '68', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM1338139': {'gender': 'Male', 'age': '53', 'tissue': 'Non-calcified tricuspid valve'}, 'GSM2394461': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siSCR, TNFa, 4h', 'passage': '6 to 10'}, 'GSM2394460': {'individual': 'donor3', 'type': 'HAEC', 'treatment': 'siSCR, TNFa, 4h', 'passage': '6 to 10'}, 'GSM2125112': {'status': 'ER+/PRA+/PRB-', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM1909019': {'type': 'CD34+', 'treatment': 'ERG3 S238D overexpressing'}, 'GSM1909018': {'type': 'CD34+', 'treatment': 'ERG3 S283A overexpressing'}, 'GSM1909015': {'type': 'CD34+', 'treatment': 'Untransduced control'}, 'GSM1909017': {'type': 'CD34+', 'treatment': 'ERG3 overexpressing'}, 'GSM1909016': {'type': 'CD34+', 'treatment': 'Empty vector transduced'}, 'GSM922958': {'lineage': 'mesoderm', 'description': 'Isolated Poly(A) RNA', 'datatype': 'RnaSeq', 'lab': 'Yale', 'sex': 'F', 'cell': 'K562', 'rnaextract': 'polyA', 'treatment': 'IFNg6h', 'karyotype': 'cancer', 'organism': 'human'}, 'GSM2094369': {'line': 'HCT116', 'tissue': 'colon cancer'}, 'GSM2094368': {'line': 'HCT116', 'tissue': 'colon cancer'}, 'GSM2094365': {'line': 'HCT116', 'tissue': 'colon cancer'}, 'GSM2094364': {'line': 'HCT116', 'tissue': 'colon cancer'}, 'GSM2094367': {'line': 'HCT116', 'tissue': 'colon cancer'}, 'GSM2094366': {'line': 'HCT116', 'tissue': 'colon cancer'}, 'GSM922957': {'lineage': 'mesoderm', 'description': 'Isolated Poly(A) RNA', 'datatype': 'RnaSeq', 'lab': 'Yale', 'sex': 'F', 'cell': 'K562', 'rnaextract': 'polyA', 'treatment': 'IFNg30', 'karyotype': 'cancer', 'organism': 'human'}, 'GSM2157978': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM922955': {'lineage': 'mesoderm', 'description': 'Isolated Poly(A) RNA', 'datatype': 'RnaSeq', 'lab': 'Yale', 'sex': 'F', 'cell': 'K562', 'rnaextract': 'polyA', 'treatment': 'IFNa30', 'karyotype': 'cancer', 'organism': 'human'}, 'GSM1389725': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM1338798': {'type': 'M2-polarized HMDM'}, 'GSM1338799': {'type': 'M2-polarized HMDM'}, 'GSM1389724': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM1338794': {'type': 'PBMC derived macrophage (HMDM)'}, 'GSM1338795': {'type': 'PBMC derived macrophage (HMDM)'}, 'GSM1338796': {'type': 'M1-polarized HMDM'}, 'GSM1338797': {'type': 'M1-polarized HMDM'}, 'GSM1389727': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM2212679': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2212678': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212673': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212672': {'gender': 'male', 'condition': 'control'}, 'GSM2212671': {'gender': 'male', 'condition': 'control'}, 'GSM2157979': {'gender': 'M', 'age': '60', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 8', 'ethnicity': 'AI'}, 'GSM2047798': {'well': 'H04', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2212676': {'gender': 'female', 'condition': 'control'}, 'GSM2212675': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212674': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM1193393': {'type': 'undifferentiated day 0 hiPS cells'}, 'GSM1193395': {'type': 'Day 12 hiPS-derived NRP-1+CD31+ cells'}, 'GSM1193394': {'type': 'Day 3 differentiated hiPS-derived mesoderm proginator cells'}, 'GSM1193397': {'type': 'cord blood-derived Endothelial colony forming cells'}, 'GSM1193396': {'type': 'Day 12 H9-hES-derived NRP-1+CD31+ cells'}, 'GSM1389722': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM2632531': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1430904': {'line': 'Ls174T'}, 'GSM2392170': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1259107': {'gender': 'male', 'tissue': 'motor cortex (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1259106': {'gender': 'male', 'tissue': 'Cingulate gyrus (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM1259105': {'gender': 'male', 'tissue': 'motor cortex (grey matter)', 'antibody': 'anti-Ago2 polyclonal antibody', 'subtype': 'Ago2-bound RNA'}, 'GSM2864656': {'line': 'RD-ES/USP6'}, 'GSM2864657': {'line': 'RD-ES/USP6'}, 'GSM2864654': {'line': 'RD-ES/USP6'}, 'GSM2864655': {'line': 'RD-ES/USP6'}, 'GSM2864652': {'line': 'RD-ES/USP6'}, 'GSM2864653': {'line': 'RD-ES/USP6'}, 'GSM2864650': {'line': 'RD-ES/USP6'}, 'GSM2864651': {'line': 'RD-ES/USP6'}, 'GSM2266818': {'line': 'Kelly', 'replicate': '1', 'treatment': 'DMSO', 'time': '2 days'}, 'GSM2266819': {'line': 'Kelly', 'replicate': '2', 'treatment': 'DMSO', 'time': '2 days'}, 'GSM1546359': {'line': 'MDA-MB-231', 'variation': 'S473A-'}, 'GSM1980464': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980463': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980462': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980461': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980460': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '5_years_TKI'}, 'GSM1980469': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980468': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1430906': {'line': 'Ls174T'}, 'GSM1603316': {'cl': '100', 'ca': '9', 'dyslipidemia': 'Yes', 'year': '30', 'statin': 'Yes', 'creatinine': '0.84', 'id': 'S01', 'co2': '31', 'rr': '18', 'plavix': '--', 'na': '137', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '149', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '10', 'smoking': 'Yes', 'day': '0.5', 'ticagrelor': '--', 'troponin': '0.91', 'gender': 'F', 'k': '4.1', 'batch': '1', 'prasugrel': '--', 'cad': 'No'}, 'GSM1430907': {'line': 'Ls174T'}, 'GSM3190622': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C27', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.259111'}, 'GSM3190623': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '8.065152'}, 'GSM2580329': {'with': 'Control', 'type': 'Human cerebral organoids', 'timepoint': '5 days of post infection'}, 'GSM2580328': {'with': 'Zika', 'type': 'Human cerebral organoids', 'timepoint': '3 days of post infection'}, 'GSM3190626': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.551252'}, 'GSM3190627': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.650267'}, 'GSM3190624': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.248016'}, 'GSM3190625': {'boca': 'No', 'years': '16', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.9884'}, 'GSM2580323': {'with': 'Control', 'type': 'Human cerebral organoids', 'timepoint': '3 days of post infection'}, 'GSM2580322': {'with': 'Zika', 'type': 'Human cerebral organoids', 'timepoint': '5 days of post infection'}, 'GSM2580321': {'with': 'Control', 'type': 'Human cerebral organoids', 'timepoint': '5 days of post infection'}, 'GSM2580320': {'with': 'Zika', 'type': 'Human cerebral organoids', 'timepoint': '3 days of post infection'}, 'GSM2580327': {'with': 'Control', 'type': 'Human cerebral organoids', 'timepoint': '3 days of post infection'}, 'GSM2580326': {'with': 'Zika', 'type': 'Human cerebral organoids', 'timepoint': '5 days of post infection'}, 'GSM2580325': {'with': 'Control', 'type': 'Human cerebral organoids', 'timepoint': '5 days of post infection'}, 'GSM2580324': {'with': 'Zika', 'type': 'Human cerebral organoids', 'timepoint': '3 days of post infection'}, 'GSM1826502': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'BRD4-KDM4C'}, 'GSM1826501': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'BRD4-KDM4C'}, 'GSM1826500': {'line': 'OVCAR8-ADR-Cas9', 'sgrna': 'BRD4-KDM6B'}, 'GSM2151901': {'status': 'Undifferentiated', 'karyotype': 'Diploid'}, 'GSM2151900': {'status': 'Undifferentiated', 'karyotype': 'Diploid'}, 'GSM1323679': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '5.31', 'reads': '81,869,344', 'tissue': 'prostate', 'u': '95.9', 'mapped': '19.6%', 'id': 'VA-PC-97-47', 'bcr': '0'}, 'GSM1323678': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT3A', 'site': 'Atlanta VA Medical Center', 'prepsa': '3.8', 'reads': '62,116,178', 'tissue': 'prostate', 'u': '100.2', 'mapped': '64.1%', 'id': 'VA-PC-96-45', 'bcr': '0'}, 'GSM2901759': {'wth': '50mM propionate + 25uM EIPA', 'type': 'HeLa'}, 'GSM2901758': {'wth': 'none', 'type': 'HeLa'}, 'GSM1323673': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Positive', 'pstage': 'pT2', 'site': 'Atlanta VA Medical Center', 'prepsa': '6.6', 'reads': '71,046,612', 'tissue': 'prostate', 'u': '116.9', 'mapped': '60.1%', 'id': 'VA-PC-92-67', 'bcr': '0'}, 'GSM1323672': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2', 'site': 'Atlanta VA Medical Center', 'prepsa': '9.17', 'reads': '87,983,038', 'tissue': 'prostate', 'u': '148.2', 'mapped': '47.7%', 'id': 'VA-PC-92-66', 'bcr': '0'}, 'GSM1323671': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.61', 'reads': '123,916,290', 'tissue': 'prostate', 'u': '116.5', 'mapped': '46.9%', 'id': 'VA-PC-92-14', 'bcr': '0'}, 'GSM1323670': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '3.9', 'reads': '13,443,226', 'tissue': 'prostate', 'u': '160.3', 'mapped': '68.4%', 'id': 'VA-PC-92-13', 'bcr': '0'}, 'GSM1323677': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Positive', 'pstage': 'pT3A', 'site': 'Atlanta VA Medical Center', 'prepsa': '2.4', 'reads': '91,910,734', 'tissue': 'prostate', 'u': '106.6', 'mapped': '72.5%', 'id': 'VA-PC-94-70', 'bcr': '0'}, 'GSM2901750': {'type': 'HeLa', 'variation': 'Wild type'}, 'GSM1323675': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Positive', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '14.96', 'reads': '70,901,434', 'tissue': 'prostate', 'u': '31.8', 'mapped': '70.6%', 'id': 'VA-PC-93-68', 'bcr': '0'}, 'GSM1323674': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'unknown', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '17', 'reads': '27,119,760', 'tissue': 'prostate', 'u': '155.1', 'mapped': '80.1%', 'id': 'VA-PC-93-19', 'bcr': '0'}, 'GSM2233338': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2092976': {'bin': '7', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092977': {'bin': '7', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092974': {'bin': '6', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092975': {'bin': '7', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092972': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092973': {'bin': '24', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'male', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2092970': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2092971': {'bin': '12', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '15', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2274952': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-4', 'trunkbarcode': '928616', 'sampleID': 'S33279', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9798', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9798', 'studysiteshort': 'YALE'}, 'GSM2274953': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-5', 'trunkbarcode': '928616', 'sampleID': 'S33280', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9799', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9799', 'studysiteshort': 'YALE'}, 'GSM2274950': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-2', 'trunkbarcode': '928616', 'sampleID': 'S33277', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9796', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9796', 'studysiteshort': 'YALE'}, 'GSM2565296': {'construction': 'PLATE-Seq', 'drug': 'Pixantrone (BBR-2778), dimaleate salt'}, 'GSM2274956': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-8', 'trunkbarcode': '928616', 'sampleID': 'S33283', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9802', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9802', 'studysiteshort': 'YALE'}, 'GSM2274957': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-9', 'trunkbarcode': '928616', 'sampleID': 'S33284', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9803', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9803', 'studysiteshort': 'YALE'}, 'GSM2274954': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-11', 'visitmonth': '6', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '1000', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-6', 'trunkbarcode': '928616', 'sampleID': 'S33281', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9800', 'visitnumber': '19', 'seqsite': 'BRI', 'libraryprep': 'NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'cdnasynthesis': 'SMARTer v3', 'libraryid': 'lib9800', 'studysiteshort': 'YALE'}, 'GSM2092979': {'bin': '3', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '13', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2125768': {'cancer': 'adjacent normal'}, 'GSM2125769': {'cancer': 'adjacent normal'}, 'GSM2474455': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'primary cell type'}, 'GSM2679958': {'tissue': 'peripheral blood', 'type': 'monocytes'}, 'GSM2474457': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2474456': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'primary cell type'}, 'GSM2474459': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2125763': {'cancer': 'adjacent normal'}, 'GSM2125760': {'cancer': 'adjacent normal'}, 'GSM2125761': {'cancer': 'adjacent normal'}, 'GSM2125766': {'cancer': 'adjacent normal'}, 'GSM2125767': {'cancer': 'adjacent normal'}, 'GSM2125764': {'cancer': 'adjacent normal'}, 'GSM2125765': {'cancer': 'adjacent normal'}, 'GSM2902791': {'replicate': '2', 'treatment': 'pU/UC', 'point': '6h'}, 'GSM2565297': {'construction': 'PLATE-Seq', 'drug': 'Raltitrexed'}, 'GSM1697112': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '24 h'}, 'GSM1697113': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '24 h'}, 'GSM1697110': {'line': 'THP-1', 'treatment': 'Ethanol', 'time': '4 h'}, 'GSM1697111': {'line': 'THP-1', 'treatment': '100 nM 1,25(OH)2D3', 'time': '4 h'}, 'GSM1163049': {'patient': 'Healthy_N248', 'gender': 'F', 'age': '36-74 mean 51', 'tissue': 'Healthy', 'treatment': 'Antagonist', 'id': '4'}, 'GSM1310157': {'subtype': 'germinal center B-cell like', 'line': 'DOHH2', 'type': 'Parental DOHH2 xenograft', 'host': 'SCID mice'}, 'GSM1310158': {'subtype': 'germinal center B-cell like', 'line': 'DOHH2', 'type': 'Rituximad resistant DOHH2 xenograft', 'host': 'SCID mice'}, 'GSM2139701': {'line': 'BPH-1', 'shrna': 'shCOX2', 'type': 'BPH patient derived prostate epithelial cell'}, 'GSM2139700': {'line': 'BPH-1', 'shrna': 'shCOX2', 'type': 'BPH patient derived prostate epithelial cell'}, 'GSM1693121': {'line': 'SK-N-SH', 'type': 'human neuroblastoma cells', 'clone': 'SD3.23', 'treatment': 'Untreated'}, 'GSM2139702': {'line': 'BPH-1', 'shrna': 'shCOX2', 'type': 'BPH patient derived prostate epithelial cell'}, 'GSM1693124': {'line': 'SK-N-SH', 'type': 'human neuroblastoma cells', 'clone': 'SD3.23', 'treatment': '1uM Retinoic acid'}, 'GSM2772513': {'group': 'exvivo', 'disease': 'SYS', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'SYS-208', 'cdna': 'cDNA2044'}, 'GSM2303434': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACCG268'}, 'GSM2526796': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526797': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526794': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526795': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526792': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526793': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526790': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526791': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526798': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526799': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2348398': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1944522': {'line': 'MDA-MB-231', 'tissue': 'breast', 'type': 'adenocarcinoma'}, 'GSM1944523': {'line': 'MDA-MB-231', 'tissue': 'breast', 'type': 'adenocarcinoma'}, 'GSM1944520': {'line': 'MCF7', 'tissue': 'breast', 'type': 'adenocarcinoma'}, 'GSM1944521': {'line': 'MDA-MB-231', 'tissue': 'breast', 'type': 'adenocarcinoma'}, 'GSM2772512': {'group': 'exvivo', 'disease': 'SYS', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'SYS-205', 'cdna': 'cDNA2062'}, 'GSM2253791': {'line': 'colorectal cancer line SW1116', 'variation': 'AJUBA OE'}, 'GSM2253790': {'line': 'colorectal cancer line SW1116', 'variation': 'control'}, 'GSM2565293': {'construction': 'PLATE-Seq', 'drug': 'SDM25N hydrochloride'}, 'GSM2772511': {'group': 'exvivo', 'disease': 'SYS', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'SYS-192', 'cdna': 'cDNA2068'}, 'GSM1670890': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control'}, 'GSM1670891': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control EGF'}, 'GSM1670892': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'doxycyclin'}, 'GSM1670893': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'doxycyclin EGF'}, 'GSM2348392': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348393': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2772510': {'group': 'exvivo', 'disease': 'SYS', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'SYS-180', 'cdna': 'cDNA2053'}, 'GSM1946458': {'media': 'DMEM', 'mutation': 'K36M', 'in': 'yeast reference chromatin', 'line': 'immortalized juvenile costal chondrocyte cell line T/C 28a2', 'antibody': 'none', 'stage': 'asynchronization'}, 'GSM1261019': {'type': 'TNBC Breast Tumor'}, 'GSM2806234': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806235': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806236': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806237': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806230': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2806231': {'tissue': 'lateral temporal lobe', 'group': 'Old'}, 'GSM2806232': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2806233': {'tissue': 'lateral temporal lobe', 'group': 'Aged, diseased'}, 'GSM2547128': {'tissue': 'right atrial appendage biopsies', 'treatment': 'No treatment', 'hour': 'cultured for 24 hours'}, 'GSM2547129': {'tissue': 'right atrial appendage biopsies', 'treatment': 'IL11', 'hour': 'cultured for 24 hours'}, 'GSM2747485': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': 'DMSO'}, 'GSM2747484': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': '5uM GW4066'}, 'GSM2479735': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2747487': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': 'DMSO'}, 'GSM2747486': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': 'DMSO'}, 'GSM2153238': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2747481': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': 'DMSO'}, 'GSM2747480': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': 'DMSO'}, 'GSM1868743': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868742': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868741': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868740': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868747': {'type': 'IFNg secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868746': {'type': 'IL5 secreting central memory CD4 Tcells - CD3+ CD4+ CD45RA- CCR7+ IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM1868745': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw during of Timothy Grass pollen season'}, 'GSM2303299': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2653634': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2653635': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2653636': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2653637': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2653630': {'tissue': 'Mutant human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/-'}, 'GSM2653631': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2653632': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2653633': {'tissue': 'Undifferentiated BU1 #18 APC +/1246 isogenic clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/-'}, 'GSM2772514': {'group': 'exvivo', 'disease': 'SYS', 'timepoint': '00h', 'tissue': 'Monocytes', 'treatment': 'exvivo', 'donor': 'SYS-37', 'cdna': 'cDNA2050'}, 'GSM2642548': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '27', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.30', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642549': {'control': 'Cocaine Dependence', 'death': 'cocaine intoxication', 'age': '29', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.44', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642544': {'control': 'Unaffected Control', 'death': 'natural', 'age': '47', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.44', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642545': {'control': 'Unaffected Control', 'death': 'natural', 'age': '58', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.06', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642546': {'control': 'Unaffected Control', 'death': 'natural', 'age': '29', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.42', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642547': {'control': 'Unaffected Control', 'death': 'natural', 'age': '53', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.52', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642540': {'control': 'Unaffected Control', 'death': 'natural', 'age': '54', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.87', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642541': {'control': 'Unaffected Control', 'death': 'homicide', 'age': '22', 'tissue': 'prefrontal cortex', 'race': 'Black', 'ph': '6.55', 'ethnicity': 'Not Hispanic or Latino'}, 'GSM2642542': {'control': 'Unaffected Control', 'death': 'MVA; accidental', 'age': '35', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '5.87', 'ethnicity': 'Hispanic or Latino'}, 'GSM2642543': {'control': 'Unaffected Control', 'death': 'natural', 'age': '50', 'tissue': 'prefrontal cortex', 'race': 'White', 'ph': '6.58', 'ethnicity': 'Hispanic or Latino'}, 'GSM2303290': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303291': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2670879': {'mutation': 'none', 'line': 'MCF7', 'tissue': 'breast cancer cell line', 'estrogen': 'No, LTED (long term estrogen deprived)', 'provider': 'ATCC'}, 'GSM2081428': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081429': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2883062': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject14', 'drug': 'Metformin'}, 'GSM2081425': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2883060': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject14', 'drug': 'Metformin'}, 'GSM2883061': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject14', 'drug': 'Metformin'}, 'GSM2081423': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM1295099': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': '07-449 from Millipore'}, 'GSM1371563': {'line': 'WIBR3 with AAVS1-lox-stop-loxRFP', 'stage': 'organoid'}, 'GSM1295095': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': '07-449 from Millipore'}, 'GSM1295094': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': '07-449 from Millipore'}, 'GSM1295097': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'AB-21873 from ABCAM'}, 'GSM1295096': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'none'}, 'GSM1295091': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': '2820 from Cell Signalling Lab, LRI'}, 'GSM1295090': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'none'}, 'GSM1295093': {'strain': 'Hs68', 'tissue': 'normal foreskin', 'antibody': 'none'}, 'GSM2479734': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2565299': {'construction': 'PLATE-Seq', 'drug': 'Tandutinib (MLN518)'}, 'GSM1666284': {'line': 'MDA-MB-231', 'tissue': 'Breast Cancer', 'sirna': 'siTP53'}, 'GSM1395689': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395688': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395687': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395686': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395685': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2222369': {'type': 'HEK Gibco'}, 'GSM1395683': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395682': {'subtype': 'Cla+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395681': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395680': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM2373938': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373939': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373936': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373937': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373934': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373935': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373932': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373933': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373930': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373931': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1831815': {'line': 'KBM7', 'passages': '2', 'type': 'Chronic myelogenous leukemia cell line'}, 'GSM1831814': {'line': 'KBM7', 'passages': '2', 'type': 'Chronic myelogenous leukemia cell line'}, 'GSM1831816': {'line': 'KBM7', 'passages': '2', 'type': 'Chronic myelogenous leukemia cell line'}, 'GSM1831811': {'line': 'KBM7', 'passages': '2', 'type': 'Chronic myelogenous leukemia cell line'}, 'GSM1831810': {'line': 'KBM7', 'passages': '2', 'type': 'Chronic myelogenous leukemia cell line'}, 'GSM1831813': {'line': 'KBM7', 'passages': '2', 'type': 'Chronic myelogenous leukemia cell line'}, 'GSM1831812': {'line': 'KBM7', 'passages': '2', 'type': 'Chronic myelogenous leukemia cell line'}, 'GSM2784505': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '48h'}, 'GSM2784504': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '48h'}, 'GSM2784507': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '48h'}, 'GSM2784506': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Inv_SC', 'time': '48h'}, 'GSM2784501': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '24h'}, 'GSM2784500': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '24h'}, 'GSM2784503': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '48h'}, 'GSM2784502': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'Mock', 'time': '48h'}, 'GSM1898651': {'line': 'HCT116', 'tissue': 'Colon', 'type': 'colorectal'}, 'GSM2784509': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '48h'}, 'GSM2784508': {'donor': 'D2', 'type': 'CD4 T cell', 'treatment': 'silencer_SC', 'time': '48h'}, 'GSM2092569': {'repertoire': 'TCR-beta', 'individual': 'patient 13 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM2092568': {'repertoire': 'TCR-alpha', 'individual': 'patient 13 (glioblastoma)', 'tissue': 'peripheral blood'}, 'GSM719458': {'type': 'RNA Capture sequencing'}, 'GSM719459': {'type': 'RNA Capture sequencing'}, 'GSM719456': {'type': 'RNA Capture sequencing'}, 'GSM2577221': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '16h'}, 'GSM2577222': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '18h'}, 'GSM2577223': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '18h'}, 'GSM2577224': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'plus', 'point': '20h'}, 'GSM2577225': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '20h'}, 'GSM2092567': {'repertoire': 'TCR-beta', 'individual': 'patient 13 (glioblastoma)', 'tissue': 'brain'}, 'GSM2577227': {'line': 'IMR5/75 neuroblastoma cells with tetracycline-inducible MYCN shRNA', 'treatment': 'minus', 'point': '22h'}, 'GSM2325904': {'type': 'Human embryonic stem cell'}, 'GSM2672090': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2325906': {'type': 'Human embryonic stem cell'}, 'GSM2325907': {'type': 'Human embryonic stem cell'}, 'GSM2325900': {'type': 'Human embryonic stem cell'}, 'GSM2672094': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2325902': {'type': 'Human embryonic stem cell'}, 'GSM2672096': {'type': 'Single cell', 'number': 'CRISPR 24', 'stage': 'Blastocyst'}, 'GSM2672099': {'type': 'Single cell', 'number': 'CRISPR 24', 'stage': 'Blastocyst'}, 'GSM2672098': {'type': 'Single cell', 'number': 'CRISPR 24', 'stage': 'Blastocyst'}, 'GSM1969308': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM2325908': {'type': 'Human embryonic stem cell'}, 'GSM2325909': {'type': 'Human embryonic stem cell'}, 't': {'code': '200'}, 'GSM1969307': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Trunk wall'}, 'GSM2316999': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1969306': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'GI tract'}, 'GSM3537279': {'tissue': 'trophoblast', 'type': 'HTR-8/SVneo trophoblast cell line (SV40 T antigen immortalized)'}, 'GSM2745950': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '152,840,970', 'totalnummappedreads': '147,349,633', 'age': '18.719198', 'percentexonicmapping': '24.461118', 'Sex': 'Male', 'rin': '8.6', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.83', 'brainid': '1880'}, 'GSM2305314': {'subtype': 'Tamoxifen Resistance', 'type': 'MCF7', 'condition': 'White Medium'}, 'GSM1969303': {'metastasis': 'No', 'fusion': 'No', 'type': 'Myxofibrosarcoma', 'localization': 'Lower limb'}, 'GSM2816003': {'line': 'H9'}, 'GSM2316998': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2932889': {'pucai': '70', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '14'}, 'GSM2932888': {'pucai': '40', 'score': '1', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '17'}, 'GSM2932887': {'pucai': '70', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '13'}, 'GSM2932886': {'pucai': '60', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '17'}, 'GSM2932885': {'pucai': '50', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2932884': {'pucai': '70', 'score': '0', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932883': {'pucai': '30', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2932882': {'pucai': '25', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '10'}, 'GSM2932881': {'pucai': '55', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932880': {'pucai': '50', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2575312': {'line': 'WM989', 'subclone': 'E3', 'condition': 'NoDrug'}, 'GSM1276858': {'score': '9.3', 'sequence': 'GTCCGC', 'targeted': 'SRSF4', 'number': '18', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1398978': {'group': 'young', 'tissue': 'pancreas', 'type': 'duct'}, 'GSM1398979': {'group': 'old', 'tissue': 'pancreas', 'type': 'duct'}, 'GSM2262815': {'tissue': 'pancreas'}, 'GSM1398972': {'group': 'young', 'tissue': 'pancreas', 'type': 'duct'}, 'GSM1398973': {'group': 'young', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398970': {'group': 'old', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398971': {'group': 'old', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1398976': {'group': 'old', 'tissue': 'pancreas', 'type': 'alpha'}, 'GSM1398977': {'group': 'old', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1398974': {'group': 'young', 'tissue': 'pancreas', 'type': 'beta'}, 'GSM1398975': {'group': 'young', 'tissue': 'pancreas', 'type': 'acinar'}, 'GSM847567': {'line': 'K562', 'expression': 'no shRNA expression', 'treatment': 'Puromycin'}, 'GSM2262813': {'tissue': 'pancreas'}, 'GSM1013480': {'line': 'HL60', 'fraction': 'Total RNA'}, 'GSM1013481': {'line': 'HL60', 'fraction': 'Non-polyadenylated RNA'}, 'GSM2575311': {'line': 'WM989', 'subclone': 'E3', 'condition': 'Drug'}, 'GSM1936750': {'line': 'IMR90'}, 'GSM2462053': {'strain': 'V. parahaemolyticus POR4', 'time': '45 minutes'}, 'GSM2462050': {'strain': 'V. parahaemolyticus POR3', 'time': '45 minutes'}, 'GSM2462051': {'strain': 'V. parahaemolyticus POR3', 'time': '45 minutes'}, 'GSM2462056': {'strain': 'V. parahaemolyticus POR3', 'time': '60 minutes'}, 'GSM1936755': {'line': 'IMR90'}, 'GSM2462054': {'strain': 'V. parahaemolyticus POR4', 'time': '45 minutes'}, 'GSM2462055': {'strain': 'V. parahaemolyticus POR3', 'time': '60 minutes'}, 'GSM2360284': {'type': 'iMGL', 'treatment': 'Rat hippocampal neurons'}, 'GSM2360285': {'type': 'iMGL', 'treatment': 'Rat hippocampal neurons'}, 'GSM2462058': {'strain': 'V. parahaemolyticus POR4', 'time': '60 minutes'}, 'GSM2462059': {'strain': 'V. parahaemolyticus POR4', 'time': '60 minutes'}, 'GSM2360280': {'type': 'Myeloid dendritic cells', 'treatment': 'None'}, 'GSM2360281': {'type': 'Myeloid dendritic cells', 'treatment': 'None'}, 'GSM2360282': {'type': 'Myeloid dendritic cells', 'treatment': 'None'}, 'GSM2360283': {'type': 'iMGL', 'treatment': 'Rat hippocampal neurons'}, 'GSM1561266': {'line': 'Hela', 'transfection': 'control esiRNA'}, 'GSM1561267': {'line': 'Hela', 'transfection': 'esiRNA targeting PRMT9 (1ug esiRNA/10cm dish)'}, 'GSM1561268': {'line': 'Hela', 'transfection': 'control esiRNA'}, 'GSM1561269': {'line': 'Hela', 'transfection': 'esiRNA targeting PRMT9 (1ug esiRNA/10cm dish)'}, 'GSM1707680': {'type': 'hiMEPs derived from GECs by reprogramming'}, 'GSM1376026': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1707681': {'type': 'hiMEPs derived from GECs by reprogramming'}, 'GSM874647': {'antibody': 'anti-deoxyBrU', 'line': 'A549', 'with': 'none (uninfected)', 'infection': '0h', 'type': 'Nuclear-Run On RNA'}, 'GSM1707682': {'type': 'hiMEPs derived from GECs by reprogramming'}, 'GSM1707683': {'type': 'hepatoctes induced by differentiation of hiMEPs'}, 'GSM3190739': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'EV-D68', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.037259'}, 'GSM1707684': {'type': 'hepatoctes induced by differentiation of hiMEPs'}, 'GSM1707685': {'type': 'hepatoctes induced by differentiation of hiMEPs'}, 'GSM1276859': {'score': '8.8', 'sequence': 'GCCAAT', 'targeted': 'SRSF4', 'number': '6', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM1376027': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2153039': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM434650': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434651': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434652': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 6 additional hours'}, 'GSM434653': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 6 additional hours'}, 'GSM434654': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434655': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 6 hours'}, 'GSM434656': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 24 additional hours'}, 'GSM434657': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by culture without EGF addition into the medium for 24 additional hours'}, 'GSM434658': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM434659': {'line': 'HeLa', 'treatment': 'serum deprived for 24 hours, followed by exposure to EGF for 24 hours'}, 'GSM1376020': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1886918': {'type': 'Biliary tree stem cells'}, 'GSM1886919': {'type': 'Fibrolamellar hepatocellular carcinoma'}, 'GSM1886916': {'type': 'Biliary tree stem cells'}, 'GSM1886917': {'type': 'Biliary tree stem cells'}, 'GSM1886914': {'type': 'Adult hepatocytes'}, 'GSM1886915': {'type': 'Adult hepatocytes'}, 'GSM1886913': {'type': 'Adult hepatocytes'}, 'GSM2133923': {'type': 'breast adenocarcinoma', 'treatment': 'Wip1i'}, 'GSM2133922': {'type': 'breast adenocarcinoma', 'treatment': 'Nutlin'}, 'GSM2632219': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2133920': {'type': 'breast adenocarcinoma', 'treatment': 'Nutlin'}, 'GSM2133927': {'type': 'breast adenocarcinoma', 'treatment': 'Nutlin+Wip1i'}, 'GSM2133926': {'type': 'breast adenocarcinoma', 'treatment': 'Nutlin+Wip1i'}, 'GSM2429918': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': 'DMSO'}, 'GSM2429919': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': 'DMSO'}, 'GSM2429917': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': 'DMSO'}, 'GSM2133928': {'type': 'breast adenocarcinoma', 'treatment': 'Nutlin+Wip1i'}, 'GSM2411748': {'polarization': 'M1', 'type': 'M1 macrophage', 'treatment': 'Media', 'id': '28'}, 'GSM2411749': {'polarization': 'M2', 'type': 'M2 macrophage', 'treatment': 'Media', 'id': '28'}, 'GSM3177260': {'responder': 'C', 'global': 'N/A', 'disease': 'Healthy non-IBD', 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'C', 'id': 'C9', 'cdai': 'N/A'}, 'GSM2144902': {'replicate': '1', 'line': 'ALL leukemia cell line REH', 'antibody': 'Pol2 Ser5P (Abcam, catalog# ab5131)'}, 'GSM1726449': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726448': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726447': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726446': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726445': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726444': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726443': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726442': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726441': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM1726440': {'passages': 'primary', 'tissue': 'blood', 'type': 'granulocyte'}, 'GSM2516841': {'death': '88', 'score': 'IV', 'post_mortem_interval': '3.25', 'caseid': '03-34', 'Sex': 'F', 'rin_score': '5.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655393'}, 'GSM2516840': {'death': '79', 'score': 'V', 'post_mortem_interval': '2', 'caseid': '00-54', 'Sex': 'M', 'rin_score': '6.2', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655431'}, 'GSM2516843': {'death': '98', 'score': 'IV', 'post_mortem_interval': '2.5', 'caseid': '05-24', 'Sex': 'F', 'rin_score': '5.2', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655392'}, 'GSM2516842': {'death': '91', 'score': 'IV', 'post_mortem_interval': '2.5', 'caseid': '08-44', 'Sex': 'F', 'rin_score': '7.7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655512'}, 'GSM2516845': {'death': '89', 'score': 'V', 'post_mortem_interval': '2.95', 'caseid': '08-59', 'Sex': 'M', 'rin_score': '5.8', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655436'}, 'GSM2516844': {'death': '85', 'score': 'IV', 'post_mortem_interval': '2.66', 'caseid': '08-53', 'Sex': 'F', 'rin_score': '5.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655396'}, 'GSM2516847': {'death': '78', 'score': 'VI', 'post_mortem_interval': '2.25', 'caseid': '08-45', 'Sex': 'M', 'rin_score': '6.7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655465'}, 'GSM2516846': {'death': '92', 'score': 'IV', 'post_mortem_interval': '2.5', 'caseid': '10-71', 'Sex': 'F', 'rin_score': '6.8', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655395'}, 'GSM2516849': {'death': '80', 'score': 'III', 'post_mortem_interval': '2', 'caseid': '02-04', 'Sex': 'F', 'rin_score': '7.2', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655503'}, 'GSM2516848': {'death': '80', 'score': 'III', 'post_mortem_interval': '2.88', 'caseid': '12-44', 'Sex': 'F', 'rin_score': '6.7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655493'}, 'GSM1376023': {'state': 'Normal', 'tissue': 'lung'}, 'GSM3594578': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594579': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1553148': {'duration': '24h', 'line': 'SUM159R', 'treatment': 'JQ1'}, 'GSM1553149': {'duration': '24h', 'line': 'SUM159R', 'treatment': 'JQ1'}, 'GSM1553144': {'duration': '24h', 'line': 'SUM159R', 'treatment': 'DMSO'}, 'GSM1553145': {'duration': '24h', 'line': 'SUM159R', 'treatment': 'DMSO'}, 'GSM1553146': {'duration': '3h', 'line': 'SUM159R', 'treatment': 'DMSO'}, 'GSM1553147': {'duration': '3h', 'line': 'SUM159R', 'treatment': 'DMSO'}, 'GSM3594576': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594577': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594574': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594575': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1552811': {'type': 'naive hESC', 'Sex': 'female'}, 'GSM1552810': {'type': 'NCCIT cells, hECC', 'Sex': 'male'}, 'GSM1552812': {'type': 'primed hESC', 'Sex': 'female'}, 'GSM2176009': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176008': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176007': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176006': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176005': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176004': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176003': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176002': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176001': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176000': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1836568': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836569': {'expression_construct': 'FLAG-TOE1A103T', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'A103 addback - siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM2124738': {'rin': '3.7', 'Sex': 'male'}, 'GSM1836565': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly_siLuc', 'line': 'HEK 293', 'sirna': 'siControl', 'target_gene': 'U1'}, 'GSM1836566': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836567': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836560': {'expression_construct': 'FLAG-TOE1E220K', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'E220 addback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836561': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836562': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM3381520': {'line': 'K562', 'type': 'human erythromyeloblastoid leukemia cell line', 'transfection': 'plasmid mixtures of Cas9-puro and U6-sgRNAs encoding each member of sgRNAs'}, 'GSM1922946': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'RBPJ (Abcam, ab25949, lot GR169397-1)', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM1922947': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'RBPJ (Abcam, ab25949, lot GR169397-1)', 'treatment': '12 day 1 µM dasatinib'}, 'GSM1598134': {'tissue': 'Anterior cruciate liagment'}, 'GSM1598130': {'tissue': 'Anterior cruciate liagment'}, 'GSM1598131': {'tissue': 'Anterior cruciate liagment'}, 'GSM1598132': {'tissue': 'Anterior cruciate liagment'}, 'GSM1598133': {'tissue': 'Anterior cruciate liagment'}, 'GSM1859769': {'line': 'Jurkat', 'treatment': 'GSK-J4, 2µM'}, 'GSM1859768': {'line': 'Jurkat', 'treatment': 'Vehicle (DMSO)'}, 'GSM1859765': {'line': 'Jurkat', 'treatment': 'Dox-induced UTX-KD'}, 'GSM1859764': {'line': 'Jurkat', 'treatment': 'None'}, 'GSM2434134': {'line': 'HEK 293T', 'type': 'rRNA depleted RNA'}, 'GSM1859766': {'line': 'Jurkat', 'treatment': 'Dox-induced UTX-KD'}, 'GSM2434132': {'line': 'HEK 293T', 'type': 'total RNA'}, 'GSM2434133': {'line': 'HEK 293T', 'type': 'polyA selected RNA'}, 'GSM1859763': {'line': 'Jurkat', 'treatment': 'None'}, 'GSM1859762': {'line': 'Jurkat', 'treatment': 'Dox-induced TAL1-KD'}, 'GSM1616939': {'classification': 'NA', 'disease_stage': 'NA', 'age': '52', 'disease': 'Normal, Colon cancer', 'inflamed': 'No', 'Sex': 'male'}, 'GSM2590536': {'differentiation': '35', 'type': 'electrically mature motor neurons', 'id': 'CTRL 2', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2590535': {'differentiation': '35', 'type': 'electrically mature motor neurons', 'id': 'CTRL 1', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2590534': {'differentiation': '35', 'type': 'electrically mature motor neurons', 'id': 'CTRL 2', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2590533': {'differentiation': '21', 'type': 'electrically immature motor neurons', 'id': 'CTRL 2', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2590532': {'differentiation': '21', 'type': 'electrically immature motor neurons', 'id': 'CTRL 1', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2590531': {'differentiation': '21', 'type': 'electrically immature motor neurons', 'id': 'CTRL 1', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM2590530': {'differentiation': '21', 'type': 'electrically immature motor neurons', 'id': 'CTRL 2', 'diagnosis': 'none (control)', 'genotype': 'Control'}, 'GSM1131544': {'Sex': 'Female', 'location': 'Ascending colon', 'disease': 'sessile serrated polyp'}, 'GSM1131545': {'Sex': 'Male', 'location': 'Cecum', 'disease': 'patient matched uninvolved colon'}, 'GSM1131546': {'Sex': 'Female', 'location': 'Cecum', 'disease': 'patient matched uninvolved colon'}, 'GSM1131547': {'Sex': 'Female', 'location': 'Ascending colon', 'disease': 'patient matched uninvolved colon'}, 'GSM1131540': {'Sex': 'Female', 'location': 'Ascending colon', 'disease': 'sessile serrated polyp'}, 'GSM1131541': {'Sex': 'Female', 'location': 'Ascending colon', 'disease': 'sessile serrated polyp'}, 'GSM1131542': {'Sex': 'Male', 'location': 'Ascending colon', 'disease': 'sessile serrated polyp'}, 'GSM1131543': {'Sex': 'Female', 'location': 'Ascending colon', 'disease': 'sessile serrated polyp'}, 'GSM1427132': {'shRNA': 'shNT', 'tissue': 'fetal liver', 'type': 'CD34+ HSPC-derived proerythroblasts'}, 'GSM1131548': {'Sex': 'Male', 'location': 'Ascending colon', 'disease': 'patient matched uninvolved colon'}, 'GSM1131549': {'Sex': 'Female', 'location': 'Cecum', 'disease': 'patient matched uninvolved colon'}, 'GSM2277377': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277376': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277375': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277374': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277373': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277372': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277371': {'status': 'Control', 'type': 'Airway Epithelial cells'}, 'GSM2277370': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277379': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM2277378': {'status': 'Asthma', 'type': 'Airway Epithelial cells'}, 'GSM3305341': {'shRNA': 'Cells were treated with an shRNA targeting ALKBH1', 'condition': 'Hypoxia'}, 'GSM3305340': {'shRNA': 'Cells were treated with a non-targeting shRNA (shCONT)', 'condition': 'Hypoxia'}, 'GSM3305343': {'shRNA': 'Cells were treated with an shRNA targeting ALKBH1', 'condition': 'Hypoxia'}, 'GSM3305342': {'shRNA': 'Cells were treated with an shRNA targeting ALKBH1', 'condition': 'Hypoxia'}, 'GSM3711304': {'mediancvcoverage': '0.574208', 'percentaligned': '0.962183799', 'visit': 'Visit 0', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM3711305': {'mediancvcoverage': '0.584021', 'percentaligned': '0.957531785', 'visit': 'Visit 1a', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM3711306': {'mediancvcoverage': '0.618753', 'percentaligned': '0.960368886', 'visit': 'Visit 1b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '6'}, 'GSM3305346': {'condition': 'Hypoxia', 'agent': 'Cells were grown in 1% oxygen'}, 'GSM3711308': {'mediancvcoverage': '0.631303', 'percentaligned': '0.947266966', 'visit': 'Visit 2b', 'Sex': 'M', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '14'}, 'GSM3711309': {'mediancvcoverage': '0.658922', 'percentaligned': '0.937913725', 'visit': 'Visit 1a', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CB4FNANXX', 'years': '8'}, 'GSM2374220': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2664382': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1568502': {'line': 'LP-1', 'treatment': 'CPI203 250 6h'}, 'GSM1568503': {'line': 'LP-1', 'treatment': 'CPI203 250 6h'}, 'GSM1568500': {'line': 'LP-1', 'treatment': 'DMSO 6h'}, 'GSM1568501': {'line': 'LP-1', 'treatment': 'DMSO 6h'}, 'GSM2074747': {'type': 'Keratinocyte Progenitors'}, 'GSM2074746': {'type': 'Keratinocyte Progenitors'}, 'GSM2074749': {'type': 'Differentiated Keratinocytes'}, 'GSM2074748': {'type': 'Keratinocyte Progenitors'}, 'GSM2374292': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374293': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374290': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374291': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374296': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374297': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374294': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374295': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374298': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374299': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2035791': {'line': 'HACAT', 'treatment': 'Control'}, 'GSM2035790': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM1216807': {'gender': 'Female', 'age': '44', 'bmi': '28.7', 'hba1c': '7', 'tissue': 'pancreatic islets', 'birth': '1967'}, 'GSM1216806': {'gender': 'Male', 'age': '63', 'bmi': '25.3', 'hba1c': '6.4', 'tissue': 'pancreatic islets', 'birth': '1948'}, 'GSM1216805': {'gender': 'Female', 'age': '58', 'bmi': '32.5', 'hba1c': '6.2', 'tissue': 'pancreatic islets', 'birth': '1952'}, 'GSM1216804': {'gender': 'Male', 'age': '41', 'bmi': '24.7', 'hba1c': '5.5', 'tissue': 'pancreatic islets', 'birth': '1969'}, 'GSM1216803': {'gender': 'Female', 'age': '57', 'bmi': '33.6', 'hba1c': '6', 'tissue': 'pancreatic islets', 'birth': '1953'}, 'GSM1216802': {'gender': 'Female', 'age': '65', 'bmi': '26', 'hba1c': '5.6', 'tissue': 'pancreatic islets', 'birth': '1945'}, 'GSM1216801': {'gender': 'Male', 'age': '68', 'tissue': 'pancreatic islets', 'birth': '1942', 'bmi': '19.4'}, 'GSM1216800': {'gender': 'Female', 'age': '65', 'bmi': '27', 'hba1c': '6.2', 'tissue': 'pancreatic islets', 'birth': '1945'}, 'GSM1216809': {'gender': 'Female', 'age': '59', 'bmi': '25.7', 'hba1c': '5.1', 'tissue': 'pancreatic islets', 'birth': '1952'}, 'GSM1216808': {'gender': 'Male', 'age': '67', 'bmi': '34.2', 'hba1c': '10', 'tissue': 'pancreatic islets', 'birth': '1944'}, 'GSM1669203': {'with': 'E2+R5020_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669202': {'with': 'E2', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669201': {'with': 'E2+R5020_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669200': {'with': 'E2', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669207': {'with': 'E2+Progesterone_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669206': {'with': 'E2+R5020_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669205': {'with': 'E2+Progesterone_3hr', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM1669204': {'with': 'E2', 'line': 'T47D', 'type': 'ER+ breast cancer cell line'}, 'GSM2192650': {'type': 'Human mammary epithelial cells'}, 'GSM2192651': {'type': 'Human mammary epithelial cells'}, 'GSM2192652': {'type': 'Human mammary epithelial cells'}, 'GSM2192653': {'type': 'Human mammary epithelial cells'}, 'GSM2192654': {'type': 'Human mammary epithelial cells'}, 'GSM2192655': {'type': 'Human mammary epithelial cells'}, 'GSM2192656': {'type': 'Human mammary epithelial cells'}, 'GSM2192657': {'type': 'Human mammary epithelial cells'}, 'GSM2192658': {'type': 'Human mammary epithelial cells'}, 'GSM2192659': {'type': 'Human mammary epithelial cells'}, 'GSM2287660': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2648917': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': '10 nM E2+10 nM Dexamethasone', 'time': '4 hours', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM876944': {'status': 'resting', 'subtype': 'polyA+ RNA', 'type': 'JSL1'}, 'GSM876945': {'status': 'stimulation with PMA', 'subtype': 'polyA+ RNA', 'type': 'JSL1'}, 'GSM2303526': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303527': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303524': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303525': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACCR015A'}, 'GSM2303522': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303523': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2303520': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303521': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2303528': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Delta', 'id': 'ACCR015A'}, 'GSM2303529': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2862908': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862909': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM1958517': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM3190813': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.028132'}, 'GSM2862906': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2862907': {'strain': 'Cultured CD34+ cells', 'tissue': 'Peripheral blood'}, 'GSM2443383': {'gender': 'female', 'age': '71', 'type': 'B'}, 'GSM2443382': {'gender': 'male', 'age': '40', 'type': 'A'}, 'GSM2443381': {'gender': 'female', 'age': '45', 'type': 'B'}, 'GSM2443380': {'gender': 'female', 'age': '43', 'type': 'A'}, 'GSM2443387': {'gender': 'male', 'age': '53', 'type': 'A'}, 'GSM2443386': {'gender': 'male', 'age': '78', 'type': 'B'}, 'GSM2443385': {'gender': 'female', 'age': '49', 'type': 'O'}, 'GSM2443384': {'gender': 'female', 'age': '19', 'type': 'B'}, 'GSM1958512': {'type': 'Calvarial osteoblast', 'Sex': 'F'}, 'GSM2443389': {'gender': 'male', 'age': '73', 'type': 'A'}, 'GSM2443388': {'gender': 'male', 'age': '66', 'type': 'A'}, 'GSM1323581': {'shRNA': 'TR4', 'type': 'erythroid cells', 'point': 'day 11 of differentiation'}, 'GSM1323580': {'shRNA': 'TR4', 'type': 'erythroid cells', 'point': 'day 11 of differentiation'}, 'GSM1958513': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM1958510': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM1958511': {'type': 'Calvarial osteoblast', 'Sex': 'F'}, 'GSM1422460': {'patient': 'yes', 'treated': 'yes', 'type': 'Hippocampal dentate gyrus (DG) granule neurons'}, 'GSM1566739': {'type': 'SGBS adipocyte D10'}, 'GSM1853560': {'line': 'HeLa', 'treatment': 'VWR #BDH1135-4LP'}, 'GSM1566737': {'type': 'SGBS adipocyte D10'}, 'GSM1566736': {'type': 'SGBS adipocyte D10'}, 'GSM1566735': {'antibody': 'RELA (C-20, sc-372, Santa Cruz)', 'type': 'SGBS adipocyte D10'}, 'GSM2100922': {'status': 'glioblastoma patient', 'group': 'responding', 'point': 'before bevacizumab combination treatment', 'gender': 'male', 'batch': 'batch2', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '8/18/2014', 'id': '1306'}, 'GSM1566733': {'antibody': 'RELA (C-20, sc-372, Santa Cruz)', 'type': 'SGBS adipocyte D10'}, 'GSM1853563': {'line': 'HeLa', 'treatment': 'VWR #BDH1135-4LP'}, 'GSM1566731': {'antibody': 'MED1 (M-255, sc-8998, Santa Cruz)', 'type': 'SGBS adipocyte D10'}, 'GSM1566730': {'antibody': 'MED1 (M-255, sc-8998, Santa Cruz)', 'type': 'SGBS adipocyte D10'}, 'GSM2648913': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM E2+10 nM Aldosterone', 'time': '24 hours'}, 'GSM1853565': {'line': 'HeLa', 'treatment': 'SpliceostatinA - Yoshida Lab'}, 'GSM2307106': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2100928': {'status': 'glioblastoma patient', 'group': 'non-responding', 'point': 'after bevacizumab combination treatment', 'gender': 'female', 'batch': 'batch1', 'therapy': 'RT/TMZ+TMZ', 'diagnosis': 'GBM', 'date': '7/10/2014', 'id': '22a'}, 'GSM2476338': {'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM1853568': {'line': 'HeLa', 'treatment': 'SpliceostatinA - Yoshida Lab'}, 'GSM1276852': {'score': '9.1', 'sequence': 'CCGTCC', 'targeted': 'SRSF9', 'number': '16', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2714496': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '5 days'}, 'GSM1832658': {'line': 'ZR-75-30', 'genotype': 'parental'}, 'GSM2714497': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '5 days'}, 'GSM2310586': {'cell_type': 'Monocyte', 'center_name': 'NCMLS', 'biomaterial_provider': 'Sanquin Blood bank, Nijmegen, the Netherlands', 'biomaterial_type': 'Primary Cell', 'study_name': 'BLUEPRINT ChIP-seq data for cells in the haematopoietic lineages, from adult and cord blood samples.', 'disease': 'None', 'tissue_type': 'Adult Human Peripheral Blood', 'donor_id': 'Healthy_donor_1', 'treatment': 'BG trained Macrophages, exposed to Beta Glucan for 24 hours, then RPMI media for 5 days', 'experiment_type': 'H3K4me3', 'cell_line': '-', 'antibody': 'Rabbit polyclonal anti-H3K4me3 (Diagenode, cat. # pAb-003-050)'}, 'GSM2026232': {'m': 'express Rbfox1 but not hnRNP M', 'type': 'Human embryonic kidney'}, 'GSM2026230': {'m': 'express Rbfox1 but not hnRNP M', 'type': 'Human embryonic kidney'}, 'GSM2714495': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '3 days'}, 'GSM2072039': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gGFP-1', 'treatment': '50 nM Trametinib'}, 'GSM2714490': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '3 days'}, 'GSM2714491': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '3 days'}, 'GSM2243872': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B1', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2348804': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348805': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348806': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348807': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2416837': {'antibody': 'None', 'line': 'HeLa', 'type': 'poly(A)+ RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM2416836': {'antibody': 'None', 'line': 'HeLa', 'type': 'poly(A)+ RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM2348802': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348803': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2416839': {'antibody': 'None', 'line': 'HeLa', 'type': 'steady-state ribo-/poly(A)- RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM2416838': {'antibody': 'None', 'line': 'HeLa', 'type': 'poly(A)+ RNA', 'treatment': 'untreated', 'sequence': 'None'}, 'GSM2348808': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348809': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1113348': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 3 post-vaccine'}, 'GSM1113349': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 4 post-vaccine'}, 'GSM1113346': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 1 post-vaccine'}, 'GSM1113347': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 2 post-vaccine'}, 'GSM1113344': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 10 post-vaccine'}, 'GSM1113345': {'type': 'circulating B cells', 'id': 'T15', 'point': 'Day 0 (pre-vaccine)'}, 'GSM1113342': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 8 post-vaccine'}, 'GSM1113343': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 9 post-vaccine'}, 'GSM1113340': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 6 post-vaccine'}, 'GSM1113341': {'type': 'circulating B cells', 'id': 'T14', 'point': 'Day 7 post-vaccine'}, 'GSM1414942': {'region': 'BA39', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM1414943': {'region': 'BA46', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM2172050': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1414940': {'region': 'BA40', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM1414941': {'region': 'BA9', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM1166095': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1414946': {'region': 'BA47', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM1414947': {'region': 'BA22', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM2815952': {'line': 'H9'}, 'GSM1414944': {'region': 'BA44', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM2172051': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2072036': {'duration': '24 hours', 'line': 'A375', 'grna': 'gCIC-2', 'treatment': '1 nM Trametinib'}, 'GSM1276853': {'score': '9.6', 'sequence': 'GGCTAC', 'targeted': 'SRSF9', 'number': '11', 'individual': 'GM19238', 'type': 'lymphoblastoid cell line', 'condition': 'knockdown'}, 'GSM2823095': {'line': 'WM266.4', 'type': 'melanoma', 'treatment': 'shControl'}, 'GSM2823094': {'line': 'A375', 'type': 'melanoma', 'treatment': 'shJMJD2C'}, 'GSM2823097': {'line': 'WM266.4', 'type': 'melanoma', 'treatment': 'shJMJD2C'}, 'GSM2823096': {'line': 'WM266.4', 'type': 'melanoma', 'treatment': 'shLSD1'}, 'GSM2823093': {'line': 'A375', 'type': 'melanoma', 'treatment': 'shLSD1'}, 'GSM2823092': {'line': 'A375', 'type': 'melanoma', 'treatment': 'shControl'}, 'GSM2739479': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739478': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739475': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739474': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739477': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739476': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739471': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739470': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739473': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739472': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2305925': {'tissue': 'colon'}, 'GSM2153208': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1423130': {'dysplasia': 'Simple intestinal metaplasia', 'site': \"Barrett's Oesophagus segment\"}, 'GSM2172053': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2153200': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153201': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153202': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153203': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153204': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153205': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153206': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM2153207': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-21'}, 'GSM1551278': {'tissue': 'Normal Thyroid', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM2305923': {'tissue': 'colon'}, 'GSM2172054': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2154968': {'type': 'induced pluripotent stem cells', 'variation': 'PAPD5 KD'}, 'GSM2154969': {'type': 'induced pluripotent stem cells', 'variation': 'ctrl LUC KD'}, 'GSM2154964': {'type': 'HEK 293', 'variation': 'PAPD5 KD'}, 'GSM2154965': {'type': 'induced pluripotent stem cells', 'variation': 'ctrl LUC KD'}, 'GSM2154966': {'type': 'induced pluripotent stem cells', 'variation': 'PAPD5 KD'}, 'GSM2154967': {'type': 'induced pluripotent stem cells', 'variation': 'ctrl LUC KD'}, 'GSM2154963': {'type': 'HEK 293', 'variation': 'ctrl LUC KD'}, 'GSM981257': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID45901', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '043WC', 'spikeinpool': 'Nist14'}, 'GSM981256': {'description': 'Paired 76 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID44498,LID44499', 'readtype': '2x76D', 'rnaextract': 'longPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '041WC,042WC', 'spikeinpool': 'Nist14'}, 'GSM981255': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47301,LID47104', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '071WC,072WC', 'spikeinpool': 'Nist13'}, 'GSM981254': {'description': 'Paired 76 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID44659,LID44660', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '041WC,042WC', 'spikeinpool': 'Nist14'}, 'GSM981253': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID46598,LID46599', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '085WC,086WC', 'spikeinpool': 'Nist14'}, 'GSM981252': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID46857,LID46858', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '089C,090C', 'spikeinpool': 'Nist14'}, 'GSM981251': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID46594,LID46595', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '085C,086C', 'spikeinpool': 'Nist14'}, 'GSM981250': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID46596,LID46597', 'readtype': '2x101D', 'rnaextract': 'longPolyA', 'replicate': '3,4', 'labversion': 'iIDR', 'biorep': '085N,086N', 'spikeinpool': 'Nist14'}, 'GSM1401326': {'rin': '8.69', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-10-30'}, 'GSM1035448': {'status': 'Senescent', 'line': 'WI38', 'type': 'primary fibroblasts', 'variation': 'infected with pBABE-puro-H-RasG12V'}, 'GSM981259': {'description': 'Paired 76 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID44657,LID44658', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1,2', 'labversion': 'iIDR', 'biorep': '039WC,040WC', 'spikeinpool': 'Nist14'}, 'GSM981258': {'description': 'Paired 101 nt directed reads', 'datatype': 'RnaSeq', 'labexpid': 'LID47095', 'readtype': '2x101D', 'rnaextract': 'total', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '062WC', 'spikeinpool': 'Nist13'}, 'GSM2607506': {'line': 'WA26'}, 'GSM2584670': {'tissue': 'fetal liver', 'type': 'Late basophilic-erythrocyte', 'passage': '17 weeks'}, 'GSM2584673': {'tissue': 'fetal liver', 'type': 'Hematopoietic stem cells', 'passage': '17 weeks'}, 'GSM2584672': {'tissue': 'fetal liver', 'type': 'Orthochromatic normoblast', 'passage': '17 weeks'}, 'GSM2584675': {'tissue': 'fetal liver', 'type': 'Early basophilic-erythrocyte', 'passage': '17 weeks'}, 'GSM2584674': {'tissue': 'fetal liver', 'type': 'Pro-erythrocyte', 'passage': '17 weeks'}, 'GSM2584677': {'tissue': 'fetal liver', 'type': 'Polychromatic normoblast', 'passage': '17 weeks'}, 'GSM2584676': {'tissue': 'fetal liver', 'type': 'Late basophilic-erythrocyte', 'passage': '17 weeks'}, 'GSM2584679': {'tissue': 'Inner cell mass', 'type': 'Embryonic stem cells', 'passage': '30-35'}, 'GSM2584678': {'tissue': 'fetal liver', 'type': 'Orthochromatic normoblast', 'passage': '17 weeks'}, 'GSM1401327': {'rin': '9.5', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-11-06'}, 'GSM1216765': {'gender': 'Male', 'age': '74', 'bmi': '26.2', 'hba1c': '5.4', 'tissue': 'pancreatic islets', 'birth': '1935'}, 'GSM2172056': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1827539': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.728268309377139', 'quality': '2'}, 'GSM1827538': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'Yes', 'microarray': '--', 'time': '0', 'quality': '2'}, 'GSM1401320': {'rin': '9.09', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-10-02'}, 'GSM2172057': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1035447': {'status': 'Senescent', 'line': 'WI38', 'type': 'primary fibroblasts', 'variation': 'infected with pBABE-puro-H-RasG12V'}, 'GSM2361647': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361646': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361645': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361644': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361643': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361642': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361641': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361640': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361649': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361648': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1401321': {'rin': '7.7', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2012-10-09'}, 'GSM3020999': {'donor': 'Donor 2', 'tissue': 'Monocyte-derived macrophages', 'condition': 'Control'}, 'GSM1827531': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.487337440109514', 'quality': '1'}, 'GSM1827530': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.284736481861739', 'quality': '1'}, 'GSM2607617': {'line': 'WA26'}, 'GSM2607616': {'line': 'WA26'}, 'GSM2607615': {'line': 'WA26'}, 'GSM2607614': {'line': 'WA26'}, 'GSM2607613': {'line': 'WA26'}, 'GSM2607612': {'line': 'WA26'}, 'GSM2607611': {'line': 'WA26'}, 'GSM2607610': {'line': 'WA26'}, 'GSM2607619': {'line': 'WA26'}, 'GSM2607618': {'line': 'WA26'}, 'GSM1955991': {'a': '53296', 'cd38': '941', 'cd49f': '397', 'w': '65574', 'h': '53265', 'lin': '222', 'cd34': '3855', 'cd90': '1314', 'cd7': '423', 'cd10': '202', 'time': '2079', 'cd135': '2026', 'cd45ra': '146'}, 'GSM1955990': {'a': '56174', 'cd38': '299', 'cd49f': '820', 'w': '65129', 'h': '56525', 'lin': '659', 'cd34': '8091', 'cd90': '1982', 'cd7': '-16', 'cd10': '533', 'time': '1829', 'cd135': '3684', 'cd45ra': '103'}, 'GSM1955993': {'a': '52765', 'cd38': '514', 'cd49f': '658', 'w': '66666', 'h': '51871', 'lin': '19', 'cd34': '6582', 'cd90': '2284', 'cd7': '-234', 'cd10': '1154', 'time': '2568', 'cd135': '2412', 'cd45ra': '110'}, 'GSM1955992': {'a': '52267', 'cd38': '-203', 'cd49f': '1064', 'w': '66486', 'h': '51520', 'lin': '309', 'cd34': '6065', 'cd90': '2524', 'cd7': '482', 'cd10': '209', 'time': '2337', 'cd135': '3810', 'cd45ra': '341'}, 'GSM1955995': {'a': '68993', 'cd38': '682', 'cd49f': '625', 'w': '64143', 'h': '70491', 'lin': '254', 'cd34': '4355', 'cd90': '1702', 'cd7': '-189', 'cd10': '611', 'time': '3035', 'cd135': '2479', 'cd45ra': '238'}, 'GSM1955994': {'a': '56366', 'cd38': '1021', 'cd49f': '540', 'w': '68024', 'h': '54304', 'lin': '332', 'cd34': '5641', 'cd90': '-86', 'cd7': '15', 'cd10': '836', 'time': '2791', 'cd135': '3320', 'cd45ra': '3786'}, 'GSM1955997': {'a': '69443', 'cd38': '961', 'cd49f': '1269', 'w': '69489', 'h': '65493', 'lin': '75', 'cd34': '5665', 'cd90': '132', 'cd7': '94', 'cd10': '572', 'time': '3504', 'cd135': '3088', 'cd45ra': '585'}, 'GSM1955996': {'a': '57934', 'cd38': '605', 'cd49f': '296', 'w': '65064', 'h': '58354', 'lin': '-217', 'cd34': '5372', 'cd90': '1660', 'cd7': '-11', 'cd10': '539', 'time': '3261', 'cd135': '2376', 'cd45ra': '287'}, 'GSM1955999': {'a': '61419', 'cd38': '1127', 'cd49f': '428', 'w': '67658', 'h': '59493', 'lin': '857', 'cd34': '7456', 'cd90': '2041', 'cd7': '-145', 'cd10': '986', 'time': '3978', 'cd135': '5557', 'cd45ra': '280'}, 'GSM1955998': {'a': '55080', 'cd38': '518', 'cd49f': '314', 'w': '66905', 'h': '53953', 'lin': '437', 'cd34': '3847', 'cd90': '1174', 'cd7': '250', 'cd10': '481', 'time': '3718', 'cd135': '874', 'cd45ra': '111'}, 'GSM3020997': {'donor': 'Donor 1', 'tissue': 'Monocyte-derived macrophages', 'condition': 'Control'}, 'GSM2323836': {'line': 'MDA-MB-231', 'antibody': 'H3K4me3', 'genotype': 'Control cells'}, 'GSM2323837': {'line': 'MDA-MB-231', 'antibody': 'H3K4me3', 'genotype': 'SATB1-depleted cells'}, 'GSM2323834': {'line': 'MDA-MB-231', 'antibody': 'none', 'genotype': 'Control cells'}, 'GSM2323835': {'line': 'MDA-MB-231', 'antibody': 'none', 'genotype': 'SATB1-depleted cells'}, 'GSM2323838': {'line': 'MDA-MB-231', 'antibody': 'H3K27me3', 'genotype': 'Control cells'}, 'GSM2323839': {'line': 'MDA-MB-231', 'antibody': 'H3K27me3', 'genotype': 'SATB1-depleted cells'}, 'GSM2967469': {'type': 'Pancreatic Beta cells', 'day': 'Adult', 'vivo': 'In vivo'}, 'GSM2967468': {'type': 'Pancreatic Beta cells', 'day': 'd20', 'vivo': 'In vitro'}, 'GSM2967463': {'type': 'Pancreatic Beta cells', 'day': 'd27', 'vivo': 'In vitro'}, 'GSM2967467': {'type': 'Pancreatic Beta cells', 'day': 'd20', 'vivo': 'In vitro'}, 'GSM2967466': {'type': 'Pancreatic Beta cells', 'day': 'd27', 'vivo': 'In vitro'}, 'GSM2967465': {'type': 'Pancreatic Beta cells', 'day': 'd27', 'vivo': 'In vitro'}, 'GSM2967464': {'type': 'Pancreatic Beta cells', 'day': 'd27', 'vivo': 'In vitro'}, 'GSM2472228': {'doubling': '15', 'tissue': 'Skin;foreskin', 'type': 'Ffibroblast'}, 'GSM2472229': {'doubling': '15', 'tissue': 'Skin;foreskin', 'type': 'Ffibroblast'}, 'GSM2109373': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109372': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109371': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109370': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109377': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2416879': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2109375': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109374': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with active disease on treatment'}, 'GSM2109379': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109378': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2050860': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2688989': {'immunophenotype': 'Lin-CD34+CD38+CD123+CD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'GMP'}, 'GSM2416877': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2050861': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM1819240': {'gender': 'female', 'line': 'HEK293-Flp-In-T-Rex', 'type': 'Embryonic kidney', 'treatment': 'sodium arsenite', 'protein': 'DDX3 R534H'}, 'GSM2416876': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2050866': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM591670': {'lineage': 'ectoderm', 'insertlength': 'ilNA', 'description': 'cervical carcinoma', 'localization': 'cell', 'readtype': '1x75D', 'sex': 'F', 'replicate': '1', 'line': 'HeLa-S3', 'karyotype': 'cancer', 'organism': 'Human'}, 'GSM2416875': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2311986': {'culture': '12', 'line': 'DCX+'}, 'GSM2705378': {'Sex': 'Male', 'rin': '7.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.92', 'pmi': '16.5'}, 'GSM3189065': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'Yes', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'Yes', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.851249', 'percentaligned': '0.880048', 'Sex': 'M', 'nl63': 'No', 'libcounts': '1.532687', 'original': 'Control'}, 'GSM2416874': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2050864': {'line': 'foreskin HDF', 'relationship': 'brother of XXFb134', 'passage': 'p2'}, 'GSM1639789': {'strain': 'tet-shLbc:Bcl-XL KhES-1', 'treatment': 'dox-treated'}, 'GSM1639788': {'strain': 'tet-shLbc:Bcl-XL KhES-1', 'treatment': 'dox-treated'}, 'GSM1639787': {'strain': 'tet-shLbc:Bcl-XL KhES-1', 'treatment': 'dox-treated'}, 'GSM1639786': {'strain': 'tet-shLbc:Bcl-XL KhES-1', 'treatment': 'untreated'}, 'GSM1639785': {'strain': 'tet-shLbc:Bcl-XL KhES-1', 'treatment': 'untreated'}, 'GSM2050865': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM1708818': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708819': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM2028114': {'with': 'control vector containing shRNA oligonucleotides targeting luciferase', 'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM1708815': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708816': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM1708817': {'iPSc': 'AH017-7', 'vector': 'Sendai virus (SeVdp(KOSM)302L)', 'type': 'iPSC-derived cortical neuron', 'time': '72 days of neuronal differentiation'}, 'GSM2311989': {'culture': '12', 'line': 'DCX+'}, 'GSM2391099': {'disease': 'NSCLC'}, 'GSM2391098': {'disease': 'NSCLC'}, 'GSM2311988': {'culture': '12', 'line': 'DCX+'}, 'GSM2391091': {'disease': 'NSCLC'}, 'GSM2391090': {'disease': 'NSCLC'}, 'GSM2391093': {'disease': 'NSCLC'}, 'GSM2391092': {'disease': 'NSCLC'}, 'GSM2391095': {'disease': 'NSCLC'}, 'GSM2391094': {'disease': 'NSCLC'}, 'GSM2391097': {'disease': 'NSCLC'}, 'GSM2391096': {'disease': 'NSCLC'}, 'GSM634766': {'strain': 'HES2'}, 'GSM634764': {'strain': 'HES2'}, 'GSM2133498': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM634762': {'strain': 'HES2'}, 'GSM634763': {'strain': 'HES2'}, 'GSM634760': {'strain': 'HES2'}, 'GSM634761': {'strain': 'HES2'}, 'GSM2133493': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133492': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133491': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133490': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133497': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133496': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133495': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133494': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2204363': {'type': 'Basal cells', 'tissue': 'lung', 'patient': '1'}, 'GSM2204366': {'type': 'Large Airway alveolar type 2 cells', 'tissue': 'lung', 'patient': '1'}, 'GSM2204367': {'type': 'Large Airway alveolar type 2 cells', 'tissue': 'lung', 'patient': '2'}, 'GSM2204364': {'type': 'Basal cells', 'tissue': 'lung', 'patient': '2'}, 'GSM2204365': {'type': 'Basal cells', 'tissue': 'lung', 'patient': '3'}, 'GSM2255531': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'Nutlin-3'}, 'GSM2204368': {'type': 'Large Airway alveolar type 2 cells', 'tissue': 'lung', 'patient': '3'}, 'GSM2204369': {'type': 'Large airway luminal cells', 'tissue': 'lung', 'patient': '1'}, 'GSM2464389': {'line': 'NB4', 'expression': 'Control', 'Stage': 'undifferentiated'}, 'GSM941211': {'with': 'siGATA2', 'line': 'LNCaP', 'passages': '32-34', 'type': 'prostate cancer cells'}, 'GSM2255530': {'line': 'MCF-7', 'genotype': '53BP1_delta_2', 'treatment': 'IR'}, 'GSM3271574': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 14d'}, 'GSM3271575': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, then DMSO for 7d'}, 'GSM1539050': {'donor': 'GDB-339-1', 'in': 'ERCC ExFold mix 1', 'type': 'stranded 51bp PE reads', 'genotype': 'Control', 'gender': 'female'}, 'GSM1539051': {'donor': 'GDB-339', 'in': 'ERCC ExFold mix 2', 'type': 'stranded 51bp PE reads', 'genotype': 'WBS', 'gender': 'male'}, 'GSM2774107': {'status': 'Add-back in null cells', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 25 ng/mL doxycycline'}, 'GSM2774105': {'status': 'Add-back in null cells', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax + 25 ng/mL doxycycline'}, 'GSM2774102': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax'}, 'GSM2774100': {'status': 'null', 'type': 'multiple myeloma', 'condition': 'Advanced RPMI + 4% Fetal Bovine Serum + glutamax'}, 'GSM2611004': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM979871': {'line': 'H1 hESCs', 'passages': '42-45', 'type': 'TRA-1-60+ FACS sort'}, 'GSM2111041': {'status': 'resting', 'type': 'Effector Memory (EM)', 'id': 'Donator 2', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM3586676': {'origin': 'ABC', 'pfstt': '1152', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1153', 'cycles': '6', 'oscs': '0'}, 'GSM3586677': {'origin': 'GCB', 'pfstt': '1', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1052', 'cycles': '6', 'oscs': '0'}, 'GSM1234164': {'replicate': '2', 'line': '2588', 'antibody': 'CTCF'}, 'GSM1234165': {'replicate': '1', 'line': '2588', 'antibody': 'H3K27Ac'}, 'GSM1234166': {'replicate': '2', 'line': '2588', 'antibody': 'H3K27Ac'}, 'GSM1234167': {'replicate': '1', 'line': '2588', 'antibody': 'H3K27me3'}, 'GSM1234160': {'replicate': '1', 'line': '2255', 'antibody': 'SA1'}, 'GSM2588105': {'expression': 'MYOD WT', 'type': 'Skin fibroblasts', 'isolation': 'passage Low 12'}, 'GSM1234162': {'replicate': '1', 'line': '2588', 'antibody': 'CTCF'}, 'GSM1234163': {'replicate': '2.2', 'line': '2588', 'antibody': 'CTCF'}, 'GSM817224': {'type': 'peripheral blood (PB) CD34+-derived erythroid cells', 'stage': 'PBER (adult stage)'}, 'GSM3271579': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 21d'}, 'GSM817222': {'type': 'ES-derived erythroid cells', 'stage': 'ESER (embryonic stage)'}, 'GSM817223': {'type': 'fetal liver cells', 'stage': 'FLER (fetal stage)'}, 'GSM817221': {'type': 'Undifferentiated HESC'}, 'GSM2754650': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_0843', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754651': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0361', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754652': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0361', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754653': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0361', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754654': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_1140', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754655': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_1140', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754656': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0369', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754657': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0369', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754658': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0369', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754659': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0152', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM990772': {'type': 'LSEC'}, 'GSM990773': {'type': 'CD34+/Lin-'}, 'GSM990770': {'type': 'HUVEC'}, 'GSM990771': {'type': 'LSEC'}, 'GSM990774': {'type': 'BMS (bone marrow stroma)'}, 'GSM990775': {'type': 'BMS (bone marrow stroma)'}, 'GSM2112654': {'culture': 'cerebral organoids', 'time': '26 days from the beginning of organoid culture'}, 'GSM2166255': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2627000': {'origin': 'pancreas', 'patient_id': '58', 'type': 'primary', 'tumor_id': 'YC110'}, 'GSM2627001': {'origin': 'pancreas', 'patient_id': '59', 'type': 'primary', 'tumor_id': 'YC111'}, 'GSM2627002': {'origin': 'pancreas', 'patient_id': '60', 'type': 'primary', 'tumor_id': 'YC116'}, 'GSM1953965': {'erbb2': 'high', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-42', 'er': 'positive'}, 'GSM2627004': {'origin': 'pancreas', 'patient_id': '62', 'type': 'primary', 'tumor_id': 'YC120'}, 'GSM2627005': {'origin': 'pancreas', 'patient_id': '171', 'type': 'primary', 'tumor_id': 'YC134'}, 'GSM2627006': {'origin': 'pancreas', 'patient_id': '172', 'type': 'primary', 'tumor_id': 'YC135'}, 'GSM2627007': {'origin': 'pancreas', 'patient_id': '198', 'type': 'primary', 'tumor_id': 'YC180'}, 'GSM2627008': {'origin': 'pancreas', 'patient_id': '199', 'type': 'primary', 'tumor_id': 'YC181'}, 'GSM2627009': {'origin': 'pancreas', 'patient_id': '46', 'type': 'primary', 'tumor_id': 'YC81'}, 'GSM1953968': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM1953969': {'erbb2': 'low', 'pr': 'positive', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-82', 'er': 'positive'}, 'GSM1881562': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881563': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881560': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881561': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881566': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM1881567': {'cell_type': 'HCET', 'shRNA': 'doxycycline-inducible shRNA against PNN', 'treatment': 'Doxycycline treated'}, 'GSM2158258': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158259': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2537145': {'line': 'MCF7', 'treatment': 'CPT'}, 'GSM2158257': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2158254': {'gender': 'F', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 3', 'ethnicity': 'C'}, 'GSM2537146': {'line': 'MCF7', 'treatment': 'CPT'}, 'GSM2537141': {'line': 'MCF7', 'treatment': 'CPT'}, 'GSM2537140': {'line': 'MCF7', 'treatment': 'control'}, 'GSM2537143': {'line': 'MCF7', 'treatment': 'control'}, 'GSM2537142': {'line': 'MCF7', 'treatment': 'CPT'}, 'GSM2562559': {'gender': 'female', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1930433': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic luminal cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1930432': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic luminal cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1930431': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic luminal cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1930430': {'tissue': 'Prostate', 'type': 'Freshly purified HPCa167N benign prostatic basal cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1863706': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1930436': {'tissue': 'Prostate', 'type': 'HPCa167N benign prostatic bulk cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1930435': {'tissue': 'Prostate', 'type': 'HPCa167N benign prostatic bulk cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1930434': {'tissue': 'Prostate', 'type': 'HPCa167N benign prostatic bulk cells cultured in WIT', 'id': 'HPCa167N'}, 'GSM1863708': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM1863709': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'none', 'ism': 'ISM_high'}, 'GSM2672118': {'type': 'Single cell', 'number': 'CRISPR 9', 'stage': 'Blastocyst'}, 'GSM2672119': {'type': 'Single cell', 'number': 'CRISPR 9', 'stage': 'Blastocyst'}, 'GSM2672114': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672115': {'type': 'Trophectoderm biopsy', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672116': {'type': 'Trophectoderm biopsy', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672117': {'type': 'Trophectoderm biopsy', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672110': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672111': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672112': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2672113': {'type': 'Single cell', 'number': 'CRISPR 8', 'stage': 'Blastocyst'}, 'GSM2562557': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2330179': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'D111', 'group': 'Allergen-specific immunotherapy'}, 'GSM2330178': {'subset': 'CXCR5 high', 'type': 'T cell', 'individual': 'D146', 'group': 'Allergen-specific immunotherapy'}, 'GSM2330177': {'subset': 'CXCR5 high', 'type': 'T cell', 'individual': 'D111', 'group': 'Allergen-specific immunotherapy'}, 'GSM2330176': {'subset': 'CXCR5 high', 'type': 'T cell', 'individual': 'D106', 'group': 'Allergen-specific immunotherapy'}, 'GSM2330175': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'U34', 'group': 'Allergic'}, 'GSM2330174': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'D73', 'group': 'Allergic'}, 'GSM2330173': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'U149', 'group': 'Allergic'}, 'GSM2330172': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'U161', 'group': 'Allergic'}, 'GSM2330171': {'subset': 'CXCR5 low', 'type': 'T cell', 'individual': 'D90', 'group': 'Allergic'}, 'GSM2330170': {'subset': 'CXCR5 high', 'type': 'T cell', 'individual': 'U34', 'group': 'Allergic'}, 'GSM2788093': {'line': 'Prostate Cancer Cell line LNCaP', 'agent': 'control', 'dose': 'control'}, 'GSM2788092': {'line': 'Prostate Cancer Cell line LNCaP', 'agent': 'control', 'dose': 'control'}, 'GSM2788091': {'line': 'Prostate Cancer Cell line LNCaP', 'agent': 'iBET', 'dose': '0.5uM'}, 'GSM2788090': {'line': 'Prostate Cancer Cell line LNCaP', 'agent': 'iBET', 'dose': '0.5uM'}, 'GSM818436': {'line': 'DG75'}, 'GSM818437': {'line': 'DG75'}, 'GSM2560481': {'name': 'wt', 'antibody': 'none', 'type': 'column goblet cells', 'ko': 'none', 'cdx2opt': 'none', 'line': 'LS174T CL-188', 'induction': 'none'}, 'GSM1281738': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Connective Tissue', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM2275094': {'area_under_the_curve': '0.558407344', 'siteandparticipantcode': '289534', 'baseline_area_under_the_curve': '0.818449219', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '68.22748815', 'auc_percent_of_baseline': '68.22748815', 'trunkbarcode': '930659', 'sampleID': 'S12631', 'flowcellid': 'D27JJACXX', 'status': 'NR', 'samplelabel': 'lib1511', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_289534', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib1511', 'studysiteshort': 'BRI-VM'}, 'GSM2275095': {'area_under_the_curve': '0.581577344', 'siteandparticipantcode': '214040', 'baseline_area_under_the_curve': '0.782711563', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '74.30289415', 'auc_percent_of_baseline': '74.30289415', 'trunkbarcode': '905650', 'sampleID': 'S12632', 'flowcellid': 'D27JJACXX', 'status': 'NR', 'samplelabel': 'lib1512', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_214040', 'gender': 'Female', 'age': '10', 'race': 'American Indian or Alaska Native; White', 'libraryid': 'lib1512', 'studysiteshort': 'BRI-VM'}, 'GSM2275096': {'area_under_the_curve': '0.863444531', 'siteandparticipantcode': '555647', 'baseline_area_under_the_curve': '0.847411719', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '101.8919744', 'auc_percent_of_baseline': '101.8919744', 'trunkbarcode': '930657', 'sampleID': 'S12633', 'flowcellid': 'D27JJACXX', 'status': 'C', 'samplelabel': 'lib1513', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'Control', 'name': 'AbATE_555647', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib1513', 'studysiteshort': 'BRI-VM'}, 'GSM2275097': {'area_under_the_curve': '0.525410781', 'siteandparticipantcode': '785228', 'baseline_area_under_the_curve': '0.578939688', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '90.75397534', 'auc_percent_of_baseline': '90.75397534', 'trunkbarcode': '930661', 'sampleID': 'S12634', 'flowcellid': 'D27JJACXX', 'status': 'R', 'samplelabel': 'lib1514', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_785228', 'gender': 'Female', 'age': '12', 'race': 'White', 'libraryid': 'lib1514', 'studysiteshort': 'BRI-VM'}, 'GSM2275090': {'area_under_the_curve': '0.623055781', 'siteandparticipantcode': '612273', 'baseline_area_under_the_curve': '0.78736625', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '79.13163426', 'auc_percent_of_baseline': '79.13163426', 'trunkbarcode': '905640', 'sampleID': 'S12627', 'flowcellid': 'D26PLACXX', 'status': 'NR', 'samplelabel': 'lib1507', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_612273', 'gender': 'Male', 'age': '29', 'race': 'White', 'libraryid': 'lib1507', 'studysiteshort': 'COLORADO'}, 'GSM2275091': {'area_under_the_curve': '0.810019063', 'siteandparticipantcode': '268024', 'baseline_area_under_the_curve': '0.997396094', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '81.21337827', 'auc_percent_of_baseline': '81.21337827', 'trunkbarcode': '929081', 'sampleID': 'S12628', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1508', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_268024', 'gender': 'Male', 'age': '14', 'race': 'White', 'libraryid': 'lib1508', 'studysiteshort': 'COLORADO'}, 'GSM2275092': {'area_under_the_curve': '0.743457031', 'siteandparticipantcode': '800847', 'baseline_area_under_the_curve': '0.776763906', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '95.71209801', 'auc_percent_of_baseline': '95.71209801', 'trunkbarcode': '905643', 'sampleID': 'S12629', 'flowcellid': 'D26PLACXX', 'status': 'R', 'samplelabel': 'lib1509', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_800847', 'gender': 'Male', 'age': '10', 'race': 'White', 'libraryid': 'lib1509', 'studysiteshort': 'COLORADO'}, 'GSM2275093': {'area_under_the_curve': '1.019583438', 'siteandparticipantcode': '770569', 'baseline_area_under_the_curve': '1.236491875', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '82.45775473', 'auc_percent_of_baseline': '82.45775473', 'trunkbarcode': '930660', 'sampleID': 'S12630', 'flowcellid': 'D27JJACXX', 'status': 'R', 'samplelabel': 'lib1510', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_770569', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1510', 'studysiteshort': 'BRI-VM'}, 'GSM2275098': {'area_under_the_curve': '0.334103125', 'siteandparticipantcode': '693516', 'baseline_area_under_the_curve': '0.498775625', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '66.98465367', 'auc_percent_of_baseline': '66.98465367', 'trunkbarcode': '905658', 'sampleID': 'S12635', 'flowcellid': 'D27JJACXX', 'status': 'NR', 'samplelabel': 'lib1515', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_693516', 'gender': 'Male', 'age': '15', 'race': 'White', 'libraryid': 'lib1515', 'studysiteshort': 'PNRI'}, 'GSM2275099': {'area_under_the_curve': '1.00417125', 'siteandparticipantcode': '314565', 'baseline_area_under_the_curve': '1.256817344', 'projectid': 'P54-1', 'visitmonth': '6', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '79.89794659', 'auc_percent_of_baseline': '79.89794659', 'trunkbarcode': '918099', 'sampleID': 'S12636', 'flowcellid': 'D27JJACXX', 'status': 'C', 'samplelabel': 'lib1516', 'visitnumber': '19', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '1', 'treatmentgroup': 'Control', 'name': 'AbATE_314565', 'gender': 'Male', 'age': '17', 'race': 'White', 'libraryid': 'lib1516', 'studysiteshort': 'PNRI'}, 'GSM3586867': {'origin': 'GCB', 'pfstt': '687', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '775', 'cycles': '6', 'oscs': '0'}, 'GSM3586866': {'origin': 'GCB', 'pfstt': '518', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '518', 'cycles': '6', 'oscs': '1'}, 'GSM3586865': {'origin': 'GCB', 'pfstt': '946', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '957', 'cycles': '6', 'oscs': '0'}, 'GSM3586864': {'origin': 'GCB', 'pfstt': '669', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '957', 'cycles': '6', 'oscs': '0'}, 'GSM3586863': {'origin': 'UNCLASSIFIED', 'pfstt': '85', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '103', 'cycles': '6', 'oscs': '0'}, 'GSM3586862': {'origin': 'GCB', 'pfstt': '917', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '919', 'cycles': '6', 'oscs': '0'}, 'GSM3586861': {'origin': 'GCB', 'pfstt': '551', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '788', 'cycles': '6', 'oscs': '0'}, 'GSM3586860': {'origin': 'GCB', 'pfstt': '1030', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1030', 'cycles': '6', 'oscs': '0'}, 'GSM2307096': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM3586869': {'origin': 'GCB', 'pfstt': '836', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '837', 'cycles': '6', 'oscs': '0'}, 'GSM3586868': {'origin': 'GCB', 'pfstt': '770', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '802', 'cycles': '6', 'oscs': '0'}, 'GSM2242799': {'line': 'A375', 'replicate': '4'}, 'GSM2242798': {'line': 'A375', 'replicate': '4'}, 'GSM2242795': {'line': 'A375', 'replicate': '4'}, 'GSM2242794': {'line': 'A375', 'replicate': '4'}, 'GSM2242797': {'line': 'A375', 'replicate': '4'}, 'GSM2242796': {'line': 'A375', 'replicate': '4'}, 'GSM2242791': {'line': 'A375', 'replicate': '4'}, 'GSM2242790': {'line': 'A375', 'replicate': '4'}, 'GSM2242793': {'line': 'A375', 'replicate': '4'}, 'GSM2242792': {'line': 'A375', 'replicate': '4'}, 'GSM2194662': {'type': 'beta', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2511602': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511603': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511600': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511601': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511606': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2307094': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2511604': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511605': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM1465294': {'state': 'normal', 'tissue': 'Kidney tubules'}, 'GSM2194664': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1646957': {'illumina_index': '2', 'point': '4', 'batch': '1', 'agent': 'none', 'rin': '9.8', 'individual': 'M372'}, 'GSM2983908': {'status': 'IL10pos', 'donor': 'Donor3', 'type': 'Group 2 innate lymphoid cells (ILC2s)'}, 'GSM2983909': {'status': 'IL10neg', 'donor': 'Donor3', 'type': 'Group 2 innate lymphoid cells (ILC2s)'}, 'GSM2983906': {'status': 'IL10pos', 'donor': 'Donor2', 'type': 'Group 2 innate lymphoid cells (ILC2s)'}, 'GSM2983907': {'status': 'IL10neg', 'donor': 'Donor2', 'type': 'Group 2 innate lymphoid cells (ILC2s)'}, 'GSM2610849': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2983905': {'status': 'IL10neg', 'donor': 'Donor1', 'type': 'Group 2 innate lymphoid cells (ILC2s)'}, 'GSM1683268': {'type': 'U87 human glioma cells'}, 'GSM2396985': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.miR-9/9*.miR-124.pGK.Ascl1.WPRE + u6.shRNA-REST.WPRE'}, 'GSM2808439': {'region': 'whole retina'}, 'GSM2048584': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2632397': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632394': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632395': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632392': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632393': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632390': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2195074': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM1425769': {'grade': 'Rhabdoid', 'pretreatment': 'Sutent', 'type': 'R', 'Stage': 'IV'}, 'GSM2108052': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2195077': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2632398': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632399': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1599142': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1599143': {'age': 'middle-aged', 'type': 'CD4+ T cell'}, 'GSM1599140': {'age': 'Newborn', 'type': 'CD4+ T cell'}, 'GSM2195076': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2538269': {'stage': 'Glioblastoma EGFR amplification/EGFR vIII mutation'}, 'GSM2538268': {'stage': 'Glioblastoma EGFR amplification/EGFR vIII mutation'}, 'GSM1599144': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM1599145': {'age': 'long-lived subjects', 'type': 'CD4+ T cell'}, 'GSM2538265': {'stage': '21 gestational weeks'}, 'GSM2538264': {'stage': '22 gestational weeks'}, 'GSM2538267': {'stage': '22 gestational weeks'}, 'GSM2538266': {'stage': '19 gestational weeks'}, 'GSM2538263': {'stage': '19 gestational weeks'}, 'GSM2538262': {'stage': '21 gestational weeks'}, 'GSM2610844': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2195073': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2125115': {'status': 'ER+/PRA-/PRB+', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM1380855': {'type': 'Primary fibroblast', 'mutation': 'TREX1'}, 'GSM2125117': {'status': 'ER+/PRA+/PRB-', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2195072': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2125111': {'status': 'ER+/PR+', 'antibody': 'none (INPUT)', 'type': 'ER+/PR+ T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2307098': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2125113': {'status': 'ER+/PRA+/PRB-', 'antibody': 'none (INPUT)', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM1380853': {'type': 'Primary fibroblast'}, 'GSM2942659': {'bmi': '24.12662722', 'type': 'ACL injury only', 'smoker': 'Yes', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942658': {'bmi': '23.67244898', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942655': {'bmi': '23.75', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942654': {'bmi': '28.33915614', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942657': {'bmi': '21.78719008', 'type': 'ACL injury only', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942656': {'bmi': '26.6057526', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942651': {'bmi': '29.1560571', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'M'}, 'GSM2942650': {'bmi': '20.79881657', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942653': {'bmi': '28.565427', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM2942652': {'bmi': '22.31201172', 'type': 'ACL injury with Meniscus_tear', 'smoker': 'No', 'tissue': 'ACL tears remnants', 'Sex': 'F'}, 'GSM1464529': {'origin': 'BM1K', 'type': 'lin-CD34+CD45+', 'treatment': '5 uM imatinib'}, 'GSM1464528': {'origin': 'CML17', 'type': 'lin-CD34+CD45+', 'treatment': 'DMSO'}, 'GSM1464527': {'origin': 'CML15', 'type': 'lin-CD34+CD45+', 'treatment': 'DMSO'}, 'GSM2195079': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM1464525': {'origin': 'BM1K', 'type': 'lin-CD34+CD45+', 'treatment': 'DMSO'}, 'GSM2307099': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM1410582': {'gene': 'Mock', 'type': 'U937', 'infection': '1h'}, 'GSM1410583': {'gene': 'Mock', 'type': 'U937', 'infection': '3h'}, 'GSM2195078': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'non-treated'}, 'GSM2535890': {'status': 'T1D', 'lane': '7,8', 'seqsite': 'BRI', 'samplelabel': 'lib5651', 'samplename': '1_T1D#2 ReDraw_C34', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S28536', 'numcellssorted': '11471', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '2', 'flowcellid': 'C5UE0ANXX', 'c1plateid': '1771023198', 'libraryid': 'lib5651', 'projectid': 'P91-6', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C34'}, 'GSM2610843': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2538889': {'donor': '1', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (12-144h)] cell'}, 'GSM2538888': {'donor': '3', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (0-72h)] cell'}, 'GSM2538881': {'donor': '1', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (0-144h)] cell'}, 'GSM2538880': {'donor': '3', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (0h)] cell'}, 'GSM2538883': {'donor': '2', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (0-144h)] cell'}, 'GSM2538882': {'line': 'MCF7', 'treatment': 'Nutlin3a'}, 'GSM2538885': {'donor': '1', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (0-72h)] cell'}, 'GSM2538884': {'line': 'MCF7', 'treatment': 'control'}, 'GSM2538887': {'donor': '2', 'tissue': 'blood', 'type': 'Mo-GMCSF[IL4 (0-72h)] cell'}, 'GSM2538886': {'line': 'MCF7', 'treatment': 'Nutlin3a'}, 'GSM2058017': {'tissue': 'normal colon crypt'}, 'GSM2058016': {'tissue': 'normal colon crypt'}, 'GSM2058015': {'tissue': 'normal colon crypt'}, 'GSM2274769': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32846', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9436', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C39', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9436', 'studysiteshort': 'UCSF'}, 'GSM2274768': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32845', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9435', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C33', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9435', 'studysiteshort': 'UCSF'}, 'GSM2274765': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32841', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9431', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C95', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9431', 'studysiteshort': 'UCSF'}, 'GSM2274764': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32839', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9429', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C89', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9429', 'studysiteshort': 'UCSF'}, 'GSM2274767': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32843', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9433', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C72', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9433', 'studysiteshort': 'UCSF'}, 'GSM2274766': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32842', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9432', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C66', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9432', 'studysiteshort': 'UCSF'}, 'GSM2274761': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32833', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9423', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C64', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9423', 'studysiteshort': 'UCSF'}, 'GSM2274760': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32832', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9422', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C58', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9422', 'studysiteshort': 'UCSF'}, 'GSM2274763': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32837', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9427', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C77', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9427', 'studysiteshort': 'UCSF'}, 'GSM2274762': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32835', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9425', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C71', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9425', 'studysiteshort': 'UCSF'}, 'GSM2277232': {'type': 'human coronary artery smooth muscle cells (HCASMC)', 'variation': 'TCF21 overexpression'}, 'GSM2277230': {'type': 'human coronary artery smooth muscle cells (HCASMC)', 'variation': 'TCF21 overexpression'}, 'GSM2277234': {'type': 'human coronary artery smooth muscle cells (HCASMC)', 'variation': 'TCF21 overexpression'}, 'GSM1314710': {'type': 'lymphatic endothelial colony forming cells', 'passage': '8 to15'}, 'GSM2553006': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP7', 'Sex': 'M'}, 'GSM2553007': {'point': 'Baseline', 'age': '39', 'number': 'AP7', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '20', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2553004': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP6', 'Sex': 'F'}, 'GSM2553005': {'point': 'Baseline', 'age': '46', 'number': 'AP6', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '16', 'Sex': 'F', 'positivity': 'Positive'}, 'GSM2553002': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP32', 'Sex': 'M'}, 'GSM2553003': {'point': 'Baseline', 'age': '68', 'number': 'AP32', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '40', 'Sex': 'M', 'positivity': 'Positive'}, 'GSM2553000': {'point': '6 mo tDMARD', 'positivity': 'Positive', 'disease': 'Rheumatoid arthritis (early)', 'number': 'AP30', 'Sex': 'F'}, 'GSM2553001': {'point': 'Baseline', 'age': '35', 'number': 'AP30', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '28', 'Sex': 'F', 'positivity': 'Positive'}, 'GSM2610841': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2170778': {'stage': 'iPSC line'}, 'GSM2565274': {'construction': 'PLATE-Seq', 'drug': 'SAR245409 (XL765)'}, 'GSM2565275': {'construction': 'PLATE-Seq', 'drug': 'Talampanel'}, 'GSM2565276': {'construction': 'PLATE-Seq', 'drug': 'Telatinib'}, 'GSM2565277': {'construction': 'PLATE-Seq', 'drug': 'Varlitinib'}, 'GSM2565270': {'construction': 'PLATE-Seq', 'drug': 'Pazopanib'}, 'GSM2565271': {'construction': 'PLATE-Seq', 'drug': 'OSI-906 (Linsitinib)'}, 'GSM2565272': {'construction': 'PLATE-Seq', 'drug': 'Pimasertib (AS-703026)'}, 'GSM2565273': {'construction': 'PLATE-Seq', 'drug': 'Quizartinib (AC220)'}, 'GSM2667031': {'type': 'Macrophage'}, 'GSM2667030': {'type': 'Macrophage'}, 'GSM2667033': {'type': 'Macrophage'}, 'GSM2667032': {'type': 'Macrophage'}, 'GSM2565278': {'construction': 'PLATE-Seq', 'drug': 'BENZALKONIUM CHLORIDE'}, 'GSM2565279': {'construction': 'PLATE-Seq', 'drug': '2,6-DIMETHOXYQUINONE'}, 'GSM2667037': {'type': 'Macrophage'}, 'GSM2667036': {'type': 'Macrophage'}, 'GSM1965246': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965247': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965244': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965245': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965242': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965243': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965240': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965241': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965248': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965249': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1569558': {'knockdown': 'negative control', 'line': 'HMC-LT'}, 'GSM1569559': {'knockdown': 'shKDM3A', 'line': 'HMC-LT'}, 'GSM1569556': {'knockdown': 'N/A', 'line': 'HMC-LT'}, 'GSM1569557': {'knockdown': 'N/A', 'line': 'HMC-LTR'}, 'GSM1569554': {'knockdown': 'N/A', 'line': 'HMC-P6'}, 'GSM1569555': {'knockdown': 'N/A', 'line': 'HMC-L'}, 'GSM1473800': {'origin': 'Skin', 'with': '5-aza', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM1473803': {'origin': 'Skin', 'with': 'H2O2', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM1473805': {'origin': 'Skin', 'with': 'H2O2', 'passages': '>200', 'type': 'MDAH041 LFS fibroblasts', 'group': 'induced into senescence'}, 'GSM2535938': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6739', 'samplename': '1_Ctl_RO+_C08', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30102', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6739', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C08'}, 'GSM2535939': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6740', 'samplename': '1*_Ctl_RO+_C20', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30103', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6740', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C20'}, 'GSM2535936': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6030', 'samplename': '1_HealthyCtl_RO+_C94', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28989', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6030', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C94'}, 'GSM2535937': {'status': 'HC', 'lane': '7', 'seqsite': 'BRI', 'samplelabel': 'lib6737', 'samplename': '1_Ctl_RO+_C15', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC3', 'sampleID': 'S30100', 'numcellssorted': '280', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C6G59ANXX', 'c1plateid': '1771023210', 'libraryid': 'lib6737', 'projectid': 'P91-9', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C15'}, 'GSM2535934': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6028', 'samplename': '1*_HealthyCtl_RO+_C77', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28987', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6028', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C77'}, 'GSM2535935': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6029', 'samplename': '1_HealthyCtl_RO+_C88', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28988', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6029', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C88'}, 'GSM2535932': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6026', 'samplename': '1_HealthyCtl_RO+_C53', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28985', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6026', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C53'}, 'GSM2535933': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6027', 'samplename': '1_HealthyCtl_RO+_C65', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28986', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6027', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C65'}, 'GSM2535930': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6024', 'samplename': '1_HealthyCtl_RO+_C84', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28983', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6024', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C84'}, 'GSM2535931': {'status': 'HC', 'lane': '6', 'seqsite': 'BRI', 'samplelabel': 'lib6025', 'samplename': '1_HealthyCtl_RO+_C90', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'HC2', 'sampleID': 'S28984', 'numcellssorted': '1860', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C5UF5ANXX', 'c1plateid': '1771023201', 'libraryid': 'lib6025', 'projectid': 'P91-7', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C90'}, 'GSM2616408': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616409': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616404': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616405': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM2616406': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616407': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM2616400': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616401': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616402': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616403': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2194595': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194594': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2679528': {'line': 'HUH7', 'point': 'mitotic'}, 'GSM2679529': {'line': 'HUH7', 'point': 'mitotic'}, 'GSM2194597': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194596': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2142628': {'gender': 'female', 'age': '71', 'who': '1', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142629': {'gender': 'female', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142624': {'gender': 'female', 'age': '66', 'who': '1', 'dead': '0', 'date': '2013-04-10', 'histology': '1', 'tnm': '1', 'smoking': '2'}, 'GSM2194591': {'type': 'duct', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2142626': {'gender': 'female', 'age': '62', 'who': '0', 'dead': '1', 'date': '2011-01-06', 'histology': '2', 'tnm': '5', 'smoking': '1'}, 'GSM2142627': {'gender': 'male', 'age': '74', 'who': '0', 'dead': '1', 'date': '2012-10-16', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2142620': {'gender': 'male', 'age': '69', 'who': '1', 'dead': '1', 'date': '2010-02-20', 'histology': '1', 'tnm': '2', 'smoking': '2'}, 'GSM2142621': {'gender': 'female', 'age': '69', 'who': '0', 'dead': '1', 'date': '2011-02-13', 'histology': '1', 'tnm': '4', 'smoking': '1'}, 'GSM2142622': {'gender': 'male', 'age': '77', 'who': '0', 'dead': '0', 'date': '2013-04-10', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2194590': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1661369': {'with': 'random 23-mer', 'line': 'HCT 116', 'type': 'Colorectal carcinoma cell line'}, 'GSM2533756': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM2108054': {'type': 'AML cell line', 'translocation': 'MLL-AF9'}, 'GSM2194592': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1580779': {'age': '24 6/7 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM1580778': {'age': '27 2/7 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM1395432': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1580777': {'age': '26 2/7 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM1580776': {'age': '25 3/7 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM1580775': {'age': '32 weeks', 'tissue': 'ileum', 'pathology': 'acute preterm NEC'}, 'GSM2575282': {'line': 'WM989', 'type': 'melanoma', 'condition': 'EGFR', 'drug': '4 weeks'}, 'GSM1620508': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2286715': {'line': 'MCF10A', 'type': 'single cell'}, 'GSM2286714': {'line': 'MCF10A', 'type': 'single cell'}, 'GSM2286717': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286716': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286711': {'line': 'MCF10A', 'type': 'single cell'}, 'GSM2286710': {'line': 'MCF10A', 'type': 'single cell'}, 'GSM2411791': {'line': '554A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM2286712': {'line': 'MCF10A', 'type': 'single cell'}, 'GSM2286719': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM2286718': {'line': 'MCF10A', 'type': 'pool-and-split averaged single cell'}, 'GSM1599968': {'type': 'neonatal human foreskin fibroblasts (primary culture cells)', 'treatment': 'transduced with MycER and control shRNA, treated with 4-hydroxytamoxifen (4-OHT)'}, 'GSM1599969': {'type': 'neonatal human foreskin fibroblasts (primary culture cells)', 'treatment': 'transduced with MycER and control shRNA, not treated with 4-hydroxytamoxifen (4-OHT)'}, 'GSM1599966': {'type': 'neonatal human foreskin fibroblasts (primary culture cells)', 'treatment': 'transduced with MycER and BPTF-targeting shRNA, treated with 4-hydroxytamoxifen (4-OHT)'}, 'GSM1599967': {'type': 'neonatal human foreskin fibroblasts (primary culture cells)', 'treatment': 'transduced with MycER and BPTF-targeting shRNA, not treated with 4-hydroxytamoxifen (4-OHT)'}, 'GSM1479433': {'index': '21', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '32', 'smoker': '--', 'dose': '--', 'race': 'Hispanic', 'donorid': '44', 'collectiondate': 'June 26 2012', 'samplename': '44_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Healthy Control'}, 'GSM2411790': {'line': '521E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'iPSC', 'genotype': 'Major/Major'}, 'GSM1479436': {'index': '13', 'diagnosis': '7', 'cellcount': '--', 'gender': 'F', 'age': '24', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '34', 'collectiondate': 'May 23 2012', 'samplename': '34_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM1479435': {'index': '9', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '33', 'collectiondate': 'May 22 2012', 'samplename': '33_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'MS posttreatment'}, 'GSM1479434': {'index': '2', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '52', 'smoker': 'Y', 'dose': '3 weeks, oral', 'race': 'White', 'donorid': '31', 'collectiondate': 'May 21 2012', 'samplename': '31_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'MS pretreatment'}, 'GSM1479439': {'index': '23', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '32', 'smoker': '--', 'dose': '--', 'race': 'Hispanic', 'donorid': '44', 'collectiondate': 'June 26 2012', 'samplename': '44_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Healthy Control'}, 'GSM1479438': {'index': '5', 'diagnosis': '--', 'cellcount': '14737500', 'gender': 'F', 'age': '32', 'smoker': '--', 'dose': '--', 'race': 'Hispanic', 'donorid': '44', 'collectiondate': 'June 26 2012', 'samplename': '44_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Healthy Control'}, 'GSM1917074': {'type': 'Primary blood-specific endothelial cells', 'passage': '7 to 12'}, 'GSM1917075': {'type': 'Primary blood-specific endothelial cells', 'passage': '7 to 12'}, 'GSM1917076': {'type': 'Primary lymphatic-specific endothelial cells', 'passage': '7 to 12'}, 'GSM1917077': {'type': 'Primary lymphatic-specific endothelial cells', 'passage': '7 to 12'}, 'GSM1704300': {'cohort': 'Control; healthy control subject', 'tissue': 'Peripheral blood', 'type': 'sorted CD4+ ILC1', 'gender': 'Female'}, 'GSM1704301': {'cohort': 'Control; healthy control subject', 'tissue': 'Peripheral blood', 'type': 'sorted CD4- ILC1', 'gender': 'Female'}, 'GSM1704302': {'cohort': 'Control; healthy control subject', 'tissue': 'Peripheral blood', 'type': 'sorted CD4+ ILC1', 'gender': 'Male'}, 'GSM1917073': {'type': 'Primary blood-specific endothelial cells', 'passage': '7 to 12'}, 'GSM1401728': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1401729': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM1917078': {'type': 'Primary lymphatic-specific endothelial cells', 'passage': '7 to 12'}, 'GSM2392627': {'treatment': 'Estrogen', 'genotype': 'D538G'}, 'GSM849368': {'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'J72', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '003WC'}, 'GSM2392626': {'treatment': 'Estrogen', 'genotype': 'D538G'}, 'GSM849364': {'lineage': 'ectoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'K07', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '015WC'}, 'GSM849365': {'lineage': 'mesoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'J70', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '001WC'}, 'GSM849366': {'lineage': 'ectoderm', 'description': 'tier 3', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'K08', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '3', 'labversion': 'IDR', 'biorep': '027C'}, 'GSM849367': {'lineage': 'ectoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'J76', 'sex': 'U', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '007WC'}, 'GSM849360': {'lineage': 'ectoderm', 'description': 'Poly(A)- RNA longer than 200 nt', 'localization': 'cytosol', 'datatype': 'Cage', 'labexpid': 'J56', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'labversion': 'IDR', 'karyotype': 'cancer', 'biorep': 'gen0121C'}, 'GSM2581252': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '2'}, 'GSM849362': {'lineage': 'ectoderm', 'description': 'tier 1', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'K14', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'labversion': 'IDR', 'biorep': '019WC'}, 'GSM849363': {'lineage': 'ectoderm', 'description': 'Total RNA extract (longer than 200 nt)', 'localization': 'nucleolus', 'datatype': 'Cage', 'labexpid': 'J58', 'sex': 'F', 'rnaextract': 'total', 'karyotype': 'cancer', 'biorep': 'gen0123NL'}, 'GSM2448990': {'line': 'HMEC-1', 'drug': 'vehicle control (DMSO)'}, 'GSM2581254': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM1330709': {'line': 'MRC5', 'tissue': 'lung', 'type': 'fibroblast cells', 'treatment': '0.2mM H2O2', 'tiime': '30 minutes'}, 'GSM1330708': {'line': 'MRC5', 'tissue': 'lung', 'type': 'fibroblast cells', 'treatment': 'none', 'tiime': 'Untreated'}, 'GSM1581043': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2581255': {'phase': 'mid secretory', 'origin': 'Spain', 'tissue': 'endometrium stroma', 'library': '1'}, 'GSM2287448': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287449': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM644994': {'vendor': 'Abcam mixed with in-house antibody', 'antibody': 'anti-H3K79me3', 'line': 'NCCIT', 'type': 'embryonic carcinoma cells', 'number': 'ab2621'}, 'GSM2705316': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2287443': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287440': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287441': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287446': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287447': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287444': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287445': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610802': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2067384': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067387': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2610801': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610806': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610807': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610804': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610805': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610808': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610809': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2067389': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2067388': {'line': 'HL60', 'tissue': 'Peripheral blood leukocytes were obtained by leukopheresis from a 36-year-old Caucasian female with acute promyelocytic leukemia', 'type': 'acute promyelocytic leukemia', 'Sex': 'female'}, 'GSM2151501': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151500': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151503': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151502': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151505': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151504': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151507': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151506': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151509': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2151508': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2367488': {'to': '10 Gy irradition', 'line': 'MCF-7', 'barcode': 'TGACCA', 'with': 'UV light at 365 nm (0.2 J/cm2)'}, 'GSM2212211': {'company': 'cat #): Not applicable', 'tissue': 'Skin fibroblasts', 'treatment': 'Untreated'}, 'GSM2212210': {'company': 'cat #): Tocris Bioscience: #5325', 'tissue': 'hiPSC-derived cardiomyocytes', 'treatment': 'Rosiglitazone'}, 'GSM2212213': {'company': 'cat #): Not applicable', 'tissue': 'Skin fibroblasts', 'treatment': 'Untreated'}, 'GSM2212212': {'company': 'cat #): Not applicable', 'tissue': 'Skin fibroblasts', 'treatment': 'Untreated'}, 'GSM2212215': {'company': 'cat #): Not applicable', 'tissue': 'Skin fibroblasts', 'treatment': 'Untreated'}, 'GSM2212214': {'company': 'cat #): Not applicable', 'tissue': 'Skin fibroblasts', 'treatment': 'Untreated'}, 'GSM2212217': {'company': 'cat #): Not applicable', 'tissue': 'Skin fibroblasts', 'treatment': 'Untreated'}, 'GSM2212216': {'company': 'cat #): Not applicable', 'tissue': 'Skin fibroblasts', 'treatment': 'Untreated'}, 'GSM2644595': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644594': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-PR (Santa Cruz, H-190)'}, 'GSM2644597': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644596': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644591': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-PR (Santa Cruz, H-190)'}, 'GSM2644590': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-PR (Santa Cruz, H-190)'}, 'GSM2644593': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-PR (Santa Cruz, H-190)'}, 'GSM2644592': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-PR (Santa Cruz, H-190)'}, 'GSM2486475': {'line': 'NOMO-1'}, 'GSM2644599': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644598': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2476386': {'type': 'foreskin, NHM2', 'passage': '8'}, 'GSM2108349': {'stages': 'myoblast'}, 'GSM2471140': {'lineage': 'erythroid', 'transduction': 'U2AF1 S34F', 'type': 'BFU-E'}, 'GSM2471141': {'lineage': 'erythroid', 'transduction': 'U2AF1 S34F', 'type': 'BFU-E'}, 'GSM2471142': {'lineage': 'erythroid', 'transduction': 'U2AF1 S34F', 'type': 'BFU-E'}, 'GSM2471143': {'lineage': 'granulomonocytic', 'transduction': 'empty vector', 'type': 'CFU-G'}, 'GSM2507559': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'wild type'}, 'GSM2507558': {'state': 'chronic lymphocytic leukemia (CLL)', 'variation': 'wild type'}, 'GSM2471146': {'lineage': 'granulomonocytic', 'transduction': 'U2AF1 wild-type', 'type': 'CFU-G'}, 'GSM2471147': {'lineage': 'granulomonocytic', 'transduction': 'U2AF1 wild-type', 'type': 'CFU-G'}, 'GSM2507555': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12-/- + E351A'}, 'GSM2471149': {'lineage': 'granulomonocytic', 'transduction': 'U2AF1 S34F', 'type': 'CFU-M'}, 'GSM2507557': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12-/- + mtPAP'}, 'GSM2507556': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12+/+ + mtPAP'}, 'GSM2507551': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12-/-'}, 'GSM2507550': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12-/-'}, 'GSM2507553': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12-/-'}, 'GSM2507552': {'line': 'Human embryonic kidney cells 293 (HEK293T)', 'passages': '10-15', 'variation': 'PDE12+/+'}, 'GSM2882988': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject1', 'drug': 'Metformin'}, 'GSM2882989': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject2', 'drug': 'Metformin'}, 'GSM2882986': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject14', 'drug': 'Placebo'}, 'GSM2882987': {'tissue': 'Vastus lateralis muscle', 'visit': '1', 'id': 'Subject14', 'drug': 'Placebo'}, 'GSM2882984': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject13', 'drug': 'Placebo'}, 'GSM2882985': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject13', 'drug': 'Placebo'}, 'GSM2882982': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject12', 'drug': 'Placebo'}, 'GSM2882983': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject12', 'drug': 'Placebo'}, 'GSM2882980': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject12', 'drug': 'Placebo'}, 'GSM2882981': {'tissue': 'Vastus lateralis muscle', 'visit': '2', 'id': 'Subject12', 'drug': 'Placebo'}, 'GSM2082577': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082576': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082575': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082574': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082573': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'DMSO', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082572': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082571': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082570': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'AZD-8055', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082579': {'molecule': 'mRNA', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM2082578': {'molecule': 'Ribosome protected fragments', 'type': 'Embryonic stem cell-derived neurons', 'treatment': 'Rapamycin', 'variation': 'TSC2-/-', 'id': '20'}, 'GSM1435254': {'line': 'MDA-MB-231', 'antibody': 'Tra2β'}, 'GSM1435253': {'line': 'MDA-MB-231', 'antibody': 'Tra2β'}, 'GSM1435252': {'line': 'MDA-MB-231', 'antibody': 'Tra2β'}, 'GSM1435251': {'line': 'MDA-MB-231'}, 'GSM1435250': {'line': 'MDA-MB-231'}, 'GSM1861895': {'group': 'N1ICD', 'factor': 'No'}, 'GSM1861896': {'group': 'N1ICD', 'factor': 'No'}, 'GSM1861897': {'group': 'N1ICD', 'factor': 'No'}, 'GSM1861898': {'group': 'N1ICD', 'factor': 'No'}, 'GSM1861899': {'group': 'N1ICD', 'factor': 'No'}, 'GSM1537308': {'gender': 'Female', 'line': 'WI38', 'type': 'Normal Cells'}, 'GSM2359989': {'induction': 'Adipocyte differentiation', 'antibody': 'CHD1 (Bethyl ,A301-218A)'}, 'GSM1835870': {'source': 'primary liver rhabdoid tumor tissue', 'id': 'RT236'}, 'GSM1537304': {'gender': 'Female', 'line': 'WI38', 'type': 'Normal Cells'}, 'GSM1537305': {'gender': 'Female', 'line': 'SKBR3', 'type': 'HER2+'}, 'GSM1537306': {'gender': 'Female', 'line': 'MDAMB436', 'type': 'Basal-Like Carcinoma'}, 'GSM2359988': {'induction': 'Undifferentiated', 'antibody': 'CHD1 (Bethyl ,A301-218A)'}, 'GSM1537300': {'gender': 'Female', 'line': 'SKBR3', 'type': 'HER2+', 'antibody': 'None'}, 'GSM1537301': {'gender': 'Female', 'line': 'MDAMB436', 'type': 'Basal-Like Carcinoma', 'antibody': 'None'}, 'GSM1537302': {'gender': 'Female', 'line': 'ZR751', 'type': 'Luminal', 'antibody': 'None'}, 'GSM1537303': {'gender': 'Female', 'line': 'WI38', 'type': 'Normal Cells'}, 'GSM2188680': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-131', 'er': 'negative'}, 'GSM2188681': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-132', 'er': 'negative'}, 'GSM2188682': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-136', 'er': 'negative'}, 'GSM1548006': {'sample': 'embryo', 'age': '72 days', 'type': 'cKIT+ FACS sort'}, 'GSM2188684': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-139', 'er': 'negative'}, 'GSM2188685': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-146', 'er': 'negative'}, 'GSM2188686': {'erbb2': 'high', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-146', 'er': 'negative'}, 'GSM2188687': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'low', 'her2': 'negative', 'donor': 'BRx-16', 'er': 'negative'}, 'GSM2188688': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-16', 'er': 'negative'}, 'GSM2188689': {'erbb2': 'low', 'pr': 'negative', 'ptprc': 'high', 'her2': 'negative', 'donor': 'BRx-16', 'er': 'negative'}, 'GSM2361562': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361563': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361560': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361561': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361566': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361567': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361564': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361565': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361568': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361569': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1671927': {'type': 'Antigen presenting cells'}, 'GSM1671926': {'type': 'Antigen presenting cells'}, 'GSM1671925': {'type': 'Antigen presenting cells'}, 'GSM1671924': {'type': 'Antigen presenting cells'}, 'GSM1671929': {'type': 'Antigen presenting cells'}, 'GSM1671928': {'type': 'Antigen presenting cells'}, 'GSM2650187': {'cell': 'hES', 'strain': 'H9', 'genotype': 'Smad5-/-'}, 'GSM1955818': {'a': '62549', 'cd38': '415', 'cd49f': '376', 'w': '64559', 'h': '63496', 'lin': '368', 'cd34': '8994', 'cd90': '3056', 'cd7': '346', 'cd10': '950', 'time': '5392', 'cd135': '2700', 'cd45ra': '220'}, 'GSM1955819': {'a': '50357', 'cd38': '505', 'cd49f': '796', 'w': '67119', 'h': '49169', 'lin': '623', 'cd34': '8595', 'cd90': '3655', 'cd7': '134', 'cd10': '354', 'time': '5193', 'cd135': '2410', 'cd45ra': '59'}, 'GSM1581018': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1955814': {'a': '54141', 'cd38': '486', 'cd49f': '911', 'w': '66825', 'h': '53097', 'lin': '-2', 'cd34': '7600', 'cd90': '-63', 'cd7': '525', 'cd10': '739', 'time': '6176', 'cd135': '10723', 'cd45ra': '2587'}, 'GSM1955815': {'a': '62027', 'cd38': '614', 'cd49f': '598', 'w': '65853', 'h': '61728', 'lin': '154', 'cd34': '5379', 'cd90': '580', 'cd7': '365', 'cd10': '529', 'time': '5984', 'cd135': '5677', 'cd45ra': '604'}, 'GSM1955816': {'a': '46305', 'cd38': '390', 'cd49f': '509', 'w': '66295', 'h': '45775', 'lin': '147', 'cd34': '7873', 'cd90': '1096', 'cd7': '360', 'cd10': '534', 'time': '5798', 'cd135': '4026', 'cd45ra': '306'}, 'GSM1955817': {'a': '58522', 'cd38': '876', 'cd49f': '675', 'w': '66193', 'h': '57941', 'lin': '429', 'cd34': '6711', 'cd90': '2771', 'cd7': '196', 'cd10': '929', 'time': '5595', 'cd135': '3604', 'cd45ra': '121'}, 'GSM1955810': {'a': '50887', 'cd38': '660', 'cd49f': '414', 'w': '65333', 'h': '51045', 'lin': '260', 'cd34': '8442', 'cd90': '4491', 'cd7': '540', 'cd10': '703', 'time': '7008', 'cd135': '790', 'cd45ra': '104'}, 'GSM1955811': {'a': '58727', 'cd38': '-16', 'cd49f': '91', 'w': '63351', 'h': '60752', 'lin': '380', 'cd34': '4902', 'cd90': '1836', 'cd7': '498', 'cd10': '228', 'time': '6806', 'cd135': '3785', 'cd45ra': '90'}, 'GSM1955812': {'a': '58361', 'cd38': '1001', 'cd49f': '172', 'w': '63171', 'h': '60546', 'lin': '266', 'cd34': '4970', 'cd90': '1261', 'cd7': '380', 'cd10': '300', 'time': '6594', 'cd135': '10215', 'cd45ra': '1306'}, 'GSM1955813': {'a': '43599', 'cd38': '452', 'cd49f': '89', 'w': '67229', 'h': '42501', 'lin': '461', 'cd34': '6612', 'cd90': '115', 'cd7': '448', 'cd10': '740', 'time': '6377', 'cd135': '183', 'cd45ra': '369'}, 'GSM2053526': {'state': 'healthy control', 'type': 'PSC-derived neural crest'}, 'GSM2053524': {'state': 'healthy control', 'type': 'PSC-derived neural crest'}, 'GSM2053525': {'state': 'healthy control', 'type': 'PSC-derived neural crest'}, 'GSM2053522': {'state': 'mild familial dysautonomia', 'type': 'PSC-derived neural crest'}, 'GSM2053523': {'state': 'mild familial dysautonomia', 'type': 'PSC-derived neural crest'}, 'GSM2053520': {'state': 'severe familial dysautonomia', 'type': 'PSC-derived neural crest'}, 'GSM2053521': {'state': 'mild familial dysautonomia', 'type': 'PSC-derived neural crest'}, 'GSM2689264': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689265': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689266': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689267': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689260': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689261': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689262': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689263': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1220553': {'rearrangement': 'IGH-FOXP1 rearrangement--t(3;14)(p13;q32)/IGH-FOXP1', 'ihc': 'positive', 'tissue': 'lymphoma', 'karyotype': '46,X,t(X;12)(p11;p13),r(1)(p13q44),t(3;14)(p13;q32),add(4)(q31),+12[9/10]', 'diagnosis': 'ABC-DLBCL'}, 'GSM2689268': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689269': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2350139': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350138': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350131': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350130': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM2350133': {'rna': 'Bulk', 'used': 'None'}, 'GSM2350132': {'rna': 'Bulk', 'used': 'None'}, 'GSM2350135': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350134': {'rna': 'Bulk', 'used': 'None'}, 'GSM2350137': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350136': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2307009': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307008': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307001': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307000': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307003': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307002': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307005': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307004': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307007': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307006': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2630679': {'line': 'HCC1143', 'treatment': '1uM Trametnib + 1uM JQ1'}, 'GSM2630678': {'line': 'HCC1143', 'treatment': '1uM Trametinib'}, 'GSM2630673': {'line': 'HCC1143', 'treatment': 'DMSO'}, 'GSM2630672': {'line': 'HCC1143', 'treatment': 'DMSO'}, 'GSM2630671': {'line': 'HCC1143', 'treatment': 'DMSO'}, 'GSM2630670': {'line': 'HCC1143', 'treatment': '1uM BEZ235 + 1uM JQ1'}, 'GSM2630677': {'line': 'HCC1143', 'treatment': '1uM Trametinib'}, 'GSM2630676': {'line': 'HCC1143', 'treatment': '1uM Trametinib'}, 'GSM2630675': {'line': 'HCC1143', 'treatment': '1uM JQ1'}, 'GSM2630674': {'line': 'HCC1143', 'treatment': '1uM JQ1'}, 'GSM2549708': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM1479468': {'index': '4', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'M', 'age': '80', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '43', 'collectiondate': 'June 22 2012', 'samplename': '43_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Sepsis'}, 'GSM2750900': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750901': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750902': {'type': 'CD38-negative embryoid body cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750903': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750904': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750905': {'type': 'CD38-positive PGC-like cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750906': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750907': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750908': {'type': 'naive pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM2750909': {'type': 'primed pluripotent stem cells', 'ethnicity': 'Caucassian', 'Sex': 'male'}, 'GSM1656437': {'state': 'myotonic dystrophy', 'tissue': 'left ventricle'}, 'GSM2549703': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM2730426': {'age': '42', 'type': 'Neutrophil', 'disease': 'healthy', 'ethnicity': 'White', 'Sex': 'F'}, 'GSM2259928': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY-hcM'}, 'GSM2105049': {'gender': 'Female', 'age': '11 Year old', 'batch': '1F', 'condition': 'Disomic'}, 'GSM1957416': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM2259926': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY1'}, 'GSM1957414': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957415': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957412': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957413': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957410': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957411': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM3594705': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594704': {'cluster': '1', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594707': {'cluster': '3', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594706': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM3594701': {'cluster': '2', 'disease': 'Remission', 'batch': 'Jan30'}, 'GSM2259924': {'sirna': 'siGENOME non-targeting control siRNA', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY1'}, 'GSM1957418': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1957419': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1668428': {'with': 'ethanol', 'type': 'skeletal muscle cells'}, 'GSM2259925': {'sirna': 'si2992 (MYB knockdown)', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY1'}, 'GSM2259922': {'sirna': 'siGENOME non-targeting control siRNA', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY1'}, 'GSM1304791': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'orthochromatic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin negative'}, 'GSM1304790': {'strain': 'Cultured CD34+ cells', 'tissue': 'Cord blood', 'type': 'orthochromatic erythroblast', 'methods': 'GPA positive, Band3 high and alpha 4 integrin negative'}, 'GSM2259923': {'sirna': 'siGENOME non-targeting control siRNA', 'line': 'K-562', 'type': 'human erythroleukemic cell line', 'expressing': '3xTY1'}, 'GSM2133516': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133517': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133514': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133515': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133512': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133513': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133510': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133511': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'before treatment'}, 'GSM2133518': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM2133519': {'status': 'patients with Alopecia Areata', 'tissue': 'scalp biopsy', 'point': 'at 8 weeks of treatment with Tofacitinib Citrate 5 mg BID'}, 'GSM1836757': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'miR-155-/-'}, 'GSM1836756': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'miR-155-/-'}, 'GSM1836755': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'miR-155-/-'}, 'GSM1836754': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'WT'}, 'GSM1836753': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'WT'}, 'GSM1836752': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'WT'}, 'GSM1836759': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'miR-155-/-'}, 'GSM1836758': {'line': 'FLT3-ITD+ AML cell lines (MV4-11)', 'genotype': 'miR-155-/-'}, 'GSM1668423': {'with': '1,25(OH)2D3 treatment', 'type': 'skeletal muscle cells'}, 'GSM1668424': {'with': 'ethanol', 'type': 'skeletal muscle cells'}, 'GSM3189069': {'boca': 'No', 'years': '8', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '37', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'Yes', 'b': 'No', 'mediancvcoverage': '0.696703', 'percentaligned': '0.93891', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.612985', 'original': 'Control'}, 'GSM1668425': {'with': '1,25(OH)2D3 treatment', 'type': 'skeletal muscle cells'}, 'GSM1431881': {'line': 'MCF-7', 'type': 'breast cancer', 'condition': '12h, ZNA, 30 uM'}, 'GSM1464097': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNGGCGNN', 'type': 'human foreskin fibroblasts', 'infection': '2 h p.i.'}, 'GSM1464096': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNCAATNN', 'type': 'human foreskin fibroblasts', 'infection': '1 h p.i.'}, 'GSM1464095': {'with': 'mock', 'barcode': 'NNNTTGTNN', 'type': 'human foreskin fibroblasts', 'infection': 'mock'}, 'GSM860019': {'length': '50', 'line': '293T', 'treatment': 'hnRNPM siRNAs'}, 'GSM860018': {'length': '50', 'line': '293T', 'treatment': 'hnRNPM siRNAs'}, 'GSM860017': {'length': '76', 'line': '293T', 'treatment': 'hnRNPM siRNAs'}, 'GSM860016': {'length': '36', 'line': '293T', 'treatment': 'hnRNPM siRNAs'}, 'GSM860015': {'length': '70', 'line': '293T', 'treatment': 'hnRNPH1 siRNAs'}, 'GSM860014': {'length': '70', 'line': '293T', 'treatment': 'hnRNPH1 siRNAs'}, 'GSM860013': {'length': '50', 'line': '293T', 'treatment': 'hnRNPF siRNA'}, 'GSM860012': {'length': '50', 'line': '293T', 'treatment': 'hnRNPF siRNA'}, 'GSM1464099': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNTGGCNN', 'type': 'human foreskin fibroblasts', 'infection': '6 h p.i.'}, 'GSM1464098': {'with': 'Herpes simplex virus 1, strain 17', 'barcode': 'NNNCCGGNN', 'type': 'human foreskin fibroblasts', 'infection': '4 h p.i.'}, 'GSM2496329': {'type': 'patient dervied GBM stem cells', 'passage': '2-5'}, 'GSM2496328': {'type': 'patient dervied GBM stem cells', 'passage': '2-5'}, 'GSM2496327': {'type': 'patient dervied GBM stem cells', 'passage': '2-5'}, 'GSM2496326': {'type': 'patient dervied GBM stem cells', 'passage': '2-5'}, 'GSM2496325': {'type': 'patient dervied GBM stem cells', 'passage': '2-5'}, 'GSM1980048': {'line': 'SW480'}, 'GSM1400956': {'line': 'MCF7'}, 'GSM1400957': {'line': 'MCF7'}, 'GSM1341741': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1341740': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM2147670': {'status': 'non-responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147671': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147672': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147673': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147674': {'status': 'non-responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147675': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147676': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147677': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147678': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2147679': {'status': 'responder', 'cohort': '1', 'condition': 'juvenile idiopathic arthritis (JIA)'}, 'GSM2455567': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455568': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455569': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1866987': {'line': 'HCT116', 'clone': 'Control Clone 1', 'point': 'RNA extracted on day B'}, 'GSM1866986': {'line': 'HCT116', 'clone': 'Control Clone 1', 'point': 'RNA extracted on day A'}, 'GSM1866989': {'line': 'HCT116', 'clone': 'Control Clone 2', 'point': 'RNA extracted on day A'}, 'GSM1866988': {'line': 'HCT116', 'clone': 'Control Clone 1', 'point': 'RNA extracted on day C'}, 'GSM2840333': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840332': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840331': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840330': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840337': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840336': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840335': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840334': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840339': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840338': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM3189318': {'boca': 'No', 'years': '7', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B72', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.740605', 'percentaligned': '0.948190465', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.613691', 'original': 'Control'}, 'GSM2194505': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3189319': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.649066', 'percentaligned': '0.950296603', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.333094', 'original': 'Case'}, 'GSM721118': {'origin': 'Cell Line', 'line': 'LNCaP', 'tissue': 'Prostate', 'type': 'Cancer Cell Line'}, 'GSM721119': {'origin': 'Cell Line', 'line': 'LNCaP', 'tissue': 'Prostate', 'type': 'Cancer Cell Line'}, 'GSM721116': {'origin': 'Cell Line', 'line': 'LNCaP', 'tissue': 'Prostate', 'type': 'Cancer Cell Line'}, 'GSM721117': {'origin': 'Cell Line', 'line': 'LNCaP', 'tissue': 'Prostate', 'type': 'Cancer Cell Line'}, 'GSM2695331': {'type': 'primed human ESC'}, 'GSM2695330': {'type': 'primed human ESC'}, 'GSM2453198': {'subtype': \"reporter mRNA 3' end\", 'line': 'HEK293T', 'with': '1000 mM 4sU 60 min'}, 'GSM2453197': {'subtype': \"reporter mRNA 3' end\", 'line': 'HEK293T', 'with': '1000 mM 4sU 60 min'}, 'GSM2453196': {'subtype': \"reporter mRNA 3' end\", 'line': 'HEK293T', 'with': '1000 mM 4sU 30 min'}, 'GSM2453195': {'subtype': \"reporter mRNA 3' end\", 'line': 'HEK293T', 'with': '1000 mM 4sU 30 min'}, 'GSM2453194': {'subtype': \"reporter mRNA 3' end\", 'line': 'HeLa', 'with': 'none'}, 'GSM2453193': {'subtype': \"reporter mRNA 3' end\", 'line': 'HeLa', 'with': 'none'}, 'GSM2453192': {'subtype': \"reporter mRNA 3' end\", 'line': 'HEK293T', 'with': 'none'}, 'GSM2453191': {'subtype': \"reporter mRNA 3' end\", 'line': 'HEK293T', 'with': 'none'}, 'GSM1982286': {'type': 'NK', 'synthesis': 'Ovation RNA-Seq System V2 NuGEN)'}, 'GSM2754599': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_1112', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754598': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_1104', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754597': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_1104', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754596': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_1104', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754595': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '04_1119', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754594': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_1119', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754593': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_1119', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754592': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0692', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754591': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0692', 'previousdiagnosisoftb': 'No', 'tst': '19', 'type': 'Tcells'}, 'GSM2754590': {'bin': '4', 'group': 'case', 'qft': 'negative', 'gender': 'female', 'age': '14', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0692', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2842797': {'antibodies': 'BRD2 (Bethyl Laboratories, A302-583A)', 'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM2842799': {'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM2842798': {'antibodies': 'BRD4 (Bethyl Laboratories, A301-985A)', 'type': 'foreskin, NHM1', 'passage': '8'}, 'GSM2616729': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616728': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616725': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616724': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616727': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM2616726': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616721': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616720': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616723': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2616722': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM1233969': {'replicate': '1', 'line': '12892', 'antibody': 'H3K4me3'}, 'GSM1233968': {'replicate': '3', 'line': '12892', 'antibody': 'H3K4me1'}, 'GSM1233965': {'replicate': '2', 'line': '12892', 'antibody': 'H3K36me3'}, 'GSM1233964': {'replicate': '1', 'line': '12892', 'antibody': 'H3K36me3'}, 'GSM1233967': {'replicate': '2', 'line': '12892', 'antibody': 'H3K4me1'}, 'GSM1233966': {'replicate': '1', 'line': '12892', 'antibody': 'H3K4me1'}, 'GSM1233961': {'replicate': '1', 'line': '12892', 'antibody': 'H3K27me3'}, 'GSM1233960': {'replicate': '1.2', 'line': '12892', 'antibody': 'H3K27me3'}, 'GSM1233963': {'replicate': '2', 'line': '12892', 'antibody': 'H3K27me3'}, 'GSM1233962': {'replicate': '2.2', 'line': '12892', 'antibody': 'H3K27me3'}, 'GSM2807450': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2459124': {'line': 'P493', 'type': 'B-Cell', 'treatment': '0.1 ug/mL tetracycline for 72h'}, 'GSM2459125': {'line': 'P493', 'type': 'B-Cell', 'treatment': '0.1 ug/mL tetracycline for 72h'}, 'GSM2339312': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339313': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2459120': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2459121': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2459122': {'line': 'P493', 'type': 'B-Cell'}, 'GSM2459123': {'line': 'P493', 'type': 'B-Cell', 'treatment': '0.1 ug/mL tetracycline for 72h'}, 'GSM2339318': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2339319': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2459128': {'type': 'human liver stellate cells', 'genotype': 'wild type'}, 'GSM4008571': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM1177769': {'antibody': 'POLII, Santa Cruz sc-9001x, lot # E3012', 'type': 'U2OS Cells', 'variation': 'shCTRL'}, 'GSM2420639': {'line': 'HEK293T'}, 'GSM2995501': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995500': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995502': {'gender': 'Male', 'type': 'iPSC'}, 'GSM3104720': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM1892629': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1896119': {'individual': 'AF41', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896118': {'individual': 'AF41', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896117': {'individual': 'AF41', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896116': {'individual': 'AF39', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896115': {'individual': 'AF39', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896114': {'individual': 'AF39', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896113': {'individual': 'AF37', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896112': {'individual': 'AF37', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896111': {'individual': 'AF37', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896110': {'individual': 'AF35', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1892628': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2412402': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412403': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412400': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412401': {'line': 'H1299', 'treatment': 'shNT control vector'}, 'GSM2412404': {'line': 'H1299', 'treatment': 'YEATS2 Knock Down'}, 'GSM2412405': {'line': 'H1299', 'treatment': 'YEATS2 Knock Down'}, 'GSM2243569': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243568': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243561': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243560': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243563': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243562': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243565': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243564': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243567': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B1', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243566': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2425373': {'state': 'active disease', 'type': 'neutrophils', 'treatment': 'untreated'}, 'GSM1155151': {'tnm': 'T3N0M0', 'gender': 'M', 'age': '67', 'tissue': 'renal pelvis'}, 'GSM2816770': {'Sex': 'Male', 'type': 'Primary Human Bronchial/Tracheal Epithelial Cells (HBTEC)', 'passage': '<10'}, 'GSM2816771': {'Sex': 'Male', 'type': 'Primary Human Bronchial/Tracheal Epithelial Cells (HBTEC)', 'passage': '<10'}, 'GSM2816772': {'Sex': 'Male', 'type': 'Primary Human Bronchial/Tracheal Epithelial Cells (HBTEC)', 'passage': '<10'}, 'GSM2816773': {'Sex': 'Male', 'type': 'Primary Human Bronchial/Tracheal Epithelial Cells (HBTEC)', 'passage': '<10'}, 'GSM2816774': {'Sex': 'Male', 'type': 'Primary Human Bronchial/Tracheal Epithelial Cells (HBTEC)', 'passage': '<10'}, 'GSM1808072': {'tissue': 'LCLs'}, 'GSM2202412': {'haplotype': 'A33-B58-DR9'}, 'GSM2202413': {'haplotype': 'A33-B58-DR9'}, 'GSM2202410': {'haplotype': 'A2-B46-DR9'}, 'GSM2202411': {'haplotype': 'A33-B58-DR9'}, 'GSM2202416': {'haplotype': 'A33-B58-DR9'}, 'GSM2202414': {'haplotype': 'A33-B58-DR9'}, 'GSM2202415': {'haplotype': 'A33-B58-DR9'}, 'GSM1808074': {'tissue': 'LCLs'}, 'GSM2048463': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048462': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048461': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048460': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048467': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048466': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048465': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048464': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048469': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048468': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2047332': {'well': 'A10', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2229938': {'Sex': 'female', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS20'}, 'GSM2047333': {'well': 'A11', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2229936': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS23'}, 'GSM2229937': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS23'}, 'GSM2229934': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS23'}, 'GSM2229935': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS23'}, 'GSM2229932': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'right', 'stage': 'CS23'}, 'GSM2229933': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'right', 'stage': 'CS23'}, 'GSM2229930': {'Sex': 'male', 'tissue': 'hindbrain', 'side': 'left', 'stage': 'CS23'}, 'GSM2229931': {'Sex': 'male', 'tissue': 'spinal cord', 'side': 'left', 'stage': 'CS23'}, 'GSM2100266': {'rin': '10', 'Sex': 'Female', 'sspg': '257', 'age': '68', 'bmi': '31.6', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '963', 'method': 'Life-Tech GITC'}, 'GSM2125099': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515) plus anti-rabbit IgG Control (cat# sc-2027, lot# E2914 or H2615)', 'type': 'ER+/PR+ T47D cell models', 'treatment': '10 nM R5020', 'time': '45 minutes'}, 'GSM2100264': {'rin': '6.3', 'Sex': 'Male', 'sspg': '184', 'age': '57', 'bmi': '24.5', 'batch': '1-37', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1118741A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '961', 'method': 'Qiagen:trizol'}, 'GSM2100265': {'rin': '10', 'Sex': 'Female', 'sspg': '257', 'age': '68', 'bmi': '31.6', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '963', 'method': 'Life-Tech GITC'}, 'GSM2746688': {'gender': 'Female', 'pathology': 'Control', 'batch': '3'}, 'GSM2746689': {'gender': 'Female', 'pathology': 'Control', 'batch': '3'}, 'GSM2100260': {'rin': '9.1', 'Sex': 'Female', 'sspg': '82', 'age': '65', 'bmi': '24.3', 'batch': '1-90', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '952', 'method': 'Life-Tech GITC'}, 'GSM2100261': {'rin': '10', 'Sex': 'Female', 'sspg': '82', 'age': '65', 'bmi': '24.3', 'batch': '1-90', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '952', 'method': 'Life-Tech GITC'}, 'GSM2746684': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '1'}, 'GSM2746685': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '3'}, 'GSM2746686': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '3'}, 'GSM2746687': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '3'}, 'GSM2746680': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '2'}, 'GSM2746681': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '2'}, 'GSM2125096': {'status': 'ER+/PRA-/PRB+', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': '10 nM R5020', 'time': '12 Hours'}, 'GSM2746683': {'gender': 'Male', 'pathology': 'FSHD', 'batch': '1'}, 'GSM2104314': {'sirna': 'siRNA control', 'type': 'Multiple Myeloma cells'}, 'GSM2104315': {'sirna': 'siDEPTOR', 'type': 'Multiple Myeloma cells'}, 'GSM2047338': {'well': 'B04', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1957082': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '33 days'}, 'GSM1679708': {'gender': 'male', 'study': 'P_29', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '89'}, 'GSM1679703': {'gender': 'male', 'study': 'P_22', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '94'}, 'GSM1679702': {'death': '85', 'gender': 'male', 'study': 'P_21', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.23876067', 'sv3': '0.191032629', 'sv1': '-0.132162311'}, 'GSM2125093': {'status': 'ER+/PRA+/PRB-', 'type': 'ER+/PRA+/PRB- T47D cell models', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '12 Hours'}, 'GSM2679489': {'line': 'BLCL (165)'}, 'GSM2679488': {'line': 'BLCL (165)'}, 'GSM2679487': {'line': 'BLCL (165)'}, 'GSM2679486': {'line': 'BLCL (165)'}, 'GSM2679485': {'line': 'BLCL (165)'}, 'GSM2679484': {'line': 'BLCL (165)'}, 'GSM2679483': {'line': 'BLCL (165)'}, 'GSM2679482': {'line': 'BLCL (165)'}, 'GSM2679481': {'line': 'BLCL (165)'}, 'GSM2679480': {'line': 'BLCL (165)'}, 'GSM2060177': {'line': 'LNCaP'}, 'GSM2060176': {'line': 'LNCaP'}, 'GSM2060175': {'line': 'LNCaP'}, 'GSM2060174': {'line': 'LNCaP'}, 'GSM2060173': {'line': 'LNCaP'}, 'GSM2060172': {'line': 'LNCaP'}, 'GSM2060171': {'line': 'LNCaP'}, 'GSM2060170': {'line': 'LNCaP'}, 'GSM2060179': {'line': 'LNCaP'}, 'GSM2060178': {'line': 'LNCaP'}, 'GSM2125094': {'status': 'ER+/PRA-/PRB+', 'type': 'ER+/PRA-/PRB+ T47D cell models', 'treatment': 'Vehicle', 'time': '12 Hours'}, 'GSM2459955': {'antibodies': 'N/A', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2459954': {'antibodies': 'N/A', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2312139': {'culture': '12', 'line': 'DCX-'}, 'GSM2312138': {'culture': '12', 'line': 'DCX-'}, 'GSM2459951': {'antibodies': 'O-GlcNAc: RL2, ab2739,Abcam', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2459950': {'antibodies': 'H3K27m3:cat 39155, Active Motif', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2459953': {'antibodies': 'N/A', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2459952': {'antibodies': 'N/A', 'type': 'colorectal adenocarcinoma', 'derivation': 'Isolated from primary tumor'}, 'GSM2312133': {'culture': '12', 'line': 'DCX-'}, 'GSM2312132': {'culture': '12', 'line': 'DCX-'}, 'GSM2312131': {'culture': '12', 'line': 'DCX-'}, 'GSM2312130': {'culture': '12', 'line': 'DCX-'}, 'GSM2459959': {'age': '6 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1+/-', 'Sex': 'Male'}, 'GSM2459958': {'age': '6 years', 'tissue': 'skin biopsy', 'type': 'melanocytes', 'genotype': 'ENPP1+/-', 'Sex': 'Male'}, 'GSM2312135': {'culture': '12', 'line': 'DCX-'}, 'GSM2312134': {'culture': '12', 'line': 'DCX-'}, 'GSM2039388': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM2039389': {'type': 'Human mammary epithelial (HMEC) cells', 'variation': 'overexpressing GFP control'}, 'GSM2113433': {'line': 'T98G', 'tissue': 'Brain tumor cell line', 'treatment': 'Not treated'}, 'GSM3586768': {'origin': 'GCB', 'pfstt': '93', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '136', 'cycles': '8', 'oscs': '0'}, 'GSM3586769': {'origin': 'GCB', 'pfstt': '1031', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1038', 'cycles': '8', 'oscs': '0'}, 'GSM3586764': {'origin': 'ABC', 'pfstt': '1519', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1653', 'cycles': '8', 'oscs': '0'}, 'GSM3586765': {'origin': 'UNCLASSIFIED', 'pfstt': '443', 'pfscs': '1', 'region': 'Asia', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '976', 'cycles': '8', 'oscs': '1'}, 'GSM3586766': {'origin': 'ABC', 'pfstt': '1535', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1535', 'cycles': '8', 'oscs': '0'}, 'GSM3586767': {'origin': 'ABC', 'pfstt': '1364', 'pfscs': '0', 'region': 'Asia', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1364', 'cycles': '8', 'oscs': '0'}, 'GSM3586760': {'origin': 'GCB', 'pfstt': '639', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '646', 'cycles': '6', 'oscs': '0'}, 'GSM3586761': {'origin': 'GCB', 'pfstt': '1408', 'pfscs': '0', 'region': 'North America', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1408', 'cycles': '8', 'oscs': '0'}, 'GSM3586762': {'origin': 'ABC', 'pfstt': '207', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '207', 'cycles': '8', 'oscs': '1'}, 'GSM3586763': {'origin': 'UNCLASSIFIED', 'pfstt': '706', 'pfscs': '0', 'region': 'Asia', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '881', 'cycles': '8', 'oscs': '0'}, 'GSM2676836': {'passages': 'Primary', 'type': 'Chondrocytes', 'tissue': 'Cartilage'}, 'GSM1956073': {'a': '73586', 'cd38': '807', 'cd49f': '364', 'w': '64908', 'h': '74298', 'lin': '303', 'cd34': '6258', 'cd90': '1809', 'cd7': '23', 'cd10': '1368', 'time': '21839', 'cd135': '4652', 'cd45ra': '425'}, 'GSM2113432': {'line': 'T98G', 'tissue': 'Brain tumor cell line', 'treatment': 'Not treated'}, 'GSM2676830': {'genotype': 'both_BRD4_KD'}, 'GSM1365943': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'LBH.589', 'timepoint': '24hr'}, 'GSM1365942': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Control', 'timepoint': '24hr'}, 'GSM1365941': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'NMP', 'timepoint': '4hr'}, 'GSM1365940': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Combo', 'timepoint': '4hr'}, 'GSM1365947': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'Control', 'timepoint': '24hr'}, 'GSM1365946': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'NMP', 'timepoint': '24hr'}, 'GSM1365945': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': 'Combo', 'timepoint': '24hr'}, 'GSM1365944': {'source': 'bone marrow', 'line': 'JJN3', 'treatment': '5.AZA', 'timepoint': '24hr'}, 'GSM1365949': {'source': 'peripheral blood', 'line': 'U266', 'treatment': '5.AZA', 'timepoint': '24hr'}, 'GSM1365948': {'source': 'peripheral blood', 'line': 'U266', 'treatment': 'LBH.589', 'timepoint': '24hr'}, 'GSM2113430': {'line': 'LNT-229', 'tissue': 'Brain tumor cell line', 'treatment': 'Cells following treatment with Decitabine'}, 'GSM2141478': {'individual': 'AF161', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141479': {'individual': 'AF161', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141474': {'individual': 'AF159', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141475': {'individual': 'AF159', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141476': {'individual': 'AF159', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141477': {'individual': 'AF161', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141470': {'individual': 'AF155', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141471': {'individual': 'AF157', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141472': {'individual': 'AF157', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141473': {'individual': 'AF157', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2391200': {'disease': 'NSCLC'}, 'GSM2391201': {'disease': 'NSCLC'}, 'GSM2391202': {'disease': 'NSCLC'}, 'GSM2391203': {'disease': 'NSCLC'}, 'GSM2391204': {'disease': 'NSCLC'}, 'GSM2391205': {'disease': 'NSCLC'}, 'GSM2391206': {'disease': 'NSCLC'}, 'GSM2391207': {'disease': 'NSCLC'}, 'GSM2391208': {'disease': 'NSCLC'}, 'GSM2391209': {'disease': 'NSCLC'}, 'GSM2098679': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098678': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098677': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098676': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098675': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098674': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098673': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098672': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098671': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2098670': {'strain': 'MDAMB231 cells', 'tissue': 'breast'}, 'GSM2802951': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': '4h'}, 'GSM2802950': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D0'}, 'GSM2802953': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D1'}, 'GSM2802952': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': '4h'}, 'GSM2802955': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D3'}, 'GSM1333752': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM2802954': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D1'}, 'GSM2802957': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D7'}, 'GSM2802956': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D3'}, 'GSM767950': {'type': 'hESC cells'}, 'GSM2802959': {'line': 'hMSC-TERT4', 'antibody': 'MED1/TRAP220 antibody (M-255) Cat# SC-8998', 'stage': 'D14'}, 'GSM767951': {'type': 'hESC cells'}, 'GSM1401689': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401688': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401687': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1957337': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1401685': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1856266': {'line': 'HeLa', 'treatment': 'MeOH'}, 'GSM1401683': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401682': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM1401681': {'tissue': 'ER+ Breast Cancer Primary Tumor'}, 'GSM2740948': {'with': 'shBrrm', 'line': 'HepG2', 'type': 'liver cancer cell line'}, 'GSM1625972': {'with': 'TNF-α, PGE2 and Pam3CSK4 (TPP) for 72 hrs', 'donor': '3', 'type': 'human monocyte derived macrophages'}, 'GSM1872917': {'10': 'Non-remitter', 'name': 'HF-37588', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'NOS'}, 'GSM1872916': {'10': 'Non-remitter', 'name': 'HF-35425', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1314716': {'type': 'blood endothelial colony forming cells', 'passage': '8 to15'}, 'GSM1314717': {'type': 'lymphatic endothelial colony forming cells', 'passage': '8 to15'}, 'GSM1957339': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1709534': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + A66 (20min preincubation)'}, 'GSM1709535': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + A66 (20min preincubation)'}, 'GSM1709536': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1314715': {'type': 'blood endothelial colony forming cells', 'passage': '8 to15'}, 'GSM1709530': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709531': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709532': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709533': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'no EGF + A66 (20min preincubation)'}, 'GSM2309876': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '28.59'}, 'GSM1709538': {'timepoint': '0', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM1709539': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'WT', 'condition': 'EGF Stimulation + A66 (20min preincubation)'}, 'GSM2309877': {'draw': '1 week post-transplant', 'organ': 'Kidney', 'gender': 'F', 'disease': 'Diabetes Type 1', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '28.59'}, 'GSM1901905': {'origin': 'Patient derived xenograft (PSX) sample', 'strain': 'NOD.Cg-Prkdcscid Il2rgtm1Wjl/SzJ mouse', 'from': 'BRAFV600E melanoma metastases', 'resistance': 'Vemurafenib resistant', 'passage': 'Human tumor samples after first passage in a mouse'}, 'GSM1901904': {'origin': 'Patient derived xenograft (PSX) sample', 'strain': 'NOD.Cg-Prkdcscid Il2rgtm1Wjl/SzJ mouse', 'from': 'BRAFV600E melanoma metastases', 'resistance': 'Vemurafenib resistant', 'passage': 'Human tumor samples after first passage in a mouse'}, 'GSM1901903': {'origin': 'Patient derived xenograft (PSX) sample', 'strain': 'NOD.Cg-Prkdcscid Il2rgtm1Wjl/SzJ mouse', 'from': 'BRAFV600E melanoma metastases', 'resistance': 'Vemurafenib resistant', 'passage': 'Human tumor samples after first passage in a mouse'}, 'GSM2193044': {'sirna': 'non-targeting siRNA control', 'line': 'Kurmomachi', 'type': 'High grade serous ovarian carcinoma'}, 'GSM1314711': {'type': 'blood endothelial colony forming cells', 'passage': '8 to15'}, 'GSM2011221': {'line': 'immortalized (BCi-NS1.1 cells) BC', 'individual': 'nonsmoker', 'passage': 'P20'}, 'GSM2011220': {'line': 'immortalized (BCi-NS1.1 cells) BC', 'individual': 'nonsmoker', 'passage': 'P14'}, 'GSM2113439': {'line': 'U-87', 'tissue': 'Brain tumor cell line', 'treatment': 'Cells following treatment with Decitabine'}, 'GSM2255818': {'with': 'pLKO.1-shFTO; shFTO', 'source': 'peripheral blood', 'line': 'MA9.3ITD', 'type': 'acute monocytic leukemia (AML) cells'}, 'GSM2047818': {'well': 'A11', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047817': {'well': 'A10', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047816': {'well': 'A09', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047815': {'well': 'A08', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047814': {'well': 'A07', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047813': {'well': 'A06', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047812': {'well': 'A05', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047811': {'well': 'A04', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047810': {'well': 'A03', 'individual': 'NA19101', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2577118': {'line': '1A6', 'type': 'bladder cancer cell line'}, 'GSM2577119': {'line': '253JP', 'type': 'bladder cancer cell line'}, 'GSM2585790': {'line': 'PR1 cells'}, 'GSM2390980': {'disease': 'Multiple Sclerosis'}, 'GSM2390981': {'disease': 'Multiple Sclerosis'}, 'GSM2390982': {'disease': 'Multiple Sclerosis'}, 'GSM2390983': {'disease': 'Multiple Sclerosis'}, 'GSM2390984': {'disease': 'Multiple Sclerosis'}, 'GSM2390985': {'disease': 'Multiple Sclerosis'}, 'GSM2390986': {'disease': 'Multiple Sclerosis'}, 'GSM2390987': {'disease': 'Multiple Sclerosis'}, 'GSM2390988': {'disease': 'Multiple Sclerosis'}, 'GSM2390989': {'disease': 'Multiple Sclerosis'}, 'GSM1980184': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980185': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980186': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980187': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1679659': {'gender': 'male', 'study': 'C_14', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '79'}, 'GSM1679658': {'gender': 'male', 'study': 'C_13', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '69'}, 'GSM1980182': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980183': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1679655': {'death': '79', 'gender': 'male', 'study': 'C_10', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.0987465', 'sv3': '-0.024181824', 'sv1': '0.0367334727'}, 'GSM1679654': {'death': '81', 'gender': 'male', 'study': 'C_9', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.20161225', 'sv3': '0.091471726', 'sv1': '-0.1042201799'}, 'GSM1679657': {'gender': 'male', 'study': 'C_12', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '66'}, 'GSM1679656': {'death': '63', 'gender': 'male', 'study': 'C_11', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.20727455', 'sv3': '0.132719457', 'sv1': '-0.1075264306'}, 'GSM1679651': {'death': '97', 'gender': 'male', 'study': 'C_5', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.04989364', 'sv3': '-0.144139565', 'sv1': '-0.0810941864'}, 'GSM1679650': {'death': '82', 'gender': 'male', 'study': 'C_4', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.05581871', 'sv3': '0.02516101', 'sv1': '-0.179932978'}, 'GSM1679653': {'death': '91', 'gender': 'male', 'study': 'C_8', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.23816532', 'sv3': '0.088149128', 'sv1': '-0.1720527319'}, 'GSM1679652': {'death': '86', 'gender': 'male', 'study': 'C_6', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.01477846', 'sv3': '-0.146838512', 'sv1': '-0.2332986784'}, 'GSM2194278': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194279': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194270': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194271': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194272': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194273': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194274': {'type': 'delta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194275': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194276': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194277': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2689198': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689199': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689196': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2127809': {'tissue': 'Intestine and colon', 'type': 'tumoral', 'Sex': 'pooled male and female'}, 'GSM2689194': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689195': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689192': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689193': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689190': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2127808': {'tissue': 'Intestine and colon', 'type': 'tumoral', 'Sex': 'pooled male and female'}, 'GSM2392728': {'type': 'Induced pluripotent stem cell'}, 'GSM2392729': {'type': 'Induced pluripotent stem cell'}, 'GSM1977043': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977042': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977041': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977040': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977047': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977046': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977045': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM1977044': {'type': 'Laser Capture microdissected MNs from post-mortem spinal cord'}, 'GSM2459016': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.42'}, 'GSM2061721': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1521777': {'type': 'ES-derived neural progenitor cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2061720': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1862190': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shSmad3', 'treatment': 'untreated'}, 'GSM2247595': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247596': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1835932': {'line': 'BT12', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835933': {'line': 'BT12', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835930': {'line': 'G402', 'type': 'kidney rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1862193': {'line': 'HeLa', 'tissue': 'cervix', 'expression': 'shSmad3', 'treatment': 'TGF-beta and EGF'}, 'GSM1835936': {'line': 'BT12', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835937': {'line': 'TM87', 'type': 'retroperitoneum rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835934': {'line': 'BT12', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM1835935': {'line': 'BT12', 'type': 'brain rhabdoid tumor derived cell line', 'condition': 'Doxycycline induced SMARCB1 reexpresion'}, 'GSM984647': {'line': 'HepG2'}, 'GSM1835938': {'line': 'TM87', 'type': 'retroperitoneum rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM1835939': {'line': 'TM87', 'type': 'retroperitoneum rhabdoid tumor derived cell line', 'condition': 'untreated'}, 'GSM2459012': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.67'}, 'GSM1940182': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM2247591': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2595291': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'F11', 'unit': '8', '280': '1.89', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM1184599': {'type': 'poly(A) mRNA', 'cycloheximide': 'none', 'point': '9h'}, 'GSM1184598': {'type': 'ribosome footprint', 'cycloheximide': '0.1 mg/mL cycloheximide', 'point': '6h'}, 'GSM2247592': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1203339': {'tissue': 'blood'}, 'GSM2595290': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'E3', 'unit': '7', '280': '1.7', 'concentration': 'N/A', 'type': 'cardiac myocytes', 'id': '1', 'condition': 'Vehicle Control'}, 'GSM1184593': {'type': 'poly(A) mRNA', 'cycloheximide': 'none', 'point': '1.5h'}, 'GSM1184592': {'type': 'ribosome footprint', 'cycloheximide': '0.1 mg/mL cycloheximide', 'point': '0h (untreated)'}, 'GSM1184591': {'type': 'poly(A) mRNA', 'cycloheximide': 'none', 'point': '0h (untreated)'}, 'GSM2247593': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM1184597': {'type': 'poly(A) mRNA', 'cycloheximide': 'none', 'point': '6h'}, 'GSM2456022': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1203331': {'tissue': 'blood'}, 'GSM1184594': {'type': 'ribosome footprint', 'cycloheximide': '0.1 mg/mL cycloheximide', 'point': '1.5h'}, 'GSM929909': {'with': 'miR-23b', 'line': 'MCF-7', 'type': 'epithelial breast cancer cells', 'variation': 'overexpression of miR-23b'}, 'GSM2456023': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1940186': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'vector control (for PU.1 depletion)'}, 'GSM2595295': {'vendor': 'PromoCell', 'organ': 'Heart', 'well': 'F12', 'unit': '8', '280': '1.82', 'concentration': '1 uM', 'type': 'cardiac myocytes', 'id': '2', 'condition': 'Sorafenib'}, 'GSM2459013': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '12.75'}, 'GSM2456025': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456026': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2456027': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2205682': {'line': 'Huh-6 embryonal cancer cell line', 'tissue': 'liver'}, 'GSM2456028': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2205680': {'line': 'Hep-U2 embryonal cancer cell line', 'tissue': 'liver'}, 'GSM2205681': {'line': 'Hep-U2 embryonal cancer cell line', 'tissue': 'liver'}, 'GSM1375213': {'donor': 'adult donor 2', 'tissue': 'sperm'}, 'GSM2464344': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464346': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464347': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464340': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464341': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464343': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2348704': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2061726': {'state': 'non-KTCN', 'tissue': 'cornea', 'study': 'replication'}, 'GSM1185648': {'state': 'Tumor', 'tissue': 'thyroid'}, 'GSM1185640': {'state': 'Normal', 'tissue': 'thyroid'}, 'GSM1185641': {'state': 'Normal', 'tissue': 'thyroid'}, 'GSM1185642': {'state': 'Normal', 'tissue': 'thyroid'}, 'GSM1185643': {'state': 'Tumor', 'tissue': 'thyroid'}, 'GSM1185644': {'state': 'Tumor', 'tissue': 'thyroid'}, 'GSM1185645': {'state': 'Tumor', 'tissue': 'thyroid'}, 'GSM1185646': {'state': 'Tumor', 'tissue': 'thyroid'}, 'GSM1185647': {'state': 'Tumor', 'tissue': 'thyroid'}, 'GSM1948553': {'sirna': 'siCtrl', 'replicates': '1'}, 'GSM2483537': {'line': 'A673 cells', 'rescue': 'empty', 'RNAi': 'Luciferase', 'batch': '5'}, 'GSM1955796': {'a': '60519', 'cd38': '626', 'cd49f': '1398', 'w': '67508', 'h': '58751', 'lin': '282', 'cd34': '5562', 'cd90': '228', 'cd7': '125', 'cd10': '772', 'time': '19642', 'cd135': '3909', 'cd45ra': '1183'}, 'GSM1948552': {'sirna': 'siCDC73', 'replicates': '1'}, 'GSM2390945': {'disease': 'Multiple Sclerosis'}, 'GSM2348709': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1955799': {'a': '72465', 'cd38': '314', 'cd49f': '937', 'w': '67239', 'h': '70629', 'lin': '-268', 'cd34': '6605', 'cd90': '-414', 'cd7': '17', 'cd10': '12587', 'time': '2838', 'cd135': '7048', 'cd45ra': '6236'}, 'GSM1955798': {'a': '49480', 'cd38': '730', 'cd49f': '665', 'w': '65933', 'h': '49182', 'lin': '183', 'cd34': '6899', 'cd90': '993', 'cd7': '245', 'cd10': '27987', 'time': '2568', 'cd135': '1902', 'cd45ra': '7843'}, 'GSM1948551': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM2348708': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1573663': {'line': 'LNCaP prostate cancer cells', 'passages': '10', 'genotype': 'WT', 'treatment': 'DHT'}, 'GSM1948550': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM1573661': {'line': 'LNCaP prostate cancer cells', 'passages': '10', 'genotype': 'WT', 'treatment': 'DHT'}, 'GSM1573660': {'line': 'LNCaP prostate cancer cells', 'passages': '10', 'genotype': 'WT', 'treatment': 'control'}, 'GSM2047569': {'well': 'E05', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047568': {'well': 'E04', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM1371577': {'line': 'WIBR3 with fused GFP+LGR5', 'stage': 'human embryonic stem cells'}, 'GSM2242948': {'line': 'A375', 'replicate': '4'}, 'GSM2172333': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2242944': {'line': 'A375', 'replicate': '4'}, 'GSM2242945': {'line': 'A375', 'replicate': '4'}, 'GSM2242946': {'line': 'A375', 'replicate': '4'}, 'GSM2242947': {'line': 'A375', 'replicate': '4'}, 'GSM2242940': {'line': 'A375', 'replicate': '4'}, 'GSM2242941': {'line': 'A375', 'replicate': '4'}, 'GSM2242942': {'line': 'A375', 'replicate': '4'}, 'GSM2242943': {'line': 'A375', 'replicate': '4'}, 'GSM2047563': {'well': 'D11', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2047562': {'well': 'D10', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2871935': {'line': 'GSC923', 'passages': '20', 'type': 'Glioblastoma stem cells'}, 'GSM2871934': {'line': 'GSC923', 'passages': '20', 'type': 'Glioblastoma stem cells'}, 'GSM2871937': {'line': 'GSC923', 'passages': '20', 'type': 'Glioblastoma stem cells'}, 'GSM2871936': {'line': 'GSC923', 'passages': '20', 'type': 'Glioblastoma stem cells'}, 'GSM2871933': {'line': 'GSC923', 'passages': '20', 'type': 'Glioblastoma stem cells'}, 'GSM1577753': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM2871939': {'line': 'GSC923', 'passages': '20', 'type': 'Glioblastoma stem cells'}, 'GSM2871938': {'line': 'GSC923', 'passages': '20', 'type': 'Glioblastoma stem cells'}, 'GSM1577752': {'antibody': 'STAT5B (Invitrogen, 135300, LOT-1477602A)', 'tissue': 'Peripheral blood', 'type': 'Pre-activated CD8+ T cells'}, 'GSM1682271': {'line': 'K562', 'antibody': 'none'}, 'GSM1682270': {'line': 'K562', 'antibody': 'IgG'}, 'GSM1521779': {'type': 'neural precursor cell derived neuronal like cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1682279': {'line': 'MCF-7', 'tissue': 'breast', 'type': 'breast cancer', 'treatment': 'treated with PTX', 'passage': '30'}, 'GSM1682278': {'line': 'MCF-7', 'tissue': 'breast', 'type': 'breast cancer', 'treatment': 'treated with ADM', 'passage': '30'}, 'GSM1657091': {'knockdown': 'PITX2', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM2178737': {'ir': '0.245760629147211', 'weight': 'non-obese', 'gender': 'female', 'age': '53', 'bmi': '25.4', 'disease': 't2d', 'l': '0.08', 'h': '0', 'id': '109a'}, 'GSM2178736': {'ir': '1.30378096479791', 'weight': 'obese', 'gender': 'female', 'age': '48', 'bmi': '32.7', 'disease': 'ngt', 'l': '0.05', 'h': '2', 'id': '79a'}, 'GSM2178735': {'ir': '0.32123353678124', 'weight': 'non-obese', 'gender': 'female', 'age': '48', 'bmi': '24', 'disease': 'ngt', 'l': '0.03', 'h': '0.5', 'id': '13a'}, 'GSM2178734': {'ir': '1.38888888888889', 'weight': 'obese', 'gender': 'female', 'age': '46', 'bmi': '31.9', 'disease': 't2d', 'l': '0.13', 'h': '0.5', 'id': '46a'}, 'GSM2178733': {'ir': '1.15473441108545', 'weight': 'obese', 'gender': 'male', 'age': '56', 'bmi': '39.9', 'disease': 'ngt', 'l': '0.06', 'h': '2', 'id': '27'}, 'GSM1848199': {'line': 'MDA-MB-468', 'type': 'triple negative breast cancer cell line'}, 'GSM2178731': {'ir': '2.29885057471264', 'weight': 'obese', 'gender': 'male', 'age': '51', 'bmi': '33.9', 'disease': 't2d', 'l': '0.09', 'h': '2', 'id': '41a'}, 'GSM1575562': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-103'}, 'GSM2178739': {'ir': '0.362187613183629', 'weight': 'non-obese', 'gender': 'male', 'age': '62', 'bmi': '22.6', 'disease': 't2d', 'l': 'NA', 'h': '0.5', 'id': '20a'}, 'GSM2178738': {'ir': '0.245760629147211', 'weight': 'non-obese', 'gender': 'female', 'age': '53', 'bmi': '25.4', 'disease': 't2d', 'l': '0.08', 'h': '1', 'id': '109a'}, 'GSM2093009': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2391891': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391890': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391893': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2093008': {'bin': '30', 'group': 'case (TB progressor)', 'qft': 'negative', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2391892': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391895': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391894': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391897': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391896': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391899': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2391898': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC02'}, 'GSM2632578': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632579': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632576': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632577': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632574': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632575': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632572': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632573': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632570': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632571': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142497': {'gender': 'female', 'age': '62', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142496': {'gender': 'male', 'age': '72', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '4', 'smoking': '1'}, 'GSM2142495': {'gender': 'female', 'age': '81', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '3'}, 'GSM2142494': {'gender': 'male', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142493': {'gender': 'male', 'age': '57', 'who': '0', 'dead': '1', 'date': '2009-12-17', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142492': {'gender': 'female', 'age': '60', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '3'}, 'GSM2142491': {'gender': 'male', 'age': '65', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142490': {'gender': 'female', 'age': '70', 'who': '1', 'dead': '1', 'date': '2009-10-04', 'histology': '2', 'tnm': '5', 'smoking': '3'}, 'GSM1543671': {'media': 'At full confluency differentiation was propagated by addition of 5% FCS, 15mM Hepes, 33 μM biotin, 17 μM panthotenat, 1nM T3, 100nM dexamethasone, 1 μM rosiglitazone and 1% pen-strep to DMEM/F12 medium. Additionally, for the initial four days 0.25 mM IBMX was added to the differentiation medium', 'line': 'PAZ6', 'passages': '9-12', 'type': 'adipocyte', 'days': '14'}, 'GSM1543670': {'media': 'PAZ6 pre-adipocytes were cultured in DMEM/F12 medium enriched with 8% FCS, 15mM Hepes and 1% penicillin/streptomycin', 'line': 'PAZ6', 'passages': '9-12', 'type': 'pre-adipocyte', 'days': '0'}, 'GSM2142499': {'gender': 'female', 'age': '59', 'who': '0', 'dead': '1', 'date': '2009-08-01', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2142498': {'gender': 'female', 'age': '61', 'who': '0', 'dead': '1', 'date': '2011-07-05', 'histology': '1', 'tnm': '4', 'smoking': '1'}, 'GSM2248251': {'count': '1', 'ercc_mix': 'mix2', 'length': '72', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM1234120': {'replicate': '2', 'line': '19239', 'antibody': 'SA1'}, 'GSM1234121': {'replicate': '1', 'line': '19240', 'antibody': 'CTCF'}, 'GSM2712745': {'line': 'HCT116', 'antibody': 'none', 'treatment': 'none', 'disease': 'colorectal carcinoma'}, 'GSM2712746': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'DMSO', 'disease': 'colorectal carcinoma'}, 'GSM2712747': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'largazole 4.68nM', 'disease': 'colorectal carcinoma'}, 'GSM2712748': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'largazole 9.37nM', 'disease': 'colorectal carcinoma'}, 'GSM2712749': {'line': 'HCT116', 'antibody': 'H3K27ac (Abcam, ab4729)', 'treatment': 'largazole 18.75nM', 'disease': 'colorectal carcinoma'}, 'GSM2303254': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2316812': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2303256': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACJV399'}, 'GSM2303257': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303250': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303251': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303252': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2303253': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303258': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2303259': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2316813': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM1864251': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T4'}, 'GSM2390940': {'disease': 'Multiple Sclerosis'}, 'GSM2836246': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836247': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836244': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836245': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836248': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2836249': {'tumor': 'normal', 'subtype': 'normal'}, 'GSM2316814': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2458974': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.75'}, 'GSM2458975': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.42'}, 'GSM2458976': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.00'}, 'GSM2458977': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '14.25'}, 'GSM2458970': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.83'}, 'GSM2458971': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.92'}, 'GSM2458972': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.67'}, 'GSM2458973': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.75'}, 'GSM2458978': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'African', 'diagnosis': '12.33'}, 'GSM2458979': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '15.25'}, 'GSM2316815': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2093003': {'bin': '29', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM3301495': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Dia'}, 'GSM1957540': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM3301497': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Dia'}, 'GSM3301496': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Dia'}, 'GSM3301491': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM3301490': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'endothelial cell (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM3301493': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM1957541': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2287675': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287674': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287677': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287676': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM3301499': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Dia'}, 'GSM2047697': {'well': 'G12', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2287673': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287672': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2047696': {'well': 'G11', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1864252': {'status': 'High', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T1'}, 'GSM2047691': {'well': 'G06', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2745816': {'group': '3D/COL5', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2047690': {'well': 'G05', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2136548': {'line': 'SHEP Tet-21/N neuroblastoma cell line', 'protocol': 'LSD1 Knock-Down'}, 'GSM2626978': {'origin': 'pancreas', 'patient_id': '30', 'type': 'primary', 'tumor_id': '30'}, 'GSM2047693': {'well': 'G08', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047692': {'well': 'G07', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2136546': {'line': 'SHEP Tet-21/N neuroblastoma cell line', 'protocol': 'untreated'}, 'GSM2136547': {'line': 'SHEP Tet-21/N neuroblastoma cell line', 'protocol': 'LSD1 Knock-Down'}, 'GSM2136545': {'line': 'SHEP Tet-21/N neuroblastoma cell line', 'protocol': 'untreated'}, 'GSM2562587': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562586': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562585': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562584': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562583': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562582': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562581': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562580': {'gender': 'male', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562589': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562588': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2842498': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2626972': {'origin': 'pancreas', 'patient_id': '22', 'type': 'primary', 'tumor_id': '22'}, 'GSM2093004': {'bin': '29', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2543797': {'library_id': 'lib7899', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543796': {'library_id': 'lib7898', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543795': {'library_id': 'lib7897', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543794': {'library_id': 'lib7896', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543793': {'library_id': 'lib7895', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543792': {'library_id': 'lib7894', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543791': {'library_id': 'lib7893', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543790': {'library_id': 'lib7892', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2745818': {'group': '3D/BSA', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2543799': {'library_id': 'lib7901', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2745819': {'group': '3D/BSA', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2093007': {'bin': '30', 'group': 'case (TB progressor)', 'qft': 'negative', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2287099': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287098': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1896098': {'individual': 'AF25', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896099': {'individual': 'AF27', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896092': {'individual': 'AF21', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896093': {'individual': 'AF23', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2287093': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287092': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287095': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1896097': {'individual': 'AF25', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896094': {'individual': 'AF23', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2287096': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2664346': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664347': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664344': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664345': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664342': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2093006': {'bin': '30', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'male', 'age': '18', 'tissue': 'blood', 'tst': '14', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2664340': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664341': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1087894': {'labexpid': '13300', 'line': 'GM12878'}, 'GSM1087895': {'labexpid': '13301', 'line': 'GM12878'}, 'GSM1087896': {'labexpid': '13302', 'line': 'GM12878'}, 'GSM1087897': {'labexpid': '13303', 'line': 'GM12878'}, 'GSM1087890': {'labexpid': '13288', 'line': 'GM12878'}, 'GSM1087891': {'labexpid': '13289', 'line': 'GM12878'}, 'GSM2664348': {'antibody': 'none', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664349': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1248729': {'transfection': 'miR-1 duplex', 'time': '32 hours'}, 'GSM1248728': {'transfection': 'miR-1 duplex', 'time': '32 hours'}, 'GSM3189410': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.794598', 'percentaligned': '0.90373078', 'Sex': 'F', 'nl63': 'No', 'libcounts': '3.511812', 'original': 'Control'}, 'GSM1864259': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Larynx', 'stage': 'T4'}, 'GSM1172875': {'subtype': 'Claudin-low', 'line': 'HCC38', 'type': 'breast cancer'}, 'GSM1505446': {'line': 'HeLa S3', 'type': 'whole RNA fragment sequencing', 'treatment': 'none', 'fraction': 'cytoplasm fraction'}, 'GSM1505444': {'line': 'HeLa S3', 'type': 'whole RNA fragment sequencing', 'treatment': 'none', 'fraction': 'chromatin fraction'}, 'GSM1505445': {'line': 'HeLa S3', 'type': 'whole RNA fragment sequencing', 'treatment': 'none', 'fraction': 'nucleoplasm fraction'}, 'GSM1505442': {'line': 'HeLa S3', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'DMSO'}, 'GSM1505443': {'line': 'HeLa S3', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'FP'}, 'GSM1505440': {'line': 'HEK 293T', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'none'}, 'GSM1505441': {'line': 'HEK 293T', 'type': \"3'end RNA fragment sequencing\", 'treatment': 'none'}, 'GSM1876343': {'tissue': 'Dorsal Forebrain Equivalent', 'type': 'induced pluripotent stem cells', 'diagnosis': 'Healthy'}, 'GSM1172874': {'subtype': 'Basal', 'line': 'HCC3153', 'type': 'breast cancer'}, 'GSM2309449': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309448': {'number': 'Exp 2', 'time': '6 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309447': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '3', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309446': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '3', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2309445': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309444': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '2', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2309443': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309442': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '2', 'treatment': 'CPT', 'dose': '1uM'}, 'GSM2309441': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2309440': {'number': 'Exp 1', 'time': '18 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM1657642': {'type': 'Erythroid'}, 'GSM1657640': {'type': 'Erythroid'}, 'GSM1657641': {'type': 'Erythroid'}, 'GSM2358113': {'line': 'MS1', 'type': 'untreated', 'timepoint': '11'}, 'GSM1464286': {'status': 'healthy'}, 'GSM1876349': {'tissue': 'Dorsal Forebrain Equivalent', 'type': 'induced pluripotent stem cells', 'diagnosis': 'Lissencephaly'}, 'GSM2048898': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'KRAS-G12D'}, 'GSM2123901': {}, 'GSM2123902': {}, 'GSM2123903': {}, 'GSM2123904': {}, 'GSM2123905': {}, 'GSM2123906': {}, 'GSM2123907': {}, 'GSM2123908': {}, 'GSM2123909': {}, 'GSM1172876': {'subtype': 'Basal', 'line': 'HCC70', 'type': 'breast cancer'}, 'GSM1464287': {'status': 'healthy'}, 'GSM1172871': {'subtype': 'Basal', 'line': 'HCC1954', 'type': 'breast cancer'}, 'GSM1464284': {'status': 'healthy'}, 'GSM2089696': {'state': 'colorectal cancer', 'line': 'RKO-p53_KO', 'treatment': 'Doxorubicin at a final concentration of 300 nM for 16 hours'}, 'GSM2089695': {'state': 'colorectal cancer', 'line': 'RKO-p53_KO', 'treatment': 'untreated'}, 'GSM2089694': {'state': 'colorectal cancer', 'line': 'RKO-p53_WT', 'treatment': 'Doxorubicin at a final concentration of 300 nM for 16 hours'}, 'GSM2089693': {'state': 'colorectal cancer', 'line': 'RKO-p53_WT', 'treatment': 'untreated'}, 'GSM1172870': {'subtype': 'Basal', 'line': 'HCC1937', 'type': 'breast cancer'}, 'GSM2089692': {'state': 'colorectal cancer', 'line': 'HCT116-p53_KO', 'treatment': 'Doxorubicin at a final concentration of 300 nM for 16 hours'}, 'GSM2089691': {'state': 'colorectal cancer', 'line': 'HCT116-p53_KO', 'treatment': 'untreated'}, 'GSM2089690': {'state': 'colorectal cancer', 'line': 'HCT116-p53_WT', 'treatment': 'Doxorubicin at a final concentration of 300 nM for 16 hours'}, 'GSM1172873': {'subtype': 'Luminal', 'line': 'HCC2218', 'type': 'breast cancer'}, 'GSM2467592': {'line': 'HEK293', 'overexpression': 'GFP - SAHH'}, 'GSM1172872': {'subtype': 'Luminal', 'line': 'HCC202', 'type': 'breast cancer'}, 'GSM1648808': {'group': 'ASD', 'gender': 'Male', 'clone': 'AERO_3_7', 'biopsy': '20 (Fluent Speech - Child/Adolescent)', 'years': '3.2', 'volume': '1338', 'type': 'iPSC-derived neurons', 'id': 'AERO'}, 'GSM1648809': {'group': 'ASD', 'gender': 'Male', 'clone': 'AHOY_5_13', 'biopsy': '20 (Fluent Speech - Adolescent/Adult)', 'years': '2.98', 'volume': '1374', 'type': 'iPSC-derived neurons', 'id': 'AHOY'}, 'GSM1482896': {'with': 'si RNAs against Integrator 11', 'type': 'HeLa-LTR-Luciferase cells', 'subtype': 'whole-cell RNA'}, 'GSM1620549': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620548': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620547': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620546': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620545': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620544': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620543': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620542': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620541': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620540': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2304929': {'line': 'BT168 glioblastoma stem cells (De Bacco et al., Cancer Res. 2012) with Dox inducible FLAG-Omomyc', 'treatment': 'Dox treated', 'time': '24h'}, 'GSM2815798': {'line': 'H9'}, 'GSM2815797': {'line': 'H9'}, 'GSM2815796': {'line': 'H9'}, 'GSM2815795': {'line': 'H9'}, 'GSM2815794': {'line': 'H9'}, 'GSM2815793': {'line': 'H9'}, 'GSM2815792': {'line': 'H9'}, 'GSM2815791': {'line': 'H9'}, 'GSM2815790': {'line': 'H9'}, 'GSM2451083': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451082': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451081': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451080': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2586941': {'replicate': '3', 'microrna': 'miR873Mut', 'treatment': 'Con - control transcriptome'}, 'GSM2586940': {'replicate': '2', 'microrna': 'miR873Mut', 'treatment': 'Con - control transcriptome'}, 'GSM2586942': {'replicate': '4', 'microrna': 'miR873Mut', 'treatment': 'Con - control transcriptome'}, 'GSM1624196': {'line': 'H1', 'treatment': 'ETOH'}, 'GSM2081373': {'line': 'CEMO-1 Acute Lymphoblastic Leukemia (ALL) cell line', 'protocol': 'without treatment'}, 'GSM2055781': {'tissue': 'Heart'}, 'GSM1673633': {'differentiation': 'M-CSF', 'protocol': 'No treatment', 'individual': 'Donor 1', 'type': 'macrophage'}, 'GSM2226728': {'treatment': 'mRNA with let7 MIR after TEX 293 cell'}, 'GSM2226729': {'treatment': 'mRNA with let7 MIR after TEX 293 cell'}, 'GSM2226722': {'treatment': 'mRNA after 3prime-pulldown U2OS cell'}, 'GSM2226723': {'treatment': 'mRNA after 3prime-pulldown U2OS cell'}, 'GSM2226720': {'treatment': 'mRNA after 5prime-pulldown U2OS cell'}, 'GSM2226721': {'treatment': 'mRNA after 5prime-pulldown U2OS cell'}, 'GSM2226726': {'treatment': 'mRNA 293 cell'}, 'GSM2226727': {'treatment': 'mRNA 293 cell'}, 'GSM2226724': {'treatment': 'mRNA after 3prime-pulldown U2OS cell'}, 'GSM2226725': {'treatment': 'mRNA 293 cell'}, 'GSM1956978': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day1'}, 'GSM1956979': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day1'}, 'GSM1956976': {'tissue': 'Lung', 'treatment': 'No Dox (no DOX treatment)', 'point': '0'}, 'GSM1956977': {'tissue': 'Lung', 'treatment': 'DOX', 'point': 'Day1'}, 'GSM1956974': {'line': 'H358', 'tissue': 'Lung', 'treatment': 'No Dox (no DOX treatment)', 'point': '0'}, 'GSM1956975': {'tissue': 'Lung', 'treatment': 'No Dox (no DOX treatment)', 'point': '0'}, 'GSM2177849': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '2'}, 'GSM1820116': {'type': 'Purified normal B cells', 'genotype': 'Normal'}, 'GSM1820117': {'type': 'Purified normal B cells', 'genotype': 'Normal'}, 'GSM2098738': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM1820115': {'type': 'Purified normal B cells', 'genotype': 'Normal'}, 'GSM2098732': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098733': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2038170': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM2038171': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM2098736': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2038177': {'ine': 'HCT116', 'tissue': 'colon'}, 'GSM2098734': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2098735': {'strain': 'MCF7 cells', 'tissue': 'breast'}, 'GSM2562634': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2257141': {'stain': 'PANC-1', 'tissue': 'Pancreatic', 'genotype': 'pLV-vector'}, 'GSM2413449': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2638031': {'with': 'IL-12 and IL-15', 'tissue': 'tonsil', 'type': 'NKp44+ innate lymphoid cells from huNSG tonsils'}, 'GSM1395388': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '4hr'}, 'GSM2309837': {'draw': 'pre-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '62.68'}, 'GSM1395389': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock vorinostat', 'timepoint': '8hr'}, 'GSM1395880': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM2177840': {'status': 'Normal', 'Sex': 'Female', 'type': 'Normal', 'years': '2'}, 'GSM2309838': {'draw': '3 months post-transplant', 'organ': 'Kidney', 'gender': 'M', 'disease': 'Hypertension, nephrosclerosis', 'race': 'Caucasian / White', 'type': 'kidney', 'ethnicity': 'Non-Hispanic/Non-Latino', 'transplant': '62.68'}, 'GSM2177841': {'status': 'Normal', 'Sex': 'Male', 'type': 'Normal', 'years': '< 1'}, 'GSM2424360': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '8 hours'}, 'GSM1528685': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '137'}, 'GSM1528684': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '137'}, 'GSM2424361': {'line': 'MRC5VA', 'treatment': 'UVC irradiated', 'time': '8 hours'}, 'GSM1528681': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '137'}, 'GSM1528680': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '137'}, 'GSM1528683': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '148'}, 'GSM1528682': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '148'}, 'GSM2108396': {'stages': 'myoblast'}, 'GSM2108397': {'stages': 'myoblast'}, 'GSM2108394': {'stages': 'myoblast'}, 'GSM2108395': {'stages': 'myoblast'}, 'GSM2108392': {'stages': 'myoblast'}, 'GSM2108393': {'stages': 'myoblast'}, 'GSM2108390': {'stages': 'myoblast'}, 'GSM2108391': {'stages': 'myoblast'}, 'GSM2243936': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H11', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2108398': {'stages': 'myoblast'}, 'GSM2108399': {'stages': 'myoblast'}, 'GSM1395889': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM2047378': {'well': 'E08', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047379': {'well': 'E09', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047376': {'well': 'E06', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047377': {'well': 'E07', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047374': {'well': 'E04', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047375': {'well': 'E05', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047372': {'well': 'E02', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047373': {'well': 'E03', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047370': {'well': 'D12', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047371': {'well': 'E01', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2649859': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649858': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2436488': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436489': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436484': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2436485': {'tissue': 'Urothelial Bladder Carcinoma Cell line', 'genotype': 'wildtype'}, 'GSM2649851': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649850': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649857': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2436481': {'tissue': 'Urothelial Bladder Carcinoma', 'genotype': 'Mutant'}, 'GSM2649855': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM2649854': {'types': 'hiPSC-derived EpCAM+ cells', 'time': 'isolated on day 26'}, 'GSM1668459': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 8 days post induced OSKM viral Expression and treated with SMAD3 siRNA.', 'genotype': 'SMAD3 Knock-down'}, 'GSM1668458': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 8 days post induced OSKM viral Expression and treated with SAE1 siRNA.', 'genotype': 'SAE1 Knock-down'}, 'GSM1872959': {'10': 'Non-remitter', 'name': 'HF-37282', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872958': {'10': 'Remitter', 'name': 'HF-37253', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1872955': {'10': 'Non-remitter', 'name': 'HF-34774', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872954': {'10': 'Non-remitter', 'name': 'HF-35366', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872957': {'10': 'Non-remitter', 'name': 'HF-35401', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1872956': {'10': 'Remitter', 'name': 'HF-35630', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1668455': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'WT BJ Fibroblasts', 'genotype': 'WT'}, 'GSM1872950': {'10': 'Non-remitter', 'name': 'HF-37243', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM1668457': {'line': 'BJ Fibroblasts', 'sorting': 'NIL', 'treatment': 'BJ Fibroblasts 8 days post induced OSKM viral Expression and treated with non-targeting siRNA.', 'genotype': 'WT'}, 'GSM1872952': {'10': 'Non-remitter', 'name': 'HF-35651', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM2943847': {'passages': '<25', 'treatment': 'DMSO', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '0.10%'}, 'GSM2943846': {'passages': '<25', 'treatment': 'TCIPP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '2.5 uM'}, 'GSM2943845': {'passages': '<25', 'treatment': 'TCIPP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '2.5 uM'}, 'GSM2943844': {'passages': '<25', 'treatment': 'TCIPP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '2.5 uM'}, 'GSM2943843': {'passages': '<25', 'treatment': 'TCIPP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '25 uM'}, 'GSM2943842': {'passages': '<25', 'treatment': 'TCIPP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '25 uM'}, 'GSM2943841': {'passages': '<25', 'treatment': 'TCIPP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '25 uM'}, 'GSM2943840': {'passages': '<25', 'treatment': 'TCEP', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '25 uM'}, 'GSM2943849': {'passages': '<25', 'treatment': 'DMSO', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '0.10%'}, 'GSM2943848': {'passages': '<25', 'treatment': 'DMSO', 'duration': '72hr', 'line': 'HepG2', 'type': 'Hepatocellular carcinoma cell line', 'concentration': '0.10%'}, 'GSM2195025': {'status': 'non-LRC', 'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma'}, 'GSM2705374': {'Sex': 'Female', 'rin': '6.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.07', 'pmi': '9'}, 'GSM2705377': {'Sex': 'Male', 'rin': '7.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.54', 'pmi': '9'}, 'GSM2093081': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093080': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093083': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1401345': {'rin': '9.4', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-05-21'}, 'GSM2093085': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '17', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093084': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1401340': {'rin': '4.29', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-02-26'}, 'GSM1401341': {'rin': '7', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-03-05'}, 'GSM2093089': {'bin': '17', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': '22', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093088': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1401348': {'rin': '9', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-07-02'}, 'GSM1401349': {'rin': '9', 'tissue': 'Peripheral blood mononuclear cells (PBMCs)', 'collectiondate': '2013-07-09'}, 'GSM2125948': {'line': 'IMR5-75', 'treatment': 'ethanol', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '6h'}, 'GSM2125949': {'line': 'IMR5-75', 'treatment': '1µg/ml tetracycline', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '6h'}, 'GSM2413446': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2125947': {'line': 'IMR5-75', 'treatment': 'ethanol', 'variation': 'stable tet-inducible MYCN knockdown (shRNA)', 'point': '6h'}, 'GSM3594374': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1505599': {'tissue': 'Lung'}, 'GSM2358157': {'line': 'MS1', 'type': 'repeat treated', 'timepoint': '8'}, 'GSM2358156': {'line': 'MS1', 'type': 'repeat untreated', 'timepoint': '23'}, 'GSM2358155': {'line': 'MS1', 'type': 'repeat untreated', 'timepoint': '15'}, 'GSM2358154': {'line': 'MS1', 'type': 'repeat untreated', 'timepoint': '12'}, 'GSM2358153': {'line': 'MS1', 'type': 'repeat untreated', 'timepoint': '10'}, 'GSM2358152': {'line': 'MS1', 'type': 'repeat untreated', 'timepoint': '9'}, 'GSM2358151': {'line': 'MS1', 'type': 'repeat untreated', 'timepoint': '8'}, 'GSM2358150': {'line': 'MS1', 'type': 'treated', 'timepoint': '24'}, 'GSM2413441': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2358159': {'line': 'MS1', 'type': 'repeat treated', 'timepoint': '10'}, 'GSM2358158': {'line': 'MS1', 'type': 'repeat treated', 'timepoint': '9'}, 'GSM2455937': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455936': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455935': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455934': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455933': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455932': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455931': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455930': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455939': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455938': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1946159': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '60min'}, 'GSM2840152': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2413440': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1234197': {'replicate': '2', 'line': '2610', 'antibody': 'SA1'}, 'GSM1234196': {'replicate': '1', 'line': '2610', 'antibody': 'SA1'}, 'GSM1341695': {'tissue': 'Bone marrow GMP', 'phenotype': 'Lin-CD34+CD38+CD123+CD45RA+'}, 'GSM1186811': {'tissue': 'peripheral blood mononuclear cells', 'type': 'EBV-infected human B lymphoblastoid cell line', 'sex': 'female'}, 'GSM1186812': {'tissue': 'peripheral blood mononuclear cells', 'type': 'EBV-infected human B lymphoblastoid cell line', 'sex': 'female'}, 'GSM1234190': {'replicate': '2', 'line': '2610', 'antibody': 'H3K4me1'}, 'GSM1239118': {'status': '+ / + / -', 'grade': '2', 'subtype': 'rRNA depleted RNA', 'id': 'BRB123', 'size': '1.7cm'}, 'GSM2413443': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2840154': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject10', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV negative'}, 'GSM2509713': {'type': 'brain'}, 'GSM2509712': {'type': 'brain'}, 'GSM2501540': {'line': 'MCF-7', 'variation': 'MCF-7 stably overexpressing FLAG-tagged NFIB'}, 'GSM2501541': {'line': 'MCF-7', 'variation': 'MCF-7 stably overexpressing FLAG-tagged YBX1'}, 'GSM2501542': {'line': 'MCF-7', 'variation': 'MCF-7 stably overexpressing FLAG-tagged YBX1'}, 'GSM2501543': {'line': 'MCF-7', 'variation': 'MCF-7 stably overexpressing FLAG-tagged YBX1'}, 'GSM1946153': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '30min'}, 'GSM1946152': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19137', 'for': '30min'}, 'GSM2413442': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1915032': {'line': 'MG63.3'}, 'GSM1915033': {'line': 'MG63'}, 'GSM2545221': {'line': '76NF2V', 'type': 'Mammary Brest Epithelium'}, 'GSM2545223': {'line': '76NF2V', 'type': 'Mammary Brest Epithelium'}, 'GSM1261016': {'type': 'TNBC Breast Tumor'}, 'GSM2258209': {'group': 'KLF4/TRAF7', 'grade': '1', 'gender': 'F', 'age': '78', 'tissue': 'meningioma', 'histology': 'meningothelial', 'radiated': 'N'}, 'GSM3595510': {'replicate': 'rep2', 'treatment': '10nM E2 + 10nM Progesterone', 'time': '24h'}, 'GSM2298938': {'type': 'CW2012_1 cells'}, 'GSM2545225': {'line': 'MCF10A', 'type': 'Mammary Gland Fibrocystic'}, 'GSM2053442': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '52', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'adjacent normal', 'id': '#13'}, 'GSM1261018': {'type': 'TNBC Breast Tumor'}, 'GSM1557564': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM2359204': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '150nM / 200 nM', 'drug': 'THZ1 / GSK1120212'}, 'GSM2359205': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '150nM / 200 nM', 'drug': 'THZ1 / GSK1120212'}, 'GSM2359206': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359207': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359200': {'duration': '7D', 'line': 'A375', 'tissue': 'Skin', 'concentration': '1 uM', 'drug': 'Vemurafenib'}, 'GSM2359201': {'duration': '48h', 'line': 'A375', 'tissue': 'Skin', 'concentration': '1 uM', 'drug': 'Vemurafenib'}, 'GSM2359202': {'duration': '48h', 'line': 'A375', 'tissue': 'Lung', 'concentration': '1 uM', 'drug': 'Vemurafenib'}, 'GSM2359203': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '150nM / 200 nM', 'drug': 'THZ1 / GSK1120212'}, 'GSM3595514': {'replicate': 'rep3', 'treatment': 'Vehicle', 'time': '24h'}, 'GSM2359208': {'duration': '48h', 'line': 'A549', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM1888840': {'activated': 'TRUE', 'activation': '14', 'type': 'Memory', 'id': '5291', 'batch': '2'}, 'GSM2298932': {'type': 'CCF3128 cells'}, 'GSM2047604': {'well': 'H04', 'individual': 'NA19098', 'replicate': 'r3', 'type': 'LCL-derived iPSC'}, 'GSM2298933': {'type': 'CCF3136 cells'}, 'GSM2243862': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F2', 'cluster': '7', 'tissue': 'Periphery', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1866127': {'tissue': 'Gliobmastoma biopsy'}, 'GSM2840393': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1166089': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166088': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2732469': {'treatment': 'untreated'}, 'GSM2732468': {'treatment': 'untreated'}, 'GSM1166085': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166084': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166087': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166086': {'rna': 'FirstChoice® Human Brain Reference Total RNA', 'tissue': 'Brain'}, 'GSM1166081': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166080': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166083': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166082': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2085619': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM2085618': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1901288': {'treatment': 'GFP 24hr'}, 'GSM1901289': {'treatment': 'VP55 24hr'}, 'GSM2616542': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM1901284': {'treatment': 'AdV-VP55'}, 'GSM1901285': {'treatment': 'Mock'}, 'GSM1901286': {'treatment': 'Mock'}, 'GSM1901287': {'treatment': 'GFP 24hr'}, 'GSM2085617': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1901281': {'treatment': 'AdV-GFP'}, 'GSM1901282': {'treatment': 'AdV-GFP'}, 'GSM2085614': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 1'}, 'GSM1444169': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '6 h p.i.'}, 'GSM1444168': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '4 h p.i.'}, 'GSM1444167': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '2 h p.i.'}, 'GSM1444166': {'reagent': 'mock', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': 'mock'}, 'GSM2360015': {'induction': 'Osteoblast differentiation', 'treatment': 'siCon'}, 'GSM2360014': {'induction': 'Adipocyte differentiation', 'treatment': 'siCHD1'}, 'GSM2360017': {'induction': 'Undifferentiated'}, 'GSM2360016': {'induction': 'Osteoblast differentiation', 'treatment': 'siCHD1'}, 'GSM2360011': {'induction': 'Osteoblast differentiation', 'treatment': 'siCHD1'}, 'GSM1555749': {'type': 'mature erythrocyte'}, 'GSM2360013': {'induction': 'Adipocyte differentiation', 'treatment': 'siCon'}, 'GSM2360012': {'induction': 'Undifferentiated', 'treatment': 'siCon'}, 'GSM1555745': {'type': 'mature erythrocyte'}, 'GSM1555746': {'type': 'mature erythrocyte'}, 'GSM1555747': {'type': 'mature erythrocyte'}, 'GSM2360019': {'induction': 'Osteoblast differentiation'}, 'GSM2360018': {'induction': 'Adipocyte differentiation'}, 'GSM1636934': {'molecule': 'chromatin', 'line': 'MCF-7', 'passages': 'Untreated cells grown in DMEM/F-12 medium +10% FBS', 'antibody': 'N-20, Santa Cruz, sc-899 X'}, 'GSM2616544': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM1636931': {'molecule': 'short capped RNA from nuclei', 'line': 'MCF-7', 'passages': 'Untreated cells grown in DMEM/F-12 medium +10% FBS', 'antibody': 'n/a'}, 'GSM1636930': {'molecule': 'short capped RNA from nuclei', 'line': 'MCF-7', 'passages': 'Untreated cells grown in DMEM/F-12 medium +10% FBS', 'antibody': 'n/a'}, 'GSM1636933': {'molecule': 'chromatin', 'line': 'MCF-7', 'passages': 'Untreated cells grown in DMEM/F-12 medium +10% FBS', 'antibody': 'N-20, Santa Cruz, sc-899 X'}, 'GSM1636932': {'molecule': 'short capped RNA from nuclei', 'line': 'MCF-7', 'passages': 'Untreated cells grown in DMEM/F-12 medium +10% FBS', 'antibody': 'n/a'}, 'GSM2243730': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'D1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243731': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243732': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243733': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'A11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243734': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'C3', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243735': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243736': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243737': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243738': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F9', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243739': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2666078': {'age': 'Day 450', 'well': 'G10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666079': {'age': 'Day 450', 'well': 'E1', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666076': {'age': 'Day 450', 'well': 'B5', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666077': {'age': 'Day 450', 'well': 'D1', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666074': {'age': 'Day 450', 'well': 'A5', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666075': {'age': 'Day 450', 'well': 'C3', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666072': {'age': 'Day 450', 'well': 'C11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666073': {'age': 'Day 450', 'well': 'H11', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666070': {'age': 'Day 450', 'well': 'B2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM2666071': {'age': 'Day 450', 'well': 'C8', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000210'}, 'GSM1395856': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395857': {'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395854': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395855': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395852': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395853': {'subtype': 'Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395850': {'subtype': 'Cla+Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395851': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395858': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM1395859': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH30'}, 'GSM2705322': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM1647108': {'illumina_index': '14', 'point': '18', 'batch': '13', 'agent': 'BCG', 'rin': '4.9', 'individual': 'M375'}, 'GSM2705320': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705321': {'pcr': 'ReadyMix', 'inactivation': '0.2 % SDS', 'batch': 'R27S,E54K,L372P-Batch 2', 'date': '02.02.2017', 'input': '150 pg', 'line': 'HeLa', 'dilution': '1:10'}, 'GSM2705326': {'date': '13.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 3', 'dilution': '1:10'}, 'GSM2705327': {'date': '13.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 4', 'dilution': '1:10'}, 'GSM2705324': {'date': '13.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 1', 'dilution': '1:10'}, 'GSM2183727': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'CTTGTA'}, 'GSM2705328': {'date': '13.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 6', 'dilution': '1:10'}, 'GSM2705329': {'date': '13.01.2017', 'additive': 'DMSO', 'line': 'HeLa', 'replicate': 'HeLa RNA sample 7', 'dilution': '1:10'}, 'GSM2049908': {'line': 'MDA-parental', 'rep': '1', 'fraction': 'RPF'}, 'GSM2049902': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049900': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'RPF'}, 'GSM2049907': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM2049904': {'line': 'MDA-parental', 'rep': '2', 'fraction': 'TT'}, 'GSM1518062': {'line': 'CUTTL1', 'treatment': 'GSI', 'time': '48h'}, 'GSM1518063': {'line': 'CUTTL1', 'treatment': 'DMSO', 'time': '12h'}, 'GSM1518060': {'line': 'CUTTL1', 'treatment': 'GSI', 'time': '12h'}, 'GSM1518061': {'line': 'CUTTL1', 'treatment': 'DMSO', 'time': '48h'}, 'GSM1518066': {'line': 'CUTTL1', 'treatment': 'GSI', 'time': '48h'}, 'GSM1518067': {'culture': 'OP9-DLL1'}, 'GSM1518064': {'line': 'CUTTL1', 'treatment': 'GSI', 'time': '12h'}, 'GSM1518065': {'line': 'CUTTL1', 'treatment': 'DMSO', 'time': '48h'}, 'GSM1518068': {'culture': 'OP9-DLL1'}, 'GSM2627076': {'origin': 'small intestine', 'patient_id': '200', 'type': 'mesenteric metastasis', 'tumor_id': 'YC184'}, 'GSM1647106': {'illumina_index': '12', 'point': '48', 'batch': '13', 'agent': 'GC', 'rin': '3.6', 'individual': 'M373'}, 'GSM2183729': {'line': 'MV4;11 (Cas9; ENL-FKBP(F36V); ENL-/-)', 'code': 'TAGCTT'}, 'GSM2181588': {'cell_line': 'HCC1143', 'cell_type': 'basal-like breast cancer', 'treatment': 'DMSO'}, 'GSM2181589': {'cell_line': 'HCC1143', 'cell_type': 'basal-like breast cancer', 'treatment': 'Trametinib'}, 'GSM2170443': {'stage': 'Definitive endoderm 1'}, 'GSM2170442': {'stage': 'Definitive endoderm 1'}, 'GSM2170445': {'stage': 'Definitive endoderm 1'}, 'GSM2170444': {'stage': 'Definitive endoderm 1'}, 'GSM2170447': {'stage': 'Definitive endoderm 1'}, 'GSM2170446': {'stage': 'Definitive endoderm 1'}, 'GSM2170449': {'stage': 'Definitive endoderm 1'}, 'GSM2170448': {'stage': 'Definitive endoderm 1'}, 'GSM3594323': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594322': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594321': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594320': {'cluster': '2', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594327': {'cluster': '2', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594326': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594325': {'cluster': '4', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594324': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594329': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM3594328': {'cluster': '3', 'disease': 'Remission', 'batch': 'Aug29'}, 'GSM1965134': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965135': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965136': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965137': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965130': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965131': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965132': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965133': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965138': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965139': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2630219': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630218': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM1626518': {'tissue': 'placental villus parenchyma'}, 'GSM2630211': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630210': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2630213': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630212': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM2630215': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630214': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM2630217': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': 'N/A', 'drug': 'untreated'}, 'GSM2630216': {'line': 'NCI-H1944', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '0.01%', 'drug': 'DMSO vehicle'}, 'GSM3123417': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3594393': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM1980274': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM3123415': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3594391': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2345053': {'with': 'JQ1', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'macrophage'}, 'GSM3594396': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594397': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2100634': {'age': '59', 'tissue': 'brain BA4', 'diagnosis': 'HD CTRL'}, 'GSM2392436': {'status': 'CREBBP+/+'}, 'GSM2100631': {'age': '48', 'tissue': 'brain BA4', 'diagnosis': 'HD CTRL'}, 'GSM2100630': {'age': '50', 'tissue': 'brain BA4', 'diagnosis': 'HD CTRL'}, 'GSM2100633': {'age': '64', 'tissue': 'brain BA4', 'diagnosis': 'HD CTRL'}, 'GSM2100632': {'age': '57', 'tissue': 'brain BA4', 'diagnosis': 'HD CTRL'}, 'GSM2108454': {'stages': 'myoblast nucleus'}, 'GSM3123419': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3123418': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM2392434': {'status': 'CREBBP+/+'}, 'GSM1692717': {'with': 'shRNA targeting ELAVL2', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'ELAVL2 knockdown', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM1692716': {'with': 'shRNA targeting ELAVL2', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'ELAVL2 knockdown', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM1692715': {'with': 'shRNA targeting ELAVL2', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'ELAVL2 knockdown', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM1692714': {'with': 'shRNA targeting ELAVL2', 'source': 'mid-gestation fetal brain', 'type': 'primary human neural progenitor cells', 'variation': 'ELAVL2 knockdown', 'point': 'differentiated into neurons for 4 weeks and then harvested'}, 'GSM1234201': {'replicate': '1', 'line': '2630', 'antibody': 'H3K27Ac'}, 'GSM1234200': {'replicate': '2', 'line': '2630', 'antibody': 'CTCF'}, 'GSM1234203': {'replicate': '1', 'line': '2630', 'antibody': 'H3K27me3'}, 'GSM1234202': {'replicate': '2', 'line': '2630', 'antibody': 'H3K27Ac'}, 'GSM2100176': {'rin': '9.9', 'Sex': 'Female', 'sspg': '105', 'age': '38', 'bmi': '33.9', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'South Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '617', 'method': 'Qiagen:trizol'}, 'GSM1234209': {'replicate': '1', 'line': '2630', 'antibody': 'H3K4me3'}, 'GSM1234208': {'replicate': '2', 'line': '2630', 'antibody': 'H3K4me1'}, 'GSM3586559': {'origin': 'ABC', 'pfstt': '427', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '427', 'cycles': '8', 'oscs': '1'}, 'GSM2100177': {'rin': '9.8', 'Sex': 'Female', 'sspg': '105', 'age': '38', 'bmi': '33.9', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'South Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '617', 'method': 'Qiagen:trizol'}, 'GSM1233283': {'challenge': 'Post', 'tissue': 'whole blood'}, 'GSM2108456': {'stages': 'myoblast nucleus'}, 'GSM1693048': {'line': 'CAL51', 'type': 'Basal-like cells'}, 'GSM1693049': {'line': 'CAL51-MCF7', 'type': 'Heterofusion'}, 'GSM2392432': {'status': 'CREBBP+/+'}, 'GSM2451016': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2322022': {'tissue': 'hematopoietic systerm', 'batch': 'batch2', 'stage': 'Monocytic middle stage'}, 'GSM2107368': {'line': 'IMR5-75', 'type': 'neuroblastoma'}, 'GSM2107369': {'line': 'IMR5-75', 'type': 'neuroblastoma'}, 'GSM2108451': {'stages': 'myoblast nucleus'}, 'GSM2454070': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2107362': {'line': 'Be(2)-C', 'type': 'neuroblastoma'}, 'GSM2107363': {'line': 'Be(2)-C', 'type': 'neuroblastoma'}, 'GSM2107360': {'line': 'Be(2)-C', 'type': 'neuroblastoma'}, 'GSM2107361': {'line': 'Be(2)-C', 'type': 'neuroblastoma'}, 'GSM2107366': {'line': 'Be(2)-C', 'type': 'neuroblastoma'}, 'GSM2454073': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2107364': {'line': 'Be(2)-C', 'type': 'neuroblastoma'}, 'GSM2107365': {'line': 'Be(2)-C', 'type': 'neuroblastoma'}, 'GSM2142512': {'gender': 'female', 'age': '74', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142513': {'gender': 'female', 'age': '71', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '3', 'tnm': '4', 'smoking': '3'}, 'GSM2142510': {'gender': 'male', 'age': '61', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '2', 'smoking': '1'}, 'GSM2322021': {'tissue': 'hematopoietic systerm', 'batch': 'batch2', 'stage': 'Monocytic early stage'}, 'GSM2142516': {'gender': 'female', 'age': '69', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2142517': {'gender': 'female', 'age': '70', 'who': '0', 'dead': '1', 'date': '2011-01-02', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2142514': {'code': '404'}, 'GSM2142515': {'gender': 'male', 'age': '75', 'who': '2', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '1'}, 'GSM2142518': {'gender': 'male', 'age': '67', 'who': '1', 'dead': '1', 'date': '2009-10-27', 'histology': '1', 'tnm': '3', 'smoking': '1'}, 'GSM2142519': {'gender': 'female', 'age': '74', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2815807': {'line': 'H9'}, 'GSM2815806': {'line': 'H9'}, 'GSM2108450': {'stages': 'myoblast nucleus'}, 'GSM2815804': {'line': 'H9'}, 'GSM2815803': {'line': 'H9'}, 'GSM2815802': {'line': 'H9'}, 'GSM2815801': {'line': 'H9'}, 'GSM2815800': {'line': 'H9'}, 'GSM2454076': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2815809': {'line': 'H9'}, 'GSM1104509': {'line': 'gastric carcinoma cell line SNU-719', 'infection': 'EBV', 'passage': '3-5'}, 'GSM2108453': {'stages': 'myoblast nucleus'}, 'GSM1380880': {'type': 'Primary fibroblast', 'mutation': 'SAMHD1'}, 'GSM1948539': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM1948538': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM2242893': {'line': 'A375', 'replicate': '4'}, 'GSM2393538': {'cell': 'exosome', 'type': 'long RNA', 'line': 'BJ', 'replicate': '2', 'treatment': 'untreated'}, 'GSM2242890': {'line': 'A375', 'replicate': '4'}, 'GSM2393539': {'cell': 'exosome', 'type': 'long RNA', 'line': 'BJ', 'replicate': '1', 'treatment': 'Treatment 24 hr'}, 'GSM1375991': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375990': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1464321': {'status': 'small cell lung cancer'}, 'GSM1375992': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375995': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375994': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375997': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375996': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375999': {'state': 'Normal', 'tissue': 'lung'}, 'GSM1375998': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2630265': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2317026': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317027': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317024': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317025': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317022': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317023': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317020': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317021': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2242895': {'line': 'A375', 'replicate': '4'}, 'GSM2317028': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM2317029': {'control': 'FALSE', 'culture': '26', 'line': 'DCX-'}, 'GSM1464320': {'status': 'small cell lung cancer'}, 'GSM1084059': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'arsenite', 'manufacturer': 'Abnova'}, 'GSM1084058': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1084055': {'line': '293S', 'treatment': 'arsenite'}, 'GSM2393530': {'type': 'short RNA', 'line': 'HUVEC', 'replicate': '2', 'treatment': 'TAP'}, 'GSM1084057': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'arsenite', 'manufacturer': 'Abnova'}, 'GSM1084056': {'line': '293S', 'antibody': 'Ago2', 'treatment': 'no treatment (control)', 'manufacturer': 'Abnova'}, 'GSM1084051': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1084050': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM2102460': {'with': 'Cas9 with guide RNA targeting Enhancer L', 'line': 'JEG3', 'type': 'choriocarcinoma (trophoblast)'}, 'GSM1084052': {'line': '293S', 'treatment': 'no treatment (control)'}, 'GSM1480370': {'with': 'vehicle for 90min', 'type': 'SGBS adipocyte D10'}, 'GSM1273671': {'antibody': 'H3K27me3 (Millipore/upstate , 07-449 )', 'type': 'hESC derived anterior foregut (MHG)'}, 'GSM1273670': {'antibody': 'H3K27ac (abcam, ab4729)', 'type': 'hESC derived anterior foregut (MHG)'}, 'GSM1273673': {'type': 'hESC derived anterior primitive streak (APS)'}, 'GSM1273672': {'type': 'H7 - Embryonic stem cell'}, 'GSM1273675': {'type': 'hESC derived anterior foregut (AFG)'}, 'GSM1273674': {'type': 'hESC derived definitive endoderm cells'}, 'GSM1273677': {'type': 'hESC derived anterior foregut (MHG)'}, 'GSM1273676': {'type': 'hESC derived anterior foregut (PFG)'}, 'GSM2344970': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2232088': {'line': 'Caco-2', 'treatment': 'C. concisus UNSWCD infection'}, 'GSM2232089': {'line': 'Caco-2', 'treatment': 'C. concisus UNSWCD infection'}, 'GSM2666146': {'age': 'Day 130', 'well': 'D8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2344971': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2232082': {'line': 'Caco-2', 'treatment': 'exposure to zonula occludens toxin'}, 'GSM2232083': {'line': 'Caco-2', 'treatment': 'exposure to zonula occludens toxin'}, 'GSM2232080': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM2232081': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM2232086': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM2232087': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM2232084': {'line': 'Caco-2', 'treatment': 'exposure to zonula occludens toxin'}, 'GSM2232085': {'line': 'Caco-2', 'treatment': 'control'}, 'GSM1480371': {'with': 'vehicle for 90min', 'type': 'SGBS adipocyte D10'}, 'GSM2805308': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '57', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805301': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '58', 'timepoint': 'D3_ZT_11:15'}, 'GSM2805300': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '58', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805303': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '68', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805302': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '68', 'timepoint': 'D2_ZT_15:30'}, 'GSM1464322': {'status': 'small cell lung cancer'}, 'GSM2805304': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '68', 'timepoint': 'D3_ZT_5:45'}, 'GSM2805307': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '57', 'timepoint': 'D3_ZT_0:15'}, 'GSM2805306': {'status': 'Type 2 diabetes', 'gender': 'male', 'age': '57', 'timepoint': 'D2_ZT_15:30'}, 'GSM1940658': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1940659': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM1333780': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333781': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM2754629': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0979', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754628': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '04_0979', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2276811': {'line': 'LNCaP', 'tissue': 'Prostate', 'treatment': 'transfected with AR1-651 plasimd'}, 'GSM2276810': {'line': 'LNCaP', 'tissue': 'Prostate', 'treatment': 'transfected with Empty vector plasimd and treated with AIL'}, 'GSM2276812': {'line': 'LNCaP', 'tissue': 'Prostate', 'treatment': 'transfected with AR1-651 plasimd and treated with AIL'}, 'GSM1940651': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2562622': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562623': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562620': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562621': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562626': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM1940652': {'group': 'Asthmatic', 'tissue': 'blood', 'type': 'CD3+CD4+CD45RA-CCR7+CD25-CCR4+ T cells'}, 'GSM2562624': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562625': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562628': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562629': {'gender': 'female', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2543612': {'library_id': 'lib5725', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543613': {'library_id': 'lib5730', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543610': {'library_id': 'lib5723', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543611': {'library_id': 'lib5724', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543616': {'library_id': 'lib5733', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543617': {'library_id': 'lib5734', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2402795': {'medium': 'F99', 'tissue': 'cornea', 'type': 'endothelial', 'immortalization': 'none'}, 'GSM2543615': {'library_id': 'lib5732', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1217945': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'XK2367'}, 'GSM1217944': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'XK2367'}, 'GSM2543618': {'library_id': 'lib5735', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543619': {'library_id': 'lib5736', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1217941': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Beta', 'id': 'CITH068'}, 'GSM1217940': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Alpha', 'id': 'CITH068'}, 'GSM1217943': {'antibody': 'H3K27me3', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'ICRH025'}, 'GSM1217942': {'antibody': 'none (input)', 'tissue': 'pancreatic islets', 'type': 'Exocrine', 'id': 'ICRH025'}, 'GSM2257842': {'with': 'none (control)', 'line': 'OCI-AML2', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257841': {'with': 'EPZ004777, DOT1L inhibitor', 'line': 'OCI-AML2', 'type': 'Acute myeloid leukemia cell line'}, 'GSM2257840': {'with': 'EPZ004777, DOT1L inhibitor', 'line': 'OCI-AML2', 'type': 'Acute myeloid leukemia cell line'}, 'GSM1703730': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703731': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703732': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703733': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703734': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703735': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Coeliac Individual'}, 'GSM1703736': {'stimulation': 'Unstimulated', 'phenotype': 'Coeliac Individual'}, 'GSM1703737': {'stimulation': 'anti-CD3/anti-CD28 stimulation', 'phenotype': 'Control individual'}, 'GSM1703738': {'stimulation': 'Phorbal myristate acetate (PMA) stimulation', 'phenotype': 'Control individual'}, 'GSM1703739': {'stimulation': 'Unstimulated', 'phenotype': 'Control individual'}, 'GSM2492566': {'tissue': 'cord blood in artificial thymic organoid', 'type': 'ATO-derived naive CD8 T cell', 'phenotype': 'CD3+TCR{alphabeta}+CD8SP', 'method': 'Sorted CB CD34+CD3- HSPCs were cultured in MS5-hDLL1 ATOs for 6-8 weeks followed by FACS sorting for the indicated phenotype'}, 'GSM2155008': {'replicate': '2', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '1hr'}, 'GSM2155009': {'replicate': '3', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '1hr'}, 'GSM2155004': {'replicate': '1', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '21% oxygen', 'point': '0hr'}, 'GSM2155005': {'replicate': '2', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '21% oxygen', 'point': '0hr'}, 'GSM2155006': {'replicate': '3', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '21% oxygen', 'point': '0hr'}, 'GSM2155007': {'replicate': '1', 'line': 'HCT116', 'type': 'colorectal cancer cell line', 'treatment': '1% oxygen', 'point': '1hr'}, 'GSM1334208': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM2720363': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2720362': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM2720361': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2720360': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2720367': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM1334207': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'healthy (tested non-asthmatic)'}, 'GSM2720365': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'tunicamycin'}, 'GSM2720364': {'antibody': 'H3K4me3', 'passages': 'p5', 'type': 'MSC', 'treatment': 'vehicle'}, 'GSM3190536': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C8', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.9', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.105676'}, 'GSM3190537': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C8', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '6.973805'}, 'GSM3190534': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '8.370085'}, 'GSM3190535': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '7.991608'}, 'GSM3190532': {'boca': 'No', 'years': '6', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.060866'}, 'GSM3190533': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'Yes', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.076135'}, 'GSM3190530': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-C8', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '5.5', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.26147'}, 'GSM3190531': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C8B30ANXX', '4': 'No', 'count': '5.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.705712'}, 'GSM3190538': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '5.7', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.543683'}, 'GSM3190539': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C97JMANXX', '4': 'No', 'count': '4.3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.357409'}, 'GSM2124063': {'type': 'Central memory T cells', 'id': 'HS90002'}, 'GSM1588889': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588888': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588881': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588880': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588883': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM2527247': {'age': '7 post conception weeks (pcw)', 'type': 'Cultured embryonic lung stalk epithelium', 'number': '1'}, 'GSM1588885': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588884': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM1588887': {'sensitivity': 'sensitive', 'type': 'melanoma', 'treatment': 'none'}, 'GSM1588886': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM2195174': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195175': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195176': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195170': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195171': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195172': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195173': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2754993': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0282', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2177847': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Background', 'years': '2'}, 'GSM2754992': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0282', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1620668': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620669': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620662': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620663': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620660': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620661': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620666': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620667': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620664': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620665': {'type': 'MCF10a human breast cancer cells'}, 'GSM2151831': {'status': 'Bipolar Disorder individual', 'subtype': 'putamen', 'tissue': 'Brain'}, 'GSM2151830': {'status': 'Bipolar Disorder individual', 'subtype': 'putamen', 'tissue': 'Brain'}, 'GSM2754994': {'bin': '5', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0197', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2158000': {'gender': 'F', 'age': '24', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM1695882': {'age': '33', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695883': {'age': '49', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695880': {'age': '71', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1695881': {'age': '39', 'tissue': 'breast ductal carcinoma in situ', 'race': 'White'}, 'GSM1369969': {'transfection': 'siAGO1', 'type': 'MCF7'}, 'GSM1369968': {'transfection': 'siLuc', 'type': 'MCF7'}, 'GSM1695884': {'age': '46', 'tissue': 'breast ductal carcinoma in situ', 'race': 'Black'}, 'GSM1695885': {'age': '47', 'tissue': 'breast ductal carcinoma in situ', 'race': 'Asian'}, 'GSM1369965': {'antibody': 'none', 'type': 'MCF10A'}, 'GSM1369964': {'antibody': 'none', 'type': 'MCF7'}, 'GSM1369967': {'transfection': 'siLuc', 'type': 'MCF7'}, 'GSM1369966': {'antibody': 'none', 'type': 'MCF7'}, 'GSM1369961': {'antibody': 'none', 'type': 'MCF10A'}, 'GSM1369960': {'antibody': 'none', 'type': 'MCF7'}, 'GSM1369963': {'antibody': 'none', 'type': 'MCF10A'}, 'GSM1369962': {'antibody': 'none', 'type': 'MCF7'}, 'GSM2153091': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153090': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153093': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153092': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153095': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153094': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153097': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153096': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153099': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153098': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2666145': {'age': 'Day 130', 'well': 'F8', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1375528': {'line': 'HeLa', 'treatment': '3 h DRB 8 min 4sU', 'time': '8 min'}, 'GSM1375529': {'line': 'HeLa', 'treatment': '3 h DRB 8 min 4sU', 'time': '8 min'}, 'GSM1375520': {'line': 'HeLa', 'treatment': 'untreated', 'time': 'control'}, 'GSM1375521': {'line': 'HeLa', 'treatment': 'untreated', 'time': 'control'}, 'GSM1375522': {'line': 'HeLa', 'treatment': '3 h DRB 0 min 4sU', 'time': '0 min'}, 'GSM1375523': {'line': 'HeLa', 'treatment': '3 h DRB 0 min 4sU', 'time': '0 min'}, 'GSM1375524': {'line': 'HeLa', 'treatment': '3 h DRB 0 min 4sU', 'time': '0 min'}, 'GSM1375525': {'line': 'HeLa', 'treatment': '3 h DRB 0 min 4sU', 'time': '0 min'}, 'GSM1375526': {'line': 'HeLa', 'treatment': '3 h DRB 4 min 4sU', 'time': '4 min'}, 'GSM1375527': {'line': 'HeLa', 'treatment': '3 h DRB 4 min 4sU', 'time': '4 min'}, 'GSM763428': {'line': 'OCI-LY1', 'antibody': 'Ser5-P RNA pol II'}, 'GSM763429': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763426': {'line': 'OCI-LY1', 'antibody': 'RNA polymerase II'}, 'GSM763427': {'line': 'OCI-LY1', 'antibody': 'Ser2-P RNA pol II'}, 'GSM763424': {'line': 'OCI-LY1', 'antibody': 'H3K27Ac'}, 'GSM763425': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763422': {'line': 'OCI-LY1', 'antibody': 'H3K4me1'}, 'GSM763423': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM763420': {'line': 'OCI-LY1', 'antibody': 'H3K4me3'}, 'GSM763421': {'line': 'OCI-LY1', 'antibody': 'none (INPUT)'}, 'GSM1369389': {'line': 'HeLa', 'treatment': 'control'}, 'GSM1369388': {'line': 'HeLa', 'treatment': 'control'}, 'GSM1901516': {'count': '1', 'ercc_mix': 'mix2', 'type': 'alpha', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901517': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901510': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901511': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901512': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901513': {'count': '1', 'ercc_mix': 'mix2', 'type': 'acinar', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901518': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM1901519': {'count': '1', 'ercc_mix': 'mix2', 'type': 'beta', 'ercc_dilution': '1000000', 'pass': 'TRUE'}, 'GSM2263398': {'group': 'RASNP', 'gender': 'M', 'age': '40', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263399': {'group': 'RASNP', 'gender': 'F', 'age': '33', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2631695': {'line': 'MDA-MB-453 breast carcinoma cell line', 'agent': 'control'}, 'GSM2552981': {'point': 'Baseline', 'age': '72', 'number': 'AP14', 'disease': 'Rheumatoid arthritis (early)', 'weeks': '20', 'Sex': 'F', 'positivity': 'Positive'}, 'GSM2306680': {'line': 'PLC/PRF/5', 'variation': 'SCD1 knockdown'}, 'GSM2686841': {'individual': '39', 'group': 'Mossi', 'ID': '114', 'population': 'CD14+ monocyte'}, 'GSM2686840': {'individual': '24', 'group': 'Mossi', 'ID': '112', 'population': 'CD14+ monocyte'}, 'GSM2686843': {'individual': '7', 'group': 'Mossi', 'ID': '126', 'population': 'CD14- lymphocytes'}, 'GSM2686842': {'individual': '2', 'group': 'Mossi', 'ID': '120', 'population': 'CD14- lymphocytes'}, 'GSM2686845': {'individual': '33', 'group': 'Mossi', 'ID': '128', 'population': 'CD14- lymphocytes'}, 'GSM2686844': {'individual': '8', 'group': 'Mossi', 'ID': '122', 'population': 'CD14- lymphocytes'}, 'GSM2686847': {'individual': '5', 'group': 'Mossi', 'ID': '125', 'population': 'CD14- lymphocytes'}, 'GSM2686846': {'individual': '35', 'group': 'Mossi', 'ID': '130', 'population': 'CD14- lymphocytes'}, 'GSM2686849': {'individual': '39', 'group': 'Mossi', 'ID': '133', 'population': 'CD14- lymphocytes'}, 'GSM2686848': {'individual': '24', 'group': 'Mossi', 'ID': '134', 'population': 'CD14- lymphocytes'}, 'GSM1978808': {'line': 'MCF7', 'treatment': 'Control'}, 'GSM2263395': {'group': 'Fy', 'gender': 'F', 'age': '19', 'tissue': 'blood', 'time': 'PreChallenge', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2451404': {'compartment': 'Bulk', 'id': 'CUMC_075', 'library': 'TruSeq'}, 'GSM2451403': {'compartment': 'Bulk', 'id': 'CUMC_069', 'library': 'TruSeq'}, 'GSM2451402': {'compartment': 'Bulk', 'id': 'CUMC_074', 'library': 'TruSeq'}, 'GSM2451401': {'compartment': 'Bulk', 'id': 'CUMC_073', 'library': 'TruSeq'}, 'GSM2451400': {'compartment': 'Bulk', 'id': 'CUMC_072', 'library': 'TruSeq'}, 'GSM1888635': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888634': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888637': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1888636': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM1888631': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1957471': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '53 days'}, 'GSM1888633': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1888632': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1888639': {'set': 'isogenic', 'type': 'ESC'}, 'GSM1888638': {'set': 'isogenic', 'type': 'Fibroblast'}, 'GSM2666030': {'age': 'Day 130', 'well': 'A8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2678110': {'subtype': 'Leiomyoma', 'age': '44', 'tissue': 'uterus', 'ethinity': 'Hispanic'}, 'GSM2666031': {'age': 'Day 130', 'well': 'A2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2666038': {'age': 'Day 130', 'well': 'E7', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2666039': {'age': 'Day 130', 'well': 'H3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM938899': {'rnaseq': 'Non-directional', 'line': 'GM12004', 'experiment': 'cDNA-NTC-siRNA', 'type': 'B-cells', 'treatment': 'non-targeting control siRNA'}, 'GSM938898': {'rnaseq': 'Non-directional', 'line': 'GM12750', 'experiment': 'cDNA-ADAR1-siRNA', 'type': 'B-cells', 'treatment': 'siRNA knockdown of ADAR1'}, 'GSM2247619': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247618': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247617': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247616': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247615': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247614': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247613': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247612': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247611': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2247610': {'tissue': 'cord blood', 'type': 'CD4 T cell'}, 'GSM2392233': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1394658': {'status': 'corrected', 'type': 'Induced pluripotent stem cells from human fibroblasts from patients with FA disease'}, 'GSM1394657': {'status': 'not corrected', 'type': 'Induced pluripotent stem cells from human fibroblasts from patients with FA disease'}, 'GSM1394656': {'status': 'not corrected', 'type': 'Induced pluripotent stem cells from human fibroblasts from patients with FA disease'}, 'GSM1394655': {'status': 'corrected', 'type': 'Induced pluripotent stem cells from human fibroblasts from patients with FA disease'}, 'GSM1104001': {'type': 'HER2+ Breast Tumor'}, 'GSM2455872': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455873': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455870': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455871': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455876': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455877': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455874': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455875': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455878': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455879': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2674866': {'age': '6-8', 'site': 'subcutaneous', 'Sex': 'Female', 'volume': '100', 'strain': 'FOX CHASE SCID C.B-17/lcr-scid/scidJcl', 'replicate': '1', 'laboratory': 'KYOU', 'line': '201B7', 'sex': 'Male'}, 'GSM2431643': {'number': '2_50', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_06h', 'donor': 'D3', 'concentration': '10μM'}, 'GSM2431642': {'number': '2_51', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D3', 'concentration': '100ng/ml'}, 'GSM2431641': {'number': '2_52', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D3', 'concentration': '10μM'}, 'GSM2431640': {'number': '2_61', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_24h', 'donor': 'D3'}, 'GSM2431647': {'number': '2_56', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_JQ1_10', 'time': 'unstim_JQ1_10_24h', 'donor': 'D1', 'concentration': '10μM'}, 'GSM2431646': {'number': '2_57', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_06h', 'donor': 'D3', 'concentration': '100ng/ml'}, 'GSM2431645': {'number': '2_58', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_JQ1_10', 'time': 'LPS_JQ1_10_06h', 'donor': 'D3', 'concentration': '10μM'}, 'GSM2431644': {'number': '2_49', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D3'}, 'GSM2431649': {'number': '2_63', 'timepoint': '24h', 'batch': 'B2', 'stimulation': 'LPS', 'treatment': 'LPS_DMSO', 'time': 'LPS_DMSO_24h', 'donor': 'D3', 'concentration': '100ng/ml'}, 'GSM2431648': {'number': '2_55', 'timepoint': '06h', 'batch': 'B2', 'stimulation': 'unstim', 'treatment': 'unstim_DMSO', 'time': 'unstim_DMSO_06h', 'donor': 'D3'}, 'GSM2256169': {'infected': 'cancer_common:TSS104884_-_139100727.23-CUFF.51040.1', 'type': 'U87'}, 'GSM2256168': {'infected': 'u87_hek:TSS82007_+_34929710.23-CUFF.38155.1', 'type': 'U87'}, 'GSM2256167': {'infected': 'u87_hek:TSS57916_-_219081923.23-CUFF.27597.1,CUFF.27597.3', 'type': 'U87'}, 'GSM2256166': {'infected': 'common:TSS51685_+_114464468.23-CUFF.26051.4,CUFF.26051.5', 'type': 'U87'}, 'GSM2256165': {'infected': 'common:TSS51685_-_114464554.23-CUFF.26051.4,CUFF.26051.5', 'type': 'U87'}, 'GSM2256164': {'infected': 'u87_unique:TSS30593_-_35498833.23-CUFF.13974.1', 'type': 'U87'}, 'GSM2256163': {'infected': 'u87_unique:TSS30593_-_35498678.23-CUFF.13974.1', 'type': 'U87'}, 'GSM2256162': {'infected': 'u87_unique:TSS29930_-_97646362.23-CUFF.15024.1', 'type': 'U87'}, 'GSM2256161': {'infected': 'u87_unique:TSS29930_+_97646592.23-CUFF.15024.1', 'type': 'U87'}, 'GSM2256160': {'infected': 'u87_unique:TSS29932_+_97646908.23-CUFF.15024.4', 'type': 'U87'}, 'GSM1946009': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18855', 'for': '30min'}, 'GSM1946008': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18855', 'for': '30min'}, 'GSM1946007': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18855', 'for': '30min'}, 'GSM1946006': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18855', 'for': '30min'}, 'GSM1946005': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18853', 'for': '60min'}, 'GSM1946004': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18853', 'for': '60min'}, 'GSM1946003': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18853', 'for': '60min'}, 'GSM1946002': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18853', 'for': '30min'}, 'GSM1946001': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18853', 'for': '30min'}, 'GSM1946000': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18853', 'for': '30min'}, 'GSM1554612': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2666140': {'age': 'Day 130', 'well': 'F4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000288'}, 'GSM2171222': {'status': 'Smoker', 'gender': 'M', 'age': '43', 'years': '50', 'race': 'Caucasian', 'histology': 'NSCLC, Large cell carcinoma', 'treatment': 'T18 resistant cells treated with GSKJ4'}, 'GSM2171223': {'status': 'Smoker', 'gender': 'M', 'age': '43', 'years': '50', 'race': 'Caucasian', 'histology': 'NSCLC, Large cell carcinoma', 'treatment': 'T18 resistant cells treated with GSKJ4'}, 'GSM2171220': {'status': 'Smoker', 'gender': 'M', 'age': '43', 'years': '50', 'race': 'Caucasian', 'histology': 'NSCLC, Large cell carcinoma', 'treatment': 'T18 resistant cells treated with DMSO'}, 'GSM2171221': {'status': 'Smoker', 'gender': 'M', 'age': '43', 'years': '50', 'race': 'Caucasian', 'histology': 'NSCLC, Large cell carcinoma', 'treatment': 'T18 resistant cells treated with DMSO'}, 'GSM1885108': {'with': 'nELAVL RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'nELAVL', 'group': 'UV stressed: 0.5mJ/cm2'}, 'GSM2087132': {'sirna': 'control siRNA', 'time': '48 hr post-transfection'}, 'GSM2087133': {'sirna': 'control siRNA', 'time': '48 hr post-transfection'}, 'GSM2087134': {'sirna': 'podoplanin siRNA', 'time': '48 hr post-transfection'}, 'GSM2087135': {'sirna': 'podoplanin siRNA', 'time': '48 hr post-transfection'}, 'GSM1885100': {'with': 'nELAVL RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'nELAVL', 'group': 'non-stressed'}, 'GSM1885101': {'with': 'nELAVL RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'nELAVL', 'group': 'non-stressed'}, 'GSM1885102': {'with': 'nELAVL RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'nELAVL', 'group': 'non-stressed'}, 'GSM1885103': {'with': 'mock RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'mock', 'group': 'UV stressed: 0.5mJ/cm2'}, 'GSM1885104': {'with': 'mock RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'mock', 'group': 'UV stressed: 0.5mJ/cm2'}, 'GSM1885105': {'with': 'mock RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'mock', 'group': 'UV stressed: 0.5mJ/cm2'}, 'GSM1885106': {'with': 'nELAVL RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'nELAVL', 'group': 'UV stressed: 0.5mJ/cm2'}, 'GSM1885107': {'with': 'nELAVL RNAi for 96hrs', 'line': 'IMR-32', 'type': 'neuroblastoma cells', 'RNAi': 'nELAVL', 'group': 'UV stressed: 0.5mJ/cm2'}, 'GSM1876269': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Cauda', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-05'}, 'GSM1876268': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Corpus', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-09'}, 'GSM2054129': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054128': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054127': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM2054126': {'type': 'Immortalised human mediastinum metastastic cells', 'disease': 'HLRCC patient', 'variation': 'Fh1-deficient'}, 'GSM1876267': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Corpus', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-06'}, 'GSM1876266': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Corpus', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-05'}, 'GSM1876265': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Caput', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-09'}, 'GSM1876264': {'status': 'undergoing inguinal radical orchiectomy for a clinical diagnosis of testicular cancer', 'origin': 'Epididymis', 'age': 'adult (22-36yrs range)', 'subtype': 'Caput', 'type': 'Human epididymis epithelial (HEE) cell cultures', 'id': 'UC-06'}, 'GSM2779264': {'line': 'M397', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM1105860': {'subtypes': 'II', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2779266': {'line': 'SKMEL28', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM2779267': {'line': 'SKMEL28', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM2454027': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2779262': {'line': 'M397', 'type': 'BRAFi', 'treatment': 'on-treatment'}, 'GSM1105861': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'method': 'FFPE'}, 'GSM2204133': {'gender': 'female', 'line': '201B6 derived ALUBUMIN reporter cell line 12C57'}, 'GSM2204132': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204131': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2204130': {'model': 'Fuji Xenograft model', 'type': 'synovial sarcoma', 'pdx': 'xenograft'}, 'GSM2779268': {'line': 'SKMEL28', 'type': 'BRAFi', 'treatment': 'resistant'}, 'GSM2204136': {'gender': 'female', 'line': '201B6 derived ALUBUMIN reporter cell line 12C57'}, 'GSM2204135': {'gender': 'female', 'line': '201B6 derived ALUBUMIN reporter cell line 12C57'}, 'GSM2204134': {'gender': 'female', 'line': '201B6 derived ALUBUMIN reporter cell line 12C57'}, 'GSM1681902': {'tissue': 'Normal adjacent lung tissue', 'type': 'immature monocytic myeloid cells (IMMCs)'}, 'GSM1681903': {'tissue': 'Normal adjacent lung tissue', 'type': 'immature monocytic myeloid cells (IMMCs)'}, 'GSM2413429': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1533219': {'treatment': 'DOX days 0-8'}, 'GSM1681906': {'tissue': 'Normal adjacent lung tissue', 'type': 'neutrophils (Neu)'}, 'GSM1681907': {'tissue': 'Normal adjacent lung tissue', 'type': 'neutrophils (Neu)'}, 'GSM1681904': {'tissue': 'Normal adjacent lung tissue', 'type': 'neutrophils (Neu)'}, 'GSM1681905': {'tissue': 'Normal adjacent lung tissue', 'type': 'neutrophils (Neu)'}, 'GSM2413423': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1533213': {'treatment': 'no DOX'}, 'GSM2413421': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413420': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413427': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413426': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413425': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413424': {'passages': '0', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2784439': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '48h'}, 'GSM2784438': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '48h'}, 'GSM2784431': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '24h'}, 'GSM2784430': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '24h'}, 'GSM2784433': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '24h'}, 'GSM2784432': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '24h'}, 'GSM2784435': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '24h'}, 'GSM2784434': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '24h'}, 'GSM2784437': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'DMSO', 'time': '48h'}, 'GSM2784436': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '24h'}, 'GSM2509698': {'status': 'differentiated cells', 'protocol': 'in RPMI/B27 minus insulin for 7 day', 'type': 'Monolayer cardiac fibroblast-derived hiPSC', 'treatment': 'DMSO'}, 'GSM2509699': {'status': 'differentiated cells', 'protocol': 'in RPMI/B27 minus insulin for 7 day', 'type': 'Monolayer cardiac fibroblast-derived hiPSC', 'treatment': 'DMSO'}, 'GSM2374315': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374314': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374313': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374312': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374311': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2374310': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2509690': {'status': 'undifferentiated hiPSC', 'protocol': 'in meTSR1 medium', 'type': 'undifferentiated hiPSCs, derived from cardiac fibroblast'}, 'GSM2509691': {'status': 'undifferentiated hiPSC', 'protocol': 'in meTSR1 medium', 'type': 'undifferentiated hiPSCs, derived from cardiac fibroblast'}, 'GSM2509692': {'status': 'differentiated cells', 'protocol': 'in RPMI/B27 minus insulin for 7 day', 'type': 'Monolayer cardiac fibroblast-derived hiPSC', 'treatment': 'ISX-9'}, 'GSM2509693': {'status': 'differentiated cells', 'protocol': 'in RPMI/B27 minus insulin for 7 day', 'type': 'Monolayer cardiac fibroblast-derived hiPSC', 'treatment': 'ISX-9'}, 'GSM2509694': {'status': 'differentiated cells', 'protocol': 'in RPMI/B27 minus insulin for 7 day', 'type': 'Monolayer cardiac fibroblast-derived hiPSC', 'treatment': 'ISX-9'}, 'GSM2509695': {'status': 'differentiated cells', 'protocol': 'in RPMI/B27 minus insulin for 7 day', 'type': 'Monolayer cardiac fibroblast-derived hiPSC', 'treatment': 'ISX-9'}, 'GSM2509696': {'status': 'differentiated cells', 'protocol': 'in RPMI/B27 minus insulin for 7 day', 'type': 'Monolayer cardiac fibroblast-derived hiPSC', 'treatment': 'DMSO'}, 'GSM2509697': {'status': 'differentiated cells', 'protocol': 'in RPMI/B27 minus insulin for 7 day', 'type': 'Monolayer cardiac fibroblast-derived hiPSC', 'treatment': 'DMSO'}, 'GSM2437191': {'status': 'GDM', 'id': 'GD14'}, 'GSM2142549': {'gender': 'female', 'age': '64', 'who': '0', 'dead': '1', 'date': '2012-03-22', 'histology': '2', 'tnm': '4', 'smoking': '2'}, 'GSM2142548': {'gender': 'female', 'age': '65', 'who': '1', 'dead': '1', 'date': '2012-03-02', 'histology': '2', 'tnm': '2', 'smoking': '2'}, 'GSM2084441': {'induction': 'Vitamin D3', 'time': '96 hr'}, 'GSM2084440': {'induction': 'Vitamin D3', 'time': '96 hr'}, 'GSM2084443': {'induction': 'Vitamin D3', 'time': '120 hr'}, 'GSM2084442': {'induction': 'Vitamin D3', 'time': '96 hr'}, 'GSM2084445': {'induction': 'Vitamin D3', 'time': '120 hr'}, 'GSM2084444': {'induction': 'Vitamin D3', 'time': '120 hr'}, 'GSM2084447': {'induction': 'Vitamin D3+LPS', 'time': '120 hr'}, 'GSM2084446': {'induction': 'Vitamin D3+LPS', 'time': '120 hr'}, 'GSM2084449': {'induction': 'PMA', 'time': '123 hr'}, 'GSM2084448': {'induction': 'Vitamin D3+LPS', 'time': '120 hr'}, 'GSM1129240': {'input': '1000 ng', 'state': 'formalin-fixed, paraffin-embedded (FFPE)'}, 'GSM1569587': {'knockdown': 'siKDM3A', 'line': 'HMC-LTR', 'antibody': 'ChIP input'}, 'GSM2287203': {'isolate': 'Human coronary VSMC (Jane isolate)', 'treatment': 'Vehicle Control', 'passage': 'less than passage 8'}, 'GSM2287204': {'isolate': 'Human coronary VSMC (Jane isolate)', 'treatment': 'Vehicle Control', 'passage': 'less than passage 8'}, 'GSM2287205': {'isolate': 'Human coronary VSMC (Jane isolate)', 'treatment': '2ng/ml TGFbeta treatment for 24 hrs', 'passage': 'less than passage 8'}, 'GSM2287206': {'isolate': 'Human coronary VSMC (Jane isolate)', 'treatment': '2ng/ml TGFbeta treatment for 24 hrs', 'passage': 'less than passage 8'}, 'GSM2632648': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142540': {'gender': 'male', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '3', 'smoking': '2'}, 'GSM1401772': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM1569583': {'knockdown': 'N/A', 'line': 'HMC-P6 + HMC-L + HMC-LT + HMC-LTR', 'antibody': 'ChIP input'}, 'GSM1569582': {'knockdown': 'N/A', 'line': 'HMC-P6 + HMC-L + HMC-LT', 'antibody': 'ChIP input'}, 'GSM2845521': {'replicate': 'Rep1', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2C'}, 'GSM2845520': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2C'}, 'GSM2845523': {'line': 'HT-29', 'variation': 'Scramble'}, 'GSM2845522': {'replicate': 'Rep2', 'line': 'TAMR', 'si_group': 'siGRHL2', 'sirna': 'siGRHL2C'}, 'GSM2845524': {'line': 'HT-29', 'variation': 'GPR126 knockdown'}, 'GSM992942': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day10'}, 'GSM992941': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day7'}, 'GSM992940': {'type': 'primary CD34+ stem/progenitor cells', 'point': 'day3'}, 'GSM1977421': {'tissue': 'neonatal cord blood', 'type': 'MPP++'}, 'GSM1977420': {'tissue': 'neonatal cord blood', 'type': 'MEP--'}, 'GSM1977422': {'tissue': 'neonatal cord blood', 'type': 'MPP--'}, 'GSM2049066': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2425620': {'line': 'TamR MCF-7', 'transfection': 'Cells were infected with scrambled control shRNAs'}, 'GSM2425621': {'line': 'TamR MCF-7', 'transfection': 'Cells were infected with EZH2-specific shRNAs'}, 'GSM2425622': {'line': 'TamR MCF-7', 'transfection': 'Cells were infected with scrambled control shRNAs'}, 'GSM2425623': {'line': 'TamR MCF-7', 'transfection': 'Cells were infected with EZH2-specific shRNAs'}, 'GSM2335518': {'tumor': 'glioblastoma', 'line': 'G523NS', 'genotype': 'ASCL1-/-'}, 'GSM2935055': {'status': 'patient affected by ankyloblepharon ectodermal dysplasia and clefting (AEC)', 'source': 'Skin biopsy', 'type': 'IPS derived keratinocytes', 'id': 'E3', 'variation': 'with a disease-associated TP63 mutation'}, 'GSM2935054': {'status': 'patient affected by ankyloblepharon ectodermal dysplasia and clefting (AEC)', 'source': 'Skin biopsy', 'type': 'IPS derived keratinocytes', 'id': 'E3', 'variation': 'without a disease-associated TP63 mutation'}, 'GSM2935057': {'status': 'patient affected by ankyloblepharon ectodermal dysplasia and clefting (AEC)', 'source': 'Skin biopsy', 'type': 'IPS derived keratinocytes', 'id': 'F5', 'variation': 'with a disease-associated TP63 mutation'}, 'GSM2935056': {'status': 'patient affected by ankyloblepharon ectodermal dysplasia and clefting (AEC)', 'source': 'Skin biopsy', 'type': 'IPS derived keratinocytes', 'id': 'F5', 'variation': 'without a disease-associated TP63 mutation'}, 'GSM1250470': {'genotype': 'No Known Relevant Mutations', 'gender': 'Female', 'age': '83 Years', 'onset': 'N/A', 'course': 'N/A', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Non-Neurologic Control'}, 'GSM1250471': {'genotype': 'No Known Relevant Mutations', 'gender': 'Female', 'age': '83 Years', 'onset': 'N/A', 'course': 'N/A', 'tissue': 'Fibroblast', 'treatment': 'ASO Treatment - Cells were transfected with a nuclear RNase-H dependent antisense oligonucleotide targeting Exon 2 of Hs C9orf72. This ASO has been shown in previous work to efficiently knockdown all known isoforms of C9orf72.', 'diagnosis': 'Non-Neurologic Control'}, 'GSM1250472': {'genotype': 'No Known Relevant Mutations', 'gender': 'Male', 'age': '56 Years', 'onset': 'N/A', 'course': 'N/A', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Non-Neurologic Control'}, 'GSM1836627': {'expression_construct': 'TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U2'}, 'GSM1250474': {'genotype': 'No Known Relevant Mutations', 'gender': 'Male', 'age': '55 Years', 'onset': 'N/A', 'course': 'N/A', 'tissue': 'Fibroblast', 'treatment': 'No ASO Treatment - Cells were exposed to cytofectin transfection reagent for four hours, but were not transfected with an ASO', 'diagnosis': 'Non-Neurologic Control'}, 'GSM2287138': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1642327': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM1642326': {'tissue': 'Cerebellum', 'genotype': 'Healthy'}, 'GSM1642325': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM2287139': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1642323': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM1642322': {'tissue': 'Cerebellum', 'genotype': 'Healthy'}, 'GSM1642321': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM1642320': {'tissue': 'Cerebellum', 'genotype': 'Healthy'}, 'GSM2450858': {'tissue': 'B721.221 cells', 'variation': 'A5701-transduced'}, 'GSM1642329': {'tissue': 'Frontal Cortex', 'genotype': 'Healthy'}, 'GSM1642328': {'tissue': 'Cerebellum', 'genotype': 'Healthy'}, 'GSM2041833': {'lineage': 'myeloid', 'etiology': 'PBPC', 'genotype': 'MLL-Af4'}, 'GSM2041831': {'lineage': 'lymphoid', 'etiology': 'UCB', 'genotype': 'MLL-AF9'}, 'GSM2041836': {'lineage': 'myeloid', 'etiology': 'UCB', 'genotype': 'MLL-Af4'}, 'GSM2041834': {'lineage': 'myeloid', 'etiology': 'PBPC', 'genotype': 'MLL-Af4'}, 'GSM1836626': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U1'}, 'GSM2041838': {'lineage': 'myeloid', 'etiology': 'UCB', 'genotype': 'MLL-Af4'}, 'GSM2948460': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM1836625': {'expression_construct': 'TOE1WT/E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U1'}, 'GSM1162983': {'patient': 'Disease_K1', 'gender': 'M', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1836624': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U1'}, 'GSM2176173': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176172': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176171': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176170': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176177': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176176': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176175': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176174': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176179': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176178': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2473274': {'genotype': 'YFFF'}, 'GSM1836623': {'expression_construct': 'TOE1E220K/E220K', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U1'}, 'GSM2527240': {'age': '7 post conception weeks (pcw)', 'type': 'Cultured embryonic lung tip epithelium', 'number': '5'}, 'GSM2286986': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286987': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286988': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2286989': {'gender': 'male', 'type': 'Single Cell'}, 'GSM1162985': {'patient': 'Disease_K1', 'gender': 'M', 'age': '56', 'tissue': 'Lesion', 'treatment': 'Antagonist', 'id': '4'}, 'GSM2059908': {'donor': '1', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059909': {'donor': '1', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM1836622': {'expression_construct': 'TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'type': 'NPC derived from primary fibroblasts', 'target_gene': 'U1'}, 'GSM2700522': {'line': 'HeyA8 (single Fas KO clone #11)', 'tissue': 'Ovaries', 'genotype': 'Fas KO -/-', 'infection': 'Infected with pLKO-shR6', 'point': 'harvested at 100hrs'}, 'GSM2700521': {'line': 'HeyA8 (single Fas KO clone #11)', 'tissue': 'Ovaries', 'genotype': 'Fas KO -/-', 'infection': 'Infected with pLKO-shR6', 'point': 'harvested at 100hrs'}, 'GSM2700520': {'line': 'HeyA8 (single Fas KO clone #11)', 'tissue': 'Ovaries', 'genotype': 'Fas KO -/-', 'infection': 'Infected with pLKO-scr', 'point': 'harvested at 100hrs'}, 'GSM2185672': {'race': 'NB', 'staging': '6', 'total_grade': '3', 'cea': '3.4', 'hcv_genotype': '1', 'hcv_activity': '1', 'age': '66', 'focal_lytic_nec_apop': '1', 'batch': '1', 'sgpt': '132', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': '1', 'sgot': '83', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': '1', 'afp': '13.3', 'hcv_viral_load': '1111620'}, 'GSM1617400': {'population': 'LeX/Glast/Prominin-negative'}, 'GSM1617401': {'population': 'LeX+ Glast+ Prominin-high'}, 'GSM1617402': {'population': 'LeX+ Glast+ Prominin-low'}, 'GSM1617403': {'population': 'LeX/Glast/Prominin-negative'}, 'GSM1617404': {'population': 'LeX+ Glast+ Prominin-high'}, 'GSM1617405': {'population': 'LeX+ Glast+ Prominin-low'}, 'GSM1617406': {'population': 'LeX/Glast/Prominin-negative'}, 'GSM3301484': {'gender': 'male', 'line': 'iPSC line NC8', 'type': 'pericyte (differentiated from iPS cells)', 'protocol': 'Ctrl'}, 'GSM1162987': {'patient': 'Disease_K1', 'gender': 'M', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Culture/DMSO', 'id': '6'}, 'GSM1498305': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM2473277': {'genotype': 'YFFF'}, 'GSM1498307': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM1836620': {'expression_construct': 'FLAG-TOE1V173G', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'V173 addback- siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM2665994': {'age': 'Day 130', 'well': 'D6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2236850': {'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)', 'individual': 'Patient 19', 'type': 'plasmacytoid dendritic cells (pDCs)'}, 'GSM2236853': {'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)', 'individual': 'Patient 30', 'type': 'plasmacytoid dendritic cells (pDCs)'}, 'GSM3586452': {'origin': 'ABC', 'pfstt': '1459', 'pfscs': '0', 'region': 'North America', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1466', 'cycles': '6', 'oscs': '0'}, 'GSM2374160': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM3586450': {'origin': 'GCB', 'pfstt': '1', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1711', 'cycles': '6', 'oscs': '0'}, 'GSM2665997': {'age': 'Day 130', 'well': 'F12', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM3586456': {'origin': 'GCB', 'pfstt': '752', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1128', 'cycles': '6', 'oscs': '0'}, 'GSM3586457': {'origin': 'UNCLASSIFIED', 'pfstt': '1089', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1096', 'cycles': '6', 'oscs': '0'}, 'GSM3586454': {'origin': 'ABC', 'pfstt': '1085', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1492', 'cycles': '6', 'oscs': '0'}, 'GSM3586455': {'origin': 'ABC', 'pfstt': '514', 'pfscs': '1', 'region': 'North America', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1356', 'cycles': '6', 'oscs': '1'}, 'GSM2361580': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1948544': {'replicates': '2', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-WT-HA'}, 'GSM3586458': {'origin': 'GCB', 'pfstt': '1065', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1072', 'cycles': '6', 'oscs': '0'}, 'GSM3586459': {'origin': 'ABC', 'pfstt': '902', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1092', 'cycles': '6', 'oscs': '0'}, 'GSM2236854': {'state': 'unclassified primitive hematopoietic neoplasms (PHN)', 'individual': 'Patient 13', 'type': 'dendritic cells'}, 'GSM1948546': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-K52o-HA'}, 'GSM985103': {'line': 'HT1080', 'protocol': 'Doxycycline -/ Shield -', 'clone': 'm6A-Tracer-VP16'}, 'GSM1948547': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-K52o-HA'}, 'GSM2374161': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2455681': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455680': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455683': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455682': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455685': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455684': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455687': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455686': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455689': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2455688': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1172877': {'subtype': 'Claudin-low', 'line': 'HS578T', 'type': 'breast cancer'}, 'GSM1693014': {'with': 'SOX9 adeno-virus', 'type': 'dermal fibroblast cells (hDF)', 'stage': 'day 2 after infection'}, 'GSM1693013': {'with': 'SOX9 adeno-virus', 'type': 'dermal fibroblast cells (hDF)', 'stage': 'day 2 after infection'}, 'GSM1693012': {'with': 'SOX9 adeno-virus', 'type': 'dermal fibroblast cells (hDF)', 'stage': 'day 2 after infection'}, 'GSM2473272': {'genotype': 'rWT'}, 'GSM1693011': {'with': 'eGFP adeno-virus', 'type': 'dermal fibroblast cells (hDF)', 'stage': 'day 2 after infection'}, 'GSM1693010': {'with': 'eGFP adeno-virus', 'type': 'dermal fibroblast cells (hDF)', 'stage': 'day 2 after infection'}, 'GSM2434042': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434043': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434040': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434041': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434046': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434047': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434044': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434045': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434048': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434049': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2473273': {'genotype': 'YFFF'}, 'GSM2187245': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2187244': {'antibody': 'JARID1D (Bethyl, A301-750A, A310-624A, lot A301-750A-1, A310-624A-1)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2571040': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'SERPINE2_enhancer_KO#2', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2187246': {'antibody': 'ZMYND8/RACK7 (Bethyl, A310-739A, lot A310-739A-1)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2187241': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2571047': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'IER5_enhancer_KO#1', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2187243': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2187242': {'antibody': 'JARID1D (Bethyl, A301-750A, A310-624A, lot A301-750A-1, A310-624A-1)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2098544': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293'}, 'GSM2571048': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'IER5_enhancer_KO#2', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571049': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'IER5_enhancer_KO#2', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2187249': {'antibody': 'None', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2098540': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293-FTO_KO'}, 'GSM2098543': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293'}, 'GSM2098542': {'line': 'HEK293', 'genotype': 'Flp-in T-REx 293'}, 'GSM2185675': {'race': 'NB', 'staging': '6', 'total_grade': 'NA', 'cea': 'NA', 'hcv_genotype': '1', 'hcv_activity': '2', 'age': '60', 'focal_lytic_nec_apop': 'NA', 'batch': '1', 'sgpt': 'NA', 'Sex': 'F', 'confluent_necrosis': 'NA', 'state': 'Tumor', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': 'NA', 'ca19_9': 'NA', 'differentiation': '1', 'portal_inflammation': 'NA', 'afp': '171', 'hcv_viral_load': '95528'}, 'GSM1536673': {'age': '~ Differentiation day 45', 'disease': 'Healthy'}, 'GSM1536672': {'age': '~ Differentiation day 45', 'disease': 'Healthy'}, 'GSM1963045': {'altitude': 'high', 'tissue': 'Peripheral venous blood', 'phenotype': 'non-AMS', 'ethnicity': 'Chinese Han'}, 'GSM1536670': {'age': '~ Differentiation day 27', 'disease': 'Healthy'}, 'GSM2361586': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1536676': {'age': '~ Differentiation day 45', 'disease': 'BBS (Bardet-Biedl Syndrome)'}, 'GSM1536675': {'age': '~ Differentiation day 45', 'disease': 'BBS (Bardet-Biedl Syndrome)'}, 'GSM1536674': {'age': '~ Differentiation day 45', 'disease': 'BBS (Bardet-Biedl Syndrome)'}, 'GSM1694209': {'tissue': 'Adjacent non-tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM1694208': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM2179002': {'shrna': 'SF3B1', 'added': 'plus dox', 'name': 'BT549'}, 'GSM2179003': {'shrna': 'SF3B1', 'added': 'minus dox', 'name': 'Hs578T'}, 'GSM1694201': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2179001': {'shrna': 'SF3B1', 'added': 'plus dox', 'name': 'Hs578T'}, 'GSM2179006': {'shrna': 'SF3B1', 'added': 'minus dox', 'name': 'HCC1954'}, 'GSM2179007': {'shrna': 'SF3B1', 'added': 'minus dox', 'name': 'Cal51 CRISPR copy neutral'}, 'GSM1694205': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM1694204': {'tissue': 'Primary tumor', 'type': 'HCC', 'stage': 'III'}, 'GSM2479746': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479747': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479744': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2374167': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1964968': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964969': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2479740': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM2479741': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'newborn'}, 'GSM1964964': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964965': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964966': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964967': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964960': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964961': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964962': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964963': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2495521': {'tissue': 'heart'}, 'GSM2495522': {'tissue': 'heart'}, 'GSM2495523': {'tissue': 'heart'}, 'GSM2495524': {'tissue': 'heart'}, 'GSM2495525': {'tissue': 'heart'}, 'GSM2495526': {'tissue': 'heart'}, 'GSM2307247': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307246': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307245': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307244': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307243': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307242': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307241': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307240': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307249': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307248': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM675541': {'line': 'Raji', 'vector': 'LS*mock, expressing recombinant, HA-tagged R1810->A RPB1 (amanitin resistant)'}, 'GSM675540': {'line': 'Raji', 'vector': 'LS*mock, expressing recombinant, HA-tagged R1810->A RPB1 (amanitin resistant)'}, 'GSM2144019': {'treatment': 'EPRS shRNA 73', 'phenotype': 'Tamoxifen Resistance'}, 'GSM2144018': {'treatment': 'Empty Vector', 'phenotype': 'Tamoxifen Resistance'}, 'GSM1267840': {'subtype': 'Stau1 associated RNAs', 'line': 'HEK293', 'expressed': 'Flag-Stau1-Mutant (65KDa Isoform)'}, 'GSM3021000': {'donor': 'Donor 2', 'tissue': 'Monocyte-derived macrophages', 'condition': 'Butyrate'}, 'GSM2153138': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2443413': {'identity': 'P1', 'stage': 'post'}, 'GSM2443412': {'identity': 'P1', 'stage': 'during'}, 'GSM2443411': {'identity': 'P1', 'stage': 'before'}, 'GSM2443410': {'culture': 'co-culture', 'line': 'MRC5 and 1833', 'treatment': 'micrococcal nuclease only', 'fraction': 'exosome RNA'}, 'GSM2443417': {'culture': 'co-culture', 'line': 'MRC5 and 1833'}, 'GSM2443416': {'culture': 'co-culture', 'line': 'MRC5 and 1833'}, 'GSM2443415': {'identity': 'P2', 'stage': 'during'}, 'GSM2443414': {'identity': 'P2', 'stage': 'before'}, 'GSM3335830': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335831': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335832': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335833': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335834': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335835': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335836': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335837': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335838': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM3335839': {'source': 'fresh venous EDTA blood', 'type': 'Neutrophil granulocyte', 'group': 'treated with DNAse'}, 'GSM2348536': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1540544': {'state': 'Lyme disease', 'individual': 'patient 01-24', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540545': {'state': 'Lyme disease', 'individual': 'patient 01-25', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540546': {'state': 'Lyme disease', 'individual': 'patient 01-26', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540547': {'state': 'Lyme disease', 'individual': 'patient 01-27', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540540': {'state': 'Lyme disease', 'individual': 'patient 01-53', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540541': {'state': 'Lyme disease', 'individual': 'patient 01-54', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540542': {'state': 'Lyme disease', 'individual': 'patient 01-20', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540543': {'state': 'Lyme disease', 'individual': 'patient 01-23', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM2348530': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1540548': {'state': 'Lyme disease', 'individual': 'patient 01-28', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM1540549': {'state': 'Lyme disease', 'individual': 'patient 01-29', 'type': 'PBMC', 'time': '6 months following treatment completion (V5)'}, 'GSM2348531': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565236': {'construction': 'PLATE-Seq', 'drug': 'Dactinomycin'}, 'GSM2565237': {'construction': 'PLATE-Seq', 'drug': 'Tofacitinib citrate (CP-690550 citrate)'}, 'GSM1567914': {'weeks': '20.2'}, 'GSM2816113': {'line': 'H9'}, 'GSM1567915': {'weeks': '20.6'}, 'GSM2718940': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2816114': {'line': 'H9'}, 'GSM2816115': {'line': 'H9'}, 'GSM2816116': {'line': 'H9'}, 'GSM2233325': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2535607': {'treatment': 'ET1 DMSO'}, 'GSM2348539': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2915394': {'antibody': 'SUMO2/3 (Cedarlane M114-3)', 'type': 'MCF-7 cells'}, 'GSM2816118': {'line': 'H9'}, 'GSM2816119': {'line': 'H9'}, 'GSM2243479': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'D11', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243478': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C3', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2233323': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1965286': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965287': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1850340': {'line': 'NOMO1', 'kd': 'lentivirus scramble'}, 'GSM1850341': {'line': 'NOMO1', 'kd': 'lentivirus RET-KD'}, 'GSM2233329': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2572762': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '6', 'day': '7'}, 'GSM2572760': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '6', 'day': '1'}, 'GSM2572761': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '6', 'day': '3'}, 'GSM1965288': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1588862': {'sensitivity': 'resistant', 'type': 'melanoma', 'treatment': 'BRAFi'}, 'GSM2535781': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1268', 'samplename': '1gr_413tetr_C72', 'seqsite': 'BRI', 'sampleID': 'S13436', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1268', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C72'}, 'GSM2535780': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1267', 'samplename': '1gr_413tetr_C54', 'seqsite': 'BRI', 'sampleID': 'S13435', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1267', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C54'}, 'GSM2535783': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1270', 'samplename': '1gr_413tetr_C82', 'seqsite': 'BRI', 'sampleID': 'S13438', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1270', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C82'}, 'GSM2535782': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1269', 'samplename': '1gr_413tetr_C76', 'seqsite': 'BRI', 'sampleID': 'S13437', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1269', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C76'}, 'GSM2535785': {'status': 'HiAff_aCD3_Bulk', 'lane': '4,8', 'samplelabel': 'lib2268', 'samplename': 'HiAff_aCD3_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19596', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '1', 'stim': 'aCD3', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2268', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM2535784': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1271', 'samplename': '1gr_413tetr_C88', 'seqsite': 'BRI', 'sampleID': 'S13439', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell, damaged', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Tetramer stimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030042', 'libraryid': 'lib1271', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C88'}, 'GSM2535787': {'status': 'HiAff_Unstim_Bulk', 'lane': '4,8', 'samplelabel': 'lib2366', 'samplename': 'HiAff_Unstim_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19790', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '1', 'stim': 'Unstim', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2366', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM2535786': {'status': 'HiAff_Tmr_Bulk', 'lane': '4,8', 'samplelabel': 'lib2269', 'samplename': 'HiAff_Tmr_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19597', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '1', 'stim': 'Tmr', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2269', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM1091844': {'line': 'H1299', 'type': 'non-small cell lung carcinoma'}, 'GSM2535788': {'status': 'HiAff_Unstim_Bulk', 'lane': '4,8', 'samplelabel': 'lib2367', 'samplename': 'HiAff_Unstim_Bulk', 'seqsite': 'BRI', 'sampleID': 'S19790', 'numcellssorted': '1000', 'libraryprep': 'NexteraXT', 'tissue': 'T-cell clone BRI4.13', 'replicate': '2', 'stim': 'Unstim', 'cdnasynthesis': 'SMARTer v3', 'flowcellid': 'C3523ACXX', 'libraryid': 'lib2367', 'projectid': 'P48', 'runchemistry': 'TruSeq SBS Kit v3'}, 'GSM1091843': {'line': 'H1299', 'type': 'non-small cell lung carcinoma'}, 'GSM2047340': {'well': 'B06', 'individual': 'NA19098', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1299382': {'labexpid': '12824', 'line': 'GM12878'}, 'GSM2108578': {'stages': 'mononucleated cell nucleus'}, 'GSM2108579': {'stages': 'mononucleated cell nucleus'}, 'GSM2108576': {'stages': 'mononucleated cell nucleus'}, 'GSM2108577': {'stages': 'mononucleated cell nucleus'}, 'GSM2108574': {'stages': 'mononucleated cell nucleus'}, 'GSM2108575': {'stages': 'mononucleated cell nucleus'}, 'GSM2108572': {'stages': 'mononucleated cell nucleus'}, 'GSM2108573': {'stages': 'mononucleated cell nucleus'}, 'GSM2108570': {'stages': 'mononucleated cell nucleus'}, 'GSM2108571': {'stages': 'mononucleated cell nucleus'}, 'GSM2817728': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 300nM 24h'}, 'GSM2817729': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 30nM 24h'}, 'GSM2817724': {'type': 'PANC-1', 'treatment': 'CM03 24h'}, 'GSM2817725': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 300nM 24h'}, 'GSM2817726': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 300nM 24h'}, 'GSM2817727': {'type': 'MIA PACA-2', 'treatment': 'gemcitabine 300nM 24h'}, 'GSM2817720': {'type': 'PANC-1', 'treatment': 'CM03 6h'}, 'GSM2817721': {'type': 'PANC-1', 'treatment': 'CM03 24h'}, 'GSM2817722': {'type': 'PANC-1', 'treatment': 'CM03 24h'}, 'GSM2817723': {'type': 'PANC-1', 'treatment': 'CM03 24h'}, 'GSM2251359': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251358': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251355': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251354': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251357': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251356': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251351': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251350': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2251353': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2251352': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2153118': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153119': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153114': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153115': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153116': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153117': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153110': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153111': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153112': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153113': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2808530': {'Stage': 'T4N0M0', 'tissue': 'nontumor colon tissue', 'id': '112', 'Sex': 'male'}, 'GSM2098974': {'status': 'Uninfected', 'type': 'hff'}, 'GSM2526902': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526901': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2098977': {'status': 'T. gondii infected', 'type': 'hff'}, 'GSM2526907': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526906': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526905': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2112224': {'line': 'SNU-638', 'genotype': 'knockout of miR-221 and miR-222'}, 'GSM2526909': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526908': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2098978': {'status': 'T. gondii infected', 'type': 'hff'}, 'GSM2565208': {'construction': 'PLATE-Seq', 'drug': 'Erlotinib'}, 'GSM2784738': {'type': 'Lung squamous cell carcinoma', 'treatment': 'HCC95 overexpressing KLF5 E419Q'}, 'GSM2784739': {'type': 'Lung squamous cell carcinoma', 'treatment': 'HCC95 overexpressing KLF5 E419Q'}, 'GSM2754908': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1135', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754909': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '540', 'stimulation': 'esat', 'subjectid': '07_0259', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2471975': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2616448': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2471977': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471976': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471971': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471970': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471973': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2616449': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2471979': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471978': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2607584': {'line': 'WA26'}, 'GSM2312270': {'culture': '12', 'line': 'DCX-'}, 'GSM2312271': {'culture': '12', 'line': 'DCX-'}, 'GSM2312272': {'culture': '12', 'line': 'DCX-'}, 'GSM2312273': {'culture': '12', 'line': 'DCX-'}, 'GSM2312274': {'culture': '12', 'line': 'DCX-'}, 'GSM2312275': {'culture': '12', 'line': 'DCX-'}, 'GSM2312276': {'culture': '12', 'line': 'DCX-'}, 'GSM2312277': {'culture': '12', 'line': 'DCX-'}, 'GSM2175589': {'tag': 'C4-2 cell line'}, 'GSM2175588': {'tag': 'C4-2 cell line'}, 'GSM2175587': {'tag': 'C4-2 cell line'}, 'GSM2858880': {'line': 'ChiPSC6b', 'type': 'ES-derived oligodendrocytes'}, 'GSM2616444': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD51', 'subtype': 'Tregs'}, 'GSM2858882': {'line': 'BJ1', 'type': 'ES-derived oligodendrocytes'}, 'GSM2858883': {'line': 'BJ1', 'type': 'ES-derived oligodendrocytes'}, 'GSM2858884': {'line': 'Sigma', 'type': 'ES-derived oligodendrocytes'}, 'GSM2858885': {'line': 'Sigma', 'type': 'ES-derived oligodendrocytes'}, 'GSM2858886': {'line': 'Sigma', 'type': 'ES-derived oligodendrocytes'}, 'GSM2616445': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM1006494': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-placebo', 'subject': 'A2'}, 'GSM2565204': {'construction': 'PLATE-Seq', 'drug': 'Ceritinib (LDK378)'}, 'GSM1933859': {'status': 'androgen dependent (AD)', 'course': 'day 5', 'line': 'LNCaP', 'type': 'prostate cancer cells', 'variation': 'NANOG1 overexpression'}, 'GSM2565207': {'construction': 'PLATE-Seq', 'drug': 'Tretinoin'}, 'GSM2390690': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'fraction': 'Newly Tr RNA', 'infection': 'shEPAS_pGIPz (V2LHS_113753)'}, 'GSM2390691': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2390692': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'infection': 'shHIF1A_pGIPz (V2LHS_132150)'}, 'GSM2361738': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390694': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2390695': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'infection': 'shHIF1A_pGIPz (V2LHS_132150)'}, 'GSM1782887': {'line': 'H1', 'treatment': 'lentiviral infection with sh TCOF1', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM1782886': {'line': 'H1', 'treatment': 'lentiviral infection with sh KBTBD8', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM2390698': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 1', 'infection': 'Non Silencing_pGIPZ (RHS4346)'}, 'GSM2390699': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 1', 'infection': 'shSIN3a_pGIPZ (V3LHS_343545)'}, 'GSM2361731': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361730': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361737': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361736': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361735': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361734': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2565206': {'construction': 'PLATE-Seq', 'drug': 'Bexarotene'}, 'GSM2462676': {'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'batch': '4', 'condition': '100P/S'}, 'GSM2462674': {'batch': '3', 'astrocytes': 'y', 'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '50P/S'}, 'GSM2462675': {'batch': '3', 'astrocytes': 'y', 'culture': 'D100', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '100P/S'}, 'GSM2462672': {'batch': '3', 'astrocytes': 'y', 'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '50P/S'}, 'GSM2462673': {'batch': '3', 'astrocytes': 'y', 'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '100P/S'}, 'GSM2462670': {'batch': '2', 'astrocytes': 'y', 'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '50P/S'}, 'GSM2462671': {'batch': '2', 'astrocytes': 'y', 'culture': 'D54', 'line': 'DCX+', 'type': 'cultured embryonic stem cells', 'condition': '100P/S'}, 'GSM2172058': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172059': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2607509': {'line': 'WA26'}, 'GSM2607508': {'line': 'WA26'}, 'GSM2551349': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PostTraining'}, 'GSM2551348': {'age': 'Old', 'type': 'HIIT', 'timepoint': 'PreTraining'}, 'GSM2551347': {'age': 'Young', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2607502': {'line': 'WA26'}, 'GSM2551345': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2551344': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PreTraining'}, 'GSM2551343': {'age': 'Old', 'type': 'Combined', 'timepoint': 'PostTraining'}, 'GSM2172055': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2551341': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PostTraining'}, 'GSM2551340': {'age': 'Young', 'type': 'Resistance', 'timepoint': 'PreTraining'}, 'GSM2367778': {'with': '250nM THAL-SNS-032 for 6hrs', 'line': 'MOLT4', 'barcode': 'ATGTCA', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2367775': {'with': '250nM SNS-032 for 6hrs', 'line': 'MOLT4', 'barcode': 'CTTGTA', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2367774': {'with': '250nM SNS-032 for 6hrs', 'line': 'MOLT4', 'barcode': 'GGCTAC', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2367777': {'with': '250nM THAL-SNS-032 for 6hrs', 'line': 'MOLT4', 'barcode': 'AGTTCC', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2367776': {'with': '250nM THAL-SNS-032 for 6hrs', 'line': 'MOLT4', 'barcode': 'AGTCAA', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2367771': {'with': '250nM NVP-2 for 6 hrs', 'line': 'MOLT4', 'barcode': 'GTCCGC', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2367770': {'with': '250nM NVP-2 for 6 hrs', 'line': 'MOLT4', 'barcode': 'CCGTCC', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2367773': {'with': '250nM SNS-032 for 6hrs', 'line': 'MOLT4', 'barcode': 'TAGCTT', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM2367772': {'with': '250nM NVP-2 for 6 hrs', 'line': 'MOLT4', 'barcode': 'GTGAAA', 'type': 'T-acute lymphoblastic leukemia (T-ALL) cell line'}, 'GSM1446195': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with GFP'}, 'GSM2394534': {'id': 'IonXpress_060', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM1505589': {'tissue': 'Trachea'}, 'GSM1312743': {'line': 'HGDP01036', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'San'}, 'GSM2296625': {'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM1312741': {'line': 'HGDP00992', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'San'}, 'GSM1312740': {'line': 'HGDP00987', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'San'}, 'GSM2296620': {'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'DMSO', 'batch': '1'}, 'GSM1312746': {'line': 'HGDP00955', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Yakut'}, 'GSM2296622': {'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'DMSO', 'batch': '2'}, 'GSM1312744': {'line': 'HGDP00948', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Yakut'}, 'GSM1312749': {'line': 'HGDP00967', 'Sex': 'Female', 'type': 'Lymphoblast cells', 'population': 'Yakut'}, 'GSM1312748': {'line': 'HGDP00964', 'Sex': 'Male', 'type': 'Lymphoblast cells', 'population': 'Yakut'}, 'GSM2544068': {'library_id': 'lib8390', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544069': {'library_id': 'lib8391', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1395407': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395406': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395401': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395400': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395403': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395402': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM2544060': {'library_id': 'lib8380', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.108', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544061': {'library_id': 'lib8381', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.108', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544062': {'library_id': 'lib8382', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544063': {'library_id': 'lib8383', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544064': {'library_id': 'lib8386', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544065': {'library_id': 'lib8387', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544066': {'library_id': 'lib8388', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2544067': {'library_id': 'lib8389', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM3586515': {'origin': 'ABC', 'pfstt': '1', 'pfscs': '0', 'region': 'Eastern Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1139', 'cycles': '6', 'oscs': '0'}, 'GSM1446199': {'line': 'MCF10A', 'type': 'Non-tumorigenic immortalized breast epithelia line', 'treatment': 'infection with adenovirus with GFP'}, 'GSM2411920': {'line': '3726A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411921': {'line': '3726B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411922': {'line': '4064A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411923': {'line': '4064B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411924': {'line': '4756A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411925': {'line': '4756B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411926': {'line': '521C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411927': {'line': '521E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411928': {'line': '554A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2411929': {'line': '554D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Major/Major'}, 'GSM2081217': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': 'unstimulated', 'time': '24 hours'}, 'GSM2081216': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': 'unstimulated', 'time': '24 hours'}, 'GSM2081215': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': 'unstimulated', 'time': '24 hours'}, 'GSM2041705': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 28'}, 'GSM2041704': {'type': 'Ovation Ultralow Methylseq', 'number': 'Passage 27'}, 'GSM2081219': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': 'unstimulated', 'time': '24 hours'}, 'GSM2081218': {'cells': 'MACS sorted CD4+CD25- T cells from PBMC', 'treatment': 'unstimulated', 'time': '24 hours'}, 'GSM2041701': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 5 passages after initial sorting'}, 'GSM2041700': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 4 passages after initial sorting'}, 'GSM2041703': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 5 passages after initial sorting 16 days of culture in EpiLC media'}, 'GSM2041702': {'type': 'Ovation Ultralow Methylseq', 'number': '16 Passages as Primed cells, 13 passages during and after reversion, 4 passages after initial sorting 16 days of culture in EpiLC media'}, 'GSM2486728': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486729': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486726': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486727': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486724': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486725': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486722': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486723': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM2486720': {'tissue': 'esophageal adenocarcinoma'}, 'GSM2486721': {'tissue': 'matched non-malignant esophageal epithelial tissue'}, 'GSM1496159': {'line': 'HeLa Kyoto', 'expression': 'none', 'RNAi': 'control RNAi'}, 'GSM1496158': {'line': 'HeLa Kyoto', 'expression': 'Mus musculus Snw1-LAP', 'RNAi': 'SNW1 RNAi'}, 'GSM1496157': {'line': 'HeLa Kyoto', 'expression': 'none', 'RNAi': 'SNW1 RNAi'}, 'GSM2247790': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3-CD56+CD16+', 'tissue': 'clear cell RCC tumor', 'type': 'CD16+ natural killer (NK) cells', 'identifier': 'RCC351'}, 'GSM2225769': {'tissue': 'pancreas'}, 'GSM2394532': {'id': 'IonXpress_057', 'plate': 'C1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Aphidicolin', 'point': 'after 12h of compound treatment'}, 'GSM2048578': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2439246': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shCUX1.810', 'type': 'myeloid leukemia cell line'}, 'GSM2058044': {'line': 'V576', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2058045': {'line': 'V703', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM1006499': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-placebo', 'subject': 'A1'}, 'GSM2316732': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2274730': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32793', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9383', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C09', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9383', 'studysiteshort': 'UCSF'}, 'GSM2158107': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2274731': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32794', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9384', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C08', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9384', 'studysiteshort': 'UCSF'}, 'GSM2274736': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32801', 'c1captureannotation': 'single cell', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9391', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C44', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9391', 'studysiteshort': 'UCSF'}, 'GSM2158105': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2274737': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-8', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-31', 'trunkbarcode': '927496', 'sampleID': 'S32802', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81KDANXX', 'status': 'R', 'samplelabel': 'lib9392', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '1', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C01', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029186', 'libraryid': 'lib9392', 'studysiteshort': 'UCSF'}, 'GSM2058042': {'line': 'V481', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729)'}, 'GSM2071058': {'type': 'activated naive CD4 T cells', 'with': 'Activin A'}, 'GSM1006498': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-placebo', 'subject': 'A6'}, 'GSM2071056': {'type': 'activated naive CD4 T cells', 'with': 'TGFb'}, 'GSM2071057': {'type': 'activated naive CD4 T cells', 'with': 'TGFb+IL12'}, 'GSM2071054': {'type': 'activated naive CD4 T cells', 'with': 'beads only'}, 'GSM2071055': {'type': 'activated naive CD4 T cells', 'with': 'IL12'}, 'GSM2071052': {'type': 'activated naive CD4 T cells', 'with': 'Activin A'}, 'GSM2071053': {'type': 'activated naive CD4 T cells', 'with': 'Activin A+IL12'}, 'GSM2071050': {'type': 'activated naive CD4 T cells', 'with': 'TGFb'}, 'GSM2071051': {'type': 'activated naive CD4 T cells', 'with': 'TGFb+IL12'}, 'GSM2357093': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 5', 'point': '12h'}, 'GSM2357092': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 5', 'point': '12h'}, 'GSM2357091': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2357090': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '12h'}, 'GSM2357097': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 5', 'point': '18h'}, 'GSM2357096': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 5', 'point': '18h'}, 'GSM2357095': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2357094': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2357099': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM2357098': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '03h'}, 'GSM1647962': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647966': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647964': {'gender': 'Male', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM2251338': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2125143': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': '10 nM Estradiol', 'time': '45 minutes'}, 'GSM2125141': {'status': 'ER+/PR+', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# F0515)', 'type': 'ER+/PR+ MCF7 cell models', 'treatment': 'Vehicle', 'time': '45 minutes'}, 'GSM2746533': {'line': 'SW480', 'type': 'Human Colon Cancer Cell Line'}, 'GSM2511592': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2652070': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + SB431542 + AG1478'}, 'GSM1704539': {'protocol': '6 h infection', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 4', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2754724': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0282', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754725': {'bin': '5', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0197', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754726': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0886', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2652072': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + SB431542 + AG1478'}, 'GSM2754720': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '04_0030', 'previousdiagnosisoftb': 'No', 'tst': '15', 'type': 'Tcells'}, 'GSM2754721': {'bin': '5', 'group': 'case', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '04_0030', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754722': {'bin': '8', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '09_0460', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754723': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0282', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM1174029': {'status': 'healthy', 'gender': 'male', 'type': 'blood leukocytes', 'number': 'HC1'}, 'GSM2511596': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2842522': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2842523': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- CD127-', 'subtype': 'IL7Rlow_TEMRA'}, 'GSM2754728': {'bin': '5', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'male', 'age': '17', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0197', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754729': {'bin': '5', 'group': 'Not a PP case', 'qft': 'NA', 'gender': 'male', 'age': '17', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0197', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2842526': {'type': 'PBMC', 'visit': 'Visit 2', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-CD127high', 'subtype': 'IL7Rhigh_TEMRA'}, 'GSM2543648': {'library_id': 'lib5769', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1635091': {'status': 'exposed to 8-bromo-cAMP', 'barcode': 'AGTTCC', 'type': 'Choriocarcinoma trophoblast', 'treatment': 'control'}, 'GSM1383771': {'donor': 'A2775', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM2511598': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511599': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM1635095': {'status': 'exposed to 8-bromo-cAMP', 'barcode': 'TGACCA', 'type': 'Choriocarcinoma trophoblast', 'treatment': 'OVOL1 shRNA'}, 'GSM1958516': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM1635094': {'status': 'exposed to 8-bromo-cAMP', 'barcode': 'ATGTCA', 'type': 'Choriocarcinoma trophoblast', 'treatment': 'OVOL1 shRNA'}, 'GSM1383772': {'donor': 'A2824', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM1704536': {'protocol': 'Interferon treatment', 'analysis': 'ribosome profiling', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 3', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1714402': {'feed': '100 µM, 1 hr', 'reagent': 'MTS-biotin', 'line': 'HEK 293T', 'type': 'biochemically enriched small RNA'}, 'GSM1536179': {'type': 'H7 hESC cell line', 'point': '20 days'}, 'GSM1274551': {'line': 'MCF10A'}, 'GSM1274550': {'line': 'MCF10A'}, 'GSM907569': {'gender': 'F', 'age': '60', 'histologics': 'Mixed', 'Stage': 'IV'}, 'GSM907568': {'gender': 'M', 'age': '56', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907567': {'gender': 'M', 'age': '37', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907566': {'gender': 'M', 'age': '69', 'histologics': 'Diffuse', 'Stage': 'II'}, 'GSM907565': {'gender': 'M', 'age': '69', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907564': {'gender': 'M', 'age': '61', 'histologics': 'Intestine', 'Stage': 'I'}, 'GSM907563': {'gender': 'F', 'age': '67', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907562': {'gender': 'M', 'age': '76', 'histologics': 'Diffuse', 'Stage': 'I'}, 'GSM907561': {'gender': 'F', 'age': '70', 'histologics': 'Diffuse', 'Stage': 'II'}, 'GSM907560': {'gender': 'M', 'age': '63', 'histologics': 'Intestine', 'Stage': 'III'}, 'GSM2072163': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROlow'}, 'GSM2871627': {'tissue': 'Femur', 'stage': '17 wks'}, 'GSM1958515': {'type': 'Calvarial osteoblast', 'Sex': 'M'}, 'GSM2172064': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2072162': {'status': 'HIV+', 'tissue': 'Lymph Node', 'phenotype': 'CD27highCD45ROlow'}, 'GSM2871629': {'tissue': 'Anterior/Posterior Cruciate Ligament', 'stage': '17 wks'}, 'GSM925770': {'transfection': 'Scramble siRNA', 'tissue': 'lung fibroblasts'}, 'GSM2730059': {'with': 'Control siRNA', 'line': 'H460', 'type': 'Non-small cell lung cancer cell line (NSCLC)'}, 'GSM2072160': {'status': 'HIV-', 'tissue': 'Tonsil', 'phenotype': 'CD27highCD45ROlow'}, 'GSM2405942': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'control'}, 'GSM2714265': {'line': 'MCF-7 MYC-GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714264': {'line': 'MCF-7 MYC-GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714261': {'line': 'MCF-7 MYC-GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714260': {'line': 'MCF-7 MYC-GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714263': {'line': 'MCF-7 MYC-GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2714262': {'line': 'MCF-7 MYC-GFP', 'type': 'Breast carcinoma', 'passage': '1'}, 'GSM2275160': {'area_under_the_curve': '0.297227656', 'siteandparticipantcode': '678610', 'baseline_area_under_the_curve': '0.704254219', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '42.2045972', 'auc_percent_of_baseline': '42.2045972', 'trunkbarcode': '948845', 'sampleID': 'S13170', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1578', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_678610', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib1578', 'studysiteshort': 'YALE'}, 'GSM2275161': {'area_under_the_curve': '0.383442813', 'siteandparticipantcode': '266365', 'baseline_area_under_the_curve': '0.596472344', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '64.28509495', 'auc_percent_of_baseline': '64.28509495', 'trunkbarcode': '951459', 'sampleID': 'S13171', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1579', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '7', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_266365', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib1579', 'studysiteshort': 'YALE'}, 'GSM2275162': {'area_under_the_curve': '0.474105781', 'siteandparticipantcode': '283344', 'baseline_area_under_the_curve': '0.548115313', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '86.49745235', 'auc_percent_of_baseline': '86.49745235', 'trunkbarcode': '951717', 'sampleID': 'S13172', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1580', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_283344', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib1580', 'studysiteshort': 'YALE'}, 'GSM2275163': {'area_under_the_curve': '1.2520075', 'siteandparticipantcode': '738493', 'baseline_area_under_the_curve': '1.079318594', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '115.9998083', 'auc_percent_of_baseline': '115.9998083', 'trunkbarcode': '952682', 'sampleID': 'S13173', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1581', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_738493', 'gender': 'Female', 'age': '11', 'race': 'White; White', 'libraryid': 'lib1581', 'studysiteshort': 'YALE'}, 'GSM2275164': {'area_under_the_curve': '0', 'siteandparticipantcode': '166103', 'baseline_area_under_the_curve': '0.591300469', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '0', 'auc_percent_of_baseline': '0', 'trunkbarcode': '952037', 'sampleID': 'S13174', 'flowcellid': 'D1G9TACXX', 'status': 'C', 'samplelabel': 'lib1582', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '6', 'treatmentgroup': 'Control', 'name': 'AbATE_166103', 'gender': 'Female', 'age': '9', 'race': 'White', 'libraryid': 'lib1582', 'studysiteshort': 'YALE'}, 'GSM2275165': {'area_under_the_curve': '0.380753438', 'siteandparticipantcode': '921524', 'baseline_area_under_the_curve': '0.95286625', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '39.95874946', 'auc_percent_of_baseline': '39.95874946', 'trunkbarcode': '952849', 'sampleID': 'S13175', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1583', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_921524', 'gender': 'Female', 'age': '17', 'race': 'White', 'libraryid': 'lib1583', 'studysiteshort': 'YALE'}, 'GSM2275166': {'area_under_the_curve': '0.416077344', 'siteandparticipantcode': '788532', 'baseline_area_under_the_curve': '1.4986025', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '27.76435671', 'auc_percent_of_baseline': '27.76435671', 'trunkbarcode': '952850', 'sampleID': 'S13176', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1584', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_788532', 'gender': 'Male', 'age': '12', 'race': 'White', 'libraryid': 'lib1584', 'studysiteshort': 'YALE'}, 'GSM2275167': {'area_under_the_curve': '0.175895469', 'siteandparticipantcode': '229085', 'baseline_area_under_the_curve': '1.054079844', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '16.68711054', 'auc_percent_of_baseline': '16.68711054', 'trunkbarcode': '947590', 'sampleID': 'S13177', 'flowcellid': 'D1G9TACXX', 'status': 'NR', 'samplelabel': 'lib1585', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_229085', 'gender': 'Male', 'age': '15', 'race': 'White', 'libraryid': 'lib1585', 'studysiteshort': 'YALE'}, 'GSM2071870': {'type': 'breast cancer'}, 'GSM2071871': {'type': 'breast cancer'}, 'GSM2071872': {'type': 'breast cancer'}, 'GSM1936783': {'line': 'H1975 (parental)', 'type': 'Lung adenocarcinoma'}, 'GSM1936787': {'line': 'H1975 erlotinib-resistant H1975 cells (strain M2)', 'type': 'Lung adenocarcinoma'}, 'GSM1936786': {'line': 'H1975 erlotinib-resistant H1975 cells (strain M1)', 'type': 'Lung adenocarcinoma'}, 'GSM1936785': {'line': 'H1975 erlotinib-resistant H1975 cells (strain M1)', 'type': 'Lung adenocarcinoma'}, 'GSM1936784': {'line': 'H1975 (parental)', 'type': 'Lung adenocarcinoma'}, 'GSM1936789': {'line': 'H1975 (parental)', 'type': 'Lung adenocarcinoma'}, 'GSM1936788': {'line': 'H1975 erlotinib-resistant H1975 cells (strain M2)', 'type': 'Lung adenocarcinoma'}, 'GSM2439243': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shCUX1.810', 'type': 'myeloid leukemia cell line'}, 'GSM2265658': {'antibody': 'RNA pol II (CST, 14958)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM1924959': {'line': 'HPV31-positive, CIN612-9E cells', 'treatment': 'dox to induce IFN-kappa expression'}, 'GSM1924958': {'line': 'HPV31-positive, CIN612-9E cells', 'treatment': 'control'}, 'GSM2265653': {'antibody': 'SUZ12 (CST, 3737)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265652': {'antibody': 'SUZ12 (CST, 3737)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265651': {'antibody': 'H3.3 (Millipore, 09-838)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265650': {'antibody': 'H3K27ac (CST, 8173)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265657': {'antibody': 'Homemade (ref PMID: 25170156)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265656': {'antibody': 'Homemade (ref PMID: 25170156)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265655': {'antibody': 'EZH2 (CST, 5246)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2265654': {'antibody': 'EZH2 (CST, 5246)', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)'}, 'GSM2262388': {'time': 'NA', 'population': 'Definitive endoderm iPSC'}, 'GSM2262389': {'time': 'NA', 'population': 'Definitive endoderm iPSC'}, 'GSM2262380': {'time': 'NA', 'population': 'Baseline iPSC'}, 'GSM2262381': {'time': 'NA', 'population': 'Baseline iPSC'}, 'GSM2262382': {'time': 'NA', 'population': 'HUVEC'}, 'GSM2262383': {'time': 'NA', 'population': 'HUVEC'}, 'GSM2262384': {'time': 'NA', 'population': 'HUVEC'}, 'GSM2262385': {'time': 'NA', 'population': 'MSC'}, 'GSM2262386': {'time': 'NA', 'population': 'MSC'}, 'GSM2262387': {'time': 'NA', 'population': 'MSC'}, 'GSM2278026': {'line': 'MDA-MB-231', 'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278027': {'line': 'MDA-MB-231', 'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278024': {'line': 'MDA-MB-231', 'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278025': {'line': 'MDA-MB-231', 'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'treatment': 'Nontargeting siRNA'}, 'GSM2278022': {'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'line': 'HCC1143', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2278023': {'type': 'HCC1143 (Human TNM stage IIA, grade 3, primary ductal carcinoma)', 'line': 'HCC1143', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2278020': {'type': 'MDA-MB-468 (Human adenocarcinoma)', 'line': 'MDA-MB-468', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2278021': {'type': 'MDA-MB-468 (Human adenocarcinoma)', 'line': 'MDA-MB-468', 'antibody': 'none (input)', 'treatment': 'ethanol'}, 'GSM2278028': {'line': 'MDA-MB-231', 'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2278029': {'line': 'MDA-MB-231', 'type': 'MDA-MB-231 (Human Adenocarcinoma)', 'treatment': 'STAT3 pooled siRNA'}, 'GSM2125492': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'none (untransfected)'}, 'GSM2125493': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'none (untransfected)'}, 'GSM1479472': {'index': '6', 'diagnosis': '--', 'cellcount': '31250000', 'gender': 'F', 'age': '39', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '49', 'collectiondate': 'July 5 2012', 'samplename': '49_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Sepsis'}, 'GSM1410581': {'gene': 'Mock', 'type': 'U937', 'infection': '0h'}, 'GSM2125498': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'INTS12_D-siRNA_A'}, 'GSM2125499': {'point': '48h since the initiation of knockdown', 'type': 'Human bronchial epithelial cells HBECs', 'passage': '3', 'source': 'Lonza', 'donor': '195307', 'with': 'INTS12_D-siRNA_A'}, 'GSM1383770': {'donor': 'A2737', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'EX00000246', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM1716868': {'line': 'MDA-MB-231'}, 'GSM1716869': {'line': 'MDA-MB-231'}, 'GSM2406939': {'line': 'A549', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406938': {'line': 'A549', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406937': {'line': 'A549', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406936': {'line': 'A549', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406935': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM2406934': {'line': 'Panc1', 'type': 'SV40 large T antigen immortalized'}, 'GSM1716866': {'line': 'MDA-MB-231'}, 'GSM1716867': {'line': 'MDA-MB-231'}, 'GSM1716864': {'line': 'MDA-MB-231'}, 'GSM1716865': {'line': 'MDA-MB-231'}, 'GSM1383773': {'donor': 'A2735', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM2204208': {'status': 'ex vivo; unstimulated', 'type': 'LN_nGC', 'phenotype': 'nonGCTfh(CD3+CD20-CD14/CD11c-CD8-CD27+CD45RO+PD1+CD57-)'}, 'GSM2361904': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1383774': {'donor': 'A2736', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM2745929': {'status': 'Healthy control', 'race': 'CAUC', 'totalnumreads': '108,220,464', 'totalnummappedreads': '86,866,002', 'age': '6.33556', 'percentexonicmapping': '26.703037', 'Sex': 'Female', 'rin': '6.9', 'tissue': 'Postmortem brain, dorsolateral prefrontal cortex (DLPFC)', 'ph': '6.9', 'brainid': '1873'}, 'GSM1383775': {'donor': 'A2737', 'type': 'Primary CD14+/CD16+ monocytes', 'agent': 'Media', 'timepoint': '6hr', 'treatment': 'unstimulated'}, 'GSM1963909': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963908': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1331665': {'line': 'bronchial epithelial BEAS2B cells', 'passages': '15-18', 'type': 'epithelial (virus transformed)', 'variation': 'control', 'tissue': 'lung/bronchus'}, 'GSM1704839': {'origin': 'iPSC13L', 'type': 'FACS sorted CD (45+/34+/33+)', 'description': 'myeloid progenitors-differentiated from iPSC'}, 'GSM1963903': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963902': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963901': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963900': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963907': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC07'}, 'GSM1963906': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963905': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1963904': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'metastatic breast cancer', 'id': 'BC03LN'}, 'GSM1334203': {'type': 'CD3+ CD4+ CD45RO- CD45RA+ CD62L+ T cells', 'disease': 'asthmatic'}, 'GSM1859138': {'type': 'Epidermal keratinocytes', 'passage': '2'}, 'GSM1859139': {'type': 'Epidermal keratinocytes', 'passage': '2'}, 'GSM2141319': {'individual': 'EU14', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1508029': {'line': 'H3 ES cells', 'treatment': 'siRNA knockdown by nucleofection + 72 hrs in neural culture media + Retinoic Acid', 'construct': 'GFP under 9kb murine Mnx1 promoter'}, 'GSM1508028': {'line': 'H3 ES cells', 'treatment': 'siRNA knockdown by nucleofection + 72 hrs in neural culture media + Retinoic Acid', 'construct': 'GFP under 9kb murine Mnx1 promoter'}, 'GSM1508023': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508022': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508021': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508020': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508027': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508026': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508025': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM1508024': {'line': 'HeLa F-17', 'treatment': 'siRNA knockdown by nucleofection + 48hours growth', 'construct': 'murine FLAG-Bmi1 overexpression'}, 'GSM2218649': {'with': 'NO UV (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2361907': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1921471': {'group': 'low', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1921470': {'group': 'low', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1921473': {'group': 'low', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1921472': {'group': 'low', 'type': 'Non-small cell lung cancer (NSCLC)'}, 'GSM1432461': {'protocol': 'differentiated with calcium chloride for 5 days with recombinant human IL-4', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM2218644': {'with': '+UV in DRB (Recovery time=30min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM1432463': {'protocol': 'transfected with control siRNA, differentiated with calcium chloride for 2 days and then stimulated with recombinant human IL-4 for 24 hours', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432462': {'protocol': 'transfected with control siRNA, differentiated with calcium chloride for 2 days and then stimulated with recombinant human IL-4 for 24 hours', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432465': {'protocol': 'transfected with STAT6 siRNA, differentiated with calcium chloride for 2 days and then stimulated with recombinant human IL-4 for 24 hours', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM1432464': {'protocol': 'transfected with STAT6 siRNA, differentiated with calcium chloride for 2 days and then stimulated with recombinant human IL-4 for 24 hours', 'type': 'n-tert keratinocytes', 'passage': '15-30'}, 'GSM2218645': {'with': 'NO UV NO DRB (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2218646': {'with': 'NO UV (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2361900': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2696574': {'status': '2+', 'grade': '2', 'age': '70', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '3.5'}, 'GSM2141312': {'individual': 'AF79', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2696575': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2141315': {'individual': 'EU06', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896238': {'individual': 'EU66', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141314': {'individual': 'EU06', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2856802': {'type': 'Asthma human bronchial epithelium', 'treatment': 'Poly I:C'}, 'GSM1980213': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2218642': {'with': 'NO UV in DRB (Recovery time=30min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2696570': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Normal Breast', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2218643': {'with': '+UV in DRB (Recovery time=10min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2361901': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2696571': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2348448': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348449': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348444': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348445': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348446': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348447': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOF', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348440': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348441': {'samhd1': 'knockout', 'media': 'standard media with LPS', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348442': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348443': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2492136': {'type': 'Small Airway Epithelial Cells', 'agent': 'puromycin', 'variation': 'GFP'}, 'GSM1556292': {'line': 'CRL-2847', 'type': 'chondrocytes (ATCC: CRL-2847) grown in culture'}, 'GSM1556291': {'line': 'CRL-2854', 'type': 'myofibrobalsts (ATCC: CRL-2854) grown in culture'}, 'GSM1556290': {'line': 'CRL-2854', 'type': 'myofibrobalsts (ATCC: CRL-2854) grown in culture'}, 'GSM2492132': {'type': 'Small Airway Epithelial Cells', 'agent': 'puromycin', 'variation': 'KRAS G12V'}, 'GSM2492133': {'type': 'Small Airway Epithelial Cells', 'agent': 'blasticidin', 'variation': 'GFP'}, 'GSM2492130': {'type': 'Small Airway Epithelial Cells', 'agent': 'puromycin', 'variation': 'KRAS G12V'}, 'GSM2492131': {'type': 'Small Airway Epithelial Cells', 'agent': 'puromycin', 'variation': 'KRAS G12V'}, 'GSM1556299': {'line': 'CRL-4003', 'type': 'in vitro decidualized endometrial stromal fibroblast (ATCC: CRL-4003) grown in culture'}, 'GSM1556298': {'line': 'CRL-4003', 'type': 'in vitro decidualized endometrial stromal fibroblast (ATCC: CRL-4003) grown in culture'}, 'GSM2361902': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2307162': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307163': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307160': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307161': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307166': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307167': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307164': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307165': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2696578': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2307168': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307169': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2856800': {'type': 'Asthma human bronchial epithelium', 'treatment': 'Calcitriol'}, 'GSM2696579': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Normal Breast', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2361903': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2535842': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4249', 'samplename': '1_T1D_CD154+_C32', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25488', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4249', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C32'}, 'GSM2535843': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4250', 'samplename': '1_T1D_CD154+_C38', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25489', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4250', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C38'}, 'GSM2535840': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4244', 'samplename': '1_T1D_CD154+_C15', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25483', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4244', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C15'}, 'GSM2535841': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4248', 'samplename': '1_T1D_CD154+_C20', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25487', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4248', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C20'}, 'GSM2535846': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4260', 'samplename': '1_T1D_CD154+_C93', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25499', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4260', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C93'}, 'GSM2535847': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4262', 'samplename': '1_T1D_CD154+_C68', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25501', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4262', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C68'}, 'GSM2535844': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4256', 'samplename': '1_T1D_CD154+_C55', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25495', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4256', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C55'}, 'GSM2535845': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4258', 'samplename': '1_T1D_CD154+_C75', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25497', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4258', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C75'}, 'GSM2535848': {'status': 'T1D', 'lane': '6,7', 'seqsite': 'BRI', 'samplelabel': 'lib4267', 'samplename': '1_T1D_CD154+_C57', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25506', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4267', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C57'}, 'GSM2535849': {'status': 'T1D', 'lane': '7,6', 'seqsite': 'BRI', 'samplelabel': 'lib4268', 'samplename': '1_T1D_CD154+_C63', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S25507', 'numcellssorted': '8900', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '1', 'flowcellid': 'C4Y0CACXX', 'c1plateid': '1771023185', 'libraryid': 'lib4268', 'projectid': 'P91-3', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C63'}, 'GSM2808449': {'region': 'whole retina'}, 'GSM2808448': {'region': 'whole retina'}, 'GSM2143920': {'type': 'bladder cancer cells', 'overexpression': 'none'}, 'GSM2481416': {'tissue': 'Decidua', 'number': '2', 'infection': '1dpi'}, 'GSM2035768': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035769': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035764': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035765': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035766': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035767': {'line': 'NHEK', 'treatment': 'NA'}, 'GSM2035760': {'line': 'HACAT', 'treatment': 'Entinostat'}, 'GSM2035761': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035762': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2035763': {'line': 'HACAT', 'treatment': 'NA'}, 'GSM2856807': {'type': 'BEAS-2B immortalized human bronchial epithelium', 'treatment': 'Sham (culture media)'}, 'GSM2468921': {'with': '500 nM BI00923802', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468922': {'with': '500 nM BI00923802', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468923': {'with': '500 nM BI00923802', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468924': {'with': '500 nM BI00923802', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468925': {'with': '500 nM BI00923802', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468926': {'with': '500 nM BI00923802', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468927': {'with': '500 nM BI00923812', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468928': {'with': '500 nM BI00923812', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2468929': {'with': '500 nM BI00923812', 'line': 'Farage', 'type': 'lymphoma cell line'}, 'GSM2856804': {'type': 'BEAS-2B immortalized human bronchial epithelium', 'treatment': 'Calcitriol'}, 'GSM2192683': {'type': 'Human mammary epithelial cells'}, 'GSM2192682': {'type': 'Human mammary epithelial cells'}, 'GSM2192681': {'type': 'Human mammary epithelial cells'}, 'GSM2192680': {'type': 'Human mammary epithelial cells'}, 'GSM2192687': {'type': 'Human mammary epithelial cells'}, 'GSM2192686': {'type': 'Human mammary epithelial cells'}, 'GSM2192685': {'type': 'Human mammary epithelial cells'}, 'GSM2192684': {'type': 'Human mammary epithelial cells'}, 'GSM2192689': {'type': 'Human mammary epithelial cells'}, 'GSM2192688': {'type': 'Human mammary epithelial cells'}, 'GSM2856805': {'type': 'BEAS-2B immortalized human bronchial epithelium', 'treatment': 'Calcitriol + Poly I:C'}, 'GSM978785': {'type': 'embryonic stem cells', 'line': 'H9', 'expression': 'XIST-', 'passage': 'p27'}, 'GSM978784': {'type': 'embryonic stem cells', 'line': 'H9', 'expression': 'XIST+', 'passage': 'p27'}, 'GSM2388877': {'line': 'NoDice 293T'}, 'GSM2194685': {'type': 'duct', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194684': {'type': 'mesenchyme', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194687': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1955754': {'a': '62529', 'cd38': '45', 'cd49f': '1339', 'w': '67493', 'h': '60716', 'lin': '-117', 'cd34': '9346', 'cd90': '5026', 'cd7': '451', 'cd10': '893', 'time': '13061', 'cd135': '2328', 'cd45ra': '293'}, 'GSM2194681': {'type': 'mesenchyme', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194680': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194683': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194682': {'type': 'mesenchyme', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194689': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194688': {'type': 'dropped', 'age': 'child', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM1955759': {'a': '49043', 'cd38': '918', 'cd49f': '511', 'w': '66233', 'h': '48527', 'lin': '482', 'cd34': '3936', 'cd90': '450', 'cd7': '-339', 'cd10': '1087', 'time': '14084', 'cd135': '2490', 'cd45ra': '233'}, 'GSM1955758': {'a': '51095', 'cd38': '841', 'cd49f': '4', 'w': '65999', 'h': '50736', 'lin': '496', 'cd34': '4039', 'cd90': '-128', 'cd7': '-32', 'cd10': '728', 'time': '13881', 'cd135': '910', 'cd45ra': '157'}, 'GSM2093557': {'status': 'Clone 2-1 with plasmid backbone only', 'state': 'acute lymphoblastic leukemia', 'line': 'REH'}, 'GSM2093556': {'status': 'Clone 2-1 stably expressing His-tagged ETV6', 'state': 'acute lymphoblastic leukemia', 'line': 'REH'}, 'GSM2093555': {'status': 'Clone 2-1 stably expressing DNA-binding deficient His-tagged ETV6', 'state': 'acute lymphoblastic leukemia', 'line': 'REH'}, 'GSM2093554': {'status': 'Clone 2-11 with plasmid backbone only', 'state': 'acute lymphoblastic leukemia', 'line': 'REH'}, 'GSM2093553': {'status': 'Clone 2-11 stably expressing His-tagged ETV6', 'state': 'acute lymphoblastic leukemia', 'line': 'REH'}, 'GSM2093552': {'status': 'Clone 2-11 stably expressing DNA-binding deficient His-tagged ETV6', 'state': 'acute lymphoblastic leukemia', 'line': 'REH'}, 'GSM2093551': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2093550': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM2093558': {'status': 'Wild type (ETV6 -/-)', 'state': 'acute lymphoblastic leukemia', 'line': 'REH'}, 'GSM2122554': {'line': 'HTR-8/SVneo', 'transfection': 'siControl', 'variation': 'control', 'time': '48h after transfection'}, 'GSM2122555': {'line': 'HTR-8/SVneo', 'transfection': 'siControl', 'variation': 'control', 'time': '48h after transfection'}, 'GSM2122556': {'line': 'HTR-8/SVneo', 'transfection': 'siControl', 'variation': 'control', 'time': '48h after transfection'}, 'GSM2122557': {'line': 'HTR-8/SVneo', 'transfection': 'siControl', 'variation': 'control', 'time': '48h after transfection'}, 'GSM2898859': {'line': 'NA18522', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898858': {'line': 'NA18520', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898857': {'line': 'NA18519', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898856': {'line': 'NA18511', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898855': {'line': 'NA18505', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898854': {'line': 'NA18504', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898853': {'line': 'NA18502', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898852': {'line': 'NA18501', 'tissue': 'Lymphoblastoid Cell Line'}, 'GSM2898851': {'line': 'NA19160', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2898850': {'line': 'NA19128', 'tissue': 'Induced pluripotent stem cell derived cardiomyocyte'}, 'GSM2443596': {'subset': 'Derm CD8+CD103-', 'donor': 'Subject 2'}, 'GSM2443597': {'subset': 'Derm CD8+CD103+', 'donor': 'Subject 2'}, 'GSM2443594': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 1'}, 'GSM2443595': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 1'}, 'GSM2443592': {'subset': 'Derm CD8+CD103-', 'donor': 'Subject 1'}, 'GSM2443593': {'subset': 'Derm CD8+CD103+', 'donor': 'Subject 1'}, 'GSM565961': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'PFKFB3 inhibitor'}, 'GSM565960': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'HAS1 inhibitor'}, 'GSM2348583': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2443598': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 2'}, 'GSM2443599': {'subset': 'Blood CD8+CLA- TEM', 'donor': 'Subject 2'}, 'GSM3195638': {'status': 'day 0', 'line': 'HUES8', 'Sex': 'male', 'passage': 'p22'}, 'GSM1348551': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM2565285': {'construction': 'PLATE-Seq', 'drug': 'RAF265'}, 'GSM1348552': {'line': 'MCF7', 'passages': '20-30', 'type': 'Human breast adenocarcinoma'}, 'GSM2492292': {'line': '293FT'}, 'GSM2565287': {'construction': 'PLATE-Seq', 'drug': 'Talazoparib (BMN673)'}, 'GSM2565286': {'construction': 'PLATE-Seq', 'drug': 'Satraplatin (JM216)'}, 'GSM1040788': {'line': 'HeLa', 'treatment': 'U1C knockdown'}, 'GSM2565281': {'construction': 'PLATE-Seq', 'drug': 'NSC 663284'}, 'GSM2492296': {'line': '293FT'}, 'GSM2565283': {'construction': 'PLATE-Seq', 'drug': 'OTX015'}, 'GSM2565282': {'construction': 'PLATE-Seq', 'drug': '10-DEBC hydrochloride'}, 'GSM1545055': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Distal'}, 'GSM1354552': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': 'control', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354553': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': 'control', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM2092600': {'line': 'Normal Human Epidermal Keratinocytes', 'time': 'treatment lasted 24 hours', 'treatment': '1.75uM LL-37', 'passage': '6'}, 'GSM1354555': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'Ad', 'subtype': 'Adenocarcinoma', 'treatment': '10 nM E2', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM2092602': {'line': 'Normal Human Epidermal Keratinocytes', 'time': 'treatment lasted 24 hours', 'treatment': '1.75uM LL-37 and 0.1ug/ml Poly(I:C)', 'passage': '6'}, 'GSM2303488': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCR015A'}, 'GSM2362585': {'line': 'HEK293'}, 'GSM2362584': {'line': 'HEK293'}, 'GSM2362587': {'line': 'HEK293'}, 'GSM2362586': {'line': 'HEK293'}, 'GSM2362581': {'line': 'HEK293'}, 'GSM2362580': {'line': 'HEK293'}, 'GSM2362583': {'line': 'HEK293'}, 'GSM2362582': {'line': 'HEK293'}, 'GSM2287405': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM1545051': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Distal'}, 'GSM1545050': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Distal'}, 'GSM2610848': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2742760': {'type': 'immortalized human keratinocytes', 'treatment': '5 repetitve, recovery'}, 'GSM1545052': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Proximal'}, 'GSM2610846': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2420319': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2610847': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2420317': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420316': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420313': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2303483': {'race': 'Hispanic', 'age': '51', 'bmi': '35.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCR015A'}, 'GSM2420311': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420310': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2644289': {'replication': 'biological replicate 1', 'type': 'fibroblast', 'treatment': 'mock'}, 'GSM2644288': {'replication': 'biological replicate 2', 'type': 'fibroblast', 'treatment': 'HCMV-infected'}, 'GSM2610845': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610842': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2434057': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2644285': {'replication': 'biological replicate 1', 'type': 'epithelial', 'treatment': 'mock'}, 'GSM2644287': {'replication': 'biological replicate 1', 'type': 'fibroblast', 'treatment': 'HCMV-infected'}, 'GSM2644286': {'replication': 'biological replicate 2', 'type': 'fibroblast', 'treatment': 'mock'}, 'GSM2029376': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/- (Null)'}, 'GSM2527978': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2029374': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/+ (Het)'}, 'GSM2029375': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 -/+ (Het)'}, 'GSM2029372': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM2610840': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2029370': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM2029371': {'line': 'H9', 'type': 'embryonic stem cell (ESC)', 'variation': 'EZH2 +/+ (WT)'}, 'GSM2527971': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527970': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527973': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527972': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527975': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527974': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527977': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2527976': {'type': 'Patient-derived induced pluripotent stem cells'}, 'GSM2931171': {'concentration': '0.1 percent', 'passages': '<25', 'line': 'HepG2', 'treatment': 'DMSO'}, 'GSM2671003': {'line': 'HCT116', 'genotype': 'wildtype'}, 'GSM2671002': {'line': 'HCT116', 'genotype': 'wildtype'}, 'GSM2671001': {'line': 'HCT116', 'genotype': 'wildtype'}, 'GSM2081259': {'type': 'iPS derived endothelial cells from CD', 'condition': '2D culture on tissue culture polystyrene, day0', 'passage': '3'}, 'GSM2671006': {'line': 'HCT116', 'genotype': 'Cdk7as mutant'}, 'GSM2671005': {'line': 'HCT116', 'genotype': 'Cdk7as mutant'}, 'GSM2671004': {'line': 'HCT116', 'genotype': 'Cdk7as mutant'}, 'GSM1947380': {'line': 'HeLa'}, 'GSM2355705': {'line': 'H9'}, 'GSM2355704': {'line': 'H9'}, 'GSM2355701': {'line': 'H9'}, 'GSM2355700': {'line': 'H9'}, 'GSM2355703': {'line': 'H9'}, 'GSM2355702': {'line': 'H9'}, 'GSM2044759': {'line': 'MCF7', 'shRNA': 'shTRIM24', 'variation': 'wild type rescue'}, 'GSM2044758': {'line': 'MCF7', 'shRNA': 'shTRIM24', 'variation': 'wild type rescue'}, 'GSM1364044': {'type': 'induced pluripotent stem cells 451F3 subclone 5'}, 'GSM3586678': {'origin': 'UNCLASSIFIED', 'pfstt': '1050', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1056', 'cycles': '6', 'oscs': '0'}, 'GSM2649738': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649739': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 21'}, 'GSM2649730': {'tumor': 'NORMAL', 'barcode': 'BC12', 'Sex': 'female'}, 'GSM2649731': {'tumor': 'TUMOR', 'barcode': 'BC12', 'Sex': 'female'}, 'GSM1113399': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 10 post-vaccine'}, 'GSM1113398': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 9 post-vaccine'}, 'GSM1113391': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 2 post-vaccine'}, 'GSM1113390': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 1 post-vaccine'}, 'GSM1113393': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 4 post-vaccine'}, 'GSM1113392': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 3 post-vaccine'}, 'GSM1113395': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 6 post-vaccine'}, 'GSM1113394': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 5 post-vaccine'}, 'GSM1113397': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 8 post-vaccine'}, 'GSM1113396': {'type': 'peripheral blood mononuclear cells (PBMCs)', 'id': 'T14', 'point': 'Day 7 post-vaccine'}, 'GSM2182761': {'used': 'AGCT, TGCA, AGTC, TACG', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182760': {'used': 'GATC, GCTA, ATCG, ATGC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182763': {'used': 'ACTG, GTCA, CTGA, TGAC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182762': {'used': 'CGTA, GATC, TCAG, TCGA', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '21'}, 'GSM2182765': {'used': 'GTAC, TAGC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182764': {'used': 'ACGT, CATG', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182767': {'used': 'GCAT, CTAG', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182766': {'used': 'CAGT, CGAT', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182769': {'used': 'ATCG, ATGC', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2182768': {'used': 'GACT, GCTA', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': '29'}, 'GSM2392625': {'treatment': 'Estrogen', 'genotype': 'Y537S'}, 'GSM885648': {'knockdown': 'ATM', 'line': 'HME-CC', 'type': 'isogenic hTERT-immortalized normal human mammary epithelial cell lines with lentiviral construct expressing an ATM shRNA'}, 'GSM2348635': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM885643': {'knockdown': 'control', 'line': 'HME-CC', 'type': 'isogenic hTERT-immortalized normal human mammary epithelial cell lines with lentiviral vector transducing the LacZ gene'}, 'GSM2348634': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM885647': {'knockdown': 'ATM', 'line': 'HME-CC', 'type': 'isogenic hTERT-immortalized normal human mammary epithelial cell lines with lentiviral construct expressing an ATM shRNA'}, 'GSM885646': {'knockdown': 'ATM', 'line': 'HME-CC', 'type': 'isogenic hTERT-immortalized normal human mammary epithelial cell lines with lentiviral construct expressing an ATM shRNA'}, 'GSM885645': {'knockdown': 'control', 'line': 'HME-CC', 'type': 'isogenic hTERT-immortalized normal human mammary epithelial cell lines with lentiviral vector transducing the LacZ gene'}, 'GSM885644': {'knockdown': 'control', 'line': 'HME-CC', 'type': 'isogenic hTERT-immortalized normal human mammary epithelial cell lines with lentiviral vector transducing the LacZ gene'}, 'GSM2995462': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995463': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995460': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995461': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995466': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995467': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2995464': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2210108': {'source': 'H9 human embryonic stem cells', 'state': 'undifferentiated', 'type': 'human embryonic stem cells', 'stiffness': '400Pa'}, 'GSM2739484': {'differentiation': 'M-CSF', 'donor': 'Donor 1'}, 'GSM2739485': {'differentiation': 'GM-CSF', 'donor': 'Donor 1'}, 'GSM2995468': {'gender': 'Female', 'type': 'iPSC'}, 'GSM2995469': {'gender': 'Male', 'type': 'iPSC'}, 'GSM2739480': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739481': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739482': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2739483': {'date': 'day 28', 'type': 'hiPSC-derived SFTPC+ cells induced under fibroblast-free condition'}, 'GSM2348638': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2062270': {'source': 'Cutaneous squamous cell carcinoma', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'PICSAR siRNA'}, 'GSM2062271': {'source': 'Cutaneous squamous cell carcinoma', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'Negative control siRNA'}, 'GSM2855460': {'line': 'Human Embryonic Stem Cell Line - HUES9', 'passages': 'P44-46', 'day': '13', 'agent': '10 microM RP22 (Inactive Analogue)'}, 'GSM1914998': {'line': 'M112', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM1145200': {'phase': 'S (day6-6 h)', 'line': 'H9', 'type': 'hESC-derived endoderm cells'}, 'GSM2545253': {'line': 'HCC1954', 'type': 'HER2+ Breast Cancer Cell Line'}, 'GSM2545272': {'line': 'MDA MB-436', 'type': 'TNBC Claudin Low Breast Cancer Cell Line'}, 'GSM2545270': {'line': 'MDA MB-436', 'type': 'TNBC Claudin Low Breast Cancer Cell Line'}, 'GSM2545271': {'line': 'MDA MB-436', 'type': 'TNBC Claudin Low Breast Cancer Cell Line'}, 'GSM2616683': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM3594631': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM1467799': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM3594633': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594632': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594635': {'cluster': '5', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594634': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb22'}, 'GSM3594637': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594636': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594639': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM3594638': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb29'}, 'GSM2664351': {'antibody': 'ab4729 (rabbit polyclonal, Abcam)', 'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2593176': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593177': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593174': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593175': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593172': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593173': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593170': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593171': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '1', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2127250': {'virus': 'ZIKVM'}, 'GSM2127251': {'virus': 'ZIKVM'}, 'GSM2593178': {'origin': 'Estonia', 'point': 'LH+2', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2593179': {'origin': 'Estonia', 'point': 'LH+8', 'gender': 'Female', 'batch': '2', 'state': 'Healthy', 'tissue': 'Endometrium'}, 'GSM2186825': {'stimulation': 'interferon gamma', 'length': '2 hours', 'type': 'monocyte-dervied macrophages'}, 'GSM1577739': {'state': 'Effector 3h'}, 'GSM1577738': {'state': 'Resting'}, 'GSM2386562': {'line': 'U2OS', 'treatment': '50μM UNC1215 for 24h'}, 'GSM1467790': {'type': 'monocyte', 'agent': 'LPS'}, 'GSM2439248': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shCUX1.338', 'type': 'myeloid leukemia cell line'}, 'GSM2100149': {'rin': '10', 'Sex': 'Female', 'sspg': '86', 'age': '59', 'bmi': '31.9', 'batch': '1-120', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '31915', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '518', 'method': 'Life-Tech GITC'}, 'GSM2100148': {'rin': '9.5', 'Sex': 'Female', 'sspg': '57', 'age': '66', 'bmi': '29.8', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '516', 'method': 'Life-Tech GITC'}, 'GSM2100143': {'rin': '10', 'Sex': 'Female', 'sspg': '173', 'age': '66', 'bmi': '36.8', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '514', 'method': 'Life-Tech GITC'}, 'GSM2100142': {'rin': '9.6', 'Sex': 'Male', 'sspg': '69', 'age': '56', 'bmi': '26', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '509', 'method': 'Qiagen:trizol'}, 'GSM2100141': {'rin': '9.4', 'Sex': 'Male', 'sspg': '69', 'age': '56', 'bmi': '26', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '509', 'method': 'Qiagen:trizol'}, 'GSM2100140': {'rin': '9.7', 'Sex': 'Male', 'sspg': '69', 'age': '56', 'bmi': '26', 'batch': '1-50', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'Asian', 'lot': '1264008A', 'date': 'NA', 'dilution': '01:20:00 AM', 'passage': 'NA', 'indiv': '509', 'method': 'Qiagen:trizol'}, 'GSM2100147': {'rin': '9.2', 'Sex': 'Female', 'sspg': '57', 'age': '66', 'bmi': '29.8', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '516', 'method': 'Life-Tech GITC'}, 'GSM2100146': {'rin': '9.6', 'Sex': 'Female', 'sspg': '57', 'age': '66', 'bmi': '29.8', 'batch': '1-60', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin sensitive', 'race': 'White', 'lot': '1264008A', 'date': '11714', 'dilution': '02:40:00 AM', 'passage': 'NA', 'indiv': '516', 'method': 'Life-Tech GITC'}, 'GSM2100145': {'rin': '10', 'Sex': 'Female', 'sspg': '173', 'age': '66', 'bmi': '36.8', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '514', 'method': 'Life-Tech GITC'}, 'GSM2100144': {'rin': '10', 'Sex': 'Female', 'sspg': '173', 'age': '66', 'bmi': '36.8', 'batch': '1-100', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'African American', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '10', 'indiv': '514', 'method': 'Life-Tech GITC'}, 'GSM2451065': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451064': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451067': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451066': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451061': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451060': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451063': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451062': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2886832': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'creatine 24h'}, 'GSM2886833': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'creatine 24h'}, 'GSM2886831': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'creatine 24h'}, 'GSM2451069': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451068': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2886834': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'hypoxia'}, 'GSM2886835': {'tissue': 'primary cell line-Brain tumor', 'treatment': 'hypoxia'}, 'GSM2194481': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194480': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1957528': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957529': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2052587': {'tissue': 'skin', 'diagnosis': 'Hailey-Hailey disease'}, 'GSM2052586': {'tissue': 'skin', 'diagnosis': 'Hailey-Hailey disease'}, 'GSM2047639': {'well': 'C02', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047638': {'well': 'C01', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047637': {'well': 'B12', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047636': {'well': 'B11', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2047635': {'well': 'B10', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM2052588': {'tissue': 'skin', 'diagnosis': 'Hailey-Hailey disease'}, 'GSM1957526': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957527': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1957524': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM2047630': {'well': 'B05', 'individual': 'NA19101', 'replicate': 'r1', 'type': 'LCL-derived iPSC'}, 'GSM1620635': {'type': 'MCF10a human breast cancer cells'}, 'GSM2310231': {'gender': 'Female', 'age': '10', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM1620634': {'type': 'MCF10a human breast cancer cells'}, 'GSM2114339': {'knockdown': 'PRMT5 knockdown', 'line': 'A549 lung adenocarcinoma'}, 'GSM1620637': {'type': 'MCF10a human breast cancer cells'}, 'GSM2151540': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM3586675': {'origin': 'UNCLASSIFIED', 'pfstt': '1128', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1128', 'cycles': '6', 'oscs': '0'}, 'GSM2194489': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2411889': {'line': '22512D', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2439245': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shCUX1.338', 'type': 'myeloid leukemia cell line'}, 'GSM2411887': {'line': '1998G', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411886': {'line': '1998E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411885': {'line': '16939B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411884': {'line': '16939A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411883': {'line': '16126E', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411882': {'line': '16126C', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411881': {'line': '14685B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM2411880': {'line': '14685A', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'White Adipocyte', 'genotype': 'Minor/Minor'}, 'GSM1620633': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620632': {'type': 'MCF10a human breast cancer cells'}, 'GSM2439244': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shRenilla', 'type': 'myeloid leukemia cell line'}, 'GSM2263361': {'group': 'Fy', 'gender': 'F', 'age': '25', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2263360': {'group': 'Fy', 'gender': 'F', 'age': '19', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Duffy Fy(-)'}, 'GSM2263363': {'group': 'RASNP', 'gender': 'M', 'age': '40', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263362': {'group': 'RASNP', 'gender': 'M', 'age': '30', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263365': {'group': 'RASNP', 'gender': 'M', 'age': '38', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263364': {'group': 'RASNP', 'gender': 'F', 'age': '33', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263367': {'group': 'RASNP', 'gender': 'M', 'age': '22', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263366': {'group': 'RASNP', 'gender': 'M', 'age': '35', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2263369': {'group': 'RASP', 'gender': 'F', 'age': '24', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Protected'}, 'GSM2263368': {'group': 'RASNP', 'gender': 'F', 'age': '36', 'tissue': 'blood', 'time': 'Baseline', 'type': 'PBMC', 'duffy': 'Suceptible'}, 'GSM2636194': {'type': 'primed embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2439242': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shCUX1.338', 'type': 'myeloid leukemia cell line'}, 'GSM2636196': {'type': 'naive embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636197': {'type': 'naive embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636190': {'type': 'primed embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636191': {'type': 'primed embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636192': {'type': 'primed embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636193': {'type': 'primed embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2636198': {'type': 'naive embryonic stem cell', 'genotype': 'wild type'}, 'GSM2636199': {'type': 'naive embryonic stem cell', 'genotype': 'Trim28 -/-'}, 'GSM2127898': {'expression': 'shDAP5', 'state': 'Pluripotent', 'molecule': 'Heavy polysomal RNA', 'passage': 'p51'}, 'GSM2439241': {'antibody': 'none', 'line': 'K562', 'shRNA': 'shRenilla', 'type': 'myeloid leukemia cell line'}, 'GSM1915098': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'group A streptococcus', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915099': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'group A streptococcus and hydroxychloroquine', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915090': {'status': 'healthy participant', 'culture': '0 hours', 'with': 'none (untreated)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915091': {'status': 'healthy participant', 'culture': '24 hours', 'with': '20 µM hydroxychloroquine (HCQ)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915092': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'none (untreated)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM2712677': {'condition': 'TB'}, 'GSM1915094': {'status': 'healthy participant', 'culture': '0 hours', 'with': 'none (untreated)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915095': {'status': 'healthy participant', 'culture': '24 hours', 'with': '20 µM hydroxychloroquine (HCQ)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915096': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'none (untreated)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM1915097': {'status': 'healthy participant', 'culture': '24 hours', 'with': 'none (untreated)', 'type': 'Peripheral blood mononuclear cells (PBMCs)'}, 'GSM2944213': {'gender': 'Female', 'age': '23', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944212': {'gender': 'Female', 'age': '23', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944211': {'gender': 'Male', 'age': '25', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2243809': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E12', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2944216': {'gender': 'Male', 'age': '22', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944215': {'gender': 'Female', 'age': '25', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2944214': {'gender': 'Female', 'age': '25', 'tissue': 'airway epithelium', 'diagnosis': 'Asthmatic'}, 'GSM2243802': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'F7', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243803': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G4', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243800': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243801': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'E3', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243806': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2439240': {'antibody': 'CUX1 sc-6327 Santa Cruz', 'line': 'K562', 'shRNA': 'control shRNA', 'type': 'myeloid leukemia cell line'}, 'GSM2123974': {}, 'GSM2243805': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'B11', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2049091': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049090': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049093': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049092': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049095': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049094': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049097': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049096': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049099': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2049098': {'tissue': 'liver', 'diagnosis': 'Normal'}, 'GSM2123977': {}, 'GSM4008563': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI<25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM2565450': {'construction': 'PLATE-Seq', 'drug': 'Nebivolol hydrochloride'}, 'GSM2565451': {'construction': 'PLATE-Seq', 'drug': 'Picoplatin'}, 'GSM2565452': {'construction': 'PLATE-Seq', 'drug': 'PX 12'}, 'GSM2565453': {'construction': 'PLATE-Seq', 'drug': 'Rucaparib (AG-014699, PF-01367338)'}, 'GSM2565454': {'construction': 'PLATE-Seq', 'drug': 'TAK-733'}, 'GSM2565455': {'construction': 'PLATE-Seq', 'drug': 'Tasquinimod'}, 'GSM2565456': {'construction': 'PLATE-Seq', 'drug': 'UCN-01'}, 'GSM2492449': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492446': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2565459': {'construction': 'PLATE-Seq', 'drug': 'PLUMBAGIN'}, 'GSM2123976': {}, 'GSM2492445': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492442': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492443': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492440': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2492441': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2794434': {'age': '21 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM2794435': {'age': '50 y', 'tissue': 'primary skin fibroblast cells', 'genotype': \"Friedreich's ataxia\"}, 'GSM1194814': {'donor': 'donor A', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194813': {'donor': 'donor A', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194812': {'donor': 'donor A', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194811': {'donor': 'donor A', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM1194810': {'donor': 'donor B', 'type': 'human primary dermal fibroblast', 'passage': 'between 4 and 7'}, 'GSM2127899': {'expression': 'shNT', 'state': 'Pluripotent', 'molecule': 'Total PolyA+ RNA', 'passage': 'p53'}, 'GSM2754683': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754682': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': '10', 'type': 'Tcells'}, 'GSM2754681': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754680': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_0699', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754687': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '540', 'stimulation': 'ag85', 'subjectid': '07_0293', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754686': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0293', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754685': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0293', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754684': {'bin': '4', 'group': 'case', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': 'IC', 'stimulation': 'ag85', 'subjectid': '07_0390', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754689': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '360', 'stimulation': 'ag85', 'subjectid': '07_0414', 'previousdiagnosisoftb': 'No', 'tst': '17', 'type': 'Tcells'}, 'GSM2754688': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '180', 'stimulation': 'ag85', 'subjectid': '07_0414', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2392621': {'treatment': 'Estrogen', 'genotype': 'Wild type'}, 'GSM554128': {'tissue': 'Normal prostate tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'NA'}, 'GSM1611600': {'line': 'HeLa S3', 'tissue': 'cervix', 'treatment': 'none', 'age': '31 years', 'genotype': 'wild type'}, 'GSM1611601': {'line': 'HeLa S3', 'tissue': 'cervix', 'treatment': '0.5 mM H2O2', 'age': '31 years', 'genotype': 'hOXR1 knockdown'}, 'GSM1611602': {'line': 'HeLa S3', 'tissue': 'cervix', 'treatment': '0.5 mM H2O2', 'age': '31 years', 'genotype': 'hOXR1 knockdown'}, 'GSM2616652': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616655': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616654': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616657': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616656': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616659': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616658': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2158283': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158282': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158285': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158284': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158287': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2158286': {'gender': 'F', 'age': '24', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2093203': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM1828399': {'origin': 'breast epithelial', 'line': 'MCF7-derived LY2', 'sirna': 'siRNA-HOXC11'}, 'GSM2473267': {'genotype': 'rWT'}, 'GSM1917696': {'shRNA': 'shControl', 'type': 'Shep2'}, 'GSM2473266': {'antibody': 'H3K27ac (Abcam, ab4729, lot GR238071-1)', 'genotype': 'YFFF'}, 'GSM2093200': {'bin': '17', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '16', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2093206': {'bin': '23', 'group': 'control (non-progressor)', 'qft': 'NA', 'gender': 'female', 'age': '17', 'tissue': 'blood', 'tst': 'NA', 'tb': 'y', 'ethnicity': 'coloured'}, 'GSM2473269': {'genotype': 'YFFF'}, 'GSM2302896': {'tetracycline': 'TET(-)', 'id': '4', 'treatment': 'IL17'}, 'GSM2303449': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACCG268'}, 'GSM2303448': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303445': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACCG268'}, 'GSM2303444': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303447': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACCG268'}, 'GSM2303446': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACCG268'}, 'GSM2303441': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303440': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACCG268'}, 'GSM2303443': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACCG268'}, 'GSM2303442': {'race': 'African American', 'age': '22', 'bmi': '32.95', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACCG268'}, 'GSM1704560': {'protocol': 'Interferon treatment', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704561': {'protocol': 'Uninfected', 'analysis': 'mRNA-seq', 'strain': 'none', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704562': {'protocol': 'Uninfected', 'analysis': 'mRNA-seq', 'strain': 'none', 'replicate': 'Rep 1', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704563': {'protocol': '6 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2242768': {'line': 'A375', 'replicate': '4'}, 'GSM2242769': {'line': 'A375', 'replicate': '4'}, 'GSM1704566': {'protocol': '12 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704567': {'protocol': '24 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM1704568': {'protocol': '24 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'ER'}, 'GSM1704569': {'protocol': '40 h infection', 'analysis': 'mRNA-seq', 'strain': 'DENV2 (M29095.1)', 'replicate': 'Rep 2', 'line': 'Huh7 cells', 'compartment': 'cytosol'}, 'GSM2375028': {'line': 'RPMI8226', 'shRNA': 'CD86', 'type': 'myeloma cell line', 'overexpression': 'Mcl1'}, 'GSM2375022': {'line': 'KMS18', 'shRNA': 'Gapdh', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2375023': {'line': 'KMS18', 'shRNA': 'CD28', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2375020': {'line': 'RPMI8226', 'shRNA': 'CD86', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2375021': {'line': 'KMS18', 'shRNA': 'Vec', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2375026': {'line': 'RPMI8226', 'shRNA': 'Gapdh', 'type': 'myeloma cell line', 'overexpression': 'Mcl1'}, 'GSM2375027': {'line': 'RPMI8226', 'shRNA': 'CD28', 'type': 'myeloma cell line', 'overexpression': 'Mcl1'}, 'GSM2375024': {'line': 'KMS18', 'shRNA': 'CD86', 'type': 'myeloma cell line', 'overexpression': 'none'}, 'GSM2375025': {'line': 'RPMI8226', 'shRNA': 'Vec', 'type': 'myeloma cell line', 'overexpression': 'Mcl1'}, 'GSM2305847': {'tissue': 'colon'}, 'GSM2305846': {'tissue': 'colon'}, 'GSM2339266': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339267': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339260': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305842': {'tissue': 'colon'}, 'GSM2339262': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339263': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339268': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2339269': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2305849': {'tissue': 'colon'}, 'GSM2305848': {'tissue': 'colon'}, 'GSM2696509': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Normal Breast', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696508': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1537680': {'antibody': 'MED1 (M-255; sc-8998; Santa Cruz)', 'line': 'hMADS-3', 'type': 'human adipose-derived stem cells'}, 'GSM2696505': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696504': {'status': '1+ (10)', 'grade': '2', 'age': '49', 'tissue': 'Breast tumor', 'histology': 'Lobular', 'type': 'Whole human breast tumor', 'size': '1.9'}, 'GSM2696507': {'status': '1+ (10)', 'grade': '2', 'age': '55', 'tissue': 'Breast tumor', 'histology': 'Ductal', 'type': 'Whole human breast tumor', 'size': '3.7'}, 'GSM2696506': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696501': {'status': '2+ (20)', 'grade': '2', 'age': '42', 'tissue': 'Breast tumor', 'histology': 'Ductal with prominent lobular features', 'type': 'Whole human breast tumor', 'size': '3.5'}, 'GSM2696500': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'No clinical information available', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM2696503': {'status': '0', 'grade': '3', 'age': '68', 'tissue': 'Breast tumor', 'histology': 'Metaplastic', 'type': 'Whole human breast tumor', 'size': '4.2'}, 'GSM2696502': {'status': '--', 'grade': '--', 'age': '--', 'tissue': 'Adjacent normal', 'histology': '--', 'type': '--', 'size': '--'}, 'GSM1896203': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896202': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896201': {'individual': 'EU34', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896200': {'individual': 'EU306', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896207': {'individual': 'EU42', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896206': {'individual': 'EU36', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896205': {'individual': 'EU36', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1896204': {'individual': 'EU36', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1896209': {'individual': 'EU42', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1896208': {'individual': 'EU42', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2194339': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194338': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194335': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194334': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194337': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194336': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194331': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194330': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194333': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2194332': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'control'}, 'GSM2535659': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1122', 'samplename': '1_413UNST_C57', 'seqsite': 'BRI', 'sampleID': 'S13224', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1122', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C57'}, 'GSM921039': {'barcode': 'CGGCAG', 'type': 'Fibroblasts', 'treatment': 'Chondrogenesis', 'name': 'Charlotte', 'day': 'd1'}, 'GSM921038': {'barcode': 'CGTATT', 'type': 'Fibroblasts', 'treatment': 'Noninduced', 'name': 'Charlotte', 'day': 'd0'}, 'GSM921031': {'barcode': 'ACTTAT', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd1'}, 'GSM921030': {'barcode': 'GAACGC', 'type': 'Fibroblasts', 'treatment': 'Noninduced', 'name': 'Daphne', 'day': 'd0'}, 'GSM921033': {'barcode': 'TATTGT', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd3'}, 'GSM921032': {'barcode': 'TGGATG', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd2'}, 'GSM921035': {'barcode': 'GAATTA', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd5'}, 'GSM921034': {'barcode': 'ACGTTG', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd4'}, 'GSM921037': {'barcode': 'TGATCA', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd7'}, 'GSM921036': {'barcode': 'CCATCT', 'type': 'Fibroblasts', 'treatment': 'Osteogenesis', 'name': 'Daphne', 'day': 'd6'}, 'GSM2816148': {'line': 'H9'}, 'GSM1376268': {'pathology': 'yes', 'tissue': 'superior temporalis gyrus', 'diagnosis': 'non-demented'}, 'GSM1350194': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'wild type'}, 'GSM1350195': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'wild type'}, 'GSM2887505': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1350196': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'wild type'}, 'GSM1350197': {'line': 'HEK293T cells', 'antibody': 'hnRNPC (sc-32308, Santa Cruz)', 'treatment': 'wild type'}, 'GSM1581106': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM2153367': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153366': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153365': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153364': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153363': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153362': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153361': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153360': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1581104': {'condition': 'Control', 'point': 'Pre-deployment'}, 'GSM2153369': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM2153368': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-22'}, 'GSM1612322': {'imortalization': 'SV40 TAg', 'medium': 'F99', 'type': 'endothelial'}, 'GSM1612323': {'imortalization': 'SV40 TAg', 'medium': 'F99', 'type': 'endothelial'}, 'GSM1612320': {'imortalization': 'telemorase', 'medium': 'F99', 'type': 'endothelial'}, 'GSM1612321': {'imortalization': 'telemorase', 'medium': 'F99', 'type': 'endothelial'}, 'GSM1612326': {'imortalization': 'SV40 TAg', 'medium': 'Human Endothelial-SFM', 'type': 'endothelial'}, 'GSM1612327': {'imortalization': 'SV40 TAg', 'medium': 'Human Endothelial-SFM', 'type': 'endothelial'}, 'GSM1612324': {'imortalization': 'SV40 TAg', 'medium': 'F99', 'type': 'endothelial'}, 'GSM1612325': {'imortalization': 'SV40 TAg', 'medium': 'Human Endothelial-SFM', 'type': 'endothelial'}, 'GSM2410121': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'GSK2879552'}, 'GSM2410120': {'gender': 'female', 'type': 'T-ALL', 'treatment': 'DMSO'}, 'GSM2410129': {'line': 'pre-B ALL xenograft', 'treatment': 'empty vector', 'variation': 'Ik6,BCR-ABL', 'time': 'uninduced'}, 'GSM2410128': {'line': 'pre-B ALL xenograft', 'treatment': 'empty vector', 'variation': 'Ik6,BCR-ABL', 'time': 'uninduced'}, 'GSM2274798': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33248', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9665', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C34', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9665', 'studysiteshort': 'YALE'}, 'GSM2274799': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33249', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9666', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C40', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9666', 'studysiteshort': 'YALE'}, 'GSM2274794': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33243', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9660', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C74', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9660', 'studysiteshort': 'YALE'}, 'GSM2274795': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33244', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9661', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C85', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9661', 'studysiteshort': 'YALE'}, 'GSM2274796': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33245', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9662', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C12', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9662', 'studysiteshort': 'YALE'}, 'GSM2274797': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33247', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9664', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C24', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9664', 'studysiteshort': 'YALE'}, 'GSM2274790': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33239', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9656', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C61', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9656', 'studysiteshort': 'YALE'}, 'GSM2274791': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33240', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9657', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C81', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9657', 'studysiteshort': 'YALE'}, 'GSM2274792': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33241', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9658', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C87', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9658', 'studysiteshort': 'YALE'}, 'GSM2274793': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-10', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616', 'trunkbarcode': '928616', 'sampleID': 'S33242', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9659', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White; White', 'c1capturesite': 'C56', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029188', 'libraryid': 'lib9659', 'studysiteshort': 'YALE'}, 'GSM1917085': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1368020': {'line': 'HEK293', 'transfection': 'MOV10 siRNA', 'purification': 'oligo(dT) beads'}, 'GSM1917084': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1195960': {'type': 'induced pluripotent stem cell', 'variation': 'Monosomy X'}, 'GSM1917087': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'quiescent'}, 'GSM1195962': {'type': 'induced pluripotent stem cell', 'variation': 'Euploid'}, 'GSM1401752': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM3576360': {'line': 'Hek293FT', 'transfection': 'Transfected with Cas9Beta, gRNA targeting MIAT locus and activator domains'}, 'GSM2816143': {'line': 'H9'}, 'GSM1917083': {'transduction': 'cotransduced with pWZL-Hygro and shRen', 'line': 'IMR90', 'type': 'fetal lung fibroblasts', 'treatment': 'no treatment', 'condition': 'proliferating'}, 'GSM1006730': {'type': 'H1 embryonic stem cells', 'number': 'Santa Cruz 32323-ac', 'treatment': '1hr', 'linker_sequence': 'TCGTATGCCGTCTTCTGCTTG', 'concentration': '50ng/ml', 'antibody': 'BrdU'}, 'GSM1006731': {'type': 'H1 embryonic stem cells', 'number': 'Santa Cruz 32323-ac', 'treatment': '48hr', 'linker_sequence': 'TCGTATGCCGTCTTCTGCTTG', 'concentration': '50ng/ml', 'antibody': 'BrdU'}, 'GSM1580928': {'onset': '40', 'death': '57', 'score': '1.491', 'grade': '3', 'rin': '6.1', 'reads': '71320688', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '17', 'cag': '49', 'pmi': '25.1'}, 'GSM1580929': {'onset': '42', 'death': '54', 'score': '0.401', 'grade': '3', 'rin': '6.5', 'reads': '124222130', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '12', 'cag': '45', 'pmi': '14.5'}, 'GSM1580926': {'onset': '35', 'death': '59', 'score': '1.2', 'grade': '3', 'rin': '8.3', 'reads': '65341820', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '24', 'cag': '46', 'pmi': '6.16'}, 'GSM1580927': {'onset': '52', 'death': '68', 'score': '1.077', 'grade': '3', 'rin': '6', 'reads': '83110358', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '16', 'cag': '42', 'pmi': '12.75'}, 'GSM1580924': {'onset': '28', 'death': '43', 'score': '1.701', 'grade': '3', 'rin': '7.4', 'reads': '71056116', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '15', 'cag': '49', 'pmi': '21.3'}, 'GSM1580925': {'onset': '45', 'death': '68', 'score': '1.701', 'grade': '3', 'rin': '7.8', 'reads': '66169262', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '23', 'cag': '42', 'pmi': '3.73'}, 'GSM1580922': {'onset': '34', 'death': '40', 'score': '1.431', 'grade': '4', 'rin': '6.2', 'reads': '77123676', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '6', 'cag': '51', 'pmi': 'NA'}, 'GSM1580923': {'onset': '55', 'death': '72', 'score': '0.849', 'grade': '3', 'rin': '8.5', 'reads': '63294390', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '17', 'cag': '41', 'pmi': '8'}, 'GSM1580920': {'onset': '52', 'death': '71', 'score': '1.707', 'grade': '3', 'rin': '7', 'reads': '77385918', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '19', 'cag': '43', 'pmi': '20.5'}, 'GSM1580921': {'onset': '25', 'death': '48', 'score': '1.939', 'grade': '4', 'rin': '6.9', 'reads': '82366794', 'tissue': 'BA9 prefrontal cortex', 'diagnosis': \"Huntington's Disease\", 'duration': '23', 'cag': '48', 'pmi': '19.15'}, 'GSM2816141': {'line': 'H9'}, 'GSM2155049': {'gender': 'male', 'tissue': 'CNS', 'type': 'ALL cells', 'id': '8'}, 'GSM1155371': {'status': 'nonsmoker', 'type': 'airway basal cells'}, 'GSM2155045': {'gender': 'female', 'tissue': 'CNS', 'type': 'ALL cells', 'id': '6'}, 'GSM2535650': {'projectid': 'P48', 'lane': '4,8', 'samplelabel': 'lib1112', 'samplename': '1_413UNST_C67', 'seqsite': 'BRI', 'sampleID': 'S13198', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1112', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C67'}, 'GSM2155046': {'gender': 'female', 'tissue': 'bone marrow', 'type': 'ALL cells', 'id': '7'}, 'GSM2155047': {'gender': 'female', 'tissue': 'CNS', 'type': 'ALL cells', 'id': '7'}, 'GSM2253959': {'line': 'HEK293T'}, 'GSM2253958': {'line': 'HEK293T'}, 'GSM2253955': {'line': 'HEK293T'}, 'GSM2253957': {'line': 'HEK293T'}, 'GSM2253956': {'line': 'HEK293T'}, 'GSM2501589': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shEZH2'}, 'GSM2535657': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1119', 'samplename': '1_413UNST_C86', 'seqsite': 'BRI', 'sampleID': 'S13226', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1119', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C86'}, 'GSM798059': {'knockdown': 'GATA2', 'line': 'K562'}, 'GSM2433775': {'line': 'KhES-1', 'medium': 'E8', 'type': 'embryonic stem cells'}, 'GSM2433774': {'line': 'KhES-1', 'medium': 'AKIT', 'type': 'embryonic stem cells'}, 'GSM2433776': {'line': 'KhES-1', 'medium': 'E8', 'type': 'embryonic stem cells'}, 'GSM2535656': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1118', 'samplename': '1_413UNST_C74', 'seqsite': 'BRI', 'sampleID': 'S13213', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1118', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C74'}, 'GSM2433773': {'line': 'KhES-1', 'medium': 'AKIT', 'type': 'embryonic stem cells'}, 'GSM2433772': {'line': 'KhES-1', 'medium': 'AKIT', 'type': 'embryonic stem cells'}, 'GSM1212182': {'type': 'HeLa cells', 'treatment': 'vehicle'}, 'GSM1212183': {'type': 'HeLa cells', 'treatment': 'camptothecin'}, 'GSM1212180': {'type': 'HeLa cells', 'treatment': 'vehicle'}, 'GSM1212181': {'type': 'HeLa cells', 'treatment': 'camptothecin'}, 'GSM1212186': {'type': 'HeLa cells', 'treatment': 'vehicle'}, 'GSM1212187': {'type': 'HeLa cells', 'treatment': 'Isoginkgetin'}, 'GSM1212184': {'type': 'HeLa cells', 'treatment': 'vehicle'}, 'GSM1212185': {'type': 'HeLa cells', 'treatment': 'Isoginkgetin'}, 'GSM1467489': {'status': 'poikiloderma with neutropenia (PN) patient', 'type': 'foreskin fibroblasts from PN patient (PNFF)', 'variation': 'PNFF-ev'}, 'GSM1212188': {'type': 'HeLa cells', 'treatment': 'vehicle'}, 'GSM1212189': {'type': 'HeLa cells', 'treatment': 'Isoginkgetin'}, 'GSM2535655': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1117', 'samplename': '1_413UNST_C56', 'seqsite': 'BRI', 'sampleID': 'S13234', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1117', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C56'}, 'GSM2576774': {'tissue': 'Fetal liver', 'type': 'Hepatic macrophage'}, 'GSM2576771': {'tissue': 'Fetal brain', 'type': 'Primary microglia'}, 'GSM2576770': {'type': 'iPSC-derived microglia'}, 'GSM2576773': {'tissue': 'Fetal liver', 'type': 'Hepatic macrophage'}, 'GSM2576772': {'tissue': 'Fetal brain', 'type': 'Primary microglia'}, 'GSM1545604': {'count': '0', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545605': {'count': '2', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545606': {'count': '1', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545607': {'count': '2', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545600': {'count': '1', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545601': {'count': '1', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545602': {'count': '1', 'group': 'No Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545603': {'count': '2', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM2339311': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '2', 'birth': 'C-section'}, 'GSM2061138': {'line': 'A375', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2061139': {'line': 'A375', 'tissue': 'skin', 'disease': 'malignant melanoma'}, 'GSM2112562': {'line': 'HaCat', 'vector': 'none', 'treatment': 'YAP1 siRNA'}, 'GSM2112563': {'line': 'HaCat', 'vector': 'empty vector', 'treatment': 'none'}, 'GSM2112560': {'line': 'HaCat', 'vector': 'none', 'treatment': 'YAP1 siRNA'}, 'GSM2112561': {'line': 'HaCat', 'vector': 'none', 'treatment': 'YAP1 siRNA'}, 'GSM2112566': {'line': 'HaCat', 'vector': 'YAP1 S5A (constitutively active YAP1 mutant)', 'treatment': 'none'}, 'GSM2112564': {'line': 'HaCat', 'vector': 'YAP1 S5A (constitutively active YAP1 mutant)', 'treatment': 'none'}, 'GSM2112565': {'line': 'HaCat', 'vector': 'YAP1 S5A (constitutively active YAP1 mutant)', 'treatment': 'none'}, 'GSM2391114': {'disease': 'NSCLC'}, 'GSM2391115': {'disease': 'NSCLC'}, 'GSM2391116': {'disease': 'NSCLC'}, 'GSM2391117': {'disease': 'NSCLC'}, 'GSM1406031': {'line': 'IMR90', 'type': 'embryonic stem cell'}, 'GSM2391111': {'disease': 'NSCLC'}, 'GSM2391112': {'disease': 'NSCLC'}, 'GSM2391113': {'disease': 'NSCLC'}, 'GSM2391118': {'disease': 'NSCLC'}, 'GSM2391119': {'disease': 'NSCLC'}, 'GSM1817705': {'group': 'low HIF state', 'type': 'Clear Cell Renal Carcinoma cells', 'variation': 'loss of ARNT protein by virtue of RNAi-mediated knockdown using a shRNA targeting ARNT'}, 'GSM1817704': {'group': 'high HIF state', 'type': 'Clear Cell Renal Carcinoma cells', 'variation': 'parental Vhl-null cells'}, 'GSM1817706': {'group': 'low HIF state', 'type': 'Clear Cell Renal Carcinoma cells', 'variation': 'loss of ARNT protein using a lenti-crispr mediated sgRNA'}, 'GSM1267267': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'Idiopathic pulmonary fibrosis', 'Sex': 'Male'}, 'GSM1267266': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'Idiopathic pulmonary fibrosis', 'Sex': 'Male'}, 'GSM1267265': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'Idiopathic pulmonary fibrosis', 'Sex': 'Female'}, 'GSM854343': {'patient': '1', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Control'}, 'GSM854344': {'patient': '1', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM1267262': {'tissue': 'lung', 'group': 'Admixed or American ancestry', 'phenotype': 'normal', 'Sex': 'Male'}, 'GSM1267261': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'normal', 'Sex': 'Female'}, 'GSM1267260': {'tissue': 'lung', 'group': 'Admixed or American ancestry', 'phenotype': 'normal', 'Sex': 'Male'}, 'GSM854348': {'patient': '2', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 50'}, 'GSM854349': {'patient': '2', 'passages': '3-5', 'type': 'Pterygia cells', 'treatment': 'Doxy 200'}, 'GSM1267269': {'tissue': 'lung', 'group': 'Asian ancestry', 'phenotype': 'Idiopathic pulmonary fibrosis', 'Sex': 'Female'}, 'GSM1267268': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'Idiopathic pulmonary fibrosis', 'Sex': 'Male'}, 'GSM2887497': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887496': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887495': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887494': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887493': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887492': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887491': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887490': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887499': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887498': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM1956103': {'a': '54808', 'cd38': '292', 'cd49f': '479', 'w': '65631', 'h': '54728', 'lin': '251', 'cd34': '5092', 'cd90': '6431', 'cd7': '60', 'cd10': '642', 'time': '5575', 'cd135': '798', 'cd45ra': '126'}, 'GSM1956102': {'a': '59350', 'cd38': '1174', 'cd49f': '916', 'w': '64490', 'h': '60312', 'lin': '641', 'cd34': '5798', 'cd90': '-110', 'cd7': '32', 'cd10': '626', 'time': '5769', 'cd135': '2822', 'cd45ra': '3707'}, 'GSM1956101': {'a': '58692', 'cd38': '-42', 'cd49f': '269', 'w': '66170', 'h': '58130', 'lin': '155', 'cd34': '10250', 'cd90': '2422', 'cd7': '397', 'cd10': '345', 'time': '5989', 'cd135': '3521', 'cd45ra': '207'}, 'GSM1956100': {'a': '52601', 'cd38': '385', 'cd49f': '363', 'w': '67930', 'h': '50748', 'lin': '-382', 'cd34': '7507', 'cd90': '4492', 'cd7': '-137', 'cd10': '793', 'time': '6199', 'cd135': '2112', 'cd45ra': '237'}, 'GSM1956107': {'a': '58562', 'cd38': '1059', 'cd49f': '412', 'w': '66390', 'h': '57808', 'lin': '273', 'cd34': '5733', 'cd90': '8098', 'cd7': '162', 'cd10': '636', 'time': '4705', 'cd135': '4306', 'cd45ra': '161'}, 'GSM1956106': {'a': '56640', 'cd38': '372', 'cd49f': '156', 'w': '67280', 'h': '55172', 'lin': '351', 'cd34': '8701', 'cd90': '876', 'cd7': '142', 'cd10': '1094', 'time': '4957', 'cd135': '1865', 'cd45ra': '259'}, 'GSM1956105': {'a': '61045', 'cd38': '640', 'cd49f': '480', 'w': '65930', 'h': '60680', 'lin': '201', 'cd34': '4394', 'cd90': '1194', 'cd7': '252', 'cd10': '757', 'time': '5171', 'cd135': '4437', 'cd45ra': '155'}, 'GSM1956104': {'a': '68007', 'cd38': '461', 'cd49f': '542', 'w': '67684', 'h': '65848', 'lin': '-211', 'cd34': '6181', 'cd90': '2262', 'cd7': '247', 'cd10': '466', 'time': '5372', 'cd135': '4122', 'cd45ra': '233'}, 'GSM1956109': {'a': '62241', 'cd38': '-23', 'cd49f': '1572', 'w': '67371', 'h': '60546', 'lin': '81', 'cd34': '9150', 'cd90': '8173', 'cd7': '-77', 'cd10': '1013', 'time': '7120', 'cd135': '2570', 'cd45ra': '321'}, 'GSM1956108': {'a': '69766', 'cd38': '228', 'cd49f': '418', 'w': '64745', 'h': '70619', 'lin': '310', 'cd34': '9280', 'cd90': '1750', 'cd7': '175', 'cd10': '1361', 'time': '4458', 'cd135': '3001', 'cd45ra': '324'}, 'GSM1369080': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siCCNK'}, 'GSM1907084': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM1838578': {'line': 'K562', 'diagnosis': 'Leukemia'}, 'GSM1907086': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM1369081': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siCDK10'}, 'GSM1907080': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM1907081': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM1907082': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM1907083': {'line': 'SHSY5Y', 'type': 'neural progenitors/neuroblastoma'}, 'GSM3711285': {'mediancvcoverage': '0.610725', 'percentaligned': '0.950397163', 'visit': 'Visit 1a', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '13'}, 'GSM1838573': {'line': 'K562', 'diagnosis': 'Leukemia'}, 'GSM1838575': {'line': 'K562', 'diagnosis': 'Leukemia'}, 'GSM1838574': {'line': 'K562', 'diagnosis': 'Leukemia'}, 'GSM1838577': {'line': 'K562', 'diagnosis': 'Leukemia'}, 'GSM1838576': {'line': 'K562', 'diagnosis': 'Leukemia'}, 'GSM3711287': {'mediancvcoverage': '0.821385', 'percentaligned': '0.840204655', 'visit': 'Visit 0', 'Sex': 'F', 'tissue': 'Nasal Lavage', 'flowcell': 'CAJMRANXX', 'years': '8'}, 'GSM1369085': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siJAK2'}, 'GSM2687208': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687209': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'DMSO (CTRL)', 'point': 'EP'}, 'GSM2687204': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2687205': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2687206': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM1980518': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2687200': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2687201': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2687202': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA', 'point': 'EP'}, 'GSM2687203': {'cells': 'LAN-1', 'tissue': 'Tumor', 'treatment': 'AZA + RA', 'point': 'EP'}, 'GSM2153055': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2686836': {'individual': '7', 'group': 'Mossi', 'ID': '103', 'population': 'CD14+ monocyte'}, 'GSM2665982': {'age': 'Day 130', 'well': 'B7', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2686837': {'individual': '8', 'group': 'Mossi', 'ID': '115', 'population': 'CD14+ monocyte'}, 'GSM2153057': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2211701': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'arm', 'tissue': 'skin biopsy', 'id': 'patient3'}, 'GSM2686839': {'individual': '5', 'group': 'Mossi', 'ID': '113', 'population': 'CD14+ monocyte'}, 'GSM2153051': {'donor': 'HSB286', 'age': 'PCW20', 'c1_chip': 'C1-4'}, 'GSM2409672': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2420298': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420299': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM1821702': {'line': 'BEAS-2B', 'tissue': 'lung/bronchus', 'type': 'epithelial', 'treatment': 'oil'}, 'GSM2436540': {'protocol': 'AICAR for 21 days', 'type': 'ESC', 'Stage': 'reversion'}, 'GSM2420292': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420293': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420290': {'tissue': 'melanoma', 'response': 'PRCR'}, 'GSM2420291': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420296': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420297': {'tissue': 'melanoma', 'response': 'PD'}, 'GSM2420294': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM2420295': {'tissue': 'melanoma', 'response': 'SD'}, 'GSM3195635': {'status': 'day 5', 'line': 'H9', 'Sex': 'female', 'passage': 'p60'}, 'GSM1546560': {'line': 'PC9R', 'passages': '8-12', 'type': 'lung cancer cell'}, 'GSM1546561': {'line': 'PC9R', 'passages': '8-12', 'type': 'lung cancer cell'}, 'GSM1861843': {'subtype': 'memory (CD45RA-) CD4', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1861842': {'subtype': 'naive CD31+ CD4+', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM1861841': {'subtype': 'naive CD31- CD4+', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM1861840': {'subtype': 'memory (CD45RA-) CD4', 'group': 'healthy control', 'type': 'T cells (FACSsorted)'}, 'GSM1861847': {'subtype': 'naive CD31- CD4+', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1861846': {'subtype': 'memory (CD45RA-) CD4', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1861845': {'subtype': 'naive CD31+ CD4+', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1861844': {'subtype': 'naive CD31- CD4+', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1861849': {'subtype': 'memory (CD45RA-) CD4', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1861848': {'subtype': 'naive CD31+ CD4+', 'group': 'thymectomy', 'type': 'T cells (FACSsorted)'}, 'GSM1616451': {'line': \"MYC-ER HMECs with dox-inducible shBUD31 (pINDUCER-shBUD31-3'UTR)\", 'passages': '10', 'type': 'Immortalized mammary epithelial cell', 'condition': 'Control'}, 'GSM2455247': {'line': 'SET2', 'type': 'cultured sAML cells', 'treatment': 'Control'}, 'GSM2665986': {'age': 'Day 130', 'well': 'F3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2358949': {'line': 'HCT116', 'tissue': 'xenograft tumor', 'genotype': 'nude mice (ICRF nude)'}, 'GSM1595865': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with constitutively-active RelAS536E & treated with erlotinib'}, 'GSM1595864': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with constitutively-active RelAS536E & treated with DMSO'}, 'GSM1595867': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with constitutively-active RelAS536E & treated with erlotinib'}, 'GSM1595866': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with constitutively-active RelAS536E & treated with erlotinib'}, 'GSM1595861': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with vector expressing IkB-alpha super-repressor & treated with erlotinib'}, 'GSM1595860': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with vector expressing IkB-alpha super-repressor & treated with erlotinib'}, 'GSM1595863': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with constitutively-active RelAS536E & treated with DMSO'}, 'GSM1595862': {'line': '11-18', 'tissue': 'Lung adenocarcinoma', 'treatment': 'infected with constitutively-active RelAS536E & treated with DMSO'}, 'GSM2393185': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Full media', 'variation': 'Control'}, 'GSM2393184': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Full media', 'variation': 'Control'}, 'GSM2393187': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Full media', 'variation': 'Bag-1L KO'}, 'GSM2393186': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Full media', 'variation': 'Bag-1L KO'}, 'GSM984229': {'status': 'normal', 'tissue': 'kidney', 'method': 'FFPE', 'stage': 'fetal, 14wks'}, 'GSM984228': {'status': 'normal', 'tissue': 'kidney', 'method': 'FFPE', 'stage': 'fetal, 15wks'}, 'GSM984225': {'status': 'normal', 'tissue': 'bowel', 'method': 'FFPE', 'stage': 'fetal, 15wks'}, 'GSM984224': {'status': 'normal', 'tissue': 'bowel', 'method': 'FFPE', 'stage': 'fetal, 14wks'}, 'GSM1631244': {'line': 'OS-RC-2', 'sirna': 'Arkadia', 'treatment': 'Arkadia siRNA transfected', 'histology': 'clear-cell renal cell carcinoma'}, 'GSM1631245': {'line': 'OS-RC-2', 'sirna': 'ESRP2', 'treatment': 'ESRP2 siRNA transfected', 'histology': 'clear-cell renal cell carcinoma'}, 'GSM2393189': {'tissue': 'LNCaP-Talen cell line', 'conditions': 'Hormone starvation + 16 h EtOH', 'variation': 'Control'}, 'GSM1631243': {'line': 'OS-RC-2', 'sirna': 'Negative control', 'treatment': 'control siRNA transfected', 'histology': 'clear-cell renal cell carcinoma'}, 'GSM984223': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'fetal, 13wks'}, 'GSM984222': {'status': 'normal', 'tissue': 'lung', 'method': 'FFPE', 'stage': 'fetal, 15wks'}, 'GSM2048633': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2391965': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391964': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391967': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391966': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391961': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391960': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391963': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391962': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2665984': {'age': 'Day 130', 'well': 'G8', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2391969': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM2391968': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1946054': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18912', 'for': '30min'}, 'GSM2304737': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'LMPP/MLP (CD34+CD38-CD45RA+CD90-)'}, 'GSM2307310': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2741762': {'sirna': 'none', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'ZFX'}, 'GSM2741763': {'sirna': 'none', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'ZFX'}, 'GSM2741766': {'sirna': 'none', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741767': {'sirna': 'none', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'none'}, 'GSM2741764': {'sirna': 'none', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'ZNF711'}, 'GSM2741765': {'sirna': 'none', 'line': 'MCF7', 'tissue': 'Human breast cancer cell line MCF7', 'antibody': 'ZNF711'}, 'GSM2741768': {'sirna': 'none', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'ZFX'}, 'GSM2741769': {'sirna': 'none', 'line': 'C42B', 'tissue': 'Human prostate cancer cell line C42B', 'antibody': 'ZFX'}, 'GSM2204153': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM1901019': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline'}, 'GSM1901018': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline'}, 'GSM2451181': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2649290': {'status': 'Undifferentiated', 'line': 'CSES7', 'type': 'Embryonic stem cell line', 'treatment': 'LAC-Z Knockdown'}, 'GSM2055548': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055549': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM2055547': {'line': 'HeLa cell', 'tissue': 'uterine cervix'}, 'GSM1849557': {'type': 'Lung adenocarcinomas', 'treatment': 'krab1: a guide RNA (e3 #1) recognizing the e3 enhancer region'}, 'GSM1849556': {'type': 'Lung adenocarcinomas', 'treatment': 'krab1: a guide RNA (e3 #1) recognizing the e3 enhancer region'}, 'GSM1849555': {'type': 'Lung adenocarcinomas', 'treatment': 'Control: a guide RNA with no target'}, 'GSM1849554': {'type': 'Lung adenocarcinomas', 'treatment': 'Control: a guide RNA with no target'}, 'GSM1849553': {'type': 'Lung adenocarcinomas', 'treatment': 'Empty: no guide RNA'}, 'GSM1849552': {'type': 'Lung adenocarcinomas', 'treatment': 'Empty: no guide RNA'}, 'GSM1849559': {'type': 'Lung adenocarcinomas', 'treatment': 'krab2: a guide RNA (e3 #2) recognizing the e3 enhancer region'}, 'GSM1849558': {'type': 'Lung adenocarcinomas', 'treatment': 'krab2: a guide RNA (e3 #2) recognizing the e3 enhancer region'}, 'GSM2047778': {'well': 'F08', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047779': {'well': 'F09', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1872919': {'10': 'Remitter', 'name': 'HF-35404', 'ir': 'ND', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Naive', 'diagnosis': 'No Dx'}, 'GSM2047772': {'well': 'F02', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047773': {'well': 'F03', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047770': {'well': 'E12', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047771': {'well': 'F01', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047776': {'well': 'F06', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047777': {'well': 'F07', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047774': {'well': 'F04', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047775': {'well': 'F05', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2176241': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176240': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176243': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176242': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176245': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176244': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176247': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176246': {'irradiation': '30 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1683214': {'type': 'U87 human glioma cells'}, 'GSM1683215': {'type': 'U87 human glioma cells'}, 'GSM1683216': {'type': 'U87 human glioma cells'}, 'GSM1683217': {'type': 'U87 human glioma cells'}, 'GSM1683210': {'type': 'MCF10a human breast cancer cells'}, 'GSM1683211': {'type': 'U87 human glioma cells'}, 'GSM1683212': {'type': 'U87 human glioma cells'}, 'GSM1683213': {'type': 'U87 human glioma cells'}, 'GSM1683218': {'type': 'U87 human glioma cells'}, 'GSM1683219': {'type': 'U87 human glioma cells'}, 'GSM618508': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618509': {'status': 'ERG+', 'name': 'VCaP', 'site': 'None', 'state': 'cancer', 'tissue': 'prostate cancer', 'type': 'Cell Line', 'id': 'PATIENT_1'}, 'GSM618504': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618505': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618506': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618507': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618500': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618501': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618502': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618503': {'status': 'ETS-', 'name': 'RWPE', 'site': 'None', 'state': 'benign', 'line': 'RWPE', 'type': 'Cell Line', 'id': 'NA'}, 'GSM1614689': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614688': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614687': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614686': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614685': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614684': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614683': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614682': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614681': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1614680': {'tissues': 'Blood', 'type': 'CD19+ B-cells', 'tissue': 'Tumor'}, 'GSM1872918': {'10': 'Remitter', 'name': 'HF-34767', 'ir': 'TNF IR', 'tissue': 'colonic biopsy', 'state': 'UC', 'tnf': 'Prior anti-TNF', 'diagnosis': 'No Dx'}, 'GSM1833899': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'wild-type', 'time': 'Embryoid body, day 50'}, 'GSM2471136': {'lineage': 'erythroid', 'transduction': 'empty vector', 'type': 'BFU-E'}, 'GSM2471139': {'lineage': 'erythroid', 'transduction': 'U2AF1 wild-type', 'type': 'BFU-E'}, 'GSM1833896': {'line': 'YZ1 hiPSC', 'type': 'Human iPSC-derived neurons', 'genotype': 'wild-type', 'time': 'Embryoid body, day 50'}, 'GSM2544233': {'antibody': 'anti-POLR3D (abcam ab86786; lot# GR267691-1)', 'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM1613303': {'line': 'LNCaP', 'type': 'prostate cancer', 'treatment': 'ethanol 24h'}, 'GSM1613307': {'line': 'BicR', 'type': 'prostate cancer', 'treatment': 'DHT 10 nM 24 h'}, 'GSM1613306': {'line': 'BicR', 'type': 'prostate cancer', 'treatment': 'ethanol 24h'}, 'GSM1613305': {'line': 'LNCaP', 'type': 'prostate cancer', 'treatment': 'Bicalutamide 1μM 24h'}, 'GSM1613304': {'line': 'LNCaP', 'type': 'prostate cancer', 'treatment': 'DHT 10 nM 24 h'}, 'GSM2049114': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049115': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049116': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM1613308': {'line': 'BicR', 'type': 'prostate cancer', 'treatment': 'Bicalutamide 1μM 24h'}, 'GSM2049110': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049111': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049112': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2049113': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2544232': {'antibody': 'anti-POLR3D (abcam ab86786; lot# GR267691-1)', 'line': 'THP-1', 'type': 'monocytes', 'exposure': '( - PMA )'}, 'GSM1557571': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM1557570': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM1557573': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM1557572': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM1557575': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM1557574': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM1557577': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '48h'}, 'GSM1557576': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '24h'}, 'GSM1557579': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM1557578': {'antibody': 'none', 'type': 'foreskin fibroblast', 'infection': 'human perpesvirus 5', 'time': '72h'}, 'GSM2840568': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2840569': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1957265': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '41 days'}, 'GSM865742': {'antibody': 'anti-GPS2', 'type': '293T'}, 'GSM865743': {'antibody': 'anti-TBL1', 'type': '293T'}, 'GSM865744': {'antibody': 'anti-N-CoR', 'type': '293T'}, 'GSM865745': {'antibody': 'anti-N-CoR', 'type': '293T'}, 'GSM2228778': {'donor': '10', 'treatment': 'EBOV', 'infection': '6'}, 'GSM2664405': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664404': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664407': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664406': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664401': {'type': 'Neuroblastoma cell line', 'treatment': 'Doxycycline-inducible shRNA'}, 'GSM2664400': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664403': {'type': 'Neuroblastoma cell line', 'treatment': 'Doxycycline-inducible shRNA'}, 'GSM2664402': {'type': 'Neuroblastoma cell line', 'treatment': 'Doxycycline-inducible shRNA'}, 'GSM2664409': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664408': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM1921000': {'line': 'H9 hESCs expressing pJAZ NLS-GFP-OsJAZ33', 'type': 'embryonic stem cells', 'agent': 'DMSO'}, 'GSM1921001': {'line': 'H9 hESCs expressing pJAZ NLS-GFP-OsJAZ33', 'type': 'embryonic stem cells', 'agent': 'coronatine'}, 'GSM1921002': {'line': 'H9 hESCs expressing pJAZ NLS-GFP-OsJAZ33', 'type': 'embryonic stem cells', 'agent': 'DMSO'}, 'GSM1921003': {'line': 'H9 hESCs expressing pJAZ NLS-GFP-OsJAZ33', 'type': 'embryonic stem cells', 'agent': 'coronatine'}, 'GSM1921004': {'type': 'primary human neonatal keratinocytes', 'variation': 'control knockdown'}, 'GSM1921005': {'type': 'primary human neonatal keratinocytes', 'variation': 'control knockdown'}, 'GSM1921006': {'type': 'primary human neonatal keratinocytes', 'variation': 'Brg1/Brm knockdown'}, 'GSM1921007': {'type': 'primary human neonatal keratinocytes', 'variation': 'Brg1/Brm knockdown'}, 'GSM1921008': {'type': 'primary human neonatal keratinocytes', 'variation': 'p63 knockdown'}, 'GSM1921009': {'type': 'primary human neonatal keratinocytes', 'variation': 'p63 knockdown'}, 'GSM1914484': {'group': 'HD_iPSC', 'region': 'HD', 'type': 'iPSC'}, 'GSM1914485': {'group': 'HD_iPSC', 'region': 'HD', 'type': 'iPSC'}, 'GSM1914486': {'group': 'HD_iPSC', 'region': 'HD', 'type': 'iPSC'}, 'GSM1914487': {'group': 'HD_iPSC', 'region': 'HD', 'type': 'iPSC'}, 'GSM1914480': {'group': 'HD_NSC', 'region': 'HD', 'type': 'NSC'}, 'GSM1914481': {'group': 'HD_iPSC', 'region': 'HD', 'type': 'iPSC'}, 'GSM1914482': {'group': 'HD_iPSC', 'region': 'HD', 'type': 'iPSC'}, 'GSM1914483': {'group': 'HD_iPSC', 'region': 'HD', 'type': 'iPSC'}, 'GSM1914488': {'group': 'HD_iPSC', 'region': 'HD', 'type': 'iPSC'}, 'GSM2197598': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197599': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197590': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197591': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197592': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197593': {'visit': '2', 'tissue': 'rectal biopsy', 'group': 'con'}, 'GSM2197594': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197595': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197596': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2197597': {'visit': '1', 'tissue': 'rectal biopsy', 'group': 'exp'}, 'GSM2632402': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632403': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632400': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632401': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632406': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632407': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632404': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632405': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632408': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM2632409': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38+', 'Sex': 'Male'}, 'GSM1233998': {'replicate': '2', 'line': '18505', 'antibody': 'H3K27me3'}, 'GSM1233999': {'replicate': '1', 'line': '18505', 'antibody': 'H3K36me3'}, 'GSM1233994': {'replicate': '2', 'line': '18505', 'antibody': 'CTCF'}, 'GSM1233995': {'replicate': '1', 'line': '18505', 'antibody': 'H3K27Ac'}, 'GSM1233996': {'replicate': '2', 'line': '18505', 'antibody': 'H3K27Ac'}, 'GSM1233997': {'replicate': '1', 'line': '18505', 'antibody': 'H3K27me3'}, 'GSM1233990': {'replicate': '1', 'line': '18486', 'antibody': 'Input'}, 'GSM1233991': {'replicate': '1', 'line': '18486', 'antibody': 'SA1'}, 'GSM1233992': {'replicate': '2', 'line': '18486', 'antibody': 'SA1'}, 'GSM1233993': {'replicate': '1', 'line': '18505', 'antibody': 'CTCF'}, 'GSM1588223': {'line': 'HS181'}, 'GSM1588222': {'line': 'HS181'}, 'GSM1588225': {'line': 'HS181-derived embryoid bodies'}, 'GSM1588224': {'line': 'HS181'}, 'GSM1588227': {'line': 'HS181'}, 'GSM1588226': {'line': 'HS181-derived embryoid bodies'}, 'GSM2665758': {'age': 'Day 100', 'well': 'H5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665759': {'age': 'Day 100', 'well': 'A2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665752': {'age': 'Day 100', 'well': 'F5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665753': {'age': 'Day 100', 'well': 'F3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665750': {'age': 'Day 100', 'well': 'C5', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665751': {'age': 'Day 100', 'well': 'E7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665756': {'age': 'Day 100', 'well': 'A8', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665757': {'age': 'Day 100', 'well': 'E9', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM2665754': {'age': 'Day 100', 'well': 'D6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2665755': {'age': 'Day 100', 'well': 'H11', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000078'}, 'GSM922230': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2252996': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-PKM2 and sip53'}, 'GSM1890537': {'type': 'keratinocyte', 'treatment': 'differentiated in 1.3mM Ca2+', 'time': '48 hours'}, 'GSM1890536': {'type': 'keratinocyte', 'treatment': 'differentiated in 1.3mM Ca2+', 'time': '24 hours'}, 'GSM1890535': {'type': 'keratinocyte', 'treatment': 'undifferentiated', 'time': 'control'}, 'GSM2125806': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2536946': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'wild type'}, 'GSM1890539': {'type': 'keratinocyte', 'treatment': 'differentiated in 1.3mM Ca2+', 'time': '96 hours'}, 'GSM1890538': {'type': 'keratinocyte', 'treatment': 'differentiated in 1.3mM Ca2+', 'time': '72 hours'}, 'GSM2125805': {'cancer': 'gastric cancer', 'stage': '1'}, 'GSM2575099': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '18h'}, 'GSM2125804': {'cancer': 'gastric cancer', 'stage': '2'}, 'GSM2575098': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2125803': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2467188': {'state': 'Diabetes Mellitus/proliferative diabetic retinopathy', 'type': 'fibrovascular membrane endothelial cells'}, 'GSM2252993': {'passages': '3', 'tissue': 'Human Umbilical Vein Endothelial Cells (HUVEC)', 'treatment': 'si-PKM2'}, 'GSM2141258': {'individual': 'AF29', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141259': {'individual': 'AF29', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2125801': {'cancer': 'gastric cancer', 'stage': '3'}, 'GSM2536947': {'line': 'K562', 'tissue': 'Bone Marrow', 'genotype': 'DNMT3A mutated'}, 'GSM1633689': {'type': 'Human Kupffer cells', 'treatment': 'Treatment with PAN02 exosomes'}, 'GSM2141250': {'individual': 'AF23', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141251': {'individual': 'AF25', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141252': {'individual': 'AF25', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141253': {'individual': 'AF25', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141254': {'individual': 'AF27', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141255': {'individual': 'AF27', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141256': {'individual': 'AF27', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141257': {'individual': 'AF29', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2331196': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Pre-treatment'}, 'GSM2331197': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Pre-treatment'}, 'GSM2331195': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Pre-treatment'}, 'GSM2331198': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Pre-treatment'}, 'GSM2331199': {'tissue': 'Adipose', 'treatment': 'Placebo', 'time': 'Pre-treatment'}, 'GSM2575091': {'replicate': '1', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'A/Vietnam/1203/04 (H5N1) HALo, MOI 2', 'point': '06h'}, 'GSM2114230': {'line': 'K562', 'agent': 'actD', 'time': '8 hours since actD treatment'}, 'GSM2543980': {'library_id': 'lib8270', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2575090': {'replicate': '2', 'type': 'Human Monocyte-Derived Macrophages (MDM)', 'id': '513', 'infection': 'uninfected (mock control)', 'point': '06h'}, 'GSM2230430': {'antibody': 'none', 'region': 'Basal plate', 'type': 'NA', 'age': '8 weeks, 6 days'}, 'GSM2611034': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611030': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611031': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2611032': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'treated (1 hour with 1 μM Imatinib)'}, 'GSM2611033': {'line': 'CCL-243', 'passages': '20-22 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2311846': {'culture': '12', 'line': 'DCX+'}, 'GSM2311847': {'culture': '12', 'line': 'DCX+'}, 'GSM2311844': {'culture': '12', 'line': 'DCX+'}, 'GSM2311845': {'culture': '12', 'line': 'DCX+'}, 'GSM2311842': {'culture': '12', 'line': 'DCX+'}, 'GSM2311843': {'culture': '12', 'line': 'DCX+'}, 'GSM2311840': {'culture': '12', 'line': 'DCX+'}, 'GSM2311841': {'culture': '12', 'line': 'DCX+'}, 'GSM2151529': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2027525': {'line': 'H7 derived'}, 'GSM2027524': {'line': 'H7 derived'}, 'GSM2027527': {'line': 'H7 derived'}, 'GSM2151528': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2027526': {'line': 'H7 derived'}, 'GSM2653548': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653549': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM1945934': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18501', 'for': '30min'}, 'GSM2653547': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653544': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653545': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653542': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653543': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653540': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2653541': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM2157539': {'status': 'male factor infertility/oocyte donation and oocyte freezing couples only', 'type': 'cumulus oophorus cells', 'group': '<35 y.o.'}, 'GSM2027523': {'line': 'H7 derived'}, 'GSM2027522': {'line': 'H7 derived'}, 'GSM1945935': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18501', 'for': '30min'}, 'GSM2200842': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2543807': {'library_id': 'lib7915', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM978970': {'tissue': 'placenta from full-term pregnancy', 'Sex': 'male'}, 'GSM565964': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'DMSO only'}, 'GSM2397433': {'line': 'Be2C', 'type': 'Neurablastoma cell line', 'variation': 'overexpression of LMO1'}, 'GSM2543806': {'library_id': 'lib7914', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1333113': {'state': 'day 14', 'type': 'Cardiac progenitor cell-derived cardiac myocytes', 'line': 'RUES2 hESCs'}, 'GSM1333112': {'state': 'day 14', 'type': 'Cardiac progenitor cell-derived cardiac myocytes', 'line': 'RUES2 hESCs'}, 'GSM1333111': {'state': 'day 14', 'type': 'Anterior hemogenic endothelial-derived cardiac myocytes', 'line': 'RUES2 hESCs'}, 'GSM1333110': {'state': 'day 14', 'type': 'Anterior hemogenic endothelial-derived cardiac myocytes', 'line': 'RUES2 hESCs'}, 'GSM2411159': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411158': {'clone': 'A3', 'genotype': 'WT'}, 'GSM1819858': {'type': 'PANC1', 'treatment': 'gemcitabine'}, 'GSM2350173': {'rna': '10 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume, +10 min.)'}, 'GSM1366009': {'type': 'reprogammed MSC-proximal tubular cells; clone 17'}, 'GSM1366008': {'type': 'CRL-2190; ATCC'}, 'GSM1819853': {'type': 'PANC1', 'treatment': 'vehicle'}, 'GSM565963': {'supplier': 'ATCC', 'line': 'Hs 578T', 'treatment': 'NQO1 inhibitor'}, 'GSM2411153': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411152': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411155': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411154': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411157': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2411156': {'clone': 'A3', 'genotype': 'WT'}, 'GSM2326058': {'type': 'Human embryonic stem cell'}, 'GSM2348571': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2861238': {'line': 'HGC-27', 'passages': '6', 'type': 'derived from metastatic lymph node of gastric cancer', 'treatment': 'SeV treatment for 48 h'}, 'GSM2861236': {'line': 'HGC-27', 'passages': '6', 'type': 'derived from metastatic lymph node of gastric cancer', 'treatment': 'SeV treatment for 48 h'}, 'GSM2861235': {'line': 'HGC-27', 'passages': '6', 'type': 'derived from metastatic lymph node of gastric cancer', 'treatment': 'PBS treatment for 48 h'}, 'GSM2861232': {'line': 'HGC-27', 'passages': '6', 'type': 'derived from metastatic lymph node of gastric cancer', 'treatment': 'PBS treatment for 48 h'}, 'GSM2445591': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': '12h', 'type': 'primary human hepatocyte'}, 'GSM2445592': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': '24h', 'type': 'primary human hepatocyte'}, 'GSM2445593': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': '4h', 'type': 'primary human hepatocyte'}, 'GSM2445594': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': '8h', 'type': 'primary human hepatocyte'}, 'GSM2445595': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D2', 'type': 'primary human hepatocyte'}, 'GSM2445596': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D3', 'type': 'primary human hepatocyte'}, 'GSM2445597': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D6', 'type': 'primary human hepatocyte'}, 'GSM2445598': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D13', 'type': 'primary human hepatocyte'}, 'GSM2445599': {'number': 'Donor2', 'infection': 'HBV', 'tissue': 'liver', 'treatment': 'none', 'time': 'D13', 'type': 'primary human hepatocyte'}, 'GSM2361523': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2348572': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2460781': {'tissue': 'Heart', 'stage': 'day 30 from hPSC'}, 'GSM2460782': {'tissue': 'Heart', 'stage': 'day 30 from hPSC'}, 'GSM2460783': {'tissue': 'Heart', 'stage': 'Human Adult'}, 'GSM2460784': {'tissue': 'Heart', 'stage': 'day 30 from hPSC'}, 'GSM2460785': {'tissue': 'Heart', 'stage': 'day 30 from hPSC'}, 'GSM2460786': {'tissue': 'Heart', 'stage': 'Human Adult'}, 'GSM2689148': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2326057': {'type': 'Human embryonic stem cell'}, 'GSM2326056': {'type': 'Human embryonic stem cell'}, 'GSM2348573': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOC', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1267256': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'normal', 'Sex': 'Male'}, 'GSM2326055': {'type': 'Human embryonic stem cell'}, 'GSM1267257': {'tissue': 'lung', 'group': 'European ancestry', 'phenotype': 'normal', 'Sex': 'Male'}, 'GSM2326054': {'type': 'Human embryonic stem cell'}, 'GSM2309533': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Gastrocnemius muscle', 'classification': 'Duchenne muscular dystrophy'}, 'GSM2309532': {'source': 'autopsy', 'identifier': 'D', 'tissue': 'Gastrocnemius muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309531': {'source': 'autopsy', 'identifier': 'D', 'tissue': 'Gastrocnemius muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309530': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Gastrocnemius muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309537': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309536': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'None'}, 'GSM2309535': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'None'}, 'GSM2309534': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'None'}, 'GSM2309539': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309538': {'source': 'autopsy', 'identifier': 'C', 'tissue': 'Heart', 'classification': 'myotonic dystrophy type 1'}, 'GSM2348574': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2153442': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153443': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153440': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2543802': {'library_id': 'lib7904', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6VF8ANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2153446': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153447': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1197627': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 6h'}, 'GSM2153445': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM1197629': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 3h'}, 'GSM1197628': {'line': 'HeLa', 'treatment': '40nM siRNA knock-down for 48h, then add actinomycin for 0h'}, 'GSM2153448': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2153449': {'donor': 'HSB312', 'age': 'PCW8', 'c1_chip': 'C1-27'}, 'GSM2307049': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2348575': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2307048': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2392146': {'line': 'H1 stem cell line', 'multiplex': '12 samples per lane', 'extract_protocol': 'TruSeq'}, 'GSM2392147': {'line': 'H1 stem cell line', 'multiplex': '12 samples per lane', 'extract_protocol': 'TruSeq'}, 'GSM2392144': {'line': 'H1 stem cell line', 'multiplex': '12 samples per lane', 'extract_protocol': 'TruSeq'}, 'GSM2392145': {'line': 'H1 stem cell line', 'multiplex': '12 samples per lane', 'extract_protocol': 'TruSeq'}, 'GSM2392142': {'line': 'H1 stem cell line', 'multiplex': '12 samples per lane', 'extract_protocol': 'TruSeq'}, 'GSM2392143': {'line': 'H1 stem cell line', 'multiplex': '12 samples per lane', 'extract_protocol': 'TruSeq'}, 'GSM2392148': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392149': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1620433': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620432': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620431': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620430': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620437': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620436': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620435': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620434': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2424915': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424914': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM1620439': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1620438': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM2424911': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424910': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424913': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2424912': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2312188': {'culture': '12', 'line': 'DCX-'}, 'GSM2312189': {'culture': '12', 'line': 'DCX-'}, 'GSM2157639': {'function': 'SIX3', 'line': 'Endo-beta-H1C', 'type': 'pancreatic beta-cell line', 'treatment': 'T-Antigen siRNA 2046'}, 'GSM2157638': {'function': 'SIX2', 'line': 'Endo-beta-H1C', 'type': 'pancreatic beta-cell line', 'treatment': 'T-Antigen siRNA 2046'}, 'GSM2312182': {'culture': '12', 'line': 'DCX-'}, 'GSM2312183': {'culture': '12', 'line': 'DCX-'}, 'GSM2312180': {'culture': '12', 'line': 'DCX-'}, 'GSM2312181': {'culture': '12', 'line': 'DCX-'}, 'GSM2312186': {'culture': '12', 'line': 'DCX-'}, 'GSM2312187': {'culture': '12', 'line': 'DCX-'}, 'GSM2312184': {'culture': '12', 'line': 'DCX-'}, 'GSM2312185': {'culture': '12', 'line': 'DCX-'}, 'GSM1613600': {'line': 'CRL2097', 'type': 'med live'}, 'GSM2551618': {'status': 'Control', 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551615': {'status': 'Control', 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551614': {'status': \"Huntington's disease\", 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551617': {'status': 'Control', 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551616': {'status': 'Control', 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551611': {'status': \"Huntington's disease\", 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551610': {'status': \"Huntington's disease\", 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551613': {'status': \"Huntington's disease\", 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2551612': {'status': \"Huntington's disease\", 'type': 'iPSC-derived brain microvascular endothelial cells'}, 'GSM2391989': {'subtype': 'human epidermal growth factor receptor 2 positive (HER2+)', 'type': 'primary breast cancer', 'id': 'BC05'}, 'GSM1480751': {'line': 'TSU-1621-MT', 'with': '1 uM ATRA for 24 hrs'}, 'GSM565969': {'supplier': 'ATCC', 'line': 'MCF7', 'treatment': 'JAK inhibitor'}, 'GSM2390162': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 3', 'treatment': 'hypoxia', 'fraction': 'total RNA'}, 'GSM2390163': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 3', 'treatment': 'normoxia', 'fraction': 'non-labelled'}, 'GSM2390160': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 2', 'treatment': 'hypoxia', 'fraction': 'newly transcribed RNA'}, 'GSM2390161': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 3', 'treatment': 'normoxia', 'fraction': 'total RNA'}, 'GSM2390166': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 3', 'treatment': 'hypoxia', 'fraction': 'newly transcribed RNA'}, 'GSM2390164': {'line': 'HUVEC', 'hypoxia': 'Hypoxia', 'replicate': 'HUVEC pool 3', 'treatment': 'hypoxia', 'fraction': 'non-labelled'}, 'GSM2390165': {'line': 'HUVEC', 'hypoxia': 'Normoxia', 'replicate': 'HUVEC pool 3', 'treatment': 'normoxia', 'fraction': 'newly transcribed RNA'}, 'GSM2150362': {'antibody': 'H3K27ac', 'treatment': 'DMSO'}, 'GSM2150363': {'antibody': 'H3K27me3', 'treatment': 'DMSO'}, 'GSM2150360': {'antibody': 'H3K9me3', 'treatment': 'DACSB'}, 'GSM2150361': {'antibody': 'Input', 'treatment': 'DACSB'}, 'GSM2150366': {'antibody': 'H3K4me3', 'treatment': 'DMSO'}, 'GSM2150367': {'antibody': 'H3K9ac', 'treatment': 'DMSO'}, 'GSM2150364': {'antibody': 'H3K36me3', 'treatment': 'DMSO'}, 'GSM2150365': {'antibody': 'H3K4me1', 'treatment': 'DMSO'}, 'GSM2150368': {'antibody': 'H3K9me3', 'treatment': 'DMSO'}, 'GSM2150369': {'antibody': 'Input', 'treatment': 'DMSO'}, 'GSM2677884': {'cells': 'liver metastasis', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R175H, p16-WT, SMAD4-WT'}, 'GSM2677881': {'cells': 'liver metastasis', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R175H, p16-WT, SMAD4-WT'}, 'GSM1956137': {'a': '60921', 'cd38': '1085', 'cd49f': '757', 'w': '66670', 'h': '59885', 'lin': '169', 'cd34': '4482', 'cd90': '750', 'cd7': '164', 'cd10': '981', 'time': '13109', 'cd135': '9601', 'cd45ra': '1226'}, 'GSM2677883': {'cells': 'liver metastasis', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R175H, p16-WT, SMAD4-WT'}, 'GSM2677882': {'cells': 'liver metastasis', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R175H, p16-WT, SMAD4-WT'}, 'GSM2357387': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'siLuc control for CPSF73 KD, Thr4 phospho'}, 'GSM1955399': {'line': 'A549', 'type': 'Human lung adenocarcinoma cell line'}, 'GSM2357386': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'pla-B treatment, Ser5 phospho'}, 'GSM1955398': {'line': 'A549', 'type': 'Human lung adenocarcinoma cell line'}, 'GSM2120798': {'line': 'radiosensitive (RS)', 'type': 'lymphoblastoid cell line', 'treatment': 'sham-irradiated', 'point': '4 h'}, 'GSM2120799': {'line': 'radioresistant (RR)', 'type': 'lymphoblastoid cell line', 'treatment': 'sham-irradiated', 'point': '4 h'}, 'GSM2357384': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Total polymerase, EXOC3 KD'}, 'GSM1602363': {'line': 'HeLa'}, 'GSM1602362': {'down': 'SF3B1', 'line': 'HeLa'}, 'GSM1602361': {'down': 'control Non Targeting', 'line': 'HeLa'}, 'GSM1602360': {'line': 'HeLa'}, 'GSM2357383': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Total polymerase, siLuc control for EXOC3 KD'}, 'GSM2357382': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Total polymerase, replicate of Total mNET-Seq (first rep in Nojima et al. 2015, Cell)'}, 'GSM1957179': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957178': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM2887510': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887511': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2887516': {'build': 'GRCh38', 'condition': 'CTS'}, 'GSM2085991': {'line': 'SR-0788', 'sirna': 'Control'}, 'GSM2085992': {'line': 'SR-0788', 'sirna': 'KPC1'}, 'GSM2085993': {'line': 'SR-0788', 'sirna': 'KPC1'}, 'GSM1957171': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957170': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957173': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957172': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957175': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957174': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957177': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1957176': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '37 days'}, 'GSM1345817': {'type': 'osteoblastic cell'}, 'GSM3594245': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594246': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594247': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594240': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1345812': {'type': 'osteoblastic cell'}, 'GSM3594242': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594243': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594248': {'cluster': '6', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM3594249': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1345819': {'type': 'osteoblastic cell'}, 'GSM1345818': {'type': 'osteoblastic cell'}, 'GSM1864264': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Larynx', 'stage': 'T4'}, 'GSM1864265': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T2'}, 'GSM1864266': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Oropharynx', 'stage': 'T2'}, 'GSM1864267': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Larynx', 'stage': 'T3'}, 'GSM1864260': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Oral', 'stage': 'T1'}, 'GSM1864261': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Oral', 'stage': 'T2'}, 'GSM1626499': {'tissue': 'placental villus parenchyma'}, 'GSM1864263': {'status': 'Moderate', 'tissue': 'HNSCC tumour', 'site': 'Oral', 'stage': 'T1'}, 'GSM1626497': {'tissue': 'placental villus parenchyma'}, 'GSM1626496': {'tissue': 'placental villus parenchyma'}, 'GSM1626495': {'tissue': 'placental villus parenchyma'}, 'GSM1626494': {'tissue': 'placental villus parenchyma'}, 'GSM1626493': {'tissue': 'placental villus parenchyma'}, 'GSM1626492': {'tissue': 'placental villus parenchyma'}, 'GSM1626491': {'tissue': 'placental villus parenchyma'}, 'GSM1626490': {'tissue': 'placental villus parenchyma'}, 'GSM2686058': {'line': 'U87MG', 'variation': 'Non-specific shRNA', 'provider': 'ATCC'}, 'GSM2686059': {'line': 'U87MG', 'variation': 'Non-specific shRNA', 'provider': 'ATCC'}, 'GSM1836078': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836079': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836076': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836077': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836075': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '0', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1470040': {'line': 'MCF7', 'description': 'beast cancer cell line', 'treatment': 'shAP2g, 1hr treatment with 100nM E2'}, 'GSM2616684': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD64', 'subtype': 'Tregs'}, 'GSM1872854': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1418959': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3K4me3 (Abcam)', 'treatment': 'DMSO (6hrs)'}, 'GSM1418958': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3 (Abcam)', 'treatment': 'Nutlin-3a (5uM final, 6hrs)'}, 'GSM1418957': {'line': 'IMR90', 'passages': '30-35', 'antibody': 'H3 (Abcam)', 'treatment': 'DMSO (6hrs)'}, 'GSM1145846': {'source': '55 yr old female (heart transplant pulmonary hypertension)', 'type': 'Primary aortic valve endothelial cells', 'treatment': 'NOTCH1 siRNA, No shear stress', 'passage': 'p8'}, 'GSM1145847': {'source': '55 yr old female (heart transplant pulmonary hypertension)', 'type': 'Primary aortic valve endothelial cells', 'treatment': 'Control siRNA, 15 dynes/cm2 shear stress', 'passage': 'p8'}, 'GSM1608287': {'line': 'BJ', 'type': 'Ribosome protected fragments'}, 'GSM1145848': {'source': '55 yr old female (heart transplant pulmonary hypertension)', 'type': 'Primary aortic valve endothelial cells', 'treatment': 'NOTCH1 siRNA, 15 dynes/cm2 shear stress', 'passage': 'p8'}, 'GSM2047783': {'well': 'G01', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1608281': {'line': 'MCF10A-ER-Src', 'type': 'Ribosome protected fragments'}, 'GSM3189075': {'boca': 'No', 'years': '6', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.614481', 'percentaligned': '0.959339', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.793823'}, 'GSM485444': {'line': 'NA18853'}, 'GSM3189077': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'Yes', 'percentage': '12', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.58972', 'percentaligned': '0.955459', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.551819', 'original': 'Control'}, 'GSM485446': {'line': 'NA19203'}, 'GSM485441': {'line': 'NA19222'}, 'GSM2047781': {'well': 'F11', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM485443': {'line': 'NA18862'}, 'GSM485442': {'line': 'NA18916'}, 'GSM2047780': {'well': 'F10', 'individual': 'NA19101', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM3189079': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '26', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.622636', 'percentaligned': '0.928558', 'Sex': 'F', 'nl63': 'No', 'libcounts': '5.810907'}, 'GSM485448': {'line': 'NA19116'}, 'GSM2228469': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '15,000 ng'}, 'GSM2228468': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '1,000 ng'}, 'GSM2228467': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '1,000 ng'}, 'GSM2228466': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '400 ng'}, 'GSM2228465': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '200 ng'}, 'GSM2228464': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '200 ng'}, 'GSM2228463': {'line': 'Hela', 'protocol': \"3'READS+\", 'amount': '100 ng'}, 'GSM1006512': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-prednisolon', 'subject': 'A2'}, 'GSM1579173': {'origin': 'cells in vitro', 'line': 'H3122', 'type': 'lung adenocarcinoma cell line', 'treatment': 'vehicle'}, 'GSM1872859': {'gender': 'Female', 'age': 'old', 'tissue': 'bone'}, 'GSM1006513': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-prednisolon', 'subject': 'A3'}, 'GSM2390953': {'disease': 'Multiple Sclerosis'}, 'GSM2390952': {'disease': 'Multiple Sclerosis'}, 'GSM2390951': {'disease': 'Multiple Sclerosis'}, 'GSM2390950': {'disease': 'Multiple Sclerosis'}, 'GSM2390957': {'disease': 'Multiple Sclerosis'}, 'GSM2390956': {'disease': 'Multiple Sclerosis'}, 'GSM2390955': {'disease': 'Multiple Sclerosis'}, 'GSM2390954': {'disease': 'Multiple Sclerosis'}, 'GSM1006510': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'pre-prednisolon', 'subject': 'A6'}, 'GSM2390959': {'disease': 'Multiple Sclerosis'}, 'GSM2390958': {'disease': 'Multiple Sclerosis'}, 'GSM1937942': {'line': 'acute myeloid leukemia cell line KG1', 'ab': 'None', 'treatment': 'DMSO (0.1%, 6h)'}, 'GSM1937943': {'line': 'acute myeloid leukemia cell line KG1', 'ab': 'CREB (Millipore, 17-600)', 'treatment': 'XX-650-23 (5 mM, 6hrs)'}, 'GSM1937940': {'line': 'acute myeloid leukemia cell line KG1', 'treatment': 'XX-650-23 (5 mM, 12hrs)'}, 'GSM1937941': {'line': 'acute myeloid leukemia cell line KG1', 'ab': 'CREB (Millipore, 17-600)', 'treatment': 'DMSO (0.1%, 6h)'}, 'GSM1138789': {'line': 'MalMe3M'}, 'GSM1138788': {'line': 'C32'}, 'GSM1006511': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-prednisolon', 'subject': 'A1'}, 'GSM2465055': {'line': 'ZR75-1', 'passages': '10-12', 'type': 'breast cancer'}, 'GSM2465054': {'line': 'ZR75-1', 'passages': '10-12', 'type': 'breast cancer'}, 'GSM2088027': {'status': 'Normal', 'ratio': '1.35987266475244', 'age': '70', 'years': '40', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Female', 'alignments': '57507982', 'alignment': '35952278'}, 'GSM2088026': {'status': 'Normal', 'ratio': '1.09565260914836', 'age': '60', 'years': '60.8', 'content': '50.51', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Female', 'alignments': '87542502', 'alignment': '54584071'}, 'GSM2088025': {'status': 'Normal', 'ratio': '1.50268667460977', 'age': '57', 'years': '41', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Male', 'alignments': '54805998', 'alignment': '33526451'}, 'GSM2088024': {'status': 'Dysplasia', 'ratio': '1.69250566584588', 'age': '58', 'years': '37', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '64850726', 'alignment': '40116325'}, 'GSM2088023': {'status': 'Dysplasia', 'ratio': '1.08780915290912', 'age': '71', 'years': '50.6', 'content': '44.44', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'Sex': 'Male', 'alignments': '77512904', 'alignment': '48601471'}, 'GSM2088022': {'status': 'Normal', 'ratio': '1.24236040162325', 'age': '60', 'years': '30', 'content': '53.54', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '60469888', 'alignment': '37389556'}, 'GSM2088021': {'status': 'Normal', 'ratio': '1.35005878709671', 'age': '71', 'years': '54', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'Sex': 'Male', 'alignments': '56455218', 'alignment': '34883586'}, 'GSM2088020': {'status': 'Normal', 'ratio': '1.16343845353576', 'age': '71', 'years': '38', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '91589632', 'alignment': '56713125'}, 'GSM2689141': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689140': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689143': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689142': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689145': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689144': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2088029': {'status': 'Dysplasia', 'ratio': '1.0765341530035', 'age': '71', 'years': '53', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'Sex': 'Male', 'alignments': '95705760', 'alignment': '59194342'}, 'GSM2088028': {'status': 'Normal', 'ratio': '1.34266071430887', 'age': '71', 'years': '114', 'content': '48.48', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'Sex': 'Male', 'alignments': '60129516', 'alignment': '36996943'}, 'GSM1006516': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall', 'treatment': 'post-prednisolon', 'subject': 'A6'}, 'GSM2545825': {'treatment': 'LDN-193189 (0.2 µM)', 'histology': 'colon adenocarcinoma'}, 'GSM4008618': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy immediately following exercise bout', 'Sex': 'male'}, 'GSM2543976': {'library_id': 'lib8266', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1686446': {'line': 'Kupffer cells (Primary culture (Life technologies))', 'treatment': 'BxPc3 Beta5KD exosomes'}, 'GSM1686447': {'line': 'Kupffer cells (Primary culture (Life technologies))', 'treatment': 'BxPc3 Beta5KD exosomes'}, 'GSM1381992': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1823318': {'line': '553.C2', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM1686448': {'line': 'Kupffer cells (Primary culture (Life technologies))', 'treatment': 'PBS'}, 'GSM1686449': {'line': 'Kupffer cells (Primary culture (Life technologies))', 'treatment': 'PBS'}, 'GSM2274692': {'area_under_the_curve': '2.490464688', 'siteandparticipantcode': '106306', 'baseline_area_under_the_curve': '1.541891094', 'projectid': 'P54-7', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '161.5201422', 'auc_percent_of_baseline': '161.5201422', 'samplebarcode': '927496-14', 'trunkbarcode': '927496', 'sampleID': 'S32740', 'c1captureannotation': 'single cell', 'flowcellid': 'C6RNYANXX', 'status': 'R', 'samplelabel': 'lib9330', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '8', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_106306', 'gender': 'Female', 'age': '12', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'American Indian or Alaska Native; White', 'c1capturesite': 'C57', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050013', 'libraryid': 'lib9330', 'studysiteshort': 'UCSF'}, 'GSM417716': {'ine': '293T'}, 'GSM1395742': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM417715': {'ine': '293T'}, 'GSM1395743': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395740': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395741': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2773408': {'tissue': 'CD14+ monocytes', 'number': 'donor 1'}, 'GSM2773409': {'tissue': 'CD14+ monocytes', 'number': 'donor 2'}, 'GSM1823314': {'line': '553.C2', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM2139815': {'gender': 'female', 'type': 'embryonic stem cells', 'passage': 'p50'}, 'GSM2139814': {'gender': 'female', 'type': 'embryonic stem cells', 'passage': 'p13'}, 'GSM2139816': {'gender': 'male', 'type': 'somatic cells', 'passage': 'p2'}, 'GSM2139811': {'gender': 'female', 'type': 'embryonic stem cells', 'passage': 'p13'}, 'GSM2139813': {'gender': 'female', 'type': 'embryonic stem cells', 'passage': 'p13'}, 'GSM2139812': {'gender': 'female', 'type': 'embryonic stem cells', 'passage': 'p14'}, 'GSM1381991': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1381996': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2304501': {'tissue': 'Endometrium', 'point': 'TP1 (proliferative phase)'}, 'GSM2649318': {'line': 'Kelly', 'tissue': 'Neurablastoma cell line'}, 'GSM2304500': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM1381997': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2649317': {'line': 'Be2C', 'tissue': 'Neurablastoma cell line'}, 'GSM1378024': {'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1897329': {'line': 'MDAMB415', 'type': 'breast cancer cell line'}, 'GSM2304502': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM1897323': {'line': 'MDAMB134VI', 'type': 'breast cancer cell line'}, 'GSM1897322': {'line': 'MCF7', 'type': 'breast cancer cell line'}, 'GSM1897321': {'line': 'MCF12A', 'type': 'breast cancer cell line'}, 'GSM1897320': {'line': 'MCF10A', 'type': 'breast cancer cell line'}, 'GSM1897327': {'line': 'MDAMB330', 'type': 'breast cancer cell line'}, 'GSM1897326': {'line': 'MDAMB231', 'type': 'breast cancer cell line'}, 'GSM1897325': {'line': 'MDAMB175VII', 'type': 'breast cancer cell line'}, 'GSM1897324': {'line': 'MDAMB157', 'type': 'breast cancer cell line'}, 'GSM2109279': {'line': 'IMR90', 'vector': 'GFP', 'type': 'lung embryonic fibroblast'}, 'GSM1378020': {'line': 'Retro-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1381994': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2304506': {'tissue': 'Endometrium', 'point': 'TP2 (7-9 days after ovulation)'}, 'GSM1387572': {'barcode': 'CGATGT', 'type': 'primary macrophages', 'treatment': 'none'}, 'GSM1387573': {'barcode': 'CAGATC', 'type': 'primary macrophages', 'treatment': 'co-culture with fibroblast'}, 'GSM2515699': {'age': '55', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2515698': {'age': '52', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM1387574': {'barcode': 'AGTCAA', 'type': 'primary macrophages', 'treatment': 'TNF'}, 'GSM1387575': {'barcode': 'GTGAAA', 'type': 'primary macrophages', 'treatment': 'TNF + co-culture with fibroblast'}, 'GSM2375471': {'tissue': 'iPSC-derived neuron', 'group': 'patients'}, 'GSM2375470': {'tissue': 'iPSC-derived neuron', 'group': 'patients'}, 'GSM2375473': {'type': 'Human derived cell line', 'treatment': 'shCtl'}, 'GSM2375472': {'tissue': 'iPSC-derived neuron', 'group': 'patients'}, 'GSM2375475': {'type': 'Human derived cell line', 'treatment': 'shTMEM258'}, 'GSM2375474': {'type': 'Human derived cell line', 'treatment': 'shCtl'}, 'GSM2375477': {'type': 'Human derived cell line', 'treatment': 'shTMEM258'}, 'GSM2375476': {'type': 'Human derived cell line', 'treatment': 'shTMEM258'}, 'GSM2243604': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2141381': {'individual': 'EU68', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2243606': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1858938': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'LTR362'}, 'GSM2243600': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1381995': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2243602': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243603': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A11', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243608': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'D12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243609': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1858935': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'LTR362'}, 'GSM1858934': {'line': 'LChIT clone 3.2', 'treatment': 'None', 'sgrna': 'LTR362'}, 'GSM2666102': {'age': 'Day 130', 'well': 'C3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666103': {'age': 'Day 130', 'well': 'B7', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666100': {'age': 'Day 130', 'well': 'H3', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666101': {'age': 'Day 130', 'well': 'A11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666106': {'age': 'Day 130', 'well': 'B4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666107': {'age': 'Day 130', 'well': 'H8', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666104': {'age': 'Day 130', 'well': 'A4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666105': {'age': 'Day 130', 'well': 'F2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666108': {'age': 'Day 130', 'well': 'G6', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM2666109': {'age': 'Day 130', 'well': 'C4', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000288'}, 'GSM1592609': {'line': 'EPC2-hTERT', 'conditions': 'submerged (day 8)', 'treatment': 'untreated'}, 'GSM2448993': {'line': 'HMEC-1', 'drug': 'AMI-1 100μM in DMSO, 16 h'}, 'GSM2705030': {'source': 'Primary cells', 'tissue': 'Peripheral blood', 'type': 'CD3+ Lymphocytes', 'treatment': 'Vehicle', 'donor': '266'}, 'GSM1133681': {'tissue': 'whole blood', 'time': '180 days post LVAD'}, 'GSM1133680': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM1133683': {'tissue': 'whole blood', 'time': '7 days post LVAD'}, 'GSM1133682': {'tissue': 'whole blood', 'time': 'pre-LVAD'}, 'GSM1133684': {'tissue': 'whole blood', 'time': '180 days post LVAD'}, 'GSM1914595': {'type': 'cerebral organoid'}, 'GSM1901037': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'JQ1 and PD0325901'}, 'GSM1381998': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM2040759': {'line': 'GM06990', 'type': 'lymphoblastoid cell', 'age': '41', 'genotype': 'wild type'}, 'GSM2040758': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM2040751': {'line': 'ID00014', 'type': 'lymphoblastoid cell', 'age': '34', 'genotype': '22q11del'}, 'GSM2040750': {'line': 'GM06990', 'type': 'lymphoblastoid cell', 'age': '41', 'genotype': 'wild type'}, 'GSM2040753': {'line': 'ID00016', 'type': 'lymphoblastoid cell', 'age': '11', 'genotype': '22q11del'}, 'GSM2040752': {'line': 'ID00015', 'type': 'lymphoblastoid cell', 'age': '57', 'genotype': 'wild type'}, 'GSM2040755': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2040754': {'line': 'ID00016', 'type': 'lymphoblastoid cell', 'age': '11', 'genotype': '22q11del'}, 'GSM2040757': {'line': 'GM17942', 'type': 'lymphoblastoid cell', 'age': '6', 'genotype': '22q11del'}, 'GSM2040756': {'line': 'GM12878', 'type': 'lymphoblastoid cell', 'age': '-', 'genotype': 'wild type'}, 'GSM2455252': {'type': 'patient-derived CD34+ sAML progenitor cells', 'treatment': 'Control'}, 'GSM2455253': {'type': 'patient-derived CD34+ sAML progenitor cells', 'treatment': 'Control'}, 'GSM2455250': {'type': 'patient-derived CD34+ sAML progenitor cells', 'treatment': 'OTX015'}, 'GSM2455251': {'type': 'patient-derived CD34+ sAML progenitor cells', 'treatment': 'OTX015'}, 'GSM985102': {'line': 'HT1080', 'protocol': 'Doxycycline +/ Shield -', 'clone': 'm6A-Tracer-VP16'}, 'GSM985101': {'line': 'HT1080', 'protocol': 'Doxycycline -/ Shield +', 'clone': 'm6A-Tracer'}, 'GSM2298398': {'status': 'KO', 'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'DMSO', 'batch': '1'}, 'GSM2298399': {'status': 'KO', 'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'DMSO', 'batch': '2'}, 'GSM2859357': {'type': 'hemapoietic stem cell', 'treatment': 'untreated'}, 'GSM985100': {'line': 'HT1080', 'protocol': 'Doxycycline -/ Shield -', 'clone': 'm6A-Tracer'}, 'GSM2859356': {'type': 'hemapoietic stem cell', 'treatment': 'B1 Ab'}, 'GSM2190173': {'condition': 'Serum', 'variation': 'G13R'}, 'GSM2190172': {'condition': 'Serum', 'variation': 'G13R'}, 'GSM2190171': {'condition': 'Normal', 'variation': 'G13R'}, 'GSM2190170': {'condition': 'Normal', 'variation': 'G13R'}, 'GSM2190177': {'condition': 'Serum', 'variation': 'GFP'}, 'GSM2190176': {'condition': 'Serum', 'variation': 'GFP'}, 'GSM2190175': {'condition': 'Normal', 'variation': 'GFP'}, 'GSM2190174': {'condition': 'Normal', 'variation': 'GFP'}, 'GSM2178786': {'ir': '1.38888888888889', 'weight': 'obese', 'gender': 'female', 'age': '46', 'bmi': '31.9', 'disease': 't2d', 'l': '0.13', 'h': '2', 'id': '46a'}, 'GSM2178787': {'ir': '0.362187613183629', 'weight': 'non-obese', 'gender': 'male', 'age': '62', 'bmi': '22.6', 'disease': 't2d', 'l': 'NA', 'h': '2', 'id': '20a'}, 'GSM2178784': {'ir': '1.96850393700787', 'weight': 'non-obese', 'gender': 'male', 'age': '61', 'bmi': '24.7', 'disease': 't2d', 'l': '0.16', 'h': '0.5', 'id': '63a'}, 'GSM2178785': {'ir': '1.38888888888889', 'weight': 'obese', 'gender': 'female', 'age': '46', 'bmi': '31.9', 'disease': 't2d', 'l': '0.13', 'h': '1', 'id': '46a'}, 'GSM2178782': {'ir': '0.375657400450789', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '24.4', 'disease': 'ngt', 'l': '0.12', 'h': '1', 'id': '35a'}, 'GSM2178783': {'ir': '1.45560407569141', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '25.9', 'disease': 't2d', 'l': '0.12', 'h': '2', 'id': '119a'}, 'GSM2178780': {'ir': '0.37243947858473', 'weight': 'obese', 'gender': 'female', 'age': '59', 'bmi': '30', 'disease': 't2d', 'l': '0.1', 'h': '2', 'id': '124a'}, 'GSM2178781': {'ir': '0.375657400450789', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '24.4', 'disease': 'ngt', 'l': '0.12', 'h': '0.5', 'id': '35a'}, 'GSM985104': {'line': 'HT1080', 'protocol': 'Doxycycline -/ Shield +', 'clone': 'm6A-Tracer-VP16'}, 'GSM2178788': {'ir': '1.30378096479791', 'weight': 'obese', 'gender': 'female', 'age': '48', 'bmi': '32.7', 'disease': 'ngt', 'l': '0.05', 'h': '1', 'id': '79a'}, 'GSM2178789': {'ir': '2.47524752475248', 'weight': 'obese', 'gender': 'male', 'age': '58', 'bmi': '38.3', 'disease': 't2d', 'l': '0.12', 'h': '2', 'id': '53a'}, 'GSM2348372': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348373': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348370': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348371': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348376': {'samhd1': 'knockout', 'media': 'conditioned media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348377': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348374': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348375': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348378': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348379': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2405954': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF38A knockdown'}, 'GSM1965009': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2405950': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF38A knockdown'}, 'GSM2405951': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF38A knockdown'}, 'GSM2405952': {'line': 'MB468', 'type': 'Triple Negative Breast Cancer Cell line', 'variation': 'PRPF38A knockdown'}, 'GSM1945919': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18489', 'for': '60min'}, 'GSM1965000': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965001': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965002': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965003': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965004': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965005': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965006': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1965007': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM979631': {'lineage': 'ectoderm', 'description': 'Single 36 nt reads', 'localization': 'nucleus', 'datatype': 'Cage', 'labexpid': 'CTig10028', 'readtype': '1x36', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'biorep': 'gen0163N'}, 'GSM2448992': {'line': 'HMEC-1', 'drug': 'AMI-1 100μM in DMSO, 16 h'}, 'GSM2338122': {'line': '54-1', 'type': 'skeletal myoblast', 'treatment': 'control siRNA', 'point': 'Differentiation media day2'}, 'GSM2338123': {'line': '54-1', 'type': 'skeletal myoblast', 'treatment': 'UPF1 siRNA', 'point': 'Differentiation media day2'}, 'GSM2262876': {'protocol': 'LPS exposed, collected at 4 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262877': {'protocol': 'LPS exposed, collected at 4 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262874': {'protocol': 'LPS exposed, collected at 1 hour post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262875': {'protocol': 'LPS exposed, collected at 4 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262872': {'protocol': '5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262873': {'protocol': 'LPS exposed, collected at 1 hour post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262870': {'protocol': '5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262871': {'protocol': '5 uM IBET151 exposed 24 hours, culture for 5 days to macrophage.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2100521': {'age': 'Neonatal', 'tissue': 'Skin', 'type': 'Foreskin-derived Merkel cells', 'construct': 'GFP'}, 'GSM1945914': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18486', 'for': '30min'}, 'GSM2100522': {'age': 'Neonatal', 'tissue': 'Skin', 'type': 'Foreskin-derived Merkel cells', 'construct': 'Merkel cell poylomavirus (MCCL21) early-region'}, 'GSM1657092': {'knockdown': 'PITX2', 'type': 'ES-derived cardiomyocytes', 'subtype': 'miRNA'}, 'GSM2262878': {'protocol': 'LPS exposed, collected at 24 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262879': {'protocol': 'LPS exposed, collected at 24 hours post exposure.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM1598291': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM1598290': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM1598293': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM1598292': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM1598295': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM2575376': {'line': 'WM983B', 'subclone': 'F9', 'condition': 'Drug'}, 'GSM1598297': {'type': 'embryo', 'viability': 'bad', 'stage': '2PN zygote'}, 'GSM1598296': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM1598299': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM1598298': {'type': 'embryo', 'viability': 'good', 'stage': '2PN zygote'}, 'GSM1945917': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18486', 'for': '60min'}, 'GSM2251221': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2374793': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374792': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2142424': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2374790': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2142422': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2374796': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374795': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2142421': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2374799': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374798': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2142428': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM2142429': {'line': 'ATCC CRL-2522', 'passages': '10'}, 'GSM1808007': {'tissue': 'Kidney'}, 'GSM979635': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10058', 'readtype': '1x50', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '043WC'}, 'GSM1914563': {'type': 'cerebral organoid'}, 'GSM1914562': {'type': 'cerebral organoid'}, 'GSM1914561': {'type': 'cerebral organoid'}, 'GSM1914560': {'type': 'cerebral organoid'}, 'GSM1914567': {'type': 'cerebral organoid'}, 'GSM1914566': {'type': 'cerebral organoid'}, 'GSM1914565': {'type': 'cerebral organoid'}, 'GSM1914564': {'type': 'cerebral organoid'}, 'GSM1716772': {'line': 'LHSAR', 'type': 'LHSAR overexpressed with LacZ', 'treatment': '1nM R1881'}, 'GSM1716773': {'line': 'LHSAR', 'type': 'LHSAR overexpressed with FOXA1', 'treatment': '1nM R1881'}, 'GSM1914569': {'type': 'cerebral organoid'}, 'GSM1914568': {'type': 'cerebral organoid'}, 'GSM1716776': {'line': 'LHSAR', 'type': 'LHSAR overexpressed with HOXB13', 'treatment': '1nM R1881'}, 'GSM1716777': {'line': 'LHSAR', 'type': 'LHSAR overexpressed with HOXB13 and FOXA1', 'treatment': '1nM R1881'}, 'GSM1716774': {'line': 'LHSAR', 'type': 'LHSAR overexpressed with FOXA1', 'treatment': '1nM R1881'}, 'GSM1716775': {'line': 'LHSAR', 'type': 'LHSAR overexpressed with HOXB13', 'treatment': '1nM R1881'}, 'GSM3190833': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A02', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.3', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.6674'}, 'GSM2560391': {'sirna': 'transfected with control siRNAs'}, 'GSM2560392': {'sirna': 'transfected with TBX4 siRNAs'}, 'GSM3190830': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-Cpat28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.4', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.3', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.142943'}, 'GSM3190837': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.433031'}, 'GSM3190836': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'Yes', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.6', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.543058'}, 'GSM3190835': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'Yes', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '4.7', 'mpv': 'Yes', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.2', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.617362'}, 'GSM2185673': {'race': 'NB', 'staging': '6', 'total_grade': '3', 'cea': '3.4', 'hcv_genotype': '1', 'hcv_activity': '1', 'age': '66', 'focal_lytic_nec_apop': '1', 'batch': '1', 'sgpt': '132', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Tumor', 'tissue': 'liver', 'interface_necrosis': '1', 'sgot': '83', 'ca19_9': 'NA', 'differentiation': '2', 'portal_inflammation': '1', 'afp': '13.3', 'hcv_viral_load': '1111620'}, 'GSM3190839': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.707315'}, 'GSM3190838': {'boca': 'No', 'years': '13', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB5HFANXX', '4': 'No', 'count': '5.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.963151'}, 'GSM2361807': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM1901035': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'doxycycline and JQ1'}, 'GSM2361806': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361801': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361800': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2815979': {'line': 'H9'}, 'GSM2815978': {'line': 'H9'}, 'GSM2185674': {'race': 'NB', 'staging': '6', 'total_grade': 'NA', 'cea': 'NA', 'hcv_genotype': '1', 'hcv_activity': '2', 'age': '60', 'focal_lytic_nec_apop': 'NA', 'batch': '1', 'sgpt': 'NA', 'Sex': 'F', 'confluent_necrosis': 'NA', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': 'NA', 'sgot': 'NA', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': 'NA', 'afp': '171', 'hcv_viral_load': '95528'}, 'GSM2815973': {'line': 'H9'}, 'GSM2815972': {'line': 'H9'}, 'GSM2815971': {'line': 'H9'}, 'GSM2913038': {'line': 'MOLT4', 'type': 'T-ALL'}, 'GSM2815977': {'line': 'H9'}, 'GSM2815976': {'line': 'H9'}, 'GSM2815975': {'line': 'H9'}, 'GSM2815974': {'line': 'H9'}, 'GSM1551292': {'tissue': 'Normal Thyroid', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551293': {'tissue': 'Normal Thyroid', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551290': {'tissue': 'Normal Thyroid', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551291': {'tissue': 'Normal Thyroid', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551294': {'tissue': 'Normal Thyroid', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM1551295': {'tissue': 'Normal Thyroid', 'molecule': 'mRNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM2285686': {'line': 'H9', 'type': 'Poly(A)+ RNA', 'treatment': 'Embryonic stem cells'}, 'GSM2285687': {'line': 'H9', 'type': 'Poly(A)+ RNA', 'treatment': 'Embryonic stem cells'}, 'GSM2285684': {'line': 'H9', 'type': 'Poly(A)+ RNA', 'treatment': 'Embryonic stem cells'}, 'GSM2285685': {'line': 'H9', 'type': 'Poly(A)+ RNA', 'treatment': 'Embryonic stem cells'}, 'GSM1133030': {'type': 'gastric normal tissue'}, 'GSM1133031': {'type': 'gastric normal tissue'}, 'GSM2050844': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050845': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050846': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050847': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2287688': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287689': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2050842': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2050843': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2287684': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287685': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287686': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287687': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287680': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2050849': {'line': 'foreskin HDF', 'passage': 'p2'}, 'GSM2287682': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2287683': {'multiplexing': '24', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM1481728': {'with': 'empty vector (V0)', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM1481729': {'with': 'vectors coding for Myc-KPC1', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM1808871': {'type': 'proximal tubular epithelial cells', 'treatment': 'Cytokine treated'}, 'GSM1808870': {'type': 'proximal tubular epithelial cells', 'treatment': 'Cytokine treated'}, 'GSM1264339': {'line': 'MCF-7', 'replicates': '2', 'variation': 'control'}, 'GSM1694199': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM2562536': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562537': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562534': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562535': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562532': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562533': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562530': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562531': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562538': {'gender': 'male', 'race': 'Malay', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2562539': {'gender': 'female', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1557551': {'antibody': 'Anti-pan AGO 2A8 mAb (Diagenode, catalog# MAb-167-100, lot# 001)', 'type': 'foreskin fibroblast', 'infection': 'uninfected', 'time': '0h'}, 'GSM1481721': {'with': 'empty vector (V0)', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM2370633': {'antibodies': 'H3K4me1 (Abcam ab8895)', 'type': 'Resting naive CD4 purified cells', 'ids': '487'}, 'GSM453868': {'hapmap': 'YRI', 'line': 'GM19238'}, 'GSM453869': {'hapmap': 'YRI', 'line': 'GM19239'}, 'GSM1694196': {'tissue': 'Portal vein tumor thrombus', 'type': 'HCC', 'stage': 'III'}, 'GSM2212052': {'type': 'primary acute myeloid leukemia patient cells', 'treatment': '250 nM JQ1, 1 hr'}, 'GSM2212051': {'type': 'primary acute myeloid leukemia patient cells', 'treatment': 'DMSO, 1hr'}, 'GSM2212050': {'line': 'Kasumi-1 cells', 'treatment': '250 nM JQ1, 30 min'}, 'GSM2212054': {'line': 'Kasumi-1 cells', 'treatment': 'none'}, 'GSM2794856': {'status': 'poorly differentiated', 'tissue': 'non-tumor', 'infection': 'HBV infection-free', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2801'}, 'GSM1575557': {'line': 'HeLa', 'antibody': 'Argonaute-2 (AGO2) (ab57113, Abcam)', 'construct': 'miR-503'}, 'GSM2794854': {'status': 'well differentiated', 'tissue': 'non-tumor', 'infection': 'HBV infection-free', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2796'}, 'GSM2794855': {'status': 'well differentiated', 'tissue': 'tumor', 'infection': 'HBV infection-free', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2796'}, 'GSM2794852': {'status': 'well differentiated', 'tissue': 'non-tumor', 'infection': 'HBV-infected', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2777'}, 'GSM2794853': {'status': 'well differentiated', 'tissue': 'tumor', 'infection': 'HBV-infected', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2777'}, 'GSM2794850': {'status': 'poorly differentiated', 'tissue': 'tumor', 'infection': 'HBV-infected', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2762'}, 'GSM2794851': {'status': 'well differentiated', 'tissue': 'tumor', 'infection': 'HBV-infected', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2766'}, 'GSM2794858': {'status': 'poorly differentiated', 'tissue': 'tumor', 'infection': 'HBV infection-free', 'cirrhosis': 'with Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2809'}, 'GSM2794859': {'status': 'well differentiated', 'tissue': 'tumor', 'infection': 'HBV infection-free', 'cirrhosis': 'without Liver Cirrhosis', 'state': 'HCC', 'individual': 'patient No.2848'}, 'GSM857468': {'status': 'KRAS wildtype', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857469': {'status': 'KRAS wildtype', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857464': {'status': 'KRAS mutant ©', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857465': {'status': 'KRAS mutant ©', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857466': {'status': 'KRAS mutant (v)', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM857467': {'status': 'KRAS mutant ©', 'passages': 'ATCC low passage', 'type': 'Lung adenocarcinoma'}, 'GSM2044429': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044428': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM1631709': {'type': 'U937', 'treatment': '5uM 11,12-EET for 2 hrs'}, 'GSM2044423': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044422': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044421': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM1631708': {'type': 'CD34+ cell', 'treatment': 'DMSO'}, 'GSM2262465': {'line': 'HeLa'}, 'GSM2262464': {'line': 'HeLa'}, 'GSM2044425': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM2044424': {'state': 'healthy', 'passages': '5-9', 'type': 'Human aortic endothelial cell'}, 'GSM1901033': {'line': 'NCI-H1299', 'shRNA': 'NSD2_sh3', 'treatment': 'JQ1'}, 'GSM941196': {'line': 'LNCaP', 'passages': '32-34', 'type': 'prostate cancer cells'}, 'GSM2543726': {'library_id': 'lib5867', 'stim': 'DM', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543727': {'library_id': 'lib5868', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543724': {'library_id': 'lib5865', 'stim': 'CR', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543725': {'library_id': 'lib5866', 'stim': 'TT', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543722': {'library_id': 'lib5863', 'stim': 'DM', 'group': 'Case', 'classification': 'Case', 'level': '0.088', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543723': {'library_id': 'lib5864', 'stim': 'NS', 'group': 'Control', 'classification': 'Not Included', 'level': 'NA', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543720': {'library_id': 'lib5861', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.088', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543721': {'library_id': 'lib5862', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.088', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543728': {'library_id': 'lib5869', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543729': {'library_id': 'lib5870', 'stim': 'NS', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1289407': {'line': 'HeLa (Human cervical carcinoma cell line)', 'protocol': 'RNaseR treated'}, 'GSM1289406': {'line': 'HeLa (Human cervical carcinoma cell line)', 'protocol': 'RNaseR treated'}, 'GSM1281788': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '10', 'gender': 'Male', 'age': '33', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281789': {'status': '6 months LVAD support', 'pacemaker': 'N/A', 'fraction': '10', 'gender': 'Male', 'age': '33', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2008', 'race': 'Caucasian', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '377'}, 'GSM1281780': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '24', 'gender': 'Male', 'age': '66', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '51'}, 'GSM1281781': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '23', 'gender': 'Male', 'age': '66', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '51'}, 'GSM1281782': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '24', 'gender': 'Male', 'age': '66', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'III-IV', 'device': 'HeartMate II', 'lvad': '51'}, 'GSM1281783': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '23', 'gender': 'Male', 'age': '66', 'tissue': 'Plasma', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'III-IV', 'device': 'HeartMate II', 'lvad': '51'}, 'GSM1281784': {'status': 'Explantation', 'pacemaker': 'N/A', 'fraction': '24', 'gender': 'Male', 'age': '66', 'tissue': 'Serum', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'III-IV', 'device': 'HeartMate II', 'lvad': '51'}, 'GSM1281785': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '23', 'gender': 'Male', 'age': '66', 'tissue': 'Serum', 'disease': 'Dilated Cardiomyopathy', 'onset': '2006', 'race': 'Caucasian', 'nyha': 'III-IV', 'device': 'HeartMate II', 'lvad': '51'}, 'GSM1281786': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '15', 'gender': 'Male', 'age': '40', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2009', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1281787': {'status': 'No LVAD', 'pacemaker': 'N/A', 'fraction': '20', 'gender': 'Male', 'age': '70', 'tissue': 'Cardiac Muscle', 'disease': 'Dilated Cardiomyopathy', 'onset': '2000', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM2060279': {'line': 'HCT116'}, 'GSM1866061': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866062': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866063': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1681951': {'gender': 'male', 'age': '49', 'tissue': 'Tumor', 'class': 'II'}, 'GSM1681950': {'gender': 'male', 'age': '52', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681953': {'gender': 'male', 'age': '57', 'tissue': 'Tumor', 'class': 'II'}, 'GSM1681952': {'gender': 'male', 'age': '66', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1968911': {'state': 'Normal', 'type': 'induced pluripotent stem cell'}, 'GSM1228217': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228216': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228215': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228214': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228213': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228212': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228211': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228210': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228219': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM1228218': {'tissue': 'normal-looking surrounding colonic epithelium', 'stage': 'Stage IV'}, 'GSM2559744': {'differentiation': 'Moderately', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P26', 'stage': 'B(BCLC)'}, 'GSM1440296': {'line': 'Daoy', 'tissue': 'brain/cerebellum', 'type': 'cerebellar medulloblastoma', 'variation': 'control'}, 'GSM2042868': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM1900336': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '1 uM PaPE', 'time': '24h', 'line': 'MCF7', 'inhibitor': 'Ctrl'}, 'GSM2042864': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2316889': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2042866': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '2hr'}, 'GSM2042860': {'antibody': 'anti-PPARG (Santa Cruz, sc-7273)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM2042862': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '2hr'}, 'GSM1708995': {'line': 'H1', 'type': 'Embryonic stem cells', 'genotype': 'GATA2-/-'}, 'GSM1834011': {'type': 'Erythroblasts', 'treatment': 'vehicle control'}, 'GSM1900330': {'Sex': 'Female', 'tissue': 'Breast', 'treatment': '1 uM PaPE', 'time': '4h', 'line': 'MCF7', 'inhibitor': '1 uM AZD6422'}, 'GSM2290635': {'type': 'Normal Human Cholangiocyte'}, 'GSM2290634': {'type': 'Normal Human Cholangiocyte'}, 'GSM1808017': {'tissue': 'Heart'}, 'GSM1808016': {'tissue': 'Kidney'}, 'GSM2290631': {'type': 'iPSC-Derived Cholangiocytes'}, 'GSM2290630': {'type': 'iPSC-Derived Cholangiocytes'}, 'GSM2290633': {'type': 'Normal Human Cholangiocyte'}, 'GSM2290632': {'type': 'iPSC-Derived Cholangiocytes'}, 'GSM1708994': {'line': 'H1', 'type': 'Embryonic stem cells', 'genotype': 'GATA2-/-'}, 'GSM1808018': {'tissue': 'Heart'}, 'GSM2932941': {'pucai': '50', 'score': '4', 'remission': 'No', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM2316858': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316859': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM1465024': {'line': 'HCT116', 'type': 'human colorectal cancer cell line', 'variation': 'wild type'}, 'GSM2316854': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316855': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316856': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316857': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316850': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316851': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316852': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2316853': {'control': 'FALSE', 'culture': '54', 'line': 'DCX-'}, 'GSM2055779': {'tissue': 'Brain'}, 'GSM2932944': {'pucai': '10', 'score': '2', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '17'}, 'GSM1708997': {'line': 'H1', 'type': 'ES derived Hemogenic endothelium', 'genotype': 'wildtype'}, 'GSM2932945': {'pucai': '20', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '17'}, 'GSM2424899': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2932948': {'pucai': '30', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '16'}, 'GSM2559748': {'differentiation': 'Moderately', 'state': 'hepatocellular carcinoma (HCC)', 'tissue': 'adjacent non-tumorous liver', 'id': 'P36', 'stage': 'B(BCLC)'}, 'GSM2545764': {'line': 'HeLa', 'antibody': 'anti-Flag', 'variation': 'expressing Flag-NF90', 'sequence': 'NNNGCCGNN'}, 'GSM2932949': {'pucai': '55', 'score': '2', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM1708996': {'line': 'H1', 'type': 'ES derived Hemogenic endothelium', 'genotype': 'wildtype'}, 'GSM2448995': {'line': 'HMEC-1', 'drug': 'AMI-5 100μM in DMSO, 16 h'}, 'GSM1423496': {'gender': 'male', 'line': 'HCT116'}, 'GSM1423497': {'gender': 'male', 'line': 'HCT116'}, 'GSM1423494': {'gender': 'male', 'line': 'HCT116'}, 'GSM1423495': {'gender': 'male', 'line': 'HCT116'}, 'GSM1708999': {'line': 'H1', 'type': 'ES derived Hemogenic endothelium', 'genotype': 'GATA2-/-'}, 'GSM1376021': {'state': 'Normal', 'tissue': 'lung'}, 'GSM2736005': {'line': 'H1', 'type': 'human Embryonic stem cells (hESC)'}, 'GSM2736004': {'line': 'H1', 'type': 'human Embryonic stem cells (hESC)'}, 'GSM2736007': {'line': 'HeLa'}, 'GSM2736006': {'line': 'HeLa'}, 'GSM2392064': {'subtype': 'triple-negative breast cancer (TNBC)', 'type': 'primary breast cancer', 'id': 'BC09'}, 'GSM1609379': {'line': 'GM12878', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1609378': {'line': 'GM12878', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM2779672': {'transfection': 'none', 'passages': '10-20', 'type': 'Fetus derived cell line from female human embryonic kidney', 'treatment': 'DMSO for 2h'}, 'GSM1609377': {'line': 'GM10847', 'type': 'ribosome protected fragment', 'adapter': 'AGATCGGAAGAGCACACGTCT'}, 'GSM1808000': {'tissue': 'Kidney'}, 'GSM2325755': {'type': 'embryonic stem cells'}, 'GSM2325754': {'type': 'embryonic stem cells'}, 'GSM2325757': {'type': 'embryonic stem cells'}, 'GSM2325756': {'type': 'embryonic stem cells'}, 'GSM2325751': {'type': 'embryonic stem cells'}, 'GSM2325750': {'type': 'embryonic stem cells'}, 'GSM2325753': {'type': 'embryonic stem cells'}, 'GSM2325752': {'type': 'embryonic stem cells'}, 'GSM1619125': {'individual': 'Patient 4', 'type': 'DCIS cells'}, 'GSM1619124': {'individual': 'Patient 3', 'type': 'DCIS cells'}, 'GSM1619127': {'individual': 'Patient 6', 'type': 'DCIS cells'}, 'GSM1619126': {'individual': 'Patient 5', 'type': 'DCIS cells'}, 'GSM2325759': {'type': 'embryonic stem cells'}, 'GSM2325758': {'type': 'embryonic stem cells'}, 'GSM1619123': {'individual': 'Patient 2', 'type': 'DCIS cells'}, 'GSM1619122': {'individual': 'Patient 1', 'type': 'DCIS cells'}, 'GSM2047509': {'well': 'H06', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047508': {'well': 'H05', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047505': {'well': 'H02', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047504': {'well': 'H01', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047507': {'well': 'H04', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2100597': {'type': 'human cervical cancer cell line'}, 'GSM2047501': {'well': 'G10', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047500': {'well': 'G09', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047503': {'well': 'G12', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047502': {'well': 'G11', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2242829': {'line': 'A375', 'replicate': '4'}, 'GSM2242828': {'line': 'A375', 'replicate': '4'}, 'GSM2242823': {'line': 'A375', 'replicate': '4'}, 'GSM2242822': {'line': 'A375', 'replicate': '4'}, 'GSM2242821': {'line': 'A375', 'replicate': '4'}, 'GSM2242820': {'line': 'A375', 'replicate': '4'}, 'GSM2242827': {'line': 'A375', 'replicate': '4'}, 'GSM2242826': {'line': 'A375', 'replicate': '4'}, 'GSM2242825': {'line': 'A375', 'replicate': '4'}, 'GSM2242824': {'line': 'A375', 'replicate': '4'}, 'GSM1602248': {'line': 'C1', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'control', 'agent': 'AICAR'}, 'GSM2205843': {'type': 'Noncancerous tissue'}, 'GSM1602278': {'line': 'P2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient ND5)', 'agent': 'resveratrol'}, 'GSM2205847': {'type': 'Noncancerous tissue'}, 'GSM4008586': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008587': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008584': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008585': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008582': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008583': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008580': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008581': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM2933018': {'pucai': '40', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '10'}, 'GSM4008588': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM4008589': {'tissue': 'Vastus Lateralis Muscle', 'group': 'BMI>=25', 'time': 'biopsy prior to exercise bout', 'Sex': 'male'}, 'GSM2324408': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM2324409': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM2324402': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM2324403': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM2324400': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324401': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '2', 'condition': 'Control'}, 'GSM2324406': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM2324407': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM2324404': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM2672091': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM2635732': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'ChIR'}, 'GSM1602277': {'line': 'P2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient ND5)', 'agent': 'resveratrol'}, 'GSM1602276': {'line': 'P2', 'passages': '15-20', 'type': 'fibroblast', 'genotype': 'complex I deficient (patient ND5)', 'agent': 'DMSO'}, 'GSM1930398': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1234088': {'replicate': '1', 'line': '19238', 'antibody': 'H3K4me1'}, 'GSM2172108': {'donor_age': '21', 'inferred_cell_type': 'delta', 'gender': 'male'}, 'GSM1817323': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1930396': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM2172109': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1817327': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1817326': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1817325': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1817324': {'line': 'SET-2', 'exposure': 'chronic'}, 'GSM1817329': {'line': 'SET-2', 'exposure': 'acute'}, 'GSM2672093': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM1930394': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1574111': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '52', 'treatment': '100 nM rotenone'}, 'GSM1930395': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930392': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930393': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1464526': {'origin': 'BM9', 'type': 'lin-CD34+CD45+', 'treatment': 'DMSO'}, 'GSM1528678': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '136'}, 'GSM1930390': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM2172103': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1528674': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal skeletal muscle', 'method': 'FFPE', 'size': '139'}, 'GSM2672092': {'type': 'Single cell', 'number': 'CRISPR 16', 'stage': 'Blastocyst'}, 'GSM1528676': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal smooth muscle', 'method': 'FFPE', 'size': '141'}, 'GSM1930391': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1528670': {'subtypes': 'III', 'tissue': 'Soft Tissue', 'type': 'leimyosarcoma', 'method': 'FFPE', 'size': '151'}, 'GSM2048771': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM1528672': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal lung', 'method': 'FFPE', 'size': '142'}, 'GSM1528673': {'subtypes': 'Unknown', 'tissue': 'Soft Tissue', 'type': 'normal lung', 'method': 'FFPE', 'size': '142'}, 'GSM1946173': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19141', 'for': '30min'}, 'GSM1946172': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19141', 'for': '30min'}, 'GSM1946171': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19140', 'for': '60min'}, 'GSM1946170': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19140', 'for': '60min'}, 'GSM1946177': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19141', 'for': '60min'}, 'GSM1946176': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19141', 'for': '60min'}, 'GSM1946175': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19141', 'for': '60min'}, 'GSM1946174': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19141', 'for': '30min'}, 'GSM1239138': {'status': '+ / - / +', 'grade': '3', 'subtype': 'polyA enriched RNA', 'id': 'BRB147', 'size': '3cm'}, 'GSM2048777': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM1946179': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19143', 'for': '30min'}, 'GSM1946178': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19143', 'for': '30min'}, 'GSM2754559': {'bin': '3', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '06_0231', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2048776': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2754558': {'bin': '3', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '06_0127', 'previousdiagnosisoftb': 'No', 'tst': '16', 'type': 'Tcells'}, 'GSM2172104': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172105': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2771589': {'line': \"LNAR'\", 'treatment': 'Enz'}, 'GSM2771588': {'line': \"LNAR'\", 'treatment': 'Enz'}, 'GSM2324411': {'tissue': 'Post-mortem brain (DLPFC) tissue', 'batch': '1', 'condition': 'SCZ'}, 'GSM2665969': {'age': 'Day 130', 'well': 'B1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665968': {'age': 'Day 130', 'well': 'A1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2723038': {'platinumstatus': 'Resistant', 'tcga_subtype_pro': '-0.287', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.041', 'age': '46', 'tcga_subtype_dif': '-0.296', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.602', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2665965': {'age': 'Day 130', 'well': 'C2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665964': {'age': 'Day 130', 'well': 'C9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665967': {'age': 'Day 130', 'well': 'A3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665966': {'age': 'Day 130', 'well': 'B2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2665961': {'age': 'Day 130', 'well': 'C2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000061'}, 'GSM2665960': {'age': 'Day 130', 'well': 'C6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2665963': {'age': 'Day 130', 'well': 'A10', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2665962': {'age': 'Day 130', 'well': 'C10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000061'}, 'GSM2455986': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455987': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455984': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455985': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455982': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455983': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455980': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455981': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455988': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455989': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1521729': {'antibody': 'Abcam,ab8580,GR68224-1', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM1521728': {'antibody': 'Abcam,ab8895,659352', 'type': 'embryonic stem cells', 'background': 'HES5::eGFP BAC transgenic human ES cells (H9; WA-09; Wicell) expressing GFP under the HES5 promoterÂ\\xa0'}, 'GSM2454059': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454058': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454053': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454052': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454051': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454050': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454057': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454056': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454055': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2454054': {'culture': 'melanoma short-term culture Ma-Mel-93', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF wild type and NRAS G13R mutant'}, 'GSM2728770': {'patient': 'Non-inflammed Muscle'}, 'GSM2728771': {'patient': 'Inclusion Body Myositis Muscle'}, 'GSM2728772': {'patient': 'Inclusion Body Myositis Muscle'}, 'GSM2728773': {'patient': 'Inclusion Body Myositis Muscle'}, 'GSM2728774': {'patient': 'Inclusion Body Myositis Muscle'}, 'GSM2728775': {'patient': 'Jo_1 myositis muscle'}, 'GSM2728776': {'patient': 'Jo_1 myositis muscle'}, 'GSM2728777': {'patient': 'Jo_1 myositis muscle'}, 'GSM2728778': {'patient': 'Jo_1 myositis muscle'}, 'GSM2260187': {'line': 'Jurkat cells', 'passage': '3-5'}, 'GSM2260188': {'line': 'Jurkat cells', 'passage': '3-5'}, 'GSM2260189': {'duration': '5min', 'line': 'Jurkat cells', 'treatment': 'PMA + ionomycin', 'passage': '3-5'}, 'GSM2501590': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shEZH2'}, 'GSM1447397': {'activation': 'None'}, 'GSM2087000': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2087001': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2087002': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM1446779': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'vehicle', 'passage': '<20'}, 'GSM1446777': {'line': 'CUTLL1', 'type': 'T-ALL cell line containing a t(7;9) rearrangement and aberrant NOTCH1 activation', 'treatment': 'vehicle', 'passage': '<20'}, 'GSM1865456': {'line': 'DKO-1', 'type': 'cell'}, 'GSM1865457': {'line': 'DKO-1', 'type': 'cell'}, 'GSM2298381': {'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM1224499': {'state': 'term in labour', 'tissue': 'myometrium'}, 'GSM1224498': {'state': 'term in labour', 'tissue': 'myometrium'}, 'GSM1224491': {'state': 'term not in labour', 'tissue': 'myometrium'}, 'GSM1224490': {'state': 'term not in labour', 'tissue': 'myometrium'}, 'GSM1224493': {'state': 'term not in labour', 'tissue': 'myometrium'}, 'GSM1224492': {'state': 'term not in labour', 'tissue': 'myometrium'}, 'GSM1224495': {'state': 'term in labour', 'tissue': 'myometrium'}, 'GSM1224494': {'state': 'term not in labour', 'tissue': 'myometrium'}, 'GSM1224497': {'state': 'term in labour', 'tissue': 'myometrium'}, 'GSM1224496': {'state': 'term in labour', 'tissue': 'myometrium'}, 'GSM1888826': {'activated': 'FALSE', 'activation': '0', 'type': 'Memory', 'id': '5053', 'batch': '1'}, 'GSM1447395': {'activation': 'None'}, 'GSM2413519': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413518': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413517': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413516': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413515': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413514': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413513': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413512': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413511': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413510': {'passages': '5', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2374009': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374008': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374003': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374002': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374001': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374000': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374007': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374006': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374005': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2374004': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2671244': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2648762': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'scarred'}, 'GSM2648763': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'scarred'}, 'GSM2648760': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'scarred'}, 'GSM2648761': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'scarred'}, 'GSM2648764': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'scarred'}, 'GSM2648765': {'disease_status': 'idiopathic pulmonary fibrosis', 'tissue': 'lung', 'appearance': 'scarred'}, 'GSM1949008': {'line': 'H1', 'type': 'H1 hESC', 'state': 'RPMI+ B27 media for 24hrs and 50 ng/ml Activin for 1 hr'}, 'GSM1949009': {'antibody': 'SMAD3, Abcam, AB28379', 'line': 'H1', 'type': 'H1 hESC', 'state': 'RPMI+ B27 media for 24hrs and 50 ng/ml Activin for 1 hr'}, 'GSM1845147': {'with': '0.1% DMSO', 'source': 'peripheral blood', 'line': 'MV4;11', 'type': 'Mixed lineage leukemia (MLL) fusion protein (FP) leukemia cell line'}, 'GSM1949002': {'index': 'ACTGAT', 'line': 'H1', 'type': 'DIGIT KO hESC KO2', 'state': 'DIGIT KO hESC differentiated towards endoderm for 4 days'}, 'GSM1949003': {'index': 'GAGTGG', 'line': 'H1', 'type': 'DIGIT KO hESC KO2', 'state': 'DIGIT KO hESC differentiated towards endoderm for 4 days'}, 'GSM1949000': {'index': 'GTTTCG', 'line': 'H1', 'type': 'DIGIT KO hESC KO1', 'state': 'DIGIT KO hESC differentiated towards endoderm for 4 days'}, 'GSM1949001': {'index': 'GTGGCC', 'line': 'H1', 'type': 'DIGIT KO hESC KO1', 'state': 'DIGIT KO hESC differentiated towards endoderm for 4 days'}, 'GSM1444190': {'reagent': 'Herpes simplex virus 1, strain 17', 'tissue': 'foreskin', 'type': 'fibroblasts', 'infection': '60 min 500 µM 4sU at 4-5 h p.i.'}, 'GSM1949007': {'antibody': 'SMAD3, Abcam, AB28379', 'line': 'H1', 'type': 'H1 hESC', 'state': 'RPMI+ B27 media for 24hrs'}, 'GSM1949004': {'line': 'H1', 'type': 'H1 hESC', 'state': 'cultured in mTESR1'}, 'GSM1949005': {'antibody': 'SMAD3, Abcam, AB28379', 'line': 'H1', 'type': 'H1 hESC', 'state': 'cultured in mTESR1'}, 'GSM2287114': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287115': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287116': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287117': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287110': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287111': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287112': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287113': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287118': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2287119': {'gender': 'male', 'type': 'Single Cell'}, 'GSM2068645': {'line': 'MCF7', 'with': '10nM E2 for 2hr', 'passage': 'p9'}, 'GSM2754889': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '14', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_1020', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2068644': {'line': 'MCF7', 'with': '10nM E2 for 1hr', 'passage': 'p9'}, 'GSM862348': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Peruvoside'}, 'GSM2637988': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637989': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM1550099': {'line': 'MCF-10A', 'time': '6hr'}, 'GSM1550098': {'line': 'MCF-10A-H1047R', 'time': '6hr'}, 'GSM1166078': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM1166079': {'rna': 'Agilent Universal Human Reference RNA', 'tissue': 'Pooled tumor'}, 'GSM2637980': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637981': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM1550091': {'line': 'MCF-10A-H1047R', 'time': '12hr'}, 'GSM2637983': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637984': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637985': {'with': 'IL-12 and IL-15', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637986': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM2637987': {'with': 'none; not cultured', 'tissue': 'spleen', 'type': 'NKp44+ innate lymphoid cells from huNSG spleens'}, 'GSM862345': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Digoxin'}, 'GSM862344': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Digoxin'}, 'GSM862347': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Peruvoside'}, 'GSM2041882': {'line': 'WTC-CRISPRi', 'treatment': '+', 'sgrna': 'None'}, 'GSM862346': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Peruvoside'}, 'GSM862341': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Control'}, 'GSM2667958': {'antibody': 'H3K27ac (CST, #8173)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM2667959': {'antibody': 'H3K27ac (CST, #8173)', 'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line', 'variation': 'Wildtype'}, 'GSM862340': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Control'}, 'GSM862343': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Digoxin'}, 'GSM862342': {'line': 'hormone resistant LNCaP-abl', 'treatment': 'Control'}, 'GSM2411340': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411341': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411342': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411343': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411344': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411345': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411346': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411347': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411348': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411349': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2515711': {'age': '51', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2515712': {'age': '51', 'state': \"Hutington's Disease Patient\", 'ethnicity': 'Caucasian'}, 'GSM2515713': {'age': '48', 'state': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2515714': {'age': '48', 'state': 'Healthy Patient', 'ethnicity': 'Caucasian'}, 'GSM2218995': {'tissue': 'blood', 'type': 'CD4+ memory T cells', 'diagnosis': 'healthy'}, 'GSM2218996': {'tissue': 'blood', 'type': 'CD4+ naive T cells', 'diagnosis': 'healthy'}, 'GSM2218997': {'tissue': 'blood', 'type': 'CD8+ memory T cells', 'diagnosis': 'healthy'}, 'GSM2218998': {'tissue': 'blood', 'type': 'CD8+ naive T cells', 'diagnosis': 'healthy'}, 'GSM2218999': {'tissue': 'blood', 'type': 'CD4+ memory T cells', 'diagnosis': 'healthy'}, 'GSM2171903': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2041389': {'treatment': '10 uM 1C8'}, 'GSM2171901': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171900': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171907': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171906': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2171905': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171904': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2171909': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2171908': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1281810': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': '0', 'tissue': 'Skeletal Muscle', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'N/A', 'device': 'N/A', 'lvad': 'NA'}, 'GSM1281811': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Primary Cells', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'NA', 'device': 'NA', 'lvad': 'NA'}, 'GSM1281812': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': 'NA', 'gender': 'N/A', 'age': 'NA', 'tissue': 'Primary Cells', 'disease': 'None', 'onset': 'NA', 'race': 'N/A', 'nyha': 'NA', 'device': 'NA', 'lvad': 'NA'}, 'GSM1281813': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '15-20', 'gender': 'Male', 'age': '51', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2002', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate I', 'lvad': '177'}, 'GSM1281814': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '15-20', 'gender': 'Male', 'age': '51', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2002', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate I', 'lvad': '177'}, 'GSM1281815': {'status': 'Explantation', 'pacemaker': 'Yes', 'fraction': '18', 'gender': 'Male', 'age': '62', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1997', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '202'}, 'GSM1281816': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '18', 'gender': 'Male', 'age': '62', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1997', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': '202'}, 'GSM1281817': {'status': '6 months LVAD support', 'pacemaker': 'Yes', 'fraction': '18', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2005', 'race': 'African American', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '397'}, 'GSM1281818': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '18', 'gender': 'Male', 'age': '64', 'tissue': 'Plasma', 'disease': 'Ischemic Cardiomyopathy', 'onset': '2005', 'race': 'African American', 'nyha': 'III', 'device': 'HeartMate II', 'lvad': '397'}, 'GSM1281819': {'status': 'No LVAD', 'pacemaker': 'Yes', 'fraction': '10', 'gender': 'Male', 'age': '78', 'tissue': 'Cardiac Muscle', 'disease': 'Ischemic Cardiomyopathy', 'onset': '1992', 'race': 'Caucasian', 'nyha': '4', 'device': 'HeartMate II', 'lvad': 'NA'}, 'GSM1366430': {'gender': 'Male', 'age': '83', 'tissue': 'Pituitary', 'type': 'Normal tissue', 'staining': 'NA.'}, 'GSM2616764': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2441396': {'line': 'HBE', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441394': {'line': 'HBE', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441395': {'line': 'HBE', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441392': {'line': 'H1299', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441393': {'line': 'HBE', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441390': {'line': 'H1299', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2441391': {'line': 'H1299', 'tissue': 'lung', 'type': 'Epithelial lung cell', 'passage': '15-18'}, 'GSM2374358': {'Stage': 'Week 8', 'type': 'Syncytiotrophoblast', 'population': 'HLA-G+'}, 'GSM2231878': {'culture': '21 days', 'type': 'HES3 hESC derived INS-GFP+ cells', 'treatment': 'H1152'}, 'GSM1924570': {'line': 'LS8817', 'treatment': 'CDK4 inhibitor PD0332991'}, 'GSM1963846': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2374353': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1331315': {'with': 'osteopontin-a', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM1331314': {'with': 'osteopontin-a', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM1331313': {'with': 'osteopontin-a', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM1331312': {'with': 'vector control', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM1331311': {'with': 'vector control', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM2374352': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1331318': {'with': 'osteopontin-c', 'source': 'mammary gland', 'line': 'MCF-7', 'type': 'epithelial cells'}, 'GSM2231879': {'culture': '21 days', 'type': 'HES3 hESC derived INS-GFP+ cells', 'treatment': 'H1152'}, 'GSM2452288': {'line': 'K054', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM2452289': {'line': 'K054', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM1963844': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2536308': {'phenotype': '24hr infected with mutant VP24 virus'}, 'GSM2536309': {'phenotype': '24hr infected with mutant VP35 virus'}, 'GSM2536304': {'phenotype': '8hr infected with mutant VP35 virus'}, 'GSM2536305': {'phenotype': '8hr infected with mutant VP24_VP35 virus'}, 'GSM2536306': {'phenotype': '24hr Mock infected'}, 'GSM2536307': {'phenotype': '24hr infected with wild-type virus'}, 'GSM2536300': {'phenotype': '8hr infected with mutant VP24_VP35 virus'}, 'GSM2536301': {'phenotype': '8hr Mock infected'}, 'GSM2536302': {'phenotype': '8hr infected with wild-type virus'}, 'GSM2536303': {'phenotype': '8hr infected with mutant VP24 virus'}, 'GSM2348655': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348654': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348657': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348656': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348651': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348650': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348653': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2204705': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280-, integrin alpha6+'}, 'GSM1963845': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2348659': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348658': {'samhd1': 'dNTPase knockout', 'media': 'standard media with LPS', 'batch': 'KOC', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1599010': {'type': 'hemoangiogenic progenitors'}, 'GSM2029598': {'line': 'ZR-75-30', 'antibody': 'none', 'genotype': 'RACK7 knockout'}, 'GSM1599011': {'type': 'iPSC derived motor neuron', 'treatment': 'VPA'}, 'GSM2029596': {'line': 'ZR-75-30', 'genotype': 'RACK7 knockout'}, 'GSM2029597': {'line': 'ZR-75-30', 'antibody': 'none', 'genotype': 'parental'}, 'GSM2029594': {'line': 'ZR-75-30', 'genotype': 'RACK7 knockout'}, 'GSM2029595': {'line': 'ZR-75-30', 'genotype': 'parental'}, 'GSM2029593': {'line': 'ZR-75-30', 'genotype': 'parental'}, 'GSM1599013': {'type': 'iPSC derived motor neuron', 'treatment': 'VPA'}, 'GSM480479': {'source': 'dimeric PTB-RNA complex', 'line': 'Hela', 'antibody': 'monoclonal anti-PTB antibody (BB7)'}, 'GSM1599014': {'type': 'iPSC derived motor neuron', 'treatment': 'none'}, 'GSM2452287': {'line': 'K054', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM2712692': {'condition': 'TB'}, 'GSM2712693': {'condition': 'TB'}, 'GSM2712690': {'condition': 'TB'}, 'GSM2712691': {'condition': 'TB'}, 'GSM2712696': {'condition': 'TB'}, 'GSM2712697': {'condition': 'TB'}, 'GSM2712694': {'condition': 'TB'}, 'GSM2712695': {'condition': 'TB'}, 'GSM2712698': {'condition': 'TB'}, 'GSM2712699': {'condition': 'TB'}, 'GSM2722992': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.149', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.067', 'age': '71', 'tcga_subtype_dif': '0.132', 'stic': 'No', 'recurrence': 'Y', 'record': 'Fallopian Tube Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.052', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IV'}, 'GSM2722990': {'platinumstatus': 'Not available', 'tcga_subtype_pro': '-0.398', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.037', 'age': '64', 'tcga_subtype_dif': '-0.074', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.501', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM2722996': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.384', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '0.088', 'age': '49', 'tcga_subtype_dif': '0.472', 'stic': 'Yes', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '-0.16', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722994': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.09', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.29', 'age': '56', 'tcga_subtype_dif': '0.127', 'stic': 'Yes', 'recurrence': 'Y', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.305', 'outcome': 'Optimal', 'review': 'Fallopian Tube Ca', 'stage': 'IIIC'}, 'GSM2722998': {'platinumstatus': 'Sensitive', 'tcga_subtype_pro': '-0.387', 'vitalstatus': 'Alive', 'tissue': 'primary tumor tissue from high grade serous ovarian tumors', 'tcga_subtype_mes': '-0.354', 'age': '44', 'tcga_subtype_dif': '0.549', 'stic': 'No', 'recurrence': 'N', 'record': 'Ovarian Ca', 'race': 'WHITE', 'tcga_subtype_imr': '0.279', 'outcome': 'Optimal', 'review': 'Ovarian Ca', 'stage': 'IIIC'}, 'GSM1963840': {'subtype': 'double positive (ER+ and HER2+)', 'type': 'primary breast cancer', 'id': 'BC03'}, 'GSM2307339': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM2307338': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307333': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307332': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307331': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307330': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307337': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307336': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307335': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307334': {'patientid': 'IPF003', 'diagnosis': 'IPF'}, 'GSM1701105': {'type': 'testes'}, 'GSM1701104': {'type': 'testes'}, 'GSM2480933': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'eIF4A2', 'fraction': 'none'}, 'GSM881819': {'condition': 'leiomyosarcoma'}, 'GSM1930367': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM2480932': {'sirna': 'none', 'line': 'HEK293', 'antibody': 'eIF4A2', 'fraction': 'none'}, 'GSM2719784': {'gender': 'male', 'state': 'Control', 'tissue': 'Rectal wall'}, 'GSM2719787': {'gender': 'female', 'state': 'ODS', 'tissue': 'Rectal wall'}, 'GSM2719786': {'gender': 'male', 'state': 'Control', 'tissue': 'Rectal wall'}, 'GSM2719789': {'gender': 'female', 'state': 'ODS', 'tissue': 'Rectal wall'}, 'GSM2719788': {'gender': 'female', 'state': 'ODS', 'tissue': 'Rectal wall'}, 'GSM1337339': {'source': 'Cells obtained from trachea of adult lung transplant donor', 'type': 'Airway epithelial cells', 'treatment': 'flagellin'}, 'GSM1337338': {'source': 'Cells obtained from trachea of adult lung transplant donor', 'type': 'Airway epithelial cells', 'treatment': 'control'}, 'GSM1337337': {'source': 'Cells obtained from trachea of adult lung transplant donor', 'type': 'Airway epithelial cells', 'treatment': 'control'}, 'GSM1341716': {'tissue': 'Bone marrow MEP', 'phenotype': 'Lin-CD34+CD38+CD123-CD45RA-'}, 'GSM1930368': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM2585418': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585419': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2394568': {'id': 'IonXpress_018', 'plate': 'R2', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_MB', 'point': 'after 12h of compound treatment'}, 'GSM2394569': {'id': 'IonXpress_019', 'plate': 'R2', 'type': 'iPS-derived cardiomyocytes', 'name': 'GEC_Ctrl', 'point': 'after 12h of compound treatment'}, 'GSM2200939': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2394562': {'id': 'IonXpress_053', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Phentolamine', 'point': 'after 12h of compound treatment'}, 'GSM2585416': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2394560': {'id': 'IonXpress_051', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Paxilline', 'point': 'after 12h of compound treatment'}, 'GSM2394561': {'id': 'IonXpress_052', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Phenamil', 'point': 'after 12h of compound treatment'}, 'GSM2394566': {'id': 'IonXpress_016', 'plate': 'R2', 'type': 'iPS-derived cardiomyocytes', 'name': 'SKF-96365', 'point': 'after 12h of compound treatment'}, 'GSM2394567': {'id': 'IonXpress_017', 'plate': 'R2', 'type': 'iPS-derived cardiomyocytes', 'name': 'Tolbutamide', 'point': 'after 12h of compound treatment'}, 'GSM2394564': {'id': 'IonXpress_055', 'plate': 'B1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Quinine-HCl-2H2O', 'point': 'after 12h of compound treatment'}, 'GSM2394565': {'id': 'IonXpress_015', 'plate': 'R2', 'type': 'iPS-derived cardiomyocytes', 'name': 'SDZ-201106', 'point': 'after 12h of compound treatment'}, 'GSM2154762': {'line': 'HeLa cells', 'type': 'double thymidine block at 18h', 'cycle': 'S-G2'}, 'GSM2154763': {'line': 'HeLa cells', 'type': 'double thymidine block at 19.5h', 'cycle': 'G2-M'}, 'GSM2154760': {'line': 'HeLa cells', 'type': 'double thymidine block at 12h', 'cycle': 'G1'}, 'GSM2154761': {'line': 'HeLa cells', 'type': 'double thymidine block at 15h', 'cycle': 'G1-S'}, 'GSM2154766': {'line': 'HeLa cells', 'type': 'double thymidine block at 25.5h', 'cycle': 'G1'}, 'GSM2154767': {'line': 'HeLa cells', 'type': 'double thymidine block at 30h', 'cycle': 'G1-S'}, 'GSM2154764': {'line': 'HeLa cells', 'type': 'double thymidine block at 21h', 'cycle': 'M-G1'}, 'GSM2154765': {'line': 'HeLa cells', 'type': 'double thymidine block at 22.5h', 'cycle': 'M-G1'}, 'GSM1216760': {'gender': 'Male', 'age': '52', 'bmi': '27', 'hba1c': '4.3', 'tissue': 'pancreatic islets', 'birth': '1957'}, 'GSM2200932': {'concentration': '100uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM1916006': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'RNase H'}, 'GSM2581178': {'phase': 'early secretory', 'origin': 'Estonia', 'tissue': 'endometrium epithelium', 'library': '2'}, 'GSM1916004': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'Ribo-Zero'}, 'GSM1916005': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'Ribo-Zero'}, 'GSM1916002': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'Ribo-Zero'}, 'GSM2753381': {'tissue': 'liver', 'type': 'Hepatocyte'}, 'GSM1916000': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'Ribo-Zero'}, 'GSM1916001': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'Ribo-Zero'}, 'GSM2480939': {'sirna': 'control', 'line': 'HEK293', 'antibody': 'none', 'fraction': 'none'}, 'GSM2753380': {'tissue': 'liver', 'type': 'Hepatocyte'}, 'GSM1916008': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'RNase H'}, 'GSM1916009': {'tissue': 'breast cancer FFPE specimen', 'protocol': 'RNase H'}, 'GSM2151686': {'gender': 'female', 'line': 'MCF-7', 'type': 'human breast cancer cells'}, 'GSM2151687': {'gender': 'female', 'line': 'MCF-7', 'type': 'human breast cancer cells'}, 'GSM2151684': {'gender': 'female', 'line': 'MCF-7', 'type': 'human breast cancer cells'}, 'GSM2151685': {'gender': 'female', 'line': 'MCF-7', 'type': 'human breast cancer cells'}, 'GSM2151688': {'gender': 'female', 'line': 'MCF-7', 'type': 'human breast cancer cells'}, 'GSM2151689': {'gender': 'female', 'line': 'MCF-7', 'type': 'human breast cancer cells'}, 'GSM1980568': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980569': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM597209': {'subtype': 'Adjacent normal prostate', 'sampleID': 'HF-24127-(1)', 'organ': 'Prostate'}, 'GSM2027508': {'line': 'H7 derived'}, 'GSM2027507': {'line': 'H7 derived'}, 'GSM2027506': {'line': 'H7 derived'}, 'GSM2027505': {'line': 'H7 derived'}, 'GSM2027504': {'line': 'H7 derived'}, 'GSM1980566': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980567': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980564': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980565': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2258364': {'status': 'uninfected control', 'type': 'astrocytes', 'point': '24h'}, 'GSM2258363': {'status': 'uninfected control', 'type': 'astrocytes', 'point': '24h'}, 'GSM2258362': {'status': 'uninfected control', 'type': 'astrocytes', 'point': '24h'}, 'GSM2258361': {'status': 'Borrellia burgdorferi infected', 'type': 'astrocytes', 'point': '48h'}, 'GSM2258360': {'status': 'Borrellia burgdorferi infected', 'type': 'astrocytes', 'point': '48h'}, 'GSM2112769': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': '10 nM R5020', 'time': '12 hours'}, 'GSM1373314': {'replicate': '3', 'construct': 'Halo-NfkB1'}, 'GSM1373311': {'replicate': '3', 'construct': 'Halo-RelA'}, 'GSM1373310': {'replicate': '2', 'construct': 'Halo-RelA'}, 'GSM1373313': {'replicate': '2', 'construct': 'Halo-NfkB1'}, 'GSM1373312': {'replicate': '1', 'construct': 'Halo-NfkB1'}, 'GSM1240660': {'line': 'SK-BR-3', 'set': 'set 2', 'genotype': 'mir-141 and mir-200c knockout'}, 'GSM1187408': {'age': '38', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T2N1aM0', 'Sex': 'female'}, 'GSM1187409': {'age': '35', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-wt', 'stage': 'T1bN0M0', 'Sex': 'female'}, 'GSM1187400': {'age': '41', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-wt', 'stage': 'T1bN0M0', 'Sex': 'female'}, 'GSM1187401': {'age': '31', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T3N1aM0', 'Sex': 'female'}, 'GSM1187402': {'age': '34', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-wt', 'stage': 'T1bN0M0', 'Sex': 'female'}, 'GSM1187403': {'age': '61', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T1bN0M0', 'Sex': 'female'}, 'GSM1187404': {'age': '55', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-wt', 'stage': 'T1bN0M0', 'Sex': 'male'}, 'GSM1187405': {'age': '81', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-mut', 'stage': 'T3N1bM0', 'Sex': 'female'}, 'GSM1187406': {'age': '44', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-wt', 'stage': 'T1bN1aM0', 'Sex': 'female'}, 'GSM1187407': {'age': '38', 'tissue': 'Thyroid cancer', 'variation': 'BRAF-wt', 'stage': 'T2N0M0', 'Sex': 'male'}, 'GSM2544729': {'line': 'K562'}, 'GSM2544728': {'line': 'K562'}, 'GSM2544727': {'line': 'K562'}, 'GSM2544726': {'line': 'K562'}, 'GSM2544725': {'line': 'K562'}, 'GSM2544724': {'line': 'K562'}, 'GSM2544723': {'line': 'K562'}, 'GSM2544722': {'line': 'K562'}, 'GSM2544721': {'line': 'K562'}, 'GSM2544720': {'line': 'K562'}, 'GSM2108402': {'stages': 'myoblast'}, 'GSM2108403': {'stages': 'myoblast nucleus'}, 'GSM2108400': {'stages': 'myoblast'}, 'GSM2108401': {'stages': 'myoblast'}, 'GSM2108406': {'stages': 'myoblast nucleus'}, 'GSM2108407': {'stages': 'myoblast nucleus'}, 'GSM2108404': {'stages': 'myoblast nucleus'}, 'GSM2108405': {'stages': 'myoblast nucleus'}, 'GSM2108408': {'stages': 'myoblast nucleus'}, 'GSM2108409': {'stages': 'myoblast nucleus'}, 'GSM2948435': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2948434': {'type': 'hESC-H9(WA09)', 'system': '2D'}, 'GSM2158003': {'gender': 'F', 'age': '24', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM1624824': {'line': 'HEK293T', 'treatment': 'AlkB-derived enzyme mixture'}, 'GSM1624825': {'line': 'HEK293T', 'treatment': 'AlkB-derived enzyme mixture'}, 'GSM1624820': {'line': 'HEK293T', 'treatment': 'AlkB-derived enzyme mixture'}, 'GSM1624821': {'line': 'HEK293T', 'treatment': 'AlkB-derived enzyme mixture'}, 'GSM1624822': {'line': 'HEK293T', 'treatment': 'no AlkB-derived enzyme mixture'}, 'GSM1624823': {'line': 'HEK293T', 'treatment': 'no AlkB-derived enzyme mixture'}, 'GSM2158002': {'gender': 'F', 'age': '24', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM1823333': {'line': 'iPS5.C4', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM1823332': {'line': '690.C5', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM1823330': {'line': '690.C5', 'type': 'NPCs derived from iPSCs', 'treatment': 'CYFIP1 knockdown'}, 'GSM1823335': {'line': 'iPS5.C4', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM1823338': {'line': 'iPS5.C4', 'type': 'NPCs derived from iPSCs', 'treatment': 'non-silencing control'}, 'GSM2422100': {'type': 'IGR-N91 neuroblastoma cells'}, 'GSM2422101': {'type': 'IGR-N91 neuroblastoma cells'}, 'GSM2422102': {'type': 'IGR-N91 neuroblastoma cells'}, 'GSM2158001': {'gender': 'F', 'age': '24', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 9', 'ethnicity': 'C'}, 'GSM2784642': {'digestion': 'PvuRts1l digested', 'tissue': 'CAT-SKL treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'anti-oxidant CAT-SKL'}, 'GSM2784643': {'digestion': 'PvuRts1l digested', 'tissue': 'Vehicle treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'vehicle'}, 'GSM2784640': {'digestion': 'PvuRts1l digested', 'tissue': 'CAT-SKL treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'anti-oxidant CAT-SKL'}, 'GSM2784641': {'digestion': 'PvuRts1l digested', 'tissue': 'CAT-SKL treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'anti-oxidant CAT-SKL'}, 'GSM2784646': {'digestion': 'not applicable', 'tissue': 'CAT-SKL treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'anti-oxidant CAT-SKL'}, 'GSM2784647': {'digestion': 'not applicable', 'tissue': 'CAT-SKL treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'anti-oxidant CAT-SKL'}, 'GSM2784644': {'digestion': 'PvuRts1l digested', 'tissue': 'Vehicle treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'vehicle'}, 'GSM2784645': {'digestion': 'PvuRts1l digested', 'tissue': 'Vehicle treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'vehicle'}, 'GSM2784648': {'digestion': 'not applicable', 'tissue': 'CAT-SKL treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'anti-oxidant CAT-SKL'}, 'GSM2784649': {'digestion': 'not applicable', 'tissue': 'Vehicle treated Triple negative breast cancer cell line', 'type': 'triple negative breast cancer cell line MDA-MB-468', 'treatment': 'vehicle'}, 'GSM2575392': {'line': 'WM983B', 'subclone': 'E7', 'condition': 'Drug'}, 'GSM2575393': {'line': 'WM983B', 'subclone': 'E3', 'condition': 'NoDrug'}, 'GSM2575390': {'line': 'WM983B', 'subclone': 'D2', 'condition': 'Drug'}, 'GSM2575391': {'line': 'WM983B', 'subclone': 'E7', 'condition': 'NoDrug'}, 'GSM2575396': {'line': 'WM983B', 'subclone': 'D2', 'condition': 'Drug'}, 'GSM2575397': {'line': 'WM983B', 'subclone': 'F9', 'condition': 'Drug'}, 'GSM2575394': {'line': 'WM983B', 'subclone': 'E3', 'condition': 'Drug'}, 'GSM2575395': {'line': 'WM983B', 'subclone': 'D5', 'condition': 'Drug'}, 'GSM2575398': {'line': 'WM983B', 'subclone': 'G8', 'condition': 'Drug'}, 'GSM2575399': {'line': 'WM983B', 'subclone': 'G7', 'condition': 'Drug'}, 'GSM1980465': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2482841': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM2482840': {'line': 'LNCaP', 'tissue': 'prostate'}, 'GSM2361827': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361826': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361825': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361824': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361823': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361822': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361821': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361820': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2185658': {'race': 'NB', 'staging': '5.5', 'total_grade': '5', 'cea': 'NA', 'hcv_genotype': '4', 'hcv_activity': '2', 'age': '57', 'focal_lytic_nec_apop': '1', 'batch': '0', 'sgpt': '11', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Non-Tumor', 'tissue': 'liver', 'interface_necrosis': '2', 'sgot': '52', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': '2', 'afp': '80', 'hcv_viral_load': '293632'}, 'GSM2185659': {'race': 'NB', 'staging': '5.5', 'total_grade': '5', 'cea': 'NA', 'hcv_genotype': '4', 'hcv_activity': '2', 'age': '57', 'focal_lytic_nec_apop': '1', 'batch': '0', 'sgpt': '11', 'Sex': 'M', 'confluent_necrosis': '0', 'state': 'Tumor', 'tissue': 'liver', 'interface_necrosis': '2', 'sgot': '52', 'ca19_9': 'NA', 'differentiation': '0', 'portal_inflammation': '2', 'afp': '80', 'hcv_viral_load': '293632'}, 'GSM2175471': {'type': 'H9', 'treatment': 'none'}, 'GSM2175470': {'type': 'H1', 'treatment': 'none'}, 'GSM3594459': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594458': {'cluster': '6', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM1970541': {'genotype': 'wild type', 'age': '15 weeks 6 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'outer renal medulla,inner renal medulla,renal cortex,renal medulla', 'Stage': 'Fetal 16wk'}, 'GSM1970540': {'genotype': 'wild type', 'age': '16 weeks 3 days', 'Sex': 'unknown', 'sample': 'no', 'tissue': 'inner renal medulla,renal cortex,renal medulla,outer renal medulla', 'Stage': 'Fetal 17wk'}, 'GSM2292585': {'line': 'Osteosarcoma cell line, resistant', 'tissue': 'Bone', 'treatment': 'Cisshock'}, 'GSM2292584': {'line': 'Osteosarcoma cell line', 'tissue': 'Bone', 'treatment': 'control'}, 'GSM2292587': {'line': 'Osteosarcoma cell line', 'tissue': 'Bone', 'treatment': 'Cisshock'}, 'GSM2292586': {'line': 'Osteosarcoma cell line, resistant', 'tissue': 'Bone', 'treatment': 'without Cisplatin'}, 'GSM937180': {'line': 'ECC-1', 'replicate': '2', 'treatment': '8 hour 100 nM genistein'}, 'GSM2292588': {'line': 'Osteosarcoma cell line', 'tissue': 'Bone', 'treatment': 'Revived (without Cisplatin)'}, 'GSM2492504': {'status': 'Negative', 'tissue': 'lung', 'type': 'CD4'}, 'GSM3594453': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594452': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2048719': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2172129': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172124': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172125': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2048717': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2172127': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172120': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172121': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172122': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172123': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1440419': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440418': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM2112767': {'status': 'ER+/PR+', 'line': 'T47D', 'type': 'ER+/PR+ cell models', 'treatment': 'Vehicle', 'time': '12 hours'}, 'GSM1440413': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440412': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440415': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440414': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440417': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1440416': {'type': 'glioma - non-enhancing FLAIR+ sample'}, 'GSM1395539': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395538': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395531': {'subtype': 'Pro+Cla', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395530': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395533': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395532': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395535': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395534': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395537': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395536': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM3594488': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594489': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594486': {'cluster': '3', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594487': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594484': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594485': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594482': {'cluster': '5', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594483': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594480': {'cluster': '7', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM3594481': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec8'}, 'GSM2649981': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649980': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649983': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649982': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM2649984': {'types': 'hiPSC-derived CPM-high cells', 'time': 'isolated on day 14'}, 'GSM1864033': {'gender': 'female', 'line': 'MDA-MB-231', 'tissue': 'breast', 'genotype': 'wild type'}, 'GSM2409678': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM1915591': {'donorid': '5483', 'type': 'primary human blood cell from fresh sample'}, 'GSM1864032': {'gender': 'female', 'line': 'MDA-MB-231', 'tissue': 'breast', 'genotype': 'wild type'}, 'GSM2204768': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204769': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204766': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204767': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204764': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204765': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204762': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204763': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204760': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204761': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM1613651': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2409675': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM1613653': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613652': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613655': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613654': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613657': {'line': 'CRL2097', 'type': 'large live'}, 'GSM2409674': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM1613659': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1613658': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1864036': {'gender': 'female', 'line': 'MDA-MB-231', 'tissue': 'breast', 'genotype': 'wild type; hotair overexpressed'}, 'GSM2374823': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM1915594': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM2409676': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2829958': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829959': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829956': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2409671': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2829954': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829955': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829952': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829953': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829950': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2409670': {'line': 'TTC1240', 'tissue': 'Malignant rhabdoid tumor'}, 'GSM2665730': {'age': 'Day 100', 'well': 'A10', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000078'}, 'GSM2374827': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM1915598': {'donorid': '5852', 'type': 'primary human blood cell from fresh sample'}, 'GSM2374826': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM3271582': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, DMSO for 7d, then 500nM LGX818 for 7d'}, 'GSM1684868': {'line': 'UMSCC103'}, 'GSM1684869': {'line': 'UMSCC29'}, 'GSM1684866': {'line': 'SCC4'}, 'GSM1684867': {'line': 'SCC71'}, 'GSM2840561': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM1915601': {'donorid': '6792', 'type': 'primary human blood cell from fresh sample'}, 'GSM1041198': {'line': 'BJ cells', 'protocol': 'BJ cells expressing hTERT and tamoxifen-inducible RASG12V were cultured in the presence of 10-7M 4-OHT-Tamoxifen for 14 days', 'condition': 'Senescence; 14 dys after RASG12V induction'}, 'GSM2204188': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204189': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM1915605': {'donorid': '6792', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915604': {'donorid': '6792', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915607': {'donorid': '6926', 'type': 'primary human blood cell from fresh sample'}, 'GSM1915606': {'donorid': '6792', 'type': 'primary human blood cell from fresh sample'}, 'GSM2204182': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204183': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2204180': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204181': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM2204186': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_EM', 'phenotype': 'EM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27-)'}, 'GSM2204187': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM2204184': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_CM', 'phenotype': 'CM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CCR7+)'}, 'GSM2204185': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_TM', 'phenotype': 'TM(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO+CCR7-)'}, 'GSM1890601': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor2'}, 'GSM1890600': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor2'}, 'GSM1890603': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor2'}, 'GSM2233275': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1890605': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor2'}, 'GSM1890604': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor2'}, 'GSM1890606': {'tissue': 'Blood', 'type': 'neutrophil', 'number': 'donor2'}, 'GSM2233250': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233251': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233252': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233253': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233254': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233255': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233256': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233257': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233258': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233259': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2141704': {'individual': 'EU286', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141705': {'individual': 'EU286', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141702': {'individual': 'EU284', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141703': {'individual': 'EU286', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141700': {'individual': 'EU284', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141701': {'individual': 'EU284', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2610797': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM1379018': {'agent': 'DMSO', 'time': '12hr'}, 'GSM1379019': {'agent': 'SR1', 'time': '12hr'}, 'GSM1379017': {'agent': 'UM171+SR1', 'time': '12hr'}, 'GSM2754838': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754839': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1115', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754830': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0056', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754831': {'bin': '5', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0135', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754832': {'bin': '5', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '18', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0157', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754833': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0238', 'previousdiagnosisoftb': 'No', 'tst': '18.2', 'type': 'Tcells'}, 'GSM2754834': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '12', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0718', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754835': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '12', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0718', 'previousdiagnosisoftb': 'No', 'tst': '14', 'type': 'Tcells'}, 'GSM2754836': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '04_0886', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754837': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '04_0886', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2413498': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413499': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413492': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413493': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413490': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413491': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413496': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413497': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413494': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM2413495': {'passages': '2', 'type': 'hiPSC-derived SFTPC+ cells'}, 'GSM1048189': {'antibody': 'none', 'type': 'Hela', 'treatment': 'treated with control shRNA'}, 'GSM1048188': {'antibody': 'Anti-AGO2 mAb, clone 2E12-1C9(Abnova)', 'type': 'Hela'}, 'GSM1048187': {'antibody': 'Anti-AGO2 mAb, clone 2E12-1C9(Abnova)', 'type': 'Hela'}, 'GSM1048186': {'antibody': 'Anti-PTB mAb BB7', 'type': 'Hela'}, 'GSM2158076': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158077': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158074': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158075': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158072': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158073': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158070': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158071': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1899729': {'of': 'HER2/ERBB2', 'type': 'mammary epithelial cells'}, 'GSM1899728': {'of': 'HER2/ERBB2', 'type': 'mammary epithelial cells'}, 'GSM2158078': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM2158079': {'gender': 'M', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 12', 'ethnicity': 'AA'}, 'GSM1382009': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382008': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382005': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382004': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382007': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382006': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382001': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382000': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382003': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1382002': {'line': 'H1', 'type': 'ES-derived cells', 'passage': '30-38'}, 'GSM1550114': {'line': 'MCF-10A', 'time': '24hr'}, 'GSM1550112': {'line': 'MCF-10A', 'time': '24hr'}, 'GSM1550113': {'line': 'MCF-10A', 'time': '24hr'}, 'GSM1550110': {'line': 'MCF-10A', 'time': '12hr'}, 'GSM1550111': {'line': 'MCF-10A', 'time': '12hr'}, 'GSM2451021': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2536313': {'phenotype': '24hr infected with mutant VP24 virus'}, 'GSM2871751': {'extraction': 'total mRNA', 'tissue': 'tamoxifen sensitive MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'non-silencing'}, 'GSM2871750': {'extraction': 'light polysome mRNA', 'tissue': 'tamoxifen sensitive MCF7 breast cancer cells', 'replicate': 'replicate 2', 'genotype': 'non-silencing'}, 'GSM2451020': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2536312': {'phenotype': '24hr infected with wild-type virus'}, 'GSM2455588': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2204220': {'status': 'ex vivo; unstimulated', 'type': 'PBMC_N', 'phenotype': 'Naive(CD3+CD14/CD11c-CD8-CD56/CD20/TCRgammadelta-CD27+CD45RO-)'}, 'GSM1965431': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965430': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965433': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965432': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965435': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965434': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965437': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM1965436': {'sorting': 'not sorted', 'passage': 'passage 8-12'}, 'GSM2286186': {'morphology': 'epithelial', 'line': 'T47D', 'protocol': 'RPMI 1640 medium with 10% fetal bovine serum.', 'disease': 'Ductal Carcinoma'}, 'GSM1641253': {'type': 'PBMC'}, 'GSM2286187': {'morphology': 'epithelial', 'line': 'CAL51', 'protocol': 'RPMI 1640 medium with 10% fetal bovine serum.', 'disease': 'BreastCarcinoma'}, 'GSM2455581': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1641256': {'type': 'PBMC'}, 'GSM1641257': {'type': 'PBMC'}, 'GSM2309601': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309600': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309603': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309602': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309605': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309604': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309607': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309606': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309609': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM2309608': {'source': 'biopsy', 'identifier': 'A', 'tissue': 'Tibialis anterior muscle', 'classification': 'myotonic dystrophy type 1'}, 'GSM1641255': {'type': 'PBMC'}, 'GSM3132048': {'line': 'TT medullary thyroid cancer cells', 'time': '24hr', 'agent': 'control', 'dose': 'control'}, 'GSM3132049': {'line': 'TT medullary thyroid cancer cells', 'time': '24hr', 'agent': 'Dinaciclib', 'dose': '10nM'}, 'GSM996198': {'age': '30', 'treatment': 'incubated for 1h with TNF-alpha (10 ng/mL)', 'Sex': 'male'}, 'GSM996199': {'age': '30', 'treatment': 'incubated for 1h with GM-CSF (5 ng/mL)', 'Sex': 'male'}, 'GSM996194': {'age': '29', 'treatment': 'none', 'Sex': 'male'}, 'GSM3132043': {'line': 'TT medullary thyroid cancer cells', 'time': '12hr', 'agent': 'control', 'dose': 'control'}, 'GSM996196': {'age': '29', 'treatment': 'incubated for 1h with GM-CSF (5 ng/mL)', 'Sex': 'male'}, 'GSM996197': {'age': '30', 'treatment': 'none', 'Sex': 'male'}, 'GSM3132046': {'line': 'TT medullary thyroid cancer cells', 'time': '12hr', 'agent': 'Dinaciclib', 'dose': '10nM'}, 'GSM3132047': {'line': 'TT medullary thyroid cancer cells', 'time': '24hr', 'agent': 'control', 'dose': 'control'}, 'GSM3132044': {'line': 'TT medullary thyroid cancer cells', 'time': '12hr', 'agent': 'control', 'dose': 'control'}, 'GSM3132045': {'line': 'TT medullary thyroid cancer cells', 'time': '12hr', 'agent': 'Dinaciclib', 'dose': '10nM'}, 'GSM1940181': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM2571044': {'antibody': 'Pol II (CST, catalog# 14958, lot# 1)', 'line': 'IER5_enhancer_KO#1', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2451027': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2711238': {'tissue': 'Meningioma tumor'}, 'GSM2616779': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1511', 'subtype': 'CD154'}, 'GSM1556181': {'subtype': 'basal', 'line': 'MDAMB468', 'agent': 'PKC412'}, 'GSM2711231': {'tissue': 'Meningioma tumor'}, 'GSM2711230': {'tissue': 'Meningioma tumor'}, 'GSM2711233': {'tissue': 'Meningioma tumor'}, 'GSM2711232': {'tissue': 'Meningioma tumor'}, 'GSM2711235': {'tissue': 'Meningioma tumor'}, 'GSM2711234': {'tissue': 'Meningioma tumor'}, 'GSM2711237': {'tissue': 'Meningioma tumor'}, 'GSM2711236': {'tissue': 'Meningioma tumor'}, 'GSM2392234': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2862453': {'death': 'Acute renal failure', 'gender': 'Female', 'age': '54', 'delay': '8:00 hours', 'tissue': 'Circle of Willis', 'antibody': 'H3K4me1 (Abcam, ab8895)', 'id': 'CoW1'}, 'GSM1376101': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2392237': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM1376107': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376106': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376105': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2141934': {'with': 'none', 'sorting': 'CD25-CD137-', 'type': 'T cell clone from healthy donor PBMC', 'id': 'DGB70'}, 'GSM2862458': {'death': 'Euthanasia (metastasized non-small cell lung carcinoma)', 'gender': 'Female', 'age': '60', 'delay': '8:25 hours', 'tissue': 'Circle of Willis', 'antibody': 'H3K27ac (Abcam, ab4729)', 'id': 'CoW2'}, 'GSM1376108': {'state': 'COPD', 'tissue': 'lung'}, 'GSM2392238': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392239': {'line': 'H1 stem cell line', 'multiplex': '95 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2451026': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM3190679': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.891399'}, 'GSM3190678': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '4.906716'}, 'GSM3190675': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.9', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.389451'}, 'GSM3190674': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '4.038528'}, 'GSM3190677': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.553261'}, 'GSM3190676': {'boca': 'No', 'years': '11', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.1', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.536537'}, 'GSM3190671': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A09', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.5', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '9.028589'}, 'GSM1233930': {'replicate': '2', 'line': '12890', 'antibody': 'RNA-seq'}, 'GSM3190673': {'boca': 'No', 'years': '10', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'Yes', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.6', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.623539'}, 'GSM3190672': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.7', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.4', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.544499'}, 'GSM1505608': {'tissue': 'Muscle'}, 'GSM1505609': {'tissue': 'Intestine'}, 'GSM1574320': {'type': 'CFPAC1 cells transfected with ZEB1 expressing vector', 'variation': 'ectopically expressing ZEB1', 'background': 'CFPAC1'}, 'GSM1505600': {'tissue': 'Adipose'}, 'GSM1505601': {'tissue': 'Bladder'}, 'GSM1505602': {'tissue': 'Brain'}, 'GSM1505603': {'tissue': 'Cervix'}, 'GSM1505604': {'tissue': 'Colon'}, 'GSM1505605': {'tissue': 'Ovary'}, 'GSM1505606': {'tissue': 'Placenta'}, 'GSM1505607': {'tissue': 'Prostate'}, 'GSM2616375': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1407', 'subtype': 'CD154'}, 'GSM1940184': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM1607413': {'tissue': 'Foreskin', 'antibody': 'none, input', 'passage': '2'}, 'GSM2680570': {'line': 'H1', 'type': 'embryonic stem cells', 'genotype': 'HEB KO'}, 'GSM1607414': {'tissue': 'Foreskin', 'antibody': 'none, input', 'passage': '2'}, 'GSM1607415': {'tissue': 'Foreskin', 'antibody': 'none, input', 'passage': '2'}, 'GSM1581014': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM2274901': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34669', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10595', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C71', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10595', 'studysiteshort': 'YALE'}, 'GSM2274900': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34663', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10589', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C65', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10589', 'studysiteshort': 'YALE'}, 'GSM2274903': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34673', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10599', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C66', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10599', 'studysiteshort': 'YALE'}, 'GSM2274902': {'area_under_the_curve': '0.528462188', 'siteandparticipantcode': '838213', 'baseline_area_under_the_curve': '0.500585781', 'projectid': 'P54-20', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '105.5687571', 'auc_percent_of_baseline': '105.5687571', 'samplebarcode': '928616-16', 'trunkbarcode': '928616', 'sampleID': 'S34671', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81B3ANXX', 'status': 'R', 'samplelabel': 'lib10597', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_838213', 'gender': 'Male', 'age': '13', 'sortmarkers': 'CD8+ CD45R0+ TIGIT- KLRG1-', 'race': 'White; White', 'c1capturesite': 'C54', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771050087', 'libraryid': 'lib10597', 'studysiteshort': 'YALE'}, 'GSM2339295': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2125735': {'cancer': 'gastritis/IM'}, 'GSM2125734': {'cancer': 'gastritis/IM'}, 'GSM2125737': {'cancer': 'gastritis/IM'}, 'GSM2125736': {'cancer': 'gastritis/IM'}, 'GSM2125731': {'cancer': 'gastritis/IM'}, 'GSM2125730': {'cancer': 'gastritis/IM'}, 'GSM2125733': {'cancer': 'normal'}, 'GSM2125732': {'cancer': 'gastritis/IM'}, 'GSM2125739': {'cancer': 'adjacent normal'}, 'GSM2125738': {'cancer': 'adjacent normal'}, 'GSM1620701': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620700': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620703': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620702': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620705': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620704': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620707': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620706': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620709': {'type': 'MCF10a human breast cancer cells'}, 'GSM2339294': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2304723': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2304722': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2304725': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2304724': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2304727': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2304726': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2304729': {'expression': 'Bottom 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2304728': {'expression': 'Top 10%', 'type': 'Primary AML cells', 'fraction': 'Bulk (CD45 low SSC low)'}, 'GSM2458871': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.00'}, 'GSM1821007': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'a single-copy deletion of chr17p13.1'}, 'GSM1821006': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'a single-copy deletion of chr17p13.1'}, 'GSM1821005': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'a single-copy deletion of chr17p13.1'}, 'GSM1821004': {'type': 'WA09 Human Embryonic Stem Cell', 'variation': 'a single-copy deletion of chr17p13.1'}, 'GSM3576165': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM2339297': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2616372': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2840533': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM3576166': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM3576161': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM3576160': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM2723928': {'state': 'ccRCC', 'individual': 'patient 57398667', 'tissue': 'ccRCC tumor'}, 'GSM2723929': {'state': 'ccRCC', 'individual': 'patient 70528835', 'tissue': 'adjacent normal kidney'}, 'GSM2840537': {'subtype': 'DENV antigen specific TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7- /IFNγ+', 'history': 'DENV positive'}, 'GSM2723920': {'state': 'ccRCC', 'individual': 'patient 12364284', 'tissue': 'ccRCC tumor'}, 'GSM2723921': {'state': 'ccRCC', 'individual': 'patient 17621953', 'tissue': 'adjacent normal kidney'}, 'GSM2723922': {'state': 'ccRCC', 'individual': 'patient 17621953', 'tissue': 'ccRCC tumor'}, 'GSM3576162': {'tissue': 'microdissected tumor stroma', 'treamtment': '1 dose of GM-CSF expressing whole cell pancreatic vaccine (GVAX) 2 weeks prior to resection'}, 'GSM2723924': {'state': 'ccRCC', 'individual': 'patient 20431713', 'tissue': 'ccRCC tumor'}, 'GSM2723925': {'state': 'ccRCC', 'individual': 'patient 40911432', 'tissue': 'adjacent normal kidney'}, 'GSM2723926': {'state': 'ccRCC', 'individual': 'patient 40911432', 'tissue': 'ccRCC tumor'}, 'GSM2723927': {'state': 'ccRCC', 'individual': 'patient 57398667', 'tissue': 'adjacent normal kidney'}, 'GSM2526741': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526740': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526743': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526742': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526745': {'strain': '2242_1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526744': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526747': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526746': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526749': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM2526748': {'strain': '8858-1', 'type': 'hiPSC-derived neural 3D culture', 'time': '4 weeks'}, 'GSM1857097': {'prox1gfp': 'minus', 'type': 'iPSC-derived neurons'}, 'GSM2036523': {'gender': 'Male', 'age': '68', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2036527': {'gender': 'Male', 'age': '59', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2036526': {'gender': 'Male', 'age': '60', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2036525': {'gender': 'Male', 'age': '64', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2036524': {'gender': 'Male', 'age': '71', 'tissue': 'Calcified tricuspid aortic valve (TAV)'}, 'GSM2197891': {'line': 'SF188', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2197890': {'line': 'SF188', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM2197893': {'line': 'UW479', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2197892': {'line': 'UW479', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM2197895': {'line': 'UW479', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2197894': {'line': 'UW479', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM2197897': {'line': 'UW479', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2197896': {'line': 'UW479', 'period': '48 h', 'treatment': 'Control', 'stage': 'pediatric'}, 'GSM1202578': {'line': 'MDA-LM2', 'rep': '2', 'point': '4'}, 'GSM1202579': {'line': 'MDA-LM2', 'rep': '3', 'point': '4'}, 'GSM2124062': {'type': 'Central memory T cells', 'id': 'LH083'}, 'GSM1202577': {'line': 'MDA-LM2', 'rep': '1', 'point': '4'}, 'GSM2124060': {'type': 'Central memory T cells', 'id': 'HS60223'}, 'GSM2124061': {'type': 'Central memory T cells', 'id': 'LH097'}, 'GSM1202572': {'line': 'MDA-LM2', 'rep': '4', 'point': '0'}, 'GSM1202573': {'line': 'MDA-LM2', 'rep': '1', 'point': '2'}, 'GSM2124064': {'type': 'Central memory T cells', 'id': 'LH068'}, 'GSM1202571': {'line': 'MDA-LM2', 'rep': '3', 'point': '0'}, 'GSM3711669': {'Sex': 'M', 'visit': 'Visit 1a', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '9'}, 'GSM3711668': {'Sex': 'M', 'visit': 'Visit 0', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '9'}, 'GSM2565058': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2565059': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM2575277': {'line': 'WM989', 'type': 'melanoma', 'condition': 'mix', 'drug': '1 week'}, 'GSM2565054': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2565055': {'construction': 'PLATE-Seq', 'drug': 'Mitoxantrone Hydrochloride'}, 'GSM2565056': {'construction': 'PLATE-Seq', 'drug': 'Crizotinib'}, 'GSM3711660': {'Sex': 'M', 'visit': 'Visit 1b', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', 'years': '11'}, 'GSM2565050': {'construction': 'PLATE-Seq', 'drug': 'Idarubicin HCl'}, 'GSM2565051': {'construction': 'PLATE-Seq', 'drug': 'Aprepitant (MK - 0869)'}, 'GSM2565052': {'construction': 'PLATE-Seq', 'drug': 'Gemcitabine HCl (Gemzar)'}, 'GSM2565053': {'construction': 'PLATE-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM1053824': {'antibody': 'Flag M2 Agarose beads (Sigma Aldrich)', 'line': 'eCenH3 HeLa S3', 'type': 'Cervical cancer', 'variation': 'CenH3 over-expression'}, 'GSM1053820': {'antibody': 'CENP-A (Enzo life science, ADI-KAM-CC006-E)', 'line': 'HeLa S3', 'type': 'Cervical cancer', 'variation': 'wild type'}, 'GSM1053821': {'antibody': 'None', 'line': 'eCenH3 HeLa S3', 'type': 'Cervical cancer', 'variation': 'CenH3 over-expression'}, 'GSM1053822': {'antibody': 'None', 'line': 'eCenH3 HeLa S3', 'type': 'Cervical cancer', 'variation': 'CenH3 over-expression'}, 'GSM2339293': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM2575276': {'line': 'WM989', 'type': 'melanoma', 'condition': 'mix', 'drug': '1 week'}, 'GSM1899747': {'of': 'AKT1', 'type': 'mammary epithelial cells'}, 'GSM1899746': {'of': 'AKT1', 'type': 'mammary epithelial cells'}, 'GSM2339292': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM1899749': {'of': 'ERK1', 'type': 'mammary epithelial cells'}, 'GSM2158017': {'gender': 'M', 'age': '43', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 10', 'ethnicity': 'C'}, 'GSM2561614': {'protocol': 'Cultured with T3 100nM', 'variation': 'isogenic corrected MCT8-deficient'}, 'GSM2561615': {'protocol': 'Cultured without T3', 'variation': 'isogenic corrected MCT8-deficient'}, 'GSM517435': {'stage': 'Embryonic stem cells'}, 'GSM2046889': {'knockdown': 'siE2F1', 'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2046888': {'knockdown': 'siE2F1', 'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2046887': {'knockdown': 'siE2F1', 'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM2046886': {'knockdown': 'siE2F1', 'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM2046885': {'knockdown': 'siE2F1', 'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM2046884': {'knockdown': 'siCTRL', 'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2046883': {'knockdown': 'siCTRL', 'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2046882': {'knockdown': 'siCTRL', 'type': 'Mesenchymal stem cells', 'agasga': 'AGA'}, 'GSM2046881': {'knockdown': 'siCTRL', 'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM2046880': {'knockdown': 'siCTRL', 'type': 'Mesenchymal stem cells', 'agasga': 'SGA'}, 'GSM2112733': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM R5020', 'time': '48 Hours'}, 'GSM2112732': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '48 Hours'}, 'GSM2112731': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': 'Vehicle', 'time': '48 Hours'}, 'GSM2112730': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '24 Hours'}, 'GSM2112737': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM R5020', 'time': '48 Hours'}, 'GSM2112736': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10 nM Estradiol', 'time': '48 Hours'}, 'GSM2112735': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': 'Vehicle', 'time': '48 Hours'}, 'GSM2112734': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': '10nM Estradiol + 10 nM R5020', 'time': '48 Hours'}, 'GSM2112739': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': 'Vehicle', 'time': '48 Hours'}, 'GSM2561611': {'protocol': 'Cultured without T3', 'variation': 'healthy control'}, 'GSM2829989': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2303308': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2829988': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM984352': {'grade': '3', 'recurrence': '0', 'size': '1', 'metastasis': '0', 'Stage': 'I'}, 'GSM2303309': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACJV399'}, 'GSM2454185': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM1067870': {'adaptor': \"5' TGGAATTCTCGGGTGCCAAGG 3'\", 'vendor': 'From Gunter Meister; PMID:18430891', 'line': 'HeLa', 'antibody': 'monoclonal Ago2; 11A9'}, 'GSM1090500': {'dnebna1': 'yes', 'line': 'Sav S1-1', 'barts': 'no', 'treatment': 'Doxycycline'}, 'GSM2263581': {'type': 'tumor cells', 'treatment': 'untreated'}, 'GSM2287589': {'multiplexing': '96', 'line': 'H9', 'type': 'human embryonic stem cells', 'passage': 'passage 25-35'}, 'GSM2263580': {'type': 'tumor cells', 'treatment': 'untreated'}, 'GSM2303301': {'race': 'Hispanic', 'age': '42', 'bmi': '43', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACJV399'}, 'GSM2829983': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1521570': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM1521571': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM2644913': {'passages': '75', 'sirna': 'TUNAR siRNAs', 'treatment': '1-AKP'}, 'GSM2644912': {'passages': '74', 'sirna': 'TUNAR siRNAs', 'treatment': '1-AKP'}, 'GSM1521574': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521575': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521576': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521577': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1521578': {'tissue': 'Leukapheresis', 'type': 'acute myeloid leukemia'}, 'GSM1521579': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2883039': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject3', 'drug': 'Metformin'}, 'GSM2883038': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject2', 'drug': 'Metformin'}, 'GSM2829984': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2641091': {'tissue': 'heart left ventricle', 'diagnosis': 'idiopathic dilated cardiomyopathy'}, 'GSM2339298': {'timing': 'term (>39 weeks) pregnancy', 'status': 'healthy', 'tissue': 'placenta', 'batch': '1', 'birth': 'C-section'}, 'GSM1921059': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM control siRNA Non-targeting Control Pool (Dharmacon, cat# D-001810-10) for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1921058': {'line': 'Hela', 'passages': 'passage number 55-65', 'conditions': '2.5 x105 hela cells in 6-well plates 100 nM control siRNA Non-targeting Control Pool (Dharmacon, cat# D-001810-10) for 72 h', 'provider': 'ATCC, cat# ATCC-CCL2'}, 'GSM1401776': {'tissue': 'Uninvolved Breast Tissue Adjacent to ER+ Primary Tumor'}, 'GSM2150850': {'line': 'HeLa', 'transfection': 'Circular RNA'}, 'GSM2150851': {'line': 'HeLa', 'transfection': 'Circular RNA'}, 'GSM1865627': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865626': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865625': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865624': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865623': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM2652139': {'origin': 'endothelial cell', 'tissue': 'umbilical vein'}, 'GSM1865621': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865620': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865629': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM1865628': {'status': 'healthy', 'type': 'dermal fibroblast'}, 'GSM2817112': {'tissue': 'liver', 'type': 'Hepatocyte'}, 'GSM2817117': {'tissues': 'peripheral blood', 'stage': 'early pregnancy'}, 'GSM1395638': {'subtype': 'Neu+Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395639': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395636': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395637': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395634': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395635': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395632': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395633': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395630': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1395631': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH28'}, 'GSM1383899': {'passages': '17-20', 'type': 'Liposarcoma Cells', 'genotype': 'RNAi Control'}, 'GSM1383898': {'passages': '17-20', 'type': 'Liposarcoma Cells', 'genotype': 'RNAi Control'}, 'GSM2287479': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2081479': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081478': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081477': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081476': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081475': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081474': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Control'}, 'GSM2081473': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081472': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081471': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2081470': {'region': \"Brodmann's Area 9\", 'tissue': 'brain', 'stage': 'Bipolar Disorder'}, 'GSM2281615': {'state': 'Primed', 'tissue': 'embryonic stem cells', 'medium': 'hESM'}, 'GSM2281614': {'state': 'Naive', 'tissue': 'embryonic stem cells', 'medium': 'NHSM (Gafni et al.)'}, 'GSM2479793': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2287478': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2228798': {'donor': '11', 'treatment': 'mock', 'infection': '48'}, 'GSM2479792': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM1061021': {'transfection': 'RIPK1', 'line': 'PA1 cell'}, 'GSM1061020': {'transfection': 'Wnt3a', 'line': 'PA1 cell'}, 'GSM1061023': {'transfection': 'RIPK3', 'line': 'PA1 cell'}, 'GSM1061022': {'transfection': 'RIPK2', 'line': 'PA1 cell'}, 'GSM2228791': {'donor': '11', 'treatment': 'LPS', 'infection': '6'}, 'GSM2228790': {'donor': '11', 'treatment': 'mock', 'infection': '6'}, 'GSM2228793': {'donor': '11', 'treatment': 'RESTV', 'infection': '6'}, 'GSM2228792': {'donor': '11', 'treatment': 'EBOV', 'infection': '6'}, 'GSM2228795': {'donor': '11', 'treatment': 'LPS', 'infection': '24'}, 'GSM2228794': {'donor': '11', 'treatment': 'mock', 'infection': '24'}, 'GSM2228797': {'donor': '11', 'treatment': 'RESTV', 'infection': '24'}, 'GSM2228796': {'donor': '11', 'treatment': 'EBOV', 'infection': '24'}, 'GSM2092518': {'repertoire': 'TCR-alpha', 'individual': 'patient 3 (non-glioma)', 'tissue': 'peripheral blood'}, 'GSM2092519': {'repertoire': 'TCR-beta', 'individual': 'patient 3 (non-glioma)', 'tissue': 'peripheral blood'}, 'GSM2281613': {'state': 'Naive', 'tissue': 'embryonic stem cells', 'medium': 'NHSM (Gafni et al.)'}, 'GSM2092510': {'individual': 'patient 1 (non-glioma)', 'tissue': 'brain'}, 'GSM2092511': {'repertoire': 'TCR-alpha', 'individual': 'patient 2 (non-glioma)', 'tissue': 'brain'}, 'GSM2092512': {'repertoire': 'TCR-beta', 'individual': 'patient 2 (non-glioma)', 'tissue': 'brain'}, 'GSM2281612': {'state': 'Naive', 'tissue': 'embryonic stem cells', 'medium': 'NHSM (Gafni et al.)'}, 'GSM2092514': {'repertoire': 'TCR-beta', 'individual': 'patient 2 (non-glioma)', 'tissue': 'peripheral blood'}, 'GSM2092515': {'individual': 'patient 2 (non-glioma)', 'tissue': 'brain'}, 'GSM2092516': {'repertoire': 'TCR-alpha', 'individual': 'patient 3 (non-glioma)', 'tissue': 'brain'}, 'GSM2092517': {'repertoire': 'TCR-beta', 'individual': 'patient 3 (non-glioma)', 'tissue': 'brain'}, 'GSM1964937': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964936': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964935': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964934': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2325957': {'type': 'Human embryonic stem cell'}, 'GSM2325956': {'type': 'Human embryonic stem cell'}, 'GSM2325955': {'type': 'Human embryonic stem cell'}, 'GSM2325954': {'type': 'Human embryonic stem cell'}, 'GSM2648119': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'Progesterone', 'time': '3 weeks'}, 'GSM2325952': {'type': 'Human embryonic stem cell'}, 'GSM2325951': {'type': 'Human embryonic stem cell'}, 'GSM2325950': {'type': 'Human embryonic stem cell'}, 'GSM2648117': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'EC313', 'time': '3 weeks'}, 'GSM2648116': {'status': 'ER+/PR+', 'type': 'T47D Xenografts', 'treatment': 'Vehicle', 'time': '3 weeks'}, 'GSM2325959': {'type': 'Human embryonic stem cell'}, 'GSM2325958': {'type': 'Human embryonic stem cell'}, 'GSM2602098': {'tissue': 'Skin', 'genotype': 'Wild type (RelA+/+)', 'passage': 'P5-7'}, 'GSM2602099': {'tissue': 'Skin', 'genotype': 'Wild type (RelA+/+)', 'passage': 'P5-7'}, 'GSM2543668': {'library_id': 'lib5797', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.344', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2932838': {'pucai': '65', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM2932839': {'pucai': '50', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '7'}, 'GSM2602092': {'tissue': 'Skin', 'genotype': 'Wild type (RelA+/+)', 'passage': 'P5-7'}, 'GSM2602093': {'tissue': 'Skin', 'genotype': 'Wild type (RelA+/+)', 'passage': 'P5-7'}, 'GSM2602090': {'shRNA': 'METTL3 shRNA #12', 'type': 'Acute myeloid leukemia', 'name': 'NA', 'replicates': '3', 'barcodes': 'NA'}, 'GSM2602091': {'tissue': 'Skin', 'genotype': 'Wild type (RelA+/+)', 'passage': 'P5-7'}, 'GSM2602096': {'tissue': 'Skin', 'genotype': 'RelA+/-', 'passage': 'P5-7'}, 'GSM2602097': {'tissue': 'Skin', 'genotype': 'RelA+/-', 'passage': 'P5-7'}, 'GSM2602094': {'tissue': 'Skin', 'genotype': 'RelA+/-', 'passage': 'P5-7'}, 'GSM2602095': {'tissue': 'Skin', 'genotype': 'RelA+/-', 'passage': 'P5-7'}, 'GSM2200460': {'state': 'non-disease', 'type': 'Peripheral blood derived mononuclear cells', 'genotype': 'C/C rs6716753'}, 'GSM1574109': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '52', 'treatment': 'none'}, 'GSM1574108': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '52', 'treatment': 'none'}, 'GSM1174217': {'note': 'Barcode provided after read name in fastq file', 'line': 'HeLa', 'barcode': 'CGATGT', 'type': 'exosome-depleted'}, 'GSM1174216': {'note': 'Barcode provided after read name in fastq file', 'line': 'HeLa', 'barcode': 'GCCAAT', 'type': 'egfp control'}, 'GSM1174215': {'line': 'HeLa', 'barcode': 'ATGCAGCAG', 'type': 'exosome-depleted'}, 'GSM1174214': {'line': 'HeLa', 'barcode': 'ATGCAGCAG', 'type': 'egfp control'}, 'GSM1574103': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '48', 'treatment': 'none'}, 'GSM1574102': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '48', 'treatment': 'none'}, 'GSM1574101': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '48', 'treatment': 'none'}, 'GSM1574100': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '42', 'treatment': '100 nM rotenone'}, 'GSM1574107': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '52', 'treatment': 'none'}, 'GSM1574106': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '48', 'treatment': '100 nM rotenone'}, 'GSM1574105': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '48', 'treatment': '100 nM rotenone'}, 'GSM1574104': {'type': 'fibroblasts', 'line': 'MRC-5', 'doublings': '48', 'treatment': '100 nM rotenone'}, 'GSM2326202': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'GATA1TSS-Guide'}, 'GSM2326203': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'GATA1TSS-Guide'}, 'GSM2326200': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'GATA1TSS-Guide'}, 'GSM2326201': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'GATA1TSS-Guide'}, 'GSM2326206': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326207': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326204': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'GATA1TSS-Guide'}, 'GSM2326205': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'GATA1TSS-Guide'}, 'GSM2326208': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM2326209': {'with': 'doxycycline for 24hrs', 'type': 'K562', 'variation': 'expressing catalytically-dead Cas9 fused to a KRAB repressive domain from a doxycycline-inducible promoter', 'element': 'NC-Guide'}, 'GSM1920795': {'type': 'hematopoietic', 'diagnosis': 'Erdheim Chester Disease'}, 'GSM2453980': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453981': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453982': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453983': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453984': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453985': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453986': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453987': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453988': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2453989': {'culture': 'melanoma short-term culture Ma-Mel-108', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'BRAF V600E mutant and NRAS wild type'}, 'GSM2458869': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.33'}, 'GSM2458866': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '5.42'}, 'GSM2458867': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.75'}, 'GSM1920790': {'type': 'hematopoietic', 'diagnosis': 'Langerhans Cell Histiocytosis'}, 'GSM2458864': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '2.25'}, 'GSM2458865': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.75'}, 'GSM2458862': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.00'}, 'GSM2519382': {'with': 'wildtype HSV-1', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM1701699': {'line': 'H1'}, 'GSM2458860': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '4.83'}, 'GSM2519380': {'with': 'HSV1 K220A mutated', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2424906': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2361788': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361789': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390647': {'tissue': 'Engrafted primary AML', 'subject': 'SU042'}, 'GSM2390646': {'tissue': 'Engrafted primary AML', 'subject': 'SU042'}, 'GSM2390645': {'tissue': 'Primary AML', 'subject': 'SU223'}, 'GSM2937074': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM2361782': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361783': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2390649': {'tissue': 'Engrafted primary AML', 'subject': 'SU042'}, 'GSM2390648': {'tissue': 'Engrafted primary AML', 'subject': 'SU042'}, 'GSM2361786': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361787': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361784': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361785': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2759494': {'tissue': 'dermal fibroblast', 'genotype': 'Null mutant', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2550428': {'donor': 'C', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550421': {'donor': 'B', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550420': {'donor': 'B', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550423': {'donor': 'B', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550422': {'donor': 'B', 'type': 'Polarized bronchial epithelial cells', 'infection': '-', 'Sex': 'female'}, 'GSM2550425': {'donor': 'B', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550424': {'donor': 'B', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550427': {'donor': 'B', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2550426': {'donor': 'B', 'type': 'Polarized bronchial epithelial cells', 'infection': '+', 'Sex': 'female'}, 'GSM2383928': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'GFP'}, 'GSM2383929': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'NRF2'}, 'GSM2383922': {'knockdown': '24hrs', 'line': 'H2122 cells', 'target': 'GFP'}, 'GSM2383923': {'knockdown': '24hrs', 'line': 'H2122 cells', 'target': 'NRF2'}, 'GSM2383920': {'knockdown': '24hrs', 'line': 'H2122 cells', 'target': 'GFP'}, 'GSM2383921': {'knockdown': '24hrs', 'line': 'H2122 cells', 'target': 'GFP'}, 'GSM2383926': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'GFP'}, 'GSM2383927': {'knockdown': '72hrs', 'line': 'H460 cells', 'target': 'GFP'}, 'GSM2383924': {'knockdown': '24hrs', 'line': 'H2122 cells', 'target': 'NRF2'}, 'GSM2383925': {'knockdown': '24hrs', 'line': 'H2122 cells', 'target': 'NRF2'}, 'GSM2265837': {'line': 'HeLa', 'sirna': 'TUT3', 'timepoint': '0'}, 'GSM2265836': {'line': 'HeLa', 'sirna': 'TUT7', 'timepoint': '30'}, 'GSM2265835': {'line': 'HeLa', 'sirna': 'TUT7', 'timepoint': '0'}, 'GSM2265834': {'line': 'HeLa', 'sirna': 'TUT4/TUT7', 'timepoint': '30'}, 'GSM2265833': {'line': 'HeLa', 'sirna': 'TUT4/TUT7', 'timepoint': '0'}, 'GSM2265832': {'line': 'HeLa', 'sirna': 'TUT7/hEXO', 'timepoint': '30'}, 'GSM2265831': {'line': 'HeLa', 'sirna': 'TUT7/hEXO', 'timepoint': '0'}, 'GSM2265830': {'line': 'HeLa', 'sirna': 'Control', 'timepoint': '30'}, 'GSM3177210': {'responder': 'NO', 'global': '12', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '27', 'cdai': '290'}, 'GSM3177211': {'responder': 'NO', 'global': '11', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '27', 'cdai': '37.2'}, 'GSM3177212': {'responder': 'YES', 'global': '18', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w0', 'id': '28', 'cdai': '232'}, 'GSM3177213': {'responder': 'YES', 'global': '0', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w106', 'id': '28', 'cdai': '196.5'}, 'GSM3177214': {'responder': 'YES', 'global': '4', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w26', 'id': '28', 'cdai': '153.98'}, 'GSM3177215': {'responder': 'YES', 'global': '0', 'disease': \"Crohn's disease (CD)\", 'Sex': 'female', 'tissue': 'Colon biopsy', 'treatment': 'w52', 'id': '28', 'cdai': '32.84'}, 'GSM2265839': {'line': 'HeLa', 'sirna': 'TUT7', 'timepoint': '0'}, 'GSM2265838': {'line': 'HeLa', 'sirna': 'TUT3', 'timepoint': '30'}, 'GSM1603333': {'cl': '98', 'ca': '9.3', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '1.03', 'id': 'S20', 'co2': '25', 'rr': '25', 'plavix': '--', 'na': '134', 'iiia': 'Yes', 'type': 'NSTEMI', 'glucose': '203', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '26', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '19.78', 'gender': 'M', 'k': '3.4', 'batch': '3', 'prasugrel': '--', 'cad': 'Yes'}, 'GSM1603332': {'cl': '100', 'ca': '9.1', 'dyslipidemia': 'Yes', 'year': '<20', 'statin': '--', 'creatinine': '0.88', 'id': 'S19', 'co2': '25', 'rr': '16', 'plavix': 'Yes', 'na': '132', 'iiia': '--', 'type': 'STEMI', 'glucose': '139', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '18', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '71.14', 'gender': 'F', 'k': '3.9', 'batch': '4', 'prasugrel': '--', 'cad': 'Yes'}, 'GSM1603331': {'cl': '102', 'ca': '8.8', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '1.38', 'id': 'S18', 'co2': '27.2', 'rr': '18', 'plavix': 'Yes', 'na': '137', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '156', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '23', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '2.93', 'gender': 'M', 'k': '4', 'batch': '4', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603330': {'cl': '110', 'ca': '9.2', 'dyslipidemia': 'Yes', 'year': '--', 'statin': '--', 'creatinine': '1.03', 'id': 'S17', 'co2': '23', 'rr': '18', 'plavix': '--', 'na': '141', 'iiia': '--', 'type': 'STEMI', 'glucose': '125', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '17', 'smoking': 'Yes', 'day': '1', 'ticagrelor': 'Yes', 'troponin': '>90', 'gender': 'M', 'k': '4.4', 'batch': '2', 'prasugrel': '--', 'cad': 'Yes'}, 'GSM1603337': {'cl': '101', 'ca': '8.8', 'dyslipidemia': 'No', 'year': '--', 'statin': '--', 'creatinine': '0.91', 'id': 'S24', 'co2': '29.3', 'rr': '16', 'plavix': '--', 'na': '134', 'iiia': '--', 'type': 'STEMI', 'glucose': '139', 'ht': 'No', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '16', 'smoking': 'Yes', 'day': '1', 'ticagrelor': '--', 'troponin': '0.07', 'gender': 'F', 'k': '4.3', 'batch': '2', 'prasugrel': 'Yes', 'cad': 'No'}, 'GSM1603336': {'cl': '94', 'ca': '8.2', 'dyslipidemia': 'No', 'year': '20', 'statin': 'Yes', 'creatinine': '0.94', 'id': 'S23', 'co2': '26', 'rr': '18', 'plavix': '--', 'na': '125', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '95', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '14', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '1.45', 'gender': 'M', 'k': '4', 'batch': '1', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603335': {'cl': '105', 'ca': '8.1', 'dyslipidemia': 'Yes', 'year': '15', 'statin': '--', 'creatinine': '1.65', 'id': 'S22', 'co2': '20', 'rr': '22', 'plavix': '--', 'na': '136', 'iiia': '--', 'type': 'STEMI', 'glucose': '208', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '35', 'smoking': 'No', 'day': '--', 'ticagrelor': 'Yes', 'troponin': '20.26', 'gender': 'M', 'k': '5.1', 'batch': '1', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603334': {'cl': '107', 'ca': '9.3', 'dyslipidemia': 'Yes', 'year': '40', 'statin': 'Yes', 'creatinine': '0.86', 'id': 'S21', 'co2': '26', 'rr': '18', 'plavix': '--', 'na': '140', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '117', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '15', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '7.59', 'gender': 'M', 'k': '4.2', 'batch': '2', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603339': {'cl': '103', 'ca': '9.8', 'dyslipidemia': 'Yes', 'year': '--', 'statin': '--', 'creatinine': '0.88', 'id': 'S26', 'co2': '25', 'rr': '20', 'plavix': '--', 'na': '137', 'iiia': '--', 'type': 'STEMI', 'glucose': '235', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '15', 'smoking': 'No', 'day': '--', 'ticagrelor': 'Yes', 'troponin': '>90', 'gender': 'F', 'k': '4.7', 'batch': '4', 'prasugrel': '--', 'cad': 'No'}, 'GSM1603338': {'cl': '105', 'ca': '9.2', 'dyslipidemia': 'Yes', 'year': '--', 'statin': '--', 'creatinine': '1.08', 'id': 'S25', 'co2': '26', 'rr': '14', 'plavix': 'Yes', 'na': '140', 'iiia': '--', 'type': 'STEMI', 'glucose': '118', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '23', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '52.33', 'gender': 'M', 'k': '3.7', 'batch': '3', 'prasugrel': '--', 'cad': 'No'}, 'GSM2516830': {'death': '90', 'score': 'VI', 'post_mortem_interval': '2.53', 'caseid': '11-75', 'Sex': 'F', 'rin_score': '6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655600'}, 'GSM2516831': {'death': '80', 'score': 'I', 'post_mortem_interval': '2.16', 'caseid': '03-28', 'Sex': 'M', 'rin_score': '5.3', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655511'}, 'GSM2516832': {'death': '103', 'score': 'IV', 'post_mortem_interval': '2.6', 'caseid': '10-87', 'Sex': 'F', 'rin_score': '6.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655397'}, 'GSM2516833': {'death': '84', 'score': 'V', 'post_mortem_interval': '2.33', 'caseid': '05-35', 'Sex': 'M', 'rin_score': '5.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655447'}, 'GSM2516834': {'death': '92', 'score': 'III', 'post_mortem_interval': '3', 'caseid': '06-57', 'Sex': 'M', 'rin_score': '6.4', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655505'}, 'GSM2722230': {'line': 'GM02171', 'type': 'adult fibroblasts', 'treatment': 'No treatment', 'timepoint': 'd0'}, 'GSM2516836': {'death': '91', 'score': 'V', 'post_mortem_interval': '3.5', 'caseid': '06-09', 'Sex': 'F', 'rin_score': '5.7', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655440'}, 'GSM2516837': {'death': '82', 'score': 'III', 'post_mortem_interval': '2.16', 'caseid': '05-36', 'Sex': 'M', 'rin_score': '7.9', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655504'}, 'GSM2516838': {'death': '83', 'score': 'II', 'post_mortem_interval': '4.83', 'caseid': '04-38', 'Sex': 'F', 'rin_score': '7.4', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655510'}, 'GSM2516839': {'death': '86', 'score': 'V', 'post_mortem_interval': '3.5', 'caseid': '00-12', 'Sex': 'F', 'rin_score': '6.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655437'}, 'GSM1945978': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA18511', 'for': '60min'}, 'GSM1553111': {'type': 'Wi-38 fibroblasts', 'doublings': '57'}, 'GSM1553110': {'type': 'Wi-38 fibroblasts', 'doublings': '57'}, 'GSM3594525': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594524': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594527': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594526': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594521': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594520': {'cluster': '3', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM1548458': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548459': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548456': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548457': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548454': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1980131': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1548452': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548453': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM1548450': {'tissue': 'liver', 'type': 'intrahepatic cholangiocarcinoma'}, 'GSM1548451': {'tissue': 'liver', 'type': 'surrounding non-tumoral tissue'}, 'GSM2285379': {'replicate': '2', 'time': '24 h', 'type': 'dlbcl', 'name': 'OCILY19', 'treatment': 'AZD5153'}, 'GSM2233285': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2481917': {'age': '64-88 years', 'tissue': 'Bone biopsy', 'group': 'Older Woman'}, 'GSM2048698': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048699': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM1970080': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970081': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2048690': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048691': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048692': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048693': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048694': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048695': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048696': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2048697': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 1st', 'variation': 'CSL +/+'}, 'GSM2204685': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204684': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2635719': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'Activin A'}, 'GSM2635718': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'Activin A'}, 'GSM2204681': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204680': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204683': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2204682': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2635713': {'genotype': 'WT', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM1836536': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM2635711': {'genotype': 'WT', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635710': {'genotype': 'WT', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2204689': {'type': 'lung epithelial cells', 'purification': 'live, CD45-, Epcam+, HTII-280+'}, 'GSM2635716': {'genotype': 'YAP-', 'treatment_time': '30h', 'treatment': 'Activin A'}, 'GSM2635715': {'genotype': 'WT', 'treatment_time': '30h', 'treatment': 'XV50'}, 'GSM2635714': {'genotype': 'WT', 'treatment_time': '30h', 'treatment': 'XV50'}, 'GSM2451119': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451118': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1980133': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2451111': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451110': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451113': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451112': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451115': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451114': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451117': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451116': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM3584119': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'male'}, 'GSM3584118': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'male'}, 'GSM1598164': {'with': 'siRNA against CSL', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM1598163': {'with': 'siRNA against CSL', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM1598162': {'with': 'control siRNA', 'tissue': 'abdomen skin', 'type': 'primary dermal fibroblasts', 'passage': '5'}, 'GSM3584111': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'female'}, 'GSM3584110': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'female'}, 'GSM3584113': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'female'}, 'GSM1897277': {'line': '600MPE', 'type': 'breast cancer cell line'}, 'GSM3584115': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'male'}, 'GSM3584114': {'tissue': 'vastus laterlis', 'phenotype': 'flexible', 'Sex': 'female'}, 'GSM3584117': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'male'}, 'GSM3584116': {'tissue': 'vastus laterlis', 'phenotype': 'Inflexibile', 'Sex': 'male'}, 'GSM1619503': {'type': 'peripheral monocytes', 'id': '#13', 'procedure': 'adjustable gastric banding', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619502': {'type': 'peripheral monocytes', 'id': '#12', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619501': {'type': 'peripheral monocytes', 'id': '#11', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619500': {'type': 'peripheral monocytes', 'id': '#10', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619507': {'type': 'peripheral monocytes', 'id': '#18', 'procedure': 'adjustable gastric banding', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1980132': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1619505': {'type': 'peripheral monocytes', 'id': '#16', 'procedure': 'adjustable gastric banding', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619504': {'type': 'peripheral monocytes', 'id': '#15', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619509': {'type': 'peripheral monocytes', 'id': '#20', 'procedure': 'adjustable gastric banding', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1619508': {'type': 'peripheral monocytes', 'id': '#19', 'procedure': 'Roux-en-Y gastric bypass', 'point': 'T3; 3 months after bariatric surgery'}, 'GSM1897276': {'line': '184B5', 'type': 'breast cancer cell line'}, 'GSM2152534': {'line': 'RWPE1', 'expression': 'NKX3.1'}, 'GSM1666051': {'line': 'melanoma cell line A375P', 'agent': 'SCH772984'}, 'GSM3586495': {'origin': 'ABC', 'pfstt': '217', 'pfscs': '1', 'region': 'Eastern Europe', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '464', 'cycles': '6', 'oscs': '1'}, 'GSM2107714': {'line': 'REH', 'type': 'B-ALL'}, 'GSM2716076': {'passages': '6', 'condition': 'neurosphere', 'location': 'pons', 'diagnosis': 'DIPG', 'treatment': 'hypoxia'}, 'GSM2716077': {'passages': '6', 'condition': 'neurosphere', 'location': 'pons', 'diagnosis': 'DIPG', 'treatment': 'normoxy'}, 'GSM2716074': {'passages': '21', 'condition': 'neurosphere', 'location': 'thalamic', 'diagnosis': 'glioblastoma', 'treatment': 'normoxy'}, 'GSM2716075': {'passages': '25', 'condition': 'monolayer', 'location': 'thalamic', 'diagnosis': 'glioblastoma', 'treatment': 'normoxy'}, 'GSM2716073': {'passages': '21', 'condition': 'neurosphere', 'location': 'thalamic', 'diagnosis': 'glioblastoma', 'treatment': 'hypoxia'}, 'GSM1334899': {'transgene': 'NFH-SNRNP70', 'treatment': 'input'}, 'GSM1334898': {'transgene': 'MSA-SNRNP70', 'treatment': 'IPL'}, 'GSM1334897': {'transgene': 'MSA-SNRNP70', 'treatment': 'input'}, 'GSM2170670': {'stage': 'Hepatic endoderm 2'}, 'GSM2716078': {'passages': '13', 'condition': 'monolayer', 'location': 'pons', 'diagnosis': 'DIPG', 'treatment': 'normoxy'}, 'GSM2716079': {'passages': '34', 'condition': 'neurosphere', 'location': 'pons', 'diagnosis': 'DIPG', 'treatment': 'hypoxia'}, 'GSM2170671': {'stage': 'Hepatic endoderm 2'}, 'GSM2493889': {'line': 'Hap1', 'variation': 'WaplKO_3.3'}, 'GSM2493888': {'line': 'Hap1', 'variation': 'WT'}, 'GSM2230428': {'antibody': 'none', 'region': 'Diencephalon', 'type': 'NA', 'age': '8 weeks, 6 days'}, 'GSM2230429': {'antibody': 'none', 'region': 'Ganglionic Eminence', 'type': 'NA', 'age': '8 weeks, 6 days'}, 'GSM2230426': {'antibody': 'none', 'region': 'Spinal Cord', 'type': 'NA', 'age': '11 weeks'}, 'GSM2230427': {'antibody': 'none', 'region': 'Cortex', 'type': 'NA', 'age': '8 weeks, 6 days'}, 'GSM2230424': {'antibody': 'none', 'region': 'Spinal Cord', 'type': 'NA', 'age': '11 weeks'}, 'GSM2493886': {'line': 'Hap1', 'variation': 'WT'}, 'GSM2230422': {'antibody': 'none', 'region': 'Spinal Cord', 'type': 'NA', 'age': '11 weeks'}, 'GSM2230423': {'antibody': 'none', 'region': 'Spinal Cord', 'type': 'NA', 'age': '11 weeks'}, 'GSM2230420': {'antibody': 'none', 'region': 'NA', 'type': 'iPS-derived neural progenitor cells', 'age': 'NA'}, 'GSM2230421': {'antibody': 'none', 'region': 'Hindbrain', 'type': 'NA', 'age': '11 weeks'}, 'GSM2136865': {'Error': \"('Connection aborted.', BadStatusLine('No status line received - the server has closed the connection',))\"}, 'GSM2136864': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, ENL Knock Down', 'batch': '2'}, 'GSM2136867': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, ENL Knock Down plus WT rescue', 'batch': '2'}, 'GSM2136866': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, ENL Knock Down plus WT rescue', 'batch': '2'}, 'GSM2200858': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2200859': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2136863': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, Control', 'batch': '2'}, 'GSM2136862': {'cell': 'iCas9-MOLM-13 cells', 'treatment': 'doxycyline 4 days, Control', 'batch': '2'}, 'GSM2200854': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200855': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200856': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200857': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200850': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200851': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200852': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2200853': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM715449': {'tissue': 'lung squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715448': {'tissue': 'skin squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715441': {'tissue': 'head and neck squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715440': {'tissue': 'prostate adenocarcinoma', 'method': 'FFPE'}, 'GSM715443': {'tissue': 'head and neck squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715442': {'tissue': 'head and neck squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715445': {'tissue': 'head and neck squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715444': {'tissue': 'head and neck squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715447': {'tissue': 'skin squamous cell carcinoma', 'method': 'FFPE'}, 'GSM715446': {'tissue': 'skin squamous cell carcinoma', 'method': 'FFPE'}, 'GSM1545561': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545560': {'count': '3', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545563': {'count': '1', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '2'}, 'GSM1545562': {'count': '1', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545565': {'count': '1', 'group': 'No Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545564': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '1'}, 'GSM1545567': {'count': '0', 'group': 'Sepsis T0', 'positive': 'Yes', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '3'}, 'GSM1545566': {'count': '3', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'Yes', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545569': {'count': '0', 'group': 'Control T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1545568': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '0'}, 'GSM1435512': {'type': 'Fibroblast primary cell line'}, 'GSM2311814': {'culture': '0'}, 'GSM2312177': {'culture': '12', 'line': 'DCX-'}, 'GSM2759491': {'tissue': 'dermal fibroblast', 'genotype': 'Dominant negative mutant_glycine missense', 'condition': 'collagen VI related muscular dystrophy'}, 'GSM2312176': {'culture': '12', 'line': 'DCX-'}, 'GSM2287510': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM3580308': {'phase': 'HIV-1', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HIV'}, 'GSM2233199': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233198': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233197': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233196': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233195': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233194': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233193': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233192': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2233191': {'status': 'squamous cell carcinoma', 'tissue': 'primary tumor', 'type': 'single cell'}, 'GSM2287513': {'multiplexing': '24', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2274998': {'area_under_the_curve': '0.359859063', 'siteandparticipantcode': '781179', 'baseline_area_under_the_curve': '0.547132656', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '65.77181208', 'auc_percent_of_baseline': '65.77181208', 'trunkbarcode': '931982', 'sampleID': 'S10705', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib841', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_781179', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib842', 'studysiteshort': 'YALE'}, 'GSM2455642': {'culture': 'D26', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2469556': {'status': 'resistant', 'gender': 'male', 'individual': 'r10', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2274992': {'area_under_the_curve': '0.559338281', 'siteandparticipantcode': '555647', 'baseline_area_under_the_curve': '0.847411719', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '66.00549283', 'auc_percent_of_baseline': '66.00549283', 'trunkbarcode': '937165', 'sampleID': 'S10695', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib835', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_555647', 'gender': 'Male', 'age': '11', 'race': 'White', 'libraryid': 'lib835', 'studysiteshort': 'BRI-VM'}, 'GSM2274993': {'area_under_the_curve': '0.502189063', 'siteandparticipantcode': '623229', 'baseline_area_under_the_curve': '0.930989219', 'projectid': 'P54-1', 'visitmonth': '12', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '53.9414477', 'auc_percent_of_baseline': '53.9414477', 'trunkbarcode': '915917', 'sampleID': 'S10697', 'flowcellid': 'C25A9ACXX', 'status': 'C', 'samplelabel': 'lib836', 'visitnumber': '21', 'seqsite': 'BRI', 'libraryprep': 'TruSeq RNA v2', 'lane': '1,5', 'treatmentgroup': 'Control', 'name': 'AbATE_623229', 'gender': 'Female', 'age': '15', 'race': 'Black or African American; White', 'libraryid': 'lib836', 'studysiteshort': 'PNRI'}, 'GSM2312179': {'culture': '12', 'line': 'DCX-'}, 'GSM2312178': {'culture': '12', 'line': 'DCX-'}, 'GSM3586729': {'origin': 'GCB', 'pfstt': '1111', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1137', 'cycles': '6', 'oscs': '0'}, 'GSM2061454': {'line': 'HEK 293', 'sirna': 'control siRNA'}, 'GSM1695854': {'tissue': 'Bone marrow', 'markers': 'CD34+CD38+CD10+CD45RA+linneg'}, 'GSM3580309': {'phase': 'HIV-1', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HIV'}, 'GSM889418': {'type': 'Ls174T human colon cancer cells', 'suppression': 'on'}, 'GSM889419': {'type': 'Ls174T human colon cancer cells', 'suppression': 'off'}, 'GSM889412': {'vendor': 'Euromedex', 'antibody': 'anti-RNAPII', 'suppression': 'on', 'type': 'Ls174T human colon cancer cells'}, 'GSM889413': {'vendor': 'Euromedex', 'antibody': 'anti-RNAPII', 'suppression': 'off', 'type': 'Ls174T human colon cancer cells'}, 'GSM889410': {'vendor': 'Euromedex', 'antibody': 'anti-RNAPII', 'suppression': 'on', 'type': 'Ls174T human colon cancer cells'}, 'GSM889411': {'vendor': 'Euromedex', 'antibody': 'anti-RNAPII', 'suppression': 'on', 'type': 'Ls174T human colon cancer cells'}, 'GSM889416': {'type': 'Ls174T human colon cancer cells', 'suppression': 'on'}, 'GSM889417': {'type': 'Ls174T human colon cancer cells', 'suppression': 'on'}, 'GSM889414': {'vendor': 'Euromedex', 'antibody': 'anti-RNAPII', 'suppression': 'off', 'type': 'Ls174T human colon cancer cells'}, 'GSM889415': {'vendor': 'Euromedex', 'antibody': 'anti-RNAPII', 'suppression': 'off', 'type': 'Ls174T human colon cancer cells'}, 'GSM2348436': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2060764': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'anti-H3K9ac (ab4441; Abcam)', 'agent': '6AN'}, 'GSM2060762': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'anti-H3K4me3 (#39159; Active Motif)', 'agent': '6AN'}, 'GSM2060763': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'anti-H3K9ac (ab4441; Abcam)', 'agent': 'DMSO'}, 'GSM2060761': {'line': 'osteosarcoma cell line U2OS stably expressing Bmal1:Luc', 'antibody': 'anti-H3K4me3 (#39159; Active Motif)', 'agent': 'DMSO'}, 'GSM1540519': {'state': 'Lyme disease', 'individual': 'patient 01-26', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM2348431': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1540518': {'state': 'Lyme disease', 'individual': 'patient 01-25', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM2305939': {'tissue': 'colon'}, 'GSM2305938': {'tissue': 'colon'}, 'GSM2305933': {'tissue': 'colon'}, 'GSM2305932': {'tissue': 'colon'}, 'GSM2305931': {'tissue': 'colon'}, 'GSM2305930': {'tissue': 'colon'}, 'GSM2305937': {'tissue': 'colon'}, 'GSM2305936': {'tissue': 'colon'}, 'GSM2305935': {'tissue': 'colon'}, 'GSM2305934': {'tissue': 'colon'}, 'GSM2714507': {'duration': '4 days', 'type': 'Naive B cells', 'treatment': 'IL-2 stimulation'}, 'GSM1376806': {'status': 'W5C5 positive', 'type': 'Endometrial Stromal Cell'}, 'GSM1376807': {'status': 'W5C5 negative', 'type': 'Endometrial Stromal Cell'}, 'GSM1376804': {'status': 'W5C5 positive', 'type': 'Endometrial Stromal Cell'}, 'GSM1376805': {'status': 'W5C5 negative', 'type': 'Endometrial Stromal Cell'}, 'GSM1695857': {'tissue': 'Bone marrow', 'markers': 'CD34+CD38+CD19+'}, 'GSM1376808': {'status': 'W5C5 positive', 'type': 'Endometrial Stromal Cell'}, 'GSM1376809': {'status': 'W5C5 negative', 'type': 'Endometrial Stromal Cell'}, 'GSM1827506': {'cinsarc': 'C2', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '3.27720739219713', 'quality': '3'}, 'GSM1827507': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '1.96030116358658', 'quality': '1'}, 'GSM1827508': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '0.388774811772758', 'quality': '1'}, 'GSM1827509': {'cinsarc': '--', 'support': 'FFPE block', 'metastasis': 'No', 'microarray': '--', 'time': '22.403832991102', 'quality': '1'}, 'GSM2416882': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2416883': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2416880': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2416881': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2416886': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM2416887': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM2416884': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2416885': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM1980315': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980314': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2416888': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM2416889': {'tissue': 'Bone marrow', 'stage': 'adult'}, 'GSM1980311': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2248254': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'beta', 'ercc_dilution': '1000000'}, 'GSM1980313': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980312': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1969205': {'source': 'epithelium', 'line': 'HAP1', 'group': 'EXPERIMENT 7', 'description': 'HAP1 cells, Ribo-Zero sequencing', 'variation': 'wild type'}, 'GSM1953862': {'line': 'SKMEL30', 'passages': 'long term culture', 'type': 'melanoma'}, 'GSM2248252': {'count': '1', 'ercc_mix': 'mix2', 'length': '72', 'type': 'delta', 'ercc_dilution': '1000000'}, 'GSM2479808': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2385627': {'line': '578T', 'type': 'glioblastoma stem cell'}, 'GSM2385626': {'line': '578T', 'type': 'glioblastoma stem cell'}, 'GSM2385625': {'line': '559T', 'type': 'glioblastoma stem cell'}, 'GSM2385624': {'line': '559T', 'type': 'glioblastoma stem cell'}, 'GSM2385623': {'line': '559T', 'type': 'glioblastoma stem cell'}, 'GSM2248250': {'count': '1', 'ercc_mix': 'mix2', 'length': '72', 'type': 'alpha', 'ercc_dilution': '1000000'}, 'GSM2385621': {'line': '464T', 'type': 'glioblastoma stem cell'}, 'GSM2385620': {'line': '448T', 'type': 'glioblastoma stem cell'}, 'GSM2747051': {'status': 'Control', 'individual': 'father', 'variation': 'CNTNAP2 del'}, 'GSM2385629': {'line': '777T', 'type': 'glioblastoma stem cell'}, 'GSM2385628': {'line': '777T', 'type': 'glioblastoma stem cell'}, 'GSM2479805': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479804': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM1376123': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1376122': {'state': 'COPD', 'tissue': 'lung'}, 'GSM1868822': {'lineage': 'Epiblast', 'number': 'Embryo 5', 'stage': 'Blastocyst'}, 'GSM1868823': {'lineage': 'Epiblast', 'number': 'Embryo 4', 'stage': 'Blastocyst'}, 'GSM1868820': {'lineage': 'Epiblast', 'number': 'Embryo 4', 'stage': 'Blastocyst'}, 'GSM1868821': {'lineage': 'Epiblast', 'number': 'Embryo 6', 'stage': 'Blastocyst'}, 'GSM2098706': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM3019895': {'marker': 'CD19+ CD11c- CD27+ IgD-', 'type': 'CD19+ CD11c- CD27+ IgD- Memory B cells', 'collection': 'SLE-4', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019894': {'marker': 'CD19+ CD11chi CD27- IgD-', 'type': 'CD19+ CD11chi CD27- IgD- B cells', 'collection': 'SLE-4', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019897': {'marker': 'CD19+ CD11chi IgD- CD27-CD38-', 'type': 'CD19+ CD11chi IgD- CD38- B cells', 'collection': 'HC-1', 'diagnosis': 'Healthy subject'}, 'GSM3019896': {'marker': 'CD19+ CD11c- CD27- IgD+', 'type': 'CD19+ CD11c- CD27- IgD+ naive B cells', 'collection': 'SLE-4', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019891': {'marker': 'CD19+ CD11c- CD27+ IgD-', 'type': 'CD19+ CD11c- CD27+ IgD- Memory B cells', 'collection': 'SLE-3', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM2479803': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM3019893': {'marker': 'CD19+ CD11chi CD27- IgD+', 'type': 'CD19+ CD11chi CD27- IgD+ B cells', 'collection': 'SLE-4', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM3019892': {'marker': 'CD19+ CD11c- CD27- IgD+', 'type': 'CD19+ CD11c- CD27- IgD+ naive B cells', 'collection': 'SLE-3', 'diagnosis': 'Subject with Systemic lupus erythematosus (SLE)'}, 'GSM2248259': {'count': '1', 'ercc_mix': 'mix1', 'length': '24', 'type': 'undefined', 'ercc_dilution': '1000000'}, 'GSM3019899': {'marker': 'CD19+ CD11c- IgD- CD27+CD38int', 'type': 'CD19+ CD11c- IgD- CD38int Memory B cells', 'collection': 'HC-1', 'diagnosis': 'Healthy subject'}, 'GSM3019898': {'marker': 'CD19+ CD11c- IgD- CD27+ CD38-', 'type': 'CD19+ CD11c- IgD- CD38- Memory B cells', 'collection': 'HC-1', 'diagnosis': 'Healthy subject'}, 'GSM931711': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931713': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931712': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931715': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931714': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931717': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931716': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931719': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM931718': {'status': 'Atopic asthma', 'tissue': 'airway smooth muscle layer from airway wall'}, 'GSM1657139': {'differentiation': '5', 'treated': 'control', 'stage': 'endodermal cells'}, 'GSM2212695': {'gender': 'female', 'condition': 'control'}, 'GSM2212694': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2212697': {'gender': 'female', 'condition': 'Ulcerative Colitis'}, 'GSM2394402': {'antibody': 'H3K27ac, Active Motif #39135', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2212691': {'gender': 'male', 'condition': \"Crohn's disease\"}, 'GSM2212690': {'gender': 'male', 'condition': 'control'}, 'GSM2212693': {'gender': 'female', 'condition': 'control'}, 'GSM2544246': {'antibody': 'anti-CTCF (Millipore 07-729)', 'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2212692': {'gender': 'male', 'condition': 'control'}, 'GSM2300419': {'variation': 'G870S'}, 'GSM2627119': {'origin': 'small intestine', 'patient_id': '197', 'type': 'primary', 'tumor_id': 'YC95-05-H008'}, 'GSM2094778': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with DMSO vehicle for 24 hours'}, 'GSM2300417': {'variation': 'G870S'}, 'GSM2300416': {'variation': 'WT'}, 'GSM2300415': {'variation': 'WT'}, 'GSM2300414': {'variation': 'WT'}, 'GSM2474589': {'doublings': '35', 'line': 'IMR90', 'type': 'Fibroblasts'}, 'GSM2474588': {'doublings': '35', 'line': 'IMR90', 'type': 'Fibroblasts'}, 'GSM2474587': {'doublings': '35', 'line': 'IMR90', 'type': 'Fibroblasts'}, 'GSM1911186': {'gender': 'female', 'line': 'MCF7', 'type': 'human breast cancer cells'}, 'GSM1911187': {'gender': 'female', 'line': 'MCF7', 'type': 'human breast cancer cells'}, 'GSM1911184': {'gender': 'female', 'line': 'MCF7', 'type': 'human breast cancer cells'}, 'GSM1911185': {'gender': 'female', 'line': 'MCF7', 'type': 'human breast cancer cells'}, 'GSM2230831': {'line': 'A549', 'with': 'mock', 'point': '36 hours post infection'}, 'GSM2230830': {'line': 'A549', 'with': 'mock', 'point': '24 hours post infection'}, 'GSM2627110': {'origin': 'small intestine', 'patient_id': '190', 'type': 'primary', 'tumor_id': 'YC156'}, 'GSM2098705': {'strain': 'T47D cells', 'tissue': 'breast'}, 'GSM2627111': {'origin': 'small intestine', 'patient_id': '203', 'type': 'primary', 'tumor_id': 'YC187'}, 'GSM1646702': {'status': 'Tumor', 'gender': 'M', 'age': '51', 'tissue': 'liver'}, 'GSM1437709': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437708': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437707': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437706': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437705': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437704': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437703': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437702': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437701': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM1437700': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1533865': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'HER2/ERBB2 overexpression'}, 'GSM1533864': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'HER2/ERBB2 overexpression'}, 'GSM1533867': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'HER2/ERBB2 overexpression'}, 'GSM1533866': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'HER2/ERBB2 overexpression'}, 'GSM1533861': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533860': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533863': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM1533862': {'type': 'Human mammary epithelial cells (HMEC)', 'variation': 'GFP overexpression (control)'}, 'GSM2571084': {'line': 'IER5_enhancer_KO#2', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1005513': {'type': 'ES-derived embryoid body cells'}, 'GSM1005512': {'line': 'H9', 'passages': '29', 'type': 'embryonic stem cells'}, 'GSM2478927': {'status': 'unaffected, PHF21A-WT', 'gender': 'male', 'type': 'lymphoblasts (EBV-transformed patient lymphocytes)'}, 'GSM2571085': {'line': 'IER5_enhancer_KO#2', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571082': {'line': 'IER5_enhancer_KO#1', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2478929': {'status': 'PHF21A-deficient', 'gender': 'male', 'type': 'lymphoblasts (EBV-transformed patient lymphocytes)'}, 'GSM2478928': {'status': 'unaffected, PHF21A-WT', 'gender': 'male', 'type': 'lymphoblasts (EBV-transformed patient lymphocytes)'}, 'GSM2571083': {'line': 'IER5_enhancer_KO#1', 'shRNA': 'PAF1 shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM1856031': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Ty1-GATA3 expressed'}, 'GSM1538996': {'genotype': 'WBS', 'gender': 'female', 'culture': 'Single-cell culture', 'in': 'ERCC ExFold mix 2', 'donor': 'GDB-361', 'type': 'unstranded 100bp PE reads'}, 'GSM1531421': {'transfection': 'siH19', 'type': 'primary human myoblast'}, 'GSM1531420': {'transfection': 'control', 'type': 'primary human myoblast'}, 'GSM1856033': {'passages': '3-7', 'antibody': 'anti-BRG1', 'variation': 'Ty1-TA1del expressed'}, 'GSM2544247': {'antibody': 'anti-CTCF (Millipore 07-729)', 'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2571088': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2571089': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2209024': {'cell_type': 'eye lens fibroblast culture', 'point': '2days', 'gender': 'male', 'batch': '2', 'treatment': 'SUZ12kd-gapmer_gapmer_15nM', 'line': 'GM09677'}, 'GSM2209025': {'cell_type': 'eye lens fibroblast culture', 'point': '2days', 'gender': 'male', 'batch': '2', 'treatment': 'SUZ12kd-gapmer_gapmer_15nM', 'line': 'GM09677'}, 'GSM2209022': {'cell_type': 'eye lens fibroblast culture', 'point': '2days', 'gender': 'male', 'batch': '2', 'treatment': 'RN-0005_30nM', 'line': 'GM09677'}, 'GSM2209023': {'cell_type': 'eye lens fibroblast culture', 'point': '2days', 'gender': 'male', 'batch': '2', 'treatment': 'RN-0005_30nM', 'line': 'GM09677'}, 'GSM2209020': {'cell_type': 'eye lens fibroblast culture', 'point': '2days', 'gender': 'male', 'batch': '2', 'treatment': 'mock', 'line': 'GM09677'}, 'GSM2209021': {'cell_type': 'eye lens fibroblast culture', 'point': '2days', 'gender': 'male', 'batch': '2', 'treatment': 'mock', 'line': 'GM09677'}, 'GSM2094773': {'line': 'TPC-1', 'protocol': 'TPC-1 cell line treated with 50 µM lanatoside C for 24 hours'}, 'GSM2141431': {'individual': 'AF127', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1503927': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'siGL2 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503926': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'siGL2 and siXRN1', 'reporter': 'TCRβ68'}, 'GSM1503925': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': \"TCRβ68U_3'Partial\", 'reporter': 'N/A'}, 'GSM1503924': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': \"TCRβ68U_5'Partial\", 'reporter': 'N/A'}, 'GSM1503923': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Unfav2', 'reporter': 'N/A'}, 'GSM2141432': {'individual': 'AF129', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM1503921': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Fav3', 'reporter': 'N/A'}, 'GSM1503920': {'line': 'HeLa', 'strategy': 'SPARE', 'transfection': 'TCRβ68U_Fav2', 'reporter': 'N/A'}, 'GSM2141433': {'individual': 'AF129', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1613619': {'line': 'CRL2097', 'type': 'large live'}, 'GSM1937860': {'stimulation': 'Aspergillus fumigatus swollen conidia (MOI=1)', 'type': 'Monocyte derived macrophage cells', 'treatments': '10 ng/ml FK506 for 1h'}, 'GSM2094771': {'line': 'FTC133', 'protocol': 'FTC133 cell line treated with 50 µM strophantin K for 72 hours'}, 'GSM1957346': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957347': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957344': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957345': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957342': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957343': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957340': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957341': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957348': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1957349': {'tissue': 'Dissociated whole cerebral organoid', 'Stage': '65 days'}, 'GSM1406329': {'type': 'Macrophages(BC11)'}, 'GSM1406328': {'type': 'Macrophages(BC11)'}, 'GSM1406321': {'type': 'Macrophages(BC8)'}, 'GSM1406320': {'type': 'Macrophages(BC8)'}, 'GSM1406323': {'type': 'Macrophages(BC9)'}, 'GSM1406322': {'type': 'Primary Monocytes(BC9)'}, 'GSM1406325': {'type': 'Macrophages(BC9)'}, 'GSM1406324': {'type': 'Macrophages(BC9)'}, 'GSM1406327': {'type': 'Macrophages(BC11)'}, 'GSM1406326': {'type': 'Primary Monocytes(BC11)'}, 'GSM1540492': {'state': 'Lyme disease', 'individual': 'patient 01-27', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM2094777': {'line': 'BC-PAP', 'protocol': 'BC-PAP cell line treated with 50 µM proscillaridin A for 48 hours'}, 'GSM1540490': {'state': 'Lyme disease', 'individual': 'patient 01-25', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540491': {'state': 'Lyme disease', 'individual': 'patient 01-26', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540496': {'state': 'Lyme disease', 'individual': 'patient 01-31', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540497': {'state': 'Lyme disease', 'individual': 'patient 01-32', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540494': {'state': 'Lyme disease', 'individual': 'patient 01-29', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540495': {'state': 'Lyme disease', 'individual': 'patient 01-30', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540498': {'state': 'Lyme disease', 'individual': 'patient 01-33', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540499': {'state': 'Lyme disease', 'individual': 'patient 01-34', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM2094774': {'line': 'BC-PAP', 'protocol': 'BC-PAP cell line treated with DMSO vehicle for 24 hours'}, 'GSM2464358': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464353': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464352': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464351': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464350': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464357': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464356': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464355': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM2464354': {'line': 'U2OS cell line stably transfected with GR{alpha}'}, 'GSM1624668': {'tumor': 'PDX', 'material': 'Fresh Frozen', 'treatment': 'pre-treatment'}, 'GSM1624669': {'tumor': 'PDX', 'material': 'Fresh Frozen', 'treatment': 'post-treatment Vemurafenib'}, 'GSM2357116': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '24h'}, 'GSM2357117': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '24h'}, 'GSM2357114': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '24h'}, 'GSM2357115': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '24h'}, 'GSM2357112': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '18h'}, 'GSM2357113': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'A/California/04/09 (H1N1), MOI 5', 'point': '18h'}, 'GSM2357110': {'replicate': '1', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM2357111': {'replicate': '2', 'type': 'Human Tracheobronchial Epithelial Cells', 'infection': 'uninfected (mock control)', 'point': '18h'}, 'GSM1576400': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human monocytes', 'time': '1 d'}, 'GSM1576401': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human monocytes', 'time': '3 d'}, 'GSM1576402': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human monocytes', 'time': '7 d'}, 'GSM1576403': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human neutrophils', 'time': '0 d'}, 'GSM1576404': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human neutrophils', 'time': '1 d'}, 'GSM1576405': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human neutrophils', 'time': '3 d'}, 'GSM1576406': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human neutrophils', 'time': '7 d'}, 'GSM1576407': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human NK cells', 'time': '0 d'}, 'GSM1576408': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human NK cells', 'time': '1 d'}, 'GSM1576409': {'assay': 'RNA-seq', 'donor': 'Donor: HD30', 'type': 'primary human NK cells', 'time': '3 d'}, 'GSM2840641': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840640': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject13', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1946241': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '60min'}, 'GSM1946240': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '60min'}, 'GSM1946243': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '60min'}, 'GSM1946242': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '60min'}, 'GSM1946245': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '60min'}, 'GSM1946244': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19203', 'for': '60min'}, 'GSM1946247': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19204', 'for': '30min'}, 'GSM1946246': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19204', 'for': '30min'}, 'GSM1946249': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19204', 'for': '30min'}, 'GSM1946248': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19204', 'for': '30min'}, 'GSM1354581': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM liquiritigenin', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM1354580': {'age': '69', 'collection': 'ATCC', 'Sex': 'Female', 'cell': 'AdERbeta', 'subtype': 'Adenocarcinoma', 'treatment': '1 uM liquiritigenin', 'provider': 'ATCC', 'line': 'MCF-7', 'type': 'Epithelial'}, 'GSM2362578': {'line': 'HEK293'}, 'GSM2362579': {'line': 'HEK293'}, 'GSM2362574': {'line': 'HEK293'}, 'GSM2362575': {'line': 'HEK293'}, 'GSM2362576': {'line': 'HEK293'}, 'GSM2362577': {'line': 'HEK293'}, 'GSM2362570': {'line': 'HEK293'}, 'GSM2362571': {'line': 'HEK293'}, 'GSM2362572': {'line': 'HEK293'}, 'GSM2362573': {'line': 'HEK293'}, 'GSM1234137': {'replicate': '3', 'line': '19240', 'antibody': 'H3K4me3'}, 'GSM1234136': {'replicate': '2', 'line': '19240', 'antibody': 'H3K4me3'}, 'GSM1234135': {'replicate': '1', 'line': '19240', 'antibody': 'H3K4me3'}, 'GSM1234134': {'replicate': '3', 'line': '19240', 'antibody': 'H3K4me1'}, 'GSM1234133': {'replicate': '2', 'line': '19240', 'antibody': 'H3K4me1'}, 'GSM1234132': {'replicate': '1', 'line': '19240', 'antibody': 'H3K4me1'}, 'GSM1234131': {'replicate': '2', 'line': '19240', 'antibody': 'H3K36me3'}, 'GSM1234130': {'replicate': '1', 'line': '19240', 'antibody': 'H3K36me3'}, 'GSM1234139': {'replicate': '1', 'line': '19240', 'antibody': 'Input'}, 'GSM1234138': {'replicate': '4.2', 'line': '19240', 'antibody': 'H3K4me3'}, 'GSM2069823': {'status': 'Dead', 'rnaseq': 'unstranded', 'gender': 'F', 'mapki': 'N', 'nras': 'Q61L', 'site': 'UCLA', 'response': 'Progressive Disease', 'tissue': 'Melanoma biopsies', 'location': 'L post. Thigh, inf., SC', 'time': 'pre-treatment', 'id': 'Pt1', 'treatment': 'Pembrolizumab'}, 'GSM2626909': {'origin': 'pancreas', 'patient_id': '1', 'type': 'liver metastasis', 'tumor_id': '1'}, 'GSM2069826': {'status': 'Alive', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'N', 'site': 'UCLA', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'L Chestwall, SC', 'treatment': 'Pembrolizumab', 'id': 'Pt5', 'braf': 'V600E'}, 'GSM2093130': {'bin': '6', 'group': 'case (TB progressor)', 'qft': 'positive', 'gender': 'female', 'age': '14', 'tissue': 'blood', 'tst': 'NA', 'tb': 'n', 'ethnicity': 'coloured'}, 'GSM2069824': {'status': 'Alive', 'rnaseq': 'unstranded', 'gender': 'M', 'mapki': 'N', 'site': 'UCLA', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'Lung', 'nf1': 'Frame_Shift_Ins H31fs, Splice_Site', 'time': 'pre-treatment', 'id': 'Pt2', 'treatment': 'Pembrolizumab'}, 'GSM2069825': {'status': 'Alive', 'rnaseq': 'unstranded', 'time': 'pre-treatment', 'gender': 'M', 'mapki': 'Y', 'site': 'UCLA', 'response': 'Partial Response', 'tissue': 'Melanoma biopsies', 'location': 'Adrenal', 'nf1': 'S2597*', 'treatment': 'Pembrolizumab', 'id': 'Pt4', 'braf': 'L331F'}, 'GSM2479707': {'antibody': 'anti-trimethyl-Histone H3 (Lys27) antibody (Millipore catalog no. 07-449)', 'type': 'monocytes', 'stage': 'young adult'}, 'GSM2316504': {'culture': 'D9'}, 'GSM2348639': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1836092': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2177853': {'status': 'Hepatoblastoma', 'Sex': 'Female', 'type': 'Hepatoblastoma', 'years': '1'}, 'GSM2177852': {'status': 'Hepatoblastoma', 'Sex': 'Male', 'type': 'Hepatoblastoma', 'years': '2'}, 'GSM2325850': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325851': {'type': 'Differentiated embryonic stem cell'}, 'GSM2177857': {'status': 'Hepatoblastoma', 'Sex': 'Female', 'type': 'Hepatoblastoma', 'years': '6'}, 'GSM2325857': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325854': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325855': {'type': 'Differentiated embryonic stem cell'}, 'GSM1395399': {'type': 'Glioblastoma', 'id': 'MGH26'}, 'GSM1395398': {'line': 'vorinostat-resistant HCT116', 'treatment': 'siPSMD13 vorinostat', 'timepoint': '12hr'}, 'GSM2325858': {'type': 'Differentiated embryonic stem cell'}, 'GSM2325859': {'type': 'Differentiated embryonic stem cell'}, 'GSM2745809': {'group': '3D/LN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745808': {'group': '3D/LN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2048526': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2745803': {'group': '3D/FN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745802': {'group': '3D/FN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745801': {'group': '3D/FN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745800': {'group': '2D/D0', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745807': {'group': '3D/LN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745806': {'group': '3D/FN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745805': {'group': '3D/FN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2745804': {'group': '3D/FN', 'type': 'ES-derived MSC', 'passage': '10'}, 'GSM2053478': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '61', 'infection': 'No', 'cirrhosis': 'No', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#8'}, 'GSM2053479': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '66', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#10'}, 'GSM2048527': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2053470': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '40', 'infection': 'NA', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#21'}, 'GSM2053471': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '53', 'infection': 'Yes', 'cirrhosis': 'No', 'tissue': 'primary tumor', 'id': '#22'}, 'GSM2053472': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '62', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#24'}, 'GSM2053473': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '48', 'infection': 'Yes', 'cirrhosis': 'No', 'tissue': 'primary tumor', 'id': '#25'}, 'GSM2053474': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '49', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'primary tumor', 'id': '#26'}, 'GSM2053475': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'female', 'age': '46', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#3'}, 'GSM2053476': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '35', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#6'}, 'GSM2053477': {'status': 'hepatocellular carcinoma (HCC) patient', 'gender': 'male', 'age': '42', 'infection': 'Yes', 'cirrhosis': 'Yes', 'tissue': 'Portal vein tumor thrombosis (PVTT)', 'id': '#7'}, 'GSM1314288': {'transfection': 'oct4 plasmid', 'type': 'epithelial cell', 'line': 'MDA-MB-231', 'ethnicity': 'caucasian', 'disease': 'adenocarcinoma'}, 'GSM2298929': {'type': 'CCF3029 cells'}, 'GSM2298928': {'type': 'CCF3028 cells'}, 'GSM2298925': {'type': '2907 cells'}, 'GSM2298924': {'type': '1987_5 cells'}, 'GSM2298927': {'type': 'CCF2997 cells'}, 'GSM2298926': {'type': 'CCF1914_2 cells'}, 'GSM2307209': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2298923': {'type': 'NPCs derived from ES cells'}, 'GSM1314287': {'transfection': 'control', 'type': 'epithelial cell', 'line': 'MDA-MB-231', 'ethnicity': 'caucasian', 'disease': 'adenocarcinoma'}, 'GSM2307208': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2564732': {'tumor': 'acute monocytic leukemia', 'line': 'NB4', 'shRNA': 'shNS (non-specific control)'}, 'GSM2100866': {'status': 'no', 'gender': 'male', 'age': '66', 'race': 'white'}, 'GSM2402819': {'line': 'SW620', 'tissue': 'colon', 'variation': 'YAP/TAZ KD'}, 'GSM2100867': {'status': 'no', 'gender': 'male', 'age': '71', 'race': 'black'}, 'GSM2402814': {'line': 'SW620', 'tissue': 'colon', 'variation': 'TIAM1 KD'}, 'GSM2307202': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2402816': {'line': 'SW620', 'tissue': 'colon', 'variation': 'TIAM1 KD'}, 'GSM3099433': {'stimulation': 'IL-6, 150 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM3099432': {'stimulation': 'IL-6, 150 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM3099431': {'stimulation': 'IL-6, 150 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM2307200': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM3099437': {'stimulation': 'IL-4, 30 ng/ml + IL-13 30 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM3099436': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM3099435': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM3099434': {'stimulation': 'IL-6, 150 ng/ml + sIL-6R 150 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM1479536': {'index': '11', 'diagnosis': '6', 'cellcount': '1275892', 'gender': 'M', 'age': '42', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '40', 'collectiondate': 'June 19 2012', 'samplename': '40_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM3099439': {'stimulation': 'IL-4, 30 ng/ml + IL-13 30 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM3099438': {'stimulation': 'IL-4, 30 ng/ml + IL-13 30 ng/ml', 'type': 'Bronchial epithelial cells'}, 'GSM1479537': {'index': '5', 'diagnosis': '6', 'cellcount': '2000000', 'gender': 'M', 'age': '42', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '40', 'collectiondate': 'June 19 2012', 'samplename': '40_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Type 1 Diabetes'}, 'GSM2359781': {'line': 'MCF10A'}, 'GSM2359783': {'line': 'MCF10A'}, 'GSM2359782': {'line': 'MCF10A'}, 'GSM2359785': {'line': 'MCF10A'}, 'GSM2359784': {'line': 'MCF10A'}, 'GSM2359787': {'line': 'MCF10A'}, 'GSM2359786': {'line': 'MCF10A'}, 'GSM2359789': {'line': 'MCF10A'}, 'GSM2359788': {'line': 'MCF10A'}, 'GSM1571120': {'stage': 'definitive cardiomyocyte'}, 'GSM2402813': {'line': 'SW620', 'tissue': 'colon', 'variation': 'WT'}, 'GSM1571124': {'stage': 'definitive cardiomyocyte'}, 'GSM1571125': {'stage': 'definitive cardiomyocyte'}, 'GSM1334184': {'type': 'CD3+ CD4+ CD45RO+ CD45RA- CCR4+ CD25- T cells', 'disease': 'asthmatic'}, 'GSM2870631': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870630': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870633': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870632': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2870635': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2870634': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870637': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2870636': {'tissue': 'lung metastasis from primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870639': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'none'}, 'GSM2870638': {'tissue': 'primary osteosarcoma tumor', 'antibody': 'rabbit anti-H3K27ac (Abcam #4729).'}, 'GSM2344967': {'type': 'normal melanocytes', 'Stage': 'primary melanocytes'}, 'GSM2344966': {'type': 'normal melanocytes', 'Stage': 'primary melanocytes'}, 'GSM2344965': {'type': 'normal melanocytes', 'Stage': 'primary melanocytes'}, 'GSM2344969': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2344968': {'type': 'melanoma cell line', 'Stage': 'metastatic'}, 'GSM2501574': {'line': 'MDA-MB-231 LM2', 'type': 'metastatic breast cancer', 'treatment': 'shScramble'}, 'GSM2631689': {'line': 'MDA-MB-361 breast carcinoma cell line', 'agent': 'control'}, 'GSM2631688': {'line': 'MDA-MB-361 breast carcinoma cell line', 'agent': 'control'}, 'GSM2631681': {'transfection': 'EGFP(control)', 'type': 'HeLa Kyoto'}, 'GSM2631680': {'transfection': 'EGFP(control)', 'type': 'HeLa Kyoto'}, 'GSM2631683': {'transfection': 'ARS2', 'type': 'HeLa Kyoto'}, 'GSM2631682': {'transfection': 'ARS2', 'type': 'HeLa Kyoto'}, 'GSM2631685': {'transfection': 'ZC3H18', 'type': 'HeLa Kyoto'}, 'GSM2631684': {'transfection': 'ARS2', 'type': 'HeLa Kyoto'}, 'GSM2631687': {'transfection': 'ZC3H18', 'type': 'HeLa Kyoto'}, 'GSM2631686': {'transfection': 'ZC3H18', 'type': 'HeLa Kyoto'}, 'GSM2293610': {'line': 'RPE1', 'replicate': '2', 'drug': 'nutlin-3'}, 'GSM2293611': {'line': 'RPE1', 'replicate': '3', 'drug': 'nutlin-3'}, 'GSM2632341': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632340': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632343': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632342': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632345': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632344': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632347': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632346': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632349': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2632348': {'age': '59', 'subject': 'P2', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+CD38-', 'Sex': 'Male'}, 'GSM2243499': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E12', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243498': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'H2', 'cluster': '7', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243495': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'D1', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243494': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243497': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243496': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'G5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243491': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'F8', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243490': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243493': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243492': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'C7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1033541': {'genotype': 'SETBP1 G870S -/+'}, 'GSM1437686': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1033543': {'genotype': 'SETBP1 G870S -/+'}, 'GSM1033542': {'genotype': 'wild type'}, 'GSM1033545': {'genotype': 'wild type'}, 'GSM1033544': {'genotype': 'wild type'}, 'GSM1033547': {'genotype': 'SETBP1 S869G -/+'}, 'GSM1437687': {'tissue': 'Bladder', 'stage': 'pT1'}, 'GSM1033549': {'genotype': 'SETBP1 E858K -/+'}, 'GSM2307374': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM618470': {'status': 'ETS-', 'name': 'DU145', 'site': 'None', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618471': {'status': 'ETS-', 'name': 'DU145', 'site': 'Metastatic Site', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618472': {'status': 'ETS-', 'name': 'DU145', 'site': 'Metastatic Site', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618473': {'status': 'ETS-', 'name': 'DU145', 'site': 'Metastatic Site', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618474': {'status': 'ETS-', 'name': 'DU145', 'site': 'Metastatic Site', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618475': {'status': 'ETS-', 'name': 'DU145', 'site': 'Metastatic Site', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618476': {'status': 'ETS-', 'name': 'DU145', 'site': 'Metastatic Site', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618477': {'status': 'ETS-', 'name': 'DU145', 'site': 'Metastatic Site', 'state': 'cancer', 'line': 'DU145', 'type': 'Cell Line', 'id': 'NA'}, 'GSM618478': {'status': 'ETV1+', 'name': 'LAPC-4', 'site': 'None', 'state': 'cancer', 'line': 'LAPC-4', 'type': 'Cell Line', 'id': 'NA'}, 'GSM1437682': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM2359810': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM1553098': {'type': 'HFF fibroblasts', 'doublings': '74'}, 'GSM1553099': {'type': 'HFF fibroblasts', 'doublings': '74'}, 'GSM2359813': {'gender': 'female', 'line': 'YB5', 'tissue': 'colon cancer cell line', 'type': \"Dukes' type C, grade IV, colorectal adenocarcinoma\"}, 'GSM2307373': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM1553092': {'type': 'BJ fibroblasts', 'doublings': '72'}, 'GSM1553093': {'type': 'BJ fibroblasts', 'doublings': '72'}, 'GSM1553090': {'type': 'BJ fibroblasts', 'doublings': '34'}, 'GSM1437681': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1553096': {'type': 'HFF fibroblasts', 'doublings': '16'}, 'GSM1553097': {'type': 'HFF fibroblasts', 'doublings': '74'}, 'GSM1553094': {'type': 'HFF fibroblasts', 'doublings': '16'}, 'GSM1553095': {'type': 'HFF fibroblasts', 'doublings': '16'}, 'GSM2028119': {'with': 'CAPERα-shRNA encoding retrovirus for 48hrs', 'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2307372': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2059919': {'donor': '2', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059918': {'donor': '2', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059915': {'donor': '5', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059914': {'donor': '5', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059917': {'donor': '3a', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059916': {'donor': '3a', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059911': {'donor': '4', 'rna': 'Cytosolic', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059910': {'donor': '4', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059913': {'donor': '5', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2059912': {'donor': '5', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'A', 'type': 'NK cells'}, 'GSM2028118': {'with': 'CAPERα-shRNA encoding retrovirus for 48hrs', 'type': 'human foreskin fibroblasts (HFFs)'}, 'GSM2635696': {'genotype': 'WT', 'treatment_time': '30h', 'treatment': 'Activin A'}, 'GSM2635697': {'genotype': 'WT', 'treatment_time': '30h', 'treatment': 'Activin A'}, 'GSM2635694': {'antibody': 'YAP', 'genotype': 'WT', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635695': {'antibody': 'YAP', 'genotype': 'YAP-', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635692': {'antibody': 'Smad2_3', 'genotype': 'YAP-', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2635693': {'antibody': 'TEAD4', 'genotype': 'WT', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635690': {'antibody': 'Ser7P', 'genotype': 'YAP-, Piggy', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2635691': {'antibody': 'Smad2_3', 'genotype': 'WT', 'treatment_time': '15h', 'treatment': 'Activin A'}, 'GSM2635698': {'genotype': 'WT', 'treatment_time': '24h', 'treatment': 'Activin A'}, 'GSM2635699': {'genotype': 'WT', 'treatment_time': '24h', 'treatment': 'Activin A'}, 'GSM554078': {'tissue': 'Prostate cancer tissue', 'protocol': 'paired-end, 36-mer sequencing', 'stage': 'Gleason score 7'}, 'GSM2348529': {'samhd1': 'dNTPase knockout', 'media': 'standard media', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348528': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1399207': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM1712119': {'line': 'MR49F', 'treatment': 'Enzalutamide-Treated'}, 'GSM2348523': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348522': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348521': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348520': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOE', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348527': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348526': {'samhd1': 'dNTPase knockout', 'media': 'conditioned media with LPS', 'batch': 'KOD', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1464334': {'status': 'small cell lung cancer'}, 'GSM2348524': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTG', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565227': {'construction': 'PLATE-Seq', 'drug': 'UNTREATED'}, 'GSM2565226': {'construction': 'PLATE-Seq', 'drug': 'Gefitinib'}, 'GSM2565225': {'construction': 'PLATE-Seq', 'drug': 'Bleomycin sulfate'}, 'GSM2565224': {'construction': 'PLATE-Seq', 'drug': 'Dasatinib'}, 'GSM2565223': {'construction': 'PLATE-Seq', 'drug': 'Ibrutinib'}, 'GSM2565222': {'construction': 'PLATE-Seq', 'drug': 'Hydroxyurea'}, 'GSM2565221': {'construction': 'PLATE-Seq', 'drug': 'Irinotecan'}, 'GSM2565220': {'construction': 'PLATE-Seq', 'drug': 'Vorinostat'}, 'GSM2667040': {'type': 'Macrophage'}, 'GSM2667041': {'type': 'Macrophage'}, 'GSM2667042': {'type': 'Macrophage'}, 'GSM2667043': {'type': 'Macrophage'}, 'GSM2667044': {'type': 'Macrophage'}, 'GSM2667045': {'type': 'Macrophage'}, 'GSM2565229': {'construction': 'PLATE-Seq', 'drug': 'Cabazitaxel (Jevtana)'}, 'GSM2565228': {'construction': 'PLATE-Seq', 'drug': 'UNTREATED'}, 'GSM1965291': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965290': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965293': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2717599': {'status': 'ZIKV infected', 'environment': 'in vitro', 'tissue': 'peripheral blood', 'point': '12h'}, 'GSM1965295': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965294': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965297': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965296': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965299': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965298': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM896807': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (zygote)', 'stage': 'early blastomere'}, 'GSM896806': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (zygote)', 'stage': 'early blastomere'}, 'GSM2805865': {'genotype': 'WT', 'antibody': 'NA', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM896803': {'tissue': 'human preimplantation embryos', 'type': 'human preimplantation blastomere (Oocyte)', 'stage': 'early blastomere'}, 'GSM2805867': {'genotype': 'WT', 'antibody': 'KDM2B (rabbit A) (Beguelin et al, 2016, Gearhart et al, 2006)', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM1721037': {'with': 'none (control)', 'line': 'N/TERT-2G', 'type': 'keratinocyte', 'variation': 'Tet-inducible AREG shRNA'}, 'GSM1721036': {'with': 'none (control)', 'line': 'N/TERT-2G', 'type': 'keratinocyte', 'variation': 'Tet-inducible AREG shRNA'}, 'GSM1297673': {'differentiation': 'Differentiation 3, full confluency', 'material': 'extracted RNA', 'point': 'Day 3'}, 'GSM1297672': {'differentiation': 'Differentiation 3, full confluency', 'material': 'extracted RNA', 'point': 'Day 0'}, 'GSM1721039': {'with': '1 µg/ml Tet for 60hrs', 'line': 'N/TERT-2G', 'type': 'keratinocyte', 'variation': 'Tet-inducible AREG shRNA'}, 'GSM1721038': {'with': 'none (control)', 'line': 'N/TERT-2G', 'type': 'keratinocyte', 'variation': 'Tet-inducible AREG shRNA'}, 'GSM1297675': {'differentiation': 'Differentiation 3, full confluency', 'material': 'extracted RNA', 'point': 'Day 14'}, 'GSM1297674': {'differentiation': 'Differentiation 3, full confluency', 'material': 'extracted RNA', 'point': 'Day 7'}, 'GSM2616459': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616458': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616457': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616456': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2616455': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616454': {'stimulation': 'None', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1435', 'subtype': 'Tregs'}, 'GSM2616453': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2616452': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2616451': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD53', 'subtype': 'Tregs'}, 'GSM2616450': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2552908': {'individual': 'volunteer 9'}, 'GSM2552909': {'individual': 'volunteer 9'}, 'GSM2552904': {'individual': 'volunteer 8'}, 'GSM2552905': {'individual': 'volunteer 8'}, 'GSM2552906': {'individual': 'volunteer 8'}, 'GSM2552907': {'individual': 'volunteer 9'}, 'GSM2552900': {'individual': 'volunteer 7'}, 'GSM2552901': {'individual': 'volunteer 7'}, 'GSM2552902': {'individual': 'volunteer 7'}, 'GSM2552903': {'individual': 'volunteer 8'}, 'GSM1620492': {'type': 'mixture of U87 human glioma cells and MCF10a human breast cancer cells'}, 'GSM1411020': {'ercc_mix': '1', 'donor': 'N021612-M17', 'tissue': 'human airway smooth muscle cells', 'disease': 'Control', 'treatment': 'Albuterol'}, 'GSM2324161': {'group': 'BCG', 'type': 'PBMC', 'day': '0', 'subjectid': '5113'}, 'GSM1369195': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Cortical Specification'}, 'GSM2172283': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM1369196': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Deep Layer Formation'}, 'GSM2324162': {'group': 'BCG', 'type': 'PBMC', 'day': '14', 'subjectid': '5113'}, 'GSM2324165': {'group': 'BCG', 'type': 'PBMC', 'day': '84', 'subjectid': '5113'}, 'GSM1369191': {'type': 'hESC (WA-09)', 'id': 'Cortecon', 'Stage': 'Cortical Specification'}, 'GSM1479482': {'index': '14', 'diagnosis': '--', 'cellcount': '529358', 'gender': 'F', 'age': '59', 'smoker': '--', 'dose': '--', 'race': 'Asian', 'donorid': '50', 'collectiondate': 'July 6 2012', 'samplename': '50_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Sepsis'}, 'GSM1479483': {'index': '15', 'diagnosis': '--', 'cellcount': '365861', 'gender': 'F', 'age': '59', 'smoker': '--', 'dose': '--', 'race': 'Asian', 'donorid': '50', 'collectiondate': 'July 6 2012', 'samplename': '50_NK', 'celltype': 'NK', 'diseasestatus': 'Sepsis'}, 'GSM1479480': {'index': '9', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '59', 'smoker': '--', 'dose': '--', 'race': 'Asian', 'donorid': '50', 'collectiondate': 'July 6 2012', 'samplename': '50_Bcells', 'celltype': 'B-cells', 'diseasestatus': 'Sepsis'}, 'GSM1479481': {'index': '2', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '59', 'smoker': '--', 'dose': '--', 'race': 'Asian', 'donorid': '50', 'collectiondate': 'July 6 2012', 'samplename': '50_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Sepsis'}, 'GSM1479486': {'index': '23', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '45', 'collectiondate': 'June 28 2012', 'samplename': '45_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'MS pretreatment'}, 'GSM2324167': {'group': 'BCG', 'type': 'PBMC', 'day': '14', 'subjectid': '6017'}, 'GSM1479484': {'index': '16', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '59', 'smoker': '--', 'dose': '--', 'race': 'Asian', 'donorid': '50', 'collectiondate': 'July 6 2012', 'samplename': '50_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Sepsis'}, 'GSM1479485': {'index': '16', 'diagnosis': '--', 'cellcount': '41000000', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '45', 'collectiondate': 'June 28 2012', 'samplename': '45_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'MS pretreatment'}, 'GSM1479488': {'index': '10', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '45', 'collectiondate': 'June 28 2012', 'samplename': '45_CD4T', 'celltype': 'CD4', 'diseasestatus': 'MS pretreatment'}, 'GSM1479489': {'index': '19', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '36', 'smoker': 'N', 'dose': '--', 'race': 'White', 'donorid': '45', 'collectiondate': 'June 28 2012', 'samplename': '45_CD8T', 'celltype': 'CD8', 'diseasestatus': 'MS pretreatment'}, 'GSM1155157': {'tnm': 'T3N0M0', 'gender': 'M', 'age': '57', 'tissue': 'renal pelvis'}, 'GSM1155156': {'tnm': 'T2N0M0', 'gender': 'M', 'age': '62', 'tissue': 'renal pelvis'}, 'GSM1980405': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1155150': {'tnm': 'T1N0M0', 'gender': 'M', 'age': '55', 'tissue': 'renal pelvis'}, 'GSM2218653': {'with': '+UV (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2218652': {'with': 'NO UV (Recovery time=60min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2218651': {'with': 'NO UV (Recovery time=20min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2218650': {'with': 'NO UV (Recovery time=10min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2218657': {'with': '(Recovery time=0h, 8J/m2)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-CPD antibody'}, 'GSM2141329': {'individual': 'EU24', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2218655': {'with': '+UV (Recovery time=60min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2218654': {'with': '+UV (Recovery time=10min)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2141324': {'individual': 'EU20', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141325': {'individual': 'EU22', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2218659': {'with': 'NO UV (Recovery time=0h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT'}, 'GSM2141327': {'individual': 'EU22', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141320': {'individual': 'EU16', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141321': {'individual': 'EU16', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141322': {'individual': 'EU16', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141323': {'individual': 'EU20', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM1868783': {'type': 'IL5 secreting memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM1868782': {'type': 'Memory effector CD4 Tcells - CD3+ CD4+ CD45RA- CCR7- IFNG+', 'phenotype': 'Timothy Grass Non Allergic', 'seasonality': 'Blood draw out of Timothy Grass pollen season'}, 'GSM2285813': {'status': 'healthy volunteer', 'gender': 'female', 'age': '49', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285812': {'status': 'healthy volunteer', 'gender': 'female', 'age': '77', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285811': {'status': 'healthy volunteer', 'gender': 'female', 'age': '76', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285810': {'status': 'healthy volunteer', 'gender': 'female', 'age': '66', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285817': {'status': 'healthy volunteer', 'gender': 'female', 'age': '81', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285816': {'status': 'healthy volunteer', 'gender': 'female', 'age': '66', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285815': {'status': 'healthy volunteer', 'gender': 'female', 'age': '75', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285814': {'status': 'healthy volunteer', 'gender': 'female', 'age': '37', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285819': {'status': 'healthy volunteer', 'gender': 'female', 'age': '69', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM2285818': {'status': 'healthy volunteer', 'gender': 'female', 'age': '68', 'tissue': 'skin biopsie from sun protected upper inner arm', 'background': 'European descent'}, 'GSM1669171': {'with': 'E2+R5020_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669170': {'with': 'E2', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669173': {'with': 'E2', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669172': {'with': 'E2+R5020_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669175': {'with': 'E2+Progesterone_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669174': {'with': 'E2+Progesterone_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669177': {'with': 'E2', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669176': {'with': 'E2+R5020_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669179': {'with': 'E2+R5020_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM1669178': {'with': 'E2+R5020_3hr', 'line': 'MCF7', 'type': 'ER+ breast cancer cell line'}, 'GSM2576191': {'tissue': 'breast cancer xenograft'}, 'GSM2576190': {'tissue': 'breast cancer xenograft'}, 'GSM2576193': {'tissue': 'breast cancer xenograft'}, 'GSM2576192': {'tissue': 'breast cancer xenograft'}, 'GSM2576195': {'tissue': 'breast cancer xenograft'}, 'GSM2576194': {'tissue': 'breast cancer xenograft'}, 'GSM2576197': {'tissue': 'breast cancer xenograft'}, 'GSM2576196': {'tissue': 'breast cancer xenograft'}, 'GSM2576199': {'tissue': 'breast cancer xenograft'}, 'GSM2576198': {'tissue': 'breast cancer xenograft'}, 'GSM1545062': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM1545063': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Proximal'}, 'GSM1545064': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM1545065': {'type': 'normal gastric tissue', 'class': '--', 'location': 'GE junction'}, 'GSM1545066': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM1545067': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM2287415': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287414': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287417': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287416': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610859': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610858': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2287413': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2287412': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610855': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610854': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610857': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610856': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610851': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2287418': {'multiplexing': '96', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 20-30'}, 'GSM2610853': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2610852': {'line': 'CCL-243', 'passages': '90-92 hours', 'type': 'Human immortalised myelogenous leukemia line', 'treatment': 'untreated'}, 'GSM2170674': {'stage': 'Hepatic endoderm 2'}, 'GSM2170608': {'stage': 'Hepatic endoderm 1'}, 'GSM2442788': {'antibody': 'H3K27ac, Abcam ab4729', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442789': {'antibody': 'H3K36me3, Abcam ab9050', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442780': {'antibody': 'ETS1, Santa-Cruz sc-111X', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442781': {'antibody': 'RNAPII, EMD Millipore 05-623B', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442782': {'antibody': 'RNAPII, EMD Millipore 05-623B', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442783': {'antibody': 'RNAPII, EMD Millipore 05-623B', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442784': {'antibody': 'RNAPII, EMD Millipore 05-623B', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442785': {'antibody': 'H3K4me3, Active motif 39159', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442786': {'antibody': 'H3K4me2, abcam ab32356', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2442787': {'antibody': 'H3K4me1, Abcam ab8895', 'passages': 'P3-6', 'type': 'Primary Human Umbilical Vein Endothelial Cells'}, 'GSM2062267': {'source': 'Cutaneous squamous cell carcinoma', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'Negative control siRNA'}, 'GSM1163029': {'patient': 'Disease_K6', 'gender': 'F', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Antagonist', 'id': '8'}, 'GSM2243808': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'G5', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2700509': {'line': '293T (pool of 3 KO clones)', 'tissue': 'Human Embryonic kidney', 'genotype': 'Fas ligand KO -/-', 'infection': 'Infected with pTIP-shL3; 100ng/uL doxycycline', 'point': 'harvested at 50hrs'}, 'GSM2062269': {'source': 'Cutaneous squamous cell carcinoma', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'Negative control siRNA'}, 'GSM2062268': {'source': 'Cutaneous squamous cell carcinoma', 'tissue': 'Derived from cSCC tumors', 'type': 'Primary cSCC cells', 'treatment': 'PICSAR siRNA'}, 'GSM2151570': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2310228': {'gender': 'Female', 'age': '10', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM1910790': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910791': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910792': {'stability': 'Stable', 'type': 'ileum'}, 'GSM1910793': {'stability': 'Stable', 'type': 'ileum'}, 'GSM2310221': {'gender': 'Male', 'age': '16', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2310220': {'gender': 'Male', 'age': '12', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2310223': {'gender': 'Male', 'age': '16', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2310222': {'gender': 'Male', 'age': '16', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2310225': {'gender': 'Male', 'age': '17', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2310224': {'gender': 'Male', 'age': '17', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2310227': {'gender': 'Male', 'age': '17', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2310226': {'gender': 'Male', 'age': '17', 'source': 'hiPSC', 'tissue': 'Brain', 'marker': 'hPDGFRa', 'type': 'GPC', 'ethnicity': 'Caucasian', 'subject': 'Schizophrenic Patient'}, 'GSM2212268': {'with': '0.5µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212269': {'with': '1µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212260': {'line': 'Leukemia cell line; CCRF-CEM', 'type': 'Paediatric immature T-cell line derived from ALL with t(5;14)(q35.1;q32.2)'}, 'GSM2212261': {'line': 'Leukemia cell line; RCH-ACV', 'type': 'Paediatric pre B-cell line derived from cALL with t(1;19)(q23;p13) translocation'}, 'GSM2212262': {'line': 'Leukemia cell line; RCH-ACV', 'type': 'Paediatric pre B-cell line derived from cALL with t(1;19)(q23;p13) translocation'}, 'GSM2212263': {'with': 'DMSO for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212264': {'with': 'DMSO for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212265': {'with': 'DMSO for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212266': {'with': '0.5µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2212267': {'with': '0.5µM EPZ-5676 for 7 days', 'line': 'Leukemia cell line; SEM', 'type': 'Paediatric pro B-cell line derived from ALL with t(4;11)(q21;q23) translocation', 'subtype': 'nascent RNA'}, 'GSM2644564': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644565': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644566': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644567': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-ERalpha (Santa Cruz, HC-20)'}, 'GSM2644561': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644562': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644563': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644568': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-ERalpha (Santa Cruz, HC-20)'}, 'GSM2644569': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'anti-ERalpha (Santa Cruz, HC-20)'}, 'GSM2565078': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'DMSO'}, 'GSM1202517': {'tissue': 'bone marrow', 'agent': 'SR1_500nM+MeBIO_250nM', 'time': '16h'}, 'GSM1513243': {'gender': 'Female', 'line': 'GM19172', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513242': {'gender': 'Male', 'line': 'GM19171', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513241': {'gender': 'Male', 'line': 'GM19160', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513240': {'gender': 'Female', 'line': 'GM19159', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513247': {'gender': 'Male', 'line': 'GM19200', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1202512': {'tissue': 'bone marrow', 'agent': 'DMSO_0.1%', 'time': '16h'}, 'GSM1513245': {'gender': 'Male', 'line': 'GM19192', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2816215': {'line': 'H9'}, 'GSM1513249': {'gender': 'Female', 'line': 'GM19204', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM1513248': {'gender': 'Female', 'line': 'GM19201', 'type': 'ribosome protected fragments', 'subtype': 'cytoplasmic RNA'}, 'GSM2072988': {'line': 'Huh7', 'type': 'HCC', 'variation': 'SRSF2-/-'}, 'GSM2550487': {'line': 'THP1', 'tissue': 'human peripheral blood', 'treatment': 'TPA'}, 'GSM2565076': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM2565077': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'DMSO'}, 'GSM1980298': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980299': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980290': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980291': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980292': {'status': 'negative_low_gapdh', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2565075': {'construction': 'Illumina TruSeq RNA-Seq', 'drug': 'Bortezomib (Velcade)'}, 'GSM1980294': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980295': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980296': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980297': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2653582': {'line': 'A375', 'passages': '5-10', 'type': 'Melanoma cells'}, 'GSM1399203': {'line': 'CUTTL1', 'type': 'human T-ALL cell line'}, 'GSM2666016': {'age': 'Day 130', 'well': 'D2', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1921980': {'donor': '1', 'tissue': 'macrophage', 'agent': '2-deoxy-d-glucose'}, 'GSM1833318': {'type': 'early blastocsyt'}, 'GSM2692581': {'line': 'PC9', 'treatment': 'PC9DTP'}, 'GSM2692580': {'line': 'PC9', 'treatment': 'PC9DTP'}, 'GSM2692583': {'line': 'PC9', 'treatment': 'PC9DTP+TSA (50nM, 5hours)'}, 'GSM2692582': {'line': 'PC9', 'treatment': 'PC9DTP'}, 'GSM2692585': {'line': 'PC9', 'treatment': 'PC9DTP+TSA (50nM, 5hours)'}, 'GSM2692584': {'line': 'PC9', 'treatment': 'PC9DTP+TSA (50nM, 5hours)'}, 'GSM2692587': {'line': 'PC9', 'treatment': 'PC9+erlotinib (1uM, 24 hours)'}, 'GSM2692586': {'line': 'PC9', 'treatment': 'PC9+erlotinib (1uM, 24 hours)'}, 'GSM2692589': {'line': 'PC9', 'treatment': 'PC9 +carboplatin (50uM,72h)'}, 'GSM2692588': {'line': 'PC9', 'treatment': 'PC9+erlotinib (1uM, 24 hours)'}, 'GSM2211711': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'abdomen', 'tissue': 'skin biopsy', 'id': 'patient5'}, 'GSM2211710': {'status': 'psoriasis patient', 'type': 'uninvolved', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient4'}, 'GSM2211713': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'buttock', 'tissue': 'skin biopsy', 'id': 'patient5'}, 'GSM2211712': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'back', 'tissue': 'skin biopsy', 'id': 'patient5'}, 'GSM2211715': {'status': 'psoriasis patient', 'type': 'uninvolved', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient5'}, 'GSM2211714': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient5'}, 'GSM2108544': {'stages': 'mononucleated cell nucleus'}, 'GSM2718904': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2385619': {'line': '448T', 'type': 'glioblastoma stem cell'}, 'GSM2394493': {'id': 'IonXpress_054', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'E6 berbamine', 'point': 'after 12h of compound treatment'}, 'GSM2895241': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': '4-hydroxytamoxifen (1 μM)'}, 'GSM2895240': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'estradiol (10 nM)'}, 'GSM2895243': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'estradiol (10 nM) + 4-hydroxytamoxifen (1 μM)'}, 'GSM2895242': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': '4-hydroxytamoxifen (1 μM)'}, 'GSM2895245': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'R4K1 stapled peptide (15 μM)'}, 'GSM2394490': {'id': 'IonXpress_051', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Cycloheximide', 'point': 'after 12h of compound treatment'}, 'GSM2895247': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'estradiol (10 nM) + R4k1 (15 μM)'}, 'GSM2895246': {'line': 'MCF-7', 'type': 'Breast cancer cell', 'treatment': 'R4K1 stapled peptide (15 μM)'}, 'GSM2666011': {'age': 'Day 130', 'well': 'E4', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2394491': {'id': 'IonXpress_052', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Cytochalasin D', 'point': 'after 12h of compound treatment'}, 'GSM2641040': {'type': 'HESC-derived enteric neural crest cells and human intestinal organoids'}, 'GSM2641041': {'type': 'HESC-derived human intestinal organoids'}, 'GSM2641042': {'type': 'HESC-derived human intestinal organoids'}, 'GSM2641043': {'type': 'HESC-derived human intestinal organoids'}, 'GSM2175745': {'type': 'CD19+ B cells', 'by': 'EBV strain M81', 'treatment': 'pretreated with cycloheximide'}, 'GSM2394496': {'id': 'IonXpress_057', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Genistein', 'point': 'after 12h of compound treatment'}, 'GSM2175746': {'type': 'HEK293 cells', 'by': 'EBV strain B95-8', 'treatment': 'pretreated for 2 minutes with harringtonine'}, 'GSM2175740': {'type': 'CD19+ B cells', 'by': 'EBV strain B95-8', 'treatment': 'pretreated with cycloheximide'}, 'GSM2175743': {'type': 'CD19+ B cells', 'by': 'EBV strain M81', 'treatment': 'pretreated for 5 minutes with harringtonine'}, 'GSM2718901': {'subtype': 'Luminal A', 'tissue': 'breast tumor'}, 'GSM2394494': {'id': 'IonXpress_055', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'E-64-d', 'point': 'after 12h of compound treatment'}, 'GSM2154870': {'status': 'Non-Amplified', 'line': 'SH-SY5Y'}, 'GSM2394495': {'id': 'IonXpress_056', 'plate': 'D1', 'type': 'iPS-derived cardiomyocytes', 'name': 'Etoposide', 'point': 'after 12h of compound treatment'}, 'GSM2243804': {'selection': 'Microglia(CD45)', 'neoplastic': 'Regular', 'well': 'H2', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM1403307': {'with': '100 µg/ml cycloheximide for 30 min at 37°C', 'type': 'Colorectal carcinoma derived cell line', 'subtype': 'Ribosome protected fragments'}, 'GSM1403308': {'with': '50 µM lactimidomycin for 30 min at 37°C', 'type': 'Colorectal carcinoma derived cell line', 'subtype': 'Ribosome protected fragments'}, 'GSM1325495': {'line': 'HeLa', 'transfection': 'LNA GL2'}, 'GSM1325494': {'line': 'HeLa', 'transfection': 'LNA CGPM'}, 'GSM1325497': {'origin': 'hES-derived pancreatic non-endocrine assosiated cells', 'type': 'NGN3-eGFP Negative cells'}, 'GSM1325496': {'origin': 'hES-derived pancreatic endocrine assosiated cells', 'type': 'NGN3-eGFP Positive cells'}, 'GSM1325491': {'line': 'HCT-116', 'transfection': 'LNA CGPM'}, 'GSM1709576': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1325493': {'line': 'HeLa', 'transfection': 'LNA CAGMM'}, 'GSM1325492': {'line': 'HCT-116', 'transfection': 'LNA GL2'}, 'GSM2108541': {'stages': 'mononucleated cell nucleus'}, 'GSM1709577': {'timepoint': '15 min', 'line': 'MCF10a', 'genotype': 'PTEN KO', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2689237': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1535676': {'line': 'HCT116', 'passages': '44', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM2689235': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689234': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689233': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2858881': {'line': 'BJ1', 'type': 'ES-derived oligodendrocytes'}, 'GSM2689231': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM1535677': {'line': 'HCT116', 'passages': '44', 'type': 'colon cancer', 'treatment': '24 hours'}, 'GSM909573': {'with': 'pre-miR control', 'line': 'NB4', 'type': 'promyelocytic leukemia'}, 'GSM1435526': {'antibody': 'H3K4me1 (abcam; ab8895)', 'type': 'lymphoblastic cell line'}, 'GSM909576': {'with': 'pre-miR-125b', 'line': 'NB4', 'type': 'promyelocytic leukemia'}, 'GSM2689239': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2689238': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10-', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'LMPP'}, 'GSM2350148': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2350149': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2042074': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042075': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042072': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042073': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042070': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2042071': {'cohort': 'Sporadic', 'tissue': 'Sessile serrated adenoma/polyp'}, 'GSM2350140': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350141': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350142': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350143': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350144': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350145': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350146': {'rna': '10 pg', 'used': 'aRNA'}, 'GSM2350147': {'rna': '10 pg', 'used': 'C1 SMARTer'}, 'GSM2616699': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'FARI_1504', 'subtype': 'CD154'}, 'GSM2361539': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361538': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361535': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361534': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361537': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361536': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361531': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361530': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361533': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM2361532': {'type': 'primary human conventional dendritic cells (cDCs)'}, 'GSM1503688': {'molecule': 'polyA RNA', 'line': 'Tissue', 'type': 'Human Dermal Fibroblast'}, 'GSM1503689': {'molecule': 'polyA RNA', 'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM2533781': {'line': 'induced pluripotent stem cell line C17', 'selection': 'NKX2-1-GFP and Live cells (PI)', 'protocol': '15'}, 'GSM1503682': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1503683': {'molecule': 'polyA RNA', 'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1503680': {'molecule': 'polyA RNA', 'line': 'Sendai-Virus Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1503681': {'molecule': 'polyA RNA', 'line': 'Differentated iPSC', 'type': 'Fibroblast'}, 'GSM1503686': {'molecule': 'polyA RNA', 'line': 'Differentiated NT-ESC', 'type': 'Fibroblast'}, 'GSM1503687': {'molecule': 'polyA RNA', 'line': 'Tissue', 'type': 'Human Dermal Fibroblast'}, 'GSM1503684': {'molecule': 'polyA RNA', 'line': 'Nuclear Transfer Derived', 'type': 'Human Pluripotent Stem Cell'}, 'GSM1503685': {'molecule': 'polyA RNA', 'line': 'Differentiated NT-ESC', 'type': 'Fibroblast'}, 'GSM2172212': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172213': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172210': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172211': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172216': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172217': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172214': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172215': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172218': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM2172219': {'donor_age': '21', 'inferred_cell_type': 'ductal', 'gender': 'male'}, 'GSM3072999': {'tissue': 'Glial Progenitor Cells', 'diet': 'Cuprizone'}, 'GSM3072998': {'tissue': 'Glial Progenitor Cells', 'diet': 'Control'}, 'GSM1955849': {'a': '62624', 'cd38': '740', 'cd49f': '880', 'w': '67591', 'h': '60720', 'lin': '403', 'cd34': '5952', 'cd90': '3779', 'cd7': '202', 'cd10': '732', 'time': '13619', 'cd135': '6155', 'cd45ra': '199'}, 'GSM1955848': {'a': '63399', 'cd38': '76', 'cd49f': '498', 'w': '63545', 'h': '65385', 'lin': '441', 'cd34': '8065', 'cd90': '-263', 'cd7': '-31', 'cd10': '796', 'time': '13359', 'cd135': '1484', 'cd45ra': '401'}, 'GSM958744': {'description': 'Paired 75 nt reads', 'datatype': 'RnaSeq', 'labexpid': '11584', 'readtype': '2x75', 'mapalgorithm': 'TH1014', 'replicate': '1', 'treatment': 'None', 'insertlength': '200'}, 'GSM1955846': {'a': '76725', 'cd38': '698', 'cd49f': '206', 'w': '67688', 'h': '74285', 'lin': '776', 'cd34': '5878', 'cd90': '-632', 'cd7': '30', 'cd10': '1159', 'time': '12953', 'cd135': '3656', 'cd45ra': '272'}, 'GSM1955845': {'a': '53698', 'cd38': '574', 'cd49f': '86', 'w': '62701', 'h': '56125', 'lin': '869', 'cd34': '3692', 'cd90': '397', 'cd7': '158', 'cd10': '242', 'time': '12763', 'cd135': '543', 'cd45ra': '185'}, 'GSM1955844': {'a': '54562', 'cd38': '191', 'cd49f': '1440', 'w': '66986', 'h': '53381', 'lin': '-287', 'cd34': '6011', 'cd90': '4850', 'cd7': '431', 'cd10': '714', 'time': '10085', 'cd135': '1794', 'cd45ra': '40'}, 'GSM1955843': {'a': '63435', 'cd38': '6', 'cd49f': '1222', 'w': '62568', 'h': '66445', 'lin': '84', 'cd34': '7632', 'cd90': '10787', 'cd7': '-35', 'cd10': '1102', 'time': '10286', 'cd135': '2471', 'cd45ra': '379'}, 'GSM1955842': {'a': '55667', 'cd38': '215', 'cd49f': '63', 'w': '67569', 'h': '53992', 'lin': '756', 'cd34': '11134', 'cd90': '9322', 'cd7': '104', 'cd10': '976', 'time': '10509', 'cd135': '1963', 'cd45ra': '185'}, 'GSM1955841': {'a': '51027', 'cd38': '288', 'cd49f': '557', 'w': '67964', 'h': '49204', 'lin': '464', 'cd34': '8049', 'cd90': '11678', 'cd7': '123', 'cd10': '971', 'time': '10707', 'cd135': '3000', 'cd45ra': '358'}, 'GSM1955840': {'a': '62648', 'cd38': '378', 'cd49f': '332', 'w': '67887', 'h': '60478', 'lin': '-358', 'cd34': '6605', 'cd90': '3199', 'cd7': '484', 'cd10': '586', 'time': '10920', 'cd135': '3764', 'cd45ra': '103'}, 'GSM2316928': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2316929': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM1495268': {'feed': '700 μM, 60 minutes', 'reagent': 'N/A', 'line': 'HEK 293T'}, 'GSM1495269': {'feed': '700 μM, 60 minutes', 'reagent': 'N/A', 'line': 'HEK 293T'}, 'GSM2917169': {'gender': 'Male', 'state': 'Nondiabetic', 'type': 'Subcutaneous Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM2917168': {'gender': 'Female', 'state': 'Nondiabetic', 'type': 'Subcutaneous Adipose Tissue', 'passage': 'Fresh Frozen'}, 'GSM1369008': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 18'}, 'GSM1369009': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 18'}, 'GSM1369002': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 1'}, 'GSM1369003': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 1'}, 'GSM1369000': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 0'}, 'GSM1369001': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 0'}, 'GSM1369006': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 11'}, 'GSM1369007': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 11'}, 'GSM1369004': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 1'}, 'GSM1369005': {'line': 'H1', 'type': 'ES-derived neural progenitor cells', 'time': 'Day 11'}, 'GSM2307078': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307079': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307070': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307071': {'patientid': 'IPF010', 'diagnosis': 'IPF'}, 'GSM2307072': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307073': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307074': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2307075': {'patientid': 'CC002', 'diagnosis': 'Control'}, 'GSM2307076': {'patientid': 'IPF009', 'diagnosis': 'IPF'}, 'GSM2307077': {'patientid': 'CC019', 'diagnosis': 'Control'}, 'GSM2543906': {'library_id': 'lib8054', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543907': {'library_id': 'lib8055', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543904': {'library_id': 'lib8046', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '3.724', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543905': {'library_id': 'lib8047', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '3.724', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543902': {'library_id': 'lib8044', 'stim': 'CR', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.499', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543903': {'library_id': 'lib8045', 'stim': 'NS', 'group': 'Asthma', 'classification': 'Asthma', 'level': '0.499', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543900': {'library_id': 'lib8042', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543901': {'library_id': 'lib8043', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2316924': {'control': 'FALSE', 'culture': '26', 'line': 'DCX+'}, 'GSM2543908': {'library_id': 'lib8058', 'stim': 'CR', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543909': {'library_id': 'lib8059', 'stim': 'NS', 'group': 'CR sensitized', 'classification': 'CR sensitized', 'level': '0.0305', 'flow_cell_id': 'AC6LKTANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2243470': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'H7', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM1323694': {'tgleason': '7', 'race': 'W', 'score': '437', 'sms': 'Negative', 'pstage': 'pT2', 'site': 'Atlanta VA Medical Center', 'prepsa': '8.77', 'reads': '45,905,090', 'tissue': 'prostate', 'u': '55.6', 'mapped': '70.7%', 'id': 'VA-PC-99-81', 'bcr': '0'}, 'GSM2451380': {'compartment': 'Epithelium', 'id': 'CUMC_068', 'library': 'NuGEN'}, 'GSM2451381': {'compartment': 'Stroma', 'id': 'CUMC_068', 'library': 'NuGEN'}, 'GSM2451382': {'compartment': 'Epithelium', 'id': 'CUMC_061', 'library': 'NuGEN'}, 'GSM2451383': {'compartment': 'Stroma', 'id': 'CUMC_061', 'library': 'NuGEN'}, 'GSM2451384': {'compartment': 'Epithelium', 'id': 'CUMC_064', 'library': 'NuGEN'}, 'GSM2451385': {'compartment': 'Stroma', 'id': 'CUMC_064', 'library': 'NuGEN'}, 'GSM2451386': {'compartment': 'Epithelium', 'id': 'CUMC_063', 'library': 'NuGEN'}, 'GSM2451387': {'compartment': 'Stroma', 'id': 'CUMC_063', 'library': 'NuGEN'}, 'GSM1853561': {'line': 'HeLa', 'treatment': 'VWR #BDH1135-4LP'}, 'GSM2493832': {'tissue': 'Dental pulp', 'treatment': 'Pretreatment with a gamma secretase inhibitor before exposing to recombinant human Jagged1/Fc immobilization'}, 'GSM1257879': {'line': 'MCF-7', 'treatment': 'Non-specific control RNA'}, 'GSM1257878': {'line': 'MCF-7', 'treatment': 'Non-specific control RNA'}, 'GSM1257875': {'line': 'MCF-7', 'treatment': 'Non-specific control RNA'}, 'GSM2547151': {'tissue': 'right atrial appendage biopsies', 'treatment': 'TGFB1', 'hour': 'cultured for 24 hours'}, 'GSM1257877': {'line': 'MCF-7', 'treatment': 'Non-specific control RNA'}, 'GSM1257876': {'line': 'MCF-7', 'treatment': 'Non-specific control RNA'}, 'GSM1257871': {'line': 'MCF-7', 'treatment': 'Short interfering RNA against the AHR'}, 'GSM1257870': {'line': 'MCF-7', 'treatment': 'Short interfering RNA against the AHR'}, 'GSM1257873': {'line': 'MCF-7', 'treatment': 'Short interfering RNA against the AHR'}, 'GSM2547150': {'tissue': 'right atrial appendage biopsies', 'treatment': 'TGFB1', 'hour': 'cultured for 24 hours'}, 'GSM2225772': {'tissue': 'pancreas'}, 'GSM1323699': {'tgleason': '6', 'race': 'W', 'score': '336', 'sms': 'Positive', 'pstage': 'pT1C', 'site': 'Moffitt Cancer Center', 'prepsa': '10.8', 'reads': '167,427,236', 'tissue': 'prostate', 'u': '74.24', 'mapped': '43.2%', 'id': 'MCC-PT220', 'bcr': '1'}, 'GSM2225773': {'tissue': 'pancreas'}, 'GSM1323698': {'tgleason': '6', 'race': 'W', 'score': '336', 'sms': 'Positive', 'pstage': 'pT1C', 'site': 'Moffitt Cancer Center', 'prepsa': '6.1', 'reads': '137,631,984', 'tissue': 'prostate', 'u': '104.05', 'mapped': '60.9%', 'id': 'MCC-PT197', 'bcr': '1'}, 'GSM2225778': {'tissue': 'pancreas'}, 'GSM2225779': {'tissue': 'pancreas'}, 'GSM2656509': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'NRAS', 'resistance': 'Sensitive to MEK inhibitor Trametinib'}, 'GSM2656508': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'NRAS', 'resistance': 'Sensitive to MEK inhibitor Trametinib'}, 'GSM1836100': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'DMSO', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836101': {'irradiation': 'UVC', 'dose': '1', 'chemical': 'TPA', 'time': '8', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836106': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836107': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'TPA', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM1836104': {'irradiation': 'MOCK', 'dose': '1', 'chemical': 'DMSO', 'time': '24', 'line': 'TK6', 'type': 'lymphoblast'}, 'GSM2509769': {'type': 'primary human airway smooth muscle cells', 'variation': 'transduced with control adenovirus (Ad-GFP)', 'passage': '5'}, 'GSM2656503': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'BRAF', 'resistance': 'Resistant to BRAF inhibitor PLX-4720'}, 'GSM2656502': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'BRAF', 'resistance': 'Sensitive to BRAF inhibitor PLX-4720'}, 'GSM2656505': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'BRAF', 'resistance': 'Resistant to BRAF inhibitor PLX-4720'}, 'GSM2656504': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'BRAF', 'resistance': 'Sensitive to BRAF inhibitor PLX-4720'}, 'GSM2656507': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'BRAF', 'resistance': 'Sensitive to BRAF inhibitor PLX-4720'}, 'GSM2656506': {'line': 'Malignant melanoma derived cell line', 'passages': '15-20', 'mutation': 'BRAF', 'resistance': 'Sensitive to BRAF inhibitor PLX-4720'}, 'GSM2086988': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086989': {'knockdown': 'n/a', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2701558': {'stimulation': '25600 Pa polyacrylamide hydrogel', 'tissue': 'liver', 'type': 'stellate cells'}, 'GSM922268': {'tissue': 'human embryonic stem cell line', 'type': 'human embryonic stem cell', 'stage': 'peri-implantation stem cells'}, 'GSM2086983': {'knockdown': 'igf2bp3', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2086980': {'knockdown': 'control', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2086981': {'knockdown': 'control', 'type': 'Epithelial', 'disease': 'Pancreatic ductal adenocarcinoma'}, 'GSM2086986': {'knockdown': 'igf2bp3', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086987': {'knockdown': 'igf2bp3', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086984': {'knockdown': 'control', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2086985': {'knockdown': 'control', 'type': 'Epithelial', 'disease': 'Pancreatic epithelioid carcinoma'}, 'GSM2112719': {'status': 'ER+/PR+', 'type': 'ER+/PR+ Human tumor explants', 'treatment': 'Vehicle', 'time': '24 Hours'}, 'GSM1620401': {'type': 'U87 human glioma cells'}, 'GSM2644910': {'passages': '75', 'sirna': 'Scramble siRNA', 'treatment': '1-AKP'}, 'GSM1626439': {'tissue': 'placental villus parenchyma'}, 'GSM2616434': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM1396749': {'lane': '5', 'librarybatch': 'B', 'replicate': '2', 'treatment': 'DMSO', 'time': '7 days', 'type': 'BAT', 'multiplex': '4'}, 'GSM1396748': {'lane': '6', 'librarybatch': 'B', 'replicate': '1', 'treatment': 'DMSO', 'time': '7 days', 'type': 'BAT', 'multiplex': '3'}, 'GSM1396747': {'lane': '7', 'librarybatch': 'B', 'replicate': '3', 'treatment': 'DMSO', 'time': '7 days', 'type': 'MPC', 'multiplex': '3'}, 'GSM1396746': {'lane': '5', 'librarybatch': 'B', 'replicate': '2', 'treatment': 'DMSO', 'time': '7 days', 'type': 'MPC', 'multiplex': '2'}, 'GSM1396745': {'lane': '6', 'librarybatch': 'B', 'replicate': '1', 'treatment': 'DMSO', 'time': '7 days', 'type': 'MPC', 'multiplex': '1'}, 'GSM1396744': {'lane': '5', 'librarybatch': 'B', 'replicate': '3', 'treatment': 'SYKi', 'time': '7 days', 'type': 'WAT', 'multiplex': '1'}, 'GSM1396743': {'lane': '8', 'librarybatch': 'B', 'replicate': '2', 'treatment': 'SYKi', 'time': '7 days', 'type': 'WAT', 'multiplex': '3'}, 'GSM1396742': {'lane': '7', 'librarybatch': 'B', 'replicate': '1', 'treatment': 'SYKi', 'time': '7 days', 'type': 'WAT', 'multiplex': '4'}, 'GSM1396741': {'lane': '6', 'librarybatch': 'B', 'replicate': '3', 'treatment': 'JAK3i', 'time': '7 days', 'type': 'WAT', 'multiplex': '2'}, 'GSM1396740': {'lane': '7', 'librarybatch': 'B', 'replicate': '2', 'treatment': 'JAK3i', 'time': '7 days', 'type': 'WAT', 'multiplex': '1'}, 'GSM1234072': {'replicate': '2', 'line': '19193', 'antibody': 'H3K4me3'}, 'GSM1234073': {'replicate': '1', 'line': '19193', 'antibody': 'Input'}, 'GSM1234070': {'replicate': '2', 'line': '19193', 'antibody': 'H3K4me1'}, 'GSM1234071': {'replicate': '1', 'line': '19193', 'antibody': 'H3K4me3'}, 'GSM1930389': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930388': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1234074': {'replicate': '1', 'line': '19193', 'antibody': 'RNA-seq'}, 'GSM2302911': {'status': 'Healthy Adult Control', 'subtype': 'CD161+ Treg', 'type': 'Peripheral Blood Mononuclear Cells (PBMCs)'}, 'GSM1930385': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930384': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930387': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930386': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930381': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1930380': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM1930383': {'status': 'psoriasis patient', 'type': 'lesional skin from psoriasis patient', 'point': 'before adalimumab treatment'}, 'GSM1930382': {'status': 'healthy control', 'type': 'normal skin'}, 'GSM2251311': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2754528': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0424', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2251310': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2754526': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0630', 'previousdiagnosisoftb': 'No', 'tst': '13', 'type': 'Tcells'}, 'GSM2754527': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0236', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2307237': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2424963': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2754522': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '04_1073', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2771745': {'aspiration': '2nd', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_2_1', 'structure': 'neurite'}, 'GSM2754520': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0177', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754521': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '16', 'timepoint': '0', 'stimulation': 'ag85', 'subjectid': '07_0414', 'previousdiagnosisoftb': 'No', 'tst': '23', 'type': 'Tcells'}, 'GSM2771744': {'aspiration': '1st', 'type': 'Cellular Dynamics iCell Neuron', 'id': 'Cell_1_23', 'structure': 'neurite'}, 'GSM2251315': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2267306': {'with': 'siADAR1 and siStaufen1', 'line': 'A172', 'type': 'human glibolastoma cells', 'replicate': 'b'}, 'GSM2251314': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2454264': {'state': 'Control', 'type': 'hiPSC-CM', 'mutation': 'N/A'}, 'GSM2454265': {'state': 'Control', 'type': 'hiPSC-CM', 'mutation': 'N/A'}, 'GSM1322961': {'subtype': 'EWS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2454267': {'state': 'Brugada Syndrome', 'type': 'hiPSC-CM', 'mutation': 'SCN5A (rs397514446)'}, 'GSM2251316': {'type': 'B cells', 'condition': 'Normal', 'patient_id': 'patient_1'}, 'GSM2840382': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2251319': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2840380': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840381': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840386': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840387': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840384': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1980493': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2840388': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840389': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1980343': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1980494': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1389726': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM2665977': {'age': 'Day 130', 'well': 'G5', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM1980340': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM1551310': {'region': 'AMY, amygdala', 'tissue': 'frozen postmortem brain from NICHD'}, 'GSM2815784': {'line': 'H9'}, 'GSM2218625': {'with': '+UV (Recovery time=48h)', 'line': 'VH10', 'type': 'Fibroblast cells immortalized with hTERT', 'antibody': 'anti-RNAPII-ser2P'}, 'GSM2358339': {'code': 'TGAACTGG', 'type': 'primary T cell'}, 'GSM2358338': {'code': 'TTGGTATG', 'type': 'primary T cell'}, 'GSM2358337': {'code': 'TAACGCTG', 'type': 'primary T cell'}, 'GSM1980341': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2358335': {'code': 'TCTCACGG', 'type': 'primary T cell'}, 'GSM2358334': {'code': 'GGCACAAC', 'type': 'primary T cell'}, 'GSM2358333': {'code': 'TCGAAGTG', 'type': 'primary T cell'}, 'GSM2358332': {'code': 'TTCCATTG', 'type': 'primary T cell'}, 'GSM2358331': {'code': 'TATGCCAG', 'type': 'T-ALL PDX'}, 'GSM2358330': {'code': 'TGGCTCAG', 'type': 'T-ALL PDX'}, 'GSM2452297': {'line': 'G010', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM2452296': {'line': 'G010', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM2452295': {'line': 'G010', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM2452294': {'line': 'G010', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM2452293': {'line': 'G010', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM2452292': {'line': 'G010', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'Mock Infected'}, 'GSM2452291': {'line': 'K054', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM2452290': {'line': 'K054', 'tissue': 'primary human fetal brain-derived neural stem cells', 'treatment': 'ZIKV Infected'}, 'GSM2665975': {'age': 'Day 130', 'well': 'G6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM1980346': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2088119': {'status': 'Normal', 'ratio': '1.895434014', 'point': 't2', 'age': '63.426', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'years': '37', 'alignments': '69717166', 'id': 'Patient_P28', 'alignment': '42715752'}, 'GSM2088118': {'status': 'Dysplasia', 'ratio': '1.738954922', 'point': 't2', 'age': '54.348', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'years': '57', 'alignments': '56473842', 'id': 'Patient_P14', 'alignment': '34581292'}, 'GSM2088113': {'status': 'Dysplasia', 'ratio': '1.793576346', 'point': 't2', 'age': '53.666', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '0', 'alignments': '67378852', 'id': 'Patient_P10', 'alignment': '41417195'}, 'GSM2088112': {'status': 'Dysplasia', 'ratio': '1.710295635', 'point': 't2', 'age': '65.397', 'Sex': 'Female', 'content': '47.47', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'years': '66', 'alignments': '93535676', 'id': 'Patient_P3', 'alignment': '56699766'}, 'GSM2088111': {'status': 'Dysplasia', 'ratio': '1.507897903', 'point': 't2', 'age': '65.252', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '53', 'alignments': '69259382', 'id': 'Patient_P31', 'alignment': '42954138'}, 'GSM2088110': {'status': 'Normal', 'ratio': '1.774627794', 'point': 't2', 'age': '59.562', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'years': '40', 'alignments': '51666824', 'id': 'Patient_P18', 'alignment': '31834309'}, 'GSM2088117': {'status': 'Normal', 'ratio': '2.007377248', 'point': 't1', 'age': '58.565', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'years': '30', 'alignments': '48811284', 'id': 'Patient_P26', 'alignment': '30673874'}, 'GSM2088116': {'status': 'Dysplasia', 'ratio': '1.762093861', 'point': 't2', 'age': '53.371', 'Sex': 'Male', 'content': '50.51', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '52', 'alignments': '57801288', 'id': 'Patient_P17', 'alignment': '35749290'}, 'GSM2088115': {'status': 'Normal', 'ratio': '1.790148513', 'point': 't2', 'age': '46.355', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'years': '30', 'alignments': '61956152', 'id': 'Patient_P5', 'alignment': '38690145'}, 'GSM2088114': {'status': 'Normal', 'ratio': '1.845033597', 'point': 't3', 'age': '52.237', 'Sex': 'Female', 'content': '45.45', 'tissue': 'Bronchial brushing', 'histology': 'Hyperplasia', 'years': '28', 'alignments': '67897836', 'id': 'Patient_P21', 'alignment': '41645092'}, 'GSM2585409': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585408': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2456041': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1980347': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2585401': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585400': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585403': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585402': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585405': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585404': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585407': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2585406': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM1980344': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2630277': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'SAR405838'}, 'GSM1980345': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'diagnosis'}, 'GSM2295945': {'line': '11a2', 'type': 'Human pluripotent stem'}, 'GSM2295946': {'line': '11a2', 'type': 'Human pluripotent stem'}, 'GSM2374818': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374819': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374814': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374815': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374816': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374817': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374810': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374811': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374812': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM2374813': {'gender': 'F', 'tissue': 'Hypothalamic ARC-type neurons', 'type': 'hypothalamic neurons', 'id': 'NKX2.1GFP/w-hESC', 'condition': 'WT'}, 'GSM1842242': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM1842243': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM1842240': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM2471068': {'status': 'HIV', 'donorid': 'BC043', 'subset': 'TM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'timepoint': 'd14'}, 'GSM1842244': {'tissue': 'cord blood', 'type': 'CD4+ T cells'}, 'GSM2178812': {'ir': '1.30378096479791', 'weight': 'obese', 'gender': 'female', 'age': '48', 'bmi': '32.7', 'disease': 'ngt', 'l': '0.05', 'h': '0.5', 'id': '79a'}, 'GSM1417183': {'state': 'Post-treatment metastasis', 'tissue': 'metastasis tumour'}, 'GSM1417182': {'state': 'Post-treatment metastasis', 'tissue': 'metastasis tumour'}, 'GSM1417181': {'state': 'Untreated', 'tissue': 'nodal tumour'}, 'GSM1417180': {'state': 'Untreated', 'tissue': 'nodal tumour'}, 'GSM2389450': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389451': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389452': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389453': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2389454': {'tissue': 'Osteosarcoma U2OS cell line'}, 'GSM2630276': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'SAR405838'}, 'GSM2146992': {'transduction': 'Scramble XENO 2', 'pair': '2', 'treatment': 'Doxyciclin', 'batch': '1'}, 'GSM2146993': {'transduction': 'Scramble', 'pair': '3', 'treatment': 'Doxyciclin', 'batch': '1'}, 'GSM1389720': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM2146991': {'transduction': 'Scramble XENO 1', 'pair': '1', 'treatment': 'Doxyciclin', 'batch': '1'}, 'GSM2146996': {'transduction': 'Scramble XENO 2', 'pair': '6', 'treatment': 'Doxyciclin', 'batch': '2'}, 'GSM2146997': {'transduction': 'miR-28 XENO 1', 'pair': '1', 'treatment': 'Doxyciclin', 'batch': '1'}, 'GSM2146994': {'transduction': 'Scramble XENO 1', 'pair': '4', 'treatment': 'Doxyciclin', 'batch': '2'}, 'GSM2146995': {'transduction': 'Scramble XENO 1', 'pair': '5', 'treatment': 'Doxyciclin', 'batch': '2'}, 'GSM1643957': {'antibody': 'p65 (Vendor: Santa Cruz, cat# sc-372, lot# D0604)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM1643956': {'antibody': 'p65 (Vendor: Santa Cruz, cat# sc-372, lot# D0604)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'vehicle'}, 'GSM2146998': {'transduction': 'miR-28 XENO 2', 'pair': '2', 'treatment': 'Doxyciclin', 'batch': '1'}, 'GSM2146999': {'transduction': 'miR-28', 'pair': '3', 'treatment': 'Doxyciclin', 'batch': '1'}, 'GSM1643953': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa for 45m'}, 'GSM1643952': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'TNFa for 45m'}, 'GSM1643951': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b for 45m'}, 'GSM1643950': {'antibody': 'ERa (Vendor: Santa Cruz, cat# sc-543, lot# C2114)', 'line': 'MCF7', 'type': 'breast cancer cell line', 'treatment': 'IL1b for 45m'}, 'GSM2510273': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2387328': {'line': 'HUES8 hESCs', 'genotype': 'Wild type sequence'}, 'GSM2510275': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2544219': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM2243518': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'E2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2387324': {'status': 'Psoriasis', 'tissue': 'Skin', 'type': 'Skin-derived Mesenchymal stem cells'}, 'GSM2510279': {'strain': 'HSD:Athymic Nudeâ\\x80\\x93Foxn1nu', 'line': 'VCaP', 'tissue': 'prostate cancer xenograft (VCaP tumor)', 'passage': 'p61'}, 'GSM2243510': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F10', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243511': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'A5', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243512': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B8', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243513': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F2', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243514': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F9', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243515': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'F4', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2243516': {'selection': 'Unpanned', 'neoplastic': 'Regular', 'well': 'C10', 'cluster': '8', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Immune cell', 'id': 'BT_S2'}, 'GSM2243517': {'selection': 'Unpanned', 'neoplastic': 'Neoplastic', 'well': 'B6', 'cluster': '11', 'tissue': 'Tumor', 'diagnosis': 'glioblastoma', 'type': 'Neoplastic', 'id': 'BT_S2'}, 'GSM2100859': {'status': 'yes', 'gender': 'male', 'age': '64', 'race': 'white'}, 'GSM2047267': {'subtype': 'Self-Replicating', 'type': 'adipose derived mesenchymal stem cells (hADSCs)'}, 'GSM2552201': {'line': 'HAP-1', 'name': 'Horizon Genomics, HAP1', 'genotype': 'wildtype'}, 'GSM2552200': {'line': 'HAP-1', 'name': 'Horizon Genomics, HAP1', 'genotype': 'wildtype'}, 'GSM2047268': {'subtype': 'Senescent', 'type': 'adipose derived mesenchymal stem cells (hADSCs)'}, 'GSM2100858': {'status': 'yes', 'gender': 'male', 'age': '70', 'race': 'white'}, 'GSM1299392': {'labexpid': '13293', 'line': 'GM12878'}, 'GSM3161886': {'stimulation': 'unstimulated', 'line': 'HES2', 'type': 'atrial myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161887': {'stimulation': 'unstimulated', 'line': 'HES2', 'type': 'atrial myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161884': {'stimulation': 'stimulated', 'line': 'HES2', 'type': 'atrial myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161885': {'stimulation': 'unstimulated', 'line': 'HES2', 'type': 'atrial myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161882': {'stimulation': 'stimulated', 'line': 'HES2', 'type': 'atrial myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161883': {'stimulation': 'stimulated', 'line': 'HES2', 'type': 'atrial myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161880': {'stimulation': 'unstimulated', 'line': 'HES2', 'type': 'ventricle myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM3161881': {'stimulation': 'unstimulated', 'line': 'HES2', 'type': 'ventricle myocyte', 'pathology': 'normal', 'Sex': 'female'}, 'GSM1165981': {'line': 'HCT116', 'treatment': 'USP49 knockdown'}, 'GSM1165980': {'line': 'HCT116', 'treatment': 'control'}, 'GSM3161888': {'stimulation': 'stimulated', 'line': 'MyCell1320', 'type': 'ventricle myocyte', 'pathology': 'abnormal', 'Sex': 'female'}, 'GSM3161889': {'stimulation': 'stimulated', 'line': 'MyCell1320', 'type': 'ventricle myocyte', 'pathology': 'abnormal', 'Sex': 'female'}, 'GSM2081455': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM1299393': {'labexpid': '13294', 'line': 'GM12878'}, 'GSM2883051': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject8', 'drug': 'Metformin'}, 'GSM2059898': {'donor': '1', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059899': {'donor': '1', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2883050': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject8', 'drug': 'Metformin'}, 'GSM2178814': {'ir': '1.45560407569141', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '25.9', 'disease': 't2d', 'l': '0.12', 'h': '1', 'id': '119a'}, 'GSM1389723': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM2081451': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM2059894': {'donor': '3b', 'rna': 'Polysomal', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059895': {'donor': '3b', 'rna': 'Cytosolic', 'cytokine': 'IL15', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2059896': {'donor': '1', 'rna': 'Polysomal', 'cytokine': 'IL2', 'treatment': 'W', 'type': 'NK cells'}, 'GSM2883056': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject11', 'drug': 'Metformin'}, 'GSM1656433': {'state': 'control', 'tissue': 'left ventricle'}, 'GSM1656436': {'state': 'myotonic dystrophy', 'tissue': 'left ventricle'}, 'GSM2883055': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '1', 'id': 'Subject11', 'drug': 'Metformin'}, 'GSM1656434': {'state': 'control', 'tissue': 'left ventricle'}, 'GSM1656435': {'state': 'control', 'tissue': 'left ventricle'}, 'GSM1656438': {'state': 'myotonic dystrophy', 'tissue': 'left ventricle'}, 'GSM2883054': {'tissue': 'Abdominal subcutaneous adipose', 'visit': '2', 'id': 'Subject10', 'drug': 'Metformin'}, 'GSM2492458': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2544218': {'line': 'THP-1', 'type': 'derived macrophages', 'exposure': '72 hr PMA exposure'}, 'GSM1521554': {'tissue': 'Bone marrow', 'type': 'acute myeloid leukemia'}, 'GSM1299391': {'labexpid': '13292', 'line': 'GM12878'}, 'GSM2081459': {'region': \"Brodmann's Area 11\", 'tissue': 'brain', 'stage': 'Schizophrenia'}, 'GSM1521553': {'tissue': 'Heparinised blood', 'type': 'acute myeloid leukemia'}, 'GSM2170669': {'stage': 'Hepatic endoderm 2'}, 'GSM2170668': {'stage': 'Hepatic endoderm 2'}, 'GSM2170661': {'stage': 'Hepatic endoderm 2'}, 'GSM2170660': {'stage': 'Hepatic endoderm 2'}, 'GSM2170663': {'stage': 'Hepatic endoderm 2'}, 'GSM2170662': {'stage': 'Hepatic endoderm 2'}, 'GSM2124794': {'type': 'non-tumor CD11b+ microglia samples'}, 'GSM2124795': {'type': 'non-tumor CD11b+ microglia samples'}, 'GSM2170667': {'stage': 'Hepatic endoderm 2'}, 'GSM2170666': {'stage': 'Hepatic endoderm 2'}, 'GSM2348286': {'line': 'FLO-1 parental'}, 'GSM1299396': {'labexpid': '13297', 'line': 'GM12878'}, 'GSM2348284': {'line': 'FLO-1LM'}, 'GSM2348285': {'line': 'FLO-1LM'}, 'GSM1965318': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965319': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965314': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965315': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965316': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965317': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965310': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965311': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1965312': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1299397': {'labexpid': '13298', 'line': 'GM12878'}, 'GSM3586739': {'origin': 'ABC', 'pfstt': '1133', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1270', 'cycles': '6', 'oscs': '0'}, 'GSM3586738': {'origin': 'GCB', 'pfstt': '1316', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1478', 'cycles': '6', 'oscs': '0'}, 'GSM3586737': {'origin': 'ABC', 'pfstt': '836', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '915', 'cycles': '6', 'oscs': '0'}, 'GSM1532544': {'tissue': 'brain', 'stage': 'NA'}, 'GSM3586735': {'origin': 'UNCLASSIFIED', 'pfstt': '623', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1174', 'cycles': '6', 'oscs': '0'}, 'GSM3586734': {'origin': 'GCB', 'pfstt': '1228', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1241', 'cycles': '6', 'oscs': '0'}, 'GSM1532541': {'tissue': 'brain', 'stage': 'Glioma Grade IV'}, 'GSM3586732': {'origin': 'GCB', 'pfstt': '1549', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1562', 'cycles': '6', 'oscs': '0'}, 'GSM1532543': {'tissue': 'brain', 'stage': 'NA'}, 'GSM1532542': {'tissue': 'brain', 'stage': 'Glioma Grade IV'}, 'GSM1717159': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 36', 'subtype': 'plasmacytoid dendritic cells (pDC)'}, 'GSM1717158': {'type': 'Monocyte', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 28', 'subtype': 'CD14+ monocytes'}, 'GSM1717151': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 97', 'subtype': 'plasmacytoid dendritic cells (pDC)'}, 'GSM1717153': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 97', 'subtype': 'slan(+) Dendritic cells'}, 'GSM1717152': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 97', 'subtype': 'CD1c+ myleoid dendirtic cells (mDC)'}, 'GSM1717155': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 28', 'subtype': 'plasmacytoid dendritic cells (pDC)'}, 'GSM1717154': {'type': 'Monocyte', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 97', 'subtype': 'CD14+ monocytes'}, 'GSM1717157': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 28', 'subtype': 'slan(+) Dendritic cells'}, 'GSM1717156': {'type': 'Dendritic cell', 'tissue': 'Blood', 'group': 'Healthy controls', 'id': 'Donor 28', 'subtype': 'CD1c+ myleoid dendirtic cells (mDC)'}, 'GSM2616558': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1402', 'subtype': 'CD154'}, 'GSM2616559': {'stimulation': 'aCD3_CD28', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1430', 'subtype': 'CD154'}, 'GSM2616552': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1401', 'subtype': 'CD154'}, 'GSM2262903': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2262900': {'protocol': 'Culture only, collected at 24 hours post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2616551': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2616556': {'stimulation': 'Peanut', 'allergies': 'Peanut', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1375', 'subtype': 'CD154'}, 'GSM2262907': {'protocol': 'Culture only for 6 days to macrophage, LPS exposed for 4 hours.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2616554': {'stimulation': 'None', 'allergies': 'None', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': 'HD54', 'subtype': 'Tregs'}, 'GSM2262905': {'protocol': 'Culture only, collected at 6 days post culture.', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2627109': {'origin': 'small intestine', 'patient_id': '189', 'type': 'primary', 'tumor_id': 'YC155'}, 'GSM2627108': {'origin': 'small intestine', 'patient_id': '188', 'type': 'primary', 'tumor_id': 'YC154'}, 'GSM2627101': {'origin': 'small intestine', 'patient_id': '38', 'type': 'primary', 'tumor_id': '38'}, 'GSM2627100': {'origin': 'small intestine', 'patient_id': '37', 'type': 'primary', 'tumor_id': '37'}, 'GSM2627103': {'origin': 'small intestine', 'patient_id': '173', 'type': 'primary', 'tumor_id': 'YC136'}, 'GSM2627102': {'origin': 'small intestine', 'patient_id': '64', 'type': 'primary', 'tumor_id': 'YC122'}, 'GSM2627105': {'origin': 'small intestine', 'patient_id': '176', 'type': 'primary', 'tumor_id': 'YC142'}, 'GSM2627104': {'origin': 'small intestine', 'patient_id': '186', 'type': 'primary', 'tumor_id': 'YC139'}, 'GSM2627107': {'origin': 'small intestine', 'patient_id': '187', 'type': 'primary', 'tumor_id': 'YC151'}, 'GSM2627106': {'origin': 'small intestine', 'patient_id': '177', 'type': 'primary', 'tumor_id': 'YC143'}, 'GSM3319630': {'region': 'Caudate', 'age': '64', 'id': 'B'}, 'GSM1095127': {'subset': 'poly A RNA', 'type': 'human embryonic kidney (HEK) 293 T-REx Flp-In cell lines'}, 'GSM2141429': {'individual': 'AF127', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141428': {'individual': 'AF125', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141427': {'individual': 'AF125', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141426': {'individual': 'AF125', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141425': {'individual': 'AF119', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141424': {'individual': 'AF119', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141423': {'individual': 'AF119', 'type': 'macrophage', 'infection': 'Listeria', 'time': '2 hr'}, 'GSM2141422': {'individual': 'AF117', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM2141421': {'individual': 'AF117', 'type': 'macrophage', 'infection': 'Non-infected', 'time': '2 hr'}, 'GSM2141420': {'individual': 'AF115', 'type': 'macrophage', 'infection': 'Salmonella', 'time': '2 hr'}, 'GSM1580661': {'with': 'none (control)', 'line': 'HuH7', 'type': 'Human liver (hepato cellular carcinoma) cells', 'point': '3 days post-treatment'}, 'GSM1580662': {'with': '10000 units/ml of IFN', 'line': 'HuH7', 'type': 'Human liver (hepato cellular carcinoma) cells', 'point': '3 days post-treatment'}, 'GSM1829775': {'immunophenotype': 'luminal progenitor', 'tissue': 'fresh breast tissue', 'patient': '2', 'population': 'RANK-positive'}, 'GSM1829774': {'immunophenotype': 'luminal progenitor', 'tissue': 'fresh breast tissue', 'patient': '2', 'population': 'RANK-negative'}, 'GSM1829777': {'immunophenotype': 'luminal progenitor', 'tissue': 'fresh breast tissue', 'patient': '3', 'population': 'RANK-negative'}, 'GSM1829776': {'immunophenotype': 'luminal progenitor', 'tissue': 'fresh breast tissue', 'patient': '3', 'population': 'RANK-positive'}, 'GSM1829773': {'immunophenotype': 'luminal progenitor', 'tissue': 'fresh breast tissue', 'patient': '1', 'population': 'RANK-positive'}, 'GSM1829772': {'immunophenotype': 'luminal progenitor', 'tissue': 'fresh breast tissue', 'patient': '1', 'population': 'RANK-negative'}, 'GSM1829779': {'immunophenotype': 'luminal progenitor', 'tissue': 'fresh breast tissue', 'patient': '4', 'population': 'RANK-positive'}, 'GSM1829778': {'immunophenotype': 'luminal progenitor', 'tissue': 'fresh breast tissue', 'patient': '4', 'population': 'RANK-negative'}, 'GSM2316519': {'experiment': '3', 'type': 'PLEKHA7 IP'}, 'GSM2316518': {'experiment': '2', 'type': 'PLEKHA7 IP'}, 'GSM2316511': {'culture': 'D54'}, 'GSM2316510': {'culture': 'D26'}, 'GSM2316513': {'experiment': '1', 'type': 'negative control IP'}, 'GSM2316512': {'culture': 'D54'}, 'GSM2316515': {'experiment': '3', 'type': 'negative control IP'}, 'GSM2316514': {'experiment': '2', 'type': 'negative control IP'}, 'GSM2316517': {'experiment': '1', 'type': 'PLEKHA7 IP'}, 'GSM2316516': {'experiment': '4', 'type': 'negative control IP'}, 'GSM2492450': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM3383930': {'tissue': 'pancreas tumor', 'id': 'patient10', 'diagnosis': 'pancreatic cancer'}, 'GSM1364040': {'type': 'induced pluripotent stem cells'}, 'GSM1364043': {'type': 'induced pluripotent stem cells TKCBV5-6 subclone 1'}, 'GSM1364042': {'type': 'induced pluripotent stem cell TIG118-4f1subclone 7'}, 'GSM2705979': {'tissue': '23N'}, 'GSM1479529': {'index': '20', 'diagnosis': '--', 'cellcount': '1078502', 'samplename': '54_Bcells', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '54', 'collectiondate': 'August 22 2012', 'celltype': 'B-cells', 'diseasestatus': 'ALS'}, 'GSM1479528': {'index': '5', 'diagnosis': '--', 'cellcount': '2000000', 'samplename': '54_Monocytes', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '54', 'collectiondate': 'August 22 2012', 'celltype': 'Monocytes', 'diseasestatus': 'ALS'}, 'GSM1587361': {'line': 'SET2', 'type': 'essential thrombocythemia', 'treatment': '25nM CA 4hrs'}, 'GSM1587360': {'line': 'SET2', 'type': 'essential thrombocythemia', 'treatment': '25nM CA 4hrs'}, 'GSM1479521': {'index': '18', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '30', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '53', 'collectiondate': 'August 21 2012', 'samplename': '53_Monocytes', 'celltype': 'Monocytes', 'diseasestatus': 'Healthy Control'}, 'GSM1479520': {'index': '18', 'diagnosis': '--', 'cellcount': '17887500', 'gender': 'F', 'age': '30', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '53', 'collectiondate': 'August 21 2012', 'samplename': '53_Neutrophils', 'celltype': 'Neutrophils', 'diseasestatus': 'Healthy Control'}, 'GSM1479523': {'index': '9', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '30', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '53', 'collectiondate': 'August 21 2012', 'samplename': '53_CD4T', 'celltype': 'CD4', 'diseasestatus': 'Healthy Control'}, 'GSM2304825': {'used': 'ATCG, ATGC', 'type': 'T lymphocyte', 'treatment': 'input (DMSO)', 'analysis': '29'}, 'GSM1479525': {'index': '11', 'diagnosis': '--', 'cellcount': '140773', 'gender': 'F', 'age': '30', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '53', 'collectiondate': 'August 21 2012', 'samplename': '53_NK', 'celltype': 'NK', 'diseasestatus': 'Healthy Control'}, 'GSM1479524': {'index': '19', 'diagnosis': '--', 'cellcount': '2000000', 'gender': 'F', 'age': '30', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '53', 'collectiondate': 'August 21 2012', 'samplename': '53_CD8T', 'celltype': 'CD8', 'diseasestatus': 'Healthy Control'}, 'GSM1479527': {'index': '10', 'diagnosis': '--', 'cellcount': '15862500', 'samplename': '54_Neutrophils', 'age': '--', 'smoker': '--', 'dose': '--', 'race': '--', 'donorid': '54', 'collectiondate': 'August 22 2012', 'celltype': 'Neutrophils', 'diseasestatus': 'ALS'}, 'GSM1479526': {'index': '8', 'diagnosis': '--', 'cellcount': '--', 'gender': 'F', 'age': '30', 'smoker': '--', 'dose': '--', 'race': 'White', 'donorid': '53', 'collectiondate': 'August 21 2012', 'samplename': '53_Tempus', 'celltype': 'Whole Blood', 'diseasestatus': 'Healthy Control'}, 'GSM2061453': {'line': 'HEK 293', 'sirna': 'control siRNA'}, 'GSM2166420': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 +/+ (WT)'}, 'GSM2061451': {'protein': 'siRNA insensitive protein SKI2W', 'sirna': '#2_SKIV2L', 'line': 'HEK 293'}, 'GSM2061450': {'protein': 'siRNA insensitive protein SKI2W', 'sirna': '#2_SKIV2L', 'line': 'HEK 293'}, 'GSM2563711': {'type': 'Embryonic stem cell-derived cardiomyocytes', 'day': '15'}, 'GSM2563710': {'type': 'Undifferentiated embryonic stem cells', 'day': '0'}, 'GSM2563713': {'type': 'Embryonic stem cell-derived cardiomyocytes', 'day': '30'}, 'GSM2563712': {'type': 'Embryonic stem cell-derived cardiomyocytes', 'day': '15'}, 'GSM2061459': {'line': 'HEK 293', 'sirna': 'HBS1LV1'}, 'GSM2061458': {'line': 'HEK 293', 'sirna': 'HBS1LV1'}, 'GSM2247778': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45+CD3+CD4+', 'tissue': 'clear cell RCC tumor', 'type': 'CD4+ T cells', 'identifier': 'RCC351'}, 'GSM1234116': {'replicate': '1', 'line': '19239', 'antibody': 'Input'}, 'GSM2247779': {'status': 'clear cell renal cell carcinoma (RCC)', 'marker': 'CD45-', 'tissue': 'clear cell RCC tumor', 'type': 'CD45- non-immune cells', 'identifier': 'RCC290'}, 'GSM2492452': {'type': 'CD34+ Cells', 'time': 'Day 14 Culture'}, 'GSM2433018': {'line': 'D341', 'type': 'cell line'}, 'GSM2433019': {'line': 'D341', 'type': 'cell line'}, 'GSM1917639': {'primary': 'No', 'agent': 'TSLP', 'xenograft': 'Yes'}, 'GSM2433014': {'tissue': 'primary medulloblastoma', 'type': 'primary tissue'}, 'GSM2433015': {'tissue': 'primary medulloblastoma', 'type': 'primary tissue'}, 'GSM2433016': {'tissue': 'primary medulloblastoma', 'type': 'primary tissue'}, 'GSM2433017': {'line': 'D341', 'type': 'cell line'}, 'GSM2433012': {'tissue': 'primary medulloblastoma', 'type': 'primary tissue'}, 'GSM2433013': {'tissue': 'primary medulloblastoma', 'type': 'primary tissue'}, 'GSM2717589': {'status': 'ZIKV infected', 'environment': 'in vivo', 'tissue': 'peripheral blood'}, 'GSM2311899': {'culture': '12', 'line': 'DCX+'}, 'GSM2311898': {'culture': '12', 'line': 'DCX+'}, 'GSM2311891': {'culture': '12', 'line': 'DCX+'}, 'GSM2311890': {'culture': '12', 'line': 'DCX+'}, 'GSM2311893': {'culture': '12', 'line': 'DCX+'}, 'GSM2311892': {'culture': '12', 'line': 'DCX+'}, 'GSM2311895': {'culture': '12', 'line': 'DCX+'}, 'GSM2311894': {'culture': '12', 'line': 'DCX+'}, 'GSM2311897': {'culture': '12', 'line': 'DCX+'}, 'GSM2311896': {'culture': '12', 'line': 'DCX+'}, 'GSM2090444': {'stimulus': 'UT', 'donor': '2', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2090445': {'stimulus': 'UT', 'donor': '4', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'male'}, 'GSM2090446': {'stimulus': 'UT', 'donor': '5', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2090447': {'stimulus': 'UT', 'donor': '6', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2090440': {'stimulus': 'IMQ', 'donor': '5', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2090441': {'stimulus': 'IMQ', 'donor': '6', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'female'}, 'GSM2090442': {'stimulus': 'IMQ', 'donor': '7', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'male'}, 'GSM3189092': {'boca': 'No', 'years': '12', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C35', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '0', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.710934', 'percentaligned': '0.961175', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.052739', 'original': 'Control'}, 'GSM979638': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10103ACA', 'readtype': '1x50', 'sex': 'F', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '061WC'}, 'GSM979639': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10104CTT', 'readtype': '1x50', 'sex': 'M', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '059WC'}, 'GSM2090448': {'stimulus': 'UT', 'donor': '7', 'tissue': 'blood', 'type': 'pDCs', 'gender': 'male'}, 'GSM3189091': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-C28', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.633384', 'percentaligned': '0.955418', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.753556'}, 'GSM3189090': {'boca': 'Yes', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C893JANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.811558', 'percentaligned': '0.925834', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.617205', 'original': 'Control'}, 'GSM3189097': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '5', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.642892', 'percentaligned': '0.917732794', 'Sex': 'F', 'nl63': 'No', 'libcounts': '10.58283', 'original': 'Control'}, 'GSM1234112': {'replicate': '3', 'line': '19239', 'antibody': 'H3K4me1'}, 'GSM3189096': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '7', 'mpv': 'No', 'hku1': 'Yes', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.624424', 'percentaligned': '0.855403943', 'Sex': 'F', 'nl63': 'No', 'libcounts': '8.22147', 'original': 'Control'}, 'GSM2653599': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM2653598': {'tissue': 'Wild-type human iPSC-derived intestinal organoids (Passage 3)', 'type': 'hIOs', 'genotype': 'APC+/+'}, 'GSM3189095': {'boca': 'No', 'years': '13', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '26', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.647287', 'percentaligned': '0.900241201', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.521829', 'original': 'Control'}, 'GSM1122678': {'type': 'primary CD34+ cell', 'variation': 'PRMT4-KD'}, 'GSM2653591': {'duration': '10 weeks', 'strain': 'nude mice', 'line': 'PC-3', 'type': 'Human prostate cancer cell line'}, 'GSM2653590': {'duration': '10 weeks', 'strain': 'nude mice', 'line': 'PC-3', 'type': 'Human prostate cancer cell line'}, 'GSM2653593': {'duration': '10 weeks', 'strain': 'nude mice', 'line': 'PC-3', 'type': 'Human prostate cancer cell line'}, 'GSM2653592': {'duration': '10 weeks', 'strain': 'nude mice', 'line': 'PC-3', 'type': 'Human prostate cancer cell line'}, 'GSM2653595': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2653594': {'duration': '10 weeks', 'strain': 'nude mice', 'line': 'PC-3', 'type': 'Human prostate cancer cell line'}, 'GSM2653597': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2653596': {'tissue': 'Undifferentiated BU1 clone (mTesR)', 'type': 'hiPSCs', 'genotype': 'APC+/+'}, 'GSM2652422': {'with': 'DMSO for 12 hours followed by 3-MB-PP1 for 4 hours', 'line': 'HCT-116', 'type': 'Colorectal cancer cell line'}, 'GSM2652423': {'with': 'DMSO for 12 hours followed by 3-MB-PP1 for 4 hours', 'line': 'HCT-116', 'type': 'Colorectal cancer cell line'}, 'GSM2652420': {'with': '5-fluorouracil for 12 hours followed by DMSO for 4 hours', 'line': 'HCT-116', 'type': 'Colorectal cancer cell line'}, 'GSM2652421': {'with': '5-fluorouracil for 12 hours followed by DMSO for 4 hours', 'line': 'HCT-116', 'type': 'Colorectal cancer cell line'}, 'GSM2652426': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652427': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652424': {'with': 'DMSO for 12 hours followed by DMSO for 4 hours', 'line': 'HCT-116', 'type': 'Colorectal cancer cell line'}, 'GSM1709560': {'timepoint': '40 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM2049118': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2652428': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM2652429': {'status': 'osteosarcoma patient', 'chemotherapy': 'no', 'tissue': 'osteosarcoma bone; tumor', 'type': 'paraffin section FFPE', 'Sex': 'male'}, 'GSM1363529': {'grade': '0', 'alb': '31.4', 'tb': '74.7', 'individual': 'HCC-C14', 'alt': '197', 'pt': '15.8', 'hbvdna': '9000000', 'ca199': '27.1', 'hgb': '118', 'method': '0', 'ggt': '53.6', 'cea': '0.87', 'ast': '296', 'rna': 'Yes', 'db': '25.1', 'cirrhosis': '0', 'afp': '240.7', 'hbsag': '>240', 'organ': '0', 'gender': 'M', 'age': '59', 'ltx': 'B', 'tissue': \"HCC Non-recurrent Tumor's Adjacent Normal\", 'definitions': 'RFA=Radiofrequency ablation; VATS=Video-assisted thorascopic surgery; OLT=Orthotopic liver transplantation; AFP=Alpha-fetoprotein', 'glu': '5.46'}, 'GSM1709569': {'timepoint': '300 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1709568': {'timepoint': '180 min', 'line': 'MCF10a', 'genotype': 'PIK3CA H1047R', 'condition': 'EGF Stimulation + DMSO'}, 'GSM1534532': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534533': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534530': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534531': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534536': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534537': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534534': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534535': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534538': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM1534539': {'tissue': 'Hematopoietic', 'genotype': 'NPM1 WT FLT3 WT', 'diagnosis': 'Acute Myeloid Leukemia'}, 'GSM2573790': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573791': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2573792': {'tissue': 'Brain', 'type': 'Human glioblastoma cells', 'passage': 'in vitro for a long time'}, 'GSM2225768': {'tissue': 'pancreas'}, 'GSM2049119': {'tissue': 'liver', 'diagnosis': 'Tumor'}, 'GSM2225763': {'tissue': 'pancreas'}, 'GSM2225762': {'tissue': 'pancreas'}, 'GSM2225761': {'tissue': 'pancreas'}, 'GSM2225760': {'tissue': 'pancreas'}, 'GSM2225767': {'tissue': 'pancreas'}, 'GSM2225766': {'tissue': 'pancreas'}, 'GSM2225765': {'tissue': 'pancreas'}, 'GSM2225764': {'tissue': 'pancreas'}, 'GSM2474998': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'PEO14', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474999': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'PEO1C', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474994': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OVCAR8', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474995': {'subtype': 'clear cell', 'line': 'OVSH-1', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474996': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'PEA1', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474997': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'PEA2', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474990': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OVCAR420', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474991': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OVCAR432', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474992': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OVCAR433', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM2474993': {'subtype': 'ovarian serous adenocarcinoma', 'line': 'OVCAR5', 'type': 'high-grade serous ovarian cancer (HGSC) cell line'}, 'GSM1480812': {'type': 'PBMCs', 'treatment': 'HSV-1'}, 'GSM2816083': {'line': 'H9'}, 'GSM1957507': {'tissue': 'Microdissected cortical-like ventricle from cerebral organoid', 'Stage': '58 days'}, 'GSM1289403': {'line': 'HeLa (Human cervical carcinoma cell line)', 'protocol': 'Untreated'}, 'GSM1289402': {'line': 'HeLa (Human cervical carcinoma cell line)', 'protocol': 'Untreated'}, 'GSM2616557': {'stimulation': 'Peanut', 'allergies': 'Peanut & Egg & Milk', 'type': 'blood; peripheral blood mononuclear cells (PBMCs)', 'id': '1403', 'subtype': 'CD154'}, 'GSM2042911': {'antibody': 'anti-H3K36me3 (Abcam, ab9050)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042910': {'antibody': 'anti-H3K36me3 (Abcam, ab9050)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042913': {'antibody': 'anti-JunD (Santa Cruz, sc-74)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042912': {'antibody': 'anti-H3K36me3 (Abcam, ab9050)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': '48hr'}, 'GSM2042915': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042914': {'antibody': 'anti-JunD (Santa Cruz, sc-74)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042917': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': '24hr'}, 'GSM2042916': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': '24hr'}, 'GSM2042919': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': '24hr'}, 'GSM2042918': {'antibody': 'N/A', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': '24hr'}, 'GSM1808015': {'tissue': 'Kidney'}, 'GSM2476749': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476748': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2476747': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476746': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476745': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM2476744': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476743': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476742': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476741': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2476740': {'type': 'T47D', 'mutation': 'Y537S', 'condition': 'Full Medium', 'treatment': 'none'}, 'GSM2680630': {'clone': 'CL1', 'passages': 'p10', 'type': 'hiPSCs', 'method': 'Sendai Virus', 'treatment': 'DMSO'}, 'GSM2680631': {'clone': 'CL1', 'passages': 'p10', 'type': 'hiPSCs', 'method': 'Sendai Virus', 'treatment': '0.2 mM Sodium Butyrate'}, 'GSM2058138': {'line': 'V410', 'tissue': 'colorectal cancer cell line'}, 'GSM2058135': {'line': 'V410', 'tissue': 'colorectal cancer cell line'}, 'GSM2199513': {'age': '28', 'tissue': 'Liver', 'bmi': '38.1'}, 'GSM2058131': {'line': 'V389', 'tissue': 'colorectal cancer cell line'}, 'GSM2058133': {'line': 'V389', 'tissue': 'colorectal cancer cell line'}, 'GSM1397344': {'subtype': 'Luminal B', 'tissue': 'breast cancer tumor', 'id': 'RHB001'}, 'GSM1397345': {'subtype': 'Luminal B', 'tissue': 'breast cancer tumor', 'id': 'RHB004'}, 'GSM1397346': {'subtype': 'TNB', 'tissue': 'breast cancer tumor', 'id': 'RHB003'}, 'GSM1397347': {'subtype': 'HER2', 'tissue': 'breast cancer tumor', 'id': 'RHB002'}, 'GSM2211698': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'arm', 'tissue': 'skin biopsy', 'id': 'patient2'}, 'GSM2211699': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'arm', 'tissue': 'skin biopsy', 'id': 'patient2'}, 'GSM3189208': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '3', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.710833', 'percentaligned': '0.929068949', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.769645', 'original': 'Case'}, 'GSM3189209': {'boca': 'No', 'years': '14', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '87', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'Yes', 'b': 'No', 'mediancvcoverage': '0.699426', 'percentaligned': '0.870207649', 'Sex': 'F', 'nl63': 'No', 'libcounts': '4.360544'}, 'GSM2211694': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient1'}, 'GSM2211695': {'status': 'psoriasis patient', 'type': 'uninvolved', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient1'}, 'GSM2211696': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'back', 'tissue': 'skin biopsy', 'id': 'patient2'}, 'GSM2211697': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'thigh', 'tissue': 'skin biopsy', 'id': 'patient2'}, 'GSM3189202': {'boca': 'Yes', 'years': '16', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '84', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.759361', 'percentaligned': '0.882081365', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.794183', 'original': 'Case'}, 'GSM2211691': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'arm', 'tissue': 'skin biopsy', 'id': 'patient1'}, 'GSM2211692': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'abdomen', 'tissue': 'skin biopsy', 'id': 'patient1'}, 'GSM2211693': {'status': 'psoriasis patient', 'type': 'psoriasis', 'part': 'back', 'tissue': 'skin biopsy', 'id': 'patient1'}, 'GSM1126809': {'type': 'tumor cells', 'library': '4sU RNA'}, 'GSM2425071': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425070': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425073': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425072': {'marker': 'KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425075': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425074': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425077': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425076': {'marker': 'SSEA4+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425079': {'marker': 'SSEA4-/KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2425078': {'marker': 'SSEA4-/KIT+', 'tissue': 'Testis', 'type': 'Spermatogonial Stem Cells'}, 'GSM2348823': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348820': {'samhd1': 'wildtype', 'media': 'standard media', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1603001': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603000': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603003': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603002': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603005': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603004': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603007': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603006': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603009': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1603008': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1602359': {'line': 'HeLa'}, 'GSM2175097': {'line': 'K562'}, 'GSM1618320': {'conditions': 'TH1', 'type': 'peripheral blood mononuclear', 'fraction': 'Total RNA'}, 'GSM1618321': {'conditions': 'TH2', 'type': 'peripheral blood mononuclear', 'fraction': 'Total RNA'}, 'GSM1618322': {'conditions': 'TH17', 'type': 'peripheral blood mononuclear', 'fraction': 'Total RNA'}, 'GSM1808719': {'line': 'Huh7-C'}, 'GSM2348821': {'samhd1': 'wildtype', 'media': 'conditioned media with LPS', 'batch': 'WTB', 'hours': '8', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2689372': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689373': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689370': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689371': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689376': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689377': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689374': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689375': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689378': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM2689379': {'immunophenotype': 'Lin-CD34+CD38-CD90-/loCD45RA+CD10+', 'type': 'Cord blood CD34+ haemopoietic stem and progenitor cells', 'populations': 'MLP'}, 'GSM1289409': {'line': 'K562 (Human erythromyeloblastoid leukemia cell line)', 'protocol': 'RNaseR treated'}, 'GSM2175099': {'line': 'K562'}, 'GSM2175098': {'line': 'K562'}, 'GSM1323692': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2B', 'site': 'Atlanta VA Medical Center', 'prepsa': '5.72', 'reads': '39,654,268', 'tissue': 'prostate', 'u': '76.8', 'mapped': '78.4%', 'id': 'VA-PC-99-79', 'bcr': '0'}, 'GSM1289408': {'line': 'K562 (Human erythromyeloblastoid leukemia cell line)', 'protocol': 'RNaseR treated'}, 'GSM1357242': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357245': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM1357244': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4+, CXCR3- T cells', 'disease': 'Healthy'}, 'GSM2047431': {'well': 'A12', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047430': {'well': 'A11', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047433': {'well': 'B02', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047432': {'well': 'B01', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047435': {'well': 'B04', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047434': {'well': 'B03', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047437': {'well': 'B06', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047436': {'well': 'B05', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047439': {'well': 'B08', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM2047438': {'well': 'B07', 'individual': 'NA19098', 'replicate': 'r2', 'type': 'LCL-derived iPSC'}, 'GSM1357246': {'type': 'CD3+, CD4+, CCR7+, CD45RA+, CCR6+, CCR4-, CXCR3+ T cells', 'disease': 'Latent tuberculosis infection (LTBI)'}, 'GSM1603010': {'date': '2014-04-02', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM1345826': {'type': 'osteoblastic cell'}, 'GSM1603011': {'date': '2013-06-18', 'type': 'sperm', 'site': 'Serono - Toronto'}, 'GSM2242919': {'line': 'A375', 'replicate': '4'}, 'GSM2242918': {'line': 'A375', 'replicate': '4'}, 'GSM2242917': {'line': 'A375', 'replicate': '4'}, 'GSM2242916': {'line': 'A375', 'replicate': '4'}, 'GSM2242915': {'line': 'A375', 'replicate': '4'}, 'GSM2242914': {'line': 'A375', 'replicate': '4'}, 'GSM2242913': {'line': 'A375', 'replicate': '4'}, 'GSM2242912': {'line': 'A375', 'replicate': '4'}, 'GSM2242911': {'line': 'A375', 'replicate': '4'}, 'GSM2242910': {'line': 'A375', 'replicate': '4'}, 'GSM3594294': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Apr11'}, 'GSM1345822': {'type': 'osteoblastic cell'}, 'GSM1345823': {'type': 'osteoblastic cell'}, 'GSM1836609': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836608': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836605': {'expression_construct': 'FLAG', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'FLAGonly-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1291172': {'gender': 'Female', 'state': 'SLE patient', 'type': 'primary monocytes'}, 'GSM1836607': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836606': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U1'}, 'GSM1836601': {'expression_construct': 'FLAG-TOE1DE', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'DEaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836600': {'expression_construct': 'FLAG-TOE1WT', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback-siCaf1z', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836603': {'expression_construct': 'FLAG-TOE1DE', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'DEaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1836602': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U4'}, 'GSM1980173': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1980172': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM2840489': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840488': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840485': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840484': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840487': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840486': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840481': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840480': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840483': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2840482': {'subtype': 'TEM', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7-', 'history': 'DENV positive'}, 'GSM2434051': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2805866': {'genotype': 'WT', 'antibody': 'Vivian Bardwell Lab; University of Minnesota, Cat# anti-BCOR, RRID:AB_2716801', 'media': 'mTeSR (StemCell Technolgies)', 'strategy': 'Covaris S220', 'supplement': 'NA', 'type': 'H1 hESC'}, 'GSM2561448': {'subtype': 'human embroynic neuron cells (N)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2266029': {'type': 'hPGC like cell derived from human embryonic stem cell'}, 'GSM2266028': {'type': 'hPGC like cell derived from human embryonic stem cell'}, 'GSM2561443': {'subtype': 'human embroynic intermediate progenitor cell (IPC)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561442': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561441': {'subtype': 'human embroynic radial glial cell (RG)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2266026': {'type': 'human embryonic stem cell', 'condition': 'hPSC medium containing inhibitor(i)s (GSK3i, ERKi, p38i, JNKi)4 on MEF'}, 'GSM2561447': {'subtype': 'human embroynic neuron cells (N)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561446': {'subtype': 'human embroynic neuron cells (N)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561445': {'subtype': 'human embroynic neuron cells (N)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2561444': {'subtype': 'human embroynic intermediate progenitor cell (IPC)', 'type': 'single cell sequencing', 'Stage': 'GW16', 'tissue': 'prenatal human brain', 'stage': 'embryo'}, 'GSM2434050': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1066119': {'tissue': 'bone marrow', 'genotype': 'SF3B1 somatic heterozygote, H666Q', 'disease': 'RARS-T, >15% ring sideroblasts'}, 'GSM2434053': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1520928': {'vendor': 'Santa Cruz', 'fixation': 'EGS+ FA', 'type': 'human acute lymphocytic leukemia (ALL) cell line', 'variation': 'vector control', 'treatment': 'pMY56 (control)', 'line': 'CCRF-CEM', 'antibody': 'Pol II'}, 'GSM1520929': {'vendor': 'Santa Cruz', 'fixation': 'EGS+ FA', 'type': 'human acute lymphocytic leukemia (ALL) cell line', 'variation': 'PAF1 knockdown', 'treatment': 'pMY137 (PAF1 shRNA #2)', 'line': 'CCRF-CEM', 'antibody': 'Pol II'}, 'GSM1579147': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579148': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1579149': {'origin': 'cells in vitro', 'line': 'A375', 'type': 'melanoma cell line', 'treatment': 'vehicle'}, 'GSM1520926': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute lymphocytic leukemia (ALL) cell line', 'variation': 'vector control', 'treatment': 'pMY56 (control)', 'line': 'CCRF-CEM', 'antibody': 'PAF1'}, 'GSM1520927': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute lymphocytic leukemia (ALL) cell line', 'variation': 'PAF1 knockdown', 'treatment': 'pMY137 (PAF1 shRNA #2)', 'line': 'CCRF-CEM', 'antibody': 'PAF1'}, 'GSM1520920': {'vendor': 'Santa Cruz', 'fixation': 'DMA + FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'vector control', 'treatment': 'pMY56 (control)', 'line': 'THP1', 'antibody': 'CDK9'}, 'GSM1520921': {'vendor': 'Santa Cruz', 'fixation': 'DMA + FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'PAF1 knockdown', 'treatment': 'pMY136 (PAF1 shRNA #1)', 'line': 'THP1', 'antibody': 'CDK9'}, 'GSM1520922': {'vendor': 'Millipore', 'antibody': 'Pol II', 'line': 'THP1', 'type': 'human acute monocytic leukemia (AML) cell line', 'fixation': 'DMA + FA'}, 'GSM1520923': {'vendor': 'Santa Cruz', 'antibody': 'Pol II', 'line': 'THP1', 'type': 'human acute monocytic leukemia (AML) cell line', 'fixation': 'DMA + FA'}, 'GSM2434052': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2840229': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840228': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840221': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840220': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840223': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840222': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840225': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2469543': {'status': 'resistant', 'gender': 'male', 'individual': 'r03', 'type': 'monocyte-derived dendritic cells', 'treatment': 'non-infected'}, 'GSM2840227': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840226': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject11', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2536061': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10651', 'samplename': '1D_T1D2-REDRAW _C38', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34751', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10651', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C38'}, 'GSM2536060': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10649', 'samplename': '1_T1D2-REDRAW _C20', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34749', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10649', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C20'}, 'GSM2536063': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10653', 'samplename': '1_T1D2-REDRAW _C13', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34753', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10653', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C13'}, 'GSM2469542': {'status': 'resistant', 'gender': 'male', 'individual': 'r03', 'type': 'monocyte-derived dendritic cells', 'treatment': 'infected'}, 'GSM2536065': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10656', 'samplename': '1D_T1D2-REDRAW _C33', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34756', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10656', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C33'}, 'GSM2536064': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10654', 'samplename': '1D_T1D2-REDRAW _C19', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34754', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10654', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C19'}, 'GSM2536067': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10658', 'samplename': '1_T1D2-REDRAW _C49', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34758', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10658', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C49'}, 'GSM2536066': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10657', 'samplename': '1_T1D2-REDRAW _C45', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34757', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10657', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C45'}, 'GSM2536069': {'status': 'T1D', 'lane': '2,3', 'seqsite': 'BRI', 'samplelabel': 'lib10661', 'samplename': '1D_T1D2-REDRAW _C75', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34761', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell +debris', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10661', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C75'}, 'GSM2536068': {'status': 'T1D', 'lane': '3,2', 'seqsite': 'BRI', 'samplelabel': 'lib10660', 'samplename': '1_T1D2-REDRAW _C61', 'cdnasynthesis': 'C1+SMARTer v1', 'pid': 'T1D2', 'sampleID': 'S34760', 'numcellssorted': '1113', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Islet antigen-reactive CD4+ sorted T-cells', 'visit': '3', 'flowcellid': 'C81B3ANXX', 'c1plateid': '1771050089', 'libraryid': 'lib10660', 'projectid': 'P91-15', 'runchemistry': 'HiSeq SBS Kit v4', 'c1capturesite': 'C61'}, 'GSM2434055': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1522568': {'line': 'GBM1A', 'type': 'glioblastoma cell line'}, 'GSM1522569': {'line': 'GBM1B', 'type': 'glioblastoma cell line'}, 'GSM2434054': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1876043': {'treatment': 'TGF-B1'}, 'GSM1876042': {'treatment': 'Serum-free control'}, 'GSM1876041': {'treatment': 'PDGF-BB'}, 'GSM1876040': {'treatment': 'TGF-B1'}, 'GSM1489562': {'point': 'pre-training period 2', 'gender': 'male', 'ststus': 'untrained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '12U3'}, 'GSM1489563': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'right leg', 'id': '12U4'}, 'GSM1489560': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '12T4'}, 'GSM1876044': {'treatment': 'PDGF-BB'}, 'GSM1489568': {'point': 'post-training period 2', 'gender': 'male', 'ststus': 'trained', 'tissue': 'skeletal muscle', 'location': 'left leg', 'id': '13U4'}, 'GSM2362589': {'line': 'HEK293'}, 'GSM2665811': {'age': 'Day 175', 'well': 'H9', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000081'}, 'GSM2665810': {'age': 'Day 175', 'well': 'D2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665813': {'age': 'Day 175', 'well': 'G2', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665812': {'age': 'Day 175', 'well': 'C3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665815': {'age': 'Day 175', 'well': 'C2', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665814': {'age': 'Day 175', 'well': 'A3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665817': {'age': 'Day 175', 'well': 'H10', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665816': {'age': 'Day 175', 'well': 'B3', 'cluster': '1', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665819': {'age': 'Day 175', 'well': 'A9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2665818': {'age': 'Day 175', 'well': 'F9', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM1937993': {'line': 'HEK293T', 'transfection': '48 hours'}, 'GSM1937995': {'line': 'HEK293T', 'transfection': '48 hours'}, 'GSM2325977': {'type': 'Human embryonic stem cell'}, 'GSM1937997': {'line': 'HEK293T', 'transfection': '48 hours'}, 'GSM1937996': {'line': 'HEK293T', 'transfection': '48 hours'}, 'GSM2712717': {'condition': 'latent TB infection'}, 'GSM2712716': {'condition': 'latent TB infection'}, 'GSM2712715': {'condition': 'latent TB infection'}, 'GSM2251381': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2712713': {'condition': 'latent TB infection'}, 'GSM2712712': {'condition': 'latent TB infection'}, 'GSM2712711': {'condition': 'latent TB infection'}, 'GSM2712710': {'condition': 'latent TB infection'}, 'GSM2325971': {'type': 'Human embryonic stem cell'}, 'GSM2712719': {'condition': 'latent TB infection'}, 'GSM2325970': {'type': 'Human embryonic stem cell'}, 'GSM2325973': {'type': 'Human embryonic stem cell'}, 'GSM2251385': {'type': 'B cells', 'condition': 'Tumor', 'patient_id': 'patient_1'}, 'GSM2088096': {'status': 'Normal', 'ratio': '1.447605248', 'point': 't1', 'age': '63.426', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Normal', 'years': '37', 'alignments': '59937194', 'id': 'Patient_P28', 'alignment': '36717493'}, 'GSM2088097': {'status': 'Dysplasia', 'ratio': '1.608652593', 'point': 't1', 'age': '59.562', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'years': '40', 'alignments': '79221940', 'id': 'Patient_P18', 'alignment': '48786382'}, 'GSM2088094': {'status': 'Dysplasia', 'ratio': '1.93178038', 'point': 't1', 'age': '52.349', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'years': '65', 'alignments': '76826406', 'id': 'Patient_P1', 'alignment': '47525739'}, 'GSM2088095': {'status': 'Dysplasia', 'ratio': '1.535073669', 'point': 't1', 'age': '64.986', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Severe dysplasia', 'years': '70', 'alignments': '63424972', 'id': 'Patient_P2', 'alignment': '39450889'}, 'GSM2088092': {'status': 'Dysplasia', 'ratio': '1.68679687', 'point': 't1', 'age': '56.818', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '78', 'alignments': '64874648', 'id': 'Patient_P22', 'alignment': '39902086'}, 'GSM2088093': {'status': 'Normal', 'ratio': '1.790288425', 'point': 't1', 'age': '53.371', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Metaplasia', 'years': '52', 'alignments': '63589906', 'id': 'Patient_P17', 'alignment': '39411587'}, 'GSM2088090': {'status': 'Dysplasia', 'ratio': '1.718401626', 'point': 't1', 'age': '49.378', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Mild dysplasia', 'years': '31', 'alignments': '67028984', 'id': 'Patient_P7', 'alignment': '40982538'}, 'GSM2088091': {'status': 'Dysplasia', 'ratio': '2.024295097', 'point': 't2', 'age': '52.237', 'Sex': 'Female', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '28', 'alignments': '69029170', 'id': 'Patient_P21', 'alignment': '42437705'}, 'GSM2088098': {'status': 'Dysplasia', 'ratio': '1.725799416', 'point': 't1', 'age': '53.666', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '0', 'alignments': '72382338', 'id': 'Patient_P10', 'alignment': '44510151'}, 'GSM2088099': {'status': 'Dysplasia', 'ratio': '1.97808916', 'point': 't1', 'age': '62.489', 'Sex': 'Male', 'content': '49.49', 'tissue': 'Bronchial brushing', 'histology': 'Moderate dysplasia', 'years': '60', 'alignments': '70273660', 'id': 'Patient_P16', 'alignment': '43491017'}, 'GSM3579142': {'line': 'U251', 'type': 'glioma', 'genotype': 'HOTAIR regulatory element KO'}, 'GSM3579143': {'line': 'U251', 'type': 'glioma', 'genotype': 'HOTAIR regulatory element KO'}, 'GSM3579140': {'line': 'U251', 'type': 'glioma', 'genotype': 'HOTAIR regulatory element KO'}, 'GSM3579141': {'line': 'U251', 'type': 'glioma', 'genotype': 'HOTAIR regulatory element KO'}, 'GSM2671238': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1981189': {'passages': 'd30', 'type': 'hiPSC-CM d30'}, 'GSM3579144': {'line': 'U251', 'type': 'glioma', 'genotype': 'HOTAIR regulatory element KO'}, 'GSM3579145': {'line': 'U251', 'type': 'glioma', 'genotype': 'WT'}, 'GSM2671234': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671235': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671236': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671237': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671230': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671231': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671232': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM2671233': {'line': 'MCF7', 'passage': 'between 4-14 for all experiments'}, 'GSM1326568': {'group': 'Cap analog Luciferase', 'linker': 'NEB+Ext', 'type': 'HeLa cells'}, 'GSM1326569': {'group': 'Polysome Control', 'linker': 'NEB+Ext', 'type': 'Jurkat cells'}, 'GSM2303207': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2303206': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303205': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303204': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Stellate', 'id': 'ACIW009'}, 'GSM2303203': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303202': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Gamma/PP', 'id': 'ACIW009'}, 'GSM2303201': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM2303200': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Alpha', 'id': 'ACIW009'}, 'GSM1380854': {'type': 'Primary fibroblast'}, 'GSM2303209': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACIW009'}, 'GSM2303208': {'race': 'White', 'age': '55', 'bmi': '29.8', 'disease': 'Type 2 Diabetic', 'Sex': 'Female', 'tissue': 'Pancreatic Islet', 'type': 'Ductal', 'id': 'ACIW009'}, 'GSM2302154': {'timepoint': 'Pre', 'id': '68', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302155': {'timepoint': 'Post', 'id': '68', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302156': {'timepoint': 'Pre', 'id': '69', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302157': {'timepoint': 'Post', 'id': '69', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Stable Disease'}, 'GSM2302150': {'timepoint': 'Pre', 'id': '66', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302151': {'timepoint': 'Post', 'id': '66', 'arm': 'Placebo', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302152': {'timepoint': 'Pre', 'id': '67', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2302153': {'timepoint': 'Post', 'id': '67', 'arm': 'Myo-Inositol', 'state': 'bronchial dysplasia', 'type': 'Cytologically normal bronchial airway epithelial cells', 'response': 'Complete Response'}, 'GSM2459032': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.75'}, 'GSM2459033': {'complication': 'yes', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.83'}, 'GSM2459030': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.17'}, 'GSM2459031': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '15.42'}, 'GSM2459036': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.58'}, 'GSM2459037': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '5.92'}, 'GSM2459034': {'complication': 'yes', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '12.50'}, 'GSM2459035': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.42'}, 'GSM2459038': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.67'}, 'GSM2459039': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.67'}, 'GSM2458927': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.83'}, 'GSM2458926': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '7.33'}, 'GSM2458925': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.17'}, 'GSM2458924': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.83'}, 'GSM2458923': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.42'}, 'GSM2458922': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '8.92'}, 'GSM2458921': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.50'}, 'GSM2458920': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '7.92'}, 'GSM1389729': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM1389728': {'tissue': 'adipose', 'phenotype': 'non-functioning pituitary adenoma'}, 'GSM2458929': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '16.08'}, 'GSM2458928': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '14.92'}, 'GSM2147928': {'patient': 'P600', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147929': {'patient': 'P600', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147920': {'patient': 'P511', 'age': '38', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147921': {'patient': 'P511', 'age': '38', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147922': {'patient': 'P511', 'age': '38', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '8mo', 'ethnicity': 'Caucasian'}, 'GSM2147923': {'patient': 'P512', 'age': '42', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147924': {'patient': 'P513', 'age': '59', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147925': {'patient': 'P513', 'age': '59', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147926': {'patient': 'P427', 'age': '30', 'Sex': 'male', 'prognosis': 'Healthy', 'tissue': 'Ileal pouch', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2147927': {'patient': 'P600', 'age': 'missing', 'Sex': 'female', 'prognosis': 'Pouchitis', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2664391': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664390': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664393': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664392': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664395': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664394': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664397': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664396': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664399': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2664398': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2144477': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144476': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144475': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144474': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144473': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144472': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144471': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144470': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2747489': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': '5uM GW4065'}, 'GSM2747488': {'line': 'Human Episomal iPSC Line (Thermofisher, A18945)', 'type': 'iPSC-derived hepatocytes', 'genotype': 'NR1H4 homozygous R436H', 'treatment': '5uM GW4064'}, 'GSM2144479': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2144478': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2535830': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4081', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25040', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C70', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4081', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C70'}, 'GSM2932855': {'pucai': '65', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'unknown', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2932856': {'pucai': '70', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '10'}, 'GSM1862658': {'line': 'BeWo', 'condition': 'normal', 'Stage': '2h'}, 'GSM1892614': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892615': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892616': {'tissue': 'FFPE'}, 'GSM1892617': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892610': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892611': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892612': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM1892613': {'tissue': 'Snap-frozen tissue', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2816006': {'line': 'H9'}, 'GSM2816007': {'line': 'H9'}, 'GSM2816004': {'line': 'H9'}, 'GSM2932853': {'pucai': '70', 'score': '11', 'remission': 'No', 'calprotectin': 'â\\x89¥250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '16'}, 'GSM1892618': {'tissue': 'FFPE'}, 'GSM1892619': {'tissue': 'FFPE', 'antibody': 'H3K4me2 (Millipore, 07-030)'}, 'GSM2816000': {'line': 'H9'}, 'GSM2816001': {'line': 'H9'}, 'GSM847561': {'line': 'K562', 'expression': 'no shRNA expression', 'treatment': 'Puromycin'}, 'GSM847562': {'line': 'K562', 'expression': 'expressing shRNA targeting EGR1', 'treatment': 'Puromycin, doxycycline'}, 'GSM847563': {'line': 'K562', 'expression': 'no shRNA expression', 'treatment': 'Puromycin'}, 'GSM847564': {'line': 'K562', 'expression': 'expressing shRNA targeting EGR1', 'treatment': 'Puromycin, doxycycline'}, 'GSM847565': {'line': 'K562', 'expression': 'no shRNA expression', 'treatment': 'Puromycin'}, 'GSM847566': {'line': 'K562', 'expression': 'expressing shRNA targeting ATF3', 'treatment': 'Puromycin, doxycycline'}, 'GSM2027313': {'tissue': 'Blood', 'type': 'BDCA2+CD2+ pDCs', 'id': '1005', 'point': 'Steady state'}, 'GSM847568': {'line': 'K562', 'expression': 'expressing shRNA targeting ATF3', 'treatment': 'Puromycin, doxycycline'}, 'GSM2807413': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2295854': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '18 week gestation'}, 'GSM2807411': {'tissue': 'Normal liver', 'type': 'normal'}, 'GSM2027316': {'tissue': 'Blood', 'type': 'BDCA2+CD2- pDCs', 'id': '1006', 'point': 'Steady state'}, 'GSM2807410': {'tissue': 'Hepatoblastoma', 'type': 'tumour'}, 'GSM2932859': {'pucai': '45', 'score': '3', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Female', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '12'}, 'GSM2027314': {'tissue': 'Blood', 'type': 'CD1c+ DCs', 'id': '1006', 'point': 'Steady state'}, 'GSM2027315': {'tissue': 'Blood', 'type': 'CD141+ DCs', 'id': '1006', 'point': 'Steady state'}, 'GSM1113324': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 1 post-vaccine'}, 'GSM1616933': {'classification': 'NA', 'disease_stage': 'NA', 'age': '52', 'disease': 'Normal, Hartmann reversal after colon cancer', 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616932': {'classification': 'NA', 'disease_stage': 'NA', 'age': '53', 'disease': 'Normal', 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616931': {'classification': 'A2L1B3', 'disease_stage': 'B3/penetrating', 'age': '28', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616930': {'classification': 'A2L3B2', 'disease_stage': 'B2/stricturing', 'age': '76', 'disease': \"Crohn's Disease\", 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616937': {'classification': 'NA', 'disease_stage': 'NA', 'age': '44', 'disease': 'Normal, Colon cancer', 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616936': {'classification': 'NA', 'disease_stage': 'NA', 'age': '82', 'disease': 'Normal, Colon cancer', 'inflamed': 'No', 'Sex': 'female'}, 'GSM1616935': {'classification': 'NA', 'disease_stage': 'NA', 'age': '70', 'disease': 'Normal, diverticulitis', 'inflamed': 'No', 'Sex': 'male'}, 'GSM1616934': {'classification': 'NA', 'disease_stage': 'NA', 'age': '60', 'disease': 'Normal, diverticulitis', 'inflamed': 'No', 'Sex': 'female'}, 'GSM1113325': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 2 post-vaccine'}, 'GSM1616938': {'classification': 'NA', 'disease_stage': 'NA', 'age': '41', 'disease': 'Normal, colonic inertia, TI submucosal hemorrhage (but looked inflamed on macro)', 'inflamed': 'No', 'Sex': 'female'}, 'GSM1163011': {'patient': 'Disease_K4', 'gender': 'F', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Culture/DMSO', 'id': '6'}, 'GSM1163010': {'patient': 'Disease_K4', 'gender': 'F', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Untreated', 'id': '5'}, 'GSM1163013': {'patient': 'Disease_K4', 'gender': 'F', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Antagonist', 'id': '8'}, 'GSM1163012': {'patient': 'Disease_K4', 'gender': 'F', 'age': '56', 'tissue': 'Nonlesion', 'treatment': 'Agonist', 'id': '7'}, 'GSM1163015': {'patient': 'Disease_K5', 'gender': 'M', 'age': '30', 'tissue': 'Lesion', 'treatment': 'Culture/DMSO', 'id': '2'}, 'GSM1163014': {'patient': 'Disease_K5', 'gender': 'M', 'age': '30', 'tissue': 'Lesion', 'treatment': 'Untreated', 'id': '1'}, 'GSM1163017': {'patient': 'Disease_K5', 'gender': 'M', 'age': '30', 'tissue': 'Lesion', 'treatment': 'Antagonist', 'id': '4'}, 'GSM1163016': {'patient': 'Disease_K5', 'gender': 'M', 'age': '30', 'tissue': 'Lesion', 'treatment': 'Agonist', 'id': '3'}, 'GSM1163019': {'patient': 'Disease_K5', 'gender': 'M', 'age': '30', 'tissue': 'Nonlesion', 'treatment': 'Culture/DMSO', 'id': '6'}, 'GSM1163018': {'patient': 'Disease_K5', 'gender': 'M', 'age': '30', 'tissue': 'Nonlesion', 'treatment': 'Untreated', 'id': '5'}, 'GSM1113326': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 3 post-vaccine'}, 'GSM2748330': {'gsc': '4121', 'infection': 'ZIKV-Brazil/Dakar strains'}, 'GSM2312021': {'culture': '12', 'line': 'DCX+'}, 'GSM2312020': {'culture': '12', 'line': 'DCX+'}, 'GSM2312023': {'culture': '12', 'line': 'DCX+'}, 'GSM2312022': {'culture': '12', 'line': 'DCX+'}, 'GSM2312025': {'culture': '12', 'line': 'DCX+'}, 'GSM2312024': {'culture': '12', 'line': 'DCX+'}, 'GSM2312027': {'culture': '12', 'line': 'DCX+'}, 'GSM2312026': {'culture': '12', 'line': 'DCX+'}, 'GSM2312029': {'culture': '12', 'line': 'DCX+'}, 'GSM2312028': {'culture': '12', 'line': 'DCX+'}, 'GSM1113327': {'type': 'circulating B cells', 'id': 'T13', 'point': 'Day 4 post-vaccine'}, 'GSM1843478': {'line': 'HEK293T', 'fraction': 'AGO-associated (20-25 nt)'}, 'GSM1843472': {'status': 'wild type', 'down': 'NA', 'type': 'induced pluripotent stem cells'}, 'GSM1843473': {'status': 'mut', 'down': 'NA', 'type': 'induced pluripotent stem cells'}, 'GSM1843470': {'status': 'mut', 'down': 'NA', 'type': 'fibroblast'}, 'GSM1843471': {'status': 'wild type', 'down': 'NA', 'type': 'induced pluripotent stem cells'}, 'GSM1843476': {'status': 'NA', 'down': 'Knock down', 'type': 'HEK 293'}, 'GSM1843477': {'line': 'HEK293T', 'fraction': 'AGO-associated (50-80 nt)'}, 'GSM1843474': {'status': 'mut', 'down': 'NA', 'type': 'induced pluripotent stem cells'}, 'GSM1843475': {'status': 'NA', 'down': 'control', 'type': 'HEK 293'}, 'GSM2626969': {'origin': 'pancreas', 'patient_id': '19', 'type': 'primary', 'tumor_id': '19'}, 'GSM2072038': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gGFP-1', 'treatment': 'DMSO'}, 'GSM1414948': {'region': 'BA45', 'identifier': '1581', 'age': '42', 'Sex': 'M'}, 'GSM1414949': {'region': 'BA21', 'identifier': '1905', 'age': '33', 'Sex': 'M'}, 'GSM1113320': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 8 post-vaccine'}, 'GSM2072031': {'duration': '24 hours', 'line': 'A375', 'grna': 'gCIC-1', 'treatment': '1 nM Trametinib'}, 'GSM2072030': {'duration': '24 hours', 'line': 'A375', 'grna': 'gCIC-1', 'treatment': 'DMSO'}, 'GSM2072033': {'duration': '24 hours', 'line': 'A375', 'grna': 'gCIC-2', 'treatment': 'DMSO'}, 'GSM2072032': {'duration': '24 hours', 'line': 'A375', 'grna': 'gCIC-1', 'treatment': '1 nM Trametinib'}, 'GSM2072035': {'duration': '24 hours', 'line': 'A375', 'grna': 'gCIC-2', 'treatment': '1 nM Trametinib'}, 'GSM2072034': {'duration': '24 hours', 'line': 'A375', 'grna': 'gCIC-2', 'treatment': 'DMSO'}, 'GSM2072037': {'duration': '24 hours', 'line': 'CALU1', 'grna': 'gGFP-1', 'treatment': 'DMSO'}, 'GSM1574124': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '26', 'treatment': 'none'}, 'GSM1216762': {'gender': 'Female', 'age': '61', 'tissue': 'pancreatic islets', 'birth': '1948', 'bmi': '26.1'}, 'GSM1574129': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '30', 'treatment': 'none'}, 'GSM1113321': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 9 post-vaccine'}, 'GSM1216761': {'gender': 'Male', 'age': '55', 'tissue': 'pancreatic islets', 'birth': '1954', 'bmi': '29'}, 'GSM1216766': {'gender': 'Male', 'age': '55', 'bmi': '28.4', 'hba1c': '5.8', 'tissue': 'pancreatic islets', 'birth': '1954'}, 'GSM1216767': {'gender': 'Male', 'age': '32', 'bmi': '26', 'hba1c': '5.5', 'tissue': 'pancreatic islets', 'birth': '1977'}, 'GSM1216764': {'gender': 'Male', 'age': '65', 'tissue': 'pancreatic islets', 'birth': '1944', 'bmi': '26.8'}, 'GSM1574128': {'type': 'fibroblasts', 'line': 'HFF', 'doublings': '30', 'treatment': 'none'}, 'GSM1216768': {'gender': 'Male', 'age': '62', 'bmi': '24.7', 'hba1c': '4.6', 'tissue': 'pancreatic islets', 'birth': '1947'}, 'GSM1216769': {'gender': 'Male', 'age': '58', 'bmi': '23.9', 'hba1c': '6.1', 'tissue': 'pancreatic islets', 'birth': '1951'}, 'GSM3020998': {'donor': 'Donor 1', 'tissue': 'Monocyte-derived macrophages', 'condition': 'Butyrate'}, 'GSM2290622': {'type': 'Definitive Endoderm'}, 'GSM2840408': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1113322': {'type': 'circulating B cells', 'id': 'T12', 'point': 'Day 10 post-vaccine'}, 'GSM2632591': {'age': '67', 'subject': 'P4', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM3271576': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, DMSO for 7d'}, 'GSM3271577': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d, DMSO for 7d'}, 'GSM2588109': {'expression': 'MYOD Y30F', 'type': 'Skin fibroblasts', 'isolation': 'passage High 45'}, 'GSM2588108': {'expression': 'MYOD WT', 'type': 'Skin fibroblasts', 'isolation': 'passage High 45'}, 'GSM3271572': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 14d'}, 'GSM3271573': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 14d'}, 'GSM3271570': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d'}, 'GSM3271571': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 7d'}, 'GSM3586672': {'origin': 'ABC', 'pfstt': '277', 'pfscs': '1', 'region': 'Western Europe', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '472', 'cycles': '6', 'oscs': '1'}, 'GSM3586673': {'pfstt': '1247', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1261', 'cycles': '6', 'oscs': '0'}, 'GSM3586670': {'origin': 'GCB', 'pfstt': '1520', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low', 'Sex': 'Male', 'treatment': 'GA101', 'ostt': '1527', 'cycles': '6', 'oscs': '0'}, 'GSM3586671': {'origin': 'GCB', 'pfstt': '1509', 'pfscs': '0', 'region': 'Western Europe', 'ipi': 'Low-Intermediate', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1515', 'cycles': '6', 'oscs': '0'}, 'GSM2588107': {'expression': 'EMPTY VECTOR', 'type': 'Skin fibroblasts', 'isolation': 'passage High 45'}, 'GSM2588106': {'expression': 'MYOD Y30F', 'type': 'Skin fibroblasts', 'isolation': 'passage Low 12'}, 'GSM3271578': {'line': 'WM239A overexpressing BRAF-V600E', 'treatment': '500nM LGX818 for 21d'}, 'GSM2588104': {'expression': 'EMPTY VECTOR', 'type': 'Skin fibroblasts', 'isolation': 'passage Low 12'}, 'GSM1503439': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': '25 nM Silvestrol for 2 hours'}, 'GSM1503438': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': 'untreated'}, 'GSM1503435': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': '25 nM Silvestrol for 1 hour'}, 'GSM1503434': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': 'DMSO for 2 hours'}, 'GSM1503437': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': 'untreated'}, 'GSM1503436': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': '25 nM Silvestrol for 1 hour'}, 'GSM1503433': {'line': 'MDA-MB-231', 'type': 'Ductal breast carcinoma', 'treatment': 'DMSO for 1 hour'}, 'GSM2348612': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTA', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM1585219': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'l-leucine'}, 'GSM1585218': {'type': 'RNA-seq', 'genotype': 'esco2 mutant', 'treatment': 'd-leucine'}, 'GSM1585213': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1585212': {'type': 'Ribosomal profiling', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM1585211': {'type': 'Ribosomal profiling', 'genotype': 'wt', 'treatment': 'l-leucine'}, 'GSM1585210': {'type': 'Ribosomal profiling', 'genotype': 'wt', 'treatment': 'd-leucine'}, 'GSM1585217': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1585216': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM1585215': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'l-leucine'}, 'GSM1585214': {'type': 'RNA-seq', 'genotype': 'corrected', 'treatment': 'd-leucine'}, 'GSM2024988': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2024989': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2172018': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2024987': {'line': 'SH-SY5Y', 'type': 'neuroblastoma cell line'}, 'GSM2172019': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2157954': {'gender': 'M', 'age': '68', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2157955': {'gender': 'M', 'age': '68', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2157956': {'gender': 'M', 'age': '68', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2157957': {'gender': 'M', 'age': '68', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2157950': {'gender': 'M', 'age': '27', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 5', 'ethnicity': 'AA'}, 'GSM2157951': {'gender': 'M', 'age': '68', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2157952': {'gender': 'M', 'age': '68', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2157953': {'gender': 'M', 'age': '68', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 6', 'ethnicity': 'C'}, 'GSM2157958': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2157959': {'gender': 'M', 'age': '29', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 7', 'ethnicity': 'C'}, 'GSM2172017': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172010': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM1545068': {'type': 'normal gastric tissue', 'class': '--', 'location': 'Body'}, 'GSM2328359': {'followup': '5.85', 'grade': 'I', 'age': '72', 'Sex': 'Female', 'survstatus': '0', 'tissue': 'Lung', 'diagnosis': 'Lung Adenocarcinoma', 'differentiation': 'Well', 'type': 'NL', 'Stage': 'IB'}, 'GSM2172011': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2172012': {'donor_age': '21', 'inferred_cell_type': 'acinar', 'gender': 'male'}, 'GSM2172013': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2685260': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '3', 'subtype': 'AbBs from single cell', 'donor': 'Donor 1', 'protein': 'protein', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685261': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '4', 'subtype': 'AbBs from single cell', 'donor': 'Donor 1', 'protein': 'protein', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685262': {'acd27': 'no aCD27', 'type': 'CD8+ naive T cells', 'number': '5', 'subtype': 'AbBs from single cell', 'donor': 'Donor 2', 'protein': 'protein', 'with': 'aCD3 and aCD28', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685263': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '6', 'subtype': 'AbBs from single cell', 'donor': 'Donor 2', 'protein': 'protein', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685264': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '7', 'subtype': 'AbBs from single cell', 'donor': 'Donor 2', 'protein': 'protein', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685265': {'acd27': 'no aCD27', 'type': 'CD8+ naive T cells', 'number': '8', 'subtype': 'AbBs from single cell', 'donor': 'Donor 3', 'protein': 'protein', 'with': 'aCD3 and aCD28', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685266': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '9', 'subtype': 'AbBs from single cell', 'donor': 'Donor 3', 'protein': 'protein', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM2685267': {'acd27': 'aCD27', 'type': 'CD8+ naive T cells', 'number': '10', 'subtype': 'AbBs from single cell', 'donor': 'Donor 3', 'protein': 'protein', 'with': 'aCD3, aCD28, and aCD27', 'condition': 'AbBs and Blocking buffer'}, 'GSM1937918': {'status': 'Neg', 'gender': 'M', 'stage': 'IVa'}, 'GSM2108341': {'stages': 'myoblast'}, 'GSM2108340': {'stages': 'myoblast'}, 'GSM2108343': {'stages': 'myoblast'}, 'GSM2108342': {'stages': 'myoblast'}, 'GSM2108345': {'stages': 'myoblast'}, 'GSM2108344': {'stages': 'myoblast'}, 'GSM2108347': {'stages': 'myoblast'}, 'GSM2108346': {'stages': 'myoblast'}, 'GSM485391': {'line': 'NA18861'}, 'GSM2108348': {'stages': 'myoblast'}, 'GSM1447406': {'activation': 'anti-CD3/CD28 beads, 48 hours'}, 'GSM1447405': {'activation': 'anti-CD3/CD28 beads, 48 hours'}, 'GSM1447404': {'activation': 'None'}, 'GSM1447403': {'activation': 'None'}, 'GSM1447402': {'activation': 'anti-CD3/CD28 beads, 48 hours'}, 'GSM1447401': {'activation': 'anti-CD3/CD28 beads, 48 hours'}, 'GSM1447400': {'activation': 'None'}, 'GSM2898798': {'line': 'NA18856', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898799': {'line': 'NA18858', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898794': {'line': 'NA18522', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898795': {'line': 'NA18852', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898796': {'line': 'NA18853', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898797': {'line': 'NA18855', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898790': {'line': 'NA18511', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898791': {'line': 'NA18517', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898792': {'line': 'NA18519', 'tissue': 'Induced pluripotent stem cell'}, 'GSM2898793': {'line': 'NA18520', 'tissue': 'Induced pluripotent stem cell'}, 'GSM1581019': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2451182': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2451183': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1581011': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581010': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581013': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581012': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM1581015': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM2451180': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1581017': {'condition': 'Case (PTSD)', 'point': 'Post-deployment'}, 'GSM1581016': {'condition': 'Case (PTSD risk)', 'point': 'Pre-deployment'}, 'GSM2105044': {'gender': 'Female', 'age': '2 Year old', 'batch': '2F', 'condition': 'Disomic'}, 'GSM2105047': {'gender': 'Female', 'age': '2 Year old', 'batch': '2F', 'condition': 'Disomic'}, 'GSM2549709': {'type': 'Pancreatic Cell Control'}, 'GSM2105042': {'gender': 'Male', 'age': '1 Year old', 'batch': '1F', 'condition': 'Disomic'}, 'GSM2549702': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM2451186': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2549701': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM2549706': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM2549707': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM2549704': {'type': 'Pancreatic ductal adenocarcinoma'}, 'GSM2451187': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2479796': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM1668429': {'with': '1,25(OH)2D3 treatment', 'type': 'skeletal muscle cells'}, 'GSM2451184': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1668420': {'with': 'ethanol', 'type': 'skeletal muscle cells'}, 'GSM1668421': {'with': '1,25(OH)2D3 treatment', 'type': 'skeletal muscle cells'}, 'GSM1668422': {'with': 'ethanol', 'type': 'skeletal muscle cells'}, 'GSM2451185': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2066449': {'type': 'PBMC', 'disease': 'Fibrodysplasia Ossificans Progressiva'}, 'GSM2066448': {'type': 'PBMC', 'disease': 'Fibrodysplasia Ossificans Progressiva'}, 'GSM1668426': {'with': 'ethanol', 'type': 'skeletal muscle cells'}, 'GSM1668427': {'with': '1,25(OH)2D3 treatment', 'type': 'skeletal muscle cells'}, 'GSM2532818': {'status': 'Healthy', 'donor': '5', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3'}, 'GSM2532819': {'status': 'Healthy', 'donor': '5', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3, ZA'}, 'GSM2532814': {'status': 'Healthy', 'donor': '3', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3'}, 'GSM2532815': {'status': 'Healthy', 'donor': '3', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3, ZA'}, 'GSM2532816': {'status': 'Healthy', 'donor': '4', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3'}, 'GSM2532817': {'status': 'Healthy', 'donor': '4', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3, ZA'}, 'GSM2532810': {'status': 'Healthy', 'donor': '1', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3'}, 'GSM2532811': {'status': 'Healthy', 'donor': '1', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3, ZA'}, 'GSM2532812': {'status': 'Healthy', 'donor': '2', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3'}, 'GSM2532813': {'status': 'Healthy', 'donor': '2', 'type': 'Sorted regulatory T-cells', 'treatment': 'IL-2, OKT3, ZA'}, 'GSM2194506': {'type': 'beta', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194507': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194504': {'type': 'dropped', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM1322936': {'subtype': 'ESS', 'tissue': 'soft tissue sarcoma', 'method': 'FFPE', 'source': 'Stanford Surgical'}, 'GSM2194502': {'type': 'pp', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194503': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194500': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194501': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194508': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM2194509': {'type': 'alpha', 'age': 'adult', 'tissue': 'pancreatic islets', 'health': 'T2D'}, 'GSM3104726': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Class switched memory B cell'}, 'GSM3104727': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Naive B cell'}, 'GSM3104724': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Normal B cell'}, 'GSM3104725': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Non class switched memory B cell'}, 'GSM3104722': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Class switched memory B cell'}, 'GSM3104723': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Naive B cell'}, 'GSM2565375': {'construction': 'PLATE-Seq', 'drug': '2,6-DIMETHOXYQUINONE'}, 'GSM3104721': {'tissue': 'Human Peripheral Blood', 'type': 'Normal healthy control', 'classification': 'Non class switched memory B cell'}, 'GSM3104728': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV Mutated CLL'}, 'GSM3104729': {'tissue': 'Human Peripheral Blood', 'type': 'Chronic lymphocytic leukemia', 'classification': 'IGHV unmutated CLL'}, 'GSM1022943': {'antibody': 'BRD4 [Abcam, Cat no. ab46199, Lot no. 613288]', 'type': 'CD4+ T cells', 'treatment': 'untreated'}, 'GSM2390858': {'disease': 'Healthy Control'}, 'GSM2390859': {'disease': 'Healthy Control'}, 'GSM2390856': {'disease': 'Healthy Control'}, 'GSM2390857': {'disease': 'Healthy Control'}, 'GSM2390854': {'disease': 'Healthy Control'}, 'GSM2390855': {'disease': 'Healthy Control'}, 'GSM2390852': {'disease': 'Healthy Control'}, 'GSM2390853': {'disease': 'Healthy Control'}, 'GSM2390850': {'disease': 'Healthy Control'}, 'GSM2390851': {'disease': 'Healthy Control'}, 'GSM1679709': {'death': '66', 'gender': 'male', 'study': 'P_30', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.41220447', 'sv3': '0.355889962', 'sv1': '-0.0515914497'}, 'GSM2439183': {'status': 'control; healthy', 'with': 'neuronal media for 2 days', 'type': 'iPSC derived NPC'}, 'GSM2439184': {'status': 'control; healthy', 'with': 'neuronal media for 2 days', 'type': 'iPSC derived NPC'}, 'GSM2439185': {'status': 'control; healthy', 'with': 'neuronal media for 2 days', 'type': 'iPSC derived NPC'}, 'GSM2439186': {'status': 'control; healthy', 'with': 'neuronal media for 2 days', 'type': 'iPSC derived NPC'}, 'GSM2439187': {'status': 'SCHIZOPHRENIA; SCZD', 'with': 'neuronal media for 2 days', 'type': 'iPSC derived NPC'}, 'GSM2439188': {'status': 'SCHIZOPHRENIA; SCZD', 'with': 'neuronal media for 2 days', 'type': 'iPSC derived NPC'}, 'GSM2439189': {'status': 'SCHIZOPHRENIA; SCZD', 'with': 'neuronal media for 2 days', 'type': 'iPSC derived NPC'}, 'GSM1679701': {'death': '64', 'gender': 'male', 'study': 'P_20', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.01639114', 'sv3': '-0.13594178', 'sv1': '0.4647410657'}, 'GSM1679700': {'death': '77', 'gender': 'male', 'study': 'P_19', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '0.05498849', 'sv3': '-0.255100208', 'sv1': '-0.1575656169'}, 'GSM1679707': {'gender': 'male', 'study': 'P_28', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '74'}, 'GSM1679706': {'death': '75', 'gender': 'male', 'study': 'P_27', 'tissue': 'brain (BA9 prefrontal cortex)', 'sv2': '-0.1233597', 'sv3': '-0.482172644', 'sv1': '-0.1683601219'}, 'GSM1679705': {'gender': 'male', 'study': 'P_26', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '85'}, 'GSM1679704': {'gender': 'male', 'study': 'P_23 - failed QC', 'tissue': 'brain (BA9 prefrontal cortex)', 'death': '80'}, 'GSM1833459': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '4 hours'}, 'GSM1833458': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '4 hours'}, 'GSM1833457': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '3 hours'}, 'GSM1833456': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '3 hours'}, 'GSM1833455': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '3 hours'}, 'GSM1833454': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '2 hours'}, 'GSM1833453': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '2 hours'}, 'GSM1833452': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '2 hours'}, 'GSM1833451': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '1 hour'}, 'GSM1833450': {'line': 'Jurkat', 'type': '4sU-labeled RNA', 'treatment': '1 hour'}, 'GSM1940188': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'vector control (for PU.1 depletion)'}, 'GSM1940189': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'vector control (for PU.1 depletion)'}, 'GSM2042898': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': 'ctrl'}, 'GSM2042899': {'antibody': 'anti-RNA Pol2 (Abcam, ab5408)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042894': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'DMSO', 'time': 'ctrl'}, 'GSM2042895': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': 'ctrl'}, 'GSM2042896': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'GW3965', 'time': 'ctrl'}, 'GSM2042897': {'antibody': 'none (input)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': 'ctrl'}, 'GSM2042890': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM1940185': {'with': '1 μM SAHA', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'PU.1 shRNA; PU.1 depletion'}, 'GSM2042892': {'antibody': 'anti-H3K27ac (Abcam, ab4729)', 'line': 'HT29', 'type': 'colorectal adenocarcinoma', 'agent': 'Rosiglitazone', 'time': '48hr'}, 'GSM1940187': {'with': '0.01% DMSO vehicle', 'line': 'K562', 'type': 'myelogenous leukemia cell line', 'treatment': '72 hours', 'variation': 'vector control (for PU.1 depletion)'}, 'GSM2359257': {'duration': '7D', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM', 'drug': 'Erlotinib'}, 'GSM2359256': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM', 'drug': 'Erlotinib'}, 'GSM2359255': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM', 'drug': 'Erlotinib'}, 'GSM2359254': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM', 'drug': 'Erlotinib'}, 'GSM2359253': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359252': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359251': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '0.1%', 'drug': 'DMSO'}, 'GSM2359250': {'duration': '48h', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM / 100nM', 'drug': 'Erlotinib / THZ1'}, 'GSM2359259': {'duration': '7D', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM', 'drug': 'Erlotinib'}, 'GSM2359258': {'duration': '7D', 'line': 'PC9', 'tissue': 'Lung', 'concentration': '1 uM', 'drug': 'Erlotinib'}, '5': {'code': '200'}, 'GSM1071305': {'type': 'endothelial cells', 'treatment': 'PR infected + Progesterone'}, 'GSM2544029': {'library_id': 'lib8339', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'BC6NRPANXX', 'phase': '3', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1608020': {'molecule': 'polyA RNA', 'line': 'Differentiated NT-ESC', 'type': 'Fibroblast'}, 'GSM2754779': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0796', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2355488': {'type': 'Human embryonic stem cells'}, 'GSM2355486': {'type': 'Human embryonic stem cells'}, 'GSM2355484': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM2754778': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_1147', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2355482': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM2355480': {'type': 'Cardiomyocytes differentiated from human embryonic stem cells'}, 'GSM2772496': {'group': 'invitro', 'disease': 'H', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'H-397', 'cdna': 'cDNA2043'}, 'GSM2772497': {'group': 'invitro', 'disease': 'H', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'H-398', 'cdna': 'cDNA2049'}, 'GSM2881622': {'gender': 'male', 'age': '58-year-old', 'tissue': 'Kidney', 'type': 'Renal cell carcinoma', 'line': '786-O'}, 'GSM2881623': {'gender': 'male', 'age': '58-year-old', 'tissue': 'Kidney', 'type': 'Renal cell carcinoma', 'line': '786-O'}, 'GSM2881620': {'gender': 'male', 'age': '58-year-old', 'tissue': 'Kidney', 'type': 'Renal cell carcinoma', 'line': '786-O'}, 'GSM2881621': {'gender': 'male', 'age': '58-year-old', 'tissue': 'Kidney', 'type': 'Renal cell carcinoma', 'line': '786-O'}, 'GSM1658374': {'ssea4': 'NA', 'line': 'Detroit 551', 'tra160': 'NA', 'gfp': 'NA', 'cd13': 'NA'}, 'GSM1863668': {'status': 'systemic lupus erythematosus (SLE)', 'tissue': 'whole blood', 'ro': 'high', 'ism': 'ISM_high'}, 'GSM1260316': {'line': 'Granta-519', 'treatment': 'control', 'genotype': 'parental'}, 'GSM1260317': {'line': 'Granta-519', 'treatment': 'SOX11 siRNA', 'genotype': 'SOX11 depletion'}, 'GSM1414491': {'tissue': 'Human ovarian PDX tumor'}, 'GSM1260318': {'line': 'Z138', 'treatment': 'control', 'genotype': 'parental'}, 'GSM1260319': {'line': 'Z138', 'treatment': 'SOX11 siRNA', 'genotype': 'SOX11 depletion'}, 'GSM2772498': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'SYS-177', 'cdna': 'cDNA2040'}, 'GSM2772499': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'SYS-180', 'cdna': 'cDNA2055'}, 'GSM2595208': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '61'}, 'GSM2595209': {'gender': 'Male', 'tissue': 'primary melanoma', 'ulceration': 'Yes', 'months': '17'}, 'GSM2058086': {'line': 'V866', 'tissue': 'colorectal cancer cell line', 'antibody': 'rabbit anti-H3K4me1 (Abcam #8895)'}, 'GSM2089699': {'state': 'colorectal cancer', 'line': 'SW48-p53_KO', 'treatment': 'untreated'}, 'GSM2089698': {'state': 'colorectal cancer', 'line': 'SW48-p53_WT', 'treatment': 'Doxorubicin at a final concentration of 300 nM for 16 hours'}, 'GSM2595202': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595203': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595200': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595201': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595206': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595207': {'gender': 'Female', 'tissue': 'primary melanoma', 'ulceration': 'No', 'months': '48'}, 'GSM2595204': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2595205': {'gender': 'Female', 'tissue': 'common acquired nevus', 'ulceration': 'n.a.', 'months': 'n.a.'}, 'GSM2055788': {'tissue': 'Liver'}, 'GSM2055789': {'tissue': 'Lung'}, 'GSM2055784': {'tissue': 'Stomach'}, 'GSM2055785': {'tissue': 'Brain'}, 'GSM2055786': {'tissue': 'Colon'}, 'GSM2055787': {'tissue': 'Heart'}, 'GSM2055780': {'tissue': 'Colon'}, 'GSM2411966': {'line': '4105B', 'tissue': 'Peripheral Blood Mononuclear Cells', 'type': 'Hepatocyte-Like Cell', 'genotype': 'Minor/Minor'}, 'GSM2055782': {'tissue': 'Liver'}, 'GSM2055783': {'tissue': 'Lung'}, 'GSM2324239': {'group': 'HighA422', 'type': 'PBMC', 'day': '56', 'subjectid': '5916'}, 'GSM2324238': {'group': 'HighA422', 'type': 'PBMC', 'day': '28', 'subjectid': '5916'}, 'GSM1395883': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395882': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395885': {'subtype': 'None', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395884': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395887': {'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM1395886': {'subtype': 'Neu', 'type': 'Glioblastoma', 'id': 'MGH31'}, 'GSM2324231': {'group': 'HighA422', 'type': 'PBMC', 'day': '0', 'subjectid': '5818'}, 'GSM2324230': {'group': 'HighA422', 'type': 'PBMC', 'day': '84', 'subjectid': '5515'}, 'GSM2324233': {'group': 'HighA422', 'type': 'PBMC', 'day': '28', 'subjectid': '5818'}, 'GSM2324232': {'group': 'HighA422', 'type': 'PBMC', 'day': '14', 'subjectid': '5818'}, 'GSM2324235': {'group': 'HighA422', 'type': 'PBMC', 'day': '84', 'subjectid': '5818'}, 'GSM2324234': {'group': 'HighA422', 'type': 'PBMC', 'day': '56', 'subjectid': '5818'}, 'GSM2324237': {'group': 'HighA422', 'type': 'PBMC', 'day': '14', 'subjectid': '5916'}, 'GSM2324236': {'group': 'HighA422', 'type': 'PBMC', 'day': '0', 'subjectid': '5916'}, 'GSM2361913': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361912': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361911': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361910': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705379': {'Sex': 'Male', 'rin': 'NA', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.83', 'pmi': '11'}, 'GSM2361916': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361915': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2361914': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705375': {'Sex': 'Female', 'rin': '3.1', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'DSM-IV major depressive disorder suicides (MDD-S)', 'ph': '6.95', 'pmi': '18'}, 'GSM1831356': {'gender': 'male', 'type': 'PB-derived Monocytes'}, 'GSM2361919': {'type': 'cord blood pre-conventional dendritic cells (cDCs)'}, 'GSM2705376': {'Sex': 'Male', 'rin': '6.6', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.53', 'pmi': '13'}, 'GSM2705371': {'Sex': 'Male', 'rin': '7.2', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.91', 'pmi': '16'}, 'GSM2705370': {'Sex': 'Male', 'rin': '7.8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.87', 'pmi': '9.5'}, 'GSM2705373': {'Sex': 'Male', 'rin': '5.4', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '5.93', 'pmi': '12.5'}, 'GSM2705372': {'Sex': 'Male', 'rin': '8', 'tissue': 'dorsal lateral prefrontal cortex (Brodmann Area 9)', 'diagnosis': 'non-psychiatric controls (CON)', 'ph': '6.63', 'pmi': '16'}, 'GSM2299021': {'age': '52', 'type': 'Stem cell'}, 'GSM2299020': {'age': '53', 'type': 'Stem cell'}, 'GSM1919394': {'status': 'Treatment-naïve', 'patient': 'Patient 08', 'tissue': 'Colorectal tumor microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'colorectal cancer'}, 'GSM1647939': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1863330': {'state': 'healthy', 'type': 'peripheral blood monocytes', 'treatment': 'interferon-alpha', 'id': 'C'}, 'GSM1647938': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM2166279': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166278': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166271': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166270': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166273': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166272': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166275': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166274': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166277': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2166276': {'type': 'H9 embryonic stem cell (ESC)', 'genotype': 'EZH2 -/- (Null)'}, 'GSM2425665': {'tissue': 'normal brain', 'stage': 'normal'}, 'GSM1647933': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1647932': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM2172094': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM3594392': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2247317': {'state': 'Undifferentiated (Day 0)', 'individual': 'Donor1', 'type': 'primary epidermal keratinocyte', 'Sex': 'male'}, 'GSM3594390': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3123414': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3123413': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3123412': {'state': 'HCM', 'type': 'Human iPS-derived Cardiomyocytes'}, 'GSM3594394': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594395': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594398': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM3594399': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec1'}, 'GSM2247318': {'state': 'Early Differentiation (Day 3)', 'individual': 'Donor1', 'type': 'primary epidermal keratinocyte', 'Sex': 'male'}, 'GSM2247319': {'state': 'Late differentiation (Day 6)', 'individual': 'Donor1', 'type': 'primary epidermal keratinocyte', 'Sex': 'male'}, 'GSM1965167': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965166': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965165': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965164': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965163': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965162': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965161': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965160': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2359147': {'stage': 'paired normal sample'}, 'GSM1965169': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM1965168': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2630268': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2630269': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib'}, 'GSM2242898': {'line': 'A375', 'replicate': '4'}, 'GSM2242899': {'line': 'A375', 'replicate': '4'}, 'GSM2359145': {'stage': 'paired normal sample'}, 'GSM2630260': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405845'}, 'GSM2630261': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '1000 nM', 'drug': 'pimasertib + SAR405846'}, 'GSM2630262': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630263': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2630264': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '10 nM', 'drug': 'pimasertib'}, 'GSM2242897': {'line': 'A375', 'replicate': '4'}, 'GSM2630266': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2630267': {'line': 'LU-99A', 'type': 'Non-Small Cell Lung Cancer (NSCLC)', 'concentration': '100 nM', 'drug': 'pimasertib'}, 'GSM2842524': {'type': 'PBMC', 'visit': 'Visit 1', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA-CCR7+', 'subtype': 'TCM'}, 'GSM2396988': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE + u6.shRNA-REST.WPRE'}, 'GSM2396989': {'cell': 'Adult fibroblast', 'source': 'Adult dermal fibroblasts, obtained from the Parkinsonâ\\x80\\x99s Disease Research and Huntingtonâ\\x80\\x99s disease clinics at the John van Geest Centre for Brain Repair (Cambridge, UK)', 'vector': 'pGK.Brn2.pGK.Ascl1.WPRE + u6.shRNA-REST.WPRE'}, 'GSM2562653': {'gender': 'female', 'race': 'Indian', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM1946203': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19153', 'for': '60min'}, 'GSM2265840': {'line': 'HeLa', 'sirna': 'TUT7', 'timepoint': '30'}, 'GSM2571065': {'line': 'HCT116', 'shRNA': 'Non-Target shRNA', 'type': 'colorectalÂ\\xa0cancer cell line'}, 'GSM2757494': {'treatment': 'Genome Editing', 'genotype': 'wild type'}, 'GSM2576200': {'tissue': 'breast cancer xenograft'}, 'GSM1965279': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM1648605': {'line': 'Nalm6', 'replicate': '2', 'construct': 'LUC ctrl', 'time': '24 h'}, 'GSM2632644': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632645': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632646': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632647': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632640': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632641': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632642': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2632643': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142545': {'gender': 'female', 'age': '62', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '2', 'smoking': '1'}, 'GSM2142544': {'gender': 'male', 'age': '66', 'who': '0', 'dead': '1', 'date': '2011-08-05', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142547': {'gender': 'female', 'age': '74', 'who': '1', 'dead': '1', 'date': '2011-04-12', 'histology': '2', 'tnm': '1', 'smoking': '2'}, 'GSM2142546': {'gender': 'female', 'age': '69', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '3', 'tnm': '2', 'smoking': '2'}, 'GSM2142541': {'gender': 'male', 'age': '58', 'who': '0', 'dead': '0', 'date': '2013-04-28', 'histology': '2', 'tnm': '1', 'smoking': '1'}, 'GSM2632649': {'age': '6.5', 'subject': 'P6', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Male'}, 'GSM2142543': {'gender': 'male', 'age': '66', 'who': '0', 'dead': '1', 'date': '2012-07-20', 'histology': '1', 'tnm': '1', 'smoking': '1'}, 'GSM2142542': {'gender': 'female', 'age': '65', 'who': '1', 'dead': '0', 'date': '2013-04-28', 'histology': '1', 'tnm': '4', 'smoking': '2'}, 'GSM2632240': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2589381': {'point': 'pre-vaccine', 'tissue': 'Whole Blood', 'dose': 'high'}, 'GSM2576202': {'tissue': 'breast cancer xenograft'}, 'GSM2429926': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': '500 nM JQ1'}, 'GSM2450857': {'tissue': 'B721.221 cells', 'variation': 'A5401-transduced'}, 'GSM2450856': {'tissue': 'B721.221 cells', 'variation': 'A5101-transduced'}, 'GSM2450855': {'tissue': 'B721.221 cells', 'variation': 'A2902-transduced'}, 'GSM2632242': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2632243': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM2429923': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': '500 nM JQ1'}, 'GSM1648609': {'line': 'Nalm6', 'replicate': '2', 'construct': 'TEL-AML1', 'time': '4 h'}, 'GSM2632245': {'age': '54', 'subject': 'P1', 'disease': 'patients with bone marrow failure and cytogenetic abnormalities', 'markers': 'CD3-14-19-CD34+', 'Sex': 'Female'}, 'GSM1948548': {'replicates': '1', 'treatment': 'Dox', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM1948549': {'replicates': '1', 'treatment': 'EtOH', 'construct': 'pInducer21-MYC-Kless-HA'}, 'GSM2576205': {'tissue': 'breast cancer xenograft'}, 'GSM2429921': {'line': 'RAJI', 'vector': 'pRTS-1-luciferase', 'treatment': 'DMSO'}, 'GSM1498306': {'state': 'asthmatic', 'passages': '2', 'type': 'Isolated from human trachea-bronchial tissues', 'treatment': 'HRV16'}, 'GSM2374176': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2236851': {'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)', 'individual': 'Patient 27', 'type': 'plasmacytoid dendritic cells (pDCs)'}, 'GSM2665995': {'age': 'Day 130', 'well': 'B6', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665996': {'age': 'Day 130', 'well': 'E11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2236852': {'state': 'blastic plasmacytoid dendritic cell neoplasm (BPDCN)', 'individual': 'Patient 29', 'type': 'plasmacytoid dendritic cells (pDCs)'}, 'GSM2665990': {'age': 'Day 130', 'well': 'A11', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665991': {'age': 'Day 130', 'well': 'E1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665992': {'age': 'Day 130', 'well': 'D1', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000062'}, 'GSM2665993': {'age': 'Day 130', 'well': 'C4', 'cluster': '3', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000062'}, 'GSM2316780': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316781': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316782': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316783': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316784': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316785': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316786': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316787': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2316788': {'control': 'FALSE', 'culture': '54', 'line': 'DCX+'}, 'GSM2374173': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM1172879': {'subtype': 'Luminal', 'line': 'LY2', 'type': 'breast cancer'}, 'GSM1172878': {'subtype': 'Basal', 'line': 'JIMT1', 'type': 'breast cancer'}, 'GSM2374172': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2576204': {'tissue': 'breast cancer xenograft'}, 'GSM1408096': {'vendor': 'Cell Signaling Technology', 'strain': 'NOD-SCID mouse', 'tissue': 'HOT1 tumor derived from a human glioblastoma patient sample', 'antibody': 'Monoclonal (rabbit) against SOX2'}, 'GSM1965275': {'sorting': 'FACS sorted by CD31+/CD34+', 'passage': 'passage 30-35'}, 'GSM2374170': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2429928': {'line': 'RAJI', 'vector': 'pRTS-1-BRD4_f3', 'treatment': 'none'}, 'GSM2298402': {'status': 'wt', 'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'DMSO', 'batch': '1'}, 'GSM2298403': {'status': 'wt', 'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'DMSO', 'batch': '2'}, 'GSM2298400': {'status': 'KO', 'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM2298401': {'status': 'KO', 'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM2298406': {'status': 'wt', 'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'DMSO', 'batch': '1'}, 'GSM2298407': {'status': 'wt', 'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'DMSO', 'batch': '2'}, 'GSM2298404': {'status': 'wt', 'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM2298405': {'status': 'wt', 'line': 'Colorectal Adenocarcinoma Cell Line HCT116', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM2298408': {'status': 'wt', 'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'Nutlin', 'batch': '1'}, 'GSM2298409': {'status': 'wt', 'line': 'Breast Carcinoma Cell Line MCF7', 'treatment': 'Nutlin', 'batch': '2'}, 'GSM2233324': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1520911': {'fixation': 'EGS+ FA', 'line': 'THP1', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)'}, 'GSM2233326': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233327': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233320': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233321': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233322': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1520910': {'vendor': 'Bethyl', 'fixation': 'EGS+ FA', 'type': 'human acute monocytic leukemia (AML) cell line', 'variation': 'wild type (control)', 'line': 'THP1', 'antibody': 'CTR9'}, 'GSM1716884': {'stress': 'control', 'type': 'keratinocyte', 'genotype': 'wt'}, 'GSM2374178': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2233328': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2455401': {'individual': 'DONOR 37', 'type': 'endothelial cell', 'treatment': 'DMSO', 'time': '0 minutes'}, 'GSM2576206': {'tissue': 'breast cancer xenograft'}, 'GSM1716885': {'stress': 'control', 'type': 'keratinocyte', 'genotype': 'wt'}, 'GSM2455400': {'individual': 'DONOR 15', 'type': 'endothelial cell', 'treatment': 'FOXO1 INHIBITOR + VEGF', 'time': '30 minutes'}, 'GSM1716886': {'stress': 'control', 'type': 'keratinocyte', 'genotype': 'wt'}, 'GSM2455407': {'individual': 'DONOR 2', 'type': 'endothelial cell', 'treatment': 'DMSO', 'time': '0 minutes'}, 'GSM1716887': {'stress': 'biaxial cyclic strain at 100 mHz', 'type': 'keratinocyte', 'genotype': 'wt'}, 'GSM2455406': {'individual': 'DONOR 1', 'type': 'endothelial cell', 'treatment': 'DMSO + VEGF', 'time': '30 minutes'}, 'GSM2455405': {'individual': 'DONOR 1', 'type': 'endothelial cell', 'treatment': 'DMSO', 'time': '0 minutes'}, 'GSM2455404': {'individual': 'DONOR 37', 'type': 'endothelial cell', 'treatment': 'FOXO1 INHIBITOR + VEGF', 'time': '30 minutes'}, 'GSM2048823': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048822': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048821': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048820': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM2048827': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048826': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048825': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2048824': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 1st', 'variation': 'CSL -/-'}, 'GSM2754904': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0360', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754905': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_0360', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754906': {'bin': '2', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '180', 'stimulation': 'esat', 'subjectid': '07_0259', 'previousdiagnosisoftb': 'Yes', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2048828': {'subset': 'Single Cell', 'status': 'CSL KO Xenograft Tumor 2nd', 'variation': 'CSL -/-'}, 'GSM2754900': {'bin': '4', 'group': 'Not a PP case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '360', 'stimulation': 'esat', 'subjectid': '07_1178', 'previousdiagnosisoftb': 'No', 'tst': '18', 'type': 'Tcells'}, 'GSM2754901': {'bin': '4', 'group': 'Not a PP case', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': 'IC', 'stimulation': 'esat', 'subjectid': '07_1178', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754902': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '14', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_1058', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754903': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '07_0360', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2287769': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287768': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM1603317': {'cl': '107', 'ca': '8.8', 'dyslipidemia': 'Yes', 'year': '--', 'statin': 'Yes', 'creatinine': '0.91', 'id': 'S02', 'co2': '24', 'rr': '20', 'plavix': 'Yes', 'na': '139', 'iiia': '--', 'type': 'NSTEMI', 'glucose': '101', 'ht': 'Yes', 'lovenox': 'Yes', 'asa': 'Yes', 'bun': '9', 'smoking': 'No', 'day': '--', 'ticagrelor': '--', 'troponin': '8.42', 'gender': 'M', 'k': '3.8', 'batch': '2', 'prasugrel': '--', 'cad': 'Yes'}, 'GSM1256815': {'marker': 'CD19+ within lymphocyte gate', 'tissue': 'peripheral blood', 'type': 'B-cells'}, 'GSM2287763': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287762': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287761': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287760': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287767': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287766': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287765': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM2287764': {'multiplexing': '48', 'line': 'H1', 'type': 'human embryonic stem cells', 'passage': 'passage 16'}, 'GSM1965271': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2197885': {'line': 'KNS42', 'period': '48 h', 'treatment': 'ICG', 'stage': 'pediatric'}, 'GSM2085690': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM907533': {'gender': 'M', 'age': '64', 'histologics': 'Diffuse', 'Stage': 'IV'}, 'GSM1965270': {'sorting': 'FACS sorted by CXCR4+', 'passage': 'passage 30-35'}, 'GSM2158108': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2158109': {'gender': 'M', 'age': '23', 'subtype': 'alpha', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 1', 'ethnicity': 'AA'}, 'GSM2220769': {'type': 'BEAS-2B', 'treatment': 'Hg+TCDD-2.5uM+10nM for 3 weeks'}, 'GSM2158102': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2158103': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2158100': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2158101': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2562671': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'Control'}, 'GSM2562670': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM2158104': {'gender': 'F', 'age': '56', 'subtype': 'beta', 'tissue': 'Pancreatic islets', 'condition': 'non-diabetic', 'id': 'Non T2D 4', 'ethnicity': 'C'}, 'GSM2562672': {'gender': 'male', 'race': 'Chinese', 'type': 'Cardiac fibroblasts', 'treatment': 'human recombinant TGFB1 (Serotec)'}, 'GSM1526680': {'marker': 'CD4+ CD8- CD45RO-', 'source': 'circulating immune cells', 'type': 'naive CD4+ T-cells'}, 'GSM937168': {'line': 'T-47D', 'replicate': '2', 'treatment': '8 hour 10 nM 17β-estradiol'}, 'GSM2550278': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM841734': {'with': 'AFF4 SMARTpool siRNA duplex', 'line': 'HEK293T', 'type': 'human embryonic kidney cells'}, 'GSM2664062': {'status': 'p53+/+', 'identifier': 'P4902_1001', 'type': 'polysome-associated RNA', 'method': 'Linear gradient', 'background': 'HCT116'}, 'GSM2652071': {'type': 'Coronary Artery Smooth Muscle Cells', 'treatment': 'Thrombin + SB431542 + AG1478'}, 'GSM2511593': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511590': {'barcode': '#8 (ATC)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2511591': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'control'}, 'GSM2543649': {'library_id': 'lib5770', 'stim': 'TT', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2511597': {'barcode': '#6 (ACG)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511594': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2511595': {'barcode': '#2 (CTT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2543645': {'library_id': 'lib5766', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543644': {'library_id': 'lib5765', 'stim': 'DM', 'group': 'Control', 'classification': 'Control', 'level': '0.096', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543647': {'library_id': 'lib5768', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543646': {'library_id': 'lib5767', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543641': {'library_id': 'lib5762', 'stim': 'NS', 'group': 'Control', 'classification': 'Control', 'level': '0.096', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543640': {'library_id': 'lib5757', 'stim': 'CR', 'group': 'Case', 'classification': 'Case', 'level': '0.0305', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543643': {'library_id': 'lib5764', 'stim': 'TT', 'group': 'Control', 'classification': 'Control', 'level': '0.096', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM2543642': {'library_id': 'lib5763', 'stim': 'CR', 'group': 'Control', 'classification': 'Control', 'level': '0.096', 'flow_cell_id': 'AC5UCPANXX', 'phase': '2', 'type': 'Peripheral blood mononuclear cell (PBMC)'}, 'GSM1333751': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM1333750': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333753': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM2689469': {'status': 'steroid-resistant asthma', 'type': 'CD8+T cells', 'id': '82', 'time': '8 days'}, 'GSM1333755': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM2664069': {'status': 'p53-/-', 'identifier': 'P4902_1008', 'type': 'polysome-associated RNA', 'method': 'Linear gradient', 'background': 'HCT116'}, 'GSM1333757': {'state': 'healthy', 'tissue': 'Left ventricular tissue'}, 'GSM1333756': {'state': 'dilated', 'tissue': 'Left ventricular tissue'}, 'GSM1333759': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM1333758': {'state': 'ischemic', 'tissue': 'Left ventricular tissue'}, 'GSM2550273': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2411393': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411392': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411391': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411390': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411397': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411396': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411395': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411394': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411399': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411398': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2046670': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM2046671': {'status': 'proliferating', 'tissue': 'Cells from nasal turbinates'}, 'GSM2545879': {'line': 'HCT-116', 'mutation': 'none (wildtype)'}, 'GSM1663079': {'tissue': 'liver', 'type': 'Primary fetal HSCs differentiated into HSC myofibroblasts', 'passage': 'passage 7-8'}, 'GSM2309731': {'tissue': 'primary fibroblasts', 'type': 'HCA2-hTert'}, 'GSM2309730': {'tissue': 'primary fibroblasts', 'type': 'HCA2-hTert'}, 'GSM2620888': {'1': 'CTCTCTAT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'A4', 'volume': '30uL', 'ul': '49.52', 's': 'S502', 'treatment': 'IA, followed by LPS', 'donor': '490', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'ATAGAGAG'}, 'GSM2094776': {'line': 'BC-PAP', 'protocol': 'BC-PAP cell line treated with DMSO vehicle for 48 hours'}, 'GSM2620883': {'1': 'CTCTCTAT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'A1', 'volume': '30uL', 'ul': '51.56', 's': 'S502', 'treatment': 'DMSO, followed by LPS', 'donor': '490', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'ATAGAGAG'}, 'GSM2620884': {'1': 'CTCTCTAT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'A2', 'volume': '30uL', 'ul': '45.29', 's': 'S502', 'treatment': 'DMSO, followed by LPS', 'donor': '490', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'ATAGAGAG'}, 'GSM2620886': {'1': 'CTCTCTAT', 'buffer': 'ultrapure water', 'cells': '2 million', 'well': 'A3', 'volume': '30uL', 'ul': '40.54', 's': 'S502', 'treatment': 'DMSO, followed by LPS', 'donor': '490', 'type': 'peripheral blood mononuclear cells (PBMCs)', 'rna': 'ATAGAGAG'}, 'GSM2195129': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195128': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195127': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195126': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195125': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195124': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195123': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195122': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195121': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2195120': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2392308': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392309': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392300': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392301': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392302': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392303': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392304': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392305': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392306': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM2392307': {'line': 'H1 stem cell line', 'multiplex': '24 samples per lane', 'extract_protocol': 'LM-Seq'}, 'GSM3594543': {'cluster': '2', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594542': {'cluster': '7', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM3594541': {'cluster': '4', 'disease': 'ActiveEOE', 'batch': 'Feb13'}, 'GSM2386561': {'line': 'U2OS', 'treatment': '1μM SAHA for 24'}, 'GSM2386560': {'line': 'U2OS', 'treatment': '20μM GSK-J4 for 12h'}, 'GSM2386563': {'line': 'U2OS', 'treatment': '20μM VPA for 24h'}, 'GSM2648916': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': '10 nM E2+10 nM Progesterone', 'time': '4 hours', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM2648911': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM E2+10 nM Dexamethasone', 'time': '24 hours'}, 'GSM2648910': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM E2+10 nM Progesterone', 'time': '24 hours'}, 'GSM2536973': {'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM2536972': {'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM2536971': {'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM1620636': {'type': 'MCF10a human breast cancer cells'}, 'GSM2085696': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2536976': {'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM2536975': {'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM2536974': {'line': 'MDA-MB-231', 'type': 'breast cancer'}, 'GSM2648912': {'status': 'ER+/PR+', 'line': 'MCF7', 'protocol': 'Cell models RNA-seq', 'treatment': '10 nM E2+10 nM DHT', 'time': '24 hours'}, 'GSM1620639': {'type': 'MCF10a human breast cancer cells'}, 'GSM1620638': {'type': 'MCF10a human breast cancer cells'}, 'GSM2133912': {'status': 'mild metabolic syndrome', 'type': 'pheripheral mononuclear cells', 'group': 'pterocarpan-rich extract soybean leaf (PT)', 'id': 'PT_3', 'point': 'after PT-supplemented'}, 'GSM2648919': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': '10 nM E2+10 nM Aldosterone', 'time': '4 hours', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM2648918': {'status': 'ER+/PR+', 'protocol': 'Cell models ChIP-seq', 'treatment': '10 nM E2+10 nM DHT', 'time': '4 hours', 'line': 'MCF7', 'antibody': 'anti-ER (SC biotech HC-20, cat# SC-543, lot# L1911)'}, 'GSM2133913': {'status': 'mild metabolic syndrome', 'type': 'pheripheral mononuclear cells', 'group': 'pterocarpan-rich extract soybean leaf (PT)', 'id': 'PT_4', 'point': 'after PT-supplemented'}, 'GSM2303619': {'race': 'White', 'age': '29', 'bmi': '23', 'disease': 'Non-Diabetic', 'Sex': 'Male', 'tissue': 'Pancreatic Islet', 'type': 'Beta', 'id': 'ACEL337'}, 'GSM2274839': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33315', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9717', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C85', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9717', 'studysiteshort': 'YALE'}, 'GSM2274838': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33312', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9714', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C69', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9714', 'studysiteshort': 'YALE'}, 'GSM2274831': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33305', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9707', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C61', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9707', 'studysiteshort': 'YALE'}, 'GSM2274830': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33304', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9706', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C55', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9706', 'studysiteshort': 'YALE'}, 'GSM2274833': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33307', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9709', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C68', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9709', 'studysiteshort': 'YALE'}, 'GSM2274832': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33306', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9708', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C67', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9708', 'studysiteshort': 'YALE'}, 'GSM2274835': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33309', 'c1captureannotation': 'single cell +debris', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9711', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C92', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9711', 'studysiteshort': 'YALE'}, 'GSM2274834': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33308', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9710', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C86', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9710', 'studysiteshort': 'YALE'}, 'GSM2274837': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33311', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9713', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C63', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9713', 'studysiteshort': 'YALE'}, 'GSM2274836': {'area_under_the_curve': '1.242905', 'siteandparticipantcode': '618372', 'baseline_area_under_the_curve': '0.560010625', 'projectid': 'P54-12', 'runchemistry': 'HiSeq SBS Kit v4', 'numcellssorted': '750', 'four_hour_auc_percent_of_baseline': '221.9431105', 'auc_percent_of_baseline': '221.9431105', 'samplebarcode': '930954', 'trunkbarcode': '930954', 'sampleID': 'S33310', 'c1captureannotation': 'single cell', 'flowcellid': 'C81MLANXX', 'status': 'R', 'samplelabel': 'lib9712', 'visitnumber': '6', 'seqsite': 'BRI', 'libraryprep': 'C1+NexteraXT', 'stim': 'anti-CD3 anti-CD28 Stimulated', 'lane': '5', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_618372', 'gender': 'Female', 'age': '29', 'sortmarkers': 'CD8+ CD45R0+ TIGIT+ KLRG1+', 'race': 'White', 'c1capturesite': 'C57', 'cdnasynthesis': 'C1+SMARTer v1', 'c1plateid': '1771029189', 'libraryid': 'lib9712', 'studysiteshort': 'YALE'}, 'GSM1963763': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963762': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963761': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963760': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963767': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963766': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963765': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963764': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1368023': {'line': 'HEK293', 'transfection': 'mock', 'purification': 'oligo(dT) beads'}, 'GSM1368022': {'line': 'HEK293', 'transfection': 'MOV10 siRNA', 'purification': 'oligo(dT) beads'}, 'GSM1963769': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM1963768': {'subtype': 'estrogen receptor positive (ER+)', 'type': 'primary breast cancer', 'id': 'BC01'}, 'GSM2133911': {'status': 'mild metabolic syndrome', 'type': 'pheripheral mononuclear cells', 'group': 'pterocarpan-rich extract soybean leaf (PT)', 'id': 'PT_8', 'point': 'before PT-supplemented'}, 'GSM1368024': {'line': 'HEK293', 'transfection': 'MOV10 siRNA', 'purification': 'oligo(dT) beads'}, 'GSM2337060': {'origin': 'cells in vitro', 'line': 'COLO858', 'type': 'melanoma cell line', 'treatment': 'Vemurafenib_24h_0.2µM'}, 'GSM2449976': {'tissue': 'Blood', 'type': 'erythroblast', 'time': 'day 13 in culture'}, 'GSM2449977': {'tissue': 'Blood', 'type': 'erythroblast', 'time': 'day 13 in culture'}, 'GSM2449978': {'tissue': 'Blood', 'type': 'erythroblast', 'time': 'day 13 in culture'}, 'GSM2283987': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM2283986': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM2453951': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1970060': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2283984': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day 0', 'matrix': 'Matrigel'}, 'GSM2686835': {'individual': '2', 'group': 'Mossi', 'ID': '107', 'population': 'CD14+ monocyte'}, 'GSM2133914': {'status': 'mild metabolic syndrome', 'type': 'pheripheral mononuclear cells', 'group': 'pterocarpan-rich extract soybean leaf (PT)', 'id': 'PT_8', 'point': 'after PT-supplemented'}, 'GSM1970061': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2686838': {'individual': '28', 'group': 'Mossi', 'ID': '111', 'population': 'CD14+ monocyte'}, 'GSM2283983': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day 0', 'matrix': 'Matrigel'}, 'GSM2048807': {'subset': 'Single Cell', 'status': 'CSL +/+ Xenograft Tumor 2nd', 'variation': 'CSL +/+'}, 'GSM1970062': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2453956': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'c': {'code': '200'}, 'GSM1970063': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2453955': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2062419': {'line': 'Huh7', 'passages': 'P3'}, 'GSM1970064': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2453954': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1970065': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1811431': {'line': '786-O', 'tissue': 'Kidney', 'type': 'ccRCC', 'transfection': 'lincRNA KD'}, 'GSM1811430': {'line': '786-O', 'tissue': 'Kidney', 'type': 'ccRCC', 'transfection': 'lincRNA KD'}, 'GSM2133915': {'disease': 'Healthy'}, 'GSM1970066': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM1970067': {'line': 'MRC-5 (ATCC, CCL-171)'}, 'GSM2665807': {'age': 'Day 175', 'well': 'B11', 'cluster': '2', 'tissue': 'hCS', 'type': 'glia', 'id': '1001000081'}, 'GSM2142230': {'medium': 'APEL cell culture medium', 'treatment': 'd2 SB & CHIR plus BVSAF', 'population': 'CH-34+43-'}, 'GSM2456065': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM2307388': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307389': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307382': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307383': {'patientid': 'IL006', 'diagnosis': 'IPF'}, 'GSM2307380': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307381': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307386': {'patientid': 'CC006', 'diagnosis': 'Control'}, 'GSM2307387': {'patientid': 'IPF012', 'diagnosis': 'IPF'}, 'GSM2307384': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2307385': {'patientid': 'IPF002', 'diagnosis': 'IPF'}, 'GSM2665809': {'age': 'Day 175', 'well': 'G3', 'cluster': 'N/A', 'tissue': 'hCS', 'type': 'neuron', 'id': '1001000081'}, 'GSM2356898': {'type': '3-dimensional sphere', 'mutations': 'KCST'}, 'GSM2356899': {'type': '3-dimensional sphere', 'mutations': 'KECST'}, 'GSM2356897': {'type': '3-dimensional sphere', 'mutations': 'KCT'}, 'GSM979637': {'description': 'Single 50 nt reads', 'localization': 'cell', 'datatype': 'Cage', 'labexpid': 'CThi10100CTT', 'readtype': '1x50', 'sex': 'B', 'rnaextract': 'longPolyA', 'replicate': '1', 'biorep': '055WC'}, 'GSM2519378': {'with': 'HSV1 K220A mutated', 'line': 'HEK 293T', 'type': 'human embryonic kidney cells', 'method': 'total', 'passage': 'p5-15'}, 'GSM2527948': {'line': 'FE-PD', 'state': 'ALK- anaplastic large cell lymphoma (ALCL)'}, 'GSM2635730': {'genotype': 'YAP-, bCatenin-', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635733': {'genotype': 'YAP-', 'treatment_time': '24h', 'treatment': 'ChIR'}, 'GSM947444': {'line': 'PrEC'}, 'GSM947445': {'line': 'LNCaP'}, 'GSM947446': {'line': 'PrEC'}, 'GSM947447': {'line': 'LNCaP'}, 'GSM1836511': {'expression_construct': 'FLAG-TOE1WT', 'antibody': 'Mouse anti-FLAG (Sigma)', 'r1_inline_randommer': 'NNNNNNNNNNNCT', 'experimental_condition': 'WTaddback', 'line': 'HEK 293', 'sirna': 'siTOE1', 'target_gene': 'U2'}, 'GSM2635734': {'genotype': 'YAP-', 'treatment_time': '72h', 'treatment': 'ChIR'}, 'GSM2635731': {'genotype': 'YAP-, bCatenin-', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM2635737': {'genotype': 'YAP-', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM1931304': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-resistant', 'treatment': 'vemurafenib'}, 'GSM2635736': {'genotype': 'YAP-', 'treatment_time': 'None', 'treatment': 'None'}, 'GSM1931302': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-resistant', 'treatment': 'vemurafenib'}, 'GSM1931303': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-resistant', 'treatment': 'vemurafenib'}, 'GSM1931300': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-resistant', 'treatment': 'vemurafenib'}, 'GSM1931301': {'tissue': 'A375 tumor', 'phenotype': 'vemurafenib-resistant', 'treatment': 'vemurafenib'}, 'GSM767848': {'lineage': 'ectoderm', 'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID9200', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '011N', 'spikeinpool': 'Nist14'}, 'GSM767849': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID18545', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '001C', 'spikeinpool': 'Nist14'}, 'GSM767840': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID18552', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '013C', 'spikeinpool': 'Nist14'}, 'GSM767841': {'description': 'tier 2', 'localization': 'nucleus', 'datatype': 'RnaSeq', 'labexpid': 'LID9199', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '006N', 'spikeinpool': 'Nist14'}, 'GSM767842': {'description': 'tier 2', 'localization': 'cytosol', 'datatype': 'RnaSeq', 'labexpid': 'LID18549', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '2', 'labversion': 'iIDR', 'biorep': '006C', 'spikeinpool': 'Nist14'}, 'GSM767843': {'description': 'tier 3', 'datatype': 'RnaSeq', 'labexpid': 'LID18554', 'readtype': '2x76D', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '027C', 'spikeinpool': 'Nist14'}, 'GSM767844': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID9195', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '001N', 'spikeinpool': 'Nist14'}, 'GSM767845': {'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID9003', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '019WC', 'spikeinpool': 'Nist14'}, 'GSM767846': {'description': 'tier 3', 'datatype': 'RnaSeq', 'labexpid': 'LID9204', 'readtype': '2x76D', 'sex': 'F', 'rnaextract': 'longNonPolyA', 'replicate': '3', 'labversion': 'iIDR', 'biorep': '027N', 'spikeinpool': 'Nist14'}, 'GSM767847': {'lineage': 'ectoderm', 'description': 'tier 1', 'datatype': 'RnaSeq', 'labexpid': 'LID8790', 'readtype': '2x76D', 'rnaextract': 'longNonPolyA', 'replicate': '1', 'labversion': 'iIDR', 'biorep': '011WC', 'spikeinpool': 'Nist14'}, 'GSM2677889': {'cells': 'primary pancreas tumor', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R209K and frameshift->S215stop, p16-silenced, SMAD4-WT'}, 'GSM2677888': {'cells': 'primary pancreas tumor', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R209K and frameshift->S215stop, p16-silenced, SMAD4-WT'}, 'GSM2677885': {'cells': 'primary pancreas tumor', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R209K and frameshift->S215stop, p16-silenced, SMAD4-WT'}, 'GSM2041054': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia', 'variation': 'igf2bp3 knockdown'}, 'GSM2677887': {'cells': 'primary pancreas tumor', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R209K and frameshift->S215stop, p16-silenced, SMAD4-WT'}, 'GSM2677886': {'cells': 'primary pancreas tumor', 'type': 'polyclonal cell line', 'genotype': 'KRAS-G12V, p53-R209K and frameshift->S215stop, p16-silenced, SMAD4-WT'}, 'GSM2041051': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia', 'variation': 'control'}, 'GSM2041050': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia', 'variation': 'control'}, 'GSM2041053': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia', 'variation': 'igf2bp3 knockdown'}, 'GSM2041052': {'type': 'RS4;11 lymphoblast cells', 'disease': 'acute lymphoblastic leukemia', 'variation': 'igf2bp3 knockdown'}, 'GSM2644605': {'line': 'T47D ExoR330fs', 'passages': '<5', 'antibody': 'N/A'}, 'GSM2644604': {'line': 'T47D ExoR330fs', 'passages': '<5', 'antibody': 'anti-Ty1 (Menafra et al., 2014)'}, 'GSM2644607': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-PolII serum (Wade lab)'}, 'GSM2644606': {'line': 'T47D ExoR330fs', 'passages': '<5', 'antibody': 'N/A'}, 'GSM2644601': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644600': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644603': {'line': 'T47D ExoR330fs', 'passages': '<5', 'antibody': 'anti-Ty1 (Menafra et al., 2014)'}, 'GSM2644602': {'line': 'T47D wt/R330fsl cells', 'passages': '<10', 'antibody': 'N/A'}, 'GSM2644609': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-PolII serum (Wade lab)'}, 'GSM2644608': {'line': 'T47D Flp control cells', 'passages': '<10', 'antibody': 'anti-PolII serum (Wade lab)'}, 'GSM2357389': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'Control: Empigen untreated Ser5 phospho'}, 'GSM2357388': {'subtype': 'Polymerase bound RNA', 'line': 'HeLa', 'variation': 'CPSF73 KD, Thr4 phospho'}, 'GSM1401721': {'tissue': 'Triple Negative Breast Cancer Primary Tumor'}, 'GSM2142238': {'medium': 'APEL cell culture medium', 'treatment': 'BMP4, VEGF,SCF,ACTIVIN A, FGF (BVSAF)', 'population': 'CH-43+'}, 'GSM2635735': {'genotype': 'YAP-', 'treatment_time': '72h', 'treatment': 'ChIR'}, 'GSM2259001': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4020'}, 'GSM2259000': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4019'}, 'GSM2259003': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4020'}, 'GSM2259002': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4020'}, 'GSM1395746': {'subtype': 'Pro', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2259004': {'line': 'HEK293', 'condition': 'DHX9 knockdown with s4020'}, 'GSM1395744': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395745': {'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395748': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM1395749': {'subtype': 'Mes', 'type': 'Glioblastoma', 'id': 'MGH29'}, 'GSM2455829': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455828': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455825': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455824': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455827': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455826': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455821': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455820': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455823': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2455822': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM1533245': {}, 'GSM1533244': {}, 'GSM1533247': {}, 'GSM1533246': {}, 'GSM1533241': {}, 'GSM1533240': {}, 'GSM1533243': {}, 'GSM1533242': {}, 'GSM1533249': {}, 'GSM1533248': {}, 'GSM2784448': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '48h'}, 'GSM2784449': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.1uM', 'time': '48h'}, 'GSM2784440': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_1uM', 'time': '48h'}, 'GSM2784441': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '48h'}, 'GSM2784442': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_C_0.3uM', 'time': '48h'}, 'GSM2784443': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '48h'}, 'GSM2784444': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_1uM', 'time': '48h'}, 'GSM2784445': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '48h'}, 'GSM2784446': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_B_0.3uM', 'time': '48h'}, 'GSM2784447': {'donor': 'D1', 'type': 'CD4 T cell', 'treatment': 'RORgt_Inhibitor_A_0.3uM', 'time': '48h'}, 'GSM821041': {'line': 'GM17253', 'type': 'B-lymphocyte cell line'}, 'GSM821040': {'line': 'GM17253', 'type': 'B-lymphocyte cell line', 'size': '200 bp'}, 'GSM2501414': {'line': 'breast triple negative tumor cell line BCSC1', 'treatment': '10 nM kDM4(i) for 18 hours'}, 'GSM2501415': {'line': 'breast triple negative tumor cell line BCSC1', 'treatment': '10 nM kDM4(i) for 18 hours'}, 'GSM2501412': {'line': 'breast triple negative tumor cell line BCSC1', 'treatment': 'vehicle'}, 'GSM2501413': {'line': 'breast triple negative tumor cell line BCSC1', 'treatment': '10 nM kDM4(i) for 18 hours'}, 'GSM2501411': {'line': 'breast triple negative tumor cell line BCSC1', 'treatment': 'vehicle'}, 'GSM3586746': {'origin': 'ABC', 'pfstt': '618', 'pfscs': '1', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'Rituximab', 'ostt': '1559', 'cycles': '6', 'oscs': '0'}, 'GSM2111101': {'status': 'Activated', 'type': 'Effector Memory (EM)', 'id': 'Donator 9', 'phenotype': 'EM (CD45RO+CD27-)'}, 'GSM2111100': {'status': 'Activated', 'type': 'Transitional Memory (TM)', 'id': 'Donator 9', 'phenotype': 'TM (CD45RO+CD27+CCR7-)'}, 'GSM2084430': {'induction': 'Vitamin D3', 'time': '6 hr'}, 'GSM2084431': {'induction': 'Vitamin D3', 'time': '12 hr'}, 'GSM2084432': {'induction': 'Vitamin D3', 'time': '12 hr'}, 'GSM2084433': {'induction': 'Vitamin D3', 'time': '12 hr'}, 'GSM2084434': {'induction': 'Vitamin D3', 'time': '24 hr'}, 'GSM2084435': {'induction': 'Vitamin D3', 'time': '24 hr'}, 'GSM2084436': {'induction': 'Vitamin D3', 'time': '24 hr'}, 'GSM2084437': {'induction': 'Vitamin D3', 'time': '48 hr'}, 'GSM2084438': {'induction': 'Vitamin D3', 'time': '48 hr'}, 'GSM2084439': {'induction': 'Vitamin D3', 'time': '48 hr'}, 'GSM1481722': {'with': 'vectors coding for Myc-KPC1', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM1481723': {'with': 'vectors coding for Myc-KPC1', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM1481724': {'with': 'vectors coding for Flag-p50', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM1481725': {'with': 'vectors coding for Flag-p50', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM1481726': {'with': 'empty vector (V0)', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM1481727': {'with': 'empty vector (V0)', 'mice': '7-wks old male Balb/C nude mice', 'type': 'U87-MG glioblastoma human cells', 'stage': '21 days old xenografts'}, 'GSM3586747': {'origin': 'GCB', 'pfstt': '642', 'pfscs': '1', 'region': 'North America', 'ipi': 'High', 'Sex': 'Male', 'treatment': 'Rituximab', 'ostt': '1399', 'cycles': '6', 'oscs': '0'}, 'GSM1677099': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Mock treatment, no addition of ActD', 'barcode': 'CGATGTA'}, 'GSM1866068': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866069': {'tissue': 'Gliobmastoma biopsy'}, 'GSM2803239': {'line': 'HeyA8', 'tissue': 'Ovary', 'genotype': 'WT', 'infection': 'Treated cells with 1nM non-targeting siScr for two days'}, 'GSM2803238': {'line': 'HeyA8', 'tissue': 'Ovary', 'genotype': 'WT', 'infection': 'Treated cells with 1nM non-targeting siScr for two days'}, 'GSM1681959': {'gender': 'male', 'age': '58', 'tissue': 'Control'}, 'GSM1681958': {'gender': 'male', 'age': '74', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1289405': {'line': 'K562 (Human erythromyeloblastoid leukemia cell line)', 'protocol': 'Untreated'}, 'GSM1289404': {'line': 'K562 (Human erythromyeloblastoid leukemia cell line)', 'protocol': 'Untreated'}, 'GSM1866060': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1681954': {'gender': 'male', 'age': '80', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1681957': {'gender': 'male', 'age': '46', 'tissue': 'Tumor', 'class': 'II'}, 'GSM1681956': {'gender': 'female', 'age': '62', 'tissue': 'Tumor', 'class': 'III'}, 'GSM1866064': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866065': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866066': {'tissue': 'Gliobmastoma biopsy'}, 'GSM1866067': {'tissue': 'Gliobmastoma biopsy'}, 'GSM3586744': {'origin': 'ABC', 'pfstt': '912', 'pfscs': '0', 'region': 'North America', 'ipi': 'Low', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '1068', 'cycles': '6', 'oscs': '0'}, 'GSM1968910': {'state': 'Normal', 'type': 'induced pluripotent stem cell'}, 'GSM1968913': {'state': 'Normal', 'type': 'neural progenitor'}, 'GSM1968912': {'state': 'Normal', 'type': 'induced pluripotent stem cell'}, 'GSM1968915': {'state': 'Normal', 'type': 'neural progenitor'}, 'GSM1968914': {'state': 'Normal', 'type': 'neural progenitor'}, 'GSM1968917': {'state': 'Ataxia Telangiectasia', 'type': 'induced pluripotent stem cell'}, 'GSM1968916': {'state': 'Ataxia Telangiectasia', 'type': 'induced pluripotent stem cell'}, 'GSM1968919': {'state': 'Ataxia Telangiectasia', 'type': 'neural progenitor'}, 'GSM1968918': {'state': 'Ataxia Telangiectasia', 'type': 'induced pluripotent stem cell'}, 'GSM1647012': {'illumina_index': '14', 'point': '18', 'batch': '5', 'agent': 'none', 'rin': '7.2', 'individual': 'M375'}, 'GSM2456060': {'culture': 'D54', 'line': 'DCX-', 'type': 'cultured embryonic stem cells'}, 'GSM1647010': {'illumina_index': '12', 'point': '48', 'batch': '5', 'agent': 'Rv', 'rin': '9.5', 'individual': 'M372'}, 'GSM1647011': {'illumina_index': '13', 'point': '48', 'batch': '5', 'agent': 'Rv', 'rin': '8.3', 'individual': 'M377'}, 'GSM1647016': {'illumina_index': '19', 'point': '48', 'batch': '5', 'agent': 'BCG', 'rin': '9.2', 'individual': 'M372'}, 'GSM1647017': {'illumina_index': '2', 'point': '4', 'batch': '6', 'agent': 'Rv+', 'rin': '9.6', 'individual': 'M377'}, 'GSM1647014': {'illumina_index': '16', 'point': '18', 'batch': '5', 'agent': 'GC', 'rin': '9.4', 'individual': 'M372'}, 'GSM1647015': {'illumina_index': '18', 'point': '4', 'batch': '5', 'agent': 'Rv+', 'rin': '8.5', 'individual': 'M374'}, 'GSM1647018': {'illumina_index': '4', 'point': '18', 'batch': '6', 'agent': 'Rv', 'rin': '7.8', 'individual': 'M375'}, 'GSM1647019': {'illumina_index': '5', 'point': '4', 'batch': '6', 'agent': 'Salm', 'rin': '9.4', 'individual': 'M376'}, 'GSM3586745': {'origin': 'GCB', 'pfstt': '724', 'pfscs': '0', 'region': 'North America', 'ipi': 'High-Intermediate', 'Sex': 'Female', 'treatment': 'GA101', 'ostt': '809', 'cycles': '6', 'oscs': '0'}, 'GSM2243392': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Compound 132'}, 'GSM2933017': {'pucai': '50', 'score': '2', 'remission': 'Yes', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '15'}, 'GSM2933016': {'pucai': '85', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '10'}, 'GSM2933015': {'pucai': '20', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM2933014': {'pucai': '45', 'score': '1', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '15'}, 'GSM2933013': {'pucai': '55', 'score': '1', 'remission': 'Yes', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '14'}, 'GSM2933012': {'pucai': '70', 'score': '3', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-IV', 'diagnosis': '14'}, 'GSM2933011': {'pucai': '40', 'score': '2', 'remission': 'Yes', '32': 'Y', 'calprotectin': '<250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '12'}, 'GSM2933010': {'pucai': '50', 'score': '3', 'remission': 'No', '32': 'N', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': 'CS-Oral', 'diagnosis': '17'}, 'GSM2262890': {'protocol': 'Negatively selected monocyte. No culture', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2933019': {'pucai': '25', 'score': '1', 'remission': 'No', '32': 'Y', 'calprotectin': 'â\\x89¥250', 'Sex': 'Male', 'tissue': 'Rectal mucosal biopsy', 'treatment': '5ASA', 'diagnosis': '14'}, 'GSM2262891': {'protocol': 'Negatively selected monocyte. No culture', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM2084298': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2464575': {'passages': 'P4', 'gender': 'Male', 'age': '12 years', 'tissue': 'Foreskin', 'treatment': 'Keap1 siRNA', 'type': 'Melanocytes'}, 'GSM2084294': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2084295': {'tissue': 'bone marrow', 'type': 'CD34+', 'phenotype': 'AZA Responder', 'stage': 'Cycle 6 day 28 (C6d28)'}, 'GSM2262893': {'protocol': 'Negatively selected monocyte. No culture', 'type': 'Monocyte', 'antibody': 'none', 'strategy': 'RNA-Seq'}, 'GSM1517630': {'line': 'Ewing sarcoma cell line A673', 'treatment': 'shGFP', 'time': '48 hrs'}, 'GSM1517631': {'line': 'Ewing sarcoma cell line A673', 'treatment': 'shFLI1', 'time': '48 hrs'}, 'GSM2085741': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085740': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085743': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085742': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085745': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085744': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085747': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085746': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2085749': {'protocol': 'Smart-Seq2', 'state': 'myeloprolifertive disease', 'type': 'hameatopoietic stemand progenitor cells', 'id': 'patient 2'}, 'GSM2516100': {'line': 'MDA231', 'type': 'Mammary carcinoma cells', 'level': 'hi'}, 'GSM2516101': {'line': 'MDA231', 'type': 'Mammary carcinoma cells', 'level': 'lo'}, 'GSM2563870': {'experiment': 'CEP701/R1881', 'group': '8', 'condition': 'androgen'}, 'GSM2048900': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'KRAS-G12D'}, 'GSM2048901': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2048902': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'KRAS-G12V'}, 'GSM2048903': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2048904': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'KRAS-G12V'}, 'GSM2048905': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'BRAF-V600E'}, 'GSM2048906': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2048907': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'BRAF-V600E'}, 'GSM2048908': {'tissue': 'biopsied normal colon', 'type': 'laser capture microdissected stromal cells', 'mutation': '--'}, 'GSM2048909': {'tissue': 'biopsied proximal colon ACF (aberrant crypt foci)', 'type': 'laser capture microdissected stromal cells', 'mutation': 'BRAF-V600E'}, 'GSM517437': {'stage': 'Embryonic stem cells'}, 'GSM2041883': {'line': 'WTC-CRISPRi', 'treatment': '-', 'sgrna': 'sgGCaMP'}, 'GSM2041880': {'line': 'WTC-CRISPRn', 'treatment': '+', 'sgrna': 'None'}, 'GSM2041881': {'line': 'WTC-CRISPRi', 'treatment': '-', 'sgrna': 'None'}, 'GSM2041884': {'line': 'WTC-CRISPRi', 'treatment': '+', 'sgrna': 'sgGCaMP'}, 'GSM2262793': {'tissue': 'pancreas'}, 'GSM2747612': {'line': 'ARPE-19', 'passages': 'X+7', 'type': 'retina pigment epithelium', 'Stage': '5 days'}, 'GSM2259823': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259822': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259821': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259820': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '0'}, 'GSM2259827': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259826': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259825': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259824': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '2'}, 'GSM2259829': {'isolation': 'Fluidigm C1', 'line': 'CFPAC-1', 'with': 'None', 'cells': '1'}, 'GSM1542174': {'subpopulation': 'CD62L+CX3CR1+', 'type': 'CD8+ T cells'}, 'GSM2840463': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2178765': {'ir': '1.7921146953405', 'weight': 'obese', 'gender': 'male', 'age': '47', 'bmi': '35.1', 'disease': 'ngt', 'l': '0.07', 'h': '1', 'id': '59a'}, 'GSM2840461': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2840460': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM1551264': {'tissue': 'Thyroid tumor', 'molecule': 'small RNA', 'diagnosis': 'Papillary Thyroid Carcinoma'}, 'GSM2178760': {'ir': '0.375657400450789', 'weight': 'non-obese', 'gender': 'male', 'age': '50', 'bmi': '24.4', 'disease': 'ngt', 'l': '0.12', 'h': '2', 'id': '35a'}, 'GSM2178761': {'ir': '0.499750124937531', 'weight': 'obese', 'gender': 'female', 'age': '53', 'bmi': '39.2', 'disease': 'ngt', 'l': '0.06', 'h': '2', 'id': '71a'}, 'GSM2840465': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2178763': {'ir': '1.72117039586919', 'weight': 'obese', 'gender': 'male', 'age': '41', 'bmi': '33.4', 'disease': 'ngt', 'l': '0.15', 'h': '1', 'id': '56a'}, 'GSM1279705': {'passages': 'PDL15', 'crosslinking': 'not applied', 'treatment': 'PDL 15 AUF1 siRNA', 'protein': 'not applied', 'type': 'WI-38 Total RNA', 'line': 'WI-38'}, 'GSM2170511': {'stage': 'Endothelial cells'}, 'GSM2840468': {'subtype': 'TEMRA', 'type': 'PBMC', 'id': 'Subject12', 'markers': 'CD3+CD4+CD8α/CD14/CD19-CD45RA+CCR7-', 'history': 'DENV positive'}, 'GSM2178768': {'ir': '0.492853622474125', 'weight': 'non-obese', 'gender': 'female', 'age': '63', 'bmi': '27.7', 'disease': 't2d', 'l': '0.07', 'h': '2', 'id': '127a'}, 'GSM2170516': {'stage': 'Endothelial cells'}, 'GSM2516904': {'death': '90', 'score': 'IV', 'post_mortem_interval': '1.83', 'caseid': '04-64', 'Sex': 'F', 'rin_score': '8.5', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655508'}, 'GSM2516905': {'death': '97', 'score': 'IV', 'post_mortem_interval': '3.5', 'caseid': '09-44', 'Sex': 'F', 'rin_score': '7.7', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655483'}, 'GSM2516906': {'death': '79', 'score': 'II', 'post_mortem_interval': '3', 'caseid': '10-63', 'Sex': 'M', 'rin_score': '6.6', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655491'}, 'GSM2516907': {'death': '87', 'score': 'VI', 'post_mortem_interval': '2.5', 'caseid': '08-37', 'Sex': 'M', 'rin_score': '6.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655471'}, 'GSM2516900': {'death': '76', 'score': 'I', 'post_mortem_interval': '2.33', 'caseid': '08-40', 'Sex': 'M', 'rin_score': '7.3', 'tissue': 'fusiform gyrus', 'diagnosis': 'control', 'sample_id': 'SAM19655514'}, 'GSM2516901': {'death': '87', 'score': 'VI', 'post_mortem_interval': '4.17', 'caseid': '11-56', 'Sex': 'F', 'rin_score': '7.4', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655445'}, 'GSM2516902': {'death': '89', 'score': 'III', 'post_mortem_interval': '2.66', 'caseid': '08-05', 'Sex': 'F', 'rin_score': '7.2', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655398'}, 'GSM2516903': {'death': '87', 'score': 'V', 'post_mortem_interval': '3.33', 'caseid': '04-28', 'Sex': 'F', 'rin_score': '7.3', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655433'}, 'GSM2516908': {'death': '96', 'score': 'IV', 'post_mortem_interval': '1.66', 'caseid': '05-23', 'Sex': 'F', 'rin_score': '7.6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655380'}, 'GSM2516909': {'death': '77', 'score': 'IV', 'post_mortem_interval': '2', 'caseid': '01-43', 'Sex': 'M', 'rin_score': '6', 'tissue': 'fusiform gyrus', 'diagnosis': \"Alzheimer's disease\", 'sample_id': 'SAM19655381'}, 'GSM2948439': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM2948438': {'type': 'hESC-H9(WA09)', 'system': 'alginate hydrogel'}, 'GSM1553203': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553202': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553201': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553200': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553207': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553206': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553205': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM1553204': {'line': 'HEK293', 'treatment': 'doxycycline induced, a-amanitin (2.5 mg/ml) 42 hr'}, 'GSM3594451': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594450': {'cluster': '1', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM1553209': {'line': 'HEK293', 'treatment': 'DRB washout t=10min.'}, 'GSM1553208': {'line': 'HEK293', 'treatment': 'DRB (100 mM) 3hr'}, 'GSM3594455': {'cluster': '4', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594454': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594457': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM3594456': {'cluster': '2', 'disease': 'Remission', 'batch': 'Dec5'}, 'GSM2496699': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496698': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2496693': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2496692': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496691': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2496690': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496697': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496696': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM2496695': {'state': 'Colon cancer stage II-IV', 'tissue': 'adjacent normal colon', 'replicates': 'N/A'}, 'GSM2496694': {'state': 'Colon cancer stage II-IV', 'tissue': 'primary tumor', 'replicates': 'N/A'}, 'GSM1864039': {'gender': 'female', 'line': 'MDA-MB-231', 'tissue': 'breast', 'genotype': 'ezh2-/-; hotair overexpressed'}, 'GSM1864038': {'gender': 'female', 'line': 'MDA-MB-231', 'tissue': 'breast', 'genotype': 'ezh2-/-; hotair overexpressed'}, 'GSM2411409': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411408': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411403': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411402': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411401': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411400': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411407': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411406': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411405': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM2411404': {'subtype': 'CD45+, CD3+ CD8+, live singlets', 'type': 'CD8+ T cells'}, 'GSM1367028': {'status': 'Negative', 'therapy': 'Castration', 'type': 'Metastatic castration resistant prostate cancer'}, 'GSM1367029': {'status': 'Positive', 'therapy': 'Enzalutamide', 'type': 'Metastatic castration resistant prostate cancer'}, 'GSM1367027': {'status': 'Negative', 'therapy': 'Castration', 'type': 'Metastatic castration resistant prostate cancer'}, 'GSM1528138': {'duration': '6 hours', 'line': 'CCD-18Co', 'type': 'normal intestinal subepithelial myofibroblasts', 'treatment': '10 ng/ml rhIL-33'}, 'GSM3189383': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-A39', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CAJMRANXX', '4': 'No', 'percentage': '6', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Case', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.581485', 'percentaligned': '0.953684302', 'Sex': 'M', 'nl63': 'No', 'libcounts': '8.948524', 'original': 'Case'}, 'GSM2221811': {'type': 'RASF'}, 'GSM1844473': {'line': 'SK-NO-1', 'agent': 'GSK690*_1uM', 'point': '24h'}, 'GSM1844472': {'line': 'SK-NO-1', 'agent': 'RN-1_1uM', 'point': '24h'}, 'GSM1641258': {'type': 'PBMC'}, 'GSM1641259': {'type': 'PBMC'}, 'GSM2434019': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434018': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434015': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434014': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434017': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434016': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434011': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434010': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434013': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM2434012': {'tissue': 'bone marrow', 'markers': 'CD34+'}, 'GSM1556186': {'subtype': 'luminal', 'line': 'ZR75-1', 'agent': 'PKC412'}, 'GSM1556185': {'subtype': 'luminal', 'line': 'ZR75-1', 'agent': 'PKC412'}, 'GSM1556184': {'subtype': 'luminal', 'line': 'ZR75-1', 'agent': 'PKC412'}, 'GSM1556183': {'subtype': 'luminal', 'line': 'ZR75-1', 'agent': 'DMSO'}, 'GSM1556182': {'subtype': 'luminal', 'line': 'ZR75-1', 'agent': 'DMSO'}, 'GSM2650189': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type'}, 'GSM2650188': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type'}, 'GSM2141935': {'with': 'A375-MR1 cells for 20 hrs (T cells:APC :: 2:1)', 'sorting': 'CD25+CD137+', 'type': 'T cell clone from healthy donor PBMC', 'id': 'DGB70'}, 'GSM2650186': {'cell': 'hES', 'strain': 'H9', 'genotype': 'Smad5-/-'}, 'GSM2650185': {'cell': 'hES', 'strain': 'H9', 'genotype': 'Smad5-/-'}, 'GSM2650184': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type'}, 'GSM2650183': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type'}, 'GSM2650182': {'cell': 'hES', 'strain': 'H9', 'genotype': 'wild type'}, 'GSM2141933': {'with': 'A375-MR1 cells for 20 hrs (T cells:APC :: 2:1)', 'sorting': 'CD25+CD137+', 'type': 'T cell clone from healthy donor PBMC', 'id': 'DGB129'}, 'GSM2141932': {'with': 'none', 'sorting': 'CD25-CD137-', 'type': 'T cell clone from healthy donor PBMC', 'id': 'DGB129'}, 'GSM2881016': {'donor': 'Donor_1', 'type': 'Monocyte', 'diagnosis': 'healthy'}, 'GSM3580288': {'phase': 'HCV', 'gender': 'Male', 'type': 'CD3-CD56+ NK cells', 'diagnosis': 'HCV'}, 'GSM2565420': {'construction': 'PLATE-Seq', 'drug': 'UNTREATED'}, 'GSM2454181': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454180': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454183': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454182': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2474465': {'depletion': 'RiboZero-Gold rRNA depletion', 'tissue': 'cell line', 'treatment': '0.05ng Promega Firefly luciferase per 100ng Total RNA'}, 'GSM2454184': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454187': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454186': {'gender': 'Male', 'age': '75 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454189': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2454188': {'gender': 'Female', 'age': '69 years old', 'type': 'differentiated respiratory epithelial cells'}, 'GSM2263583': {'type': 'tumor cells', 'treatment': 'Doxycycline'}, 'GSM2263582': {'type': 'tumor cells', 'treatment': 'Doxycycline'}, 'GSM2829985': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2263584': {'type': 'tumor cells', 'treatment': 'Doxycycline'}, 'GSM2829987': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM2829986': {'tissue': 'Heart', 'type': 'Heart tissue cells'}, 'GSM1564658': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '5.7', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1564659': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '7.3', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2915402': {'antibody': 'none', 'type': 'MCF-7 cells'}, 'GSM1564652': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564653': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564650': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '8.2', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564651': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '9.1', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564656': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '3', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1564657': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '3.6', 'with': 'MDV3100 (enzalutamide)'}, 'GSM1564654': {'protocol': 'whole-exome capture', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '10', 'with': 'DHT (dihydrotestosterone)'}, 'GSM1564655': {'protocol': 'poly(A)+ selection', 'ome': 'VcaP', 'point': '24 hrs post-treatment', 'type': 'Immortalized prostate cancer cell line', 'rin': '3.3', 'with': 'MDV3100 (enzalutamide)'}, 'GSM2479791': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479790': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2281617': {'state': 'Primed', 'tissue': 'embryonic stem cells', 'medium': 'hESM'}, 'GSM2281616': {'state': 'Primed', 'tissue': 'embryonic stem cells', 'medium': 'hESM'}, 'GSM2479795': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479794': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479797': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2233284': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2479799': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2479798': {'antibody': 'n.a.', 'type': 'dendritic cells', 'stage': 'adult'}, 'GSM2233289': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM2233288': {'status': 'squamous cell carcinoma', 'tissue': 'metastatic lymph node tumor', 'type': 'single cell'}, 'GSM1964933': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM1964932': {'sorting': 'not sorted', 'passage': 'passage 30-35'}, 'GSM2471129': {'status': 'HIV, Successfully treated', 'donorid': 'ST129', 'subset': 'EM', 'type': 'primary sorted memory CD4+ T cell subsets derived from PBMCs', 'stimulation': 'IL15'}, 'GSM2511607': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM1829809': {'line': 'H9', 'growth': '14 days of neural induction', 'treatment': 'Doxycycline was added day 11-14'}, 'GSM2200878': {'concentration': '30uM', 'type': 'PTEC-TERT1 cells', 'egf': 'FALSE'}, 'GSM2142371': {'etiology': 'UCB', 'donor': '3', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'AML1-ETO'}, 'GSM2937079': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2937078': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM2937075': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM2142376': {'etiology': 'UCB', 'donor': '2', 'lineage': 'GFP+CD11b-', 'type': 'CD34+ HSPC', 'variation': 'FOXO1 DNA binding deficient mutant'}, 'GSM2937077': {'status': 'Ashmatic', 'tissue': 'peripheral blood'}, 'GSM2937076': {'status': 'Normal', 'tissue': 'peripheral blood'}, 'GSM2937071': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM2937070': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM2937073': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM2937072': {'status': 'Normal', 'tissue': 'nasal epitheilium'}, 'GSM898223': {'stimulation': 'TNF', 'line': 'HCT116', 'antibody': 'none', 'algorithm': 'Bowtie', 'variation': 'HP1 gamma knock down'}, 'GSM898222': {'stimulation': 'none', 'line': 'HCT116', 'antibody': 'none', 'algorithm': 'Bowtie', 'variation': 'HP1 gamma knock down'}, 'GSM898221': {'stimulation': 'TNF', 'line': 'HCT116', 'antibody': 'none', 'algorithm': 'Bowtie', 'variation': 'Wild type'}, 'GSM898220': {'stimulation': 'none', 'line': 'HCT116', 'antibody': 'none', 'algorithm': 'Bowtie', 'variation': 'Wild type'}, 'GSM898227': {'stimulation': 'TNF', 'line': 'HCT116', 'antibody': 'none', 'algorithm': 'ELAND', 'variation': 'Wild type'}, 'GSM898226': {'stimulation': 'none', 'line': 'HCT116', 'antibody': 'none', 'algorithm': 'ELAND', 'variation': 'Wild type'}, 'GSM898225': {'vendor': 'Millipore', 'algorithm': 'ELAND', 'number': '05-690', 'variation': 'Wild type', 'stimulation': 'TNF', 'numbers': '1501782 and 17908001', 'line': 'HCT116', 'antibody': 'HP1 gamma'}, 'GSM898224': {'vendor': 'Millipore', 'algorithm': 'ELAND', 'number': '05-690', 'variation': 'Wild type', 'stimulation': 'none', 'numbers': '1501782 and 17908001', 'line': 'HCT116', 'antibody': 'HP1 gamma'}, 'GSM2416878': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM1505851': {'gender': 'female', 'state': 'unaffected', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '07-02'}, 'GSM2374222': {'Stage': 'Week 8', 'type': 'Cytotrophoblast', 'population': 'HLA-G-/CDH1+'}, 'GSM2350192': {'rna': '100 pg', 'used': 'Nugen Ovation RNASeq V2 (0.25X volume)'}, 'GSM1084103': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1084102': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1084101': {'line': '293S', 'treatment': 'arsenite'}, 'GSM1084100': {'line': '293S', 'treatment': 'arsenite'}, 'GSM2200877': {'concentration': '10uM', 'type': 'PTEC-TERT1 cells', 'egf': 'TRUE'}, 'GSM2747881': {'line': 'Hela', 'protocol': \"3'READS\", 'transfection': 'siMtr4'}, 'GSM2747880': {'line': 'Hela', 'protocol': \"3'READS\", 'transfection': 'siCtl'}, 'GSM2747883': {'line': 'Hela', 'protocol': \"3'READS\", 'transfection': 'siZCCHC8'}, 'GSM2747882': {'line': 'Hela', 'protocol': \"3'READS\", 'transfection': 'siRBM7'}, 'GSM1505853': {'gender': 'male', 'state': 'autism spectrum disorder with macrocephaly', 'conditions': '31', 'type': 'iPSC-derived neural progenitors', 'id': '07-03'}, 'GSM1540517': {'state': 'Lyme disease', 'individual': 'patient 01-24', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540516': {'state': 'Lyme disease', 'individual': 'patient 01-23', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540515': {'state': 'Lyme disease', 'individual': 'patient 01-20', 'type': 'PBMC', 'time': '3 weeks later, immediately following completion of a standard course of antibiotics (V2)'}, 'GSM1540514': {'state': 'Lyme disease', 'individual': 'patient 01-54', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540513': {'state': 'Lyme disease', 'individual': 'patient 01-53', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540512': {'state': 'Lyme disease', 'individual': 'patient 01-52', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM1540511': {'state': 'Lyme disease', 'individual': 'patient 01-50', 'type': 'PBMC', 'time': 'acute Lyme pre-treatment (V1)'}, 'GSM2455910': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2511608': {'barcode': '#3 (GAT)', 'tissue': 'colon', 'condition': 'UC active'}, 'GSM2419218': {'line': 'MRC5VA', 'treatment': 'Untreated', 'time': '10 minutes'}, 'GSM2419219': {'line': 'MRC5VA', 'treatment': 'Untreated', 'time': '25 minutes'}, 'GSM2064465': {'line': 'HeLa Kyoto cells', 'treatment': 'control siRNA', 'batch': '2'}, 'GSM2064464': {'line': 'HeLa Kyoto cells', 'treatment': 'PWWP2A siRNA', 'batch': '1'}, 'GSM2064467': {'line': 'HeLa Kyoto cells', 'treatment': 'control siRNA', 'batch': '3'}, 'GSM2064466': {'line': 'HeLa Kyoto cells', 'treatment': 'PWWP2A siRNA', 'batch': '2'}, 'GSM2714500': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '5 days'}, 'GSM2714501': {'line': 'H358 cell line', 'genotype': 'FXR1 KD', 'point': '5 days'}, 'GSM2064463': {'line': 'HeLa Kyoto cells', 'treatment': 'control siRNA', 'batch': '1'}, 'GSM1969383': {'metastasis': 'Yes', 'fusion': 'Yes', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Internal trunk'}, 'GSM2064469': {'line': 'HeLa Kyoto cells', 'treatment': 'control siRNA', 'batch': '5'}, 'GSM2064468': {'line': 'HeLa Kyoto cells', 'treatment': 'control siRNA', 'batch': '4'}, 'GSM1969382': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Upper limb'}, 'GSM1969381': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Lower limb'}, 'GSM1969380': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Lower limb'}, 'GSM2394401': {'antibody': 'ERG, Santa Cruz #sc354', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2394400': {'antibody': 'ERG, Santa Cruz #sc354', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2394403': {'antibody': 'H3K27ac, Active Motif #39135', 'type': 'HAEC', 'treatment': 'control, 4h', 'passage': '6 to 10'}, 'GSM2212696': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2394405': {'antibody': 'H3K27ac, Active Motif #39135', 'type': 'HAEC', 'treatment': 'IL1b, 4h', 'passage': '6 to 10'}, 'GSM2394404': {'antibody': 'H3K27ac, Active Motif #39135', 'type': 'HAEC', 'treatment': 'IL1b, 4h', 'passage': '6 to 10'}, 'GSM2394407': {'antibody': 'H3K27ac, Active Motif #39135', 'type': 'HAEC', 'treatment': 'oxpapc, 4h', 'passage': '6 to 10'}, 'GSM2394406': {'antibody': 'H3K27ac, Active Motif #39135', 'type': 'HAEC', 'treatment': 'oxpapc, 4h', 'passage': '6 to 10'}, 'GSM2394409': {'antibody': 'H3K27ac, Active Motif #39135', 'type': 'HAEC', 'treatment': 'TNFa, 4h', 'passage': '6 to 10'}, 'GSM2394408': {'antibody': 'H3K27ac, Active Motif #39135', 'type': 'HAEC', 'treatment': 'TNFa, 4h', 'passage': '6 to 10'}, 'GSM2212699': {'gender': 'male', 'condition': 'control'}, 'GSM2212698': {'gender': 'female', 'condition': \"Crohn's disease\"}, 'GSM2295852': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '14 week gestation'}, 'GSM2416873': {'tissue': 'Fetal liver', 'stage': 'fetal'}, 'GSM2295853': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '14 week gestation'}, 'GSM2114191': {'line': 'HMLER', 'treatment': '5-aza-deoxycytidine'}, 'GSM2114193': {'line': 'HMLER', 'treatment': 'none'}, 'GSM2114192': {'line': 'HMLER', 'treatment': '5-aza-deoxycytidine'}, 'GSM2114195': {'line': 'MDA-MB-231', 'treatment': '5-aza-deoxycytidine'}, 'GSM2114194': {'line': 'HMLER', 'treatment': 'none'}, 'GSM2114197': {'type': 'mESC', 'fraction': 'cytoplasm'}, 'GSM2114196': {'line': 'MDA-MB-232', 'treatment': 'none'}, 'GSM2114199': {'type': 'mESC', 'fraction': 'nucleus'}, 'GSM2114198': {'type': 'mESC', 'fraction': 'cytoplasm'}, 'GSM2295850': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '10 week gestation'}, 'GSM2458930': {'complication': 'yes', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '5.08'}, 'GSM2572739': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '17', 'day': '3'}, 'GSM2572738': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '17', 'day': '1'}, 'GSM1389737': {'tissue': 'adipose', 'phenotype': 'acromegaly'}, 'GSM2572735': {'tissue': 'blood', 'lanes': '1,2,3,4,5', 'number': '12', 'day': '0'}, 'GSM2572734': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '2', 'day': '7'}, 'GSM2572737': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '17', 'day': '0'}, 'GSM2572736': {'tissue': 'blood', 'lanes': '1,2,3,4,5', 'number': '12', 'day': '1'}, 'GSM2572731': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '2', 'day': '0'}, 'GSM2572730': {'tissue': 'blood', 'lanes': '5,6,7,8', 'number': '4', 'day': '7'}, 'GSM2572733': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '2', 'day': '3'}, 'GSM2572732': {'tissue': 'blood', 'lanes': '1,2,3,4,5,6', 'number': '2', 'day': '1'}, 'GSM2458933': {'complication': 'yes', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '9.17'}, 'GSM2187238': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR251663-1)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2295851': {'gender': 'female', 'type': 'Primordial Germ Cells', 'stage': '14 week gestation'}, 'GSM2458934': {'complication': '-', 'gender': 'Male', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '8.50'}, 'GSM2458935': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '11.92'}, 'GSM2458936': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '13.25'}, 'GSM2416870': {'type': 'Developed Somites at Forelimb Bud Level', 'stage': '4.5 weeks embryo'}, 'GSM1389731': {'tissue': 'adipose', 'phenotype': 'acromegaly'}, 'GSM2187239': {'antibody': 'H3K4me1 (Abcam, ab8895, lot GR251663-1)', 'line': 'DU145', 'type': 'prostate cancer cell line', 'derivation': 'prostate; derived from brain metastatic site', 'treatment': 'None'}, 'GSM2193074': {'sirna': 'PAX8 siRNA 404', 'line': 'OVSAHO', 'type': 'High grade serous ovarian carcinoma', 'source': 'Catalogue s15404, Ambion'}, 'GSM1946106': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19102', 'for': '60min'}, 'GSM2339448': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339449': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': '-'}, 'GSM2339444': {'type': 'primary cell', 'patient': 'BCP-ALL pediatric', 'treatment': '-'}, 'GSM2339445': {'type': 'primary cell', 'patient': 'BCP-ALL pediatric', 'treatment': 'BFM 2009'}, 'GSM2339446': {'type': 'primary cell', 'patient': 'BCP-ALL pediatric', 'treatment': 'BFM 2009'}, 'GSM2339447': {'type': 'PDX cell', 'patient': 'BCP-ALL pediatric', 'id': 'NOD scid gamma', 'treatment': 'VCR & Cyclo treatment'}, 'GSM2339440': {'type': 'primary cell', 'patient': 'BCP-ALL pediatric', 'treatment': '-'}, 'GSM2339441': {'type': 'primary cell', 'patient': 'BCP-ALL pediatric', 'treatment': '-'}, 'GSM2339442': {'type': 'primary cell', 'patient': 'BCP-ALL pediatric', 'treatment': '-'}, 'GSM2339443': {'type': 'primary cell', 'patient': 'BCP-ALL pediatric', 'treatment': 'BFM 2009'}, 'GSM3190688': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'Yes', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '1.502928'}, 'GSM3190689': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'Yes', 'libcounts': '4.883061'}, 'GSM3190684': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Control', 'b': 'No', 'differential': '1.1', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '5.586415'}, 'GSM3190685': {'boca': 'No', 'years': '8', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.8', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '7.940547'}, 'GSM3190686': {'adv': 'No', 'a': 'No', 'b': 'No', 'mpv': 'No', 'hrv': 'No', 'visit': 'None', 'boca': 'No', 'analysis': 'Yes', 'Sex': 'M', '1': 'No', 'hku1': 'No', '3': 'No', 'tissue': 'Peripheral Blood', 'flowcell': 'CB4FNANXX', '4': 'No', '2': 'No', 'years': '8', 'libcounts': '6.763237', 'event': 'Control', '229e': 'No', 'nl63': 'No'}, 'GSM3190687': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'v0': 'Case', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '3.878884'}, 'GSM3190680': {'boca': 'No', 'years': '12', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'No', 'visit': 'None', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.8', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '1', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.772758'}, 'GSM3190681': {'boca': 'No', 'years': '9', 'tissue': 'Peripheral Blood', 'event': 'Case', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A39', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '5.2', 'mpv': 'No', 'hku1': 'No', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.6', 'analysis': 'Yes', 'Sex': 'M', 'nl63': 'No', 'libcounts': '6.789757'}, 'GSM1277971': {'line': 'LLC12PH', 'type': 'hpSC derived Neural Stem Cells'}, 'GSM3190683': {'boca': 'No', 'years': '14', 'tissue': 'Peripheral Blood', 'event': 'Control', 'adv': 'No', 'hrv': 'Yes', 'visit': 'RV-A23', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'CB4FNANXX', '4': 'No', 'count': '4.4', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'a': 'No', 'b': 'No', 'differential': '0.7', 'analysis': 'Yes', 'Sex': 'F', 'nl63': 'No', 'libcounts': '7.260976'}, 'GSM2159744': {'treatment': 'Activin A + Wnt3a 6h'}, 'GSM2451090': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2817778': {'type': 'PANC-1', 'treatment': 'gemcitabine 100nM 6h'}, 'GSM2817777': {'type': 'PANC-1', 'treatment': 'gemcitabine 100nM 6h'}, 'GSM2817776': {'type': 'PANC-1', 'treatment': 'gemcitabine 3uM 24h'}, 'GSM2817775': {'type': 'PANC-1', 'treatment': 'gemcitabine 3uM 24h'}, 'GSM2817774': {'type': 'PANC-1', 'treatment': 'gemcitabine 3uM 24h'}, 'GSM2817773': {'type': 'PANC-1', 'treatment': 'gemcitabine 3uM 24h'}, 'GSM2817772': {'type': 'PANC-1', 'treatment': 'gemcitabine 30nM 24h'}, 'GSM2817771': {'type': 'PANC-1', 'treatment': 'gemcitabine 30nM 24h'}, 'GSM2817770': {'type': 'PANC-1', 'treatment': 'gemcitabine 30nM 24h'}, 'GSM1980401': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980400': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980403': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980402': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2451091': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM1980404': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980407': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2265696': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'DMSO', 'point': '3h'}, 'GSM1980409': {'status': 'positive', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM1980408': {'status': 'negative', 'phenotype': 'Lin-CD34+CD38-', 'stage': '3_months_TKI'}, 'GSM2265695': {'antibody': 'N/A', 'passages': 'Low passages (6-10)', 'type': 'Diffuse Intrinsic Pontine Glioma (DIPG)', 'agent': 'JQ1[300nM]', 'point': '48h'}, 'GSM2635915': {'type': 'A549 cells', 'treatment': 'none', 'genotype': 'wild type'}, 'GSM2451092': {'strain': '2242-1', 'type': 'hiPSC-derived neural 3D culture'}, 'GSM2635917': {'type': 'A549 cells', 'treatment': 'none', 'genotype': 'wild type'}, 'GSM2159748': {'antibody': 'H3K27me3', 'treatment': 'None'}, 'GSM1946107': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19102', 'for': '60min'}, 'GSM2390928': {'disease': 'Healthy Control'}, 'GSM2147910': {'patient': 'P508', 'age': '26', 'Sex': 'female', 'prognosis': 'Healthy', 'tissue': 'Prepouch ileum', 'diagnosis': 'Ulcerative colitis', 'biopsytime': '4mo', 'ethnicity': 'Caucasian'}, 'GSM2471984': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471985': {'type': 'Endothelial cells', 'passage': 'P2'}, 'GSM2471986': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471987': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471980': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471981': {'type': 'Pluripotent stem cells', 'passage': '20-25'}, 'GSM2471982': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471983': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471988': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM2471989': {'type': 'Cadiomyocytes', 'passage': 'Day 30'}, 'GSM1980242': {'status': 'normal', 'phenotype': 'Lin-CD34+CD38-', 'stage': 'normal_hsc'}, 'GSM1323695': {'tgleason': '7', 'race': 'W', 'score': '347', 'sms': 'unknown', 'pstage': 'pT2C', 'site': 'Atlanta VA Medical Center', 'prepsa': '5.22', 'reads': '118,237,400', 'tissue': 'prostate', 'u': '34.7', 'mapped': '55.0%', 'id': 'VA-PC-99-82', 'bcr': '0'}, 'GSM2560480': {'name': 'wt', 'antibody': 'HA-probe Antibody (Y-11); cat.no. sc-805; Santa Cruz Biotechnology', 'type': 'column goblet cells', 'ko': 'none', 'cdx2opt': 'none', 'line': 'LS174T CL-188', 'induction': 'none'}, 'GSM1323697': {'tgleason': '6', 'race': 'W', 'score': '336', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '4.92', 'reads': '41,567,752', 'tissue': 'prostate', 'u': '63.4', 'mapped': '59.1%', 'id': 'VA-PC-99-84', 'bcr': '0'}, 'GSM1323696': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '10.63', 'reads': '83,965,414', 'tissue': 'prostate', 'u': '77.3', 'mapped': '62.6%', 'id': 'VA-PC-99-83', 'bcr': '0'}, 'GSM1323691': {'tgleason': '7', 'race': 'B', 'score': '347', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '5.27', 'reads': '86,112,328', 'tissue': 'prostate', 'u': '71.9', 'mapped': '75.3%', 'id': 'VA-PC-99-78', 'bcr': '0'}, 'GSM1323690': {'tgleason': '6', 'race': 'B', 'score': '336', 'sms': 'Negative', 'pstage': 'pT2A', 'site': 'Atlanta VA Medical Center', 'prepsa': '5.55', 'reads': '43,257,880', 'tissue': 'prostate', 'u': '51.5', 'mapped': '75.1%', 'id': 'VA-PC-99-77', 'bcr': '0'}, 'GSM2153149': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153148': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153147': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153146': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153145': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153144': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153143': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153142': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153141': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM2153140': {'donor': 'HSB303', 'age': 'PCW19', 'c1_chip': 'C1-20'}, 'GSM1333067': {'type': 'monocyte-derived macrophages'}, 'GSM1545584': {'count': '0', 'group': 'Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'No', 'tissue': 'whole blood', 'signs': '2'}, 'GSM2664383': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2701559': {'stimulation': '25600 Pa polyacrylamide hydrogel', 'tissue': 'liver', 'type': 'stellate cells'}, 'GSM1545583': {'count': '0', 'group': 'No Sepsis T0', 'positive': 'No', 'failure': 'No', 'aki': 'Yes', 'tissue': 'whole blood', 'signs': '0'}, 'GSM2664380': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2560485': {'name': '6D6', 'antibody': 'none', 'type': 'column goblet cells', 'ko': 'LS174T_CDX2-/- Tet3G KO', 'cdx2opt': '2x(pAAVS1-TRE3G-CDX2opt)', 'line': 'LS174T CL-188', 'induction': '0 ng/ml'}, 'GSM2255733': {'status': 'Overexpressed GATA4', 'line': 'A549'}, 'GSM2255732': {'status': 'Normal level of GATA4', 'line': 'A549'}, 'GSM2255731': {'status': 'Normal level of GATA4', 'line': 'A549'}, 'GSM2664381': {'type': 'Neuroblastoma cell line', 'treatment': 'none'}, 'GSM2560486': {'name': '6D6', 'antibody': 'none', 'type': 'column goblet cells', 'ko': 'LS174T_CDX2-/- Tet3G KO', 'cdx2opt': '2x(pAAVS1-TRE3G-CDX2opt)', 'line': 'LS174T CL-188', 'induction': '4 ng/ml'}, 'GSM2255734': {'status': 'Overexpressed GATA4', 'line': 'A549'}, 'GSM2560487': {'name': '6D6', 'antibody': 'none', 'type': 'column goblet cells', 'ko': 'LS174T_CDX2-/- Tet3G KO', 'cdx2opt': '2x(pAAVS1-TRE3G-CDX2opt)', 'line': 'LS174T CL-188', 'induction': '40 ng/ml'}, 'GSM2100268': {'rin': '10', 'Sex': 'Female', 'sspg': '244', 'age': '65', 'bmi': '34', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '987', 'method': 'Life-Tech GITC'}, 'GSM2300702': {'used': '-', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': 'none'}, 'GSM2300701': {'used': '-', 'type': 'T lymphocyte', 'treatment': 'none', 'analysis': 'none'}, 'GSM2386060': {'transfection': 'PTH2R knockdown', 'type': 'Passage 3 preadipocytes'}, 'GSM2386061': {'transfection': 'PTH2R knockdown', 'type': 'Passage 3 preadipocytes'}, 'GSM2100269': {'rin': '10', 'Sex': 'Female', 'sspg': '244', 'age': '65', 'bmi': '34', 'batch': '1-80', 'by': 'YL', 'cell': 'Erythroblasts', 'state': 'Insulin resistant', 'race': 'White', 'lot': '1264008A', 'date': '051014-120914', 'dilution': '02:40:00 AM', 'passage': '9', 'indiv': '987', 'method': 'Life-Tech GITC'}, 'GSM2732889': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732888': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2476804': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2732885': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732884': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732887': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732886': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732881': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732880': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732883': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM2732882': {'origin': 'fetal', 'type': 'Mesodermal progenitors', 'passage': '7_10'}, 'GSM1437673': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437672': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437671': {'tissue': 'Bladder', 'stage': 'pTx'}, 'GSM1437670': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437677': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437676': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437675': {'tissue': 'Bladder', 'stage': 'pT2'}, 'GSM1437674': {'tissue': 'Bladder', 'stage': 'pT2'}, 'GSM2242871': {'line': 'A375', 'replicate': '4'}, 'GSM1437679': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM1437678': {'tissue': 'Bladder', 'stage': 'pTa'}, 'GSM2416865': {'type': 'Presomitic Mesoderm', 'stage': '5 weeks embryo'}, 'GSM937167': {'line': 'T-47D', 'replicate': '2', 'treatment': '8 hour 0.02% DMSO'}, 'GSM2172089': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172088': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172083': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172082': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172081': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172080': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172087': {'donor_age': '21', 'inferred_cell_type': 'unsure', 'gender': 'male'}, 'GSM2172086': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172085': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2172084': {'donor_age': '21', 'inferred_cell_type': 'alpha', 'gender': 'male'}, 'GSM2170881': {'stage': 'Liver bud 2'}, 'GSM2170880': {'stage': 'Liver bud 2'}, 'GSM2476807': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'E2'}, 'GSM1554636': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554635': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554634': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554633': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554632': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554631': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554630': {'disease': 'Acute Myeloid Leukemia'}, 'GSM1554639': {'disease': 'Acute Myeloid Leukemia'}, 'GSM2170884': {'stage': 'Liver bud 2'}, 'GSM2476800': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'none'}, 'GSM1395357': {'line': 'vorinostat-resistant HCT116', 'treatment': 'mock DMSO', 'timepoint': '4hr'}, 'GSM2607522': {'line': 'WA26'}, 'GSM1670876': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control'}, 'GSM1670877': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control EGF'}, 'GSM1670874': {'antibody': 'IP with goat antibody sc-23599 (Santa Cruz)', 'type': 'Hela cell line', 'treatment': 'control EGF'}, 'GSM1670875': {'antibody': 'IP with goat antibody sc-23599 (Santa Cruz)', 'type': 'Hela cell line', 'treatment': 'doxycyclin EGF'}, 'GSM1670872': {'antibody': 'IP with goat antibody sc-23599 (Santa Cruz)', 'type': 'Hela cell line', 'treatment': 'control EGF'}, 'GSM1670873': {'antibody': 'IP with goat antibody sc-23599 (Santa Cruz)', 'type': 'Hela cell line', 'treatment': 'doxycyclin EGF'}, 'GSM1670870': {'antibody': 'IP with rabbit anti-H3K27ac (Abcam ab4729, Lot: GR183919-2)', 'type': 'Hela cell line', 'treatment': 'doxycyclin'}, 'GSM1670871': {'antibody': 'IP with rabbit anti-H3K27ac (Abcam ab4729, Lot: GR183919-2)', 'type': 'Hela cell line', 'treatment': 'doxycyclin EGF'}, 'GSM1670878': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'doxycyclin EGF'}, 'GSM1670879': {'type': 'HeLa Tet-inducible INTS11 shRNA cell clone', 'treatment': 'control'}, 'GSM2476802': {'type': 'MCF7', 'mutation': 'D538G', 'condition': 'White Medium', 'treatment': 'Doxycycline'}, 'GSM2210567': {'line': 'A375', 'treatment': 'JQ1'}, 'GSM2839750': {'cohort': 'Replication', 'age': '71', 'id': 'A14', 'Sex': 'Female'}, 'GSM2416866': {'type': 'Presomitic Mesoderm', 'stage': '4.5 weeks embryo'}, 'GSM2109456': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109457': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109454': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109455': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109452': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109453': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109450': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM2109451': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'JIA patient with clinical remission on medication'}, 'GSM1066118': {'tissue': 'bone marrow', 'genotype': 'SF3B1 wildtype', 'disease': 'normal'}, 'GSM2535652': {'projectid': 'P48', 'lane': '1,5', 'samplelabel': 'lib1114', 'samplename': '1_413UNST_C87', 'seqsite': 'BRI', 'sampleID': 'S13221', 'numcellssorted': '1000', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'T-cell clone BRI4.13', 'stim': 'Unstimulated', 'cdnasynthesis': 'C1+SMARTer v1', 'flowcellid': 'C24YKACXX', 'c1plateid': '1772030045', 'libraryid': 'lib1114', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C87'}, 'GSM2109458': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM2109459': {'tissue': 'blood', 'type': 'Peripheral Blood Mononuclear Cells', 'stage': 'healthy control'}, 'GSM1294388': {'origin': 'WA09 human embryonic stem cells', 'replicate': '1', 'fraction': 'Late G1'}, 'GSM1294389': {'origin': 'WA09 human embryonic stem cells', 'replicate': '1', 'fraction': 'S phase'}, 'GSM1294387': {'origin': 'WA09 human embryonic stem cells', 'replicate': '1', 'fraction': 'Early G1'}, 'GSM2275129': {'area_under_the_curve': '0.761455156', 'siteandparticipantcode': '464149', 'baseline_area_under_the_curve': '0.953871071', 'projectid': 'P54-1', 'visitmonth': '24', 'runchemistry': 'TruSeq SBS Kit v3', 'four_hour_auc_percent_of_baseline': '79.82789069', 'auc_percent_of_baseline': '79.82789069', 'trunkbarcode': '950051', 'sampleID': 'S13139', 'flowcellid': 'D1G9TACXX', 'status': 'R', 'samplelabel': 'lib1547', 'visitnumber': '42', 'seqsite': 'Covance', 'libraryprep': 'TruSeq RNA v2', 'lane': '4', 'treatmentgroup': 'hOKT3', 'name': 'AbATE_464149', 'gender': 'Female', 'age': '10', 'race': 'White', 'libraryid': 'lib1547', 'studysiteshort': 'UCSF'}, 'GSM2144466': {'status': 'HIV-infected ART-treated patient', 'storage': 'EDTA-Isolated, Stored in Trizol', 'type': 'Intestinal Epithelial Cell'}, 'GSM2456031': {'culture': 'D26', 'line': 'DCX+', 'type': 'cultured embryonic stem cells'}, 'GSM2127900': {'expression': 'shDAP5', 'state': 'Pluripotent', 'molecule': 'Total Poly A+RNA', 'passage': 'p53'}, 'GSM2127901': {'expression': 'shNT', 'state': 'Pluripotent', 'molecule': 'Heavy polysomal RNA', 'passage': 'p53'}, 'GSM2127902': {'expression': 'shDAP5', 'state': 'Pluripotent', 'molecule': 'Heavy polysomal RNA', 'passage': 'p53'}, 'GSM1889916': {'sirna': 'ODC1 siRNA treated', 'line': 'Huh1', 'tissue': 'Liver', 'type': 'Hepatocellular carcinoma cell line'}, 'GSM2328820': {'type': 'normal lymphatic collector'}, 'GSM2328821': {'type': 'normal lymphatic collector'}, 'GSM2328822': {'type': 'normal lymphatic collector'}, 'GSM2585417': {'status': 'Steady state', 'subtype': 'dendritic cell precursors', 'tissue': 'Human peripheral blood', 'type': 'human peripheral blood mononuclear cells', 'marker': 'CD45+Lin(CD3/19/20/14/16/34)-HLA-DR+CD33+CD45RA+CD1c-CD123+'}, 'GSM2453917': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1022949': {'antibody': 'PolIISer5 [Abcam, Cat no. ab5131, Lot no. 949433]', 'type': 'CD4+ T cells', 'treatment': 'untreated'}, 'GSM1022948': {'antibody': 'PolIISer2 [Abcam, Cat no. ab5095, Lot no. 782031]', 'type': 'CD4+ T cells', 'treatment': 'JQ1 treated'}, 'GSM1022947': {'antibody': 'PolIISer2 [Abcam, Cat no. ab5095, Lot no. 782031]', 'type': 'CD4+ T cells', 'treatment': 'untreated'}, 'GSM1022946': {'antibody': 'PolII4H8 [Abcam, Cat no. ab5408, Lot no. 722997]', 'type': 'CD4+ T cells', 'treatment': 'JQ1 treated'}, 'GSM1022945': {'antibody': 'PolII4H8 [Abcam, Cat no. ab5408, Lot no. 722997]', 'type': 'CD4+ T cells', 'treatment': 'untreated'}, 'GSM1022944': {'antibody': 'BRD4 [Abcam, Cat no. ab46199, Lot no. 613288]', 'type': 'CD4+ T cells', 'treatment': 'JQ1 treated'}, 'GSM2453916': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM1022942': {'type': 'CD4+ T cells', 'treatment': 'JQ1 treated'}, 'GSM2754777': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0406', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754776': {'bin': '9', 'group': 'case', 'qft': 'positive', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0278', 'previousdiagnosisoftb': 'No', 'tst': '20', 'type': 'Tcells'}, 'GSM2754775': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0398', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754774': {'bin': '9', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0397', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754773': {'bin': '4', 'group': 'control', 'qft': 'NA', 'gender': 'female', 'age': '13', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0886', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754772': {'bin': '8', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '01_0757', 'previousdiagnosisoftb': 'No', 'tst': '0', 'type': 'Tcells'}, 'GSM2754771': {'bin': '7', 'group': 'control', 'qft': 'NA', 'gender': 'male', 'age': '15', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '09_0818', 'previousdiagnosisoftb': 'No', 'tst': 'NA', 'type': 'Tcells'}, 'GSM2754770': {'bin': '4', 'group': 'case', 'qft': 'positive', 'gender': 'female', 'age': '12', 'timepoint': '0', 'stimulation': 'esat', 'subjectid': '04_0718', 'previousdiagnosisoftb': 'No', 'tst': '16', 'type': 'Tcells'}, 'GSM1914615': {'type': 'cerebral organoid'}, 'GSM1914614': {'type': 'cerebral organoid'}, 'GSM2453915': {'code': '404'}, 'GSM1914611': {'type': 'cerebral organoid'}, 'GSM1914610': {'type': 'cerebral organoid'}, 'GSM1914613': {'type': 'cerebral organoid'}, 'GSM1914612': {'type': 'cerebral organoid'}, 'GSM2373998': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373999': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2772494': {'group': 'invitro', 'disease': 'H', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'H-391', 'cdna': 'cDNA2034'}, 'GSM2772495': {'group': 'invitro', 'disease': 'H', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'LPS', 'donor': 'H-394', 'cdna': 'cDNA2037'}, 'GSM2772492': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'SYS-37', 'cdna': 'cDNA2051'}, 'GSM2772493': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'SYS-68', 'cdna': 'cDNA2030'}, 'GSM2772490': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'SYS-205', 'cdna': 'cDNA2063'}, 'GSM2772491': {'group': 'invitro', 'disease': 'SYS', 'timepoint': '06h', 'tissue': 'Monocytes', 'treatment': 'medium', 'donor': 'SYS-208', 'cdna': 'cDNA2045'}, 'GSM2373990': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373991': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373992': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373993': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373994': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373995': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373996': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM2373997': {'Stage': 'Week 24', 'type': 'Extravillous trophoblast', 'population': 'HLA-G+'}, 'GSM1030557': {'type': 'normal human bronchial epithelial (HBE) cells'}, 'GSM1030556': {'type': 'normal human bronchial epithelial (HBE) cells'}, 'GSM1030555': {'line': 'A549', 'type': 'lung cancer'}, 'GSM1030554': {'line': 'A549', 'type': 'lung cancer'}, 'GSM2565319': {'construction': 'PLATE-Seq', 'drug': 'PCI-24781'}, 'GSM2635900': {'type': 'A549 cells', 'treatment': 'Cas9 + guide RNA transient transfection, followed by FACS of single cells', 'genotype': 'miR-1343 wild type'}, 'GSM1919397': {'status': 'Treatment-naïve', 'patient': 'Patient 18', 'tissue': 'Colonic mucosa microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'normal'}, 'GSM1919396': {'status': 'Treatment-naïve', 'patient': 'Patient 10', 'tissue': 'Colorectal tumor microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'colorectal cancer'}, 'GSM1919395': {'status': 'Treatment-naïve', 'patient': 'Patient 10', 'tissue': 'Colonic mucosa microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'normal'}, 'GSM2565318': {'construction': 'PLATE-Seq', 'drug': 'INCA-6'}, 'GSM1919393': {'status': 'Treatment-naïve', 'patient': 'Patient 08', 'tissue': 'Colonic mucosa microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'normal'}, 'GSM1919392': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'Colorectal tumor microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'colorectal cancer'}, 'GSM1919391': {'status': 'Treatment-naïve', 'patient': 'Patient 01', 'tissue': 'Colonic mucosa microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'normal'}, 'GSM1919390': {'status': 'Treatment-naïve', 'patient': 'Patient 21', 'tissue': 'Colorectal tumor', 'type': 'Whole tissue', 'diagnosis': 'colorectal cancer'}, 'GSM1647935': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647934': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647937': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647936': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'Caucasian'}, 'GSM1647931': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1647930': {'gender': 'Female', 'tissue': 'Whole blood', 'ethnicity': 'African American'}, 'GSM1919399': {'status': 'Treatment-naïve', 'patient': 'Patient 19', 'tissue': 'Colonic mucosa microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'normal'}, 'GSM1919398': {'status': 'Treatment-naïve', 'patient': 'Patient 18', 'tissue': 'Colorectal tumor microvasculature', 'type': 'Laser-capture microdissected sample', 'diagnosis': 'colorectal cancer'}, 'GSM1946163': {'type': 'lymphoblastoid cell line (LCL)', 'id': 'NA19138', 'for': '30min'}, 'GSM2309489': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2348417': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2816078': {'line': 'H9'}, 'GSM3189187': {'boca': 'No', 'years': '9', 'tissue': 'Nasal Lavage', 'adv': 'No', 'analaysis': 'Yes', 'hrv': 'Yes', 'visit': 'RV-B69', '1': 'No', '3': 'No', '2': 'No', 'flowcell': 'C95GDANXX', '4': 'No', 'percentage': '2', 'mpv': 'No', 'hku1': 'No', 'construction': 'Yes', '229e': 'No', 'matched': 'Control', 'a': 'No', 'b': 'No', 'mediancvcoverage': '0.608803', 'percentaligned': '0.961506382', 'Sex': 'M', 'nl63': 'No', 'libcounts': '18.686903'}, 'GSM2348416': {'samhd1': 'knockout', 'media': 'conditioned media with LPS', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2283998': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 5', 'matrix': 'Matrigel'}, 'GSM2565311': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM1648606': {'line': 'Nalm6', 'replicate': '1', 'construct': 'TEL-AML1', 'time': '0 h'}, 'GSM1648607': {'line': 'Nalm6', 'replicate': '2', 'construct': 'TEL-AML1', 'time': '0 h'}, 'GSM1648604': {'line': 'Nalm6', 'replicate': '1', 'construct': 'LUC ctrl', 'time': '24 h'}, 'GSM2565310': {'construction': 'PLATE-Seq', 'drug': 'SCIO 469 hydrochloride'}, 'GSM2565317': {'construction': 'PLATE-Seq', 'drug': 'ER 27319 maleate'}, 'GSM1648608': {'line': 'Nalm6', 'replicate': '1', 'construct': 'TEL-AML1', 'time': '4 h'}, 'GSM2565316': {'construction': 'PLATE-Seq', 'drug': 'A-7 hydrochloride'}, 'GSM2309483': {'number': 'Exp 4', 'time': '6 hours', 'replicate': '2', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2672037': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM2565315': {'construction': 'PLATE-Seq', 'drug': '7-DESACETOXY-6,7-DEHYDROGEDUNIN'}, 'GSM2672035': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM2309482': {'number': 'Exp 4', 'time': '6 hours', 'replicate': '1', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM1677110': {'line': 'HEK 293', 'medium': 'DMEM', 'treatment': 'Co-RNAi against RC3H1 and RC3H2, addition of 50 ug/ml ActD 2h before harvesting', 'barcode': 'GTGAAAC'}, 'GSM2672039': {'type': 'Single cell', 'number': 'Cas9 Injected control 2', 'stage': 'Blastocyst'}, 'GSM2565314': {'construction': 'PLATE-Seq', 'drug': 'HOMIDIUM BROMIDE'}, 'GSM2309481': {'number': 'Exp 4', 'time': '18 hours', 'replicate': '2', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM2309480': {'number': 'Exp 4', 'time': '18 hours', 'replicate': '1', 'treatment': 'Isoginkgetin', 'dose': '30 uM'}, 'GSM907538': {'gender': 'M', 'age': '69', 'histologics': 'Diffuse', 'Stage': 'II'}, 'GSM907539': {'gender': 'M', 'age': '37', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907534': {'gender': 'M', 'age': '76', 'histologics': 'Diffuse', 'Stage': 'I'}, 'GSM2309487': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '2', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM907536': {'gender': 'M', 'age': '61', 'histologics': 'Intestine', 'Stage': 'I'}, 'GSM907537': {'gender': 'M', 'age': '69', 'histologics': 'Normal', 'Stage': 'Normal'}, 'GSM907530': {'gender': 'M', 'age': '63', 'histologics': 'Intestine', 'Stage': 'III'}, 'GSM907531': {'gender': 'M', 'age': '58', 'histologics': 'Intestine', 'Stage': 'III'}, 'GSM907532': {'gender': 'F', 'age': '70', 'histologics': 'Diffuse', 'Stage': 'II'}, 'GSM2309486': {'number': 'Exp 5', 'time': '6 hours', 'replicate': '1', 'treatment': 'DMSO', 'dose': 'n/a'}, 'GSM2664067': {'status': 'p53-/-', 'identifier': 'P4902_1006', 'type': 'cytosolic RNA', 'method': 'NA', 'background': 'HCT116'}, 'GSM2664066': {'status': 'p53+/+', 'identifier': 'P4902_1005', 'type': 'cytosolic RNA', 'method': 'NA', 'background': 'HCT116'}, 'GSM2664065': {'status': 'p53-/-', 'identifier': 'P4902_1004', 'type': 'polysome-associated RNA', 'method': 'Optimized non-linear gradient', 'background': 'HCT116'}, 'GSM2664064': {'status': 'p53+/+', 'identifier': 'P4902_1003', 'type': 'polysome-associated RNA', 'method': 'Optimized non-linear gradient', 'background': 'HCT116'}, 'GSM2664063': {'status': 'p53-/-', 'identifier': 'P4902_1002', 'type': 'polysome-associated RNA', 'method': 'Linear gradient', 'background': 'HCT116'}, 'GSM2816075': {'line': 'H9'}, 'GSM2550274': {'type': 'Cardiac progenitor cells (CPCs)', 'passage': 'P3-4'}, 'GSM2550275': {'type': 'Endothelial cells (ECs)', 'passage': 'P3-4'}, 'GSM2550276': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550277': {'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550270': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2550271': {'type': 'Fibroblast cells (FBs)', 'passage': 'P3-4'}, 'GSM2550272': {'type': 'Induced pluripotent stem cells (iPSCs)', 'passage': '23-27'}, 'GSM2664068': {'status': 'p53+/+', 'identifier': 'P4902_1007', 'type': 'polysome-associated RNA', 'method': 'Linear gradient', 'background': 'HCT116'}, 'GSM2453910': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2712775': {'line': 'HCT116', 'treatment': 'largazole 9.37nM', 'disease': 'colorectal carcinoma'}, 'GSM2453953': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453952': {'code': '404'}, 'GSM2283985': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM2453950': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453957': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2283982': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day 0', 'matrix': 'Matrigel'}, 'GSM2283981': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day 0', 'matrix': 'Matrigel'}, 'GSM2283980': {'tissue': 'undifferentiated embryonic stem cells', 'day': 'day 0', 'matrix': 'Matrigel'}, 'GSM2453959': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2453958': {'culture': 'melanoma short-term culture Ma-Mel-123', 'tissue': 'skin (melanoma metastasis)', 'conditions': 'double-negative for BRAF and NRAS mutations'}, 'GSM2170838': {'stage': 'iPSC line'}, 'GSM2170839': {'stage': 'iPSC line'}, 'GSM2283989': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM2283988': {'tissue': 'differentiating embryonic stem cells', 'day': 'day 3', 'matrix': 'Matrigel'}, 'GSM1466837': {'line': 'H9', 'antibody': 'BRD2 Bethyl (A302-583A)'}, 'GSM1466836': {'line': 'H9', 'antibody': 'BRD4 Bethyl (A301-985A)'}, 'GSM1466835': {'line': 'H9', 'antibody': 'BRD4 Bethyl (A301-985A)'}, 'GSM1466834': {'line': 'H9', 'antibody': 'IgG Santa Cruz (2027)'}, 'GSM1466833': {'line': 'H9', 'antibody': 'IgG Santa Cruz (2027)'}, 'GSM1466832': {'line': 'H9'}, 'GSM1466831': {'line': 'H9'}, 'GSM1466830': {'line': 'H9'}, 'GSM1466839': {'line': 'H9', 'antibody': 'BRD3 Bethyl (A302-368A)'}, 'GSM1466838': {'line': 'H9', 'antibody': 'BRD2 Bethyl (A302-583A)'}, 'GSM847876': {'antibody': 'f-6 (Santa-Cruz)', 'line': 'A549', 'protocol': 'TNFa induced', 'type': 'ChIP-seq'}, 'GSM847877': {'antibody': 'f-6 (Santa-Cruz)', 'line': 'A549', 'protocol': 'TNFa induced', 'type': 'ChIP-seq'}, 'GSM847875': {'antibody': 'f-6 (Santa-Cruz)', 'line': 'A549', 'protocol': 'Input', 'type': 'ChIP-seq'}, 'GSM847878': {'type': 'RNA-seq', 'line': 'A549', 'protocol': 'Non-induced'}, 'GSM847879': {'type': 'RNA-seq', 'line': 'A549', 'protocol': 'Non-induced'}, 'GSM1621322': {'group': 'C: aCD3/aCD28-coated bead expanded nTreg', 'type': 'regulatory T cells', 'batch': 'b4'}, 'GSM1936737': {'line': 'IMR90'}, 'GSM1936738': {'line': 'IMR90'}, 'GSM1936739': {'line': 'IMR90'}, 'GSM2458985': {'complication': '-', 'gender': 'Male', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '10.75'}, 'GSM1655589': {'line': 'TOV21G', 'treatment': 'Control siRNA transfection for 48 h'}, 'GSM1655588': {'line': 'TOV21G', 'treatment': 'BuGZ siRNA transfection for 48 h'}, 'GSM2458984': {'complication': '-', 'gender': 'Female', 'age': 'A1a', 'tissue': 'Ileal biopsy', 'ancestry': 'European', 'diagnosis': '6.17'}, 'GSM1655583': {'line': 'HFF', 'treatment': 'DMSO treated for 4 h'}, 'GSM1655582': {'line': 'HFF', 'treatment': 'Control siRNA transfection for 48 h'}, 'GSM1655581': {'line': 'HFF', 'treatment': 'Control siRNA transfection for 48 h'}, 'GSM1655580': {'line': 'HFF', 'treatment': 'BuGZ siRNA transfection for 48 h'}, 'GSM1655587': {'line': 'TOV21G', 'treatment': 'BuGZ siRNA transfection for 48 h'}, 'GSM1655586': {'line': 'TOV21G', 'treatment': 'Bub3 siRNA transfection for 48 h'}, 'GSM1655585': {'line': 'TOV21G', 'treatment': 'Bub3 siRNA transfection for 48 h'}, 'GSM1655584': {'line': 'HFF', 'treatment': 'pladienolide B treated for 4 h'}, 'GSM1526682': {'source': 'circulating immune cells', 'type': 'Granulocytes'}, 'GSM2373499': {'line': 'BCBL-1'}, 'GSM2458982': {'complication': '-', 'gender': 'Female', 'age': 'A1b', 'tissue': 'Ileal biopsy', 'ancestry': 'Other/Mixed', 'diagnosis': '14.75'}, 'GSM1517307': {'down': 'wild type (WT)', 'line': 'MCF7', 'condition': 'monolayer (m) cultured cell', 'cd24': 'CD24+'}, 'GSM1526681': {'marker': 'CD4- CD8+ CD45RO-', 'source': 'circulating immune cells', 'type': 'naive CD8+ T-cells'}, 'GSM2373498': {'line': 'BC3'}, 'GSM4486821': {'type': 'HeLa Kyoto'}, 'GSM2176069': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176068': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2496714': {'state': 'Healthy', 'tissue': 'aberrant crypt foci', 'replicates': 'techical replicate of 165S2'}, 'GSM2496715': {'state': 'Healthy', 'tissue': 'aberrant crypt foci', 'replicates': 'techical replicate of 165S1'}, 'GSM2496712': {'state': 'Healthy', 'tissue': 'aberrant crypt foci', 'replicates': 'N/A'}, 'GSM2496713': {'state': 'Healthy', 'tissue': 'normal colonic crypt', 'replicates': 'N/A'}, 'GSM2496710': {'state': 'Healthy', 'tissue': 'aberrant crypt foci', 'replicates': 'N/A'}, 'GSM2496711': {'state': 'Healthy', 'tissue': 'normal colonic crypt', 'replicates': 'N/A'}, 'GSM2176061': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176060': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176063': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176062': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176065': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176064': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176067': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM2176066': {'irradiation': '12 Gy', 'line': 'Esophageal squamous cell carcinoma line KYSE-180', 'tissue': 'Esophagus'}, 'GSM1969387': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Internal trunk'}, 'GSM1969386': {'metastasis': 'No', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Trunk wall'}, 'GSM1969385': {'metastasis': 'No', 'fusion': 'No', 'type': 'Undifferentiated pleomorphic sarcoma', 'localization': 'Upper limb'}, 'GSM1969384': {'metastasis': 'No', 'fusion': 'No', 'type': 'Liposarcoma - dedifferentiated', 'localization': 'Internal trunk'}, 'GSM2243385': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'DMSO'}, 'GSM2243384': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'DMSO'}, 'GSM2243387': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Thapsigargin'}, 'GSM2243386': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'DMSO'}, 'GSM2243389': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Thapsigargin'}, 'GSM2243388': {'line': 'HEK293T-Rex', 'tissue': 'kidney', 'treatment': 'Thapsigargin'}, 'GSM1969389': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Liposarcoma - pleomorphic', 'localization': 'Lower limb'}, 'GSM1969388': {'metastasis': 'Yes', 'fusion': 'No', 'type': 'Leiomyosarcoma', 'localization': 'Trunk wall'}, 'GSM2311900': {'culture': '12', 'line': 'DCX+'}, 'GSM2093540': {'state': 'acute lymphoblastic leukemia', 'tissue': 'Bone marrow'}, 'GSM750770': {'line': 'HMLE', 'state': 'Mesenchymal', 'variation': 'expressing pWZL-Twist-ER', 'treatment': 'yes'}, 'GSM2226809': {'information': 'Active Tuberculosis', 'tissue': 'whole blood'}, 'GSM2226808': {'information': 'Control - BCG - Unvaccinated', 'tissue': 'whole blood'}, 'GSM2348419': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348418': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2565313': {'construction': 'PLATE-Seq', 'drug': 'Voreloxin (SNS-595)'}, 'GSM2565312': {'construction': 'PLATE-Seq', 'drug': 'DMSO'}, 'GSM2348415': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348414': {'samhd1': 'wildtype', 'media': 'conditioned media', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348413': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348412': {'samhd1': 'wildtype', 'media': 'standard media with LPS', 'batch': 'WTB', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348411': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2348410': {'samhd1': 'knockout', 'media': 'standard media', 'batch': 'KOF', 'hours': '1', 'line': 'HUES2', 'type': 'embryonic stem cell derived macrophage'}, 'GSM2535819': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4070', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25029', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C34', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4070', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C34'}, 'GSM2535818': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4069', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25028', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C28', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4069', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C28'}, 'GSM2535815': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4065', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25024', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C73', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4065', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C73'}, 'GSM2535814': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4064', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25023', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C69', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4064', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C69'}, 'GSM2535817': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4068', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25027', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C18', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4068', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C18'}, 'GSM2535816': {'projectid': 'P85-3', 'lane': '7,8', 'samplelabel': 'lib4067', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25026', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C06', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4067', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C06'}, 'GSM2535811': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4061', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25020', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C74', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4061', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C74'}, 'GSM2535810': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4060', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25019', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C62', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4060', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C62'}, 'GSM2535813': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4063', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25022', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C51', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4063', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C51'}, 'GSM2535812': {'projectid': 'P85-3', 'lane': '8,7', 'samplelabel': 'lib4062', 'cdnasynthesis': 'C1+SMARTer v1', 'seqsite': 'BRI', 'sampleID': 'S25021', 'libraryprep': 'C1+NexteraXT', 'c1captureannotation': 'single cell', 'tissue': 'Tmr-positive CD8+ sorted T-cells', 'samplename': '1_FluTmr+CD8+_C92', 'flowcellid': 'C4WKJACXX', 'c1plateid': '1771023180', 'libraryid': 'lib4062', 'runchemistry': 'TruSeq SBS Kit v3', 'c1capturesite': 'C92'}, 'GSM2494156': {'with': 'none (untreated control)', 'line': 'Nalm-6', 'type': 'B-cell precursor', 'variation': 'SF3B1 K700E mutant'}, 'GSM1704788': {'line': 'H1 embryonic stem cells', 'type': 'day 0 ES cells', 'variation': 'wild-type'}, 'GSM1922979': {'line': 'HeLa', 'barcode': 'GATCAG', 'treatment': 'siDGCR8 knockdown'}, 'GSM1922978': {'line': 'HeLa', 'barcode': 'CAGATC', 'treatment': 'siDGCR8 knockdown'}, 'GSM1922975': {'line': 'HeLa', 'barcode': 'TGACCA', 'treatment': 'control knockdown'}, 'GSM1922974': {'line': 'HeLa', 'barcode': 'CGATGT', 'treatment': 'control knockdown'}, 'GSM1922977': {'line': 'HeLa', 'barcode': 'GCCAAT', 'treatment': 'siDGCR8 knockdown'}, 'GSM1922976': {'line': 'HeLa', 'barcode': 'ACAGTG', 'treatment': 'control knockdown'}, 'GSM1922971': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27ac (Active Motif, 39133 lot 25812006)', 'treatment': 'chronic 1 µM dasatinib'}, 'GSM1922970': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27me3 (Millipore, 07-449, lot 2382150)', 'treatment': '4 day 1.5 µM GSKJ4'}, 'GSM1922973': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27ac (Active Motif, 39133 lot 25812006)', 'treatment': 'none'}, 'GSM1922972': {'line': 'Patient-derived neurosphere line GSC8', 'antibody': 'H3K27ac (Active Motif, 39133 lot 25812006)', 'treatment': '12 day 1 µM dasatinib'}, 'GSM1053777': {'prognosis': 'UNCLEAR', 'tissue': 'Soft Tissue', 'method': 'FFPE', 'signature': 'PF signature'}, 'GSM1523649': {'line': 'H1', 'treatment': 'lentiviral infection with sh control', 'extract_protocol': 'Standard mRNA-seq'}, 'GSM2440808': {'line': 'MCF7', 'type': 'breast cancer cell line'}}\n" + ] + } + ], + "source": [ + "humanData = importData(\"data/test_characteristics_human.json\")\n", + "print(humanData)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a8db67d8feba0d8f", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/jason-to-tabular.py b/jason-to-tabular.py new file mode 100644 index 0000000..5bdaed2 --- /dev/null +++ b/jason-to-tabular.py @@ -0,0 +1,12 @@ +import json + +def importData(infile): + readfile = open(infile, "r") + data = json.load(readfile) + return data + + +humanData = importData("data/test_characteristics_human.json") +for GSE_data in humanData.values(): + print(GSE_data.keys()) + break diff --git a/json-to-tabular.ipynb b/json-to-tabular.ipynb new file mode 100644 index 0000000..54f657b --- /dev/null +++ b/json-to-tabular.ipynb @@ -0,0 +1,37 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "initial_id", + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}